blob: efa42991235e97d4a0f4a9761890b2cbe5b44664 [file] [log] [blame]
Casey Schauflere114e472008-02-04 22:29:50 -08001/*
2 * Simplified MAC Kernel (smack) security module
3 *
4 * This file contains the smack hook function implementations.
5 *
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02006 * Authors:
Casey Schauflere114e472008-02-04 22:29:50 -08007 * Casey Schaufler <casey@schaufler-ca.com>
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +03008 * Jarkko Sakkinen <jarkko.sakkinen@intel.com>
Casey Schauflere114e472008-02-04 22:29:50 -08009 *
10 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
Paul Moore07feee82009-03-27 17:10:54 -040011 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
Paul Moore82c21bf2011-08-01 11:10:33 +000012 * Paul Moore <paul@paul-moore.com>
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +020013 * Copyright (C) 2010 Nokia Corporation
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +030014 * Copyright (C) 2011 Intel Corporation.
Casey Schauflere114e472008-02-04 22:29:50 -080015 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2,
18 * as published by the Free Software Foundation.
19 */
20
21#include <linux/xattr.h>
22#include <linux/pagemap.h>
23#include <linux/mount.h>
24#include <linux/stat.h>
Casey Schauflere114e472008-02-04 22:29:50 -080025#include <linux/kd.h>
26#include <asm/ioctls.h>
Paul Moore07feee82009-03-27 17:10:54 -040027#include <linux/ip.h>
Casey Schauflere114e472008-02-04 22:29:50 -080028#include <linux/tcp.h>
29#include <linux/udp.h>
Casey Schauflerc6739442013-05-22 18:42:56 -070030#include <linux/dccp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Casey Schauflere114e472008-02-04 22:29:50 -080032#include <linux/mutex.h>
33#include <linux/pipe_fs_i.h>
Casey Schauflere114e472008-02-04 22:29:50 -080034#include <net/cipso_ipv4.h>
Casey Schauflerc6739442013-05-22 18:42:56 -070035#include <net/ip.h>
36#include <net/ipv6.h>
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +100037#include <linux/audit.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070038#include <linux/magic.h>
Eric Paris2a7dba32011-02-01 11:05:39 -050039#include <linux/dcache.h>
Jarkko Sakkinen16014d82011-10-14 13:16:24 +030040#include <linux/personality.h>
Al Viro40401532012-02-13 03:58:52 +000041#include <linux/msg.h>
42#include <linux/shm.h>
43#include <linux/binfmts.h>
Casey Schauflere114e472008-02-04 22:29:50 -080044#include "smack.h"
45
David Howellsc69e8d92008-11-14 10:39:19 +110046#define task_security(task) (task_cred_xxx((task), security))
47
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +020048#define TRANS_TRUE "TRUE"
49#define TRANS_TRUE_SIZE 4
50
Casey Schauflerc6739442013-05-22 18:42:56 -070051#define SMK_CONNECTING 0
52#define SMK_RECEIVING 1
53#define SMK_SENDING 2
54
55LIST_HEAD(smk_ipv6_port_list);
56
Casey Schauflere114e472008-02-04 22:29:50 -080057/**
58 * smk_fetch - Fetch the smack label from a file.
59 * @ip: a pointer to the inode
60 * @dp: a pointer to the dentry
61 *
62 * Returns a pointer to the master list entry for the Smack label
63 * or NULL if there was no label to fetch.
64 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -070065static struct smack_known *smk_fetch(const char *name, struct inode *ip,
66 struct dentry *dp)
Casey Schauflere114e472008-02-04 22:29:50 -080067{
68 int rc;
Casey Schauflerf7112e62012-05-06 15:22:02 -070069 char *buffer;
Casey Schaufler2f823ff2013-05-22 18:43:03 -070070 struct smack_known *skp = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -080071
72 if (ip->i_op->getxattr == NULL)
73 return NULL;
74
Casey Schauflerf7112e62012-05-06 15:22:02 -070075 buffer = kzalloc(SMK_LONGLABEL, GFP_KERNEL);
76 if (buffer == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -080077 return NULL;
78
Casey Schauflerf7112e62012-05-06 15:22:02 -070079 rc = ip->i_op->getxattr(dp, name, buffer, SMK_LONGLABEL);
80 if (rc > 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -070081 skp = smk_import_entry(buffer, rc);
Casey Schauflerf7112e62012-05-06 15:22:02 -070082
83 kfree(buffer);
84
Casey Schaufler2f823ff2013-05-22 18:43:03 -070085 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -080086}
87
88/**
89 * new_inode_smack - allocate an inode security blob
90 * @smack: a pointer to the Smack label to use in the blob
91 *
92 * Returns the new blob or NULL if there's no memory available
93 */
94struct inode_smack *new_inode_smack(char *smack)
95{
96 struct inode_smack *isp;
97
Tetsuo Handaceffec552012-03-29 16:19:05 +090098 isp = kzalloc(sizeof(struct inode_smack), GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -080099 if (isp == NULL)
100 return NULL;
101
102 isp->smk_inode = smack;
103 isp->smk_flags = 0;
104 mutex_init(&isp->smk_lock);
105
106 return isp;
107}
108
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800109/**
110 * new_task_smack - allocate a task security blob
111 * @smack: a pointer to the Smack label to use in the blob
112 *
113 * Returns the new blob or NULL if there's no memory available
114 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700115static struct task_smack *new_task_smack(struct smack_known *task,
116 struct smack_known *forked, gfp_t gfp)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800117{
118 struct task_smack *tsp;
119
120 tsp = kzalloc(sizeof(struct task_smack), gfp);
121 if (tsp == NULL)
122 return NULL;
123
124 tsp->smk_task = task;
125 tsp->smk_forked = forked;
126 INIT_LIST_HEAD(&tsp->smk_rules);
127 mutex_init(&tsp->smk_rules_lock);
128
129 return tsp;
130}
131
132/**
133 * smk_copy_rules - copy a rule set
134 * @nhead - new rules header pointer
135 * @ohead - old rules header pointer
136 *
137 * Returns 0 on success, -ENOMEM on error
138 */
139static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead,
140 gfp_t gfp)
141{
142 struct smack_rule *nrp;
143 struct smack_rule *orp;
144 int rc = 0;
145
146 INIT_LIST_HEAD(nhead);
147
148 list_for_each_entry_rcu(orp, ohead, list) {
149 nrp = kzalloc(sizeof(struct smack_rule), gfp);
150 if (nrp == NULL) {
151 rc = -ENOMEM;
152 break;
153 }
154 *nrp = *orp;
155 list_add_rcu(&nrp->list, nhead);
156 }
157 return rc;
158}
159
Casey Schauflere114e472008-02-04 22:29:50 -0800160/*
161 * LSM hooks.
162 * We he, that is fun!
163 */
164
165/**
Ingo Molnar9e488582009-05-07 19:26:19 +1000166 * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
Casey Schauflere114e472008-02-04 22:29:50 -0800167 * @ctp: child task pointer
Randy Dunlap251a2a92009-02-18 11:42:33 -0800168 * @mode: ptrace attachment mode
Casey Schauflere114e472008-02-04 22:29:50 -0800169 *
170 * Returns 0 if access is OK, an error code otherwise
171 *
172 * Do the capability checks, and require read and write.
173 */
Ingo Molnar9e488582009-05-07 19:26:19 +1000174static int smack_ptrace_access_check(struct task_struct *ctp, unsigned int mode)
Casey Schauflere114e472008-02-04 22:29:50 -0800175{
176 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200177 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700178 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800179
Ingo Molnar9e488582009-05-07 19:26:19 +1000180 rc = cap_ptrace_access_check(ctp, mode);
Casey Schauflere114e472008-02-04 22:29:50 -0800181 if (rc != 0)
182 return rc;
183
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700184 skp = smk_of_task(task_security(ctp));
Etienne Bassetecfcc532009-04-08 20:40:06 +0200185 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
186 smk_ad_setfield_u_tsk(&ad, ctp);
187
Casey Schauflerb5dfd802013-10-22 11:47:45 -0700188 rc = smk_curacc(skp->smk_known, mode, &ad);
David Howells5cd9c582008-08-14 11:37:28 +0100189 return rc;
190}
Casey Schauflere114e472008-02-04 22:29:50 -0800191
David Howells5cd9c582008-08-14 11:37:28 +0100192/**
193 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
194 * @ptp: parent task pointer
195 *
196 * Returns 0 if access is OK, an error code otherwise
197 *
198 * Do the capability checks, and require read and write.
199 */
200static int smack_ptrace_traceme(struct task_struct *ptp)
201{
202 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200203 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700204 struct smack_known *skp;
David Howells5cd9c582008-08-14 11:37:28 +0100205
206 rc = cap_ptrace_traceme(ptp);
207 if (rc != 0)
208 return rc;
209
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700210 skp = smk_of_task(task_security(ptp));
Etienne Bassetecfcc532009-04-08 20:40:06 +0200211 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
212 smk_ad_setfield_u_tsk(&ad, ptp);
213
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700214 rc = smk_curacc(skp->smk_known, MAY_READWRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800215 return rc;
216}
217
218/**
219 * smack_syslog - Smack approval on syslog
220 * @type: message type
221 *
Casey Schauflere114e472008-02-04 22:29:50 -0800222 * Returns 0 on success, error code otherwise.
223 */
Eric Paris12b30522010-11-15 18:36:29 -0500224static int smack_syslog(int typefrom_file)
Casey Schauflere114e472008-02-04 22:29:50 -0800225{
Eric Paris12b30522010-11-15 18:36:29 -0500226 int rc = 0;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700227 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -0800228
Casey Schaufler1880eff2012-06-05 15:28:30 -0700229 if (smack_privileged(CAP_MAC_OVERRIDE))
Casey Schauflere114e472008-02-04 22:29:50 -0800230 return 0;
231
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800232 if (smack_syslog_label != NULL && smack_syslog_label != skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800233 rc = -EACCES;
234
235 return rc;
236}
237
238
239/*
240 * Superblock Hooks.
241 */
242
243/**
244 * smack_sb_alloc_security - allocate a superblock blob
245 * @sb: the superblock getting the blob
246 *
247 * Returns 0 on success or -ENOMEM on error.
248 */
249static int smack_sb_alloc_security(struct super_block *sb)
250{
251 struct superblock_smack *sbsp;
252
253 sbsp = kzalloc(sizeof(struct superblock_smack), GFP_KERNEL);
254
255 if (sbsp == NULL)
256 return -ENOMEM;
257
258 sbsp->smk_root = smack_known_floor.smk_known;
259 sbsp->smk_default = smack_known_floor.smk_known;
260 sbsp->smk_floor = smack_known_floor.smk_known;
261 sbsp->smk_hat = smack_known_hat.smk_known;
Casey Schauflere830b392013-05-22 18:43:07 -0700262 /*
263 * smk_initialized will be zero from kzalloc.
264 */
Casey Schauflere114e472008-02-04 22:29:50 -0800265 sb->s_security = sbsp;
266
267 return 0;
268}
269
270/**
271 * smack_sb_free_security - free a superblock blob
272 * @sb: the superblock getting the blob
273 *
274 */
275static void smack_sb_free_security(struct super_block *sb)
276{
277 kfree(sb->s_security);
278 sb->s_security = NULL;
279}
280
281/**
282 * smack_sb_copy_data - copy mount options data for processing
Casey Schauflere114e472008-02-04 22:29:50 -0800283 * @orig: where to start
Randy Dunlap251a2a92009-02-18 11:42:33 -0800284 * @smackopts: mount options string
Casey Schauflere114e472008-02-04 22:29:50 -0800285 *
286 * Returns 0 on success or -ENOMEM on error.
287 *
288 * Copy the Smack specific mount options out of the mount
289 * options list.
290 */
Eric Parise0007522008-03-05 10:31:54 -0500291static int smack_sb_copy_data(char *orig, char *smackopts)
Casey Schauflere114e472008-02-04 22:29:50 -0800292{
293 char *cp, *commap, *otheropts, *dp;
294
Casey Schauflere114e472008-02-04 22:29:50 -0800295 otheropts = (char *)get_zeroed_page(GFP_KERNEL);
296 if (otheropts == NULL)
297 return -ENOMEM;
298
299 for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
300 if (strstr(cp, SMK_FSDEFAULT) == cp)
301 dp = smackopts;
302 else if (strstr(cp, SMK_FSFLOOR) == cp)
303 dp = smackopts;
304 else if (strstr(cp, SMK_FSHAT) == cp)
305 dp = smackopts;
306 else if (strstr(cp, SMK_FSROOT) == cp)
307 dp = smackopts;
Casey Schauflere830b392013-05-22 18:43:07 -0700308 else if (strstr(cp, SMK_FSTRANS) == cp)
309 dp = smackopts;
Casey Schauflere114e472008-02-04 22:29:50 -0800310 else
311 dp = otheropts;
312
313 commap = strchr(cp, ',');
314 if (commap != NULL)
315 *commap = '\0';
316
317 if (*dp != '\0')
318 strcat(dp, ",");
319 strcat(dp, cp);
320 }
321
322 strcpy(orig, otheropts);
323 free_page((unsigned long)otheropts);
324
325 return 0;
326}
327
328/**
329 * smack_sb_kern_mount - Smack specific mount processing
330 * @sb: the file system superblock
James Morris12204e22008-12-19 10:44:42 +1100331 * @flags: the mount flags
Casey Schauflere114e472008-02-04 22:29:50 -0800332 * @data: the smack mount options
333 *
334 * Returns 0 on success, an error code on failure
335 */
James Morris12204e22008-12-19 10:44:42 +1100336static int smack_sb_kern_mount(struct super_block *sb, int flags, void *data)
Casey Schauflere114e472008-02-04 22:29:50 -0800337{
338 struct dentry *root = sb->s_root;
339 struct inode *inode = root->d_inode;
340 struct superblock_smack *sp = sb->s_security;
341 struct inode_smack *isp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800342 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800343 char *op;
344 char *commap;
345 char *nsp;
Casey Schauflere830b392013-05-22 18:43:07 -0700346 int transmute = 0;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800347 int specified = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800348
Casey Schauflere830b392013-05-22 18:43:07 -0700349 if (sp->smk_initialized)
Casey Schauflere114e472008-02-04 22:29:50 -0800350 return 0;
Casey Schauflereb982cb2012-05-23 17:46:58 -0700351
Casey Schauflere114e472008-02-04 22:29:50 -0800352 sp->smk_initialized = 1;
Casey Schauflere114e472008-02-04 22:29:50 -0800353
354 for (op = data; op != NULL; op = commap) {
355 commap = strchr(op, ',');
356 if (commap != NULL)
357 *commap++ = '\0';
358
359 if (strncmp(op, SMK_FSHAT, strlen(SMK_FSHAT)) == 0) {
360 op += strlen(SMK_FSHAT);
361 nsp = smk_import(op, 0);
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800362 if (nsp != NULL) {
Casey Schauflere114e472008-02-04 22:29:50 -0800363 sp->smk_hat = nsp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800364 specified = 1;
365 }
Casey Schauflere114e472008-02-04 22:29:50 -0800366 } else if (strncmp(op, SMK_FSFLOOR, strlen(SMK_FSFLOOR)) == 0) {
367 op += strlen(SMK_FSFLOOR);
368 nsp = smk_import(op, 0);
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800369 if (nsp != NULL) {
Casey Schauflere114e472008-02-04 22:29:50 -0800370 sp->smk_floor = nsp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800371 specified = 1;
372 }
Casey Schauflere114e472008-02-04 22:29:50 -0800373 } else if (strncmp(op, SMK_FSDEFAULT,
374 strlen(SMK_FSDEFAULT)) == 0) {
375 op += strlen(SMK_FSDEFAULT);
376 nsp = smk_import(op, 0);
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800377 if (nsp != NULL) {
Casey Schauflere114e472008-02-04 22:29:50 -0800378 sp->smk_default = nsp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800379 specified = 1;
380 }
Casey Schauflere114e472008-02-04 22:29:50 -0800381 } else if (strncmp(op, SMK_FSROOT, strlen(SMK_FSROOT)) == 0) {
382 op += strlen(SMK_FSROOT);
383 nsp = smk_import(op, 0);
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800384 if (nsp != NULL) {
Casey Schauflere114e472008-02-04 22:29:50 -0800385 sp->smk_root = nsp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800386 specified = 1;
387 }
Casey Schauflere830b392013-05-22 18:43:07 -0700388 } else if (strncmp(op, SMK_FSTRANS, strlen(SMK_FSTRANS)) == 0) {
389 op += strlen(SMK_FSTRANS);
390 nsp = smk_import(op, 0);
391 if (nsp != NULL) {
392 sp->smk_root = nsp;
393 transmute = 1;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800394 specified = 1;
Casey Schauflere830b392013-05-22 18:43:07 -0700395 }
Casey Schauflere114e472008-02-04 22:29:50 -0800396 }
397 }
398
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800399 if (!smack_privileged(CAP_MAC_ADMIN)) {
400 /*
401 * Unprivileged mounts don't get to specify Smack values.
402 */
403 if (specified)
404 return -EPERM;
405 /*
406 * Unprivileged mounts get root and default from the caller.
407 */
408 skp = smk_of_current();
409 sp->smk_root = skp->smk_known;
410 sp->smk_default = skp->smk_known;
411 }
Casey Schauflere114e472008-02-04 22:29:50 -0800412 /*
413 * Initialize the root inode.
414 */
415 isp = inode->i_security;
José Bollo55dfc5d2014-01-08 15:53:05 +0100416 if (isp == NULL) {
417 isp = new_inode_smack(sp->smk_root);
418 if (isp == NULL)
419 return -ENOMEM;
420 inode->i_security = isp;
Casey Schauflere830b392013-05-22 18:43:07 -0700421 } else
Casey Schauflere114e472008-02-04 22:29:50 -0800422 isp->smk_inode = sp->smk_root;
423
Casey Schauflere830b392013-05-22 18:43:07 -0700424 if (transmute)
425 isp->smk_flags |= SMK_INODE_TRANSMUTE;
426
Casey Schauflere114e472008-02-04 22:29:50 -0800427 return 0;
428}
429
430/**
431 * smack_sb_statfs - Smack check on statfs
432 * @dentry: identifies the file system in question
433 *
434 * Returns 0 if current can read the floor of the filesystem,
435 * and error code otherwise
436 */
437static int smack_sb_statfs(struct dentry *dentry)
438{
439 struct superblock_smack *sbp = dentry->d_sb->s_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200440 int rc;
441 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800442
Eric Parisa2694342011-04-25 13:10:27 -0400443 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200444 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
445
446 rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
447 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800448}
449
Casey Schauflere114e472008-02-04 22:29:50 -0800450/*
Casey Schaufler676dac42010-12-02 06:43:39 -0800451 * BPRM hooks
452 */
453
Casey Schauflerce8a4322011-09-29 18:21:01 -0700454/**
455 * smack_bprm_set_creds - set creds for exec
456 * @bprm: the exec information
457 *
458 * Returns 0 if it gets a blob, -ENOMEM otherwise
459 */
Casey Schaufler676dac42010-12-02 06:43:39 -0800460static int smack_bprm_set_creds(struct linux_binprm *bprm)
461{
Al Viro496ad9a2013-01-23 17:07:38 -0500462 struct inode *inode = file_inode(bprm->file);
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300463 struct task_smack *bsp = bprm->cred->security;
Casey Schaufler676dac42010-12-02 06:43:39 -0800464 struct inode_smack *isp;
Casey Schaufler676dac42010-12-02 06:43:39 -0800465 int rc;
466
467 rc = cap_bprm_set_creds(bprm);
468 if (rc != 0)
469 return rc;
470
471 if (bprm->cred_prepared)
472 return 0;
473
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300474 isp = inode->i_security;
475 if (isp->smk_task == NULL || isp->smk_task == bsp->smk_task)
Casey Schaufler676dac42010-12-02 06:43:39 -0800476 return 0;
477
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300478 if (bprm->unsafe)
479 return -EPERM;
Casey Schaufler676dac42010-12-02 06:43:39 -0800480
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300481 bsp->smk_task = isp->smk_task;
482 bprm->per_clear |= PER_CLEAR_ON_SETID;
Casey Schaufler676dac42010-12-02 06:43:39 -0800483
484 return 0;
485}
486
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300487/**
488 * smack_bprm_committing_creds - Prepare to install the new credentials
489 * from bprm.
490 *
491 * @bprm: binprm for exec
492 */
493static void smack_bprm_committing_creds(struct linux_binprm *bprm)
494{
495 struct task_smack *bsp = bprm->cred->security;
496
497 if (bsp->smk_task != bsp->smk_forked)
498 current->pdeath_signal = 0;
499}
500
501/**
502 * smack_bprm_secureexec - Return the decision to use secureexec.
503 * @bprm: binprm for exec
504 *
505 * Returns 0 on success.
506 */
507static int smack_bprm_secureexec(struct linux_binprm *bprm)
508{
509 struct task_smack *tsp = current_security();
510 int ret = cap_bprm_secureexec(bprm);
511
512 if (!ret && (tsp->smk_task != tsp->smk_forked))
513 ret = 1;
514
515 return ret;
516}
517
Casey Schaufler676dac42010-12-02 06:43:39 -0800518/*
Casey Schauflere114e472008-02-04 22:29:50 -0800519 * Inode hooks
520 */
521
522/**
523 * smack_inode_alloc_security - allocate an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -0800524 * @inode: the inode in need of a blob
Casey Schauflere114e472008-02-04 22:29:50 -0800525 *
526 * Returns 0 if it gets a blob, -ENOMEM otherwise
527 */
528static int smack_inode_alloc_security(struct inode *inode)
529{
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700530 struct smack_known *skp = smk_of_current();
531
532 inode->i_security = new_inode_smack(skp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -0800533 if (inode->i_security == NULL)
534 return -ENOMEM;
535 return 0;
536}
537
538/**
539 * smack_inode_free_security - free an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -0800540 * @inode: the inode with a blob
Casey Schauflere114e472008-02-04 22:29:50 -0800541 *
542 * Clears the blob pointer in inode
543 */
544static void smack_inode_free_security(struct inode *inode)
545{
546 kfree(inode->i_security);
547 inode->i_security = NULL;
548}
549
550/**
551 * smack_inode_init_security - copy out the smack from an inode
552 * @inode: the inode
553 * @dir: unused
Eric Paris2a7dba32011-02-01 11:05:39 -0500554 * @qstr: unused
Casey Schauflere114e472008-02-04 22:29:50 -0800555 * @name: where to put the attribute name
556 * @value: where to put the attribute value
557 * @len: where to put the length of the attribute
558 *
559 * Returns 0 if it all works out, -ENOMEM if there's no memory
560 */
561static int smack_inode_init_security(struct inode *inode, struct inode *dir,
Tetsuo Handa95489062013-07-25 05:44:02 +0900562 const struct qstr *qstr, const char **name,
Eric Paris2a7dba32011-02-01 11:05:39 -0500563 void **value, size_t *len)
Casey Schauflere114e472008-02-04 22:29:50 -0800564{
Casey Schaufler2267b132012-03-13 19:14:19 -0700565 struct inode_smack *issp = inode->i_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700566 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -0800567 char *isp = smk_of_inode(inode);
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200568 char *dsp = smk_of_inode(dir);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800569 int may;
Casey Schauflere114e472008-02-04 22:29:50 -0800570
Tetsuo Handa95489062013-07-25 05:44:02 +0900571 if (name)
572 *name = XATTR_SMACK_SUFFIX;
Casey Schauflere114e472008-02-04 22:29:50 -0800573
574 if (value) {
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800575 rcu_read_lock();
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700576 may = smk_access_entry(skp->smk_known, dsp, &skp->smk_rules);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800577 rcu_read_unlock();
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200578
579 /*
580 * If the access rule allows transmutation and
581 * the directory requests transmutation then
582 * by all means transmute.
Casey Schaufler2267b132012-03-13 19:14:19 -0700583 * Mark the inode as changed.
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200584 */
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800585 if (may > 0 && ((may & MAY_TRANSMUTE) != 0) &&
Casey Schaufler2267b132012-03-13 19:14:19 -0700586 smk_inode_transmutable(dir)) {
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200587 isp = dsp;
Casey Schaufler2267b132012-03-13 19:14:19 -0700588 issp->smk_flags |= SMK_INODE_CHANGED;
589 }
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200590
Tetsuo Handaceffec552012-03-29 16:19:05 +0900591 *value = kstrdup(isp, GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -0800592 if (*value == NULL)
593 return -ENOMEM;
594 }
595
596 if (len)
597 *len = strlen(isp) + 1;
598
599 return 0;
600}
601
602/**
603 * smack_inode_link - Smack check on link
604 * @old_dentry: the existing object
605 * @dir: unused
606 * @new_dentry: the new object
607 *
608 * Returns 0 if access is permitted, an error code otherwise
609 */
610static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
611 struct dentry *new_dentry)
612{
Casey Schauflere114e472008-02-04 22:29:50 -0800613 char *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200614 struct smk_audit_info ad;
615 int rc;
616
Eric Parisa2694342011-04-25 13:10:27 -0400617 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200618 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -0800619
620 isp = smk_of_inode(old_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200621 rc = smk_curacc(isp, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800622
623 if (rc == 0 && new_dentry->d_inode != NULL) {
624 isp = smk_of_inode(new_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200625 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
626 rc = smk_curacc(isp, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800627 }
628
629 return rc;
630}
631
632/**
633 * smack_inode_unlink - Smack check on inode deletion
634 * @dir: containing directory object
635 * @dentry: file to unlink
636 *
637 * Returns 0 if current can write the containing directory
638 * and the object, error code otherwise
639 */
640static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
641{
642 struct inode *ip = dentry->d_inode;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200643 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800644 int rc;
645
Eric Parisa2694342011-04-25 13:10:27 -0400646 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200647 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
648
Casey Schauflere114e472008-02-04 22:29:50 -0800649 /*
650 * You need write access to the thing you're unlinking
651 */
Etienne Bassetecfcc532009-04-08 20:40:06 +0200652 rc = smk_curacc(smk_of_inode(ip), MAY_WRITE, &ad);
653 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -0800654 /*
655 * You also need write access to the containing directory
656 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +0400657 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200658 smk_ad_setfield_u_fs_inode(&ad, dir);
659 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
660 }
Casey Schauflere114e472008-02-04 22:29:50 -0800661 return rc;
662}
663
664/**
665 * smack_inode_rmdir - Smack check on directory deletion
666 * @dir: containing directory object
667 * @dentry: directory to unlink
668 *
669 * Returns 0 if current can write the containing directory
670 * and the directory, error code otherwise
671 */
672static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
673{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200674 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800675 int rc;
676
Eric Parisa2694342011-04-25 13:10:27 -0400677 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200678 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
679
Casey Schauflere114e472008-02-04 22:29:50 -0800680 /*
681 * You need write access to the thing you're removing
682 */
Etienne Bassetecfcc532009-04-08 20:40:06 +0200683 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
684 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -0800685 /*
686 * You also need write access to the containing directory
687 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +0400688 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200689 smk_ad_setfield_u_fs_inode(&ad, dir);
690 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
691 }
Casey Schauflere114e472008-02-04 22:29:50 -0800692
693 return rc;
694}
695
696/**
697 * smack_inode_rename - Smack check on rename
698 * @old_inode: the old directory
699 * @old_dentry: unused
700 * @new_inode: the new directory
701 * @new_dentry: unused
702 *
703 * Read and write access is required on both the old and
704 * new directories.
705 *
706 * Returns 0 if access is permitted, an error code otherwise
707 */
708static int smack_inode_rename(struct inode *old_inode,
709 struct dentry *old_dentry,
710 struct inode *new_inode,
711 struct dentry *new_dentry)
712{
713 int rc;
714 char *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200715 struct smk_audit_info ad;
716
Eric Parisa2694342011-04-25 13:10:27 -0400717 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200718 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -0800719
720 isp = smk_of_inode(old_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200721 rc = smk_curacc(isp, MAY_READWRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800722
723 if (rc == 0 && new_dentry->d_inode != NULL) {
724 isp = smk_of_inode(new_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200725 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
726 rc = smk_curacc(isp, MAY_READWRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800727 }
Casey Schauflere114e472008-02-04 22:29:50 -0800728 return rc;
729}
730
731/**
732 * smack_inode_permission - Smack version of permission()
733 * @inode: the inode in question
734 * @mask: the access requested
Casey Schauflere114e472008-02-04 22:29:50 -0800735 *
736 * This is the important Smack hook.
737 *
738 * Returns 0 if access is permitted, -EACCES otherwise
739 */
Al Viroe74f71e2011-06-20 19:38:15 -0400740static int smack_inode_permission(struct inode *inode, int mask)
Casey Schauflere114e472008-02-04 22:29:50 -0800741{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200742 struct smk_audit_info ad;
Al Viroe74f71e2011-06-20 19:38:15 -0400743 int no_block = mask & MAY_NOT_BLOCK;
Eric Parisd09ca732010-07-23 11:43:57 -0400744
745 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
Casey Schauflere114e472008-02-04 22:29:50 -0800746 /*
747 * No permission to check. Existence test. Yup, it's there.
748 */
749 if (mask == 0)
750 return 0;
Andi Kleen8c9e80e2011-04-21 17:23:19 -0700751
752 /* May be droppable after audit */
Al Viroe74f71e2011-06-20 19:38:15 -0400753 if (no_block)
Andi Kleen8c9e80e2011-04-21 17:23:19 -0700754 return -ECHILD;
Eric Parisf48b7392011-04-25 12:54:27 -0400755 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200756 smk_ad_setfield_u_fs_inode(&ad, inode);
757 return smk_curacc(smk_of_inode(inode), mask, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800758}
759
760/**
761 * smack_inode_setattr - Smack check for setting attributes
762 * @dentry: the object
763 * @iattr: for the force flag
764 *
765 * Returns 0 if access is permitted, an error code otherwise
766 */
767static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
768{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200769 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800770 /*
771 * Need to allow for clearing the setuid bit.
772 */
773 if (iattr->ia_valid & ATTR_FORCE)
774 return 0;
Eric Parisa2694342011-04-25 13:10:27 -0400775 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200776 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflere114e472008-02-04 22:29:50 -0800777
Etienne Bassetecfcc532009-04-08 20:40:06 +0200778 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800779}
780
781/**
782 * smack_inode_getattr - Smack check for getting attributes
783 * @mnt: unused
784 * @dentry: the object
785 *
786 * Returns 0 if access is permitted, an error code otherwise
787 */
788static int smack_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
789{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200790 struct smk_audit_info ad;
Eric Parisa2694342011-04-25 13:10:27 -0400791 struct path path;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200792
Eric Parisa2694342011-04-25 13:10:27 -0400793 path.dentry = dentry;
794 path.mnt = mnt;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200795
Eric Parisf48b7392011-04-25 12:54:27 -0400796 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Eric Parisa2694342011-04-25 13:10:27 -0400797 smk_ad_setfield_u_fs_path(&ad, path);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200798 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800799}
800
801/**
802 * smack_inode_setxattr - Smack check for setting xattrs
803 * @dentry: the object
804 * @name: name of the attribute
805 * @value: unused
806 * @size: unused
807 * @flags: unused
808 *
809 * This protects the Smack attribute explicitly.
810 *
811 * Returns 0 if access is permitted, an error code otherwise
812 */
David Howells8f0cfa52008-04-29 00:59:41 -0700813static int smack_inode_setxattr(struct dentry *dentry, const char *name,
814 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -0800815{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200816 struct smk_audit_info ad;
Casey Schaufler19760ad2013-12-16 16:27:26 -0800817 struct smack_known *skp;
818 int check_priv = 0;
819 int check_import = 0;
820 int check_star = 0;
Casey Schauflerbcdca222008-02-23 15:24:04 -0800821 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800822
Casey Schaufler19760ad2013-12-16 16:27:26 -0800823 /*
824 * Check label validity here so import won't fail in post_setxattr
825 */
Casey Schauflerbcdca222008-02-23 15:24:04 -0800826 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
827 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler19760ad2013-12-16 16:27:26 -0800828 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
829 check_priv = 1;
830 check_import = 1;
831 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
832 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
833 check_priv = 1;
834 check_import = 1;
835 check_star = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200836 } else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
Casey Schaufler19760ad2013-12-16 16:27:26 -0800837 check_priv = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200838 if (size != TRANS_TRUE_SIZE ||
839 strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
840 rc = -EINVAL;
Casey Schauflerbcdca222008-02-23 15:24:04 -0800841 } else
842 rc = cap_inode_setxattr(dentry, name, value, size, flags);
843
Casey Schaufler19760ad2013-12-16 16:27:26 -0800844 if (check_priv && !smack_privileged(CAP_MAC_ADMIN))
845 rc = -EPERM;
846
847 if (rc == 0 && check_import) {
848 skp = smk_import_entry(value, size);
849 if (skp == NULL || (check_star &&
850 (skp == &smack_known_star || skp == &smack_known_web)))
851 rc = -EINVAL;
852 }
853
Eric Parisa2694342011-04-25 13:10:27 -0400854 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200855 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
856
Casey Schauflerbcdca222008-02-23 15:24:04 -0800857 if (rc == 0)
Etienne Bassetecfcc532009-04-08 20:40:06 +0200858 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
Casey Schauflerbcdca222008-02-23 15:24:04 -0800859
860 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800861}
862
863/**
864 * smack_inode_post_setxattr - Apply the Smack update approved above
865 * @dentry: object
866 * @name: attribute name
867 * @value: attribute value
868 * @size: attribute size
869 * @flags: unused
870 *
871 * Set the pointer in the inode blob to the entry found
872 * in the master label list.
873 */
David Howells8f0cfa52008-04-29 00:59:41 -0700874static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
875 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -0800876{
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700877 struct smack_known *skp;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200878 struct inode_smack *isp = dentry->d_inode->i_security;
Casey Schaufler676dac42010-12-02 06:43:39 -0800879
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700880 if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
881 isp->smk_flags |= SMK_INODE_TRANSMUTE;
882 return;
883 }
884
885 skp = smk_import_entry(value, size);
Casey Schaufler676dac42010-12-02 06:43:39 -0800886 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700887 if (skp != NULL)
888 isp->smk_inode = skp->smk_known;
Casey Schaufler676dac42010-12-02 06:43:39 -0800889 else
890 isp->smk_inode = smack_known_invalid.smk_known;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200891 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700892 if (skp != NULL)
893 isp->smk_task = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -0800894 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700895 isp->smk_task = &smack_known_invalid;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800896 } else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700897 if (skp != NULL)
898 isp->smk_mmap = skp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800899 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700900 isp->smk_mmap = &smack_known_invalid;
901 }
Casey Schauflere114e472008-02-04 22:29:50 -0800902
903 return;
904}
905
Casey Schauflerce8a4322011-09-29 18:21:01 -0700906/**
Casey Schauflere114e472008-02-04 22:29:50 -0800907 * smack_inode_getxattr - Smack check on getxattr
908 * @dentry: the object
909 * @name: unused
910 *
911 * Returns 0 if access is permitted, an error code otherwise
912 */
David Howells8f0cfa52008-04-29 00:59:41 -0700913static int smack_inode_getxattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -0800914{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200915 struct smk_audit_info ad;
916
Eric Parisa2694342011-04-25 13:10:27 -0400917 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200918 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
919
920 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -0800921}
922
Casey Schauflerce8a4322011-09-29 18:21:01 -0700923/**
Casey Schauflere114e472008-02-04 22:29:50 -0800924 * smack_inode_removexattr - Smack check on removexattr
925 * @dentry: the object
926 * @name: name of the attribute
927 *
928 * Removing the Smack attribute requires CAP_MAC_ADMIN
929 *
930 * Returns 0 if access is permitted, an error code otherwise
931 */
David Howells8f0cfa52008-04-29 00:59:41 -0700932static int smack_inode_removexattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -0800933{
Casey Schaufler676dac42010-12-02 06:43:39 -0800934 struct inode_smack *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200935 struct smk_audit_info ad;
Casey Schauflerbcdca222008-02-23 15:24:04 -0800936 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800937
Casey Schauflerbcdca222008-02-23 15:24:04 -0800938 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
939 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler676dac42010-12-02 06:43:39 -0800940 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 ||
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200941 strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800942 strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 ||
943 strcmp(name, XATTR_NAME_SMACKMMAP)) {
Casey Schaufler1880eff2012-06-05 15:28:30 -0700944 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflerbcdca222008-02-23 15:24:04 -0800945 rc = -EPERM;
946 } else
947 rc = cap_inode_removexattr(dentry, name);
948
Eric Parisa2694342011-04-25 13:10:27 -0400949 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200950 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflerbcdca222008-02-23 15:24:04 -0800951 if (rc == 0)
Etienne Bassetecfcc532009-04-08 20:40:06 +0200952 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
Casey Schauflerbcdca222008-02-23 15:24:04 -0800953
Casey Schaufler676dac42010-12-02 06:43:39 -0800954 if (rc == 0) {
955 isp = dentry->d_inode->i_security;
956 isp->smk_task = NULL;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800957 isp->smk_mmap = NULL;
Casey Schaufler676dac42010-12-02 06:43:39 -0800958 }
959
Casey Schauflerbcdca222008-02-23 15:24:04 -0800960 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800961}
962
963/**
964 * smack_inode_getsecurity - get smack xattrs
965 * @inode: the object
966 * @name: attribute name
967 * @buffer: where to put the result
Randy Dunlap251a2a92009-02-18 11:42:33 -0800968 * @alloc: unused
Casey Schauflere114e472008-02-04 22:29:50 -0800969 *
970 * Returns the size of the attribute or an error code
971 */
972static int smack_inode_getsecurity(const struct inode *inode,
973 const char *name, void **buffer,
974 bool alloc)
975{
976 struct socket_smack *ssp;
977 struct socket *sock;
978 struct super_block *sbp;
979 struct inode *ip = (struct inode *)inode;
980 char *isp;
981 int ilen;
982 int rc = 0;
983
984 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
985 isp = smk_of_inode(inode);
986 ilen = strlen(isp) + 1;
987 *buffer = isp;
988 return ilen;
989 }
990
991 /*
992 * The rest of the Smack xattrs are only on sockets.
993 */
994 sbp = ip->i_sb;
995 if (sbp->s_magic != SOCKFS_MAGIC)
996 return -EOPNOTSUPP;
997
998 sock = SOCKET_I(ip);
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -0800999 if (sock == NULL || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08001000 return -EOPNOTSUPP;
1001
1002 ssp = sock->sk->sk_security;
1003
1004 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
1005 isp = ssp->smk_in;
1006 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001007 isp = ssp->smk_out->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08001008 else
1009 return -EOPNOTSUPP;
1010
1011 ilen = strlen(isp) + 1;
1012 if (rc == 0) {
1013 *buffer = isp;
1014 rc = ilen;
1015 }
1016
1017 return rc;
1018}
1019
1020
1021/**
1022 * smack_inode_listsecurity - list the Smack attributes
1023 * @inode: the object
1024 * @buffer: where they go
1025 * @buffer_size: size of buffer
1026 *
1027 * Returns 0 on success, -EINVAL otherwise
1028 */
1029static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1030 size_t buffer_size)
1031{
1032 int len = strlen(XATTR_NAME_SMACK);
1033
1034 if (buffer != NULL && len <= buffer_size) {
1035 memcpy(buffer, XATTR_NAME_SMACK, len);
1036 return len;
1037 }
1038 return -EINVAL;
1039}
1040
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001041/**
1042 * smack_inode_getsecid - Extract inode's security id
1043 * @inode: inode to extract the info from
1044 * @secid: where result will be saved
1045 */
1046static void smack_inode_getsecid(const struct inode *inode, u32 *secid)
1047{
1048 struct inode_smack *isp = inode->i_security;
1049
1050 *secid = smack_to_secid(isp->smk_inode);
1051}
1052
Casey Schauflere114e472008-02-04 22:29:50 -08001053/*
1054 * File Hooks
1055 */
1056
1057/**
1058 * smack_file_permission - Smack check on file operations
1059 * @file: unused
1060 * @mask: unused
1061 *
1062 * Returns 0
1063 *
1064 * Should access checks be done on each read or write?
1065 * UNICOS and SELinux say yes.
1066 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
1067 *
1068 * I'll say no for now. Smack does not do the frequent
1069 * label changing that SELinux does.
1070 */
1071static int smack_file_permission(struct file *file, int mask)
1072{
1073 return 0;
1074}
1075
1076/**
1077 * smack_file_alloc_security - assign a file security blob
1078 * @file: the object
1079 *
1080 * The security blob for a file is a pointer to the master
1081 * label list, so no allocation is done.
1082 *
1083 * Returns 0
1084 */
1085static int smack_file_alloc_security(struct file *file)
1086{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001087 struct smack_known *skp = smk_of_current();
1088
1089 file->f_security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08001090 return 0;
1091}
1092
1093/**
1094 * smack_file_free_security - clear a file security blob
1095 * @file: the object
1096 *
1097 * The security blob for a file is a pointer to the master
1098 * label list, so no memory is freed.
1099 */
1100static void smack_file_free_security(struct file *file)
1101{
1102 file->f_security = NULL;
1103}
1104
1105/**
1106 * smack_file_ioctl - Smack check on ioctls
1107 * @file: the object
1108 * @cmd: what to do
1109 * @arg: unused
1110 *
1111 * Relies heavily on the correct use of the ioctl command conventions.
1112 *
1113 * Returns 0 if allowed, error code otherwise
1114 */
1115static int smack_file_ioctl(struct file *file, unsigned int cmd,
1116 unsigned long arg)
1117{
1118 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001119 struct smk_audit_info ad;
1120
Eric Parisf48b7392011-04-25 12:54:27 -04001121 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001122 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflere114e472008-02-04 22:29:50 -08001123
1124 if (_IOC_DIR(cmd) & _IOC_WRITE)
Etienne Bassetecfcc532009-04-08 20:40:06 +02001125 rc = smk_curacc(file->f_security, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001126
1127 if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ))
Etienne Bassetecfcc532009-04-08 20:40:06 +02001128 rc = smk_curacc(file->f_security, MAY_READ, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001129
1130 return rc;
1131}
1132
1133/**
1134 * smack_file_lock - Smack check on file locking
1135 * @file: the object
Randy Dunlap251a2a92009-02-18 11:42:33 -08001136 * @cmd: unused
Casey Schauflere114e472008-02-04 22:29:50 -08001137 *
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001138 * Returns 0 if current has lock access, error code otherwise
Casey Schauflere114e472008-02-04 22:29:50 -08001139 */
1140static int smack_file_lock(struct file *file, unsigned int cmd)
1141{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001142 struct smk_audit_info ad;
1143
Eric Paris92f42502011-04-25 13:15:55 -04001144 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1145 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001146 return smk_curacc(file->f_security, MAY_LOCK, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001147}
1148
1149/**
1150 * smack_file_fcntl - Smack check on fcntl
1151 * @file: the object
1152 * @cmd: what action to check
1153 * @arg: unused
1154 *
Casey Schaufler531f1d42011-09-19 12:41:42 -07001155 * Generally these operations are harmless.
1156 * File locking operations present an obvious mechanism
1157 * for passing information, so they require write access.
1158 *
Casey Schauflere114e472008-02-04 22:29:50 -08001159 * Returns 0 if current has access, error code otherwise
1160 */
1161static int smack_file_fcntl(struct file *file, unsigned int cmd,
1162 unsigned long arg)
1163{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001164 struct smk_audit_info ad;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001165 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001166
Etienne Bassetecfcc532009-04-08 20:40:06 +02001167
Casey Schauflere114e472008-02-04 22:29:50 -08001168 switch (cmd) {
Casey Schauflere114e472008-02-04 22:29:50 -08001169 case F_GETLK:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001170 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001171 case F_SETLK:
1172 case F_SETLKW:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001173 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1174 smk_ad_setfield_u_fs_path(&ad, file->f_path);
1175 rc = smk_curacc(file->f_security, MAY_LOCK, &ad);
1176 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001177 case F_SETOWN:
1178 case F_SETSIG:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001179 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1180 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001181 rc = smk_curacc(file->f_security, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001182 break;
1183 default:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001184 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001185 }
1186
1187 return rc;
1188}
1189
1190/**
Al Viroe5467852012-05-30 13:30:51 -04001191 * smack_mmap_file :
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001192 * Check permissions for a mmap operation. The @file may be NULL, e.g.
1193 * if mapping anonymous memory.
1194 * @file contains the file structure for file to map (may be NULL).
1195 * @reqprot contains the protection requested by the application.
1196 * @prot contains the protection that will be applied by the kernel.
1197 * @flags contains the operational flags.
1198 * Return 0 if permission is granted.
1199 */
Al Viroe5467852012-05-30 13:30:51 -04001200static int smack_mmap_file(struct file *file,
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001201 unsigned long reqprot, unsigned long prot,
Al Viroe5467852012-05-30 13:30:51 -04001202 unsigned long flags)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001203{
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001204 struct smack_known *skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001205 struct smack_known *mkp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001206 struct smack_rule *srp;
1207 struct task_smack *tsp;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001208 char *osmack;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001209 struct inode_smack *isp;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001210 int may;
1211 int mmay;
1212 int tmay;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001213 int rc;
1214
Al Viro496ad9a2013-01-23 17:07:38 -05001215 if (file == NULL)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001216 return 0;
1217
Al Viro496ad9a2013-01-23 17:07:38 -05001218 isp = file_inode(file)->i_security;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001219 if (isp->smk_mmap == NULL)
1220 return 0;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001221 mkp = isp->smk_mmap;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001222
1223 tsp = current_security();
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001224 skp = smk_of_current();
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001225 rc = 0;
1226
1227 rcu_read_lock();
1228 /*
1229 * For each Smack rule associated with the subject
1230 * label verify that the SMACK64MMAP also has access
1231 * to that rule's object label.
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001232 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001233 list_for_each_entry_rcu(srp, &skp->smk_rules, list) {
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001234 osmack = srp->smk_object;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001235 /*
1236 * Matching labels always allows access.
1237 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001238 if (mkp->smk_known == osmack)
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001239 continue;
1240 /*
1241 * If there is a matching local rule take
1242 * that into account as well.
1243 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001244 may = smk_access_entry(srp->smk_subject->smk_known, osmack,
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001245 &tsp->smk_rules);
1246 if (may == -ENOENT)
1247 may = srp->smk_access;
1248 else
1249 may &= srp->smk_access;
1250 /*
1251 * If may is zero the SMACK64MMAP subject can't
1252 * possibly have less access.
1253 */
1254 if (may == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001255 continue;
1256
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001257 /*
1258 * Fetch the global list entry.
1259 * If there isn't one a SMACK64MMAP subject
1260 * can't have as much access as current.
1261 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001262 mmay = smk_access_entry(mkp->smk_known, osmack,
1263 &mkp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001264 if (mmay == -ENOENT) {
1265 rc = -EACCES;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001266 break;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001267 }
1268 /*
1269 * If there is a local entry it modifies the
1270 * potential access, too.
1271 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001272 tmay = smk_access_entry(mkp->smk_known, osmack,
1273 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001274 if (tmay != -ENOENT)
1275 mmay &= tmay;
1276
1277 /*
1278 * If there is any access available to current that is
1279 * not available to a SMACK64MMAP subject
1280 * deny access.
1281 */
Casey Schaufler75a25632011-02-09 19:58:42 -08001282 if ((may | mmay) != mmay) {
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001283 rc = -EACCES;
1284 break;
1285 }
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001286 }
1287
1288 rcu_read_unlock();
1289
1290 return rc;
1291}
1292
1293/**
Casey Schauflere114e472008-02-04 22:29:50 -08001294 * smack_file_set_fowner - set the file security blob value
1295 * @file: object in question
1296 *
1297 * Returns 0
1298 * Further research may be required on this one.
1299 */
1300static int smack_file_set_fowner(struct file *file)
1301{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001302 struct smack_known *skp = smk_of_current();
1303
1304 file->f_security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08001305 return 0;
1306}
1307
1308/**
1309 * smack_file_send_sigiotask - Smack on sigio
1310 * @tsk: The target task
1311 * @fown: the object the signal come from
1312 * @signum: unused
1313 *
1314 * Allow a privileged task to get signals even if it shouldn't
1315 *
1316 * Returns 0 if a subject with the object's smack could
1317 * write to the task, an error code otherwise.
1318 */
1319static int smack_file_send_sigiotask(struct task_struct *tsk,
1320 struct fown_struct *fown, int signum)
1321{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001322 struct smack_known *skp;
1323 struct smack_known *tkp = smk_of_task(tsk->cred->security);
Casey Schauflere114e472008-02-04 22:29:50 -08001324 struct file *file;
1325 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001326 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001327
1328 /*
1329 * struct fown_struct is never outside the context of a struct file
1330 */
1331 file = container_of(fown, struct file, f_owner);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001332
Etienne Bassetecfcc532009-04-08 20:40:06 +02001333 /* we don't log here as rc can be overriden */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001334 skp = smk_find_entry(file->f_security);
1335 rc = smk_access(skp, tkp->smk_known, MAY_WRITE, NULL);
David Howells5cd9c582008-08-14 11:37:28 +01001336 if (rc != 0 && has_capability(tsk, CAP_MAC_OVERRIDE))
Etienne Bassetecfcc532009-04-08 20:40:06 +02001337 rc = 0;
1338
1339 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1340 smk_ad_setfield_u_tsk(&ad, tsk);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001341 smack_log(file->f_security, tkp->smk_known, MAY_WRITE, rc, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001342 return rc;
1343}
1344
1345/**
1346 * smack_file_receive - Smack file receive check
1347 * @file: the object
1348 *
1349 * Returns 0 if current has access, error code otherwise
1350 */
1351static int smack_file_receive(struct file *file)
1352{
1353 int may = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001354 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001355
Casey Schaufler4482a442013-12-30 17:37:45 -08001356 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001357 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflere114e472008-02-04 22:29:50 -08001358 /*
1359 * This code relies on bitmasks.
1360 */
1361 if (file->f_mode & FMODE_READ)
1362 may = MAY_READ;
1363 if (file->f_mode & FMODE_WRITE)
1364 may |= MAY_WRITE;
1365
Etienne Bassetecfcc532009-04-08 20:40:06 +02001366 return smk_curacc(file->f_security, may, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001367}
1368
Casey Schaufler531f1d42011-09-19 12:41:42 -07001369/**
Eric Paris83d49852012-04-04 13:45:40 -04001370 * smack_file_open - Smack dentry open processing
Casey Schaufler531f1d42011-09-19 12:41:42 -07001371 * @file: the object
1372 * @cred: unused
1373 *
1374 * Set the security blob in the file structure.
1375 *
1376 * Returns 0
1377 */
Eric Paris83d49852012-04-04 13:45:40 -04001378static int smack_file_open(struct file *file, const struct cred *cred)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001379{
Al Viro496ad9a2013-01-23 17:07:38 -05001380 struct inode_smack *isp = file_inode(file)->i_security;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001381
1382 file->f_security = isp->smk_inode;
1383
1384 return 0;
1385}
1386
Casey Schauflere114e472008-02-04 22:29:50 -08001387/*
1388 * Task hooks
1389 */
1390
1391/**
David Howellsee18d642009-09-02 09:14:21 +01001392 * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1393 * @new: the new credentials
1394 * @gfp: the atomicity of any memory allocations
1395 *
1396 * Prepare a blank set of credentials for modification. This must allocate all
1397 * the memory the LSM module might require such that cred_transfer() can
1398 * complete without error.
1399 */
1400static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1401{
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001402 struct task_smack *tsp;
1403
1404 tsp = new_task_smack(NULL, NULL, gfp);
1405 if (tsp == NULL)
Casey Schaufler676dac42010-12-02 06:43:39 -08001406 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001407
1408 cred->security = tsp;
1409
David Howellsee18d642009-09-02 09:14:21 +01001410 return 0;
1411}
1412
1413
1414/**
David Howellsf1752ee2008-11-14 10:39:17 +11001415 * smack_cred_free - "free" task-level security credentials
1416 * @cred: the credentials in question
Casey Schauflere114e472008-02-04 22:29:50 -08001417 *
Casey Schauflere114e472008-02-04 22:29:50 -08001418 */
David Howellsf1752ee2008-11-14 10:39:17 +11001419static void smack_cred_free(struct cred *cred)
Casey Schauflere114e472008-02-04 22:29:50 -08001420{
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001421 struct task_smack *tsp = cred->security;
1422 struct smack_rule *rp;
1423 struct list_head *l;
1424 struct list_head *n;
1425
1426 if (tsp == NULL)
1427 return;
1428 cred->security = NULL;
1429
1430 list_for_each_safe(l, n, &tsp->smk_rules) {
1431 rp = list_entry(l, struct smack_rule, list);
1432 list_del(&rp->list);
1433 kfree(rp);
1434 }
1435 kfree(tsp);
Casey Schauflere114e472008-02-04 22:29:50 -08001436}
1437
1438/**
David Howellsd84f4f92008-11-14 10:39:23 +11001439 * smack_cred_prepare - prepare new set of credentials for modification
1440 * @new: the new credentials
1441 * @old: the original credentials
1442 * @gfp: the atomicity of any memory allocations
1443 *
1444 * Prepare a new set of credentials for modification.
1445 */
1446static int smack_cred_prepare(struct cred *new, const struct cred *old,
1447 gfp_t gfp)
1448{
Casey Schaufler676dac42010-12-02 06:43:39 -08001449 struct task_smack *old_tsp = old->security;
1450 struct task_smack *new_tsp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001451 int rc;
Casey Schaufler676dac42010-12-02 06:43:39 -08001452
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001453 new_tsp = new_task_smack(old_tsp->smk_task, old_tsp->smk_task, gfp);
Casey Schaufler676dac42010-12-02 06:43:39 -08001454 if (new_tsp == NULL)
1455 return -ENOMEM;
1456
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001457 rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
1458 if (rc != 0)
1459 return rc;
1460
Casey Schaufler676dac42010-12-02 06:43:39 -08001461 new->security = new_tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11001462 return 0;
1463}
1464
Randy Dunlap251a2a92009-02-18 11:42:33 -08001465/**
David Howellsee18d642009-09-02 09:14:21 +01001466 * smack_cred_transfer - Transfer the old credentials to the new credentials
1467 * @new: the new credentials
1468 * @old: the original credentials
1469 *
1470 * Fill in a set of blank credentials from another set of credentials.
1471 */
1472static void smack_cred_transfer(struct cred *new, const struct cred *old)
1473{
Casey Schaufler676dac42010-12-02 06:43:39 -08001474 struct task_smack *old_tsp = old->security;
1475 struct task_smack *new_tsp = new->security;
1476
1477 new_tsp->smk_task = old_tsp->smk_task;
1478 new_tsp->smk_forked = old_tsp->smk_task;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001479 mutex_init(&new_tsp->smk_rules_lock);
1480 INIT_LIST_HEAD(&new_tsp->smk_rules);
1481
1482
1483 /* cbs copy rule list */
David Howellsee18d642009-09-02 09:14:21 +01001484}
1485
1486/**
David Howells3a3b7ce2008-11-14 10:39:28 +11001487 * smack_kernel_act_as - Set the subjective context in a set of credentials
Randy Dunlap251a2a92009-02-18 11:42:33 -08001488 * @new: points to the set of credentials to be modified.
1489 * @secid: specifies the security ID to be set
David Howells3a3b7ce2008-11-14 10:39:28 +11001490 *
1491 * Set the security data for a kernel service.
1492 */
1493static int smack_kernel_act_as(struct cred *new, u32 secid)
1494{
Casey Schaufler676dac42010-12-02 06:43:39 -08001495 struct task_smack *new_tsp = new->security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001496 struct smack_known *skp = smack_from_secid(secid);
David Howells3a3b7ce2008-11-14 10:39:28 +11001497
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001498 if (skp == NULL)
David Howells3a3b7ce2008-11-14 10:39:28 +11001499 return -EINVAL;
1500
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001501 new_tsp->smk_task = skp;
David Howells3a3b7ce2008-11-14 10:39:28 +11001502 return 0;
1503}
1504
1505/**
1506 * smack_kernel_create_files_as - Set the file creation label in a set of creds
Randy Dunlap251a2a92009-02-18 11:42:33 -08001507 * @new: points to the set of credentials to be modified
1508 * @inode: points to the inode to use as a reference
David Howells3a3b7ce2008-11-14 10:39:28 +11001509 *
1510 * Set the file creation context in a set of credentials to the same
1511 * as the objective context of the specified inode
1512 */
1513static int smack_kernel_create_files_as(struct cred *new,
1514 struct inode *inode)
1515{
1516 struct inode_smack *isp = inode->i_security;
Casey Schaufler676dac42010-12-02 06:43:39 -08001517 struct task_smack *tsp = new->security;
David Howells3a3b7ce2008-11-14 10:39:28 +11001518
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001519 tsp->smk_forked = smk_find_entry(isp->smk_inode);
1520 tsp->smk_task = tsp->smk_forked;
David Howells3a3b7ce2008-11-14 10:39:28 +11001521 return 0;
1522}
1523
1524/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02001525 * smk_curacc_on_task - helper to log task related access
1526 * @p: the task object
Casey Schaufler531f1d42011-09-19 12:41:42 -07001527 * @access: the access requested
1528 * @caller: name of the calling function for audit
Etienne Bassetecfcc532009-04-08 20:40:06 +02001529 *
1530 * Return 0 if access is permitted
1531 */
Casey Schaufler531f1d42011-09-19 12:41:42 -07001532static int smk_curacc_on_task(struct task_struct *p, int access,
1533 const char *caller)
Etienne Bassetecfcc532009-04-08 20:40:06 +02001534{
1535 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001536 struct smack_known *skp = smk_of_task(task_security(p));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001537
Casey Schaufler531f1d42011-09-19 12:41:42 -07001538 smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001539 smk_ad_setfield_u_tsk(&ad, p);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001540 return smk_curacc(skp->smk_known, access, &ad);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001541}
1542
1543/**
Casey Schauflere114e472008-02-04 22:29:50 -08001544 * smack_task_setpgid - Smack check on setting pgid
1545 * @p: the task object
1546 * @pgid: unused
1547 *
1548 * Return 0 if write access is permitted
1549 */
1550static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
1551{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001552 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001553}
1554
1555/**
1556 * smack_task_getpgid - Smack access check for getpgid
1557 * @p: the object task
1558 *
1559 * Returns 0 if current can read the object task, error code otherwise
1560 */
1561static int smack_task_getpgid(struct task_struct *p)
1562{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001563 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001564}
1565
1566/**
1567 * smack_task_getsid - Smack access check for getsid
1568 * @p: the object task
1569 *
1570 * Returns 0 if current can read the object task, error code otherwise
1571 */
1572static int smack_task_getsid(struct task_struct *p)
1573{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001574 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001575}
1576
1577/**
1578 * smack_task_getsecid - get the secid of the task
1579 * @p: the object task
1580 * @secid: where to put the result
1581 *
1582 * Sets the secid to contain a u32 version of the smack label.
1583 */
1584static void smack_task_getsecid(struct task_struct *p, u32 *secid)
1585{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001586 struct smack_known *skp = smk_of_task(task_security(p));
1587
1588 *secid = skp->smk_secid;
Casey Schauflere114e472008-02-04 22:29:50 -08001589}
1590
1591/**
1592 * smack_task_setnice - Smack check on setting nice
1593 * @p: the task object
1594 * @nice: unused
1595 *
1596 * Return 0 if write access is permitted
1597 */
1598static int smack_task_setnice(struct task_struct *p, int nice)
1599{
Casey Schauflerbcdca222008-02-23 15:24:04 -08001600 int rc;
1601
1602 rc = cap_task_setnice(p, nice);
1603 if (rc == 0)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001604 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001605 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001606}
1607
1608/**
1609 * smack_task_setioprio - Smack check on setting ioprio
1610 * @p: the task object
1611 * @ioprio: unused
1612 *
1613 * Return 0 if write access is permitted
1614 */
1615static int smack_task_setioprio(struct task_struct *p, int ioprio)
1616{
Casey Schauflerbcdca222008-02-23 15:24:04 -08001617 int rc;
1618
1619 rc = cap_task_setioprio(p, ioprio);
1620 if (rc == 0)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001621 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001622 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001623}
1624
1625/**
1626 * smack_task_getioprio - Smack check on reading ioprio
1627 * @p: the task object
1628 *
1629 * Return 0 if read access is permitted
1630 */
1631static int smack_task_getioprio(struct task_struct *p)
1632{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001633 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001634}
1635
1636/**
1637 * smack_task_setscheduler - Smack check on setting scheduler
1638 * @p: the task object
1639 * @policy: unused
1640 * @lp: unused
1641 *
1642 * Return 0 if read access is permitted
1643 */
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001644static int smack_task_setscheduler(struct task_struct *p)
Casey Schauflere114e472008-02-04 22:29:50 -08001645{
Casey Schauflerbcdca222008-02-23 15:24:04 -08001646 int rc;
1647
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001648 rc = cap_task_setscheduler(p);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001649 if (rc == 0)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001650 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001651 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001652}
1653
1654/**
1655 * smack_task_getscheduler - Smack check on reading scheduler
1656 * @p: the task object
1657 *
1658 * Return 0 if read access is permitted
1659 */
1660static int smack_task_getscheduler(struct task_struct *p)
1661{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001662 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001663}
1664
1665/**
1666 * smack_task_movememory - Smack check on moving memory
1667 * @p: the task object
1668 *
1669 * Return 0 if write access is permitted
1670 */
1671static int smack_task_movememory(struct task_struct *p)
1672{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001673 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001674}
1675
1676/**
1677 * smack_task_kill - Smack check on signal delivery
1678 * @p: the task object
1679 * @info: unused
1680 * @sig: unused
1681 * @secid: identifies the smack to use in lieu of current's
1682 *
1683 * Return 0 if write access is permitted
1684 *
1685 * The secid behavior is an artifact of an SELinux hack
1686 * in the USB code. Someday it may go away.
1687 */
1688static int smack_task_kill(struct task_struct *p, struct siginfo *info,
1689 int sig, u32 secid)
1690{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001691 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001692 struct smack_known *skp;
1693 struct smack_known *tkp = smk_of_task(task_security(p));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001694
1695 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1696 smk_ad_setfield_u_tsk(&ad, p);
Casey Schauflere114e472008-02-04 22:29:50 -08001697 /*
Casey Schauflere114e472008-02-04 22:29:50 -08001698 * Sending a signal requires that the sender
1699 * can write the receiver.
1700 */
1701 if (secid == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001702 return smk_curacc(tkp->smk_known, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001703 /*
1704 * If the secid isn't 0 we're dealing with some USB IO
1705 * specific behavior. This is not clean. For one thing
1706 * we can't take privilege into account.
1707 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001708 skp = smack_from_secid(secid);
1709 return smk_access(skp, tkp->smk_known, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001710}
1711
1712/**
1713 * smack_task_wait - Smack access check for waiting
1714 * @p: task to wait for
1715 *
Casey Schauflerc00bedb2012-08-09 17:46:38 -07001716 * Returns 0
Casey Schauflere114e472008-02-04 22:29:50 -08001717 */
1718static int smack_task_wait(struct task_struct *p)
1719{
Casey Schauflere114e472008-02-04 22:29:50 -08001720 /*
Casey Schauflerc00bedb2012-08-09 17:46:38 -07001721 * Allow the operation to succeed.
1722 * Zombies are bad.
1723 * In userless environments (e.g. phones) programs
1724 * get marked with SMACK64EXEC and even if the parent
1725 * and child shouldn't be talking the parent still
1726 * may expect to know when the child exits.
Casey Schauflere114e472008-02-04 22:29:50 -08001727 */
Casey Schauflerc00bedb2012-08-09 17:46:38 -07001728 return 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001729}
1730
1731/**
1732 * smack_task_to_inode - copy task smack into the inode blob
1733 * @p: task to copy from
Randy Dunlap251a2a92009-02-18 11:42:33 -08001734 * @inode: inode to copy to
Casey Schauflere114e472008-02-04 22:29:50 -08001735 *
1736 * Sets the smack pointer in the inode security blob
1737 */
1738static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
1739{
1740 struct inode_smack *isp = inode->i_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001741 struct smack_known *skp = smk_of_task(task_security(p));
1742
1743 isp->smk_inode = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08001744}
1745
1746/*
1747 * Socket hooks.
1748 */
1749
1750/**
1751 * smack_sk_alloc_security - Allocate a socket blob
1752 * @sk: the socket
1753 * @family: unused
Randy Dunlap251a2a92009-02-18 11:42:33 -08001754 * @gfp_flags: memory allocation flags
Casey Schauflere114e472008-02-04 22:29:50 -08001755 *
1756 * Assign Smack pointers to current
1757 *
1758 * Returns 0 on success, -ENOMEM is there's no memory
1759 */
1760static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
1761{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001762 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08001763 struct socket_smack *ssp;
1764
1765 ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
1766 if (ssp == NULL)
1767 return -ENOMEM;
1768
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001769 ssp->smk_in = skp->smk_known;
1770 ssp->smk_out = skp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001771 ssp->smk_packet = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -08001772
1773 sk->sk_security = ssp;
1774
1775 return 0;
1776}
1777
1778/**
1779 * smack_sk_free_security - Free a socket blob
1780 * @sk: the socket
1781 *
1782 * Clears the blob pointer
1783 */
1784static void smack_sk_free_security(struct sock *sk)
1785{
1786 kfree(sk->sk_security);
1787}
1788
1789/**
Paul Moore07feee82009-03-27 17:10:54 -04001790* smack_host_label - check host based restrictions
1791* @sip: the object end
1792*
1793* looks for host based access restrictions
1794*
1795* This version will only be appropriate for really small sets of single label
1796* hosts. The caller is responsible for ensuring that the RCU read lock is
1797* taken before calling this function.
1798*
1799* Returns the label of the far end or NULL if it's not special.
1800*/
1801static char *smack_host_label(struct sockaddr_in *sip)
1802{
1803 struct smk_netlbladdr *snp;
1804 struct in_addr *siap = &sip->sin_addr;
1805
1806 if (siap->s_addr == 0)
1807 return NULL;
1808
1809 list_for_each_entry_rcu(snp, &smk_netlbladdr_list, list)
1810 /*
1811 * we break after finding the first match because
1812 * the list is sorted from longest to shortest mask
1813 * so we have found the most specific match
1814 */
1815 if ((&snp->smk_host.sin_addr)->s_addr ==
Etienne Basset43031542009-03-27 17:11:01 -04001816 (siap->s_addr & (&snp->smk_mask)->s_addr)) {
1817 /* we have found the special CIPSO option */
1818 if (snp->smk_label == smack_cipso_option)
1819 return NULL;
Paul Moore07feee82009-03-27 17:10:54 -04001820 return snp->smk_label;
Etienne Basset43031542009-03-27 17:11:01 -04001821 }
Paul Moore07feee82009-03-27 17:10:54 -04001822
1823 return NULL;
1824}
1825
1826/**
Casey Schauflere114e472008-02-04 22:29:50 -08001827 * smack_netlabel - Set the secattr on a socket
1828 * @sk: the socket
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001829 * @labeled: socket label scheme
Casey Schauflere114e472008-02-04 22:29:50 -08001830 *
1831 * Convert the outbound smack value (smk_out) to a
1832 * secattr and attach it to the socket.
1833 *
1834 * Returns 0 on success or an error code
1835 */
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001836static int smack_netlabel(struct sock *sk, int labeled)
Casey Schauflere114e472008-02-04 22:29:50 -08001837{
Casey Schauflerf7112e62012-05-06 15:22:02 -07001838 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04001839 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001840 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001841
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001842 /*
1843 * Usually the netlabel code will handle changing the
1844 * packet labeling based on the label.
1845 * The case of a single label host is different, because
1846 * a single label host should never get a labeled packet
1847 * even though the label is usually associated with a packet
1848 * label.
1849 */
1850 local_bh_disable();
1851 bh_lock_sock_nested(sk);
1852
1853 if (ssp->smk_out == smack_net_ambient ||
1854 labeled == SMACK_UNLABELED_SOCKET)
1855 netlbl_sock_delattr(sk);
1856 else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001857 skp = ssp->smk_out;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001858 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001859 }
1860
1861 bh_unlock_sock(sk);
1862 local_bh_enable();
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001863
Casey Schauflere114e472008-02-04 22:29:50 -08001864 return rc;
1865}
1866
1867/**
Paul Moore07feee82009-03-27 17:10:54 -04001868 * smack_netlbel_send - Set the secattr on a socket and perform access checks
1869 * @sk: the socket
1870 * @sap: the destination address
1871 *
1872 * Set the correct secattr for the given socket based on the destination
1873 * address and perform any outbound access checks needed.
1874 *
1875 * Returns 0 on success or an error code.
1876 *
1877 */
1878static int smack_netlabel_send(struct sock *sk, struct sockaddr_in *sap)
1879{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001880 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04001881 int rc;
1882 int sk_lbl;
1883 char *hostsp;
1884 struct socket_smack *ssp = sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001885 struct smk_audit_info ad;
Paul Moore07feee82009-03-27 17:10:54 -04001886
1887 rcu_read_lock();
1888 hostsp = smack_host_label(sap);
1889 if (hostsp != NULL) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02001890#ifdef CONFIG_AUDIT
Kees Cook923e9a12012-04-10 13:26:44 -07001891 struct lsm_network_audit net;
1892
Eric Paris48c62af2012-04-02 13:15:44 -04001893 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
1894 ad.a.u.net->family = sap->sin_family;
1895 ad.a.u.net->dport = sap->sin_port;
1896 ad.a.u.net->v4info.daddr = sap->sin_addr.s_addr;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001897#endif
Kees Cook923e9a12012-04-10 13:26:44 -07001898 sk_lbl = SMACK_UNLABELED_SOCKET;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001899 skp = ssp->smk_out;
1900 rc = smk_access(skp, hostsp, MAY_WRITE, &ad);
Paul Moore07feee82009-03-27 17:10:54 -04001901 } else {
1902 sk_lbl = SMACK_CIPSO_SOCKET;
1903 rc = 0;
1904 }
1905 rcu_read_unlock();
1906 if (rc != 0)
1907 return rc;
1908
1909 return smack_netlabel(sk, sk_lbl);
1910}
1911
1912/**
Casey Schauflerc6739442013-05-22 18:42:56 -07001913 * smk_ipv6_port_label - Smack port access table management
1914 * @sock: socket
1915 * @address: address
1916 *
1917 * Create or update the port list entry
1918 */
1919static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
1920{
1921 struct sock *sk = sock->sk;
1922 struct sockaddr_in6 *addr6;
1923 struct socket_smack *ssp = sock->sk->sk_security;
1924 struct smk_port_label *spp;
1925 unsigned short port = 0;
1926
1927 if (address == NULL) {
1928 /*
1929 * This operation is changing the Smack information
1930 * on the bound socket. Take the changes to the port
1931 * as well.
1932 */
1933 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
1934 if (sk != spp->smk_sock)
1935 continue;
1936 spp->smk_in = ssp->smk_in;
1937 spp->smk_out = ssp->smk_out;
1938 return;
1939 }
1940 /*
1941 * A NULL address is only used for updating existing
1942 * bound entries. If there isn't one, it's OK.
1943 */
1944 return;
1945 }
1946
1947 addr6 = (struct sockaddr_in6 *)address;
1948 port = ntohs(addr6->sin6_port);
1949 /*
1950 * This is a special case that is safely ignored.
1951 */
1952 if (port == 0)
1953 return;
1954
1955 /*
1956 * Look for an existing port list entry.
1957 * This is an indication that a port is getting reused.
1958 */
1959 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
1960 if (spp->smk_port != port)
1961 continue;
1962 spp->smk_port = port;
1963 spp->smk_sock = sk;
1964 spp->smk_in = ssp->smk_in;
1965 spp->smk_out = ssp->smk_out;
1966 return;
1967 }
1968
1969 /*
1970 * A new port entry is required.
1971 */
1972 spp = kzalloc(sizeof(*spp), GFP_KERNEL);
1973 if (spp == NULL)
1974 return;
1975
1976 spp->smk_port = port;
1977 spp->smk_sock = sk;
1978 spp->smk_in = ssp->smk_in;
1979 spp->smk_out = ssp->smk_out;
1980
1981 list_add(&spp->list, &smk_ipv6_port_list);
1982 return;
1983}
1984
1985/**
1986 * smk_ipv6_port_check - check Smack port access
1987 * @sock: socket
1988 * @address: address
1989 *
1990 * Create or update the port list entry
1991 */
Casey Schaufler6ea06242013-08-05 13:21:22 -07001992static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
Casey Schauflerc6739442013-05-22 18:42:56 -07001993 int act)
1994{
1995 __be16 *bep;
1996 __be32 *be32p;
Casey Schauflerc6739442013-05-22 18:42:56 -07001997 struct smk_port_label *spp;
1998 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001999 struct smack_known *skp;
Casey Schauflerc6739442013-05-22 18:42:56 -07002000 unsigned short port = 0;
Casey Schauflerc6739442013-05-22 18:42:56 -07002001 char *object;
2002 struct smk_audit_info ad;
2003#ifdef CONFIG_AUDIT
2004 struct lsm_network_audit net;
2005#endif
2006
2007 if (act == SMK_RECEIVING) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002008 skp = smack_net_ambient;
Casey Schauflerc6739442013-05-22 18:42:56 -07002009 object = ssp->smk_in;
2010 } else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002011 skp = ssp->smk_out;
2012 object = smack_net_ambient->smk_known;
Casey Schauflerc6739442013-05-22 18:42:56 -07002013 }
2014
2015 /*
2016 * Get the IP address and port from the address.
2017 */
Casey Schaufler6ea06242013-08-05 13:21:22 -07002018 port = ntohs(address->sin6_port);
2019 bep = (__be16 *)(&address->sin6_addr);
2020 be32p = (__be32 *)(&address->sin6_addr);
Casey Schauflerc6739442013-05-22 18:42:56 -07002021
2022 /*
2023 * It's remote, so port lookup does no good.
2024 */
2025 if (be32p[0] || be32p[1] || be32p[2] || bep[6] || ntohs(bep[7]) != 1)
2026 goto auditout;
2027
2028 /*
2029 * It's local so the send check has to have passed.
2030 */
2031 if (act == SMK_RECEIVING) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002032 skp = &smack_known_web;
Casey Schauflerc6739442013-05-22 18:42:56 -07002033 goto auditout;
2034 }
2035
2036 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2037 if (spp->smk_port != port)
2038 continue;
2039 object = spp->smk_in;
2040 if (act == SMK_CONNECTING)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002041 ssp->smk_packet = spp->smk_out->smk_known;
Casey Schauflerc6739442013-05-22 18:42:56 -07002042 break;
2043 }
2044
2045auditout:
2046
2047#ifdef CONFIG_AUDIT
2048 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2049 ad.a.u.net->family = sk->sk_family;
2050 ad.a.u.net->dport = port;
2051 if (act == SMK_RECEIVING)
Casey Schaufler6ea06242013-08-05 13:21:22 -07002052 ad.a.u.net->v6info.saddr = address->sin6_addr;
Casey Schauflerc6739442013-05-22 18:42:56 -07002053 else
Casey Schaufler6ea06242013-08-05 13:21:22 -07002054 ad.a.u.net->v6info.daddr = address->sin6_addr;
Casey Schauflerc6739442013-05-22 18:42:56 -07002055#endif
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002056 return smk_access(skp, object, MAY_WRITE, &ad);
Casey Schauflerc6739442013-05-22 18:42:56 -07002057}
2058
2059/**
Casey Schauflere114e472008-02-04 22:29:50 -08002060 * smack_inode_setsecurity - set smack xattrs
2061 * @inode: the object
2062 * @name: attribute name
2063 * @value: attribute value
2064 * @size: size of the attribute
2065 * @flags: unused
2066 *
2067 * Sets the named attribute in the appropriate blob
2068 *
2069 * Returns 0 on success, or an error code
2070 */
2071static int smack_inode_setsecurity(struct inode *inode, const char *name,
2072 const void *value, size_t size, int flags)
2073{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002074 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002075 struct inode_smack *nsp = inode->i_security;
2076 struct socket_smack *ssp;
2077 struct socket *sock;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002078 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002079
Casey Schauflerf7112e62012-05-06 15:22:02 -07002080 if (value == NULL || size > SMK_LONGLABEL || size == 0)
Casey Schauflere114e472008-02-04 22:29:50 -08002081 return -EACCES;
2082
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002083 skp = smk_import_entry(value, size);
2084 if (skp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002085 return -EINVAL;
2086
2087 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002088 nsp->smk_inode = skp->smk_known;
David P. Quigleyddd29ec2009-09-09 14:25:37 -04002089 nsp->smk_flags |= SMK_INODE_INSTANT;
Casey Schauflere114e472008-02-04 22:29:50 -08002090 return 0;
2091 }
2092 /*
2093 * The rest of the Smack xattrs are only on sockets.
2094 */
2095 if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2096 return -EOPNOTSUPP;
2097
2098 sock = SOCKET_I(inode);
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08002099 if (sock == NULL || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002100 return -EOPNOTSUPP;
2101
2102 ssp = sock->sk->sk_security;
2103
2104 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002105 ssp->smk_in = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002106 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002107 ssp->smk_out = skp;
Casey Schauflerc6739442013-05-22 18:42:56 -07002108 if (sock->sk->sk_family == PF_INET) {
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002109 rc = smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2110 if (rc != 0)
2111 printk(KERN_WARNING
2112 "Smack: \"%s\" netlbl error %d.\n",
2113 __func__, -rc);
2114 }
Casey Schauflere114e472008-02-04 22:29:50 -08002115 } else
2116 return -EOPNOTSUPP;
2117
Casey Schauflerc6739442013-05-22 18:42:56 -07002118 if (sock->sk->sk_family == PF_INET6)
2119 smk_ipv6_port_label(sock, NULL);
2120
Casey Schauflere114e472008-02-04 22:29:50 -08002121 return 0;
2122}
2123
2124/**
2125 * smack_socket_post_create - finish socket setup
2126 * @sock: the socket
2127 * @family: protocol family
2128 * @type: unused
2129 * @protocol: unused
2130 * @kern: unused
2131 *
2132 * Sets the netlabel information on the socket
2133 *
2134 * Returns 0 on success, and error code otherwise
2135 */
2136static int smack_socket_post_create(struct socket *sock, int family,
2137 int type, int protocol, int kern)
2138{
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08002139 if (family != PF_INET || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002140 return 0;
2141 /*
2142 * Set the outbound netlbl.
2143 */
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002144 return smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2145}
2146
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002147/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002148 * smack_socket_bind - record port binding information.
2149 * @sock: the socket
2150 * @address: the port address
2151 * @addrlen: size of the address
2152 *
2153 * Records the label bound to a port.
2154 *
2155 * Returns 0
2156 */
2157static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2158 int addrlen)
2159{
2160 if (sock->sk != NULL && sock->sk->sk_family == PF_INET6)
2161 smk_ipv6_port_label(sock, address);
2162
2163 return 0;
2164}
2165
2166/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002167 * smack_socket_connect - connect access check
2168 * @sock: the socket
2169 * @sap: the other end
2170 * @addrlen: size of sap
2171 *
2172 * Verifies that a connection may be possible
2173 *
2174 * Returns 0 on success, and error code otherwise
2175 */
2176static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2177 int addrlen)
2178{
Casey Schauflerc6739442013-05-22 18:42:56 -07002179 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002180
Casey Schauflerc6739442013-05-22 18:42:56 -07002181 if (sock->sk == NULL)
2182 return 0;
2183
2184 switch (sock->sk->sk_family) {
2185 case PF_INET:
2186 if (addrlen < sizeof(struct sockaddr_in))
2187 return -EINVAL;
2188 rc = smack_netlabel_send(sock->sk, (struct sockaddr_in *)sap);
2189 break;
2190 case PF_INET6:
2191 if (addrlen < sizeof(struct sockaddr_in6))
2192 return -EINVAL;
Casey Schaufler6ea06242013-08-05 13:21:22 -07002193 rc = smk_ipv6_port_check(sock->sk, (struct sockaddr_in6 *)sap,
2194 SMK_CONNECTING);
Casey Schauflerc6739442013-05-22 18:42:56 -07002195 break;
2196 }
2197 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002198}
2199
2200/**
2201 * smack_flags_to_may - convert S_ to MAY_ values
2202 * @flags: the S_ value
2203 *
2204 * Returns the equivalent MAY_ value
2205 */
2206static int smack_flags_to_may(int flags)
2207{
2208 int may = 0;
2209
2210 if (flags & S_IRUGO)
2211 may |= MAY_READ;
2212 if (flags & S_IWUGO)
2213 may |= MAY_WRITE;
2214 if (flags & S_IXUGO)
2215 may |= MAY_EXEC;
2216
2217 return may;
2218}
2219
2220/**
2221 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2222 * @msg: the object
2223 *
2224 * Returns 0
2225 */
2226static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2227{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002228 struct smack_known *skp = smk_of_current();
2229
2230 msg->security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002231 return 0;
2232}
2233
2234/**
2235 * smack_msg_msg_free_security - Clear the security blob for msg_msg
2236 * @msg: the object
2237 *
2238 * Clears the blob pointer
2239 */
2240static void smack_msg_msg_free_security(struct msg_msg *msg)
2241{
2242 msg->security = NULL;
2243}
2244
2245/**
2246 * smack_of_shm - the smack pointer for the shm
2247 * @shp: the object
2248 *
2249 * Returns a pointer to the smack value
2250 */
2251static char *smack_of_shm(struct shmid_kernel *shp)
2252{
2253 return (char *)shp->shm_perm.security;
2254}
2255
2256/**
2257 * smack_shm_alloc_security - Set the security blob for shm
2258 * @shp: the object
2259 *
2260 * Returns 0
2261 */
2262static int smack_shm_alloc_security(struct shmid_kernel *shp)
2263{
2264 struct kern_ipc_perm *isp = &shp->shm_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002265 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002266
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002267 isp->security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002268 return 0;
2269}
2270
2271/**
2272 * smack_shm_free_security - Clear the security blob for shm
2273 * @shp: the object
2274 *
2275 * Clears the blob pointer
2276 */
2277static void smack_shm_free_security(struct shmid_kernel *shp)
2278{
2279 struct kern_ipc_perm *isp = &shp->shm_perm;
2280
2281 isp->security = NULL;
2282}
2283
2284/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002285 * smk_curacc_shm : check if current has access on shm
2286 * @shp : the object
2287 * @access : access requested
2288 *
2289 * Returns 0 if current has the requested access, error code otherwise
2290 */
2291static int smk_curacc_shm(struct shmid_kernel *shp, int access)
2292{
2293 char *ssp = smack_of_shm(shp);
2294 struct smk_audit_info ad;
2295
2296#ifdef CONFIG_AUDIT
2297 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2298 ad.a.u.ipc_id = shp->shm_perm.id;
2299#endif
2300 return smk_curacc(ssp, access, &ad);
2301}
2302
2303/**
Casey Schauflere114e472008-02-04 22:29:50 -08002304 * smack_shm_associate - Smack access check for shm
2305 * @shp: the object
2306 * @shmflg: access requested
2307 *
2308 * Returns 0 if current has the requested access, error code otherwise
2309 */
2310static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
2311{
Casey Schauflere114e472008-02-04 22:29:50 -08002312 int may;
2313
2314 may = smack_flags_to_may(shmflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002315 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002316}
2317
2318/**
2319 * smack_shm_shmctl - Smack access check for shm
2320 * @shp: the object
2321 * @cmd: what it wants to do
2322 *
2323 * Returns 0 if current has the requested access, error code otherwise
2324 */
2325static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
2326{
Casey Schauflere114e472008-02-04 22:29:50 -08002327 int may;
2328
2329 switch (cmd) {
2330 case IPC_STAT:
2331 case SHM_STAT:
2332 may = MAY_READ;
2333 break;
2334 case IPC_SET:
2335 case SHM_LOCK:
2336 case SHM_UNLOCK:
2337 case IPC_RMID:
2338 may = MAY_READWRITE;
2339 break;
2340 case IPC_INFO:
2341 case SHM_INFO:
2342 /*
2343 * System level information.
2344 */
2345 return 0;
2346 default:
2347 return -EINVAL;
2348 }
Etienne Bassetecfcc532009-04-08 20:40:06 +02002349 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002350}
2351
2352/**
2353 * smack_shm_shmat - Smack access for shmat
2354 * @shp: the object
2355 * @shmaddr: unused
2356 * @shmflg: access requested
2357 *
2358 * Returns 0 if current has the requested access, error code otherwise
2359 */
2360static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
2361 int shmflg)
2362{
Casey Schauflere114e472008-02-04 22:29:50 -08002363 int may;
2364
2365 may = smack_flags_to_may(shmflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002366 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002367}
2368
2369/**
2370 * smack_of_sem - the smack pointer for the sem
2371 * @sma: the object
2372 *
2373 * Returns a pointer to the smack value
2374 */
2375static char *smack_of_sem(struct sem_array *sma)
2376{
2377 return (char *)sma->sem_perm.security;
2378}
2379
2380/**
2381 * smack_sem_alloc_security - Set the security blob for sem
2382 * @sma: the object
2383 *
2384 * Returns 0
2385 */
2386static int smack_sem_alloc_security(struct sem_array *sma)
2387{
2388 struct kern_ipc_perm *isp = &sma->sem_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002389 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002390
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002391 isp->security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002392 return 0;
2393}
2394
2395/**
2396 * smack_sem_free_security - Clear the security blob for sem
2397 * @sma: the object
2398 *
2399 * Clears the blob pointer
2400 */
2401static void smack_sem_free_security(struct sem_array *sma)
2402{
2403 struct kern_ipc_perm *isp = &sma->sem_perm;
2404
2405 isp->security = NULL;
2406}
2407
2408/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002409 * smk_curacc_sem : check if current has access on sem
2410 * @sma : the object
2411 * @access : access requested
2412 *
2413 * Returns 0 if current has the requested access, error code otherwise
2414 */
2415static int smk_curacc_sem(struct sem_array *sma, int access)
2416{
2417 char *ssp = smack_of_sem(sma);
2418 struct smk_audit_info ad;
2419
2420#ifdef CONFIG_AUDIT
2421 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2422 ad.a.u.ipc_id = sma->sem_perm.id;
2423#endif
2424 return smk_curacc(ssp, access, &ad);
2425}
2426
2427/**
Casey Schauflere114e472008-02-04 22:29:50 -08002428 * smack_sem_associate - Smack access check for sem
2429 * @sma: the object
2430 * @semflg: access requested
2431 *
2432 * Returns 0 if current has the requested access, error code otherwise
2433 */
2434static int smack_sem_associate(struct sem_array *sma, int semflg)
2435{
Casey Schauflere114e472008-02-04 22:29:50 -08002436 int may;
2437
2438 may = smack_flags_to_may(semflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002439 return smk_curacc_sem(sma, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002440}
2441
2442/**
2443 * smack_sem_shmctl - Smack access check for sem
2444 * @sma: the object
2445 * @cmd: what it wants to do
2446 *
2447 * Returns 0 if current has the requested access, error code otherwise
2448 */
2449static int smack_sem_semctl(struct sem_array *sma, int cmd)
2450{
Casey Schauflere114e472008-02-04 22:29:50 -08002451 int may;
2452
2453 switch (cmd) {
2454 case GETPID:
2455 case GETNCNT:
2456 case GETZCNT:
2457 case GETVAL:
2458 case GETALL:
2459 case IPC_STAT:
2460 case SEM_STAT:
2461 may = MAY_READ;
2462 break;
2463 case SETVAL:
2464 case SETALL:
2465 case IPC_RMID:
2466 case IPC_SET:
2467 may = MAY_READWRITE;
2468 break;
2469 case IPC_INFO:
2470 case SEM_INFO:
2471 /*
2472 * System level information
2473 */
2474 return 0;
2475 default:
2476 return -EINVAL;
2477 }
2478
Etienne Bassetecfcc532009-04-08 20:40:06 +02002479 return smk_curacc_sem(sma, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002480}
2481
2482/**
2483 * smack_sem_semop - Smack checks of semaphore operations
2484 * @sma: the object
2485 * @sops: unused
2486 * @nsops: unused
2487 * @alter: unused
2488 *
2489 * Treated as read and write in all cases.
2490 *
2491 * Returns 0 if access is allowed, error code otherwise
2492 */
2493static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
2494 unsigned nsops, int alter)
2495{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002496 return smk_curacc_sem(sma, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08002497}
2498
2499/**
2500 * smack_msg_alloc_security - Set the security blob for msg
2501 * @msq: the object
2502 *
2503 * Returns 0
2504 */
2505static int smack_msg_queue_alloc_security(struct msg_queue *msq)
2506{
2507 struct kern_ipc_perm *kisp = &msq->q_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002508 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002509
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002510 kisp->security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002511 return 0;
2512}
2513
2514/**
2515 * smack_msg_free_security - Clear the security blob for msg
2516 * @msq: the object
2517 *
2518 * Clears the blob pointer
2519 */
2520static void smack_msg_queue_free_security(struct msg_queue *msq)
2521{
2522 struct kern_ipc_perm *kisp = &msq->q_perm;
2523
2524 kisp->security = NULL;
2525}
2526
2527/**
2528 * smack_of_msq - the smack pointer for the msq
2529 * @msq: the object
2530 *
2531 * Returns a pointer to the smack value
2532 */
2533static char *smack_of_msq(struct msg_queue *msq)
2534{
2535 return (char *)msq->q_perm.security;
2536}
2537
2538/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002539 * smk_curacc_msq : helper to check if current has access on msq
2540 * @msq : the msq
2541 * @access : access requested
2542 *
2543 * return 0 if current has access, error otherwise
2544 */
2545static int smk_curacc_msq(struct msg_queue *msq, int access)
2546{
2547 char *msp = smack_of_msq(msq);
2548 struct smk_audit_info ad;
2549
2550#ifdef CONFIG_AUDIT
2551 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2552 ad.a.u.ipc_id = msq->q_perm.id;
2553#endif
2554 return smk_curacc(msp, access, &ad);
2555}
2556
2557/**
Casey Schauflere114e472008-02-04 22:29:50 -08002558 * smack_msg_queue_associate - Smack access check for msg_queue
2559 * @msq: the object
2560 * @msqflg: access requested
2561 *
2562 * Returns 0 if current has the requested access, error code otherwise
2563 */
2564static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
2565{
Casey Schauflere114e472008-02-04 22:29:50 -08002566 int may;
2567
2568 may = smack_flags_to_may(msqflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002569 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002570}
2571
2572/**
2573 * smack_msg_queue_msgctl - Smack access check for msg_queue
2574 * @msq: the object
2575 * @cmd: what it wants to do
2576 *
2577 * Returns 0 if current has the requested access, error code otherwise
2578 */
2579static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
2580{
Casey Schauflere114e472008-02-04 22:29:50 -08002581 int may;
2582
2583 switch (cmd) {
2584 case IPC_STAT:
2585 case MSG_STAT:
2586 may = MAY_READ;
2587 break;
2588 case IPC_SET:
2589 case IPC_RMID:
2590 may = MAY_READWRITE;
2591 break;
2592 case IPC_INFO:
2593 case MSG_INFO:
2594 /*
2595 * System level information
2596 */
2597 return 0;
2598 default:
2599 return -EINVAL;
2600 }
2601
Etienne Bassetecfcc532009-04-08 20:40:06 +02002602 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002603}
2604
2605/**
2606 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2607 * @msq: the object
2608 * @msg: unused
2609 * @msqflg: access requested
2610 *
2611 * Returns 0 if current has the requested access, error code otherwise
2612 */
2613static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
2614 int msqflg)
2615{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002616 int may;
Casey Schauflere114e472008-02-04 22:29:50 -08002617
Etienne Bassetecfcc532009-04-08 20:40:06 +02002618 may = smack_flags_to_may(msqflg);
2619 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002620}
2621
2622/**
2623 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2624 * @msq: the object
2625 * @msg: unused
2626 * @target: unused
2627 * @type: unused
2628 * @mode: unused
2629 *
2630 * Returns 0 if current has read and write access, error code otherwise
2631 */
2632static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
2633 struct task_struct *target, long type, int mode)
2634{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002635 return smk_curacc_msq(msq, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08002636}
2637
2638/**
2639 * smack_ipc_permission - Smack access for ipc_permission()
2640 * @ipp: the object permissions
2641 * @flag: access requested
2642 *
2643 * Returns 0 if current has read and write access, error code otherwise
2644 */
2645static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
2646{
2647 char *isp = ipp->security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002648 int may = smack_flags_to_may(flag);
2649 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08002650
Etienne Bassetecfcc532009-04-08 20:40:06 +02002651#ifdef CONFIG_AUDIT
2652 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2653 ad.a.u.ipc_id = ipp->id;
2654#endif
2655 return smk_curacc(isp, may, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08002656}
2657
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10002658/**
2659 * smack_ipc_getsecid - Extract smack security id
Randy Dunlap251a2a92009-02-18 11:42:33 -08002660 * @ipp: the object permissions
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10002661 * @secid: where result will be saved
2662 */
2663static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
2664{
2665 char *smack = ipp->security;
2666
2667 *secid = smack_to_secid(smack);
2668}
2669
Casey Schauflere114e472008-02-04 22:29:50 -08002670/**
2671 * smack_d_instantiate - Make sure the blob is correct on an inode
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02002672 * @opt_dentry: dentry where inode will be attached
Casey Schauflere114e472008-02-04 22:29:50 -08002673 * @inode: the object
2674 *
2675 * Set the inode's security blob if it hasn't been done already.
2676 */
2677static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
2678{
2679 struct super_block *sbp;
2680 struct superblock_smack *sbsp;
2681 struct inode_smack *isp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002682 struct smack_known *skp;
2683 struct smack_known *ckp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002684 char *final;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02002685 char trattr[TRANS_TRUE_SIZE];
2686 int transflag = 0;
Casey Schaufler2267b132012-03-13 19:14:19 -07002687 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002688 struct dentry *dp;
2689
2690 if (inode == NULL)
2691 return;
2692
2693 isp = inode->i_security;
2694
2695 mutex_lock(&isp->smk_lock);
2696 /*
2697 * If the inode is already instantiated
2698 * take the quick way out
2699 */
2700 if (isp->smk_flags & SMK_INODE_INSTANT)
2701 goto unlockandout;
2702
2703 sbp = inode->i_sb;
2704 sbsp = sbp->s_security;
2705 /*
2706 * We're going to use the superblock default label
2707 * if there's no label on the file.
2708 */
2709 final = sbsp->smk_default;
2710
2711 /*
Casey Schauflere97dcb02008-06-02 10:04:32 -07002712 * If this is the root inode the superblock
2713 * may be in the process of initialization.
2714 * If that is the case use the root value out
2715 * of the superblock.
2716 */
2717 if (opt_dentry->d_parent == opt_dentry) {
2718 isp->smk_inode = sbsp->smk_root;
2719 isp->smk_flags |= SMK_INODE_INSTANT;
2720 goto unlockandout;
2721 }
2722
2723 /*
Casey Schauflere114e472008-02-04 22:29:50 -08002724 * This is pretty hackish.
2725 * Casey says that we shouldn't have to do
2726 * file system specific code, but it does help
2727 * with keeping it simple.
2728 */
2729 switch (sbp->s_magic) {
2730 case SMACK_MAGIC:
2731 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002732 * Casey says that it's a little embarrassing
Casey Schauflere114e472008-02-04 22:29:50 -08002733 * that the smack file system doesn't do
2734 * extended attributes.
2735 */
2736 final = smack_known_star.smk_known;
2737 break;
2738 case PIPEFS_MAGIC:
2739 /*
2740 * Casey says pipes are easy (?)
2741 */
2742 final = smack_known_star.smk_known;
2743 break;
2744 case DEVPTS_SUPER_MAGIC:
2745 /*
2746 * devpts seems content with the label of the task.
2747 * Programs that change smack have to treat the
2748 * pty with respect.
2749 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002750 final = ckp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002751 break;
2752 case SOCKFS_MAGIC:
2753 /*
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002754 * Socket access is controlled by the socket
2755 * structures associated with the task involved.
Casey Schauflere114e472008-02-04 22:29:50 -08002756 */
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002757 final = smack_known_star.smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002758 break;
2759 case PROC_SUPER_MAGIC:
2760 /*
2761 * Casey says procfs appears not to care.
2762 * The superblock default suffices.
2763 */
2764 break;
2765 case TMPFS_MAGIC:
2766 /*
2767 * Device labels should come from the filesystem,
2768 * but watch out, because they're volitile,
2769 * getting recreated on every reboot.
2770 */
2771 final = smack_known_star.smk_known;
2772 /*
2773 * No break.
2774 *
2775 * If a smack value has been set we want to use it,
2776 * but since tmpfs isn't giving us the opportunity
2777 * to set mount options simulate setting the
2778 * superblock default.
2779 */
2780 default:
2781 /*
2782 * This isn't an understood special case.
2783 * Get the value from the xattr.
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002784 */
2785
2786 /*
2787 * UNIX domain sockets use lower level socket data.
2788 */
2789 if (S_ISSOCK(inode->i_mode)) {
2790 final = smack_known_star.smk_known;
2791 break;
2792 }
2793 /*
Casey Schauflere114e472008-02-04 22:29:50 -08002794 * No xattr support means, alas, no SMACK label.
2795 * Use the aforeapplied default.
2796 * It would be curious if the label of the task
2797 * does not match that assigned.
2798 */
2799 if (inode->i_op->getxattr == NULL)
2800 break;
2801 /*
2802 * Get the dentry for xattr.
2803 */
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02002804 dp = dget(opt_dentry);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002805 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
2806 if (skp != NULL)
2807 final = skp->smk_known;
Casey Schaufler2267b132012-03-13 19:14:19 -07002808
2809 /*
2810 * Transmuting directory
2811 */
2812 if (S_ISDIR(inode->i_mode)) {
2813 /*
2814 * If this is a new directory and the label was
2815 * transmuted when the inode was initialized
2816 * set the transmute attribute on the directory
2817 * and mark the inode.
2818 *
2819 * If there is a transmute attribute on the
2820 * directory mark the inode.
2821 */
2822 if (isp->smk_flags & SMK_INODE_CHANGED) {
2823 isp->smk_flags &= ~SMK_INODE_CHANGED;
2824 rc = inode->i_op->setxattr(dp,
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02002825 XATTR_NAME_SMACKTRANSMUTE,
Casey Schaufler2267b132012-03-13 19:14:19 -07002826 TRANS_TRUE, TRANS_TRUE_SIZE,
2827 0);
2828 } else {
2829 rc = inode->i_op->getxattr(dp,
2830 XATTR_NAME_SMACKTRANSMUTE, trattr,
2831 TRANS_TRUE_SIZE);
2832 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
2833 TRANS_TRUE_SIZE) != 0)
2834 rc = -EINVAL;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02002835 }
Casey Schaufler2267b132012-03-13 19:14:19 -07002836 if (rc >= 0)
2837 transflag = SMK_INODE_TRANSMUTE;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02002838 }
Casey Schaufler19760ad2013-12-16 16:27:26 -08002839 /*
2840 * Don't let the exec or mmap label be "*" or "@".
2841 */
2842 skp = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
2843 if (skp == &smack_known_star || skp == &smack_known_web)
2844 skp = NULL;
2845 isp->smk_task = skp;
2846 skp = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
2847 if (skp == &smack_known_star || skp == &smack_known_web)
2848 skp = NULL;
2849 isp->smk_mmap = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08002850
Casey Schauflere114e472008-02-04 22:29:50 -08002851 dput(dp);
2852 break;
2853 }
2854
2855 if (final == NULL)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002856 isp->smk_inode = ckp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08002857 else
2858 isp->smk_inode = final;
2859
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02002860 isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
Casey Schauflere114e472008-02-04 22:29:50 -08002861
2862unlockandout:
2863 mutex_unlock(&isp->smk_lock);
2864 return;
2865}
2866
2867/**
2868 * smack_getprocattr - Smack process attribute access
2869 * @p: the object task
2870 * @name: the name of the attribute in /proc/.../attr
2871 * @value: where to put the result
2872 *
2873 * Places a copy of the task Smack into value
2874 *
2875 * Returns the length of the smack label or an error code
2876 */
2877static int smack_getprocattr(struct task_struct *p, char *name, char **value)
2878{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002879 struct smack_known *skp = smk_of_task(task_security(p));
Casey Schauflere114e472008-02-04 22:29:50 -08002880 char *cp;
2881 int slen;
2882
2883 if (strcmp(name, "current") != 0)
2884 return -EINVAL;
2885
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002886 cp = kstrdup(skp->smk_known, GFP_KERNEL);
Casey Schauflere114e472008-02-04 22:29:50 -08002887 if (cp == NULL)
2888 return -ENOMEM;
2889
2890 slen = strlen(cp);
2891 *value = cp;
2892 return slen;
2893}
2894
2895/**
2896 * smack_setprocattr - Smack process attribute setting
2897 * @p: the object task
2898 * @name: the name of the attribute in /proc/.../attr
2899 * @value: the value to set
2900 * @size: the size of the value
2901 *
2902 * Sets the Smack value of the task. Only setting self
2903 * is permitted and only with privilege
2904 *
2905 * Returns the length of the smack label or an error code
2906 */
2907static int smack_setprocattr(struct task_struct *p, char *name,
2908 void *value, size_t size)
2909{
Casey Schaufler676dac42010-12-02 06:43:39 -08002910 struct task_smack *tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11002911 struct cred *new;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002912 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002913
Casey Schauflere114e472008-02-04 22:29:50 -08002914 /*
2915 * Changing another process' Smack value is too dangerous
2916 * and supports no sane use case.
2917 */
2918 if (p != current)
2919 return -EPERM;
2920
Casey Schaufler1880eff2012-06-05 15:28:30 -07002921 if (!smack_privileged(CAP_MAC_ADMIN))
David Howells5cd9c582008-08-14 11:37:28 +01002922 return -EPERM;
2923
Casey Schauflerf7112e62012-05-06 15:22:02 -07002924 if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
Casey Schauflere114e472008-02-04 22:29:50 -08002925 return -EINVAL;
2926
2927 if (strcmp(name, "current") != 0)
2928 return -EINVAL;
2929
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002930 skp = smk_import_entry(value, size);
2931 if (skp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002932 return -EINVAL;
2933
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002934 /*
2935 * No process is ever allowed the web ("@") label.
2936 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002937 if (skp == &smack_known_web)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002938 return -EPERM;
2939
David Howellsd84f4f92008-11-14 10:39:23 +11002940 new = prepare_creds();
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002941 if (new == NULL)
David Howellsd84f4f92008-11-14 10:39:23 +11002942 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002943
Casey Schaufler46a2f3b2012-08-22 11:44:03 -07002944 tsp = new->security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002945 tsp->smk_task = skp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002946
David Howellsd84f4f92008-11-14 10:39:23 +11002947 commit_creds(new);
Casey Schauflere114e472008-02-04 22:29:50 -08002948 return size;
2949}
2950
2951/**
2952 * smack_unix_stream_connect - Smack access on UDS
David S. Miller3610cda2011-01-05 15:38:53 -08002953 * @sock: one sock
2954 * @other: the other sock
Casey Schauflere114e472008-02-04 22:29:50 -08002955 * @newsk: unused
2956 *
2957 * Return 0 if a subject with the smack of sock could access
2958 * an object with the smack of other, otherwise an error code
2959 */
David S. Miller3610cda2011-01-05 15:38:53 -08002960static int smack_unix_stream_connect(struct sock *sock,
2961 struct sock *other, struct sock *newsk)
Casey Schauflere114e472008-02-04 22:29:50 -08002962{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002963 struct smack_known *skp;
James Morrisd2e7ad12011-01-10 09:46:24 +11002964 struct socket_smack *ssp = sock->sk_security;
2965 struct socket_smack *osp = other->sk_security;
Casey Schaufler975d5e52011-09-26 14:43:39 -07002966 struct socket_smack *nsp = newsk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002967 struct smk_audit_info ad;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002968 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002969
Kees Cook923e9a12012-04-10 13:26:44 -07002970#ifdef CONFIG_AUDIT
2971 struct lsm_network_audit net;
2972
Eric Paris48c62af2012-04-02 13:15:44 -04002973 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
David S. Miller3610cda2011-01-05 15:38:53 -08002974 smk_ad_setfield_u_net_sk(&ad, other);
Kees Cook923e9a12012-04-10 13:26:44 -07002975#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002976
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002977 if (!smack_privileged(CAP_MAC_OVERRIDE)) {
2978 skp = ssp->smk_out;
2979 rc = smk_access(skp, osp->smk_in, MAY_WRITE, &ad);
2980 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002981
Casey Schaufler975d5e52011-09-26 14:43:39 -07002982 /*
2983 * Cross reference the peer labels for SO_PEERSEC.
2984 */
2985 if (rc == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002986 nsp->smk_packet = ssp->smk_out->smk_known;
2987 ssp->smk_packet = osp->smk_out->smk_known;
Casey Schaufler975d5e52011-09-26 14:43:39 -07002988 }
2989
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002990 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002991}
2992
2993/**
2994 * smack_unix_may_send - Smack access on UDS
2995 * @sock: one socket
2996 * @other: the other socket
2997 *
2998 * Return 0 if a subject with the smack of sock could access
2999 * an object with the smack of other, otherwise an error code
3000 */
3001static int smack_unix_may_send(struct socket *sock, struct socket *other)
3002{
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003003 struct socket_smack *ssp = sock->sk->sk_security;
3004 struct socket_smack *osp = other->sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003005 struct smack_known *skp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003006 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08003007
Kees Cook923e9a12012-04-10 13:26:44 -07003008#ifdef CONFIG_AUDIT
3009 struct lsm_network_audit net;
3010
Eric Paris48c62af2012-04-02 13:15:44 -04003011 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003012 smk_ad_setfield_u_net_sk(&ad, other->sk);
Kees Cook923e9a12012-04-10 13:26:44 -07003013#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003014
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003015 if (smack_privileged(CAP_MAC_OVERRIDE))
3016 return 0;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003017
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003018 skp = ssp->smk_out;
3019 return smk_access(skp, osp->smk_in, MAY_WRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08003020}
3021
3022/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003023 * smack_socket_sendmsg - Smack check based on destination host
3024 * @sock: the socket
Randy Dunlap251a2a92009-02-18 11:42:33 -08003025 * @msg: the message
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003026 * @size: the size of the message
3027 *
Casey Schauflerc6739442013-05-22 18:42:56 -07003028 * Return 0 if the current subject can write to the destination host.
3029 * For IPv4 this is only a question if the destination is a single label host.
3030 * For IPv6 this is a check against the label of the port.
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003031 */
3032static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3033 int size)
3034{
3035 struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
Casey Schaufler6ea06242013-08-05 13:21:22 -07003036 struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
Casey Schauflerc6739442013-05-22 18:42:56 -07003037 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003038
3039 /*
3040 * Perfectly reasonable for this to be NULL
3041 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003042 if (sip == NULL)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003043 return 0;
3044
Casey Schauflerc6739442013-05-22 18:42:56 -07003045 switch (sip->sin_family) {
3046 case AF_INET:
3047 rc = smack_netlabel_send(sock->sk, sip);
3048 break;
3049 case AF_INET6:
3050 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
3051 break;
3052 }
3053 return rc;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003054}
3055
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003056/**
Randy Dunlap251a2a92009-02-18 11:42:33 -08003057 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
Casey Schauflere114e472008-02-04 22:29:50 -08003058 * @sap: netlabel secattr
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003059 * @ssp: socket security information
Casey Schauflere114e472008-02-04 22:29:50 -08003060 *
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003061 * Returns a pointer to a Smack label entry found on the label list.
Casey Schauflere114e472008-02-04 22:29:50 -08003062 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003063static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3064 struct socket_smack *ssp)
Casey Schauflere114e472008-02-04 22:29:50 -08003065{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003066 struct smack_known *skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003067 int found = 0;
Casey Schaufler677264e2013-06-28 13:47:07 -07003068 int acat;
3069 int kcat;
Casey Schauflere114e472008-02-04 22:29:50 -08003070
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003071 if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08003072 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003073 * Looks like a CIPSO packet.
Casey Schauflere114e472008-02-04 22:29:50 -08003074 * If there are flags but no level netlabel isn't
3075 * behaving the way we expect it to.
3076 *
Casey Schauflerf7112e62012-05-06 15:22:02 -07003077 * Look it up in the label table
Casey Schauflere114e472008-02-04 22:29:50 -08003078 * Without guidance regarding the smack value
3079 * for the packet fall back on the network
3080 * ambient value.
3081 */
Casey Schauflerf7112e62012-05-06 15:22:02 -07003082 rcu_read_lock();
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003083 list_for_each_entry(skp, &smack_known_list, list) {
3084 if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
Casey Schauflerf7112e62012-05-06 15:22:02 -07003085 continue;
Casey Schaufler677264e2013-06-28 13:47:07 -07003086 /*
3087 * Compare the catsets. Use the netlbl APIs.
3088 */
3089 if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3090 if ((skp->smk_netlabel.flags &
3091 NETLBL_SECATTR_MLS_CAT) == 0)
3092 found = 1;
3093 break;
3094 }
3095 for (acat = -1, kcat = -1; acat == kcat; ) {
3096 acat = netlbl_secattr_catmap_walk(
3097 sap->attr.mls.cat, acat + 1);
3098 kcat = netlbl_secattr_catmap_walk(
3099 skp->smk_netlabel.attr.mls.cat,
3100 kcat + 1);
3101 if (acat < 0 || kcat < 0)
3102 break;
3103 }
3104 if (acat == kcat) {
3105 found = 1;
3106 break;
3107 }
Casey Schauflere114e472008-02-04 22:29:50 -08003108 }
Casey Schauflerf7112e62012-05-06 15:22:02 -07003109 rcu_read_unlock();
3110
3111 if (found)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003112 return skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003113
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003114 if (ssp != NULL && ssp->smk_in == smack_known_star.smk_known)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003115 return &smack_known_web;
3116 return &smack_known_star;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003117 }
3118 if ((sap->flags & NETLBL_SECATTR_SECID) != 0) {
3119 /*
3120 * Looks like a fallback, which gives us a secid.
3121 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003122 skp = smack_from_secid(sap->attr.secid);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003123 /*
3124 * This has got to be a bug because it is
3125 * impossible to specify a fallback without
3126 * specifying the label, which will ensure
3127 * it has a secid, and the only way to get a
3128 * secid is from a fallback.
3129 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003130 BUG_ON(skp == NULL);
3131 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003132 }
3133 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003134 * Without guidance regarding the smack value
3135 * for the packet fall back on the network
3136 * ambient value.
Casey Schauflere114e472008-02-04 22:29:50 -08003137 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003138 return smack_net_ambient;
Casey Schauflere114e472008-02-04 22:29:50 -08003139}
3140
Casey Schaufler6ea06242013-08-05 13:21:22 -07003141static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
Casey Schauflerc6739442013-05-22 18:42:56 -07003142{
Casey Schauflerc6739442013-05-22 18:42:56 -07003143 u8 nexthdr;
3144 int offset;
3145 int proto = -EINVAL;
3146 struct ipv6hdr _ipv6h;
3147 struct ipv6hdr *ip6;
3148 __be16 frag_off;
3149 struct tcphdr _tcph, *th;
3150 struct udphdr _udph, *uh;
3151 struct dccp_hdr _dccph, *dh;
3152
3153 sip->sin6_port = 0;
3154
3155 offset = skb_network_offset(skb);
3156 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3157 if (ip6 == NULL)
3158 return -EINVAL;
3159 sip->sin6_addr = ip6->saddr;
3160
3161 nexthdr = ip6->nexthdr;
3162 offset += sizeof(_ipv6h);
3163 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3164 if (offset < 0)
3165 return -EINVAL;
3166
3167 proto = nexthdr;
3168 switch (proto) {
3169 case IPPROTO_TCP:
3170 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3171 if (th != NULL)
3172 sip->sin6_port = th->source;
3173 break;
3174 case IPPROTO_UDP:
3175 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3176 if (uh != NULL)
3177 sip->sin6_port = uh->source;
3178 break;
3179 case IPPROTO_DCCP:
3180 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3181 if (dh != NULL)
3182 sip->sin6_port = dh->dccph_sport;
3183 break;
3184 }
3185 return proto;
3186}
3187
Casey Schauflere114e472008-02-04 22:29:50 -08003188/**
3189 * smack_socket_sock_rcv_skb - Smack packet delivery access check
3190 * @sk: socket
3191 * @skb: packet
3192 *
3193 * Returns 0 if the packet should be delivered, an error code otherwise
3194 */
3195static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3196{
3197 struct netlbl_lsm_secattr secattr;
3198 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003199 struct smack_known *skp;
Casey Schaufler6ea06242013-08-05 13:21:22 -07003200 struct sockaddr_in6 sadd;
Casey Schauflerc6739442013-05-22 18:42:56 -07003201 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003202 struct smk_audit_info ad;
Kees Cook923e9a12012-04-10 13:26:44 -07003203#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003204 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003205#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003206 switch (sk->sk_family) {
3207 case PF_INET:
3208 /*
3209 * Translate what netlabel gave us.
3210 */
3211 netlbl_secattr_init(&secattr);
Casey Schauflere114e472008-02-04 22:29:50 -08003212
Casey Schauflerc6739442013-05-22 18:42:56 -07003213 rc = netlbl_skbuff_getattr(skb, sk->sk_family, &secattr);
3214 if (rc == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003215 skp = smack_from_secattr(&secattr, ssp);
Casey Schauflerc6739442013-05-22 18:42:56 -07003216 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003217 skp = smack_net_ambient;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003218
Casey Schauflerc6739442013-05-22 18:42:56 -07003219 netlbl_secattr_destroy(&secattr);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003220
Etienne Bassetecfcc532009-04-08 20:40:06 +02003221#ifdef CONFIG_AUDIT
Casey Schauflerc6739442013-05-22 18:42:56 -07003222 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3223 ad.a.u.net->family = sk->sk_family;
3224 ad.a.u.net->netif = skb->skb_iif;
3225 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003226#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003227 /*
3228 * Receiving a packet requires that the other end
3229 * be able to write here. Read access is not required.
3230 * This is the simplist possible security model
3231 * for networking.
3232 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003233 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
Casey Schauflerc6739442013-05-22 18:42:56 -07003234 if (rc != 0)
3235 netlbl_skbuff_err(skb, rc, 0);
3236 break;
3237 case PF_INET6:
3238 rc = smk_skb_to_addr_ipv6(skb, &sadd);
3239 if (rc == IPPROTO_UDP || rc == IPPROTO_TCP)
3240 rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
3241 else
3242 rc = 0;
3243 break;
3244 }
Paul Moorea8134292008-10-10 10:16:31 -04003245 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003246}
3247
3248/**
3249 * smack_socket_getpeersec_stream - pull in packet label
3250 * @sock: the socket
3251 * @optval: user's destination
3252 * @optlen: size thereof
Randy Dunlap251a2a92009-02-18 11:42:33 -08003253 * @len: max thereof
Casey Schauflere114e472008-02-04 22:29:50 -08003254 *
3255 * returns zero on success, an error code otherwise
3256 */
3257static int smack_socket_getpeersec_stream(struct socket *sock,
3258 char __user *optval,
3259 int __user *optlen, unsigned len)
3260{
3261 struct socket_smack *ssp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003262 char *rcp = "";
3263 int slen = 1;
Casey Schauflere114e472008-02-04 22:29:50 -08003264 int rc = 0;
3265
3266 ssp = sock->sk->sk_security;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003267 if (ssp->smk_packet != NULL) {
3268 rcp = ssp->smk_packet;
3269 slen = strlen(rcp) + 1;
3270 }
Casey Schauflere114e472008-02-04 22:29:50 -08003271
3272 if (slen > len)
3273 rc = -ERANGE;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003274 else if (copy_to_user(optval, rcp, slen) != 0)
Casey Schauflere114e472008-02-04 22:29:50 -08003275 rc = -EFAULT;
3276
3277 if (put_user(slen, optlen) != 0)
3278 rc = -EFAULT;
3279
3280 return rc;
3281}
3282
3283
3284/**
3285 * smack_socket_getpeersec_dgram - pull in packet label
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003286 * @sock: the peer socket
Casey Schauflere114e472008-02-04 22:29:50 -08003287 * @skb: packet data
3288 * @secid: pointer to where to put the secid of the packet
3289 *
3290 * Sets the netlabel socket state on sk from parent
3291 */
3292static int smack_socket_getpeersec_dgram(struct socket *sock,
3293 struct sk_buff *skb, u32 *secid)
3294
3295{
3296 struct netlbl_lsm_secattr secattr;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003297 struct socket_smack *ssp = NULL;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003298 struct smack_known *skp;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003299 int family = PF_UNSPEC;
3300 u32 s = 0; /* 0 is the invalid secid */
Casey Schauflere114e472008-02-04 22:29:50 -08003301 int rc;
3302
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003303 if (skb != NULL) {
3304 if (skb->protocol == htons(ETH_P_IP))
3305 family = PF_INET;
3306 else if (skb->protocol == htons(ETH_P_IPV6))
3307 family = PF_INET6;
Casey Schauflere114e472008-02-04 22:29:50 -08003308 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003309 if (family == PF_UNSPEC && sock != NULL)
3310 family = sock->sk->sk_family;
Casey Schauflere114e472008-02-04 22:29:50 -08003311
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003312 if (family == PF_UNIX) {
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003313 ssp = sock->sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003314 s = ssp->smk_out->smk_secid;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003315 } else if (family == PF_INET || family == PF_INET6) {
3316 /*
3317 * Translate what netlabel gave us.
3318 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003319 if (sock != NULL && sock->sk != NULL)
3320 ssp = sock->sk->sk_security;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003321 netlbl_secattr_init(&secattr);
3322 rc = netlbl_skbuff_getattr(skb, family, &secattr);
3323 if (rc == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003324 skp = smack_from_secattr(&secattr, ssp);
3325 s = skp->smk_secid;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003326 }
3327 netlbl_secattr_destroy(&secattr);
3328 }
3329 *secid = s;
Casey Schauflere114e472008-02-04 22:29:50 -08003330 if (s == 0)
3331 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08003332 return 0;
3333}
3334
3335/**
Paul Moore07feee82009-03-27 17:10:54 -04003336 * smack_sock_graft - Initialize a newly created socket with an existing sock
3337 * @sk: child sock
3338 * @parent: parent socket
Casey Schauflere114e472008-02-04 22:29:50 -08003339 *
Paul Moore07feee82009-03-27 17:10:54 -04003340 * Set the smk_{in,out} state of an existing sock based on the process that
3341 * is creating the new socket.
Casey Schauflere114e472008-02-04 22:29:50 -08003342 */
3343static void smack_sock_graft(struct sock *sk, struct socket *parent)
3344{
3345 struct socket_smack *ssp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003346 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08003347
Paul Moore07feee82009-03-27 17:10:54 -04003348 if (sk == NULL ||
3349 (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
Casey Schauflere114e472008-02-04 22:29:50 -08003350 return;
3351
3352 ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003353 ssp->smk_in = skp->smk_known;
3354 ssp->smk_out = skp;
Paul Moore07feee82009-03-27 17:10:54 -04003355 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
Casey Schauflere114e472008-02-04 22:29:50 -08003356}
3357
3358/**
3359 * smack_inet_conn_request - Smack access check on connect
3360 * @sk: socket involved
3361 * @skb: packet
3362 * @req: unused
3363 *
3364 * Returns 0 if a task with the packet label could write to
3365 * the socket, otherwise an error code
3366 */
3367static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
3368 struct request_sock *req)
3369{
Paul Moore07feee82009-03-27 17:10:54 -04003370 u16 family = sk->sk_family;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003371 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003372 struct socket_smack *ssp = sk->sk_security;
Paul Moore07feee82009-03-27 17:10:54 -04003373 struct netlbl_lsm_secattr secattr;
3374 struct sockaddr_in addr;
3375 struct iphdr *hdr;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003376 char *hsp;
Casey Schauflere114e472008-02-04 22:29:50 -08003377 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003378 struct smk_audit_info ad;
Kees Cook923e9a12012-04-10 13:26:44 -07003379#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003380 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003381#endif
Casey Schauflere114e472008-02-04 22:29:50 -08003382
Casey Schauflerc6739442013-05-22 18:42:56 -07003383 if (family == PF_INET6) {
3384 /*
3385 * Handle mapped IPv4 packets arriving
3386 * via IPv6 sockets. Don't set up netlabel
3387 * processing on IPv6.
3388 */
3389 if (skb->protocol == htons(ETH_P_IP))
3390 family = PF_INET;
3391 else
3392 return 0;
3393 }
Casey Schauflere114e472008-02-04 22:29:50 -08003394
Paul Moore07feee82009-03-27 17:10:54 -04003395 netlbl_secattr_init(&secattr);
3396 rc = netlbl_skbuff_getattr(skb, family, &secattr);
Casey Schauflere114e472008-02-04 22:29:50 -08003397 if (rc == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003398 skp = smack_from_secattr(&secattr, ssp);
Casey Schauflere114e472008-02-04 22:29:50 -08003399 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003400 skp = &smack_known_huh;
Paul Moore07feee82009-03-27 17:10:54 -04003401 netlbl_secattr_destroy(&secattr);
3402
Etienne Bassetecfcc532009-04-08 20:40:06 +02003403#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003404 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3405 ad.a.u.net->family = family;
3406 ad.a.u.net->netif = skb->skb_iif;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003407 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
3408#endif
Casey Schauflere114e472008-02-04 22:29:50 -08003409 /*
Paul Moore07feee82009-03-27 17:10:54 -04003410 * Receiving a packet requires that the other end be able to write
3411 * here. Read access is not required.
Casey Schauflere114e472008-02-04 22:29:50 -08003412 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003413 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
Paul Moore07feee82009-03-27 17:10:54 -04003414 if (rc != 0)
3415 return rc;
3416
3417 /*
3418 * Save the peer's label in the request_sock so we can later setup
3419 * smk_packet in the child socket so that SO_PEERCRED can report it.
3420 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003421 req->peer_secid = skp->smk_secid;
Paul Moore07feee82009-03-27 17:10:54 -04003422
3423 /*
3424 * We need to decide if we want to label the incoming connection here
3425 * if we do we only need to label the request_sock and the stack will
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003426 * propagate the wire-label to the sock when it is created.
Paul Moore07feee82009-03-27 17:10:54 -04003427 */
3428 hdr = ip_hdr(skb);
3429 addr.sin_addr.s_addr = hdr->saddr;
3430 rcu_read_lock();
Casey Schauflerf7112e62012-05-06 15:22:02 -07003431 hsp = smack_host_label(&addr);
3432 rcu_read_unlock();
3433
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003434 if (hsp == NULL)
Casey Schauflerf7112e62012-05-06 15:22:02 -07003435 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003436 else
Paul Moore07feee82009-03-27 17:10:54 -04003437 netlbl_req_delattr(req);
Casey Schauflere114e472008-02-04 22:29:50 -08003438
3439 return rc;
3440}
3441
Paul Moore07feee82009-03-27 17:10:54 -04003442/**
3443 * smack_inet_csk_clone - Copy the connection information to the new socket
3444 * @sk: the new socket
3445 * @req: the connection's request_sock
3446 *
3447 * Transfer the connection's peer label to the newly created socket.
3448 */
3449static void smack_inet_csk_clone(struct sock *sk,
3450 const struct request_sock *req)
3451{
3452 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003453 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04003454
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003455 if (req->peer_secid != 0) {
3456 skp = smack_from_secid(req->peer_secid);
3457 ssp->smk_packet = skp->smk_known;
3458 } else
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003459 ssp->smk_packet = NULL;
Paul Moore07feee82009-03-27 17:10:54 -04003460}
3461
Casey Schauflere114e472008-02-04 22:29:50 -08003462/*
3463 * Key management security hooks
3464 *
3465 * Casey has not tested key support very heavily.
3466 * The permission check is most likely too restrictive.
3467 * If you care about keys please have a look.
3468 */
3469#ifdef CONFIG_KEYS
3470
3471/**
3472 * smack_key_alloc - Set the key security blob
3473 * @key: object
David Howellsd84f4f92008-11-14 10:39:23 +11003474 * @cred: the credentials to use
Casey Schauflere114e472008-02-04 22:29:50 -08003475 * @flags: unused
3476 *
3477 * No allocation required
3478 *
3479 * Returns 0
3480 */
David Howellsd84f4f92008-11-14 10:39:23 +11003481static int smack_key_alloc(struct key *key, const struct cred *cred,
Casey Schauflere114e472008-02-04 22:29:50 -08003482 unsigned long flags)
3483{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003484 struct smack_known *skp = smk_of_task(cred->security);
3485
3486 key->security = skp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08003487 return 0;
3488}
3489
3490/**
3491 * smack_key_free - Clear the key security blob
3492 * @key: the object
3493 *
3494 * Clear the blob pointer
3495 */
3496static void smack_key_free(struct key *key)
3497{
3498 key->security = NULL;
3499}
3500
3501/*
3502 * smack_key_permission - Smack access on a key
3503 * @key_ref: gets to the object
David Howellsd84f4f92008-11-14 10:39:23 +11003504 * @cred: the credentials to use
Casey Schauflere114e472008-02-04 22:29:50 -08003505 * @perm: unused
3506 *
3507 * Return 0 if the task has read and write to the object,
3508 * an error code otherwise
3509 */
3510static int smack_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11003511 const struct cred *cred, key_perm_t perm)
Casey Schauflere114e472008-02-04 22:29:50 -08003512{
3513 struct key *keyp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003514 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003515 struct smack_known *tkp = smk_of_task(cred->security);
Casey Schauflere114e472008-02-04 22:29:50 -08003516
3517 keyp = key_ref_to_ptr(key_ref);
3518 if (keyp == NULL)
3519 return -EINVAL;
3520 /*
3521 * If the key hasn't been initialized give it access so that
3522 * it may do so.
3523 */
3524 if (keyp->security == NULL)
3525 return 0;
3526 /*
3527 * This should not occur
3528 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003529 if (tkp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08003530 return -EACCES;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003531#ifdef CONFIG_AUDIT
3532 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
3533 ad.a.u.key_struct.key = keyp->serial;
3534 ad.a.u.key_struct.key_desc = keyp->description;
3535#endif
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003536 return smk_access(tkp, keyp->security, MAY_READWRITE, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08003537}
3538#endif /* CONFIG_KEYS */
3539
3540/*
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003541 * Smack Audit hooks
3542 *
3543 * Audit requires a unique representation of each Smack specific
3544 * rule. This unique representation is used to distinguish the
3545 * object to be audited from remaining kernel objects and also
3546 * works as a glue between the audit hooks.
3547 *
3548 * Since repository entries are added but never deleted, we'll use
3549 * the smack_known label address related to the given audit rule as
3550 * the needed unique representation. This also better fits the smack
3551 * model where nearly everything is a label.
3552 */
3553#ifdef CONFIG_AUDIT
3554
3555/**
3556 * smack_audit_rule_init - Initialize a smack audit rule
3557 * @field: audit rule fields given from user-space (audit.h)
3558 * @op: required testing operator (=, !=, >, <, ...)
3559 * @rulestr: smack label to be audited
3560 * @vrule: pointer to save our own audit rule representation
3561 *
3562 * Prepare to audit cases where (@field @op @rulestr) is true.
3563 * The label to be audited is created if necessay.
3564 */
3565static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
3566{
3567 char **rule = (char **)vrule;
3568 *rule = NULL;
3569
3570 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3571 return -EINVAL;
3572
Al Viro5af75d82008-12-16 05:59:26 -05003573 if (op != Audit_equal && op != Audit_not_equal)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003574 return -EINVAL;
3575
3576 *rule = smk_import(rulestr, 0);
3577
3578 return 0;
3579}
3580
3581/**
3582 * smack_audit_rule_known - Distinguish Smack audit rules
3583 * @krule: rule of interest, in Audit kernel representation format
3584 *
3585 * This is used to filter Smack rules from remaining Audit ones.
3586 * If it's proved that this rule belongs to us, the
3587 * audit_rule_match hook will be called to do the final judgement.
3588 */
3589static int smack_audit_rule_known(struct audit_krule *krule)
3590{
3591 struct audit_field *f;
3592 int i;
3593
3594 for (i = 0; i < krule->field_count; i++) {
3595 f = &krule->fields[i];
3596
3597 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
3598 return 1;
3599 }
3600
3601 return 0;
3602}
3603
3604/**
3605 * smack_audit_rule_match - Audit given object ?
3606 * @secid: security id for identifying the object to test
3607 * @field: audit rule flags given from user-space
3608 * @op: required testing operator
3609 * @vrule: smack internal rule presentation
3610 * @actx: audit context associated with the check
3611 *
3612 * The core Audit hook. It's used to take the decision of
3613 * whether to audit or not to audit a given object.
3614 */
3615static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
3616 struct audit_context *actx)
3617{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003618 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003619 char *rule = vrule;
3620
3621 if (!rule) {
Tetsuo Handaceffec552012-03-29 16:19:05 +09003622 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003623 "Smack: missing rule\n");
3624 return -ENOENT;
3625 }
3626
3627 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3628 return 0;
3629
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003630 skp = smack_from_secid(secid);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003631
3632 /*
3633 * No need to do string comparisons. If a match occurs,
3634 * both pointers will point to the same smack_known
3635 * label.
3636 */
Al Viro5af75d82008-12-16 05:59:26 -05003637 if (op == Audit_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003638 return (rule == skp->smk_known);
Al Viro5af75d82008-12-16 05:59:26 -05003639 if (op == Audit_not_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003640 return (rule != skp->smk_known);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003641
3642 return 0;
3643}
3644
3645/**
3646 * smack_audit_rule_free - free smack rule representation
3647 * @vrule: rule to be freed.
3648 *
3649 * No memory was allocated.
3650 */
3651static void smack_audit_rule_free(void *vrule)
3652{
3653 /* No-op */
3654}
3655
3656#endif /* CONFIG_AUDIT */
3657
Randy Dunlap251a2a92009-02-18 11:42:33 -08003658/**
David Quigley746df9b2013-05-22 12:50:35 -04003659 * smack_ismaclabel - check if xattr @name references a smack MAC label
3660 * @name: Full xattr name to check.
3661 */
3662static int smack_ismaclabel(const char *name)
3663{
3664 return (strcmp(name, XATTR_SMACK_SUFFIX) == 0);
3665}
3666
3667
3668/**
Casey Schauflere114e472008-02-04 22:29:50 -08003669 * smack_secid_to_secctx - return the smack label for a secid
3670 * @secid: incoming integer
3671 * @secdata: destination
3672 * @seclen: how long it is
3673 *
3674 * Exists for networking code.
3675 */
3676static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
3677{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003678 struct smack_known *skp = smack_from_secid(secid);
Casey Schauflere114e472008-02-04 22:29:50 -08003679
Eric Parisd5630b92010-10-13 16:24:48 -04003680 if (secdata)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003681 *secdata = skp->smk_known;
3682 *seclen = strlen(skp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08003683 return 0;
3684}
3685
Randy Dunlap251a2a92009-02-18 11:42:33 -08003686/**
Casey Schaufler4bc87e62008-02-15 15:24:25 -08003687 * smack_secctx_to_secid - return the secid for a smack label
3688 * @secdata: smack label
3689 * @seclen: how long result is
3690 * @secid: outgoing integer
3691 *
3692 * Exists for audit and networking code.
3693 */
David Howellse52c17642008-04-29 20:52:51 +01003694static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
Casey Schaufler4bc87e62008-02-15 15:24:25 -08003695{
3696 *secid = smack_to_secid(secdata);
3697 return 0;
3698}
3699
Randy Dunlap251a2a92009-02-18 11:42:33 -08003700/**
Casey Schauflere114e472008-02-04 22:29:50 -08003701 * smack_release_secctx - don't do anything.
Randy Dunlap251a2a92009-02-18 11:42:33 -08003702 * @secdata: unused
3703 * @seclen: unused
Casey Schauflere114e472008-02-04 22:29:50 -08003704 *
3705 * Exists to make sure nothing gets done, and properly
3706 */
3707static void smack_release_secctx(char *secdata, u32 seclen)
3708{
3709}
3710
David P. Quigley1ee65e32009-09-03 14:25:57 -04003711static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
3712{
3713 return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx, ctxlen, 0);
3714}
3715
3716static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
3717{
3718 return __vfs_setxattr_noperm(dentry, XATTR_NAME_SMACK, ctx, ctxlen, 0);
3719}
3720
3721static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
3722{
3723 int len = 0;
3724 len = smack_inode_getsecurity(inode, XATTR_SMACK_SUFFIX, ctx, true);
3725
3726 if (len < 0)
3727 return len;
3728 *ctxlen = len;
3729 return 0;
3730}
3731
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02003732struct security_operations smack_ops = {
3733 .name = "smack",
3734
Ingo Molnar9e488582009-05-07 19:26:19 +10003735 .ptrace_access_check = smack_ptrace_access_check,
David Howells5cd9c582008-08-14 11:37:28 +01003736 .ptrace_traceme = smack_ptrace_traceme,
Casey Schauflere114e472008-02-04 22:29:50 -08003737 .syslog = smack_syslog,
Casey Schauflere114e472008-02-04 22:29:50 -08003738
3739 .sb_alloc_security = smack_sb_alloc_security,
3740 .sb_free_security = smack_sb_free_security,
3741 .sb_copy_data = smack_sb_copy_data,
3742 .sb_kern_mount = smack_sb_kern_mount,
3743 .sb_statfs = smack_sb_statfs,
Casey Schauflere114e472008-02-04 22:29:50 -08003744
Casey Schaufler676dac42010-12-02 06:43:39 -08003745 .bprm_set_creds = smack_bprm_set_creds,
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +03003746 .bprm_committing_creds = smack_bprm_committing_creds,
3747 .bprm_secureexec = smack_bprm_secureexec,
Casey Schaufler676dac42010-12-02 06:43:39 -08003748
Casey Schauflere114e472008-02-04 22:29:50 -08003749 .inode_alloc_security = smack_inode_alloc_security,
3750 .inode_free_security = smack_inode_free_security,
3751 .inode_init_security = smack_inode_init_security,
3752 .inode_link = smack_inode_link,
3753 .inode_unlink = smack_inode_unlink,
3754 .inode_rmdir = smack_inode_rmdir,
3755 .inode_rename = smack_inode_rename,
3756 .inode_permission = smack_inode_permission,
3757 .inode_setattr = smack_inode_setattr,
3758 .inode_getattr = smack_inode_getattr,
3759 .inode_setxattr = smack_inode_setxattr,
3760 .inode_post_setxattr = smack_inode_post_setxattr,
3761 .inode_getxattr = smack_inode_getxattr,
3762 .inode_removexattr = smack_inode_removexattr,
3763 .inode_getsecurity = smack_inode_getsecurity,
3764 .inode_setsecurity = smack_inode_setsecurity,
3765 .inode_listsecurity = smack_inode_listsecurity,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003766 .inode_getsecid = smack_inode_getsecid,
Casey Schauflere114e472008-02-04 22:29:50 -08003767
3768 .file_permission = smack_file_permission,
3769 .file_alloc_security = smack_file_alloc_security,
3770 .file_free_security = smack_file_free_security,
3771 .file_ioctl = smack_file_ioctl,
3772 .file_lock = smack_file_lock,
3773 .file_fcntl = smack_file_fcntl,
Al Viroe5467852012-05-30 13:30:51 -04003774 .mmap_file = smack_mmap_file,
3775 .mmap_addr = cap_mmap_addr,
Casey Schauflere114e472008-02-04 22:29:50 -08003776 .file_set_fowner = smack_file_set_fowner,
3777 .file_send_sigiotask = smack_file_send_sigiotask,
3778 .file_receive = smack_file_receive,
3779
Eric Paris83d49852012-04-04 13:45:40 -04003780 .file_open = smack_file_open,
Casey Schaufler531f1d42011-09-19 12:41:42 -07003781
David Howellsee18d642009-09-02 09:14:21 +01003782 .cred_alloc_blank = smack_cred_alloc_blank,
David Howellsf1752ee2008-11-14 10:39:17 +11003783 .cred_free = smack_cred_free,
David Howellsd84f4f92008-11-14 10:39:23 +11003784 .cred_prepare = smack_cred_prepare,
David Howellsee18d642009-09-02 09:14:21 +01003785 .cred_transfer = smack_cred_transfer,
David Howells3a3b7ce2008-11-14 10:39:28 +11003786 .kernel_act_as = smack_kernel_act_as,
3787 .kernel_create_files_as = smack_kernel_create_files_as,
Casey Schauflere114e472008-02-04 22:29:50 -08003788 .task_setpgid = smack_task_setpgid,
3789 .task_getpgid = smack_task_getpgid,
3790 .task_getsid = smack_task_getsid,
3791 .task_getsecid = smack_task_getsecid,
3792 .task_setnice = smack_task_setnice,
3793 .task_setioprio = smack_task_setioprio,
3794 .task_getioprio = smack_task_getioprio,
3795 .task_setscheduler = smack_task_setscheduler,
3796 .task_getscheduler = smack_task_getscheduler,
3797 .task_movememory = smack_task_movememory,
3798 .task_kill = smack_task_kill,
3799 .task_wait = smack_task_wait,
Casey Schauflere114e472008-02-04 22:29:50 -08003800 .task_to_inode = smack_task_to_inode,
3801
3802 .ipc_permission = smack_ipc_permission,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003803 .ipc_getsecid = smack_ipc_getsecid,
Casey Schauflere114e472008-02-04 22:29:50 -08003804
3805 .msg_msg_alloc_security = smack_msg_msg_alloc_security,
3806 .msg_msg_free_security = smack_msg_msg_free_security,
3807
3808 .msg_queue_alloc_security = smack_msg_queue_alloc_security,
3809 .msg_queue_free_security = smack_msg_queue_free_security,
3810 .msg_queue_associate = smack_msg_queue_associate,
3811 .msg_queue_msgctl = smack_msg_queue_msgctl,
3812 .msg_queue_msgsnd = smack_msg_queue_msgsnd,
3813 .msg_queue_msgrcv = smack_msg_queue_msgrcv,
3814
3815 .shm_alloc_security = smack_shm_alloc_security,
3816 .shm_free_security = smack_shm_free_security,
3817 .shm_associate = smack_shm_associate,
3818 .shm_shmctl = smack_shm_shmctl,
3819 .shm_shmat = smack_shm_shmat,
3820
3821 .sem_alloc_security = smack_sem_alloc_security,
3822 .sem_free_security = smack_sem_free_security,
3823 .sem_associate = smack_sem_associate,
3824 .sem_semctl = smack_sem_semctl,
3825 .sem_semop = smack_sem_semop,
3826
Casey Schauflere114e472008-02-04 22:29:50 -08003827 .d_instantiate = smack_d_instantiate,
3828
3829 .getprocattr = smack_getprocattr,
3830 .setprocattr = smack_setprocattr,
3831
3832 .unix_stream_connect = smack_unix_stream_connect,
3833 .unix_may_send = smack_unix_may_send,
3834
3835 .socket_post_create = smack_socket_post_create,
Casey Schauflerc6739442013-05-22 18:42:56 -07003836 .socket_bind = smack_socket_bind,
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003837 .socket_connect = smack_socket_connect,
3838 .socket_sendmsg = smack_socket_sendmsg,
Casey Schauflere114e472008-02-04 22:29:50 -08003839 .socket_sock_rcv_skb = smack_socket_sock_rcv_skb,
3840 .socket_getpeersec_stream = smack_socket_getpeersec_stream,
3841 .socket_getpeersec_dgram = smack_socket_getpeersec_dgram,
3842 .sk_alloc_security = smack_sk_alloc_security,
3843 .sk_free_security = smack_sk_free_security,
3844 .sock_graft = smack_sock_graft,
3845 .inet_conn_request = smack_inet_conn_request,
Paul Moore07feee82009-03-27 17:10:54 -04003846 .inet_csk_clone = smack_inet_csk_clone,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003847
Casey Schauflere114e472008-02-04 22:29:50 -08003848 /* key management security hooks */
3849#ifdef CONFIG_KEYS
3850 .key_alloc = smack_key_alloc,
3851 .key_free = smack_key_free,
3852 .key_permission = smack_key_permission,
3853#endif /* CONFIG_KEYS */
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003854
3855 /* Audit hooks */
3856#ifdef CONFIG_AUDIT
3857 .audit_rule_init = smack_audit_rule_init,
3858 .audit_rule_known = smack_audit_rule_known,
3859 .audit_rule_match = smack_audit_rule_match,
3860 .audit_rule_free = smack_audit_rule_free,
3861#endif /* CONFIG_AUDIT */
3862
David Quigley746df9b2013-05-22 12:50:35 -04003863 .ismaclabel = smack_ismaclabel,
Casey Schauflere114e472008-02-04 22:29:50 -08003864 .secid_to_secctx = smack_secid_to_secctx,
Casey Schaufler4bc87e62008-02-15 15:24:25 -08003865 .secctx_to_secid = smack_secctx_to_secid,
Casey Schauflere114e472008-02-04 22:29:50 -08003866 .release_secctx = smack_release_secctx,
David P. Quigley1ee65e32009-09-03 14:25:57 -04003867 .inode_notifysecctx = smack_inode_notifysecctx,
3868 .inode_setsecctx = smack_inode_setsecctx,
3869 .inode_getsecctx = smack_inode_getsecctx,
Casey Schauflere114e472008-02-04 22:29:50 -08003870};
3871
Etienne Basset7198e2e2009-03-24 20:53:24 +01003872
Casey Schaufler86812bb2012-04-17 18:55:46 -07003873static __init void init_smack_known_list(void)
Etienne Basset7198e2e2009-03-24 20:53:24 +01003874{
Casey Schaufler86812bb2012-04-17 18:55:46 -07003875 /*
Casey Schaufler86812bb2012-04-17 18:55:46 -07003876 * Initialize rule list locks
3877 */
3878 mutex_init(&smack_known_huh.smk_rules_lock);
3879 mutex_init(&smack_known_hat.smk_rules_lock);
3880 mutex_init(&smack_known_floor.smk_rules_lock);
3881 mutex_init(&smack_known_star.smk_rules_lock);
3882 mutex_init(&smack_known_invalid.smk_rules_lock);
3883 mutex_init(&smack_known_web.smk_rules_lock);
3884 /*
3885 * Initialize rule lists
3886 */
3887 INIT_LIST_HEAD(&smack_known_huh.smk_rules);
3888 INIT_LIST_HEAD(&smack_known_hat.smk_rules);
3889 INIT_LIST_HEAD(&smack_known_star.smk_rules);
3890 INIT_LIST_HEAD(&smack_known_floor.smk_rules);
3891 INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
3892 INIT_LIST_HEAD(&smack_known_web.smk_rules);
3893 /*
3894 * Create the known labels list
3895 */
Tomasz Stanislawski4d7cf4a2013-06-11 14:55:13 +02003896 smk_insert_entry(&smack_known_huh);
3897 smk_insert_entry(&smack_known_hat);
3898 smk_insert_entry(&smack_known_star);
3899 smk_insert_entry(&smack_known_floor);
3900 smk_insert_entry(&smack_known_invalid);
3901 smk_insert_entry(&smack_known_web);
Etienne Basset7198e2e2009-03-24 20:53:24 +01003902}
3903
Casey Schauflere114e472008-02-04 22:29:50 -08003904/**
3905 * smack_init - initialize the smack system
3906 *
3907 * Returns 0
3908 */
3909static __init int smack_init(void)
3910{
David Howellsd84f4f92008-11-14 10:39:23 +11003911 struct cred *cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08003912 struct task_smack *tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11003913
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003914 if (!security_module_enable(&smack_ops))
3915 return 0;
3916
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003917 tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
3918 GFP_KERNEL);
Casey Schaufler676dac42010-12-02 06:43:39 -08003919 if (tsp == NULL)
3920 return -ENOMEM;
3921
Casey Schauflere114e472008-02-04 22:29:50 -08003922 printk(KERN_INFO "Smack: Initializing.\n");
3923
3924 /*
3925 * Set the security state for the initial task.
3926 */
David Howellsd84f4f92008-11-14 10:39:23 +11003927 cred = (struct cred *) current->cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08003928 cred->security = tsp;
Casey Schauflere114e472008-02-04 22:29:50 -08003929
Casey Schaufler86812bb2012-04-17 18:55:46 -07003930 /* initialize the smack_known_list */
3931 init_smack_known_list();
Casey Schauflere114e472008-02-04 22:29:50 -08003932
3933 /*
3934 * Register with LSM
3935 */
3936 if (register_security(&smack_ops))
3937 panic("smack: Unable to register with kernel.\n");
3938
3939 return 0;
3940}
3941
3942/*
3943 * Smack requires early initialization in order to label
3944 * all processes and objects when they are created.
3945 */
3946security_initcall(smack_init);