|
@@ -17,6 +17,7 @@
|
|
* Paul Moore <paul@paul-moore.com>
|
|
* Paul Moore <paul@paul-moore.com>
|
|
* Copyright (C) 2007 Hitachi Software Engineering Co., Ltd.
|
|
* Copyright (C) 2007 Hitachi Software Engineering Co., Ltd.
|
|
* Yuichi Nakamura <ynakam@hitachisoft.jp>
|
|
* Yuichi Nakamura <ynakam@hitachisoft.jp>
|
|
|
|
+ * Copyright (C) 2016 Mellanox Technologies
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2,
|
|
* it under the terms of the GNU General Public License version 2,
|
|
@@ -6144,7 +6145,26 @@ static int selinux_key_getsecurity(struct key *key, char **_buffer)
|
|
*_buffer = context;
|
|
*_buffer = context;
|
|
return rc;
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifdef CONFIG_SECURITY_INFINIBAND
|
|
|
|
+static int selinux_ib_alloc_security(void **ib_sec)
|
|
|
|
+{
|
|
|
|
+ struct ib_security_struct *sec;
|
|
|
|
+
|
|
|
|
+ sec = kzalloc(sizeof(*sec), GFP_KERNEL);
|
|
|
|
+ if (!sec)
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+ sec->sid = current_sid();
|
|
|
|
+
|
|
|
|
+ *ib_sec = sec;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
|
|
|
|
+static void selinux_ib_free_security(void *ib_sec)
|
|
|
|
+{
|
|
|
|
+ kfree(ib_sec);
|
|
|
|
+}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = {
|
|
static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = {
|
|
@@ -6331,7 +6351,10 @@ static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = {
|
|
LSM_HOOK_INIT(tun_dev_attach_queue, selinux_tun_dev_attach_queue),
|
|
LSM_HOOK_INIT(tun_dev_attach_queue, selinux_tun_dev_attach_queue),
|
|
LSM_HOOK_INIT(tun_dev_attach, selinux_tun_dev_attach),
|
|
LSM_HOOK_INIT(tun_dev_attach, selinux_tun_dev_attach),
|
|
LSM_HOOK_INIT(tun_dev_open, selinux_tun_dev_open),
|
|
LSM_HOOK_INIT(tun_dev_open, selinux_tun_dev_open),
|
|
-
|
|
|
|
|
|
+#ifdef CONFIG_SECURITY_INFINIBAND
|
|
|
|
+ LSM_HOOK_INIT(ib_alloc_security, selinux_ib_alloc_security),
|
|
|
|
+ LSM_HOOK_INIT(ib_free_security, selinux_ib_free_security),
|
|
|
|
+#endif
|
|
#ifdef CONFIG_SECURITY_NETWORK_XFRM
|
|
#ifdef CONFIG_SECURITY_NETWORK_XFRM
|
|
LSM_HOOK_INIT(xfrm_policy_alloc_security, selinux_xfrm_policy_alloc),
|
|
LSM_HOOK_INIT(xfrm_policy_alloc_security, selinux_xfrm_policy_alloc),
|
|
LSM_HOOK_INIT(xfrm_policy_clone_security, selinux_xfrm_policy_clone),
|
|
LSM_HOOK_INIT(xfrm_policy_clone_security, selinux_xfrm_policy_clone),
|