2 * fs/nfs_common/nfsacl.c
4 * Copyright (C) 2002-2003 Andreas Gruenbacher <agruen@suse.de>
8 * The Solaris nfsacl protocol represents some ACLs slightly differently
9 * than POSIX 1003.1e draft 17 does (and we do):
11 * - Minimal ACLs always have an ACL_MASK entry, so they have
12 * four instead of three entries.
13 * - The ACL_MASK entry in such minimal ACLs always has the same
14 * permissions as the ACL_GROUP_OBJ entry. (In extended ACLs
15 * the ACL_MASK and ACL_GROUP_OBJ entries may differ.)
16 * - The identifier fields of the ACL_USER_OBJ and ACL_GROUP_OBJ
17 * entries contain the identifiers of the owner and owning group.
18 * (In POSIX ACLs we always set them to ACL_UNDEFINED_ID).
19 * - ACL entries in the kernel are kept sorted in ascending order
20 * of (e_tag, e_id). Solaris ACLs are unsorted.
23 #include <linux/module.h>
25 #include <linux/gfp.h>
26 #include <linux/sunrpc/xdr.h>
27 #include <linux/nfsacl.h>
28 #include <linux/nfs3.h>
29 #include <linux/sort.h>
31 MODULE_LICENSE("GPL");
33 EXPORT_SYMBOL_GPL(nfsacl_encode
);
34 EXPORT_SYMBOL_GPL(nfsacl_decode
);
36 struct nfsacl_encode_desc
{
37 struct xdr_array2_desc desc
;
39 struct posix_acl
*acl
;
45 struct nfsacl_simple_acl
{
47 struct posix_acl_entry ace
[4];
51 xdr_nfsace_encode(struct xdr_array2_desc
*desc
, void *elem
)
53 struct nfsacl_encode_desc
*nfsacl_desc
=
54 (struct nfsacl_encode_desc
*) desc
;
57 struct posix_acl_entry
*entry
=
58 &nfsacl_desc
->acl
->a_entries
[nfsacl_desc
->count
++];
60 *p
++ = htonl(entry
->e_tag
| nfsacl_desc
->typeflag
);
61 switch(entry
->e_tag
) {
63 *p
++ = htonl(nfsacl_desc
->uid
);
66 *p
++ = htonl(nfsacl_desc
->gid
);
70 *p
++ = htonl(entry
->e_id
);
72 default: /* Solaris depends on that! */
76 *p
++ = htonl(entry
->e_perm
& S_IRWXO
);
81 * nfsacl_encode - Encode an NFSv3 ACL
83 * @buf: destination xdr_buf to contain XDR encoded ACL
84 * @base: byte offset in xdr_buf where XDR'd ACL begins
85 * @inode: inode of file whose ACL this is
86 * @acl: posix_acl to encode
87 * @encode_entries: whether to encode ACEs as well
88 * @typeflag: ACL type: NFS_ACL_DEFAULT or zero
90 * Returns size of encoded ACL in bytes or a negative errno value.
92 int nfsacl_encode(struct xdr_buf
*buf
, unsigned int base
, struct inode
*inode
,
93 struct posix_acl
*acl
, int encode_entries
, int typeflag
)
95 int entries
= (acl
&& acl
->a_count
) ? max_t(int, acl
->a_count
, 4) : 0;
96 struct nfsacl_encode_desc nfsacl_desc
= {
99 .array_len
= encode_entries
? entries
: 0,
100 .xcode
= xdr_nfsace_encode
,
103 .typeflag
= typeflag
,
107 struct nfsacl_simple_acl aclbuf
;
110 if (entries
> NFS_ACL_MAX_ENTRIES
||
111 xdr_encode_word(buf
, base
, entries
))
113 if (encode_entries
&& acl
&& acl
->a_count
== 3) {
114 struct posix_acl
*acl2
= &aclbuf
.acl
;
116 /* Avoid the use of posix_acl_alloc(). nfsacl_encode() is
117 * invoked in contexts where a memory allocation failure is
118 * fatal. Fortunately this fake ACL is small enough to
119 * construct on the stack. */
120 posix_acl_init(acl2
, 4);
122 /* Insert entries in canonical order: other orders seem
123 to confuse Solaris VxFS. */
124 acl2
->a_entries
[0] = acl
->a_entries
[0]; /* ACL_USER_OBJ */
125 acl2
->a_entries
[1] = acl
->a_entries
[1]; /* ACL_GROUP_OBJ */
126 acl2
->a_entries
[2] = acl
->a_entries
[1]; /* ACL_MASK */
127 acl2
->a_entries
[2].e_tag
= ACL_MASK
;
128 acl2
->a_entries
[3] = acl
->a_entries
[2]; /* ACL_OTHER */
129 nfsacl_desc
.acl
= acl2
;
131 err
= xdr_encode_array2(buf
, base
+ 4, &nfsacl_desc
.desc
);
133 err
= 8 + nfsacl_desc
.desc
.elem_size
*
134 nfsacl_desc
.desc
.array_len
;
138 struct nfsacl_decode_desc
{
139 struct xdr_array2_desc desc
;
141 struct posix_acl
*acl
;
145 xdr_nfsace_decode(struct xdr_array2_desc
*desc
, void *elem
)
147 struct nfsacl_decode_desc
*nfsacl_desc
=
148 (struct nfsacl_decode_desc
*) desc
;
150 struct posix_acl_entry
*entry
;
152 if (!nfsacl_desc
->acl
) {
153 if (desc
->array_len
> NFS_ACL_MAX_ENTRIES
)
155 nfsacl_desc
->acl
= posix_acl_alloc(desc
->array_len
, GFP_KERNEL
);
156 if (!nfsacl_desc
->acl
)
158 nfsacl_desc
->count
= 0;
161 entry
= &nfsacl_desc
->acl
->a_entries
[nfsacl_desc
->count
++];
162 entry
->e_tag
= ntohl(*p
++) & ~NFS_ACL_DEFAULT
;
163 entry
->e_id
= ntohl(*p
++);
164 entry
->e_perm
= ntohl(*p
++);
166 switch(entry
->e_tag
) {
172 if (entry
->e_perm
& ~S_IRWXO
)
176 /* Solaris sometimes sets additional bits in the mask */
177 entry
->e_perm
&= S_IRWXO
;
187 cmp_acl_entry(const void *x
, const void *y
)
189 const struct posix_acl_entry
*a
= x
, *b
= y
;
191 if (a
->e_tag
!= b
->e_tag
)
192 return a
->e_tag
- b
->e_tag
;
193 else if (a
->e_id
> b
->e_id
)
195 else if (a
->e_id
< b
->e_id
)
202 * Convert from a Solaris ACL to a POSIX 1003.1e draft 17 ACL.
205 posix_acl_from_nfsacl(struct posix_acl
*acl
)
207 struct posix_acl_entry
*pa
, *pe
,
208 *group_obj
= NULL
, *mask
= NULL
;
213 sort(acl
->a_entries
, acl
->a_count
, sizeof(struct posix_acl_entry
),
214 cmp_acl_entry
, NULL
);
216 /* Clear undefined identifier fields and find the ACL_GROUP_OBJ
217 and ACL_MASK entries. */
218 FOREACH_ACL_ENTRY(pa
, acl
, pe
) {
221 pa
->e_id
= ACL_UNDEFINED_ID
;
224 pa
->e_id
= ACL_UNDEFINED_ID
;
231 pa
->e_id
= ACL_UNDEFINED_ID
;
235 if (acl
->a_count
== 4 && group_obj
&& mask
&&
236 mask
->e_perm
== group_obj
->e_perm
) {
237 /* remove bogus ACL_MASK entry */
238 memmove(mask
, mask
+1, (3 - (mask
- acl
->a_entries
)) *
239 sizeof(struct posix_acl_entry
));
246 * nfsacl_decode - Decode an NFSv3 ACL
248 * @buf: xdr_buf containing XDR'd ACL data to decode
249 * @base: byte offset in xdr_buf where XDR'd ACL begins
250 * @aclcnt: count of ACEs in decoded posix_acl
251 * @pacl: buffer in which to place decoded posix_acl
253 * Returns the length of the decoded ACL in bytes, or a negative errno value.
255 int nfsacl_decode(struct xdr_buf
*buf
, unsigned int base
, unsigned int *aclcnt
,
256 struct posix_acl
**pacl
)
258 struct nfsacl_decode_desc nfsacl_desc
= {
261 .xcode
= pacl
? xdr_nfsace_decode
: NULL
,
267 if (xdr_decode_word(buf
, base
, &entries
) ||
268 entries
> NFS_ACL_MAX_ENTRIES
)
270 nfsacl_desc
.desc
.array_maxlen
= entries
;
271 err
= xdr_decode_array2(buf
, base
+ 4, &nfsacl_desc
.desc
);
275 if (entries
!= nfsacl_desc
.desc
.array_len
||
276 posix_acl_from_nfsacl(nfsacl_desc
.acl
) != 0) {
277 posix_acl_release(nfsacl_desc
.acl
);
280 *pacl
= nfsacl_desc
.acl
;
284 return 8 + nfsacl_desc
.desc
.elem_size
*
285 nfsacl_desc
.desc
.array_len
;