1 7c478bd9Sstevel@tonic-gate /* 2 7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3 7c478bd9Sstevel@tonic-gate * 4 7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5 *d67944fbSScott Rotondo * Common Development and Distribution License (the "License"). 6 *d67944fbSScott Rotondo * You may not use this file except in compliance with the License. 7 7c478bd9Sstevel@tonic-gate * 8 7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 10 7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 11 7c478bd9Sstevel@tonic-gate * and limitations under the License. 12 7c478bd9Sstevel@tonic-gate * 13 7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 14 7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 16 7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 17 7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 18 7c478bd9Sstevel@tonic-gate * 19 7c478bd9Sstevel@tonic-gate * CDDL HEADER END 20 7c478bd9Sstevel@tonic-gate */ 21 *d67944fbSScott Rotondo /* 22 *d67944fbSScott Rotondo * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23 *d67944fbSScott Rotondo * Use is subject to license terms. 24 *d67944fbSScott Rotondo */ 25 *d67944fbSScott Rotondo 26 7c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 27 7c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 28 7c478bd9Sstevel@tonic-gate 29 7c478bd9Sstevel@tonic-gate 30 *d67944fbSScott Rotondo #ifndef _STRUCTS_H 31 *d67944fbSScott Rotondo #define _STRUCTS_H 32 7c478bd9Sstevel@tonic-gate 33 *d67944fbSScott Rotondo #include <sac.h> 34 *d67944fbSScott Rotondo #include "misc.h" 35 7c478bd9Sstevel@tonic-gate 36 7c478bd9Sstevel@tonic-gate /* 37 7c478bd9Sstevel@tonic-gate * error messages 38 7c478bd9Sstevel@tonic-gate */ 39 7c478bd9Sstevel@tonic-gate 40 7c478bd9Sstevel@tonic-gate struct errmsg { 41 7c478bd9Sstevel@tonic-gate char *e_str; /* error string */ 42 7c478bd9Sstevel@tonic-gate int e_exitcode; /* and associated exit status */ 43 7c478bd9Sstevel@tonic-gate }; 44 7c478bd9Sstevel@tonic-gate 45 7c478bd9Sstevel@tonic-gate 46 7c478bd9Sstevel@tonic-gate /* 47 7c478bd9Sstevel@tonic-gate * everything we need to know about a port monitor 48 7c478bd9Sstevel@tonic-gate */ 49 7c478bd9Sstevel@tonic-gate 50 7c478bd9Sstevel@tonic-gate struct sactab { 51 7c478bd9Sstevel@tonic-gate long sc_flags; /* flags */ 52 7c478bd9Sstevel@tonic-gate pid_t sc_pid; /* pid of PM */ 53 7c478bd9Sstevel@tonic-gate int sc_rsmax; /* max # of restarts */ 54 7c478bd9Sstevel@tonic-gate int sc_rscnt; /* # of restarts */ 55 7c478bd9Sstevel@tonic-gate int sc_fd; /* _pmpipe fd */ 56 7c478bd9Sstevel@tonic-gate int sc_ok; /* true if responded to last sanity poll */ 57 7c478bd9Sstevel@tonic-gate int sc_valid; /* true if entry is "current" */ 58 7c478bd9Sstevel@tonic-gate char *sc_cmd; /* command */ 59 7c478bd9Sstevel@tonic-gate char *sc_comment; /* comment associated with entry */ 60 7c478bd9Sstevel@tonic-gate struct sactab *sc_next; /* next in list */ 61 7c478bd9Sstevel@tonic-gate short sc_exit; /* exit status */ 62 7c478bd9Sstevel@tonic-gate char sc_maxclass; /* largest class instruction this PM 63 7c478bd9Sstevel@tonic-gate understands. This is currently 64 7c478bd9Sstevel@tonic-gate a place holder for future messages */ 65 7c478bd9Sstevel@tonic-gate unchar sc_sstate; /* SAC's idea of PM's state */ 66 7c478bd9Sstevel@tonic-gate unchar sc_lstate; /* SAC's idea of last valid state - 67 7c478bd9Sstevel@tonic-gate used for failure recovery - note: 68 7c478bd9Sstevel@tonic-gate SAC will set this field to ENABLED, 69 7c478bd9Sstevel@tonic-gate DISABLED, or NOTRUNNING as appropriate */ 70 7c478bd9Sstevel@tonic-gate unchar sc_pstate; /* PM's last reported state - note: 71 7c478bd9Sstevel@tonic-gate SAC will set this field to STARTING, 72 7c478bd9Sstevel@tonic-gate NOTRUNNING, or FAILED as appropriate */ 73 7c478bd9Sstevel@tonic-gate char sc_tag[PMTAGSIZE + 1]; /* port monitor tag */ 74 7c478bd9Sstevel@tonic-gate char sc_type[PMTYPESIZE + 1];/* port monitor type */ 75 7c478bd9Sstevel@tonic-gate char sc_utid[IDLEN]; /* utmp id of PM */ 76 7c478bd9Sstevel@tonic-gate }; 77 7c478bd9Sstevel@tonic-gate 78 7c478bd9Sstevel@tonic-gate /* 79 7c478bd9Sstevel@tonic-gate * defn's for sc_sstate, sc_pstate, and sc_lstate 80 7c478bd9Sstevel@tonic-gate */ 81 7c478bd9Sstevel@tonic-gate 82 7c478bd9Sstevel@tonic-gate #define NOTRUNNING 0 /* PM not running */ 83 *d67944fbSScott Rotondo #define STARTING 1 /* PM starting, must be same as PM_STARTING */ 84 *d67944fbSScott Rotondo #define ENABLED 2 /* PM enabled, must be same as PM_ENABLED */ 85 *d67944fbSScott Rotondo #define DISABLED 3 /* PM disabled, must be same as PM_DISABLED */ 86 *d67944fbSScott Rotondo #define STOPPING 4 /* PM stopping, must be same as PM_STOPPING */ 87 7c478bd9Sstevel@tonic-gate #define FAILED 5 /* PM has failed */ 88 7c478bd9Sstevel@tonic-gate #define UNKNOWN 6 /* in recovery, state unknown */ 89 7c478bd9Sstevel@tonic-gate 90 7c478bd9Sstevel@tonic-gate /* 91 7c478bd9Sstevel@tonic-gate * defn's for sc_flags 92 7c478bd9Sstevel@tonic-gate */ 93 7c478bd9Sstevel@tonic-gate 94 7c478bd9Sstevel@tonic-gate #define D_FLAG 0x1 95 7c478bd9Sstevel@tonic-gate #define X_FLAG 0x2 96 *d67944fbSScott Rotondo 97 *d67944fbSScott Rotondo #endif /* _STRUCTS_H */ 98