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