2 * Copyright (c) 1999 Robert N. M. Watson
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 *$FreeBSD: src/lib/libposix1e/acl_to_text.c,v 1.2 2000/01/26 04:19:38 rwatson Exp $
27 *$DragonFly: src/lib/libposix1e/acl_to_text.c,v 1.3 2005/08/04 17:27:09 drhodus Exp $
30 * acl_to_text - return a text string with a text representation of the acl
34 #include <sys/types.h>
36 #include <sys/errno.h>
42 #include "acl_support.h"
45 * acl_to_text - generate a text form of an acl
46 * spec says nothing about output ordering, so leave in acl order
48 * This function will not produce nice results if it is called with
49 * a non-POSIX.1e semantics ACL.
52 acl_to_text(acl_t acl
, ssize_t
*len_p
)
55 char name_buf
[UT_NAMESIZE
+1];
56 char perm_buf
[ACL_STRING_PERM_MAXSIZE
+1],
57 effective_perm_buf
[ACL_STRING_PERM_MAXSIZE
+1];
61 acl_perm_t ae_perm
, effective_perm
, mask_perm
;
65 mask_perm
= ACL_PERM_BITS
; /* effective is regular if no mask */
66 for (i
= 0; i
< acl
->acl_cnt
; i
++)
67 if (acl
->acl_entry
[i
].ae_tag
== ACL_MASK
)
68 mask_perm
= acl
->acl_entry
[i
].ae_perm
;
70 for (i
= 0; i
< acl
->acl_cnt
; i
++) {
71 ae_tag
= acl
->acl_entry
[i
].ae_tag
;
72 ae_id
= acl
->acl_entry
[i
].ae_id
;
73 ae_perm
= acl
->acl_entry
[i
].ae_perm
;
77 error
= acl_perm_to_string(ae_perm
,
78 ACL_STRING_PERM_MAXSIZE
+1, perm_buf
);
81 len
= asprintf(&tmpbuf
, "%suser::%s\n", buf
,
92 error
= acl_perm_to_string(ae_perm
,
93 ACL_STRING_PERM_MAXSIZE
+1, perm_buf
);
97 error
= acl_id_to_name(ae_tag
, ae_id
, UT_NAMESIZE
+1,
102 effective_perm
= ae_perm
& mask_perm
;
103 if (effective_perm
!= ae_perm
) {
104 error
= acl_perm_to_string(effective_perm
,
105 ACL_STRING_PERM_MAXSIZE
+1,
109 len
= asprintf(&tmpbuf
, "%suser:%s:%s\t\t# "
111 buf
, name_buf
, perm_buf
,
114 len
= asprintf(&tmpbuf
, "%suser:%s:%s\n", buf
,
126 error
= acl_perm_to_string(ae_perm
,
127 ACL_STRING_PERM_MAXSIZE
+1, perm_buf
);
131 effective_perm
= ae_perm
& mask_perm
;
132 if (effective_perm
!= ae_perm
) {
133 error
= acl_perm_to_string(effective_perm
,
134 ACL_STRING_PERM_MAXSIZE
+1,
138 len
= asprintf(&tmpbuf
, "%sgroup::%s\t\t# "
140 buf
, perm_buf
, effective_perm_buf
);
142 len
= asprintf(&tmpbuf
, "%sgroup::%s\n", buf
,
154 error
= acl_perm_to_string(ae_perm
,
155 ACL_STRING_PERM_MAXSIZE
+1, perm_buf
);
159 error
= acl_id_to_name(ae_tag
, ae_id
, UT_NAMESIZE
+1,
164 effective_perm
= ae_perm
& mask_perm
;
165 if (effective_perm
!= ae_perm
) {
166 error
= acl_perm_to_string(effective_perm
,
167 ACL_STRING_PERM_MAXSIZE
+1,
171 len
= asprintf(&tmpbuf
, "%sgroup::%s\t\t# "
173 buf
, perm_buf
, effective_perm_buf
);
175 len
= asprintf(&tmpbuf
, "%sgroup:%s:%s\n", buf
,
187 error
= acl_perm_to_string(ae_perm
,
188 ACL_STRING_PERM_MAXSIZE
+1, perm_buf
);
192 len
= asprintf(&tmpbuf
, "%smask::%s\n", buf
,
203 error
= acl_perm_to_string(ae_perm
,
204 ACL_STRING_PERM_MAXSIZE
+1, perm_buf
);
208 len
= asprintf(&tmpbuf
, "%sother::%s\n", buf
,
226 *len_p
= strlen(buf
);
231 /* jump to here sets errno already, we just clean up */