diff options
author | Daniel Jurgens <danielj@mellanox.com> | 2017-05-19 15:48:57 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-05-23 12:27:50 -0400 |
commit | cfc4d882d41780d93471066d57d4630995427b29 (patch) | |
tree | 5dc7f313dc5caec1492c812529d83b8ae3e37dc5 /security/selinux/include/classmap.h | |
parent | 3a976fa6767f3edebbf43839b686efaf71b8dee1 (diff) | |
download | op-kernel-dev-cfc4d882d41780d93471066d57d4630995427b29.zip op-kernel-dev-cfc4d882d41780d93471066d57d4630995427b29.tar.gz |
selinux: Implement Infiniband PKey "Access" access vector
Add a type and access vector for PKeys. Implement the ib_pkey_access
hook to check that the caller has permission to access the PKey on the
given subnet prefix. Add an interface to get the PKey SID. Walk the PKey
ocontexts to find an entry for the given subnet prefix and pkey.
Signed-off-by: Daniel Jurgens <danielj@mellanox.com>
Reviewed-by: James Morris <james.l.morris@oracle.com>
Acked-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/include/classmap.h')
-rw-r--r-- | security/selinux/include/classmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/selinux/include/classmap.h b/security/selinux/include/classmap.h index 3e49a78..0fec1c5 100644 --- a/security/selinux/include/classmap.h +++ b/security/selinux/include/classmap.h @@ -231,6 +231,8 @@ struct security_class_mapping secclass_map[] = { { COMMON_SOCK_PERMS, NULL } }, { "smc_socket", { COMMON_SOCK_PERMS, NULL } }, + { "infiniband_pkey", + { "access", NULL } }, { NULL } }; |