HomeSort by relevance Sort by last modified time
    Searched refs:acl (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /onnv/onnv-gate/usr/src/lib/libc/common/sys/
acl.s 30 .file "acl.s"
32 /* C library -- acl */
33 /* int acl(const char *path, int cmd, int cnt, struct aclent *buf) */
37 SYSCALL_RVAL1(acl)
39 SET_SIZE(acl)
  /onnv/onnv-gate/usr/src/lib/libsec/
inc.flg 29 find_files "s.*" usr/src/common/acl
Makefile.com 31 YFLAGS = -d -v -b acl
34 GENERATED_SRCS = acl.tab.o acl_lex.o
37 CLEANFILES += acl_lex.c acl.tab.c acl.tab.h
48 CPPFLAGS += -I$(SRCDIR) -I. -I../../../common/acl
55 $(OBJS_SHARED:%.o=$(SRC)/common/acl/%.c)
65 pics/%.o: ../../../common/acl/%.c
69 acl.tab.c acl.tab.h: $(SRCDIR)/acl.
    [all...]
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmpdemod/
snmpdemo.acl 42 acl = {
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmprelayd/
snmpdx.acl 42 acl = {
relay.conf 42 acl = {
  /onnv/onnv-gate/usr/src/lib/smbsrv/libsmb/common/
smb_acl.c 71 smb_acl_t *acl; local
75 if ((acl = malloc(size)) == NULL)
78 acl->sl_revision = revision;
79 acl->sl_bsize = bsize;
80 acl->sl_acecnt = acecnt;
81 acl->sl_aces = (smb_ace_t *)(acl + 1);
83 list_create(&acl->sl_sorted, sizeof (smb_ace_t),
85 return (acl);
89 smb_acl_free(smb_acl_t *acl)
252 smb_acl_t *acl; local
491 acl_t *acl; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsmbfs/smb/
acl_api.c 28 * ACL API for smbfs
37 #include <sys/acl.h>
201 * ZFS-style ACL (libsec acl, type=ACE_T)
208 acl_t *acl = NULL; local
240 * Convert the internal SD to a ZFS ACL.
244 acl = acl_alloc(ACE_T);
245 if (acl == NULL) {
250 error = smbfs_acl_sd2zfs(sd, acl, uidp, gidp);
256 *aclp = acl;
    [all...]
acl_print.c 37 #include <sys/acl.h>
91 fprint_ntacl(FILE *fp, i_ntacl_t *acl)
95 if (acl == NULL) {
101 acl->acl_revision, acl->acl_acecount);
102 for (i = 0; i < acl->acl_acecount; i++)
103 fprint_ntace(fp, acl->acl_acevec[i]);
acl_conv.c 28 * ACL support for smbfs
41 #include <sys/acl.h>
255 * Access Control List (ACL)
262 ifree_acl(i_ntacl_t *acl)
268 if (acl == NULL)
271 acep = &acl->acl_acevec[0];
272 for (i = 0; i < acl->acl_acecount; i++) {
276 sz = I_ACL_SIZE(acl->acl_acecount);
277 FREESZ(acl, sz);
283 i_ntacl_t *acl = NULL local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/smbsrv/
smb_acl.c 26 #include <sys/acl.h>
27 #include <acl/acl_common.h>
80 * Default ACL:
112 smb_acl_t *acl; local
116 acl = kmem_zalloc(size, KM_SLEEP);
117 acl->sl_revision = revision;
118 acl->sl_bsize = bsize;
119 acl->sl_acecnt = acecnt;
120 acl->sl_aces = (smb_ace_t *)(acl + 1)
298 smb_acl_t *acl; local
537 acl_t *acl; local
564 acl_t *acl; local
    [all...]
smb_nt_transact_security.c 310 smb_encode_sacl(struct smb_xa *xa, smb_acl_t *acl)
315 if (acl == NULL)
319 (void) smb_mbc_encodef(&xa->rep_data_mb, "b.ww2.", acl->sl_revision,
320 acl->sl_bsize, acl->sl_acecnt);
322 for (i = 0, ace = acl->sl_aces; i < acl->sl_acecnt; i++, ace++) {
337 smb_encode_dacl(struct smb_xa *xa, smb_acl_t *acl)
341 if (acl == NULL)
345 (void) smb_mbc_encodef(&xa->rep_data_mb, "b.ww2.", acl->sl_revision
501 smb_acl_t *acl; local
    [all...]
smb_sd.c 117 * Read uid, gid and ACL from filesystem. The returned ACL from read
118 * routine is always in ZFS format. Convert the ZFS acl to a Win acl
155 * converts ZFS acl to Posix acl if required.
290 smb_acl_t *acl = NULL; local
328 acl = smb_acl_from_zfs(fs_sd->sd_zdacl, fs_sd->sd_uid,
330 if (acl == NULL) {
336 * Need to sort the ACL before send it to Window
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/smbclnt/lsacl/
lsacl.c 35 #include <sys/acl.h>
60 struct acl_info *acl; local
96 * Get it again as a ZFS-style ACL (ACE_T)
98 error = smbfs_acl_get(fd, &acl, &uid, &gid);
113 acl_printacl(acl, 80, 0);
  /onnv/onnv-gate/usr/src/uts/common/fs/nfs/
nfs_acl_srv.c 50 #include <sys/acl.h>
73 * NFS ACL server. See the NFS ACL protocol specification
92 bzero((caddr_t)&resp->resok.acl, sizeof (resp->resok.acl));
94 resp->resok.acl.vsa_mask = args->mask;
96 error = VOP_GETSECATTR(vp, &resp->resok.acl, 0, cr, NULL);
101 * aclent_t type acls, fabricate an acl. This is
114 error = fs_fab_acl(vp, &resp->resok.acl, 0, cr, NULL);
134 if (resp->resok.acl.vsa_aclcnt > 0 &
    [all...]
  /onnv/onnv-gate/usr/src/cmd/gss/etc/
kdc.conf 33 acl_file = /etc/krb5/kadm5.acl
Makefile 29 KRB5TXTS= warn.conf krb5.conf kdc.conf kpropd.acl kadm5.acl
  /onnv/onnv-gate/usr/src/lib/libsec/common/
llib-lsec 39 #include <sys/acl.h>
aclutils.c 55 * Determine whether a file has a trivial ACL
76 aclcnt = acl(filename, cntcmd, 0, NULL);
82 if (acl(filename, ACE_GETACL,
121 * if acl's aren't supported then
142 acl_info->acl_cnt = acl(fname, cntcmd, 0, NULL);
172 error = acl(fname, getcmd, acl_info->acl_cnt,
221 * return -1 on failure, otherwise the number of acl
244 * Set an ACL, translates acl to ace_t when appropriate.
271 * In the case of 0 we will then fail in either acl(2) o
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/fs/
ufs_acl.h 34 #include <sys/acl.h>
42 * On-disk UFS ACL structure
58 * In-core UFS ACL structure
62 struct ufs_ic_acl *acl_ic_next; /* Next ACL for this inode */
68 * In-core ACL mask
76 * full acl
176 * Get ACL group permissions if the mask is not present, and the ACL
179 #define MASK2MODE(ACL) \
180 ((ACL)->aclass.acl_ismask ?
    [all...]
  /onnv/onnv-gate/usr/src/head/rpcsvc/
nfs_acl.x 38 * This is the format of an ACL which is passed over the network.
67 * This is the structure which contains the ACL entries for a
68 * particular entity. It contains the ACL entries which apply
69 * to this object plus any default ACL entries which are
103 secattr acl;
119 secattr acl;
220 secattr acl;
240 secattr acl;
299 secattr acl;
319 secattr acl;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/bart/
main.c 31 #include <sys/acl.h>
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWkdcr/
prototype_com 56 e preserve etc/krb5/kadm5.acl 644 root sys
58 e preserve etc/krb5/kpropd.acl 644 root sys
  /onnv/onnv-gate/usr/src/lib/libsmbfs/netsmb/
smbfs_acl.h 31 * Get/set ACL via contracted interface in libsmbfs.
32 * The ACL is in the form used by libsec (type=ACE_T)
36 #include <sys/acl.h>
43 * Get a ZFS-style acl from an FD opened in smbfs.
52 * Set a ZFS-style acl onto an FD opened in smbfs.
80 * Convert an internal SD to a ZFS-style ACL.
86 * Convert an internal SD to a ZFS-style ACL.
  /onnv/onnv-gate/usr/src/cmd/backup/lib/
byteorder.c 266 normacls(struct byteorder_ctx *ctx, ufs_acl_t *acl, int n)
278 swabst("1s", (uchar_t *)&(acl[i].acl_tag)); /* u_short */
279 swabst("1s", (uchar_t *)&(acl[i].acl_perm)); /* o_mode_t */
282 uid = (uid32_t)(acl[i].acl_who);
283 if (!complained && ((uid_t)uid) != acl[i].acl_who) {
293 "Some ACL uids have been truncated\n");

Completed in 420 milliseconds

1 2 3 4 5 6 7