1ACL_FROM_TEXT(3) BSD Library Functions Manual ACL_FROM_TEXT(3)
2
4 acl_from_text — create an ACL from text
5
7 Linux Access Control Lists library (libacl, -lacl).
8
10 #include <sys/types.h>
11 #include <sys/acl.h>
12
13 acl_t
14 acl_from_text(const char *buf_p);
15
17 The acl_from_text() function converts the text form of the ACL referred
18 to by buf_p into the internal form of an ACL and returns a pointer to the
19 working storage that contains the ACL. The acl_from_text() function
20 accepts as input the long text form and short text form of an ACL as
21 described in acl(5).
22
23 This function may cause memory to be allocated. The caller should free
24 any releasable memory, when the new ACL is no longer required, by calling
25 acl_free(3) with the (void*)acl_t returned by acl_from_text() as an argu‐
26 ment.
27
29 On success, this function returns a pointer to the working storage. On
30 error, a value of (acl_t)NULL is returned, and errno is set appropri‐
31 ately.
32
34 If any of the following conditions occur, the acl_from_text() function
35 returns a value of (acl_t)NULL and sets errno to the corresponding value:
36
37 [EINVAL] The argument buf_p cannot be translated into an ACL.
38
39 [ENOMEM] The acl_t to be returned requires more memory than is
40 allowed by the hardware or system-imposed memory man‐
41 agement constraints.
42
44 IEEE Std 1003.1e draft 17 (“POSIX.1e”, abandoned)
45
47 acl_free(3), acl_get_entry(3), acl(5)
48
50 Derived from the FreeBSD manual pages written by Robert N M Watson
51 <rwatson@FreeBSD.org>, and adapted for Linux by Andreas Gruenbacher
52 <a.gruenbacher@bestbits.at>.
53
54Linux ACL March 23, 2002 Linux ACL