xref: /illumos-gate/usr/src/head/auth_list.h (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  *
25  * This is an internal header file. Not to be shipped.
26  */
27 
28 #ifndef	_AUTH_LIST_H
29 #define	_AUTH_LIST_H
30 
31 #ifdef	__cplusplus
32 extern "C" {
33 #endif
34 
35 
36 /*
37  * Names of authorizations currently in use in the system
38  */
39 
40 #define	CDRW_AUTH		"solaris.device.cdrw"
41 #define	CRONADMIN_AUTH		"solaris.jobs.admin"
42 #define	CRONUSER_AUTH		"solaris.jobs.user"
43 #define	DEFAULT_DEV_ALLOC_AUTH	"solaris.device.allocate"
44 #define	DEVICE_REVOKE_AUTH	"solaris.device.revoke"
45 #define	LINK_SEC_AUTH		"solaris.network.link.security"
46 #define	MAILQ_AUTH		"solaris.mail.mailq"
47 #define	NET_AUTOCONF_AUTH	"solaris.network.autoconf"
48 #define	SET_DATE_AUTH		"solaris.system.date"
49 #define	WIFI_CONFIG_AUTH	"solaris.network.wifi.config"
50 #define	WIFI_WEP_AUTH		"solaris.network.wifi.wep"
51 
52 /*
53  * Authorizations used by Trusted Solaris.
54  */
55 #define	BYPASS_FILE_VIEW_AUTH	"solaris.label.win.noview"
56 #define	DEVICE_CONFIG_AUTH	"solaris.device.config"
57 #define	FILE_CHOWN_AUTH		"solaris.file.chown"
58 #define	FILE_DOWNGRADE_SL_AUTH	"solaris.label.file.downgrade"
59 #define	FILE_OWNER_AUTH		"solaris.file.owner"
60 #define	FILE_UPGRADE_SL_AUTH	"solaris.label.file.upgrade"
61 #define	MAINTENANCE_AUTH	"solaris.system.maintenance"
62 #define	PRINT_ADMIN_AUTH	"solaris.print.admin"
63 #define	PRINT_CANCEL_AUTH	"solaris.print.cancel"
64 #define	PRINT_LIST_AUTH		"solaris.print.list"
65 #define	PRINT_MAC_AUTH		"solaris.label.print"
66 #define	PRINT_NOBANNER_AUTH	"solaris.print.nobanner"
67 #define	PRINT_POSTSCRIPT_AUTH	"solaris.print.ps"
68 #define	PRINT_UNLABELED_AUTH	"solaris.print.unlabeled"
69 #define	SHUTDOWN_AUTH		"solaris.system.shutdown"
70 #define	SYS_ACCRED_SET_AUTH	"solaris.label.range"
71 #define	WIN_DOWNGRADE_SL_AUTH	"solaris.label.win.downgrade"
72 #define	WIN_UPGRADE_SL_AUTH	"solaris.label.win.upgrade"
73 
74 #ifdef	__cplusplus
75 }
76 #endif
77 
78 #endif	/* _AUTH_LIST_H */
79