Searched defs:deny (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/lp/lib/access/
H A Dallowed.c77 char ** deny
80 is_user_allowed (user, allow, deny)
83 **deny;
89 return (allowed(user, allow, deny));
109 **deny; local
111 if (loadaccess(Lp_A_Forms, form, "", &allow, &deny) == -1)
114 return (is_user_allowed(user, allow, deny));
134 **deny; local
136 if (loadaccess(Lp_A_Printers, printer, UACCESSPREFIX, &allow, &deny) == -1)
139 return (is_user_allowed(user, allow, deny));
159 **deny; local
[all...]
/illumos-gate/usr/src/man/man4/
H A DMakefile228 hosts.deny.4 \
273 hosts.deny.4 := LINKSRC = hosts_access.4
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_srv_deleg.c1137 * delegation type and the desired access and deny modes on the file.
1139 * deny modes are consistent with the file modes.
1146 uint32_t deny = sp->rs_share_deny; local
1171 (deny & (OPEN4_SHARE_DENY_READ | OPEN4_SHARE_DENY_WRITE)))
1178 (deny & ~OPEN4_SHARE_DENY_READ))
1187 * write or deny others to read then we can't delegate
1192 (deny & OPEN4_SHARE_DENY_READ))
1386 * Default is to deny all access, the client will have
1388 * set a deny for every one, or do we simply want to
H A Dnfs4_acl.c482 ace4_make_deny(nfsace4 *allow, nfsace4 *deny, int isdir, int isowner, argument
485 bcopy(allow, deny, sizeof (nfsace4));
487 (void) utf8_copy(&allow->who, &deny->who);
489 deny->type = ACE4_ACCESS_DENIED_ACE_TYPE;
490 deny->access_mask ^= ACE4_POSIX_SUPPORTED_BITS;
492 deny->access_mask ^= ACE4_DELETE_CHILD;
494 deny->access_mask &= ~(ACE4_SYNCHRONIZE | ACE4_WRITE_OWNER |
497 deny->access_mask |= access_mask_set((allow->access_mask &
581 /* allow + deny for each aclent */
585 * stick extra deny o
[all...]
H A Dnfs4_srv.c6694 uint32_t access, uint32_t deny,
6751 * Calculate the new deny and access mode that this open is adding to
6754 open_d = (deny & ~sp->rs_open_deny);
6758 * Calculate the new share access and share deny modes that this open
6762 share_d = (deny & ~sp->rs_share_deny);
6768 * open owner on this file with the same share/deny modes.
6771 * check for conflicts in deny and access before checking for
6778 if ((err = rfs4_share(sp, access, deny)) != 0) {
6886 sp->rs_open_deny |= deny;
6892 fp->rf_share_deny |= deny;
6692 rfs4_do_open(struct compound_state *cs, struct svc_req *req, rfs4_openowner_t *oo, delegreq_t deleg, uint32_t access, uint32_t deny, OPEN4res *resp, int deleg_cur) argument
7686 uint32_t deny = args->share_deny; local
9496 rfs4_share(rfs4_state_t *sp, uint32_t access, uint32_t deny) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_vops.c1360 short deny = 0; local
1393 deny |= F_RDDNY;
1397 deny |= F_WRDNY;
1405 deny |= F_RMDNY;
1411 shr.s_deny = deny;
/illumos-gate/usr/src/common/acl/
H A Dacl_common.c434 ace_make_deny(ace_t *allow, ace_t *deny, int isdir, int isowner) argument
436 (void) memcpy(deny, allow, sizeof (ace_t));
438 deny->a_who = allow->a_who;
440 deny->a_type = ACE_ACCESS_DENIED_ACE_TYPE;
441 deny->a_access_mask ^= ACE_POSIX_SUPPORTED_BITS;
443 deny->a_access_mask ^= ACE_DELETE_CHILD;
445 deny->a_access_mask &= ~(ACE_SYNCHRONIZE | ACE_WRITE_OWNER |
448 deny->a_access_mask |= access_mask_set((allow->a_access_mask &
522 /* allow + deny for each aclent */
526 * stick extra deny o
[all...]

Completed in 115 milliseconds