Print this page
NEX-1767 ls is unable to display SIDs
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
| Split |
Close |
| Expand all |
| Collapse all |
--- old/usr/src/lib/libsec/common/aclutils.h
+++ new/usr/src/lib/libsec/common/aclutils.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
|
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 23 * Use is subject to license terms.
24 + *
25 + * Copyright 2016 Nexenta Systems, Inc. All rights reserved.
24 26 */
25 27
26 28 #ifndef _ACLUTILS_H
27 29 #define _ACLUTILS_H
28 30
29 31 #include <sys/types.h>
30 32 #include <sys/acl.h>
31 33 #include <strings.h>
32 34 #include <locale.h>
33 35 #include <ctype.h>
34 36 #include <grp.h>
35 37 #include <pwd.h>
36 38
37 39 #ifdef __cplusplus
38 40 extern "C" {
39 41 #endif
40 42
41 43 #define ACL_REMOVE_ALL 0x0
42 44 #define ACL_REMOVE_FIRST 0x1
43 45
44 46 /*
45 47 * Hint for whether acl_totext() should use
46 48 * mnemonics:
47 49 * read_data/list_directory
48 50 * write_data/add_file or
49 51 * append_data/add_subdirectory
50 52 * when object of ACL is known.
51 53 */
52 54
53 55 #define PERM_TYPE_ACE 0x1 /* permissions are of ACE type */
54 56 #define PERM_TYPE_UNKNOWN 0x2 /* permission type not yet known */
55 57 #define PERM_TYPE_EMPTY 0x4 /* no permissions are specified */
56 58
57 59 struct acl_perm_type {
58 60 int perm_style; /* type of perm style, see above */
59 61 char *perm_str; /* string value being returned */
60 62 uint32_t perm_val; /* numeric value being returned */
61 63 };
62 64
63 65 /*
64 66 * Textual representation of ace_t's access mask
65 67 */
66 68 #define READ_DATA_TXT "read_data/"
67 69 #define WRITE_DATA_TXT "write_data/"
68 70 #define EXECUTE_TXT "execute/"
69 71 #define READ_XATTR_TXT "read_xattr/"
70 72 #define WRITE_XATTR_TXT "write_xattr/"
71 73 #define READ_ATTRIBUTES_TXT "read_attributes/"
72 74 #define WRITE_ATTRIBUTES_TXT "write_attributes/"
73 75 #define DELETE_TXT "delete/"
74 76 #define DELETE_CHILD_TXT "delete_child/"
75 77 #define WRITE_OWNER_TXT "write_owner/"
76 78 #define READ_ACL_TXT "read_acl/"
77 79 #define WRITE_ACL_TXT "write_acl/"
78 80 #define APPEND_DATA_TXT "append_data/"
79 81 #define READ_DIR_TXT "list_directory/read_data/"
80 82 #define ADD_DIR_TXT "add_subdirectory/append_data/"
81 83 #define ADD_FILE_TXT "add_file/write_data/"
82 84 #define SYNCHRONIZE_TXT "synchronize/"
83 85
84 86 /*
85 87 * ace_t's entry types
86 88 */
87 89 #define OWNERAT_TXT "owner@:"
88 90 #define GROUPAT_TXT "group@:"
89 91 #define EVERYONEAT_TXT "everyone@:"
90 92 #define GROUP_TXT "group:"
91 93 #define USER_TXT "user:"
92 94 #define USERSID_TXT "usersid:"
93 95 #define GROUPSID_TXT "groupsid:"
94 96
95 97 /*
96 98 * ace_t's access types
97 99 */
98 100 #define ALLOW_TXT "allow"
99 101 #define DENY_TXT "deny"
100 102 #define ALARM_TXT "alarm"
101 103 #define AUDIT_TXT "audit"
102 104 #define UNKNOWN_TXT "unknown"
103 105
104 106 /*
105 107 * ace_t's inheritance types
106 108 */
107 109
108 110 #define FILE_INHERIT_TXT "file_inherit/"
109 111 #define DIR_INHERIT_TXT "dir_inherit/"
110 112 #define NO_PROPAGATE_TXT "no_propagate/"
111 113 #define INHERIT_ONLY_TXT "inherit_only/"
112 114 #define INHERITED_ACE_TXT "inherited/"
113 115 #define SUCCESSFUL_ACCESS_TXT "successful_access/"
114 116 #define FAILED_ACCESS_TXT "failed_access/"
115 117
116 118 extern char *yybuf;
117 119 extern acl_t *yyacl;
118 120
119 121 extern int yyerror(const char *);
120 122 extern int get_id(int entry_type, char *name, uid_t *id);
121 123 extern int get_id_nofail(int entry_type, char *name);
122 124 extern int ace_entry_type(int entry_type);
123 125 extern int aclent_entry_type(int type, int owning, int *ret);
124 126 extern int ace_perm_mask(struct acl_perm_type *, uint32_t *mask);
125 127 extern int compute_aclent_perms(char *str, o_mode_t *mask);
126 128 extern int compute_ace_inherit(char *str, uint32_t *imask);
127 129 extern int acl_addentries(acl_t *, acl_t *, int);
128 130 extern int acl_removeentries(acl_t *, acl_t *, int, int);
129 131 extern int acl_modifyentries(acl_t *, acl_t *, int);
130 132 extern void acl_printacl(acl_t *, int, int);
131 133 extern char *acl_strerror(int);
132 134 extern acl_t *acl_dup(acl_t *);
|
↓ open down ↓ |
99 lines elided |
↑ open up ↑ |
133 135 extern int acl_type(acl_t *);
134 136 extern int acl_cnt(acl_t *);
135 137 extern int acl_flags(acl_t *);
136 138 extern void *acl_data(acl_t *);
137 139 extern void acl_error(const char *, ...);
138 140 extern int acl_parse(const char *, acl_t **);
139 141 extern int yyparse(void);
140 142 extern void yyreset(void);
141 143 extern void yycleanup(void);
142 144 extern acl_t *acl_to_aclp(enum acl_type, void *, int);
145 +extern int sid_string_by_id(uid_t, boolean_t, char **, boolean_t);
143 146 extern int sid_to_id(char *, boolean_t, uid_t *);
144 147
145 148 #ifdef __cplusplus
146 149 }
147 150 #endif
148 151
149 152 #endif /* _ACLUTILS_H */
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX