diff options
author | jedgar <jedgar@FreeBSD.org> | 2001-04-13 19:24:28 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2001-04-13 19:24:28 +0000 |
commit | 9fca9e8cc8da7dc976fb0c914b2e40397d3a533a (patch) | |
tree | 1d6f531d438fe78e64d6dfb472b31e14bf7fb83f /bin/getfacl | |
parent | 430f24915dac520156a872ef1f4dab8df98cb141 (diff) | |
download | FreeBSD-src-9fca9e8cc8da7dc976fb0c914b2e40397d3a533a.zip FreeBSD-src-9fca9e8cc8da7dc976fb0c914b2e40397d3a533a.tar.gz |
Convert getfacl to the ACL editing library functions. getfacl should
now compile/work on any POSIX.1e-compliant implementation (also tested
against the current Linux patches).
Review by: rwatson
Obtained from: TrustedBSD Project
Diffstat (limited to 'bin/getfacl')
-rw-r--r-- | bin/getfacl/getfacl.c | 94 |
1 files changed, 71 insertions, 23 deletions
diff --git a/bin/getfacl/getfacl.c b/bin/getfacl/getfacl.c index c5eb939..19a3353 100644 --- a/bin/getfacl/getfacl.c +++ b/bin/getfacl/getfacl.c @@ -37,6 +37,7 @@ #include <err.h> #include <errno.h> #include <stdio.h> +#include <stdlib.h> #include <unistd.h> int more_than_one = 0; @@ -48,46 +49,93 @@ usage(void) fprintf(stderr, "getfacl [-d] [files ...]\n"); } +/* + * return an ACL corresponding to the permissions + * contained in struct stat + */ static acl_t acl_from_stat(struct stat sb) { acl_t acl; + acl_entry_t entry; + acl_permset_t perms; + /* create the ACL */ acl = acl_init(3); if (!acl) - return(NULL); + return NULL; + + /* First entry: ACL_USER_OBJ */ + if (acl_create_entry(&acl, &entry) == -1) + return NULL; + if (acl_set_tag_type(entry, ACL_USER_OBJ) == -1) + return NULL; + + if (acl_get_permset(entry, &perms) == -1) + return NULL; + if (acl_clear_perms(perms) == -1) + return NULL; - acl->acl_entry[0].ae_tag = ACL_USER_OBJ; - acl->acl_entry[0].ae_id = sb.st_uid; - acl->acl_entry[0].ae_perm = 0; + /* calculate user mode */ if (sb.st_mode & S_IRUSR) - acl->acl_entry[0].ae_perm |= ACL_READ; + if (acl_add_perm(perms, ACL_READ) == -1) + return NULL; if (sb.st_mode & S_IWUSR) - acl->acl_entry[0].ae_perm |= ACL_WRITE; + if (acl_add_perm(perms, ACL_WRITE) == -1) + return NULL; if (sb.st_mode & S_IXUSR) - acl->acl_entry[0].ae_perm |= ACL_EXECUTE; - - acl->acl_entry[1].ae_tag = ACL_GROUP_OBJ; - acl->acl_entry[1].ae_id = sb.st_gid; - acl->acl_entry[1].ae_perm = 0; + if (acl_add_perm(perms, ACL_EXECUTE) == -1) + return NULL; + if (acl_set_permset(entry, perms) == -1) + return NULL; + + /* Second entry: ACL_GROUP_OBJ */ + if (acl_create_entry(&acl, &entry) == -1) + return NULL; + if (acl_set_tag_type(entry, ACL_GROUP_OBJ) == -1) + return NULL; + + if (acl_get_permset(entry, &perms) == -1) + return NULL; + if (acl_clear_perms(perms) == -1) + return NULL; + + /* calculate group mode */ if (sb.st_mode & S_IRGRP) - acl->acl_entry[1].ae_perm |= ACL_READ; + if (acl_add_perm(perms, ACL_READ) == -1) + return NULL; if (sb.st_mode & S_IWGRP) - acl->acl_entry[1].ae_perm |= ACL_WRITE; + if (acl_add_perm(perms, ACL_WRITE) == -1) + return NULL; if (sb.st_mode & S_IXGRP) - acl->acl_entry[1].ae_perm |= ACL_EXECUTE; - - acl->acl_entry[2].ae_tag = ACL_OTHER_OBJ; - acl->acl_entry[2].ae_id = 0; - acl->acl_entry[2].ae_perm = 0; + if (acl_add_perm(perms, ACL_EXECUTE) == -1) + return NULL; + if (acl_set_permset(entry, perms) == -1) + return NULL; + + /* Third entry: ACL_OTHER */ + if (acl_create_entry(&acl, &entry) == -1) + return NULL; + if (acl_set_tag_type(entry, ACL_OTHER) == -1) + return NULL; + + if (acl_get_permset(entry, &perms) == -1) + return NULL; + if (acl_clear_perms(perms) == -1) + return NULL; + + /* calculate other mode */ if (sb.st_mode & S_IROTH) - acl->acl_entry[2].ae_perm |= ACL_READ; + if (acl_add_perm(perms, ACL_READ) == -1) + return NULL; if (sb.st_mode & S_IWOTH) - acl->acl_entry[2].ae_perm |= ACL_WRITE; + if (acl_add_perm(perms, ACL_WRITE) == -1) + return NULL; if (sb.st_mode & S_IXOTH) - acl->acl_entry[2].ae_perm |= ACL_EXECUTE; - - acl->acl_cnt = 3; + if (acl_add_perm(perms, ACL_EXECUTE) == -1) + return NULL; + if (acl_set_permset(entry, perms) == -1) + return NULL; return(acl); } |