1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _ACLUTILS_H 27 #define _ACLUTILS_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 #include <sys/types.h> 32 #include <sys/acl.h> 33 #include <strings.h> 34 #include <locale.h> 35 #include <ctype.h> 36 #include <grp.h> 37 #include <pwd.h> 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 42 43 #define ACL_REMOVE_ALL 0x0 44 #define ACL_REMOVE_FIRST 0x1 45 46 /* 47 * Hint for whether acl_totext() should use 48 * mnemonics: 49 * read_data/list_directory 50 * write_data/add_file or 51 * append_data/add_subdirectory 52 * when object of ACL is known. 53 */ 54 55 #define PERM_TYPE_ACE 0x1 /* permissions are of ACE type */ 56 #define PERM_TYPE_UNKNOWN 0x2 /* permission type not yet known */ 57 #define PERM_TYPE_EMPTY 0x4 /* no permissions are specified */ 58 59 struct acl_perm_type { 60 int perm_style; /* type of perm style, see above */ 61 char *perm_str; /* string value being returned */ 62 uint32_t perm_val; /* numeric value being returned */ 63 }; 64 65 extern char *yybuf; 66 extern acl_t *yyacl; 67 68 extern int yyerror(const char *); 69 extern int get_id(int entry_type, char *name, int *id); 70 extern int ace_entry_type(int entry_type); 71 extern int aclent_entry_type(int type, int owning, int *ret); 72 extern int ace_perm_mask(struct acl_perm_type *, uint32_t *mask); 73 extern int compute_aclent_perms(char *str, o_mode_t *mask); 74 extern int compute_ace_inherit(char *str, uint32_t *imask); 75 extern int acl_addentries(acl_t *, acl_t *, int); 76 extern int acl_removeentries(acl_t *, acl_t *, int, int); 77 extern int acl_modifyentries(acl_t *, acl_t *, int); 78 extern void acl_printacl(acl_t *, int, int); 79 extern char *acl_strerror(int); 80 extern acl_t *acl_dup(acl_t *); 81 extern int acl_type(acl_t *); 82 extern int acl_cnt(acl_t *); 83 extern int acl_flags(acl_t *); 84 extern void *acl_data(acl_t *); 85 extern void acl_error(const char *, ...); 86 extern int acl_parse(const char *, acl_t **); 87 extern int yyparse(void); 88 extern void yyreset(void); 89 extern acl_t *acl_to_aclp(enum acl_type, void *, int); 90 91 #ifdef __cplusplus 92 } 93 #endif 94 95 #endif /* _ACLUTILS_H */ 96