/linux/include/linux/ |
H A D | moduleparam.h | 73 const u16 perm; member 126 #define module_param(name, type, perm) \ argument 127 module_param_named(name, name, type, perm) 135 #define module_param_unsafe(name, type, perm) \ argument 136 module_param_named_unsafe(name, name, type, perm) 149 #define module_param_named(name, value, type, perm) \ argument 151 module_param_cb(name, ¶m_ops_##type, &value, perm); \ 161 #define module_param_named_unsafe(name, value, type, perm) \ argument 163 module_param_cb_unsafe(name, ¶m_ops_##type, &value, perm); \ 175 #define module_param_cb(name, ops, arg, perm) \ argument [all …]
|
H A D | lsm_hook_defs.h | 266 LSM_HOOK(int, 0, msg_queue_alloc_security, struct kern_ipc_perm *perm) 268 struct kern_ipc_perm *perm) 269 LSM_HOOK(int, 0, msg_queue_associate, struct kern_ipc_perm *perm, int msqflg) 270 LSM_HOOK(int, 0, msg_queue_msgctl, struct kern_ipc_perm *perm, int cmd) 271 LSM_HOOK(int, 0, msg_queue_msgsnd, struct kern_ipc_perm *perm, 273 LSM_HOOK(int, 0, msg_queue_msgrcv, struct kern_ipc_perm *perm, 275 LSM_HOOK(int, 0, shm_alloc_security, struct kern_ipc_perm *perm) 276 LSM_HOOK(void, LSM_RET_VOID, shm_free_security, struct kern_ipc_perm *perm) 277 LSM_HOOK(int, 0, shm_associate, struct kern_ipc_perm *perm, int shmflg) 278 LSM_HOOK(int, 0, shm_shmctl, struct kern_ipc_perm *perm, int cmd) [all …]
|
H A D | vhost_iotlb.h | 17 u32 perm; member 34 u64 addr, unsigned int perm, void *opaque); 36 u64 addr, unsigned int perm);
|
/linux/security/tomoyo/ |
H A D | file.c | 258 if (acl->perm & (1 << r->param.path.operation)) { in tomoyo_check_path_acl() 281 return (acl->perm & (1 << r->param.path_number.operation)) && in tomoyo_check_path_number_acl() 302 return (acl->perm & (1 << r->param.path2.operation)) && in tomoyo_check_path2_acl() 322 return (acl->perm & (1 << r->param.mkdev.operation)) && in tomoyo_check_mkdev_acl() 364 ->perm; in tomoyo_merge_path_acl() 365 u16 perm = READ_ONCE(*a_perm); in tomoyo_merge_path_acl() local 366 const u16 b_perm = container_of(b, struct tomoyo_path_acl, head)->perm; in tomoyo_merge_path_acl() 369 perm &= ~b_perm; in tomoyo_merge_path_acl() 371 perm |= b_perm; in tomoyo_merge_path_acl() 372 WRITE_ONCE(*a_perm, perm); in tomoyo_merge_path_acl() [all …]
|
H A D | network.c | 235 &container_of(a, struct tomoyo_inet_acl, head)->perm; in tomoyo_merge_inet_acl() 236 u8 perm = READ_ONCE(*a_perm); in tomoyo_merge_inet_acl() local 237 const u8 b_perm = container_of(b, struct tomoyo_inet_acl, head)->perm; in tomoyo_merge_inet_acl() 240 perm &= ~b_perm; in tomoyo_merge_inet_acl() 242 perm |= b_perm; in tomoyo_merge_inet_acl() 243 WRITE_ONCE(*a_perm, perm); in tomoyo_merge_inet_acl() 244 return !perm; in tomoyo_merge_inet_acl() 261 &container_of(a, struct tomoyo_unix_acl, head)->perm; in tomoyo_merge_unix_acl() 262 u8 perm = READ_ONCE(*a_perm); in tomoyo_merge_unix_acl() local 263 const u8 b_perm = container_of(b, struct tomoyo_unix_acl, head)->perm; in tomoyo_merge_unix_acl() [all …]
|
H A D | util.c | 1058 u16 perm; in tomoyo_domain_quota_is_ok() local 1069 perm = data_race(container_of(ptr, struct tomoyo_path_acl, head)->perm); in tomoyo_domain_quota_is_ok() 1072 perm = data_race(container_of(ptr, struct tomoyo_path2_acl, head)->perm); in tomoyo_domain_quota_is_ok() 1075 perm = data_race(container_of(ptr, struct tomoyo_path_number_acl, head) in tomoyo_domain_quota_is_ok() 1076 ->perm); in tomoyo_domain_quota_is_ok() 1079 perm = data_race(container_of(ptr, struct tomoyo_mkdev_acl, head)->perm); in tomoyo_domain_quota_is_ok() 1082 perm = data_race(container_of(ptr, struct tomoyo_inet_acl, head)->perm); in tomoyo_domain_quota_is_ok() 1085 perm = data_race(container_of(ptr, struct tomoyo_unix_acl, head)->perm); in tomoyo_domain_quota_is_ok() 1088 perm = 0; in tomoyo_domain_quota_is_ok() 1091 perm = 1; in tomoyo_domain_quota_is_ok() [all …]
|
/linux/drivers/tty/vt/ |
H A D | vt_ioctl.c | 284 unsigned long arg, bool perm) in vt_k_ioctl() argument 293 if (!perm) in vt_k_ioctl() 307 if (!perm) in vt_k_ioctl() 377 if (!perm) in vt_k_ioctl() 397 if (!perm) in vt_k_ioctl() 420 perm = 0; in vt_k_ioctl() 421 return vt_do_kbkeycode_ioctl(cmd, up, perm); in vt_k_ioctl() 425 return vt_do_kdsk_ioctl(cmd, up, perm, console); in vt_k_ioctl() 429 return vt_do_kdgkb_ioctl(cmd, up, perm); in vt_k_ioctl() 437 return vt_do_diacrit(cmd, up, perm); in vt_k_ioctl() [all …]
|
/linux/security/integrity/ |
H A D | digsig.c | 99 key_perm_t perm, in __integrity_init_keyring() argument 106 KGIDT_INIT(0), cred, perm, in __integrity_init_keyring() 128 key_perm_t perm; in integrity_init_keyring() local 131 perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_VIEW in integrity_init_keyring() 159 perm |= KEY_USR_WRITE; in integrity_init_keyring() 162 ret = __integrity_init_keyring(id, perm, restriction); in integrity_init_keyring() 169 off_t size, key_perm_t perm) in integrity_add_key() argument 178 NULL, data, size, perm, in integrity_add_key() 199 key_perm_t perm; in integrity_load_x509() local 209 perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_VIEW | KEY_USR_READ; in integrity_load_x509() [all …]
|
/linux/arch/arm64/include/asm/ |
H A D | por.h | 14 u8 perm = POR_ELx_IDX(por, pkey); in por_elx_allows_read() local 16 return perm & POE_R; in por_elx_allows_read() 21 u8 perm = POR_ELx_IDX(por, pkey); in por_elx_allows_write() local 23 return perm & POE_W; in por_elx_allows_write() 28 u8 perm = POR_ELx_IDX(por, pkey); in por_elx_allows_exec() local 30 return perm & POE_X; in por_elx_allows_exec()
|
/linux/ipc/ |
H A D | util.h | 183 struct ipc64_perm *perm, int extra_perm); 208 static inline void ipc_lock_object(struct kern_ipc_perm *perm) in ipc_lock_object() argument 210 spin_lock(&perm->lock); in ipc_lock_object() 213 static inline void ipc_unlock_object(struct kern_ipc_perm *perm) in ipc_unlock_object() argument 215 spin_unlock(&perm->lock); in ipc_unlock_object() 218 static inline void ipc_assert_locked_object(struct kern_ipc_perm *perm) in ipc_assert_locked_object() argument 220 assert_spin_locked(&perm->lock); in ipc_assert_locked_object() 223 static inline void ipc_unlock(struct kern_ipc_perm *perm) in ipc_unlock() argument 225 ipc_unlock_object(perm); in ipc_unlock() 237 static inline bool ipc_valid_object(struct kern_ipc_perm *perm) in ipc_valid_object() argument [all …]
|
H A D | namespace.c | 128 struct kern_ipc_perm *perm; in free_ipcs() local 137 perm = idr_find(&ids->ipcs_idr, next_id); in free_ipcs() 138 if (perm == NULL) in free_ipcs() 141 ipc_lock_object(perm); in free_ipcs() 142 free(ns, perm); in free_ipcs()
|
/linux/security/selinux/ |
H A D | nlmsgtab.c | 25 u32 perm; member 153 static int nlmsg_perm(u16 nlmsg_type, u32 *perm, const struct nlmsg_perm *tab, 161 *perm = tab[i].perm; in nlmsg_perm() 169 int selinux_nlmsg_lookup(u16 sclass, u16 nlmsg_type, u32 *perm) in selinux_nlmsg_lookup() argument 188 *perm = NETLINK_ROUTE_SOCKET__NLMSG; in selinux_nlmsg_lookup() 191 return nlmsg_perm(nlmsg_type, perm, nlmsg_route_perms, in selinux_nlmsg_lookup() 196 *perm = NETLINK_TCPDIAG_SOCKET__NLMSG; in selinux_nlmsg_lookup() 199 return nlmsg_perm(nlmsg_type, perm, nlmsg_tcpdiag_perms, in selinux_nlmsg_lookup() 210 *perm in selinux_nlmsg_lookup() 154 nlmsg_perm(u16 nlmsg_type,u32 * perm,const struct nlmsg_perm * tab,size_t tabsize) nlmsg_perm() argument [all...] |
H A D | avc.c | 191 u8 perm, u8 which) in avc_xperms_has_perm() argument 197 rc = security_xperm_test(xpd->allowed->p, perm); in avc_xperms_has_perm() 200 rc = security_xperm_test(xpd->auditallow->p, perm); in avc_xperms_has_perm() 203 rc = security_xperm_test(xpd->dontaudit->p, perm); in avc_xperms_has_perm() 208 u8 driver, u8 perm) in avc_xperms_allow_perm() argument 214 security_xperm_set(xpd->allowed->p, perm); in avc_xperms_allow_perm() 265 static inline void avc_quick_copy_xperms_decision(u8 perm, in avc_quick_copy_xperms_decision() argument 273 u8 i = perm >> 5; in avc_quick_copy_xperms_decision() 380 u8 perm, in avc_xperms_audit_required() argument 390 if (avc_xperms_has_perm(xpd, perm, XPERMS_DONTAUDIT)) in avc_xperms_audit_required() [all …]
|
/linux/security/keys/ |
H A D | permission.c | 55 kperm = key->perm >> 16; in key_task_permission() 61 if (gid_valid(key->gid) && key->perm & KEY_GRP_ALL) { in key_task_permission() 63 kperm = key->perm >> 8; in key_task_permission() 69 kperm = key->perm >> 8; in key_task_permission() 75 kperm = key->perm; in key_task_permission() 83 kperm |= key->perm >> 24; in key_task_permission()
|
/linux/security/apparmor/ |
H A D | policy_unpack.c | 646 static bool unpack_perm(struct aa_ext *e, u32 version, struct aa_perms *perm) in unpack_perm() argument 655 aa_unpack_u32(e, &perm->allow, NULL) && in unpack_perm() 656 aa_unpack_u32(e, &perm->deny, NULL) && in unpack_perm() 657 aa_unpack_u32(e, &perm->subtree, NULL) && in unpack_perm() 658 aa_unpack_u32(e, &perm->cond, NULL) && in unpack_perm() 659 aa_unpack_u32(e, &perm->kill, NULL) && in unpack_perm() 660 aa_unpack_u32(e, &perm->complain, NULL) && in unpack_perm() 661 aa_unpack_u32(e, &perm->prompt, NULL) && in unpack_perm() 662 aa_unpack_u32(e, &perm->audit, NULL) && in unpack_perm() 663 aa_unpack_u32(e, &perm in unpack_perm() 1189 verify_perm(struct aa_perms * perm) verify_perm() argument [all...] |
/linux/arch/powerpc/platforms/powernv/ |
H A D | opal-sysparam.c | 149 u8 *perm; in opal_sys_param_init() local 202 perm = kcalloc(count, sizeof(*perm), GFP_KERNEL); in opal_sys_param_init() 203 if (!perm) { in opal_sys_param_init() 220 if (of_property_read_u8_array(sysparam, "param-perm", perm, count)) { in opal_sys_param_init() 248 switch (perm[i] & 3) { in opal_sys_param_init() 272 kfree(perm); in opal_sys_param_init() 281 kfree(perm); in opal_sys_param_init()
|
/linux/security/integrity/platform_certs/ |
H A D | machine_keyring.c | 26 key_perm_t perm; in add_to_machine_keyring() local 29 perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_VIEW; in add_to_machine_keyring() 30 rc = integrity_load_cert(INTEGRITY_KEYRING_MACHINE, source, data, len, perm); in add_to_machine_keyring() 40 data, len, perm); in add_to_machine_keyring()
|
H A D | platform_keyring.c | 29 key_perm_t perm; in add_to_platform_keyring() local 32 perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_VIEW; in add_to_platform_keyring() 35 perm); in add_to_platform_keyring()
|
/linux/drivers/vhost/ |
H A D | iotlb.c | 52 u64 addr, unsigned int perm, in vhost_iotlb_add_range_ctx() argument 66 perm, opaque); in vhost_iotlb_add_range_ctx() 90 map->perm = perm; in vhost_iotlb_add_range_ctx() 105 u64 addr, unsigned int perm) in vhost_iotlb_add_range() argument 108 addr, perm, NULL); in vhost_iotlb_add_range()
|
/linux/arch/x86/kernel/fpu/ |
H A D | core.c | 201 u64 perm; in fpu_init_guest_permissions() local 208 perm = fpuperm->__state_perm; in fpu_init_guest_permissions() 211 WRITE_ONCE(fpuperm->__state_perm, perm | FPU_GUEST_PERM_LOCKED); in fpu_init_guest_permissions() 215 gfpu->perm = perm & ~FPU_GUEST_PERM_LOCKED; in fpu_init_guest_permissions() 236 gfpu->perm = fpu_user_cfg.default_features; in fpu_alloc_guest_fpstate() 536 fpu->perm.__state_perm = fpu_kernel_cfg.default_features; in fpstate_reset() 537 fpu->perm.__state_size = fpu_kernel_cfg.default_size; in fpstate_reset() 538 fpu->perm.__user_state_size = fpu_user_cfg.default_size; in fpstate_reset() 540 fpu->guest_perm = fpu->perm; in fpstate_reset() 550 dst_fpu->perm = src_fpu->perm; in fpu_inherit_perms()
|
/linux/drivers/s390/char/ |
H A D | keyboard.c | 360 int cmd, int perm) in do_kdsk_ioctl() argument 391 if (!perm) in do_kdsk_ioctl() 436 int cmd, int perm) in do_kdgkb_ioctl() argument 465 if (!perm) in do_kdgkb_ioctl() 482 int perm; in kbd_ioctl() local 492 perm = current->signal->tty == tty || capable(CAP_SYS_TTY_CONFIG); in kbd_ioctl() 499 return do_kdsk_ioctl(kbd, argp, cmd, perm); in kbd_ioctl() 502 return do_kdgkb_ioctl(kbd, argp, cmd, perm); in kbd_ioctl() 538 if (!perm) in kbd_ioctl() 558 if (!perm) in kbd_ioctl()
|
/linux/sound/core/seq/oss/ |
H A D | seq_oss_midi.c | 319 int perm; in snd_seq_oss_midi_open() local 335 perm = 0; in snd_seq_oss_midi_open() 337 perm |= PERM_WRITE; in snd_seq_oss_midi_open() 339 perm |= PERM_READ; in snd_seq_oss_midi_open() 340 perm &= mdev->flags; in snd_seq_oss_midi_open() 341 if (perm == 0) { in snd_seq_oss_midi_open() 347 if ((mdev->opened & perm) == perm) { in snd_seq_oss_midi_open() 352 perm &= ~mdev->opened; in snd_seq_oss_midi_open() 356 if (perm & PERM_WRITE) { in snd_seq_oss_midi_open() 363 if (perm & PERM_READ) { in snd_seq_oss_midi_open()
|
/linux/drivers/gpu/drm/i915/ |
H A D | i915_params.c | 44 #define i915_param_named(name, T, perm, desc) \ argument 45 module_param_named(name, i915_modparams.name, T, perm); \ 47 #define i915_param_named_unsafe(name, T, perm, desc) \ argument 48 module_param_named_unsafe(name, i915_modparams.name, T, perm); \
|
/linux/drivers/gpu/drm/i915/display/ |
H A D | intel_display_params.c | 9 #define intel_display_param_named(name, T, perm, desc) \ argument 10 module_param_named(name, intel_display_modparams.name, T, perm); \ 12 #define intel_display_param_named_unsafe(name, T, perm, desc) \ argument 13 module_param_named_unsafe(name, intel_display_modparams.name, T, perm); \
|
/linux/net/ceph/crush/ |
H A D | mapper.c | 90 work->perm[0] = s; in bucket_perm_choose() 96 work->perm[i] = i; in bucket_perm_choose() 101 work->perm[i] = i; in bucket_perm_choose() 102 work->perm[work->perm[0]] = 0; in bucket_perm_choose() 108 dprintk(" perm_choose have %d: %d\n", i, work->perm[i]); in bucket_perm_choose() 116 unsigned int t = work->perm[p + i]; in bucket_perm_choose() 117 work->perm[p + i] = work->perm[p]; in bucket_perm_choose() 118 work->perm[p] = t; in bucket_perm_choose() 125 dprintk(" perm_choose %d: %d\n", i, work->perm[i]); in bucket_perm_choose() 127 s = work->perm[pr]; in bucket_perm_choose() [all …]
|