aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorJames Morris <james.l.morris@oracle.com>2014-11-26 08:35:32 -0500
committerJames Morris <james.l.morris@oracle.com>2014-11-26 08:35:32 -0500
commitac14ae25b676d721b6bfcfb046dc53a9f7760d83 (patch)
tree71d0cd79a23bbd744effe37441be2c328399a4e6 /security
parenta6aacbde406eeb6f8fc218b2c6172825f5e73fcf (diff)
parent5c1b66240b7f4abc29c618a768121d6a00f4c95a (diff)
Merge branch 'smack-for-3.19' of git://git.gitorious.org/smack-next/kernel into next
Diffstat (limited to 'security')
-rw-r--r--security/smack/smack_access.c17
-rw-r--r--security/smack/smack_lsm.c13
2 files changed, 18 insertions, 12 deletions
diff --git a/security/smack/smack_access.c b/security/smack/smack_access.c
index 5b970ffde024..1158430f5bb9 100644
--- a/security/smack/smack_access.c
+++ b/security/smack/smack_access.c
@@ -142,8 +142,7 @@ int smk_access(struct smack_known *subject, struct smack_known *object,
142 * Tasks cannot be assigned the internet label. 142 * Tasks cannot be assigned the internet label.
143 * An internet subject can access any object. 143 * An internet subject can access any object.
144 */ 144 */
145 if (object == &smack_known_web || 145 if (object == &smack_known_web || subject == &smack_known_web)
146 subject == &smack_known_web)
147 goto out_audit; 146 goto out_audit;
148 /* 147 /*
149 * A star object can be accessed by any subject. 148 * A star object can be accessed by any subject.
@@ -157,10 +156,11 @@ int smk_access(struct smack_known *subject, struct smack_known *object,
157 if (subject->smk_known == object->smk_known) 156 if (subject->smk_known == object->smk_known)
158 goto out_audit; 157 goto out_audit;
159 /* 158 /*
160 * A hat subject can read any object. 159 * A hat subject can read or lock any object.
161 * A floor object can be read by any subject. 160 * A floor object can be read or locked by any subject.
162 */ 161 */
163 if ((request & MAY_ANYREAD) == request) { 162 if ((request & MAY_ANYREAD) == request ||
163 (request & MAY_LOCK) == request) {
164 if (object == &smack_known_floor) 164 if (object == &smack_known_floor)
165 goto out_audit; 165 goto out_audit;
166 if (subject == &smack_known_hat) 166 if (subject == &smack_known_hat)
@@ -452,10 +452,9 @@ char *smk_parse_smack(const char *string, int len)
452 return NULL; 452 return NULL;
453 453
454 smack = kzalloc(i + 1, GFP_KERNEL); 454 smack = kzalloc(i + 1, GFP_KERNEL);
455 if (smack != NULL) { 455 if (smack != NULL)
456 strncpy(smack, string, i + 1); 456 strncpy(smack, string, i);
457 smack[i] = '\0'; 457
458 }
459 return smack; 458 return smack;
460} 459}
461 460
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c
index 93dc876734a4..2717cdd7872c 100644
--- a/security/smack/smack_lsm.c
+++ b/security/smack/smack_lsm.c
@@ -53,6 +53,7 @@
53#define SMK_SENDING 2 53#define SMK_SENDING 2
54 54
55LIST_HEAD(smk_ipv6_port_list); 55LIST_HEAD(smk_ipv6_port_list);
56static struct kmem_cache *smack_inode_cache;
56 57
57#ifdef CONFIG_SECURITY_SMACK_BRINGUP 58#ifdef CONFIG_SECURITY_SMACK_BRINGUP
58static void smk_bu_mode(int mode, char *s) 59static void smk_bu_mode(int mode, char *s)
@@ -240,7 +241,7 @@ struct inode_smack *new_inode_smack(struct smack_known *skp)
240{ 241{
241 struct inode_smack *isp; 242 struct inode_smack *isp;
242 243
243 isp = kzalloc(sizeof(struct inode_smack), GFP_NOFS); 244 isp = kmem_cache_zalloc(smack_inode_cache, GFP_NOFS);
244 if (isp == NULL) 245 if (isp == NULL)
245 return NULL; 246 return NULL;
246 247
@@ -767,7 +768,7 @@ static int smack_inode_alloc_security(struct inode *inode)
767 */ 768 */
768static void smack_inode_free_security(struct inode *inode) 769static void smack_inode_free_security(struct inode *inode)
769{ 770{
770 kfree(inode->i_security); 771 kmem_cache_free(smack_inode_cache, inode->i_security);
771 inode->i_security = NULL; 772 inode->i_security = NULL;
772} 773}
773 774
@@ -4265,10 +4266,16 @@ static __init int smack_init(void)
4265 if (!security_module_enable(&smack_ops)) 4266 if (!security_module_enable(&smack_ops))
4266 return 0; 4267 return 0;
4267 4268
4269 smack_inode_cache = KMEM_CACHE(inode_smack, 0);
4270 if (!smack_inode_cache)
4271 return -ENOMEM;
4272
4268 tsp = new_task_smack(&smack_known_floor, &smack_known_floor, 4273 tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
4269 GFP_KERNEL); 4274 GFP_KERNEL);
4270 if (tsp == NULL) 4275 if (tsp == NULL) {
4276 kmem_cache_destroy(smack_inode_cache);
4271 return -ENOMEM; 4277 return -ENOMEM;
4278 }
4272 4279
4273 printk(KERN_INFO "Smack: Initializing.\n"); 4280 printk(KERN_INFO "Smack: Initializing.\n");
4274 4281