don't bother resolving onbld python module deps
[unleashed.git] / include / user_attr.h
blob9fa122b54a4299d702520df0fa8a44affe5b4f9d
1 /*
2 * CDDL HEADER START
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.
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.
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]
19 * CDDL HEADER END
22 * Copyright 2014 Garrett D'Amore <garrett@damore.org>
23 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
26 #ifndef _USER_ATTR_H
27 #define _USER_ATTR_H
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
34 #include <sys/types.h>
35 #include <secdb.h>
38 struct __FILE; /* structure tag for type FILE defined in stdio.h */
41 * Some macros used internally by the nsswitch code
43 #define USERATTR_FILENAME "/etc/user_attr"
44 #define USERATTR_DB_NAME "user_attr.org_dir"
45 #define USERATTR_DB_NCOL 5 /* total columns */
46 #define USERATTR_DB_NKEYCOL 2 /* total searchable columns */
47 #define USERATTR_DB_TBL "user_attr_tbl"
48 #define USERATTR_NAME_DEFAULT_KW "nobody"
50 #define USERATTR_COL0_KW "name"
51 #define USERATTR_COL1_KW "qualifier"
52 #define USERATTR_COL2_KW "res1"
53 #define USERATTR_COL3_KW "res2"
54 #define USERATTR_COL4_KW "attr"
56 #define DEF_LIMITPRIV "PRIV_LIMIT="
57 #define DEF_DFLTPRIV "PRIV_DEFAULT="
60 * indices of searchable columns
62 #define USERATTR_KEYCOL0 0 /* name */
63 #define USERATTR_KEYCOL1 1 /* qualifier */
66 * Key words used in the user_attr database
68 #define USERATTR_LOCK_KW "lock"
69 #define USERATTR_LOCK_LOCKED_KW "locked"
70 #define USERATTR_LOCK_OPEN_KW "open"
71 #define USERATTR_LOCK_FIXED_KW "fixed"
72 #define USERATTR_GEN_KW "gen"
73 #define USERATTR_GEN_AUTOMATIC_KW "automatic"
74 #define USERATTR_GEN_MANUAL_KW "manual"
75 #define USERATTR_GEN_SYSDEF_KW "sysdef"
76 #define USERATTR_PROFILES_KW "profiles"
77 #define USERATTR_PROFILES_NONE_KW "none"
78 #define USERATTR_ROLES_KW "roles"
79 #define USERATTR_ROLES_NONE_KW "none"
80 #define USERATTR_DEFAULTPROJ_KW "project"
81 #define USERATTR_TYPE_KW "type"
82 #define USERATTR_TYPE_NORMAL_KW "normal"
83 #define USERATTR_TYPE_ADMIN_KW "admin"
84 #define USERATTR_TYPE_NONADMIN_KW "role"
85 #define USERATTR_AUTHS_KW "auths"
86 #define USERATTR_LIMPRIV_KW "limitpriv"
87 #define USERATTR_DFLTPRIV_KW "defaultpriv"
88 #define USERATTR_LOCK_AFTER_RETRIES_KW "lock_after_retries"
89 #define USERATTR_LOCK_NO "no"
90 #define USERATTR_LOCK_YES "yes"
91 #define USERATTR_PASSWD "password"
92 #define USERATTR_PASSWD_AUTOMATIC "automatic"
93 #define USERATTR_PASSWD_MANUAL "manual"
94 #define USERATTR_TYPE_ROLE USERATTR_TYPE_NONADMIN_KW
95 #define USERATTR_AUDIT_FLAGS_KW "audit_flags"
99 * Nsswitch representation of user attributes.
101 typedef struct userstr_s {
102 char *name; /* user name */
103 char *qualifier; /* reserved for future use */
104 char *res1; /* reserved for future use */
105 char *res2; /* reserved for future use */
106 char *attr; /* string of key-value pair attributes */
107 } userstr_t;
110 * API representation of user attributes.
112 typedef struct userattr_s {
113 char *name; /* user name */
114 char *qualifier; /* reserved for future use */
115 char *res1; /* reserved for future use */
116 char *res2; /* reserved for future use */
117 kva_t *attr; /* array of key-value pair attributes */
118 } userattr_t;
120 extern userattr_t *getusernam(const char *);
121 extern userattr_t *getuseruid(uid_t uid);
122 extern userattr_t *getuserattr(void);
123 extern userattr_t *fgetuserattr(struct __FILE *);
124 extern void setuserattr(void);
125 extern void enduserattr(void);
126 extern void free_userattr(userattr_t *);
128 #ifdef __cplusplus
130 #endif
132 #endif /* _USER_ATTR_H */