Smack: adds smackfs/ptrace interface
[linux-2.6-block.git] / security / smack / smack_lsm.c
CommitLineData
e114e473
CS
1/*
2 * Simplified MAC Kernel (smack) security module
3 *
4 * This file contains the smack hook function implementations.
5 *
5c6d1125 6 * Authors:
e114e473 7 * Casey Schaufler <casey@schaufler-ca.com>
84088ba2 8 * Jarkko Sakkinen <jarkko.sakkinen@intel.com>
e114e473
CS
9 *
10 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
07feee8f 11 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
82c21bfa 12 * Paul Moore <paul@paul-moore.com>
5c6d1125 13 * Copyright (C) 2010 Nokia Corporation
84088ba2 14 * Copyright (C) 2011 Intel Corporation.
e114e473
CS
15 *
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>
e114e473
CS
25#include <linux/kd.h>
26#include <asm/ioctls.h>
07feee8f 27#include <linux/ip.h>
e114e473
CS
28#include <linux/tcp.h>
29#include <linux/udp.h>
c6739443 30#include <linux/dccp.h>
5a0e3ad6 31#include <linux/slab.h>
e114e473
CS
32#include <linux/mutex.h>
33#include <linux/pipe_fs_i.h>
e114e473 34#include <net/cipso_ipv4.h>
c6739443
CS
35#include <net/ip.h>
36#include <net/ipv6.h>
d20bdda6 37#include <linux/audit.h>
1fd7317d 38#include <linux/magic.h>
2a7dba39 39#include <linux/dcache.h>
16014d87 40#include <linux/personality.h>
40401530
AV
41#include <linux/msg.h>
42#include <linux/shm.h>
43#include <linux/binfmts.h>
e114e473
CS
44#include "smack.h"
45
c69e8d9c
DH
46#define task_security(task) (task_cred_xxx((task), security))
47
5c6d1125
JS
48#define TRANS_TRUE "TRUE"
49#define TRANS_TRUE_SIZE 4
50
c6739443
CS
51#define SMK_CONNECTING 0
52#define SMK_RECEIVING 1
53#define SMK_SENDING 2
54
55LIST_HEAD(smk_ipv6_port_list);
56
e114e473
CS
57/**
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 */
2f823ff8
CS
65static struct smack_known *smk_fetch(const char *name, struct inode *ip,
66 struct dentry *dp)
e114e473
CS
67{
68 int rc;
f7112e6c 69 char *buffer;
2f823ff8 70 struct smack_known *skp = NULL;
e114e473
CS
71
72 if (ip->i_op->getxattr == NULL)
73 return NULL;
74
f7112e6c
CS
75 buffer = kzalloc(SMK_LONGLABEL, GFP_KERNEL);
76 if (buffer == NULL)
e114e473
CS
77 return NULL;
78
f7112e6c
CS
79 rc = ip->i_op->getxattr(dp, name, buffer, SMK_LONGLABEL);
80 if (rc > 0)
2f823ff8 81 skp = smk_import_entry(buffer, rc);
f7112e6c
CS
82
83 kfree(buffer);
84
2f823ff8 85 return skp;
e114e473
CS
86}
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
ceffec55 98 isp = kzalloc(sizeof(struct inode_smack), GFP_NOFS);
e114e473
CS
99 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
7898e1f8
CS
109/**
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 */
2f823ff8
CS
115static struct task_smack *new_task_smack(struct smack_known *task,
116 struct smack_known *forked, gfp_t gfp)
7898e1f8
CS
117{
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
5663884c
LP
160/**
161 * smk_ptrace_mode - helper function for converting PTRACE_MODE_* into MAY_*
162 * @mode - input mode in form of PTRACE_MODE_*
163 *
164 * Returns a converted MAY_* mode usable by smack rules
165 */
166static inline unsigned int smk_ptrace_mode(unsigned int mode)
167{
168 switch (mode) {
169 case PTRACE_MODE_READ:
170 return MAY_READ;
171 case PTRACE_MODE_ATTACH:
172 return MAY_READWRITE;
173 }
174
175 return 0;
176}
177
178/**
179 * smk_ptrace_rule_check - helper for ptrace access
180 * @tracer: tracer process
66867818
LP
181 * @tracee_label: label of the process that's about to be traced,
182 * the pointer must originate from smack structures
5663884c
LP
183 * @mode: ptrace attachment mode (PTRACE_MODE_*)
184 * @func: name of the function that called us, used for audit
185 *
186 * Returns 0 on access granted, -error on error
187 */
188static int smk_ptrace_rule_check(struct task_struct *tracer, char *tracee_label,
189 unsigned int mode, const char *func)
190{
191 int rc;
192 struct smk_audit_info ad, *saip = NULL;
193 struct task_smack *tsp;
194 struct smack_known *skp;
195
196 if ((mode & PTRACE_MODE_NOAUDIT) == 0) {
197 smk_ad_init(&ad, func, LSM_AUDIT_DATA_TASK);
198 smk_ad_setfield_u_tsk(&ad, tracer);
199 saip = &ad;
200 }
201
202 tsp = task_security(tracer);
203 skp = smk_of_task(tsp);
204
66867818
LP
205 if ((mode & PTRACE_MODE_ATTACH) &&
206 (smack_ptrace_rule == SMACK_PTRACE_EXACT ||
207 smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)) {
208 if (skp->smk_known == tracee_label)
209 rc = 0;
210 else if (smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)
211 rc = -EACCES;
212 else if (capable(CAP_SYS_PTRACE))
213 rc = 0;
214 else
215 rc = -EACCES;
216
217 if (saip)
218 smack_log(skp->smk_known, tracee_label, 0, rc, saip);
219
220 return rc;
221 }
222
223 /* In case of rule==SMACK_PTRACE_DEFAULT or mode==PTRACE_MODE_READ */
5663884c
LP
224 rc = smk_tskacc(tsp, tracee_label, smk_ptrace_mode(mode), saip);
225 return rc;
226}
227
e114e473
CS
228/*
229 * LSM hooks.
230 * We he, that is fun!
231 */
232
233/**
9e48858f 234 * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
e114e473 235 * @ctp: child task pointer
5663884c 236 * @mode: ptrace attachment mode (PTRACE_MODE_*)
e114e473
CS
237 *
238 * Returns 0 if access is OK, an error code otherwise
239 *
5663884c 240 * Do the capability checks.
e114e473 241 */
9e48858f 242static int smack_ptrace_access_check(struct task_struct *ctp, unsigned int mode)
e114e473
CS
243{
244 int rc;
2f823ff8 245 struct smack_known *skp;
e114e473 246
9e48858f 247 rc = cap_ptrace_access_check(ctp, mode);
e114e473
CS
248 if (rc != 0)
249 return rc;
250
2f823ff8 251 skp = smk_of_task(task_security(ctp));
ecfcc53f 252
5663884c 253 rc = smk_ptrace_rule_check(current, skp->smk_known, mode, __func__);
5cd9c58f
DH
254 return rc;
255}
256
257/**
258 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
259 * @ptp: parent task pointer
260 *
261 * Returns 0 if access is OK, an error code otherwise
262 *
5663884c 263 * Do the capability checks, and require PTRACE_MODE_ATTACH.
5cd9c58f
DH
264 */
265static int smack_ptrace_traceme(struct task_struct *ptp)
266{
267 int rc;
2f823ff8 268 struct smack_known *skp;
5cd9c58f
DH
269
270 rc = cap_ptrace_traceme(ptp);
271 if (rc != 0)
272 return rc;
e114e473 273
959e6c7f 274 skp = smk_of_task(current_security());
ecfcc53f 275
5663884c
LP
276 rc = smk_ptrace_rule_check(ptp, skp->smk_known,
277 PTRACE_MODE_ATTACH, __func__);
e114e473
CS
278 return rc;
279}
280
281/**
282 * smack_syslog - Smack approval on syslog
283 * @type: message type
284 *
e114e473
CS
285 * Returns 0 on success, error code otherwise.
286 */
12b3052c 287static int smack_syslog(int typefrom_file)
e114e473 288{
12b3052c 289 int rc = 0;
2f823ff8 290 struct smack_known *skp = smk_of_current();
e114e473 291
1880eff7 292 if (smack_privileged(CAP_MAC_OVERRIDE))
e114e473
CS
293 return 0;
294
24ea1b6e 295 if (smack_syslog_label != NULL && smack_syslog_label != skp)
e114e473
CS
296 rc = -EACCES;
297
298 return rc;
299}
300
301
302/*
303 * Superblock Hooks.
304 */
305
306/**
307 * smack_sb_alloc_security - allocate a superblock blob
308 * @sb: the superblock getting the blob
309 *
310 * Returns 0 on success or -ENOMEM on error.
311 */
312static int smack_sb_alloc_security(struct super_block *sb)
313{
314 struct superblock_smack *sbsp;
315
316 sbsp = kzalloc(sizeof(struct superblock_smack), GFP_KERNEL);
317
318 if (sbsp == NULL)
319 return -ENOMEM;
320
321 sbsp->smk_root = smack_known_floor.smk_known;
322 sbsp->smk_default = smack_known_floor.smk_known;
323 sbsp->smk_floor = smack_known_floor.smk_known;
324 sbsp->smk_hat = smack_known_hat.smk_known;
e830b394
CS
325 /*
326 * smk_initialized will be zero from kzalloc.
327 */
e114e473
CS
328 sb->s_security = sbsp;
329
330 return 0;
331}
332
333/**
334 * smack_sb_free_security - free a superblock blob
335 * @sb: the superblock getting the blob
336 *
337 */
338static void smack_sb_free_security(struct super_block *sb)
339{
340 kfree(sb->s_security);
341 sb->s_security = NULL;
342}
343
344/**
345 * smack_sb_copy_data - copy mount options data for processing
e114e473 346 * @orig: where to start
251a2a95 347 * @smackopts: mount options string
e114e473
CS
348 *
349 * Returns 0 on success or -ENOMEM on error.
350 *
351 * Copy the Smack specific mount options out of the mount
352 * options list.
353 */
e0007529 354static int smack_sb_copy_data(char *orig, char *smackopts)
e114e473
CS
355{
356 char *cp, *commap, *otheropts, *dp;
357
e114e473
CS
358 otheropts = (char *)get_zeroed_page(GFP_KERNEL);
359 if (otheropts == NULL)
360 return -ENOMEM;
361
362 for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
363 if (strstr(cp, SMK_FSDEFAULT) == cp)
364 dp = smackopts;
365 else if (strstr(cp, SMK_FSFLOOR) == cp)
366 dp = smackopts;
367 else if (strstr(cp, SMK_FSHAT) == cp)
368 dp = smackopts;
369 else if (strstr(cp, SMK_FSROOT) == cp)
370 dp = smackopts;
e830b394
CS
371 else if (strstr(cp, SMK_FSTRANS) == cp)
372 dp = smackopts;
e114e473
CS
373 else
374 dp = otheropts;
375
376 commap = strchr(cp, ',');
377 if (commap != NULL)
378 *commap = '\0';
379
380 if (*dp != '\0')
381 strcat(dp, ",");
382 strcat(dp, cp);
383 }
384
385 strcpy(orig, otheropts);
386 free_page((unsigned long)otheropts);
387
388 return 0;
389}
390
391/**
392 * smack_sb_kern_mount - Smack specific mount processing
393 * @sb: the file system superblock
12204e24 394 * @flags: the mount flags
e114e473
CS
395 * @data: the smack mount options
396 *
397 * Returns 0 on success, an error code on failure
398 */
12204e24 399static int smack_sb_kern_mount(struct super_block *sb, int flags, void *data)
e114e473
CS
400{
401 struct dentry *root = sb->s_root;
402 struct inode *inode = root->d_inode;
403 struct superblock_smack *sp = sb->s_security;
404 struct inode_smack *isp;
24ea1b6e 405 struct smack_known *skp;
e114e473
CS
406 char *op;
407 char *commap;
408 char *nsp;
e830b394 409 int transmute = 0;
24ea1b6e 410 int specified = 0;
e114e473 411
e830b394 412 if (sp->smk_initialized)
e114e473 413 return 0;
eb982cb4 414
e114e473 415 sp->smk_initialized = 1;
e114e473
CS
416
417 for (op = data; op != NULL; op = commap) {
418 commap = strchr(op, ',');
419 if (commap != NULL)
420 *commap++ = '\0';
421
422 if (strncmp(op, SMK_FSHAT, strlen(SMK_FSHAT)) == 0) {
423 op += strlen(SMK_FSHAT);
424 nsp = smk_import(op, 0);
24ea1b6e 425 if (nsp != NULL) {
e114e473 426 sp->smk_hat = nsp;
24ea1b6e
CS
427 specified = 1;
428 }
e114e473
CS
429 } else if (strncmp(op, SMK_FSFLOOR, strlen(SMK_FSFLOOR)) == 0) {
430 op += strlen(SMK_FSFLOOR);
431 nsp = smk_import(op, 0);
24ea1b6e 432 if (nsp != NULL) {
e114e473 433 sp->smk_floor = nsp;
24ea1b6e
CS
434 specified = 1;
435 }
e114e473
CS
436 } else if (strncmp(op, SMK_FSDEFAULT,
437 strlen(SMK_FSDEFAULT)) == 0) {
438 op += strlen(SMK_FSDEFAULT);
439 nsp = smk_import(op, 0);
24ea1b6e 440 if (nsp != NULL) {
e114e473 441 sp->smk_default = nsp;
24ea1b6e
CS
442 specified = 1;
443 }
e114e473
CS
444 } else if (strncmp(op, SMK_FSROOT, strlen(SMK_FSROOT)) == 0) {
445 op += strlen(SMK_FSROOT);
446 nsp = smk_import(op, 0);
24ea1b6e 447 if (nsp != NULL) {
e114e473 448 sp->smk_root = nsp;
24ea1b6e
CS
449 specified = 1;
450 }
e830b394
CS
451 } else if (strncmp(op, SMK_FSTRANS, strlen(SMK_FSTRANS)) == 0) {
452 op += strlen(SMK_FSTRANS);
453 nsp = smk_import(op, 0);
454 if (nsp != NULL) {
455 sp->smk_root = nsp;
456 transmute = 1;
24ea1b6e 457 specified = 1;
e830b394 458 }
e114e473
CS
459 }
460 }
461
24ea1b6e
CS
462 if (!smack_privileged(CAP_MAC_ADMIN)) {
463 /*
464 * Unprivileged mounts don't get to specify Smack values.
465 */
466 if (specified)
467 return -EPERM;
468 /*
469 * Unprivileged mounts get root and default from the caller.
470 */
471 skp = smk_of_current();
472 sp->smk_root = skp->smk_known;
473 sp->smk_default = skp->smk_known;
474 }
e114e473
CS
475 /*
476 * Initialize the root inode.
477 */
478 isp = inode->i_security;
55dfc5da
JB
479 if (isp == NULL) {
480 isp = new_inode_smack(sp->smk_root);
481 if (isp == NULL)
482 return -ENOMEM;
483 inode->i_security = isp;
e830b394 484 } else
e114e473
CS
485 isp->smk_inode = sp->smk_root;
486
e830b394
CS
487 if (transmute)
488 isp->smk_flags |= SMK_INODE_TRANSMUTE;
489
e114e473
CS
490 return 0;
491}
492
493/**
494 * smack_sb_statfs - Smack check on statfs
495 * @dentry: identifies the file system in question
496 *
497 * Returns 0 if current can read the floor of the filesystem,
498 * and error code otherwise
499 */
500static int smack_sb_statfs(struct dentry *dentry)
501{
502 struct superblock_smack *sbp = dentry->d_sb->s_security;
ecfcc53f
EB
503 int rc;
504 struct smk_audit_info ad;
505
a269434d 506 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f 507 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
e114e473 508
ecfcc53f
EB
509 rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
510 return rc;
e114e473
CS
511}
512
676dac4b
CS
513/*
514 * BPRM hooks
515 */
516
ce8a4321
CS
517/**
518 * smack_bprm_set_creds - set creds for exec
519 * @bprm: the exec information
520 *
5663884c 521 * Returns 0 if it gets a blob, -EPERM if exec forbidden and -ENOMEM otherwise
ce8a4321 522 */
676dac4b
CS
523static int smack_bprm_set_creds(struct linux_binprm *bprm)
524{
496ad9aa 525 struct inode *inode = file_inode(bprm->file);
84088ba2 526 struct task_smack *bsp = bprm->cred->security;
676dac4b 527 struct inode_smack *isp;
676dac4b
CS
528 int rc;
529
530 rc = cap_bprm_set_creds(bprm);
531 if (rc != 0)
532 return rc;
533
534 if (bprm->cred_prepared)
535 return 0;
536
84088ba2
JS
537 isp = inode->i_security;
538 if (isp->smk_task == NULL || isp->smk_task == bsp->smk_task)
676dac4b
CS
539 return 0;
540
5663884c
LP
541 if (bprm->unsafe & (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) {
542 struct task_struct *tracer;
543 rc = 0;
544
545 rcu_read_lock();
546 tracer = ptrace_parent(current);
547 if (likely(tracer != NULL))
548 rc = smk_ptrace_rule_check(tracer,
549 isp->smk_task->smk_known,
550 PTRACE_MODE_ATTACH,
551 __func__);
552 rcu_read_unlock();
553
554 if (rc != 0)
555 return rc;
556 } else if (bprm->unsafe)
84088ba2 557 return -EPERM;
676dac4b 558
84088ba2
JS
559 bsp->smk_task = isp->smk_task;
560 bprm->per_clear |= PER_CLEAR_ON_SETID;
676dac4b 561
84088ba2
JS
562 return 0;
563}
676dac4b 564
84088ba2
JS
565/**
566 * smack_bprm_committing_creds - Prepare to install the new credentials
567 * from bprm.
568 *
569 * @bprm: binprm for exec
570 */
571static void smack_bprm_committing_creds(struct linux_binprm *bprm)
572{
573 struct task_smack *bsp = bprm->cred->security;
676dac4b 574
84088ba2
JS
575 if (bsp->smk_task != bsp->smk_forked)
576 current->pdeath_signal = 0;
577}
578
579/**
580 * smack_bprm_secureexec - Return the decision to use secureexec.
581 * @bprm: binprm for exec
582 *
583 * Returns 0 on success.
584 */
585static int smack_bprm_secureexec(struct linux_binprm *bprm)
586{
587 struct task_smack *tsp = current_security();
588 int ret = cap_bprm_secureexec(bprm);
589
590 if (!ret && (tsp->smk_task != tsp->smk_forked))
591 ret = 1;
592
593 return ret;
676dac4b
CS
594}
595
e114e473
CS
596/*
597 * Inode hooks
598 */
599
600/**
601 * smack_inode_alloc_security - allocate an inode blob
251a2a95 602 * @inode: the inode in need of a blob
e114e473
CS
603 *
604 * Returns 0 if it gets a blob, -ENOMEM otherwise
605 */
606static int smack_inode_alloc_security(struct inode *inode)
607{
2f823ff8
CS
608 struct smack_known *skp = smk_of_current();
609
610 inode->i_security = new_inode_smack(skp->smk_known);
e114e473
CS
611 if (inode->i_security == NULL)
612 return -ENOMEM;
613 return 0;
614}
615
616/**
617 * smack_inode_free_security - free an inode blob
251a2a95 618 * @inode: the inode with a blob
e114e473
CS
619 *
620 * Clears the blob pointer in inode
621 */
622static void smack_inode_free_security(struct inode *inode)
623{
624 kfree(inode->i_security);
625 inode->i_security = NULL;
626}
627
628/**
629 * smack_inode_init_security - copy out the smack from an inode
630 * @inode: the inode
631 * @dir: unused
2a7dba39 632 * @qstr: unused
e114e473
CS
633 * @name: where to put the attribute name
634 * @value: where to put the attribute value
635 * @len: where to put the length of the attribute
636 *
637 * Returns 0 if it all works out, -ENOMEM if there's no memory
638 */
639static int smack_inode_init_security(struct inode *inode, struct inode *dir,
9548906b 640 const struct qstr *qstr, const char **name,
2a7dba39 641 void **value, size_t *len)
e114e473 642{
2267b13a 643 struct inode_smack *issp = inode->i_security;
2f823ff8 644 struct smack_known *skp = smk_of_current();
e114e473 645 char *isp = smk_of_inode(inode);
5c6d1125 646 char *dsp = smk_of_inode(dir);
7898e1f8 647 int may;
e114e473 648
9548906b
TH
649 if (name)
650 *name = XATTR_SMACK_SUFFIX;
e114e473
CS
651
652 if (value) {
7898e1f8 653 rcu_read_lock();
2f823ff8 654 may = smk_access_entry(skp->smk_known, dsp, &skp->smk_rules);
7898e1f8 655 rcu_read_unlock();
5c6d1125
JS
656
657 /*
658 * If the access rule allows transmutation and
659 * the directory requests transmutation then
660 * by all means transmute.
2267b13a 661 * Mark the inode as changed.
5c6d1125 662 */
7898e1f8 663 if (may > 0 && ((may & MAY_TRANSMUTE) != 0) &&
2267b13a 664 smk_inode_transmutable(dir)) {
5c6d1125 665 isp = dsp;
2267b13a
CS
666 issp->smk_flags |= SMK_INODE_CHANGED;
667 }
5c6d1125 668
ceffec55 669 *value = kstrdup(isp, GFP_NOFS);
e114e473
CS
670 if (*value == NULL)
671 return -ENOMEM;
672 }
673
674 if (len)
675 *len = strlen(isp) + 1;
676
677 return 0;
678}
679
680/**
681 * smack_inode_link - Smack check on link
682 * @old_dentry: the existing object
683 * @dir: unused
684 * @new_dentry: the new object
685 *
686 * Returns 0 if access is permitted, an error code otherwise
687 */
688static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
689 struct dentry *new_dentry)
690{
e114e473 691 char *isp;
ecfcc53f
EB
692 struct smk_audit_info ad;
693 int rc;
694
a269434d 695 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f 696 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
e114e473
CS
697
698 isp = smk_of_inode(old_dentry->d_inode);
ecfcc53f 699 rc = smk_curacc(isp, MAY_WRITE, &ad);
e114e473
CS
700
701 if (rc == 0 && new_dentry->d_inode != NULL) {
702 isp = smk_of_inode(new_dentry->d_inode);
ecfcc53f
EB
703 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
704 rc = smk_curacc(isp, MAY_WRITE, &ad);
e114e473
CS
705 }
706
707 return rc;
708}
709
710/**
711 * smack_inode_unlink - Smack check on inode deletion
712 * @dir: containing directory object
713 * @dentry: file to unlink
714 *
715 * Returns 0 if current can write the containing directory
716 * and the object, error code otherwise
717 */
718static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
719{
720 struct inode *ip = dentry->d_inode;
ecfcc53f 721 struct smk_audit_info ad;
e114e473
CS
722 int rc;
723
a269434d 724 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f
EB
725 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
726
e114e473
CS
727 /*
728 * You need write access to the thing you're unlinking
729 */
ecfcc53f
EB
730 rc = smk_curacc(smk_of_inode(ip), MAY_WRITE, &ad);
731 if (rc == 0) {
e114e473
CS
732 /*
733 * You also need write access to the containing directory
734 */
cdb56b60 735 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
ecfcc53f
EB
736 smk_ad_setfield_u_fs_inode(&ad, dir);
737 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
738 }
e114e473
CS
739 return rc;
740}
741
742/**
743 * smack_inode_rmdir - Smack check on directory deletion
744 * @dir: containing directory object
745 * @dentry: directory to unlink
746 *
747 * Returns 0 if current can write the containing directory
748 * and the directory, error code otherwise
749 */
750static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
751{
ecfcc53f 752 struct smk_audit_info ad;
e114e473
CS
753 int rc;
754
a269434d 755 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f
EB
756 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
757
e114e473
CS
758 /*
759 * You need write access to the thing you're removing
760 */
ecfcc53f
EB
761 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
762 if (rc == 0) {
e114e473
CS
763 /*
764 * You also need write access to the containing directory
765 */
cdb56b60 766 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
ecfcc53f
EB
767 smk_ad_setfield_u_fs_inode(&ad, dir);
768 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
769 }
e114e473
CS
770
771 return rc;
772}
773
774/**
775 * smack_inode_rename - Smack check on rename
776 * @old_inode: the old directory
777 * @old_dentry: unused
778 * @new_inode: the new directory
779 * @new_dentry: unused
780 *
781 * Read and write access is required on both the old and
782 * new directories.
783 *
784 * Returns 0 if access is permitted, an error code otherwise
785 */
786static int smack_inode_rename(struct inode *old_inode,
787 struct dentry *old_dentry,
788 struct inode *new_inode,
789 struct dentry *new_dentry)
790{
791 int rc;
792 char *isp;
ecfcc53f
EB
793 struct smk_audit_info ad;
794
a269434d 795 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f 796 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
e114e473
CS
797
798 isp = smk_of_inode(old_dentry->d_inode);
ecfcc53f 799 rc = smk_curacc(isp, MAY_READWRITE, &ad);
e114e473
CS
800
801 if (rc == 0 && new_dentry->d_inode != NULL) {
802 isp = smk_of_inode(new_dentry->d_inode);
ecfcc53f
EB
803 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
804 rc = smk_curacc(isp, MAY_READWRITE, &ad);
e114e473 805 }
e114e473
CS
806 return rc;
807}
808
809/**
810 * smack_inode_permission - Smack version of permission()
811 * @inode: the inode in question
812 * @mask: the access requested
e114e473
CS
813 *
814 * This is the important Smack hook.
815 *
816 * Returns 0 if access is permitted, -EACCES otherwise
817 */
e74f71eb 818static int smack_inode_permission(struct inode *inode, int mask)
e114e473 819{
ecfcc53f 820 struct smk_audit_info ad;
e74f71eb 821 int no_block = mask & MAY_NOT_BLOCK;
d09ca739
EP
822
823 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
e114e473
CS
824 /*
825 * No permission to check. Existence test. Yup, it's there.
826 */
827 if (mask == 0)
828 return 0;
8c9e80ed
AK
829
830 /* May be droppable after audit */
e74f71eb 831 if (no_block)
8c9e80ed 832 return -ECHILD;
f48b7399 833 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
ecfcc53f
EB
834 smk_ad_setfield_u_fs_inode(&ad, inode);
835 return smk_curacc(smk_of_inode(inode), mask, &ad);
e114e473
CS
836}
837
838/**
839 * smack_inode_setattr - Smack check for setting attributes
840 * @dentry: the object
841 * @iattr: for the force flag
842 *
843 * Returns 0 if access is permitted, an error code otherwise
844 */
845static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
846{
ecfcc53f 847 struct smk_audit_info ad;
e114e473
CS
848 /*
849 * Need to allow for clearing the setuid bit.
850 */
851 if (iattr->ia_valid & ATTR_FORCE)
852 return 0;
a269434d 853 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f 854 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
e114e473 855
ecfcc53f 856 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
e114e473
CS
857}
858
859/**
860 * smack_inode_getattr - Smack check for getting attributes
861 * @mnt: unused
862 * @dentry: the object
863 *
864 * Returns 0 if access is permitted, an error code otherwise
865 */
866static int smack_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
867{
ecfcc53f 868 struct smk_audit_info ad;
a269434d 869 struct path path;
ecfcc53f 870
a269434d
EP
871 path.dentry = dentry;
872 path.mnt = mnt;
ecfcc53f 873
f48b7399 874 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
a269434d 875 smk_ad_setfield_u_fs_path(&ad, path);
ecfcc53f 876 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad);
e114e473
CS
877}
878
879/**
880 * smack_inode_setxattr - Smack check for setting xattrs
881 * @dentry: the object
882 * @name: name of the attribute
883 * @value: unused
884 * @size: unused
885 * @flags: unused
886 *
887 * This protects the Smack attribute explicitly.
888 *
889 * Returns 0 if access is permitted, an error code otherwise
890 */
8f0cfa52
DH
891static int smack_inode_setxattr(struct dentry *dentry, const char *name,
892 const void *value, size_t size, int flags)
e114e473 893{
ecfcc53f 894 struct smk_audit_info ad;
19760ad0
CS
895 struct smack_known *skp;
896 int check_priv = 0;
897 int check_import = 0;
898 int check_star = 0;
bcdca225 899 int rc = 0;
e114e473 900
19760ad0
CS
901 /*
902 * Check label validity here so import won't fail in post_setxattr
903 */
bcdca225
CS
904 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
905 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
19760ad0
CS
906 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
907 check_priv = 1;
908 check_import = 1;
909 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
910 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
911 check_priv = 1;
912 check_import = 1;
913 check_star = 1;
5c6d1125 914 } else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
19760ad0 915 check_priv = 1;
5c6d1125
JS
916 if (size != TRANS_TRUE_SIZE ||
917 strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
918 rc = -EINVAL;
bcdca225
CS
919 } else
920 rc = cap_inode_setxattr(dentry, name, value, size, flags);
921
19760ad0
CS
922 if (check_priv && !smack_privileged(CAP_MAC_ADMIN))
923 rc = -EPERM;
924
925 if (rc == 0 && check_import) {
926 skp = smk_import_entry(value, size);
927 if (skp == NULL || (check_star &&
928 (skp == &smack_known_star || skp == &smack_known_web)))
929 rc = -EINVAL;
930 }
931
a269434d 932 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f
EB
933 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
934
bcdca225 935 if (rc == 0)
ecfcc53f 936 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
bcdca225
CS
937
938 return rc;
e114e473
CS
939}
940
941/**
942 * smack_inode_post_setxattr - Apply the Smack update approved above
943 * @dentry: object
944 * @name: attribute name
945 * @value: attribute value
946 * @size: attribute size
947 * @flags: unused
948 *
949 * Set the pointer in the inode blob to the entry found
950 * in the master label list.
951 */
8f0cfa52
DH
952static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
953 const void *value, size_t size, int flags)
e114e473 954{
2f823ff8 955 struct smack_known *skp;
5c6d1125 956 struct inode_smack *isp = dentry->d_inode->i_security;
676dac4b 957
2f823ff8
CS
958 if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
959 isp->smk_flags |= SMK_INODE_TRANSMUTE;
960 return;
961 }
962
963 skp = smk_import_entry(value, size);
676dac4b 964 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
2f823ff8
CS
965 if (skp != NULL)
966 isp->smk_inode = skp->smk_known;
676dac4b
CS
967 else
968 isp->smk_inode = smack_known_invalid.smk_known;
5c6d1125 969 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0) {
2f823ff8
CS
970 if (skp != NULL)
971 isp->smk_task = skp;
676dac4b 972 else
2f823ff8 973 isp->smk_task = &smack_known_invalid;
7898e1f8 974 } else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
2f823ff8
CS
975 if (skp != NULL)
976 isp->smk_mmap = skp;
7898e1f8 977 else
2f823ff8
CS
978 isp->smk_mmap = &smack_known_invalid;
979 }
e114e473
CS
980
981 return;
982}
983
ce8a4321 984/**
e114e473
CS
985 * smack_inode_getxattr - Smack check on getxattr
986 * @dentry: the object
987 * @name: unused
988 *
989 * Returns 0 if access is permitted, an error code otherwise
990 */
8f0cfa52 991static int smack_inode_getxattr(struct dentry *dentry, const char *name)
e114e473 992{
ecfcc53f
EB
993 struct smk_audit_info ad;
994
a269434d 995 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f
EB
996 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
997
998 return smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad);
e114e473
CS
999}
1000
ce8a4321 1001/**
e114e473
CS
1002 * smack_inode_removexattr - Smack check on removexattr
1003 * @dentry: the object
1004 * @name: name of the attribute
1005 *
1006 * Removing the Smack attribute requires CAP_MAC_ADMIN
1007 *
1008 * Returns 0 if access is permitted, an error code otherwise
1009 */
8f0cfa52 1010static int smack_inode_removexattr(struct dentry *dentry, const char *name)
e114e473 1011{
676dac4b 1012 struct inode_smack *isp;
ecfcc53f 1013 struct smk_audit_info ad;
bcdca225 1014 int rc = 0;
e114e473 1015
bcdca225
CS
1016 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1017 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
676dac4b 1018 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 ||
5c6d1125 1019 strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
7898e1f8
CS
1020 strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 ||
1021 strcmp(name, XATTR_NAME_SMACKMMAP)) {
1880eff7 1022 if (!smack_privileged(CAP_MAC_ADMIN))
bcdca225
CS
1023 rc = -EPERM;
1024 } else
1025 rc = cap_inode_removexattr(dentry, name);
1026
a269434d 1027 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
ecfcc53f 1028 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
bcdca225 1029 if (rc == 0)
ecfcc53f 1030 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
bcdca225 1031
676dac4b
CS
1032 if (rc == 0) {
1033 isp = dentry->d_inode->i_security;
1034 isp->smk_task = NULL;
7898e1f8 1035 isp->smk_mmap = NULL;
676dac4b
CS
1036 }
1037
bcdca225 1038 return rc;
e114e473
CS
1039}
1040
1041/**
1042 * smack_inode_getsecurity - get smack xattrs
1043 * @inode: the object
1044 * @name: attribute name
1045 * @buffer: where to put the result
251a2a95 1046 * @alloc: unused
e114e473
CS
1047 *
1048 * Returns the size of the attribute or an error code
1049 */
1050static int smack_inode_getsecurity(const struct inode *inode,
1051 const char *name, void **buffer,
1052 bool alloc)
1053{
1054 struct socket_smack *ssp;
1055 struct socket *sock;
1056 struct super_block *sbp;
1057 struct inode *ip = (struct inode *)inode;
1058 char *isp;
1059 int ilen;
1060 int rc = 0;
1061
1062 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
1063 isp = smk_of_inode(inode);
1064 ilen = strlen(isp) + 1;
1065 *buffer = isp;
1066 return ilen;
1067 }
1068
1069 /*
1070 * The rest of the Smack xattrs are only on sockets.
1071 */
1072 sbp = ip->i_sb;
1073 if (sbp->s_magic != SOCKFS_MAGIC)
1074 return -EOPNOTSUPP;
1075
1076 sock = SOCKET_I(ip);
2e1d146a 1077 if (sock == NULL || sock->sk == NULL)
e114e473
CS
1078 return -EOPNOTSUPP;
1079
1080 ssp = sock->sk->sk_security;
1081
1082 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
1083 isp = ssp->smk_in;
1084 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
2f823ff8 1085 isp = ssp->smk_out->smk_known;
e114e473
CS
1086 else
1087 return -EOPNOTSUPP;
1088
1089 ilen = strlen(isp) + 1;
1090 if (rc == 0) {
1091 *buffer = isp;
1092 rc = ilen;
1093 }
1094
1095 return rc;
1096}
1097
1098
1099/**
1100 * smack_inode_listsecurity - list the Smack attributes
1101 * @inode: the object
1102 * @buffer: where they go
1103 * @buffer_size: size of buffer
1104 *
1105 * Returns 0 on success, -EINVAL otherwise
1106 */
1107static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1108 size_t buffer_size)
1109{
1110 int len = strlen(XATTR_NAME_SMACK);
1111
1112 if (buffer != NULL && len <= buffer_size) {
1113 memcpy(buffer, XATTR_NAME_SMACK, len);
1114 return len;
1115 }
1116 return -EINVAL;
1117}
1118
d20bdda6
AD
1119/**
1120 * smack_inode_getsecid - Extract inode's security id
1121 * @inode: inode to extract the info from
1122 * @secid: where result will be saved
1123 */
1124static void smack_inode_getsecid(const struct inode *inode, u32 *secid)
1125{
1126 struct inode_smack *isp = inode->i_security;
1127
1128 *secid = smack_to_secid(isp->smk_inode);
1129}
1130
e114e473
CS
1131/*
1132 * File Hooks
1133 */
1134
1135/**
1136 * smack_file_permission - Smack check on file operations
1137 * @file: unused
1138 * @mask: unused
1139 *
1140 * Returns 0
1141 *
1142 * Should access checks be done on each read or write?
1143 * UNICOS and SELinux say yes.
1144 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
1145 *
1146 * I'll say no for now. Smack does not do the frequent
1147 * label changing that SELinux does.
1148 */
1149static int smack_file_permission(struct file *file, int mask)
1150{
1151 return 0;
1152}
1153
1154/**
1155 * smack_file_alloc_security - assign a file security blob
1156 * @file: the object
1157 *
1158 * The security blob for a file is a pointer to the master
1159 * label list, so no allocation is done.
1160 *
1161 * Returns 0
1162 */
1163static int smack_file_alloc_security(struct file *file)
1164{
2f823ff8
CS
1165 struct smack_known *skp = smk_of_current();
1166
1167 file->f_security = skp->smk_known;
e114e473
CS
1168 return 0;
1169}
1170
1171/**
1172 * smack_file_free_security - clear a file security blob
1173 * @file: the object
1174 *
1175 * The security blob for a file is a pointer to the master
1176 * label list, so no memory is freed.
1177 */
1178static void smack_file_free_security(struct file *file)
1179{
1180 file->f_security = NULL;
1181}
1182
1183/**
1184 * smack_file_ioctl - Smack check on ioctls
1185 * @file: the object
1186 * @cmd: what to do
1187 * @arg: unused
1188 *
1189 * Relies heavily on the correct use of the ioctl command conventions.
1190 *
1191 * Returns 0 if allowed, error code otherwise
1192 */
1193static int smack_file_ioctl(struct file *file, unsigned int cmd,
1194 unsigned long arg)
1195{
1196 int rc = 0;
ecfcc53f
EB
1197 struct smk_audit_info ad;
1198
f48b7399 1199 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
ecfcc53f 1200 smk_ad_setfield_u_fs_path(&ad, file->f_path);
e114e473
CS
1201
1202 if (_IOC_DIR(cmd) & _IOC_WRITE)
ecfcc53f 1203 rc = smk_curacc(file->f_security, MAY_WRITE, &ad);
e114e473
CS
1204
1205 if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ))
ecfcc53f 1206 rc = smk_curacc(file->f_security, MAY_READ, &ad);
e114e473
CS
1207
1208 return rc;
1209}
1210
1211/**
1212 * smack_file_lock - Smack check on file locking
1213 * @file: the object
251a2a95 1214 * @cmd: unused
e114e473 1215 *
c0ab6e56 1216 * Returns 0 if current has lock access, error code otherwise
e114e473
CS
1217 */
1218static int smack_file_lock(struct file *file, unsigned int cmd)
1219{
ecfcc53f
EB
1220 struct smk_audit_info ad;
1221
92f42509
EP
1222 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1223 smk_ad_setfield_u_fs_path(&ad, file->f_path);
c0ab6e56 1224 return smk_curacc(file->f_security, MAY_LOCK, &ad);
e114e473
CS
1225}
1226
1227/**
1228 * smack_file_fcntl - Smack check on fcntl
1229 * @file: the object
1230 * @cmd: what action to check
1231 * @arg: unused
1232 *
531f1d45
CS
1233 * Generally these operations are harmless.
1234 * File locking operations present an obvious mechanism
1235 * for passing information, so they require write access.
1236 *
e114e473
CS
1237 * Returns 0 if current has access, error code otherwise
1238 */
1239static int smack_file_fcntl(struct file *file, unsigned int cmd,
1240 unsigned long arg)
1241{
ecfcc53f 1242 struct smk_audit_info ad;
531f1d45 1243 int rc = 0;
e114e473 1244
ecfcc53f 1245
e114e473 1246 switch (cmd) {
e114e473 1247 case F_GETLK:
c0ab6e56 1248 break;
e114e473
CS
1249 case F_SETLK:
1250 case F_SETLKW:
c0ab6e56
CS
1251 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1252 smk_ad_setfield_u_fs_path(&ad, file->f_path);
1253 rc = smk_curacc(file->f_security, MAY_LOCK, &ad);
1254 break;
e114e473
CS
1255 case F_SETOWN:
1256 case F_SETSIG:
531f1d45
CS
1257 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1258 smk_ad_setfield_u_fs_path(&ad, file->f_path);
ecfcc53f 1259 rc = smk_curacc(file->f_security, MAY_WRITE, &ad);
e114e473
CS
1260 break;
1261 default:
531f1d45 1262 break;
e114e473
CS
1263 }
1264
1265 return rc;
1266}
1267
7898e1f8 1268/**
e5467859 1269 * smack_mmap_file :
7898e1f8
CS
1270 * Check permissions for a mmap operation. The @file may be NULL, e.g.
1271 * if mapping anonymous memory.
1272 * @file contains the file structure for file to map (may be NULL).
1273 * @reqprot contains the protection requested by the application.
1274 * @prot contains the protection that will be applied by the kernel.
1275 * @flags contains the operational flags.
1276 * Return 0 if permission is granted.
1277 */
e5467859 1278static int smack_mmap_file(struct file *file,
7898e1f8 1279 unsigned long reqprot, unsigned long prot,
e5467859 1280 unsigned long flags)
7898e1f8 1281{
272cd7a8 1282 struct smack_known *skp;
2f823ff8 1283 struct smack_known *mkp;
7898e1f8
CS
1284 struct smack_rule *srp;
1285 struct task_smack *tsp;
0e0a070d 1286 char *osmack;
7898e1f8 1287 struct inode_smack *isp;
0e0a070d
CS
1288 int may;
1289 int mmay;
1290 int tmay;
7898e1f8
CS
1291 int rc;
1292
496ad9aa 1293 if (file == NULL)
7898e1f8
CS
1294 return 0;
1295
496ad9aa 1296 isp = file_inode(file)->i_security;
7898e1f8
CS
1297 if (isp->smk_mmap == NULL)
1298 return 0;
2f823ff8 1299 mkp = isp->smk_mmap;
7898e1f8
CS
1300
1301 tsp = current_security();
2f823ff8 1302 skp = smk_of_current();
7898e1f8
CS
1303 rc = 0;
1304
1305 rcu_read_lock();
1306 /*
1307 * For each Smack rule associated with the subject
1308 * label verify that the SMACK64MMAP also has access
1309 * to that rule's object label.
7898e1f8 1310 */
272cd7a8 1311 list_for_each_entry_rcu(srp, &skp->smk_rules, list) {
0e0a070d 1312 osmack = srp->smk_object;
7898e1f8
CS
1313 /*
1314 * Matching labels always allows access.
1315 */
2f823ff8 1316 if (mkp->smk_known == osmack)
7898e1f8 1317 continue;
0e0a070d
CS
1318 /*
1319 * If there is a matching local rule take
1320 * that into account as well.
1321 */
2f823ff8 1322 may = smk_access_entry(srp->smk_subject->smk_known, osmack,
0e0a070d
CS
1323 &tsp->smk_rules);
1324 if (may == -ENOENT)
1325 may = srp->smk_access;
1326 else
1327 may &= srp->smk_access;
1328 /*
1329 * If may is zero the SMACK64MMAP subject can't
1330 * possibly have less access.
1331 */
1332 if (may == 0)
1333 continue;
1334
1335 /*
1336 * Fetch the global list entry.
1337 * If there isn't one a SMACK64MMAP subject
1338 * can't have as much access as current.
1339 */
2f823ff8
CS
1340 mmay = smk_access_entry(mkp->smk_known, osmack,
1341 &mkp->smk_rules);
0e0a070d
CS
1342 if (mmay == -ENOENT) {
1343 rc = -EACCES;
1344 break;
1345 }
1346 /*
1347 * If there is a local entry it modifies the
1348 * potential access, too.
1349 */
2f823ff8
CS
1350 tmay = smk_access_entry(mkp->smk_known, osmack,
1351 &tsp->smk_rules);
0e0a070d
CS
1352 if (tmay != -ENOENT)
1353 mmay &= tmay;
7898e1f8 1354
0e0a070d
CS
1355 /*
1356 * If there is any access available to current that is
1357 * not available to a SMACK64MMAP subject
1358 * deny access.
1359 */
75a25637 1360 if ((may | mmay) != mmay) {
0e0a070d 1361 rc = -EACCES;
7898e1f8 1362 break;
0e0a070d 1363 }
7898e1f8
CS
1364 }
1365
1366 rcu_read_unlock();
1367
1368 return rc;
1369}
1370
e114e473
CS
1371/**
1372 * smack_file_set_fowner - set the file security blob value
1373 * @file: object in question
1374 *
1375 * Returns 0
1376 * Further research may be required on this one.
1377 */
1378static int smack_file_set_fowner(struct file *file)
1379{
2f823ff8
CS
1380 struct smack_known *skp = smk_of_current();
1381
1382 file->f_security = skp->smk_known;
e114e473
CS
1383 return 0;
1384}
1385
1386/**
1387 * smack_file_send_sigiotask - Smack on sigio
1388 * @tsk: The target task
1389 * @fown: the object the signal come from
1390 * @signum: unused
1391 *
1392 * Allow a privileged task to get signals even if it shouldn't
1393 *
1394 * Returns 0 if a subject with the object's smack could
1395 * write to the task, an error code otherwise.
1396 */
1397static int smack_file_send_sigiotask(struct task_struct *tsk,
1398 struct fown_struct *fown, int signum)
1399{
2f823ff8
CS
1400 struct smack_known *skp;
1401 struct smack_known *tkp = smk_of_task(tsk->cred->security);
e114e473
CS
1402 struct file *file;
1403 int rc;
ecfcc53f 1404 struct smk_audit_info ad;
e114e473
CS
1405
1406 /*
1407 * struct fown_struct is never outside the context of a struct file
1408 */
1409 file = container_of(fown, struct file, f_owner);
7898e1f8 1410
ecfcc53f 1411 /* we don't log here as rc can be overriden */
2f823ff8
CS
1412 skp = smk_find_entry(file->f_security);
1413 rc = smk_access(skp, tkp->smk_known, MAY_WRITE, NULL);
5cd9c58f 1414 if (rc != 0 && has_capability(tsk, CAP_MAC_OVERRIDE))
ecfcc53f
EB
1415 rc = 0;
1416
1417 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1418 smk_ad_setfield_u_tsk(&ad, tsk);
2f823ff8 1419 smack_log(file->f_security, tkp->smk_known, MAY_WRITE, rc, &ad);
e114e473
CS
1420 return rc;
1421}
1422
1423/**
1424 * smack_file_receive - Smack file receive check
1425 * @file: the object
1426 *
1427 * Returns 0 if current has access, error code otherwise
1428 */
1429static int smack_file_receive(struct file *file)
1430{
1431 int may = 0;
ecfcc53f 1432 struct smk_audit_info ad;
e114e473 1433
4482a44f 1434 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
ecfcc53f 1435 smk_ad_setfield_u_fs_path(&ad, file->f_path);
e114e473
CS
1436 /*
1437 * This code relies on bitmasks.
1438 */
1439 if (file->f_mode & FMODE_READ)
1440 may = MAY_READ;
1441 if (file->f_mode & FMODE_WRITE)
1442 may |= MAY_WRITE;
1443
ecfcc53f 1444 return smk_curacc(file->f_security, may, &ad);
e114e473
CS
1445}
1446
531f1d45 1447/**
83d49856 1448 * smack_file_open - Smack dentry open processing
531f1d45
CS
1449 * @file: the object
1450 * @cred: unused
1451 *
1452 * Set the security blob in the file structure.
1453 *
1454 * Returns 0
1455 */
83d49856 1456static int smack_file_open(struct file *file, const struct cred *cred)
531f1d45 1457{
496ad9aa 1458 struct inode_smack *isp = file_inode(file)->i_security;
531f1d45
CS
1459
1460 file->f_security = isp->smk_inode;
1461
1462 return 0;
1463}
1464
e114e473
CS
1465/*
1466 * Task hooks
1467 */
1468
ee18d64c
DH
1469/**
1470 * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1471 * @new: the new credentials
1472 * @gfp: the atomicity of any memory allocations
1473 *
1474 * Prepare a blank set of credentials for modification. This must allocate all
1475 * the memory the LSM module might require such that cred_transfer() can
1476 * complete without error.
1477 */
1478static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1479{
7898e1f8
CS
1480 struct task_smack *tsp;
1481
1482 tsp = new_task_smack(NULL, NULL, gfp);
1483 if (tsp == NULL)
676dac4b 1484 return -ENOMEM;
7898e1f8
CS
1485
1486 cred->security = tsp;
1487
ee18d64c
DH
1488 return 0;
1489}
1490
1491
e114e473 1492/**
f1752eec
DH
1493 * smack_cred_free - "free" task-level security credentials
1494 * @cred: the credentials in question
e114e473 1495 *
e114e473 1496 */
f1752eec 1497static void smack_cred_free(struct cred *cred)
e114e473 1498{
7898e1f8
CS
1499 struct task_smack *tsp = cred->security;
1500 struct smack_rule *rp;
1501 struct list_head *l;
1502 struct list_head *n;
1503
1504 if (tsp == NULL)
1505 return;
1506 cred->security = NULL;
1507
1508 list_for_each_safe(l, n, &tsp->smk_rules) {
1509 rp = list_entry(l, struct smack_rule, list);
1510 list_del(&rp->list);
1511 kfree(rp);
1512 }
1513 kfree(tsp);
e114e473
CS
1514}
1515
d84f4f99
DH
1516/**
1517 * smack_cred_prepare - prepare new set of credentials for modification
1518 * @new: the new credentials
1519 * @old: the original credentials
1520 * @gfp: the atomicity of any memory allocations
1521 *
1522 * Prepare a new set of credentials for modification.
1523 */
1524static int smack_cred_prepare(struct cred *new, const struct cred *old,
1525 gfp_t gfp)
1526{
676dac4b
CS
1527 struct task_smack *old_tsp = old->security;
1528 struct task_smack *new_tsp;
7898e1f8 1529 int rc;
676dac4b 1530
7898e1f8 1531 new_tsp = new_task_smack(old_tsp->smk_task, old_tsp->smk_task, gfp);
676dac4b
CS
1532 if (new_tsp == NULL)
1533 return -ENOMEM;
1534
7898e1f8
CS
1535 rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
1536 if (rc != 0)
1537 return rc;
1538
676dac4b 1539 new->security = new_tsp;
d84f4f99
DH
1540 return 0;
1541}
1542
ee18d64c
DH
1543/**
1544 * smack_cred_transfer - Transfer the old credentials to the new credentials
1545 * @new: the new credentials
1546 * @old: the original credentials
1547 *
1548 * Fill in a set of blank credentials from another set of credentials.
1549 */
1550static void smack_cred_transfer(struct cred *new, const struct cred *old)
1551{
676dac4b
CS
1552 struct task_smack *old_tsp = old->security;
1553 struct task_smack *new_tsp = new->security;
1554
1555 new_tsp->smk_task = old_tsp->smk_task;
1556 new_tsp->smk_forked = old_tsp->smk_task;
7898e1f8
CS
1557 mutex_init(&new_tsp->smk_rules_lock);
1558 INIT_LIST_HEAD(&new_tsp->smk_rules);
1559
1560
1561 /* cbs copy rule list */
ee18d64c
DH
1562}
1563
3a3b7ce9
DH
1564/**
1565 * smack_kernel_act_as - Set the subjective context in a set of credentials
251a2a95
RD
1566 * @new: points to the set of credentials to be modified.
1567 * @secid: specifies the security ID to be set
3a3b7ce9
DH
1568 *
1569 * Set the security data for a kernel service.
1570 */
1571static int smack_kernel_act_as(struct cred *new, u32 secid)
1572{
676dac4b 1573 struct task_smack *new_tsp = new->security;
2f823ff8 1574 struct smack_known *skp = smack_from_secid(secid);
3a3b7ce9 1575
2f823ff8 1576 if (skp == NULL)
3a3b7ce9
DH
1577 return -EINVAL;
1578
2f823ff8 1579 new_tsp->smk_task = skp;
3a3b7ce9
DH
1580 return 0;
1581}
1582
1583/**
1584 * smack_kernel_create_files_as - Set the file creation label in a set of creds
251a2a95
RD
1585 * @new: points to the set of credentials to be modified
1586 * @inode: points to the inode to use as a reference
3a3b7ce9
DH
1587 *
1588 * Set the file creation context in a set of credentials to the same
1589 * as the objective context of the specified inode
1590 */
1591static int smack_kernel_create_files_as(struct cred *new,
1592 struct inode *inode)
1593{
1594 struct inode_smack *isp = inode->i_security;
676dac4b 1595 struct task_smack *tsp = new->security;
3a3b7ce9 1596
2f823ff8
CS
1597 tsp->smk_forked = smk_find_entry(isp->smk_inode);
1598 tsp->smk_task = tsp->smk_forked;
3a3b7ce9
DH
1599 return 0;
1600}
1601
ecfcc53f
EB
1602/**
1603 * smk_curacc_on_task - helper to log task related access
1604 * @p: the task object
531f1d45
CS
1605 * @access: the access requested
1606 * @caller: name of the calling function for audit
ecfcc53f
EB
1607 *
1608 * Return 0 if access is permitted
1609 */
531f1d45
CS
1610static int smk_curacc_on_task(struct task_struct *p, int access,
1611 const char *caller)
ecfcc53f
EB
1612{
1613 struct smk_audit_info ad;
2f823ff8 1614 struct smack_known *skp = smk_of_task(task_security(p));
ecfcc53f 1615
531f1d45 1616 smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
ecfcc53f 1617 smk_ad_setfield_u_tsk(&ad, p);
2f823ff8 1618 return smk_curacc(skp->smk_known, access, &ad);
ecfcc53f
EB
1619}
1620
e114e473
CS
1621/**
1622 * smack_task_setpgid - Smack check on setting pgid
1623 * @p: the task object
1624 * @pgid: unused
1625 *
1626 * Return 0 if write access is permitted
1627 */
1628static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
1629{
531f1d45 1630 return smk_curacc_on_task(p, MAY_WRITE, __func__);
e114e473
CS
1631}
1632
1633/**
1634 * smack_task_getpgid - Smack access check for getpgid
1635 * @p: the object task
1636 *
1637 * Returns 0 if current can read the object task, error code otherwise
1638 */
1639static int smack_task_getpgid(struct task_struct *p)
1640{
531f1d45 1641 return smk_curacc_on_task(p, MAY_READ, __func__);
e114e473
CS
1642}
1643
1644/**
1645 * smack_task_getsid - Smack access check for getsid
1646 * @p: the object task
1647 *
1648 * Returns 0 if current can read the object task, error code otherwise
1649 */
1650static int smack_task_getsid(struct task_struct *p)
1651{
531f1d45 1652 return smk_curacc_on_task(p, MAY_READ, __func__);
e114e473
CS
1653}
1654
1655/**
1656 * smack_task_getsecid - get the secid of the task
1657 * @p: the object task
1658 * @secid: where to put the result
1659 *
1660 * Sets the secid to contain a u32 version of the smack label.
1661 */
1662static void smack_task_getsecid(struct task_struct *p, u32 *secid)
1663{
2f823ff8
CS
1664 struct smack_known *skp = smk_of_task(task_security(p));
1665
1666 *secid = skp->smk_secid;
e114e473
CS
1667}
1668
1669/**
1670 * smack_task_setnice - Smack check on setting nice
1671 * @p: the task object
1672 * @nice: unused
1673 *
1674 * Return 0 if write access is permitted
1675 */
1676static int smack_task_setnice(struct task_struct *p, int nice)
1677{
bcdca225
CS
1678 int rc;
1679
1680 rc = cap_task_setnice(p, nice);
1681 if (rc == 0)
531f1d45 1682 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
bcdca225 1683 return rc;
e114e473
CS
1684}
1685
1686/**
1687 * smack_task_setioprio - Smack check on setting ioprio
1688 * @p: the task object
1689 * @ioprio: unused
1690 *
1691 * Return 0 if write access is permitted
1692 */
1693static int smack_task_setioprio(struct task_struct *p, int ioprio)
1694{
bcdca225
CS
1695 int rc;
1696
1697 rc = cap_task_setioprio(p, ioprio);
1698 if (rc == 0)
531f1d45 1699 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
bcdca225 1700 return rc;
e114e473
CS
1701}
1702
1703/**
1704 * smack_task_getioprio - Smack check on reading ioprio
1705 * @p: the task object
1706 *
1707 * Return 0 if read access is permitted
1708 */
1709static int smack_task_getioprio(struct task_struct *p)
1710{
531f1d45 1711 return smk_curacc_on_task(p, MAY_READ, __func__);
e114e473
CS
1712}
1713
1714/**
1715 * smack_task_setscheduler - Smack check on setting scheduler
1716 * @p: the task object
1717 * @policy: unused
1718 * @lp: unused
1719 *
1720 * Return 0 if read access is permitted
1721 */
b0ae1981 1722static int smack_task_setscheduler(struct task_struct *p)
e114e473 1723{
bcdca225
CS
1724 int rc;
1725
b0ae1981 1726 rc = cap_task_setscheduler(p);
bcdca225 1727 if (rc == 0)
531f1d45 1728 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
bcdca225 1729 return rc;
e114e473
CS
1730}
1731
1732/**
1733 * smack_task_getscheduler - Smack check on reading scheduler
1734 * @p: the task object
1735 *
1736 * Return 0 if read access is permitted
1737 */
1738static int smack_task_getscheduler(struct task_struct *p)
1739{
531f1d45 1740 return smk_curacc_on_task(p, MAY_READ, __func__);
e114e473
CS
1741}
1742
1743/**
1744 * smack_task_movememory - Smack check on moving memory
1745 * @p: the task object
1746 *
1747 * Return 0 if write access is permitted
1748 */
1749static int smack_task_movememory(struct task_struct *p)
1750{
531f1d45 1751 return smk_curacc_on_task(p, MAY_WRITE, __func__);
e114e473
CS
1752}
1753
1754/**
1755 * smack_task_kill - Smack check on signal delivery
1756 * @p: the task object
1757 * @info: unused
1758 * @sig: unused
1759 * @secid: identifies the smack to use in lieu of current's
1760 *
1761 * Return 0 if write access is permitted
1762 *
1763 * The secid behavior is an artifact of an SELinux hack
1764 * in the USB code. Someday it may go away.
1765 */
1766static int smack_task_kill(struct task_struct *p, struct siginfo *info,
1767 int sig, u32 secid)
1768{
ecfcc53f 1769 struct smk_audit_info ad;
2f823ff8
CS
1770 struct smack_known *skp;
1771 struct smack_known *tkp = smk_of_task(task_security(p));
ecfcc53f
EB
1772
1773 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1774 smk_ad_setfield_u_tsk(&ad, p);
e114e473
CS
1775 /*
1776 * Sending a signal requires that the sender
1777 * can write the receiver.
1778 */
1779 if (secid == 0)
2f823ff8 1780 return smk_curacc(tkp->smk_known, MAY_WRITE, &ad);
e114e473
CS
1781 /*
1782 * If the secid isn't 0 we're dealing with some USB IO
1783 * specific behavior. This is not clean. For one thing
1784 * we can't take privilege into account.
1785 */
2f823ff8
CS
1786 skp = smack_from_secid(secid);
1787 return smk_access(skp, tkp->smk_known, MAY_WRITE, &ad);
e114e473
CS
1788}
1789
1790/**
1791 * smack_task_wait - Smack access check for waiting
1792 * @p: task to wait for
1793 *
c00bedb3 1794 * Returns 0
e114e473
CS
1795 */
1796static int smack_task_wait(struct task_struct *p)
1797{
e114e473 1798 /*
c00bedb3
CS
1799 * Allow the operation to succeed.
1800 * Zombies are bad.
1801 * In userless environments (e.g. phones) programs
1802 * get marked with SMACK64EXEC and even if the parent
1803 * and child shouldn't be talking the parent still
1804 * may expect to know when the child exits.
e114e473 1805 */
c00bedb3 1806 return 0;
e114e473
CS
1807}
1808
1809/**
1810 * smack_task_to_inode - copy task smack into the inode blob
1811 * @p: task to copy from
251a2a95 1812 * @inode: inode to copy to
e114e473
CS
1813 *
1814 * Sets the smack pointer in the inode security blob
1815 */
1816static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
1817{
1818 struct inode_smack *isp = inode->i_security;
2f823ff8
CS
1819 struct smack_known *skp = smk_of_task(task_security(p));
1820
1821 isp->smk_inode = skp->smk_known;
e114e473
CS
1822}
1823
1824/*
1825 * Socket hooks.
1826 */
1827
1828/**
1829 * smack_sk_alloc_security - Allocate a socket blob
1830 * @sk: the socket
1831 * @family: unused
251a2a95 1832 * @gfp_flags: memory allocation flags
e114e473
CS
1833 *
1834 * Assign Smack pointers to current
1835 *
1836 * Returns 0 on success, -ENOMEM is there's no memory
1837 */
1838static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
1839{
2f823ff8 1840 struct smack_known *skp = smk_of_current();
e114e473
CS
1841 struct socket_smack *ssp;
1842
1843 ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
1844 if (ssp == NULL)
1845 return -ENOMEM;
1846
2f823ff8
CS
1847 ssp->smk_in = skp->smk_known;
1848 ssp->smk_out = skp;
272cd7a8 1849 ssp->smk_packet = NULL;
e114e473
CS
1850
1851 sk->sk_security = ssp;
1852
1853 return 0;
1854}
1855
1856/**
1857 * smack_sk_free_security - Free a socket blob
1858 * @sk: the socket
1859 *
1860 * Clears the blob pointer
1861 */
1862static void smack_sk_free_security(struct sock *sk)
1863{
1864 kfree(sk->sk_security);
1865}
1866
07feee8f
PM
1867/**
1868* smack_host_label - check host based restrictions
1869* @sip: the object end
1870*
1871* looks for host based access restrictions
1872*
1873* This version will only be appropriate for really small sets of single label
1874* hosts. The caller is responsible for ensuring that the RCU read lock is
1875* taken before calling this function.
1876*
1877* Returns the label of the far end or NULL if it's not special.
1878*/
1879static char *smack_host_label(struct sockaddr_in *sip)
1880{
1881 struct smk_netlbladdr *snp;
1882 struct in_addr *siap = &sip->sin_addr;
1883
1884 if (siap->s_addr == 0)
1885 return NULL;
1886
1887 list_for_each_entry_rcu(snp, &smk_netlbladdr_list, list)
1888 /*
1889 * we break after finding the first match because
1890 * the list is sorted from longest to shortest mask
1891 * so we have found the most specific match
1892 */
1893 if ((&snp->smk_host.sin_addr)->s_addr ==
4303154e
EB
1894 (siap->s_addr & (&snp->smk_mask)->s_addr)) {
1895 /* we have found the special CIPSO option */
1896 if (snp->smk_label == smack_cipso_option)
1897 return NULL;
07feee8f 1898 return snp->smk_label;
4303154e 1899 }
07feee8f
PM
1900
1901 return NULL;
1902}
1903
e114e473
CS
1904/**
1905 * smack_netlabel - Set the secattr on a socket
1906 * @sk: the socket
6d3dc07c 1907 * @labeled: socket label scheme
e114e473
CS
1908 *
1909 * Convert the outbound smack value (smk_out) to a
1910 * secattr and attach it to the socket.
1911 *
1912 * Returns 0 on success or an error code
1913 */
6d3dc07c 1914static int smack_netlabel(struct sock *sk, int labeled)
e114e473 1915{
f7112e6c 1916 struct smack_known *skp;
07feee8f 1917 struct socket_smack *ssp = sk->sk_security;
6d3dc07c 1918 int rc = 0;
e114e473 1919
6d3dc07c
CS
1920 /*
1921 * Usually the netlabel code will handle changing the
1922 * packet labeling based on the label.
1923 * The case of a single label host is different, because
1924 * a single label host should never get a labeled packet
1925 * even though the label is usually associated with a packet
1926 * label.
1927 */
1928 local_bh_disable();
1929 bh_lock_sock_nested(sk);
1930
1931 if (ssp->smk_out == smack_net_ambient ||
1932 labeled == SMACK_UNLABELED_SOCKET)
1933 netlbl_sock_delattr(sk);
1934 else {
2f823ff8 1935 skp = ssp->smk_out;
f7112e6c 1936 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
6d3dc07c
CS
1937 }
1938
1939 bh_unlock_sock(sk);
1940 local_bh_enable();
4bc87e62 1941
e114e473
CS
1942 return rc;
1943}
1944
07feee8f
PM
1945/**
1946 * smack_netlbel_send - Set the secattr on a socket and perform access checks
1947 * @sk: the socket
1948 * @sap: the destination address
1949 *
1950 * Set the correct secattr for the given socket based on the destination
1951 * address and perform any outbound access checks needed.
1952 *
1953 * Returns 0 on success or an error code.
1954 *
1955 */
1956static int smack_netlabel_send(struct sock *sk, struct sockaddr_in *sap)
1957{
2f823ff8 1958 struct smack_known *skp;
07feee8f
PM
1959 int rc;
1960 int sk_lbl;
1961 char *hostsp;
1962 struct socket_smack *ssp = sk->sk_security;
ecfcc53f 1963 struct smk_audit_info ad;
07feee8f
PM
1964
1965 rcu_read_lock();
1966 hostsp = smack_host_label(sap);
1967 if (hostsp != NULL) {
ecfcc53f 1968#ifdef CONFIG_AUDIT
923e9a13
KC
1969 struct lsm_network_audit net;
1970
48c62af6
EP
1971 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
1972 ad.a.u.net->family = sap->sin_family;
1973 ad.a.u.net->dport = sap->sin_port;
1974 ad.a.u.net->v4info.daddr = sap->sin_addr.s_addr;
ecfcc53f 1975#endif
923e9a13 1976 sk_lbl = SMACK_UNLABELED_SOCKET;
2f823ff8
CS
1977 skp = ssp->smk_out;
1978 rc = smk_access(skp, hostsp, MAY_WRITE, &ad);
07feee8f
PM
1979 } else {
1980 sk_lbl = SMACK_CIPSO_SOCKET;
1981 rc = 0;
1982 }
1983 rcu_read_unlock();
1984 if (rc != 0)
1985 return rc;
1986
1987 return smack_netlabel(sk, sk_lbl);
1988}
1989
c6739443
CS
1990/**
1991 * smk_ipv6_port_label - Smack port access table management
1992 * @sock: socket
1993 * @address: address
1994 *
1995 * Create or update the port list entry
1996 */
1997static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
1998{
1999 struct sock *sk = sock->sk;
2000 struct sockaddr_in6 *addr6;
2001 struct socket_smack *ssp = sock->sk->sk_security;
2002 struct smk_port_label *spp;
2003 unsigned short port = 0;
2004
2005 if (address == NULL) {
2006 /*
2007 * This operation is changing the Smack information
2008 * on the bound socket. Take the changes to the port
2009 * as well.
2010 */
2011 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2012 if (sk != spp->smk_sock)
2013 continue;
2014 spp->smk_in = ssp->smk_in;
2015 spp->smk_out = ssp->smk_out;
2016 return;
2017 }
2018 /*
2019 * A NULL address is only used for updating existing
2020 * bound entries. If there isn't one, it's OK.
2021 */
2022 return;
2023 }
2024
2025 addr6 = (struct sockaddr_in6 *)address;
2026 port = ntohs(addr6->sin6_port);
2027 /*
2028 * This is a special case that is safely ignored.
2029 */
2030 if (port == 0)
2031 return;
2032
2033 /*
2034 * Look for an existing port list entry.
2035 * This is an indication that a port is getting reused.
2036 */
2037 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2038 if (spp->smk_port != port)
2039 continue;
2040 spp->smk_port = port;
2041 spp->smk_sock = sk;
2042 spp->smk_in = ssp->smk_in;
2043 spp->smk_out = ssp->smk_out;
2044 return;
2045 }
2046
2047 /*
2048 * A new port entry is required.
2049 */
2050 spp = kzalloc(sizeof(*spp), GFP_KERNEL);
2051 if (spp == NULL)
2052 return;
2053
2054 spp->smk_port = port;
2055 spp->smk_sock = sk;
2056 spp->smk_in = ssp->smk_in;
2057 spp->smk_out = ssp->smk_out;
2058
2059 list_add(&spp->list, &smk_ipv6_port_list);
2060 return;
2061}
2062
2063/**
2064 * smk_ipv6_port_check - check Smack port access
2065 * @sock: socket
2066 * @address: address
2067 *
2068 * Create or update the port list entry
2069 */
6ea06247 2070static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
c6739443
CS
2071 int act)
2072{
2073 __be16 *bep;
2074 __be32 *be32p;
c6739443
CS
2075 struct smk_port_label *spp;
2076 struct socket_smack *ssp = sk->sk_security;
2f823ff8 2077 struct smack_known *skp;
c6739443 2078 unsigned short port = 0;
c6739443
CS
2079 char *object;
2080 struct smk_audit_info ad;
2081#ifdef CONFIG_AUDIT
2082 struct lsm_network_audit net;
2083#endif
2084
2085 if (act == SMK_RECEIVING) {
2f823ff8 2086 skp = smack_net_ambient;
c6739443
CS
2087 object = ssp->smk_in;
2088 } else {
2f823ff8
CS
2089 skp = ssp->smk_out;
2090 object = smack_net_ambient->smk_known;
c6739443
CS
2091 }
2092
2093 /*
2094 * Get the IP address and port from the address.
2095 */
6ea06247
CS
2096 port = ntohs(address->sin6_port);
2097 bep = (__be16 *)(&address->sin6_addr);
2098 be32p = (__be32 *)(&address->sin6_addr);
c6739443
CS
2099
2100 /*
2101 * It's remote, so port lookup does no good.
2102 */
2103 if (be32p[0] || be32p[1] || be32p[2] || bep[6] || ntohs(bep[7]) != 1)
2104 goto auditout;
2105
2106 /*
2107 * It's local so the send check has to have passed.
2108 */
2109 if (act == SMK_RECEIVING) {
2f823ff8 2110 skp = &smack_known_web;
c6739443
CS
2111 goto auditout;
2112 }
2113
2114 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2115 if (spp->smk_port != port)
2116 continue;
2117 object = spp->smk_in;
2118 if (act == SMK_CONNECTING)
2f823ff8 2119 ssp->smk_packet = spp->smk_out->smk_known;
c6739443
CS
2120 break;
2121 }
2122
2123auditout:
2124
2125#ifdef CONFIG_AUDIT
2126 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2127 ad.a.u.net->family = sk->sk_family;
2128 ad.a.u.net->dport = port;
2129 if (act == SMK_RECEIVING)
6ea06247 2130 ad.a.u.net->v6info.saddr = address->sin6_addr;
c6739443 2131 else
6ea06247 2132 ad.a.u.net->v6info.daddr = address->sin6_addr;
c6739443 2133#endif
2f823ff8 2134 return smk_access(skp, object, MAY_WRITE, &ad);
c6739443
CS
2135}
2136
e114e473
CS
2137/**
2138 * smack_inode_setsecurity - set smack xattrs
2139 * @inode: the object
2140 * @name: attribute name
2141 * @value: attribute value
2142 * @size: size of the attribute
2143 * @flags: unused
2144 *
2145 * Sets the named attribute in the appropriate blob
2146 *
2147 * Returns 0 on success, or an error code
2148 */
2149static int smack_inode_setsecurity(struct inode *inode, const char *name,
2150 const void *value, size_t size, int flags)
2151{
2f823ff8 2152 struct smack_known *skp;
e114e473
CS
2153 struct inode_smack *nsp = inode->i_security;
2154 struct socket_smack *ssp;
2155 struct socket *sock;
4bc87e62 2156 int rc = 0;
e114e473 2157
f7112e6c 2158 if (value == NULL || size > SMK_LONGLABEL || size == 0)
e114e473
CS
2159 return -EACCES;
2160
2f823ff8
CS
2161 skp = smk_import_entry(value, size);
2162 if (skp == NULL)
e114e473
CS
2163 return -EINVAL;
2164
2165 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
2f823ff8 2166 nsp->smk_inode = skp->smk_known;
ddd29ec6 2167 nsp->smk_flags |= SMK_INODE_INSTANT;
e114e473
CS
2168 return 0;
2169 }
2170 /*
2171 * The rest of the Smack xattrs are only on sockets.
2172 */
2173 if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2174 return -EOPNOTSUPP;
2175
2176 sock = SOCKET_I(inode);
2e1d146a 2177 if (sock == NULL || sock->sk == NULL)
e114e473
CS
2178 return -EOPNOTSUPP;
2179
2180 ssp = sock->sk->sk_security;
2181
2182 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
2f823ff8 2183 ssp->smk_in = skp->smk_known;
e114e473 2184 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
2f823ff8 2185 ssp->smk_out = skp;
c6739443 2186 if (sock->sk->sk_family == PF_INET) {
b4e0d5f0
CS
2187 rc = smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2188 if (rc != 0)
2189 printk(KERN_WARNING
2190 "Smack: \"%s\" netlbl error %d.\n",
2191 __func__, -rc);
2192 }
e114e473
CS
2193 } else
2194 return -EOPNOTSUPP;
2195
c6739443
CS
2196 if (sock->sk->sk_family == PF_INET6)
2197 smk_ipv6_port_label(sock, NULL);
2198
e114e473
CS
2199 return 0;
2200}
2201
2202/**
2203 * smack_socket_post_create - finish socket setup
2204 * @sock: the socket
2205 * @family: protocol family
2206 * @type: unused
2207 * @protocol: unused
2208 * @kern: unused
2209 *
2210 * Sets the netlabel information on the socket
2211 *
2212 * Returns 0 on success, and error code otherwise
2213 */
2214static int smack_socket_post_create(struct socket *sock, int family,
2215 int type, int protocol, int kern)
2216{
2e1d146a 2217 if (family != PF_INET || sock->sk == NULL)
e114e473
CS
2218 return 0;
2219 /*
2220 * Set the outbound netlbl.
2221 */
6d3dc07c
CS
2222 return smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2223}
2224
c6739443
CS
2225/**
2226 * smack_socket_bind - record port binding information.
2227 * @sock: the socket
2228 * @address: the port address
2229 * @addrlen: size of the address
2230 *
2231 * Records the label bound to a port.
2232 *
2233 * Returns 0
2234 */
2235static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2236 int addrlen)
2237{
2238 if (sock->sk != NULL && sock->sk->sk_family == PF_INET6)
2239 smk_ipv6_port_label(sock, address);
2240
2241 return 0;
2242}
2243
6d3dc07c
CS
2244/**
2245 * smack_socket_connect - connect access check
2246 * @sock: the socket
2247 * @sap: the other end
2248 * @addrlen: size of sap
2249 *
2250 * Verifies that a connection may be possible
2251 *
2252 * Returns 0 on success, and error code otherwise
2253 */
2254static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2255 int addrlen)
2256{
c6739443
CS
2257 int rc = 0;
2258
2259 if (sock->sk == NULL)
6d3dc07c 2260 return 0;
6d3dc07c 2261
c6739443
CS
2262 switch (sock->sk->sk_family) {
2263 case PF_INET:
2264 if (addrlen < sizeof(struct sockaddr_in))
2265 return -EINVAL;
2266 rc = smack_netlabel_send(sock->sk, (struct sockaddr_in *)sap);
2267 break;
2268 case PF_INET6:
2269 if (addrlen < sizeof(struct sockaddr_in6))
2270 return -EINVAL;
6ea06247
CS
2271 rc = smk_ipv6_port_check(sock->sk, (struct sockaddr_in6 *)sap,
2272 SMK_CONNECTING);
c6739443
CS
2273 break;
2274 }
2275 return rc;
e114e473
CS
2276}
2277
2278/**
2279 * smack_flags_to_may - convert S_ to MAY_ values
2280 * @flags: the S_ value
2281 *
2282 * Returns the equivalent MAY_ value
2283 */
2284static int smack_flags_to_may(int flags)
2285{
2286 int may = 0;
2287
2288 if (flags & S_IRUGO)
2289 may |= MAY_READ;
2290 if (flags & S_IWUGO)
2291 may |= MAY_WRITE;
2292 if (flags & S_IXUGO)
2293 may |= MAY_EXEC;
2294
2295 return may;
2296}
2297
2298/**
2299 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2300 * @msg: the object
2301 *
2302 * Returns 0
2303 */
2304static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2305{
2f823ff8
CS
2306 struct smack_known *skp = smk_of_current();
2307
2308 msg->security = skp->smk_known;
e114e473
CS
2309 return 0;
2310}
2311
2312/**
2313 * smack_msg_msg_free_security - Clear the security blob for msg_msg
2314 * @msg: the object
2315 *
2316 * Clears the blob pointer
2317 */
2318static void smack_msg_msg_free_security(struct msg_msg *msg)
2319{
2320 msg->security = NULL;
2321}
2322
2323/**
2324 * smack_of_shm - the smack pointer for the shm
2325 * @shp: the object
2326 *
2327 * Returns a pointer to the smack value
2328 */
2329static char *smack_of_shm(struct shmid_kernel *shp)
2330{
2331 return (char *)shp->shm_perm.security;
2332}
2333
2334/**
2335 * smack_shm_alloc_security - Set the security blob for shm
2336 * @shp: the object
2337 *
2338 * Returns 0
2339 */
2340static int smack_shm_alloc_security(struct shmid_kernel *shp)
2341{
2342 struct kern_ipc_perm *isp = &shp->shm_perm;
2f823ff8 2343 struct smack_known *skp = smk_of_current();
e114e473 2344
2f823ff8 2345 isp->security = skp->smk_known;
e114e473
CS
2346 return 0;
2347}
2348
2349/**
2350 * smack_shm_free_security - Clear the security blob for shm
2351 * @shp: the object
2352 *
2353 * Clears the blob pointer
2354 */
2355static void smack_shm_free_security(struct shmid_kernel *shp)
2356{
2357 struct kern_ipc_perm *isp = &shp->shm_perm;
2358
2359 isp->security = NULL;
2360}
2361
ecfcc53f
EB
2362/**
2363 * smk_curacc_shm : check if current has access on shm
2364 * @shp : the object
2365 * @access : access requested
2366 *
2367 * Returns 0 if current has the requested access, error code otherwise
2368 */
2369static int smk_curacc_shm(struct shmid_kernel *shp, int access)
2370{
2371 char *ssp = smack_of_shm(shp);
2372 struct smk_audit_info ad;
2373
2374#ifdef CONFIG_AUDIT
2375 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2376 ad.a.u.ipc_id = shp->shm_perm.id;
2377#endif
2378 return smk_curacc(ssp, access, &ad);
2379}
2380
e114e473
CS
2381/**
2382 * smack_shm_associate - Smack access check for shm
2383 * @shp: the object
2384 * @shmflg: access requested
2385 *
2386 * Returns 0 if current has the requested access, error code otherwise
2387 */
2388static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
2389{
e114e473
CS
2390 int may;
2391
2392 may = smack_flags_to_may(shmflg);
ecfcc53f 2393 return smk_curacc_shm(shp, may);
e114e473
CS
2394}
2395
2396/**
2397 * smack_shm_shmctl - Smack access check for shm
2398 * @shp: the object
2399 * @cmd: what it wants to do
2400 *
2401 * Returns 0 if current has the requested access, error code otherwise
2402 */
2403static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
2404{
e114e473
CS
2405 int may;
2406
2407 switch (cmd) {
2408 case IPC_STAT:
2409 case SHM_STAT:
2410 may = MAY_READ;
2411 break;
2412 case IPC_SET:
2413 case SHM_LOCK:
2414 case SHM_UNLOCK:
2415 case IPC_RMID:
2416 may = MAY_READWRITE;
2417 break;
2418 case IPC_INFO:
2419 case SHM_INFO:
2420 /*
2421 * System level information.
2422 */
2423 return 0;
2424 default:
2425 return -EINVAL;
2426 }
ecfcc53f 2427 return smk_curacc_shm(shp, may);
e114e473
CS
2428}
2429
2430/**
2431 * smack_shm_shmat - Smack access for shmat
2432 * @shp: the object
2433 * @shmaddr: unused
2434 * @shmflg: access requested
2435 *
2436 * Returns 0 if current has the requested access, error code otherwise
2437 */
2438static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
2439 int shmflg)
2440{
e114e473
CS
2441 int may;
2442
2443 may = smack_flags_to_may(shmflg);
ecfcc53f 2444 return smk_curacc_shm(shp, may);
e114e473
CS
2445}
2446
2447/**
2448 * smack_of_sem - the smack pointer for the sem
2449 * @sma: the object
2450 *
2451 * Returns a pointer to the smack value
2452 */
2453static char *smack_of_sem(struct sem_array *sma)
2454{
2455 return (char *)sma->sem_perm.security;
2456}
2457
2458/**
2459 * smack_sem_alloc_security - Set the security blob for sem
2460 * @sma: the object
2461 *
2462 * Returns 0
2463 */
2464static int smack_sem_alloc_security(struct sem_array *sma)
2465{
2466 struct kern_ipc_perm *isp = &sma->sem_perm;
2f823ff8 2467 struct smack_known *skp = smk_of_current();
e114e473 2468
2f823ff8 2469 isp->security = skp->smk_known;
e114e473
CS
2470 return 0;
2471}
2472
2473/**
2474 * smack_sem_free_security - Clear the security blob for sem
2475 * @sma: the object
2476 *
2477 * Clears the blob pointer
2478 */
2479static void smack_sem_free_security(struct sem_array *sma)
2480{
2481 struct kern_ipc_perm *isp = &sma->sem_perm;
2482
2483 isp->security = NULL;
2484}
2485
ecfcc53f
EB
2486/**
2487 * smk_curacc_sem : check if current has access on sem
2488 * @sma : the object
2489 * @access : access requested
2490 *
2491 * Returns 0 if current has the requested access, error code otherwise
2492 */
2493static int smk_curacc_sem(struct sem_array *sma, int access)
2494{
2495 char *ssp = smack_of_sem(sma);
2496 struct smk_audit_info ad;
2497
2498#ifdef CONFIG_AUDIT
2499 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2500 ad.a.u.ipc_id = sma->sem_perm.id;
2501#endif
2502 return smk_curacc(ssp, access, &ad);
2503}
2504
e114e473
CS
2505/**
2506 * smack_sem_associate - Smack access check for sem
2507 * @sma: the object
2508 * @semflg: access requested
2509 *
2510 * Returns 0 if current has the requested access, error code otherwise
2511 */
2512static int smack_sem_associate(struct sem_array *sma, int semflg)
2513{
e114e473
CS
2514 int may;
2515
2516 may = smack_flags_to_may(semflg);
ecfcc53f 2517 return smk_curacc_sem(sma, may);
e114e473
CS
2518}
2519
2520/**
2521 * smack_sem_shmctl - Smack access check for sem
2522 * @sma: the object
2523 * @cmd: what it wants to do
2524 *
2525 * Returns 0 if current has the requested access, error code otherwise
2526 */
2527static int smack_sem_semctl(struct sem_array *sma, int cmd)
2528{
e114e473
CS
2529 int may;
2530
2531 switch (cmd) {
2532 case GETPID:
2533 case GETNCNT:
2534 case GETZCNT:
2535 case GETVAL:
2536 case GETALL:
2537 case IPC_STAT:
2538 case SEM_STAT:
2539 may = MAY_READ;
2540 break;
2541 case SETVAL:
2542 case SETALL:
2543 case IPC_RMID:
2544 case IPC_SET:
2545 may = MAY_READWRITE;
2546 break;
2547 case IPC_INFO:
2548 case SEM_INFO:
2549 /*
2550 * System level information
2551 */
2552 return 0;
2553 default:
2554 return -EINVAL;
2555 }
2556
ecfcc53f 2557 return smk_curacc_sem(sma, may);
e114e473
CS
2558}
2559
2560/**
2561 * smack_sem_semop - Smack checks of semaphore operations
2562 * @sma: the object
2563 * @sops: unused
2564 * @nsops: unused
2565 * @alter: unused
2566 *
2567 * Treated as read and write in all cases.
2568 *
2569 * Returns 0 if access is allowed, error code otherwise
2570 */
2571static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
2572 unsigned nsops, int alter)
2573{
ecfcc53f 2574 return smk_curacc_sem(sma, MAY_READWRITE);
e114e473
CS
2575}
2576
2577/**
2578 * smack_msg_alloc_security - Set the security blob for msg
2579 * @msq: the object
2580 *
2581 * Returns 0
2582 */
2583static int smack_msg_queue_alloc_security(struct msg_queue *msq)
2584{
2585 struct kern_ipc_perm *kisp = &msq->q_perm;
2f823ff8 2586 struct smack_known *skp = smk_of_current();
e114e473 2587
2f823ff8 2588 kisp->security = skp->smk_known;
e114e473
CS
2589 return 0;
2590}
2591
2592/**
2593 * smack_msg_free_security - Clear the security blob for msg
2594 * @msq: the object
2595 *
2596 * Clears the blob pointer
2597 */
2598static void smack_msg_queue_free_security(struct msg_queue *msq)
2599{
2600 struct kern_ipc_perm *kisp = &msq->q_perm;
2601
2602 kisp->security = NULL;
2603}
2604
2605/**
2606 * smack_of_msq - the smack pointer for the msq
2607 * @msq: the object
2608 *
2609 * Returns a pointer to the smack value
2610 */
2611static char *smack_of_msq(struct msg_queue *msq)
2612{
2613 return (char *)msq->q_perm.security;
2614}
2615
ecfcc53f
EB
2616/**
2617 * smk_curacc_msq : helper to check if current has access on msq
2618 * @msq : the msq
2619 * @access : access requested
2620 *
2621 * return 0 if current has access, error otherwise
2622 */
2623static int smk_curacc_msq(struct msg_queue *msq, int access)
2624{
2625 char *msp = smack_of_msq(msq);
2626 struct smk_audit_info ad;
2627
2628#ifdef CONFIG_AUDIT
2629 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2630 ad.a.u.ipc_id = msq->q_perm.id;
2631#endif
2632 return smk_curacc(msp, access, &ad);
2633}
2634
e114e473
CS
2635/**
2636 * smack_msg_queue_associate - Smack access check for msg_queue
2637 * @msq: the object
2638 * @msqflg: access requested
2639 *
2640 * Returns 0 if current has the requested access, error code otherwise
2641 */
2642static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
2643{
e114e473
CS
2644 int may;
2645
2646 may = smack_flags_to_may(msqflg);
ecfcc53f 2647 return smk_curacc_msq(msq, may);
e114e473
CS
2648}
2649
2650/**
2651 * smack_msg_queue_msgctl - Smack access check for msg_queue
2652 * @msq: the object
2653 * @cmd: what it wants to do
2654 *
2655 * Returns 0 if current has the requested access, error code otherwise
2656 */
2657static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
2658{
e114e473
CS
2659 int may;
2660
2661 switch (cmd) {
2662 case IPC_STAT:
2663 case MSG_STAT:
2664 may = MAY_READ;
2665 break;
2666 case IPC_SET:
2667 case IPC_RMID:
2668 may = MAY_READWRITE;
2669 break;
2670 case IPC_INFO:
2671 case MSG_INFO:
2672 /*
2673 * System level information
2674 */
2675 return 0;
2676 default:
2677 return -EINVAL;
2678 }
2679
ecfcc53f 2680 return smk_curacc_msq(msq, may);
e114e473
CS
2681}
2682
2683/**
2684 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2685 * @msq: the object
2686 * @msg: unused
2687 * @msqflg: access requested
2688 *
2689 * Returns 0 if current has the requested access, error code otherwise
2690 */
2691static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
2692 int msqflg)
2693{
ecfcc53f 2694 int may;
e114e473 2695
ecfcc53f
EB
2696 may = smack_flags_to_may(msqflg);
2697 return smk_curacc_msq(msq, may);
e114e473
CS
2698}
2699
2700/**
2701 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2702 * @msq: the object
2703 * @msg: unused
2704 * @target: unused
2705 * @type: unused
2706 * @mode: unused
2707 *
2708 * Returns 0 if current has read and write access, error code otherwise
2709 */
2710static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
2711 struct task_struct *target, long type, int mode)
2712{
ecfcc53f 2713 return smk_curacc_msq(msq, MAY_READWRITE);
e114e473
CS
2714}
2715
2716/**
2717 * smack_ipc_permission - Smack access for ipc_permission()
2718 * @ipp: the object permissions
2719 * @flag: access requested
2720 *
2721 * Returns 0 if current has read and write access, error code otherwise
2722 */
2723static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
2724{
2725 char *isp = ipp->security;
ecfcc53f
EB
2726 int may = smack_flags_to_may(flag);
2727 struct smk_audit_info ad;
e114e473 2728
ecfcc53f
EB
2729#ifdef CONFIG_AUDIT
2730 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2731 ad.a.u.ipc_id = ipp->id;
2732#endif
2733 return smk_curacc(isp, may, &ad);
e114e473
CS
2734}
2735
d20bdda6
AD
2736/**
2737 * smack_ipc_getsecid - Extract smack security id
251a2a95 2738 * @ipp: the object permissions
d20bdda6
AD
2739 * @secid: where result will be saved
2740 */
2741static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
2742{
2743 char *smack = ipp->security;
2744
2745 *secid = smack_to_secid(smack);
2746}
2747
e114e473
CS
2748/**
2749 * smack_d_instantiate - Make sure the blob is correct on an inode
3e62cbb8 2750 * @opt_dentry: dentry where inode will be attached
e114e473
CS
2751 * @inode: the object
2752 *
2753 * Set the inode's security blob if it hasn't been done already.
2754 */
2755static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
2756{
2757 struct super_block *sbp;
2758 struct superblock_smack *sbsp;
2759 struct inode_smack *isp;
2f823ff8
CS
2760 struct smack_known *skp;
2761 struct smack_known *ckp = smk_of_current();
e114e473 2762 char *final;
5c6d1125
JS
2763 char trattr[TRANS_TRUE_SIZE];
2764 int transflag = 0;
2267b13a 2765 int rc;
e114e473
CS
2766 struct dentry *dp;
2767
2768 if (inode == NULL)
2769 return;
2770
2771 isp = inode->i_security;
2772
2773 mutex_lock(&isp->smk_lock);
2774 /*
2775 * If the inode is already instantiated
2776 * take the quick way out
2777 */
2778 if (isp->smk_flags & SMK_INODE_INSTANT)
2779 goto unlockandout;
2780
2781 sbp = inode->i_sb;
2782 sbsp = sbp->s_security;
2783 /*
2784 * We're going to use the superblock default label
2785 * if there's no label on the file.
2786 */
2787 final = sbsp->smk_default;
2788
e97dcb0e
CS
2789 /*
2790 * If this is the root inode the superblock
2791 * may be in the process of initialization.
2792 * If that is the case use the root value out
2793 * of the superblock.
2794 */
2795 if (opt_dentry->d_parent == opt_dentry) {
2796 isp->smk_inode = sbsp->smk_root;
2797 isp->smk_flags |= SMK_INODE_INSTANT;
2798 goto unlockandout;
2799 }
2800
e114e473
CS
2801 /*
2802 * This is pretty hackish.
2803 * Casey says that we shouldn't have to do
2804 * file system specific code, but it does help
2805 * with keeping it simple.
2806 */
2807 switch (sbp->s_magic) {
2808 case SMACK_MAGIC:
2809 /*
25985edc 2810 * Casey says that it's a little embarrassing
e114e473
CS
2811 * that the smack file system doesn't do
2812 * extended attributes.
2813 */
2814 final = smack_known_star.smk_known;
2815 break;
2816 case PIPEFS_MAGIC:
2817 /*
2818 * Casey says pipes are easy (?)
2819 */
2820 final = smack_known_star.smk_known;
2821 break;
2822 case DEVPTS_SUPER_MAGIC:
2823 /*
2824 * devpts seems content with the label of the task.
2825 * Programs that change smack have to treat the
2826 * pty with respect.
2827 */
2f823ff8 2828 final = ckp->smk_known;
e114e473
CS
2829 break;
2830 case SOCKFS_MAGIC:
2831 /*
b4e0d5f0
CS
2832 * Socket access is controlled by the socket
2833 * structures associated with the task involved.
e114e473 2834 */
b4e0d5f0 2835 final = smack_known_star.smk_known;
e114e473
CS
2836 break;
2837 case PROC_SUPER_MAGIC:
2838 /*
2839 * Casey says procfs appears not to care.
2840 * The superblock default suffices.
2841 */
2842 break;
2843 case TMPFS_MAGIC:
2844 /*
2845 * Device labels should come from the filesystem,
2846 * but watch out, because they're volitile,
2847 * getting recreated on every reboot.
2848 */
2849 final = smack_known_star.smk_known;
2850 /*
2851 * No break.
2852 *
2853 * If a smack value has been set we want to use it,
2854 * but since tmpfs isn't giving us the opportunity
2855 * to set mount options simulate setting the
2856 * superblock default.
2857 */
2858 default:
2859 /*
2860 * This isn't an understood special case.
2861 * Get the value from the xattr.
b4e0d5f0
CS
2862 */
2863
2864 /*
2865 * UNIX domain sockets use lower level socket data.
2866 */
2867 if (S_ISSOCK(inode->i_mode)) {
2868 final = smack_known_star.smk_known;
2869 break;
2870 }
2871 /*
e114e473
CS
2872 * No xattr support means, alas, no SMACK label.
2873 * Use the aforeapplied default.
2874 * It would be curious if the label of the task
2875 * does not match that assigned.
2876 */
2877 if (inode->i_op->getxattr == NULL)
2878 break;
2879 /*
2880 * Get the dentry for xattr.
2881 */
3e62cbb8 2882 dp = dget(opt_dentry);
2f823ff8
CS
2883 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
2884 if (skp != NULL)
2885 final = skp->smk_known;
2267b13a
CS
2886
2887 /*
2888 * Transmuting directory
2889 */
2890 if (S_ISDIR(inode->i_mode)) {
2891 /*
2892 * If this is a new directory and the label was
2893 * transmuted when the inode was initialized
2894 * set the transmute attribute on the directory
2895 * and mark the inode.
2896 *
2897 * If there is a transmute attribute on the
2898 * directory mark the inode.
2899 */
2900 if (isp->smk_flags & SMK_INODE_CHANGED) {
2901 isp->smk_flags &= ~SMK_INODE_CHANGED;
2902 rc = inode->i_op->setxattr(dp,
5c6d1125 2903 XATTR_NAME_SMACKTRANSMUTE,
2267b13a
CS
2904 TRANS_TRUE, TRANS_TRUE_SIZE,
2905 0);
2906 } else {
2907 rc = inode->i_op->getxattr(dp,
2908 XATTR_NAME_SMACKTRANSMUTE, trattr,
2909 TRANS_TRUE_SIZE);
2910 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
2911 TRANS_TRUE_SIZE) != 0)
2912 rc = -EINVAL;
5c6d1125 2913 }
2267b13a
CS
2914 if (rc >= 0)
2915 transflag = SMK_INODE_TRANSMUTE;
5c6d1125 2916 }
19760ad0
CS
2917 /*
2918 * Don't let the exec or mmap label be "*" or "@".
2919 */
2920 skp = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
2921 if (skp == &smack_known_star || skp == &smack_known_web)
2922 skp = NULL;
2923 isp->smk_task = skp;
2924 skp = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
2925 if (skp == &smack_known_star || skp == &smack_known_web)
2926 skp = NULL;
2927 isp->smk_mmap = skp;
676dac4b 2928
e114e473
CS
2929 dput(dp);
2930 break;
2931 }
2932
2933 if (final == NULL)
2f823ff8 2934 isp->smk_inode = ckp->smk_known;
e114e473
CS
2935 else
2936 isp->smk_inode = final;
2937
5c6d1125 2938 isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
e114e473
CS
2939
2940unlockandout:
2941 mutex_unlock(&isp->smk_lock);
2942 return;
2943}
2944
2945/**
2946 * smack_getprocattr - Smack process attribute access
2947 * @p: the object task
2948 * @name: the name of the attribute in /proc/.../attr
2949 * @value: where to put the result
2950 *
2951 * Places a copy of the task Smack into value
2952 *
2953 * Returns the length of the smack label or an error code
2954 */
2955static int smack_getprocattr(struct task_struct *p, char *name, char **value)
2956{
2f823ff8 2957 struct smack_known *skp = smk_of_task(task_security(p));
e114e473
CS
2958 char *cp;
2959 int slen;
2960
2961 if (strcmp(name, "current") != 0)
2962 return -EINVAL;
2963
2f823ff8 2964 cp = kstrdup(skp->smk_known, GFP_KERNEL);
e114e473
CS
2965 if (cp == NULL)
2966 return -ENOMEM;
2967
2968 slen = strlen(cp);
2969 *value = cp;
2970 return slen;
2971}
2972
2973/**
2974 * smack_setprocattr - Smack process attribute setting
2975 * @p: the object task
2976 * @name: the name of the attribute in /proc/.../attr
2977 * @value: the value to set
2978 * @size: the size of the value
2979 *
2980 * Sets the Smack value of the task. Only setting self
2981 * is permitted and only with privilege
2982 *
2983 * Returns the length of the smack label or an error code
2984 */
2985static int smack_setprocattr(struct task_struct *p, char *name,
2986 void *value, size_t size)
2987{
676dac4b 2988 struct task_smack *tsp;
d84f4f99 2989 struct cred *new;
2f823ff8 2990 struct smack_known *skp;
e114e473 2991
e114e473
CS
2992 /*
2993 * Changing another process' Smack value is too dangerous
2994 * and supports no sane use case.
2995 */
2996 if (p != current)
2997 return -EPERM;
2998
1880eff7 2999 if (!smack_privileged(CAP_MAC_ADMIN))
5cd9c58f
DH
3000 return -EPERM;
3001
f7112e6c 3002 if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
e114e473
CS
3003 return -EINVAL;
3004
3005 if (strcmp(name, "current") != 0)
3006 return -EINVAL;
3007
2f823ff8
CS
3008 skp = smk_import_entry(value, size);
3009 if (skp == NULL)
e114e473
CS
3010 return -EINVAL;
3011
6d3dc07c
CS
3012 /*
3013 * No process is ever allowed the web ("@") label.
3014 */
2f823ff8 3015 if (skp == &smack_known_web)
6d3dc07c
CS
3016 return -EPERM;
3017
d84f4f99 3018 new = prepare_creds();
6d3dc07c 3019 if (new == NULL)
d84f4f99 3020 return -ENOMEM;
7898e1f8 3021
46a2f3b9 3022 tsp = new->security;
2f823ff8 3023 tsp->smk_task = skp;
7898e1f8 3024
d84f4f99 3025 commit_creds(new);
e114e473
CS
3026 return size;
3027}
3028
3029/**
3030 * smack_unix_stream_connect - Smack access on UDS
3610cda5
DM
3031 * @sock: one sock
3032 * @other: the other sock
e114e473
CS
3033 * @newsk: unused
3034 *
3035 * Return 0 if a subject with the smack of sock could access
3036 * an object with the smack of other, otherwise an error code
3037 */
3610cda5
DM
3038static int smack_unix_stream_connect(struct sock *sock,
3039 struct sock *other, struct sock *newsk)
e114e473 3040{
2f823ff8 3041 struct smack_known *skp;
d2e7ad19
JM
3042 struct socket_smack *ssp = sock->sk_security;
3043 struct socket_smack *osp = other->sk_security;
975d5e55 3044 struct socket_smack *nsp = newsk->sk_security;
ecfcc53f 3045 struct smk_audit_info ad;
b4e0d5f0 3046 int rc = 0;
e114e473 3047
923e9a13
KC
3048#ifdef CONFIG_AUDIT
3049 struct lsm_network_audit net;
3050
48c62af6 3051 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3610cda5 3052 smk_ad_setfield_u_net_sk(&ad, other);
923e9a13 3053#endif
b4e0d5f0 3054
2f823ff8
CS
3055 if (!smack_privileged(CAP_MAC_OVERRIDE)) {
3056 skp = ssp->smk_out;
3057 rc = smk_access(skp, osp->smk_in, MAY_WRITE, &ad);
3058 }
b4e0d5f0 3059
975d5e55
CS
3060 /*
3061 * Cross reference the peer labels for SO_PEERSEC.
3062 */
3063 if (rc == 0) {
2f823ff8
CS
3064 nsp->smk_packet = ssp->smk_out->smk_known;
3065 ssp->smk_packet = osp->smk_out->smk_known;
975d5e55
CS
3066 }
3067
b4e0d5f0 3068 return rc;
e114e473
CS
3069}
3070
3071/**
3072 * smack_unix_may_send - Smack access on UDS
3073 * @sock: one socket
3074 * @other: the other socket
3075 *
3076 * Return 0 if a subject with the smack of sock could access
3077 * an object with the smack of other, otherwise an error code
3078 */
3079static int smack_unix_may_send(struct socket *sock, struct socket *other)
3080{
b4e0d5f0
CS
3081 struct socket_smack *ssp = sock->sk->sk_security;
3082 struct socket_smack *osp = other->sk->sk_security;
2f823ff8 3083 struct smack_known *skp;
ecfcc53f 3084 struct smk_audit_info ad;
e114e473 3085
923e9a13
KC
3086#ifdef CONFIG_AUDIT
3087 struct lsm_network_audit net;
3088
48c62af6 3089 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
ecfcc53f 3090 smk_ad_setfield_u_net_sk(&ad, other->sk);
923e9a13 3091#endif
b4e0d5f0 3092
2f823ff8
CS
3093 if (smack_privileged(CAP_MAC_OVERRIDE))
3094 return 0;
b4e0d5f0 3095
2f823ff8
CS
3096 skp = ssp->smk_out;
3097 return smk_access(skp, osp->smk_in, MAY_WRITE, &ad);
e114e473
CS
3098}
3099
6d3dc07c
CS
3100/**
3101 * smack_socket_sendmsg - Smack check based on destination host
3102 * @sock: the socket
251a2a95 3103 * @msg: the message
6d3dc07c
CS
3104 * @size: the size of the message
3105 *
c6739443
CS
3106 * Return 0 if the current subject can write to the destination host.
3107 * For IPv4 this is only a question if the destination is a single label host.
3108 * For IPv6 this is a check against the label of the port.
6d3dc07c
CS
3109 */
3110static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3111 int size)
3112{
3113 struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
6ea06247 3114 struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
c6739443 3115 int rc = 0;
6d3dc07c
CS
3116
3117 /*
3118 * Perfectly reasonable for this to be NULL
3119 */
c6739443 3120 if (sip == NULL)
6d3dc07c
CS
3121 return 0;
3122
c6739443
CS
3123 switch (sip->sin_family) {
3124 case AF_INET:
3125 rc = smack_netlabel_send(sock->sk, sip);
3126 break;
3127 case AF_INET6:
3128 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
3129 break;
3130 }
3131 return rc;
6d3dc07c
CS
3132}
3133
e114e473 3134/**
251a2a95 3135 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
e114e473 3136 * @sap: netlabel secattr
272cd7a8 3137 * @ssp: socket security information
e114e473 3138 *
2f823ff8 3139 * Returns a pointer to a Smack label entry found on the label list.
e114e473 3140 */
2f823ff8
CS
3141static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3142 struct socket_smack *ssp)
e114e473 3143{
2f823ff8 3144 struct smack_known *skp;
f7112e6c 3145 int found = 0;
677264e8
CS
3146 int acat;
3147 int kcat;
e114e473 3148
6d3dc07c 3149 if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
e114e473 3150 /*
6d3dc07c 3151 * Looks like a CIPSO packet.
e114e473
CS
3152 * If there are flags but no level netlabel isn't
3153 * behaving the way we expect it to.
3154 *
f7112e6c 3155 * Look it up in the label table
e114e473
CS
3156 * Without guidance regarding the smack value
3157 * for the packet fall back on the network
3158 * ambient value.
3159 */
f7112e6c 3160 rcu_read_lock();
2f823ff8
CS
3161 list_for_each_entry(skp, &smack_known_list, list) {
3162 if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
f7112e6c 3163 continue;
677264e8
CS
3164 /*
3165 * Compare the catsets. Use the netlbl APIs.
3166 */
3167 if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3168 if ((skp->smk_netlabel.flags &
3169 NETLBL_SECATTR_MLS_CAT) == 0)
3170 found = 1;
3171 break;
3172 }
3173 for (acat = -1, kcat = -1; acat == kcat; ) {
3174 acat = netlbl_secattr_catmap_walk(
3175 sap->attr.mls.cat, acat + 1);
3176 kcat = netlbl_secattr_catmap_walk(
3177 skp->smk_netlabel.attr.mls.cat,
3178 kcat + 1);
3179 if (acat < 0 || kcat < 0)
3180 break;
3181 }
3182 if (acat == kcat) {
3183 found = 1;
3184 break;
3185 }
6d3dc07c 3186 }
f7112e6c
CS
3187 rcu_read_unlock();
3188
3189 if (found)
2f823ff8 3190 return skp;
f7112e6c 3191
272cd7a8 3192 if (ssp != NULL && ssp->smk_in == smack_known_star.smk_known)
2f823ff8
CS
3193 return &smack_known_web;
3194 return &smack_known_star;
e114e473 3195 }
6d3dc07c
CS
3196 if ((sap->flags & NETLBL_SECATTR_SECID) != 0) {
3197 /*
3198 * Looks like a fallback, which gives us a secid.
3199 */
2f823ff8 3200 skp = smack_from_secid(sap->attr.secid);
6d3dc07c
CS
3201 /*
3202 * This has got to be a bug because it is
3203 * impossible to specify a fallback without
3204 * specifying the label, which will ensure
3205 * it has a secid, and the only way to get a
3206 * secid is from a fallback.
3207 */
2f823ff8
CS
3208 BUG_ON(skp == NULL);
3209 return skp;
e114e473
CS
3210 }
3211 /*
6d3dc07c
CS
3212 * Without guidance regarding the smack value
3213 * for the packet fall back on the network
3214 * ambient value.
e114e473 3215 */
272cd7a8 3216 return smack_net_ambient;
e114e473
CS
3217}
3218
6ea06247 3219static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
c6739443 3220{
c6739443
CS
3221 u8 nexthdr;
3222 int offset;
3223 int proto = -EINVAL;
3224 struct ipv6hdr _ipv6h;
3225 struct ipv6hdr *ip6;
3226 __be16 frag_off;
3227 struct tcphdr _tcph, *th;
3228 struct udphdr _udph, *uh;
3229 struct dccp_hdr _dccph, *dh;
3230
3231 sip->sin6_port = 0;
3232
3233 offset = skb_network_offset(skb);
3234 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3235 if (ip6 == NULL)
3236 return -EINVAL;
3237 sip->sin6_addr = ip6->saddr;
3238
3239 nexthdr = ip6->nexthdr;
3240 offset += sizeof(_ipv6h);
3241 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3242 if (offset < 0)
3243 return -EINVAL;
3244
3245 proto = nexthdr;
3246 switch (proto) {
3247 case IPPROTO_TCP:
3248 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3249 if (th != NULL)
3250 sip->sin6_port = th->source;
3251 break;
3252 case IPPROTO_UDP:
3253 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3254 if (uh != NULL)
3255 sip->sin6_port = uh->source;
3256 break;
3257 case IPPROTO_DCCP:
3258 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3259 if (dh != NULL)
3260 sip->sin6_port = dh->dccph_sport;
3261 break;
3262 }
3263 return proto;
3264}
3265
e114e473
CS
3266/**
3267 * smack_socket_sock_rcv_skb - Smack packet delivery access check
3268 * @sk: socket
3269 * @skb: packet
3270 *
3271 * Returns 0 if the packet should be delivered, an error code otherwise
3272 */
3273static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3274{
3275 struct netlbl_lsm_secattr secattr;
3276 struct socket_smack *ssp = sk->sk_security;
2f823ff8 3277 struct smack_known *skp;
6ea06247 3278 struct sockaddr_in6 sadd;
c6739443 3279 int rc = 0;
ecfcc53f 3280 struct smk_audit_info ad;
923e9a13 3281#ifdef CONFIG_AUDIT
48c62af6 3282 struct lsm_network_audit net;
923e9a13 3283#endif
c6739443
CS
3284 switch (sk->sk_family) {
3285 case PF_INET:
3286 /*
3287 * Translate what netlabel gave us.
3288 */
3289 netlbl_secattr_init(&secattr);
6d3dc07c 3290
c6739443
CS
3291 rc = netlbl_skbuff_getattr(skb, sk->sk_family, &secattr);
3292 if (rc == 0)
2f823ff8 3293 skp = smack_from_secattr(&secattr, ssp);
c6739443 3294 else
2f823ff8 3295 skp = smack_net_ambient;
6d3dc07c 3296
c6739443 3297 netlbl_secattr_destroy(&secattr);
6d3dc07c 3298
ecfcc53f 3299#ifdef CONFIG_AUDIT
c6739443
CS
3300 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3301 ad.a.u.net->family = sk->sk_family;
3302 ad.a.u.net->netif = skb->skb_iif;
3303 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
ecfcc53f 3304#endif
c6739443
CS
3305 /*
3306 * Receiving a packet requires that the other end
3307 * be able to write here. Read access is not required.
3308 * This is the simplist possible security model
3309 * for networking.
3310 */
2f823ff8 3311 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
c6739443
CS
3312 if (rc != 0)
3313 netlbl_skbuff_err(skb, rc, 0);
3314 break;
3315 case PF_INET6:
3316 rc = smk_skb_to_addr_ipv6(skb, &sadd);
3317 if (rc == IPPROTO_UDP || rc == IPPROTO_TCP)
3318 rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
3319 else
3320 rc = 0;
3321 break;
3322 }
a8134296 3323 return rc;
e114e473
CS
3324}
3325
3326/**
3327 * smack_socket_getpeersec_stream - pull in packet label
3328 * @sock: the socket
3329 * @optval: user's destination
3330 * @optlen: size thereof
251a2a95 3331 * @len: max thereof
e114e473
CS
3332 *
3333 * returns zero on success, an error code otherwise
3334 */
3335static int smack_socket_getpeersec_stream(struct socket *sock,
3336 char __user *optval,
3337 int __user *optlen, unsigned len)
3338{
3339 struct socket_smack *ssp;
272cd7a8
CS
3340 char *rcp = "";
3341 int slen = 1;
e114e473
CS
3342 int rc = 0;
3343
3344 ssp = sock->sk->sk_security;
272cd7a8
CS
3345 if (ssp->smk_packet != NULL) {
3346 rcp = ssp->smk_packet;
3347 slen = strlen(rcp) + 1;
3348 }
e114e473
CS
3349
3350 if (slen > len)
3351 rc = -ERANGE;
272cd7a8 3352 else if (copy_to_user(optval, rcp, slen) != 0)
e114e473
CS
3353 rc = -EFAULT;
3354
3355 if (put_user(slen, optlen) != 0)
3356 rc = -EFAULT;
3357
3358 return rc;
3359}
3360
3361
3362/**
3363 * smack_socket_getpeersec_dgram - pull in packet label
b4e0d5f0 3364 * @sock: the peer socket
e114e473
CS
3365 * @skb: packet data
3366 * @secid: pointer to where to put the secid of the packet
3367 *
3368 * Sets the netlabel socket state on sk from parent
3369 */
3370static int smack_socket_getpeersec_dgram(struct socket *sock,
3371 struct sk_buff *skb, u32 *secid)
3372
3373{
3374 struct netlbl_lsm_secattr secattr;
272cd7a8 3375 struct socket_smack *ssp = NULL;
2f823ff8 3376 struct smack_known *skp;
b4e0d5f0
CS
3377 int family = PF_UNSPEC;
3378 u32 s = 0; /* 0 is the invalid secid */
e114e473
CS
3379 int rc;
3380
b4e0d5f0
CS
3381 if (skb != NULL) {
3382 if (skb->protocol == htons(ETH_P_IP))
3383 family = PF_INET;
3384 else if (skb->protocol == htons(ETH_P_IPV6))
3385 family = PF_INET6;
e114e473 3386 }
b4e0d5f0
CS
3387 if (family == PF_UNSPEC && sock != NULL)
3388 family = sock->sk->sk_family;
e114e473 3389
b4e0d5f0 3390 if (family == PF_UNIX) {
272cd7a8 3391 ssp = sock->sk->sk_security;
2f823ff8 3392 s = ssp->smk_out->smk_secid;
b4e0d5f0
CS
3393 } else if (family == PF_INET || family == PF_INET6) {
3394 /*
3395 * Translate what netlabel gave us.
3396 */
272cd7a8
CS
3397 if (sock != NULL && sock->sk != NULL)
3398 ssp = sock->sk->sk_security;
b4e0d5f0
CS
3399 netlbl_secattr_init(&secattr);
3400 rc = netlbl_skbuff_getattr(skb, family, &secattr);
3401 if (rc == 0) {
2f823ff8
CS
3402 skp = smack_from_secattr(&secattr, ssp);
3403 s = skp->smk_secid;
b4e0d5f0
CS
3404 }
3405 netlbl_secattr_destroy(&secattr);
3406 }
3407 *secid = s;
e114e473
CS
3408 if (s == 0)
3409 return -EINVAL;
e114e473
CS
3410 return 0;
3411}
3412
3413/**
07feee8f
PM
3414 * smack_sock_graft - Initialize a newly created socket with an existing sock
3415 * @sk: child sock
3416 * @parent: parent socket
e114e473 3417 *
07feee8f
PM
3418 * Set the smk_{in,out} state of an existing sock based on the process that
3419 * is creating the new socket.
e114e473
CS
3420 */
3421static void smack_sock_graft(struct sock *sk, struct socket *parent)
3422{
3423 struct socket_smack *ssp;
2f823ff8 3424 struct smack_known *skp = smk_of_current();
e114e473 3425
07feee8f
PM
3426 if (sk == NULL ||
3427 (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
e114e473
CS
3428 return;
3429
3430 ssp = sk->sk_security;
2f823ff8
CS
3431 ssp->smk_in = skp->smk_known;
3432 ssp->smk_out = skp;
07feee8f 3433 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
e114e473
CS
3434}
3435
3436/**
3437 * smack_inet_conn_request - Smack access check on connect
3438 * @sk: socket involved
3439 * @skb: packet
3440 * @req: unused
3441 *
3442 * Returns 0 if a task with the packet label could write to
3443 * the socket, otherwise an error code
3444 */
3445static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
3446 struct request_sock *req)
3447{
07feee8f 3448 u16 family = sk->sk_family;
f7112e6c 3449 struct smack_known *skp;
e114e473 3450 struct socket_smack *ssp = sk->sk_security;
07feee8f
PM
3451 struct netlbl_lsm_secattr secattr;
3452 struct sockaddr_in addr;
3453 struct iphdr *hdr;
f7112e6c 3454 char *hsp;
e114e473 3455 int rc;
ecfcc53f 3456 struct smk_audit_info ad;
923e9a13 3457#ifdef CONFIG_AUDIT
48c62af6 3458 struct lsm_network_audit net;
923e9a13 3459#endif
e114e473 3460
c6739443
CS
3461 if (family == PF_INET6) {
3462 /*
3463 * Handle mapped IPv4 packets arriving
3464 * via IPv6 sockets. Don't set up netlabel
3465 * processing on IPv6.
3466 */
3467 if (skb->protocol == htons(ETH_P_IP))
3468 family = PF_INET;
3469 else
3470 return 0;
3471 }
e114e473 3472
07feee8f
PM
3473 netlbl_secattr_init(&secattr);
3474 rc = netlbl_skbuff_getattr(skb, family, &secattr);
e114e473 3475 if (rc == 0)
2f823ff8 3476 skp = smack_from_secattr(&secattr, ssp);
e114e473 3477 else
2f823ff8 3478 skp = &smack_known_huh;
07feee8f
PM
3479 netlbl_secattr_destroy(&secattr);
3480
ecfcc53f 3481#ifdef CONFIG_AUDIT
48c62af6
EP
3482 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3483 ad.a.u.net->family = family;
3484 ad.a.u.net->netif = skb->skb_iif;
ecfcc53f
EB
3485 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
3486#endif
e114e473 3487 /*
07feee8f
PM
3488 * Receiving a packet requires that the other end be able to write
3489 * here. Read access is not required.
e114e473 3490 */
2f823ff8 3491 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
07feee8f
PM
3492 if (rc != 0)
3493 return rc;
3494
3495 /*
3496 * Save the peer's label in the request_sock so we can later setup
3497 * smk_packet in the child socket so that SO_PEERCRED can report it.
3498 */
2f823ff8 3499 req->peer_secid = skp->smk_secid;
07feee8f
PM
3500
3501 /*
3502 * We need to decide if we want to label the incoming connection here
3503 * if we do we only need to label the request_sock and the stack will
25985edc 3504 * propagate the wire-label to the sock when it is created.
07feee8f
PM
3505 */
3506 hdr = ip_hdr(skb);
3507 addr.sin_addr.s_addr = hdr->saddr;
3508 rcu_read_lock();
f7112e6c
CS
3509 hsp = smack_host_label(&addr);
3510 rcu_read_unlock();
3511
2f823ff8 3512 if (hsp == NULL)
f7112e6c 3513 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
2f823ff8 3514 else
07feee8f 3515 netlbl_req_delattr(req);
e114e473
CS
3516
3517 return rc;
3518}
3519
07feee8f
PM
3520/**
3521 * smack_inet_csk_clone - Copy the connection information to the new socket
3522 * @sk: the new socket
3523 * @req: the connection's request_sock
3524 *
3525 * Transfer the connection's peer label to the newly created socket.
3526 */
3527static void smack_inet_csk_clone(struct sock *sk,
3528 const struct request_sock *req)
3529{
3530 struct socket_smack *ssp = sk->sk_security;
2f823ff8 3531 struct smack_known *skp;
07feee8f 3532
2f823ff8
CS
3533 if (req->peer_secid != 0) {
3534 skp = smack_from_secid(req->peer_secid);
3535 ssp->smk_packet = skp->smk_known;
3536 } else
272cd7a8 3537 ssp->smk_packet = NULL;
07feee8f
PM
3538}
3539
e114e473
CS
3540/*
3541 * Key management security hooks
3542 *
3543 * Casey has not tested key support very heavily.
3544 * The permission check is most likely too restrictive.
3545 * If you care about keys please have a look.
3546 */
3547#ifdef CONFIG_KEYS
3548
3549/**
3550 * smack_key_alloc - Set the key security blob
3551 * @key: object
d84f4f99 3552 * @cred: the credentials to use
e114e473
CS
3553 * @flags: unused
3554 *
3555 * No allocation required
3556 *
3557 * Returns 0
3558 */
d84f4f99 3559static int smack_key_alloc(struct key *key, const struct cred *cred,
e114e473
CS
3560 unsigned long flags)
3561{
2f823ff8
CS
3562 struct smack_known *skp = smk_of_task(cred->security);
3563
3564 key->security = skp->smk_known;
e114e473
CS
3565 return 0;
3566}
3567
3568/**
3569 * smack_key_free - Clear the key security blob
3570 * @key: the object
3571 *
3572 * Clear the blob pointer
3573 */
3574static void smack_key_free(struct key *key)
3575{
3576 key->security = NULL;
3577}
3578
3579/*
3580 * smack_key_permission - Smack access on a key
3581 * @key_ref: gets to the object
d84f4f99 3582 * @cred: the credentials to use
e114e473
CS
3583 * @perm: unused
3584 *
3585 * Return 0 if the task has read and write to the object,
3586 * an error code otherwise
3587 */
3588static int smack_key_permission(key_ref_t key_ref,
d84f4f99 3589 const struct cred *cred, key_perm_t perm)
e114e473
CS
3590{
3591 struct key *keyp;
ecfcc53f 3592 struct smk_audit_info ad;
2f823ff8 3593 struct smack_known *tkp = smk_of_task(cred->security);
e114e473
CS
3594
3595 keyp = key_ref_to_ptr(key_ref);
3596 if (keyp == NULL)
3597 return -EINVAL;
3598 /*
3599 * If the key hasn't been initialized give it access so that
3600 * it may do so.
3601 */
3602 if (keyp->security == NULL)
3603 return 0;
3604 /*
3605 * This should not occur
3606 */
2f823ff8 3607 if (tkp == NULL)
e114e473 3608 return -EACCES;
ecfcc53f
EB
3609#ifdef CONFIG_AUDIT
3610 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
3611 ad.a.u.key_struct.key = keyp->serial;
3612 ad.a.u.key_struct.key_desc = keyp->description;
3613#endif
2f823ff8 3614 return smk_access(tkp, keyp->security, MAY_READWRITE, &ad);
e114e473
CS
3615}
3616#endif /* CONFIG_KEYS */
3617
d20bdda6
AD
3618/*
3619 * Smack Audit hooks
3620 *
3621 * Audit requires a unique representation of each Smack specific
3622 * rule. This unique representation is used to distinguish the
3623 * object to be audited from remaining kernel objects and also
3624 * works as a glue between the audit hooks.
3625 *
3626 * Since repository entries are added but never deleted, we'll use
3627 * the smack_known label address related to the given audit rule as
3628 * the needed unique representation. This also better fits the smack
3629 * model where nearly everything is a label.
3630 */
3631#ifdef CONFIG_AUDIT
3632
3633/**
3634 * smack_audit_rule_init - Initialize a smack audit rule
3635 * @field: audit rule fields given from user-space (audit.h)
3636 * @op: required testing operator (=, !=, >, <, ...)
3637 * @rulestr: smack label to be audited
3638 * @vrule: pointer to save our own audit rule representation
3639 *
3640 * Prepare to audit cases where (@field @op @rulestr) is true.
3641 * The label to be audited is created if necessay.
3642 */
3643static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
3644{
3645 char **rule = (char **)vrule;
3646 *rule = NULL;
3647
3648 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3649 return -EINVAL;
3650
5af75d8d 3651 if (op != Audit_equal && op != Audit_not_equal)
d20bdda6
AD
3652 return -EINVAL;
3653
3654 *rule = smk_import(rulestr, 0);
3655
3656 return 0;
3657}
3658
3659/**
3660 * smack_audit_rule_known - Distinguish Smack audit rules
3661 * @krule: rule of interest, in Audit kernel representation format
3662 *
3663 * This is used to filter Smack rules from remaining Audit ones.
3664 * If it's proved that this rule belongs to us, the
3665 * audit_rule_match hook will be called to do the final judgement.
3666 */
3667static int smack_audit_rule_known(struct audit_krule *krule)
3668{
3669 struct audit_field *f;
3670 int i;
3671
3672 for (i = 0; i < krule->field_count; i++) {
3673 f = &krule->fields[i];
3674
3675 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
3676 return 1;
3677 }
3678
3679 return 0;
3680}
3681
3682/**
3683 * smack_audit_rule_match - Audit given object ?
3684 * @secid: security id for identifying the object to test
3685 * @field: audit rule flags given from user-space
3686 * @op: required testing operator
3687 * @vrule: smack internal rule presentation
3688 * @actx: audit context associated with the check
3689 *
3690 * The core Audit hook. It's used to take the decision of
3691 * whether to audit or not to audit a given object.
3692 */
3693static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
3694 struct audit_context *actx)
3695{
2f823ff8 3696 struct smack_known *skp;
d20bdda6
AD
3697 char *rule = vrule;
3698
3699 if (!rule) {
ceffec55 3700 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
d20bdda6
AD
3701 "Smack: missing rule\n");
3702 return -ENOENT;
3703 }
3704
3705 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3706 return 0;
3707
2f823ff8 3708 skp = smack_from_secid(secid);
d20bdda6
AD
3709
3710 /*
3711 * No need to do string comparisons. If a match occurs,
3712 * both pointers will point to the same smack_known
3713 * label.
3714 */
5af75d8d 3715 if (op == Audit_equal)
2f823ff8 3716 return (rule == skp->smk_known);
5af75d8d 3717 if (op == Audit_not_equal)
2f823ff8 3718 return (rule != skp->smk_known);
d20bdda6
AD
3719
3720 return 0;
3721}
3722
3723/**
3724 * smack_audit_rule_free - free smack rule representation
3725 * @vrule: rule to be freed.
3726 *
3727 * No memory was allocated.
3728 */
3729static void smack_audit_rule_free(void *vrule)
3730{
3731 /* No-op */
3732}
3733
3734#endif /* CONFIG_AUDIT */
3735
746df9b5
DQ
3736/**
3737 * smack_ismaclabel - check if xattr @name references a smack MAC label
3738 * @name: Full xattr name to check.
3739 */
3740static int smack_ismaclabel(const char *name)
3741{
3742 return (strcmp(name, XATTR_SMACK_SUFFIX) == 0);
3743}
3744
3745
251a2a95 3746/**
e114e473
CS
3747 * smack_secid_to_secctx - return the smack label for a secid
3748 * @secid: incoming integer
3749 * @secdata: destination
3750 * @seclen: how long it is
3751 *
3752 * Exists for networking code.
3753 */
3754static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
3755{
2f823ff8 3756 struct smack_known *skp = smack_from_secid(secid);
e114e473 3757
d5630b9d 3758 if (secdata)
2f823ff8
CS
3759 *secdata = skp->smk_known;
3760 *seclen = strlen(skp->smk_known);
e114e473
CS
3761 return 0;
3762}
3763
251a2a95 3764/**
4bc87e62
CS
3765 * smack_secctx_to_secid - return the secid for a smack label
3766 * @secdata: smack label
3767 * @seclen: how long result is
3768 * @secid: outgoing integer
3769 *
3770 * Exists for audit and networking code.
3771 */
e52c1764 3772static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
4bc87e62
CS
3773{
3774 *secid = smack_to_secid(secdata);
3775 return 0;
3776}
3777
251a2a95 3778/**
e114e473 3779 * smack_release_secctx - don't do anything.
251a2a95
RD
3780 * @secdata: unused
3781 * @seclen: unused
e114e473
CS
3782 *
3783 * Exists to make sure nothing gets done, and properly
3784 */
3785static void smack_release_secctx(char *secdata, u32 seclen)
3786{
3787}
3788
1ee65e37
DQ
3789static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
3790{
3791 return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx, ctxlen, 0);
3792}
3793
3794static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
3795{
3796 return __vfs_setxattr_noperm(dentry, XATTR_NAME_SMACK, ctx, ctxlen, 0);
3797}
3798
3799static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
3800{
3801 int len = 0;
3802 len = smack_inode_getsecurity(inode, XATTR_SMACK_SUFFIX, ctx, true);
3803
3804 if (len < 0)
3805 return len;
3806 *ctxlen = len;
3807 return 0;
3808}
3809
076c54c5
AD
3810struct security_operations smack_ops = {
3811 .name = "smack",
3812
9e48858f 3813 .ptrace_access_check = smack_ptrace_access_check,
5cd9c58f 3814 .ptrace_traceme = smack_ptrace_traceme,
e114e473 3815 .syslog = smack_syslog,
e114e473
CS
3816
3817 .sb_alloc_security = smack_sb_alloc_security,
3818 .sb_free_security = smack_sb_free_security,
3819 .sb_copy_data = smack_sb_copy_data,
3820 .sb_kern_mount = smack_sb_kern_mount,
3821 .sb_statfs = smack_sb_statfs,
e114e473 3822
676dac4b 3823 .bprm_set_creds = smack_bprm_set_creds,
84088ba2
JS
3824 .bprm_committing_creds = smack_bprm_committing_creds,
3825 .bprm_secureexec = smack_bprm_secureexec,
676dac4b 3826
e114e473
CS
3827 .inode_alloc_security = smack_inode_alloc_security,
3828 .inode_free_security = smack_inode_free_security,
3829 .inode_init_security = smack_inode_init_security,
3830 .inode_link = smack_inode_link,
3831 .inode_unlink = smack_inode_unlink,
3832 .inode_rmdir = smack_inode_rmdir,
3833 .inode_rename = smack_inode_rename,
3834 .inode_permission = smack_inode_permission,
3835 .inode_setattr = smack_inode_setattr,
3836 .inode_getattr = smack_inode_getattr,
3837 .inode_setxattr = smack_inode_setxattr,
3838 .inode_post_setxattr = smack_inode_post_setxattr,
3839 .inode_getxattr = smack_inode_getxattr,
3840 .inode_removexattr = smack_inode_removexattr,
3841 .inode_getsecurity = smack_inode_getsecurity,
3842 .inode_setsecurity = smack_inode_setsecurity,
3843 .inode_listsecurity = smack_inode_listsecurity,
d20bdda6 3844 .inode_getsecid = smack_inode_getsecid,
e114e473
CS
3845
3846 .file_permission = smack_file_permission,
3847 .file_alloc_security = smack_file_alloc_security,
3848 .file_free_security = smack_file_free_security,
3849 .file_ioctl = smack_file_ioctl,
3850 .file_lock = smack_file_lock,
3851 .file_fcntl = smack_file_fcntl,
e5467859
AV
3852 .mmap_file = smack_mmap_file,
3853 .mmap_addr = cap_mmap_addr,
e114e473
CS
3854 .file_set_fowner = smack_file_set_fowner,
3855 .file_send_sigiotask = smack_file_send_sigiotask,
3856 .file_receive = smack_file_receive,
3857
83d49856 3858 .file_open = smack_file_open,
531f1d45 3859
ee18d64c 3860 .cred_alloc_blank = smack_cred_alloc_blank,
f1752eec 3861 .cred_free = smack_cred_free,
d84f4f99 3862 .cred_prepare = smack_cred_prepare,
ee18d64c 3863 .cred_transfer = smack_cred_transfer,
3a3b7ce9
DH
3864 .kernel_act_as = smack_kernel_act_as,
3865 .kernel_create_files_as = smack_kernel_create_files_as,
e114e473
CS
3866 .task_setpgid = smack_task_setpgid,
3867 .task_getpgid = smack_task_getpgid,
3868 .task_getsid = smack_task_getsid,
3869 .task_getsecid = smack_task_getsecid,
3870 .task_setnice = smack_task_setnice,
3871 .task_setioprio = smack_task_setioprio,
3872 .task_getioprio = smack_task_getioprio,
3873 .task_setscheduler = smack_task_setscheduler,
3874 .task_getscheduler = smack_task_getscheduler,
3875 .task_movememory = smack_task_movememory,
3876 .task_kill = smack_task_kill,
3877 .task_wait = smack_task_wait,
e114e473
CS
3878 .task_to_inode = smack_task_to_inode,
3879
3880 .ipc_permission = smack_ipc_permission,
d20bdda6 3881 .ipc_getsecid = smack_ipc_getsecid,
e114e473
CS
3882
3883 .msg_msg_alloc_security = smack_msg_msg_alloc_security,
3884 .msg_msg_free_security = smack_msg_msg_free_security,
3885
3886 .msg_queue_alloc_security = smack_msg_queue_alloc_security,
3887 .msg_queue_free_security = smack_msg_queue_free_security,
3888 .msg_queue_associate = smack_msg_queue_associate,
3889 .msg_queue_msgctl = smack_msg_queue_msgctl,
3890 .msg_queue_msgsnd = smack_msg_queue_msgsnd,
3891 .msg_queue_msgrcv = smack_msg_queue_msgrcv,
3892
3893 .shm_alloc_security = smack_shm_alloc_security,
3894 .shm_free_security = smack_shm_free_security,
3895 .shm_associate = smack_shm_associate,
3896 .shm_shmctl = smack_shm_shmctl,
3897 .shm_shmat = smack_shm_shmat,
3898
3899 .sem_alloc_security = smack_sem_alloc_security,
3900 .sem_free_security = smack_sem_free_security,
3901 .sem_associate = smack_sem_associate,
3902 .sem_semctl = smack_sem_semctl,
3903 .sem_semop = smack_sem_semop,
3904
e114e473
CS
3905 .d_instantiate = smack_d_instantiate,
3906
3907 .getprocattr = smack_getprocattr,
3908 .setprocattr = smack_setprocattr,
3909
3910 .unix_stream_connect = smack_unix_stream_connect,
3911 .unix_may_send = smack_unix_may_send,
3912
3913 .socket_post_create = smack_socket_post_create,
c6739443 3914 .socket_bind = smack_socket_bind,
6d3dc07c
CS
3915 .socket_connect = smack_socket_connect,
3916 .socket_sendmsg = smack_socket_sendmsg,
e114e473
CS
3917 .socket_sock_rcv_skb = smack_socket_sock_rcv_skb,
3918 .socket_getpeersec_stream = smack_socket_getpeersec_stream,
3919 .socket_getpeersec_dgram = smack_socket_getpeersec_dgram,
3920 .sk_alloc_security = smack_sk_alloc_security,
3921 .sk_free_security = smack_sk_free_security,
3922 .sock_graft = smack_sock_graft,
3923 .inet_conn_request = smack_inet_conn_request,
07feee8f 3924 .inet_csk_clone = smack_inet_csk_clone,
d20bdda6 3925
e114e473
CS
3926 /* key management security hooks */
3927#ifdef CONFIG_KEYS
3928 .key_alloc = smack_key_alloc,
3929 .key_free = smack_key_free,
3930 .key_permission = smack_key_permission,
3931#endif /* CONFIG_KEYS */
d20bdda6
AD
3932
3933 /* Audit hooks */
3934#ifdef CONFIG_AUDIT
3935 .audit_rule_init = smack_audit_rule_init,
3936 .audit_rule_known = smack_audit_rule_known,
3937 .audit_rule_match = smack_audit_rule_match,
3938 .audit_rule_free = smack_audit_rule_free,
3939#endif /* CONFIG_AUDIT */
3940
746df9b5 3941 .ismaclabel = smack_ismaclabel,
e114e473 3942 .secid_to_secctx = smack_secid_to_secctx,
4bc87e62 3943 .secctx_to_secid = smack_secctx_to_secid,
e114e473 3944 .release_secctx = smack_release_secctx,
1ee65e37
DQ
3945 .inode_notifysecctx = smack_inode_notifysecctx,
3946 .inode_setsecctx = smack_inode_setsecctx,
3947 .inode_getsecctx = smack_inode_getsecctx,
e114e473
CS
3948};
3949
7198e2ee 3950
86812bb0 3951static __init void init_smack_known_list(void)
7198e2ee 3952{
86812bb0
CS
3953 /*
3954 * Initialize rule list locks
3955 */
3956 mutex_init(&smack_known_huh.smk_rules_lock);
3957 mutex_init(&smack_known_hat.smk_rules_lock);
3958 mutex_init(&smack_known_floor.smk_rules_lock);
3959 mutex_init(&smack_known_star.smk_rules_lock);
3960 mutex_init(&smack_known_invalid.smk_rules_lock);
3961 mutex_init(&smack_known_web.smk_rules_lock);
3962 /*
3963 * Initialize rule lists
3964 */
3965 INIT_LIST_HEAD(&smack_known_huh.smk_rules);
3966 INIT_LIST_HEAD(&smack_known_hat.smk_rules);
3967 INIT_LIST_HEAD(&smack_known_star.smk_rules);
3968 INIT_LIST_HEAD(&smack_known_floor.smk_rules);
3969 INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
3970 INIT_LIST_HEAD(&smack_known_web.smk_rules);
3971 /*
3972 * Create the known labels list
3973 */
4d7cf4a1
TS
3974 smk_insert_entry(&smack_known_huh);
3975 smk_insert_entry(&smack_known_hat);
3976 smk_insert_entry(&smack_known_star);
3977 smk_insert_entry(&smack_known_floor);
3978 smk_insert_entry(&smack_known_invalid);
3979 smk_insert_entry(&smack_known_web);
7198e2ee
EB
3980}
3981
e114e473
CS
3982/**
3983 * smack_init - initialize the smack system
3984 *
3985 * Returns 0
3986 */
3987static __init int smack_init(void)
3988{
d84f4f99 3989 struct cred *cred;
676dac4b 3990 struct task_smack *tsp;
d84f4f99 3991
7898e1f8
CS
3992 if (!security_module_enable(&smack_ops))
3993 return 0;
3994
2f823ff8
CS
3995 tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
3996 GFP_KERNEL);
676dac4b
CS
3997 if (tsp == NULL)
3998 return -ENOMEM;
3999
e114e473
CS
4000 printk(KERN_INFO "Smack: Initializing.\n");
4001
4002 /*
4003 * Set the security state for the initial task.
4004 */
d84f4f99 4005 cred = (struct cred *) current->cred;
676dac4b 4006 cred->security = tsp;
e114e473 4007
86812bb0
CS
4008 /* initialize the smack_known_list */
4009 init_smack_known_list();
e114e473
CS
4010
4011 /*
4012 * Register with LSM
4013 */
4014 if (register_security(&smack_ops))
4015 panic("smack: Unable to register with kernel.\n");
4016
4017 return 0;
4018}
4019
4020/*
4021 * Smack requires early initialization in order to label
4022 * all processes and objects when they are created.
4023 */
4024security_initcall(smack_init);