xref: /onnv-gate/usr/src/uts/common/sys/uadmin.h (revision 9160:1517e6edbc6f)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
52267Sdp  * Common Development and Distribution License (the "License").
62267Sdp  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
210Sstevel@tonic-gate /*
22*9160SSherry.Moore@Sun.COM  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
230Sstevel@tonic-gate  * Use is subject to license terms.
240Sstevel@tonic-gate  */
250Sstevel@tonic-gate 
260Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
270Sstevel@tonic-gate /*	  All Rights Reserved  	*/
280Sstevel@tonic-gate 
290Sstevel@tonic-gate 
300Sstevel@tonic-gate #ifndef _SYS_UADMIN_H
310Sstevel@tonic-gate #define	_SYS_UADMIN_H
320Sstevel@tonic-gate 
330Sstevel@tonic-gate 
340Sstevel@tonic-gate #if !defined(_ASM)
350Sstevel@tonic-gate #include <sys/types.h>
360Sstevel@tonic-gate #include <sys/cred.h>
370Sstevel@tonic-gate #endif
380Sstevel@tonic-gate 
390Sstevel@tonic-gate #ifdef	__cplusplus
400Sstevel@tonic-gate extern "C" {
410Sstevel@tonic-gate #endif
420Sstevel@tonic-gate 
430Sstevel@tonic-gate #define	A_REBOOT	1
440Sstevel@tonic-gate #define	A_SHUTDOWN	2
450Sstevel@tonic-gate #define	A_FREEZE	3	/* For freeze and thaw */
460Sstevel@tonic-gate #define	A_REMOUNT	4
470Sstevel@tonic-gate #define	A_DUMP		5
480Sstevel@tonic-gate #define	A_FTRACE	15
490Sstevel@tonic-gate #define	A_SWAPCTL	16
500Sstevel@tonic-gate /*			17-21	   reserved for obsolete interface */
516878Sbrendan #define	A_SDTTEST	22	/* DTrace sdt:::test */
52*9160SSherry.Moore@Sun.COM #define	A_CONFIG	23	/* For system configuration */
530Sstevel@tonic-gate 
546681Sjohnlev #define	AD_UNKNOWN	-1	/* no method */
550Sstevel@tonic-gate #define	AD_HALT		0	/* halt the processor */
560Sstevel@tonic-gate #define	AD_BOOT		1	/* multi-user reboot */
570Sstevel@tonic-gate #define	AD_IBOOT	2	/* multi-user reboot, ask for name of file */
580Sstevel@tonic-gate #define	AD_SBOOT	3	/* single-user reboot */
590Sstevel@tonic-gate #define	AD_SIBOOT	4	/* single-user reboot, ask for name of file */
600Sstevel@tonic-gate #define	AD_POWEROFF	6	/* software poweroff */
610Sstevel@tonic-gate #define	AD_NOSYNC	7	/* do not sync filesystems on next A_DUMP */
627656SSherry.Moore@Sun.COM #define	AD_FASTREBOOT	8	/* bypass firmware and boot loader */
637656SSherry.Moore@Sun.COM #define	AD_FASTREBOOT_DRYRUN	9	/* Fast reboot Dry run */
640Sstevel@tonic-gate 
650Sstevel@tonic-gate /*
660Sstevel@tonic-gate  * Functions reserved for A_FREEZE (may not be available on all platforms)
675295Srandyf  * Note:  AD_COMPRESS, AD_CHECK and AD_FORCE are now obsolete
685295Srandyf  *	The first two are succeeded by AD_SUSPEND_TO_DISK and
695295Srandyf  *		AD_CHECK_SUSPEND_TO_DISK respectively.
705295Srandyf  *	AD_FORCE should not be used by any new application
715295Srandyf  *
725295Srandyf  *	We maintain compatibility with the earlier interfaces:
735295Srandyf  *	AD_COMPRESS and AD_CHECK, by preserving those values
745295Srandyf  *	in the corresponding new interfaces
750Sstevel@tonic-gate  */
765295Srandyf 
770Sstevel@tonic-gate #define	AD_COMPRESS	0	/* store state file compressed during CPR */
780Sstevel@tonic-gate #define	AD_FORCE	1	/* force to do AD_COMPRESS */
790Sstevel@tonic-gate #define	AD_CHECK	2	/* test if CPR module is available */
805295Srandyf #define	AD_SUSPEND_TO_DISK	   AD_COMPRESS	/* A_FREEZE, CPR or ACPI S4 */
815295Srandyf #define	AD_CHECK_SUSPEND_TO_DISK   AD_CHECK	/* A_FREEZE, CPR/S4 capable? */
825295Srandyf #define	AD_SUSPEND_TO_RAM	   20		/* A_FREEZE, S3 */
835295Srandyf #define	AD_CHECK_SUSPEND_TO_RAM	   21		/* A_FREEZE, S3 capable? */
845295Srandyf 
850Sstevel@tonic-gate /*
860Sstevel@tonic-gate  * NOTE: the following defines comprise an Unstable interface.  Their semantics
870Sstevel@tonic-gate  * may change or they may be removed completely in a later release
880Sstevel@tonic-gate  */
890Sstevel@tonic-gate #define	AD_REUSEINIT	3	/* prepare for AD_REUSABLE */
900Sstevel@tonic-gate #define	AD_REUSABLE	4	/* create reusable statefile */
910Sstevel@tonic-gate #define	AD_REUSEFINI	5	/* revert to normal CPR mode (not reusable) */
920Sstevel@tonic-gate 
930Sstevel@tonic-gate #define	AD_FTRACE_START	1
940Sstevel@tonic-gate #define	AD_FTRACE_STOP	2
950Sstevel@tonic-gate 
962267Sdp /*
97*9160SSherry.Moore@Sun.COM  * Functions of A_CONFIG.  Unstable interface.
98*9160SSherry.Moore@Sun.COM  */
99*9160SSherry.Moore@Sun.COM #define	AD_UPDATE_BOOT_CONFIG	1	/* Update boot config variables */
100*9160SSherry.Moore@Sun.COM 
101*9160SSherry.Moore@Sun.COM /*
1022267Sdp  * When 'mdep' (the second argument to uadmin(2)) is initialized for A_REBOOT,
1032267Sdp  * A_SHUTDOWN or A_DUMP, it represents the boot arguments string of at most
1042267Sdp  * 256 characters.
1052267Sdp  */
1062267Sdp #define	BOOTARGS_MAX	256
1072267Sdp 
108*9160SSherry.Moore@Sun.COM #if !defined(_KERNEL)
109*9160SSherry.Moore@Sun.COM /*
110*9160SSherry.Moore@Sun.COM  * FMRI for boot-config service.
111*9160SSherry.Moore@Sun.COM  */
112*9160SSherry.Moore@Sun.COM #define	FMRI_BOOT_CONFIG \
113*9160SSherry.Moore@Sun.COM 	"svc:/system/boot-config:default"
114*9160SSherry.Moore@Sun.COM 
115*9160SSherry.Moore@Sun.COM /*
116*9160SSherry.Moore@Sun.COM  * Property group that contains all Fast Reboot configuration properties.
117*9160SSherry.Moore@Sun.COM  */
118*9160SSherry.Moore@Sun.COM #define	BOOT_CONFIG_PG_PARAMS		"config"
119*9160SSherry.Moore@Sun.COM 
120*9160SSherry.Moore@Sun.COM /*
121*9160SSherry.Moore@Sun.COM  * Property group that contains all Fast Reboot blacklisting information.
122*9160SSherry.Moore@Sun.COM  */
123*9160SSherry.Moore@Sun.COM #define	BOOT_CONFIG_PG_FBBLACKLIST	"fastreboot_blacklist"
124*9160SSherry.Moore@Sun.COM 
125*9160SSherry.Moore@Sun.COM #endif	/* _KERNEL */
126*9160SSherry.Moore@Sun.COM 
127*9160SSherry.Moore@Sun.COM /*
128*9160SSherry.Moore@Sun.COM  * Flag representations of fastboot configuration.
129*9160SSherry.Moore@Sun.COM  */
130*9160SSherry.Moore@Sun.COM #define	UA_FASTREBOOT_DEFAULT	0x01
131*9160SSherry.Moore@Sun.COM #define	UA_FASTREBOOT_ONPANIC	0x02
132*9160SSherry.Moore@Sun.COM 
133*9160SSherry.Moore@Sun.COM #define	FASTREBOOT_ONPANIC		"fastreboot_onpanic"
134*9160SSherry.Moore@Sun.COM #define	FASTREBOOT_ONPANIC_CMDLINE	"fastreboot_onpanic_cmdline"
135*9160SSherry.Moore@Sun.COM 
136*9160SSherry.Moore@Sun.COM #define	FASTREBOOT_ONPANIC_NOTSET(p)	\
137*9160SSherry.Moore@Sun.COM 	(strcmp((p), "false") == 0 ||	\
138*9160SSherry.Moore@Sun.COM 	strcmp((p), "no") == 0 ||	\
139*9160SSherry.Moore@Sun.COM 	strcmp((p), "0") == 0)
140*9160SSherry.Moore@Sun.COM 
141*9160SSherry.Moore@Sun.COM #define	FASTREBOOT_ONPANIC_ISSET(p)	\
142*9160SSherry.Moore@Sun.COM 	(strcmp((p), "true") == 0 ||	\
143*9160SSherry.Moore@Sun.COM 	strcmp((p), "yes") == 0 ||	\
144*9160SSherry.Moore@Sun.COM 	strcmp((p), "1") == 0)
145*9160SSherry.Moore@Sun.COM 
1460Sstevel@tonic-gate #if !defined(_ASM)
1470Sstevel@tonic-gate 
1480Sstevel@tonic-gate #if defined(_KERNEL)
1490Sstevel@tonic-gate extern kmutex_t ualock;
150136Sachartre extern void mdboot(int, int, char *, boolean_t);
1510Sstevel@tonic-gate extern void mdpreboot(int, int, char *);
1520Sstevel@tonic-gate extern int kadmin(int, int, void *, cred_t *);
1530Sstevel@tonic-gate extern void killall(zoneid_t);
1540Sstevel@tonic-gate #endif
1550Sstevel@tonic-gate 
1560Sstevel@tonic-gate #if defined(__STDC__)
1570Sstevel@tonic-gate extern int uadmin(int, int, uintptr_t);
1580Sstevel@tonic-gate #else
1590Sstevel@tonic-gate extern int uadmin();
1600Sstevel@tonic-gate #endif
1610Sstevel@tonic-gate 
1620Sstevel@tonic-gate #endif	/* _ASM */
1630Sstevel@tonic-gate 
1640Sstevel@tonic-gate #ifdef	__cplusplus
1650Sstevel@tonic-gate }
1660Sstevel@tonic-gate #endif
1670Sstevel@tonic-gate 
1680Sstevel@tonic-gate #endif	/* _SYS_UADMIN_H */
169