blob: 048d92e81a3406215671643c0009f39e2b1e43aa [file] [log] [blame]
Casey Schauflere114e472008-02-04 22:29:50 -08001/*
2 * Simplified MAC Kernel (smack) security module
3 *
4 * This file contains the smack hook function implementations.
5 *
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02006 * Authors:
Casey Schauflere114e472008-02-04 22:29:50 -08007 * Casey Schaufler <casey@schaufler-ca.com>
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +03008 * Jarkko Sakkinen <jarkko.sakkinen@intel.com>
Casey Schauflere114e472008-02-04 22:29:50 -08009 *
10 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
Paul Moore07feee82009-03-27 17:10:54 -040011 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
Paul Moore82c21bf2011-08-01 11:10:33 +000012 * Paul Moore <paul@paul-moore.com>
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +020013 * Copyright (C) 2010 Nokia Corporation
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +030014 * Copyright (C) 2011 Intel Corporation.
Casey Schauflere114e472008-02-04 22:29:50 -080015 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2,
18 * as published by the Free Software Foundation.
19 */
20
21#include <linux/xattr.h>
22#include <linux/pagemap.h>
23#include <linux/mount.h>
24#include <linux/stat.h>
Casey Schauflere114e472008-02-04 22:29:50 -080025#include <linux/kd.h>
26#include <asm/ioctls.h>
Paul Moore07feee82009-03-27 17:10:54 -040027#include <linux/ip.h>
Casey Schauflere114e472008-02-04 22:29:50 -080028#include <linux/tcp.h>
29#include <linux/udp.h>
Casey Schauflerc6739442013-05-22 18:42:56 -070030#include <linux/dccp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Casey Schauflere114e472008-02-04 22:29:50 -080032#include <linux/mutex.h>
33#include <linux/pipe_fs_i.h>
Casey Schauflere114e472008-02-04 22:29:50 -080034#include <net/cipso_ipv4.h>
Casey Schauflerc6739442013-05-22 18:42:56 -070035#include <net/ip.h>
36#include <net/ipv6.h>
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +100037#include <linux/audit.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070038#include <linux/magic.h>
Eric Paris2a7dba32011-02-01 11:05:39 -050039#include <linux/dcache.h>
Jarkko Sakkinen16014d82011-10-14 13:16:24 +030040#include <linux/personality.h>
Al Viro40401532012-02-13 03:58:52 +000041#include <linux/msg.h>
42#include <linux/shm.h>
43#include <linux/binfmts.h>
Casey Schauflere114e472008-02-04 22:29:50 -080044#include "smack.h"
45
David Howellsc69e8d92008-11-14 10:39:19 +110046#define task_security(task) (task_cred_xxx((task), security))
47
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +020048#define TRANS_TRUE "TRUE"
49#define TRANS_TRUE_SIZE 4
50
Casey Schauflerc6739442013-05-22 18:42:56 -070051#define SMK_CONNECTING 0
52#define SMK_RECEIVING 1
53#define SMK_SENDING 2
54
55LIST_HEAD(smk_ipv6_port_list);
Rohit1a5b4722014-10-15 17:40:41 +053056static struct kmem_cache *smack_inode_cache;
Casey Schauflerc6739442013-05-22 18:42:56 -070057
Casey Schauflerd166c802014-08-27 14:51:27 -070058#ifdef CONFIG_SECURITY_SMACK_BRINGUP
59static void smk_bu_mode(int mode, char *s)
60{
61 int i = 0;
62
63 if (mode & MAY_READ)
64 s[i++] = 'r';
65 if (mode & MAY_WRITE)
66 s[i++] = 'w';
67 if (mode & MAY_EXEC)
68 s[i++] = 'x';
69 if (mode & MAY_APPEND)
70 s[i++] = 'a';
71 if (mode & MAY_TRANSMUTE)
72 s[i++] = 't';
73 if (mode & MAY_LOCK)
74 s[i++] = 'l';
75 if (i == 0)
76 s[i++] = '-';
77 s[i] = '\0';
78}
79#endif
80
81#ifdef CONFIG_SECURITY_SMACK_BRINGUP
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +020082static int smk_bu_note(char *note, struct smack_known *sskp,
83 struct smack_known *oskp, int mode, int rc)
Casey Schauflerd166c802014-08-27 14:51:27 -070084{
85 char acc[SMK_NUM_ACCESS_TYPE + 1];
86
87 if (rc <= 0)
88 return rc;
89
90 smk_bu_mode(mode, acc);
91 pr_info("Smack Bringup: (%s %s %s) %s\n",
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +020092 sskp->smk_known, oskp->smk_known, acc, note);
Casey Schauflerd166c802014-08-27 14:51:27 -070093 return 0;
94}
95#else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +020096#define smk_bu_note(note, sskp, oskp, mode, RC) (RC)
Casey Schauflerd166c802014-08-27 14:51:27 -070097#endif
98
99#ifdef CONFIG_SECURITY_SMACK_BRINGUP
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200100static int smk_bu_current(char *note, struct smack_known *oskp,
101 int mode, int rc)
Casey Schauflerd166c802014-08-27 14:51:27 -0700102{
103 struct task_smack *tsp = current_security();
104 char acc[SMK_NUM_ACCESS_TYPE + 1];
105
106 if (rc <= 0)
107 return rc;
108
109 smk_bu_mode(mode, acc);
110 pr_info("Smack Bringup: (%s %s %s) %s %s\n",
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200111 tsp->smk_task->smk_known, oskp->smk_known,
112 acc, current->comm, note);
Casey Schauflerd166c802014-08-27 14:51:27 -0700113 return 0;
114}
115#else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200116#define smk_bu_current(note, oskp, mode, RC) (RC)
Casey Schauflerd166c802014-08-27 14:51:27 -0700117#endif
118
119#ifdef CONFIG_SECURITY_SMACK_BRINGUP
120static int smk_bu_task(struct task_struct *otp, int mode, int rc)
121{
122 struct task_smack *tsp = current_security();
123 struct task_smack *otsp = task_security(otp);
124 char acc[SMK_NUM_ACCESS_TYPE + 1];
125
126 if (rc <= 0)
127 return rc;
128
129 smk_bu_mode(mode, acc);
130 pr_info("Smack Bringup: (%s %s %s) %s to %s\n",
131 tsp->smk_task->smk_known, otsp->smk_task->smk_known, acc,
132 current->comm, otp->comm);
133 return 0;
134}
135#else
136#define smk_bu_task(otp, mode, RC) (RC)
137#endif
138
139#ifdef CONFIG_SECURITY_SMACK_BRINGUP
140static int smk_bu_inode(struct inode *inode, int mode, int rc)
141{
142 struct task_smack *tsp = current_security();
143 char acc[SMK_NUM_ACCESS_TYPE + 1];
144
145 if (rc <= 0)
146 return rc;
147
148 smk_bu_mode(mode, acc);
149 pr_info("Smack Bringup: (%s %s %s) inode=(%s %ld) %s\n",
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200150 tsp->smk_task->smk_known, smk_of_inode(inode)->smk_known, acc,
Casey Schauflerd166c802014-08-27 14:51:27 -0700151 inode->i_sb->s_id, inode->i_ino, current->comm);
152 return 0;
153}
154#else
155#define smk_bu_inode(inode, mode, RC) (RC)
156#endif
157
158#ifdef CONFIG_SECURITY_SMACK_BRINGUP
159static int smk_bu_file(struct file *file, int mode, int rc)
160{
161 struct task_smack *tsp = current_security();
162 struct smack_known *sskp = tsp->smk_task;
163 struct inode *inode = file->f_inode;
164 char acc[SMK_NUM_ACCESS_TYPE + 1];
165
166 if (rc <= 0)
167 return rc;
168
169 smk_bu_mode(mode, acc);
Al Viroa4555892014-10-21 20:11:25 -0400170 pr_info("Smack Bringup: (%s %s %s) file=(%s %ld %pD) %s\n",
Casey Schauflerd166c802014-08-27 14:51:27 -0700171 sskp->smk_known, (char *)file->f_security, acc,
Al Viroa4555892014-10-21 20:11:25 -0400172 inode->i_sb->s_id, inode->i_ino, file,
Casey Schauflerd166c802014-08-27 14:51:27 -0700173 current->comm);
174 return 0;
175}
176#else
177#define smk_bu_file(file, mode, RC) (RC)
178#endif
179
180#ifdef CONFIG_SECURITY_SMACK_BRINGUP
181static int smk_bu_credfile(const struct cred *cred, struct file *file,
182 int mode, int rc)
183{
184 struct task_smack *tsp = cred->security;
185 struct smack_known *sskp = tsp->smk_task;
186 struct inode *inode = file->f_inode;
187 char acc[SMK_NUM_ACCESS_TYPE + 1];
188
189 if (rc <= 0)
190 return rc;
191
192 smk_bu_mode(mode, acc);
Al Viroa4555892014-10-21 20:11:25 -0400193 pr_info("Smack Bringup: (%s %s %s) file=(%s %ld %pD) %s\n",
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200194 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
Al Viroa4555892014-10-21 20:11:25 -0400195 inode->i_sb->s_id, inode->i_ino, file,
Casey Schauflerd166c802014-08-27 14:51:27 -0700196 current->comm);
197 return 0;
198}
199#else
200#define smk_bu_credfile(cred, file, mode, RC) (RC)
201#endif
202
Casey Schauflere114e472008-02-04 22:29:50 -0800203/**
204 * smk_fetch - Fetch the smack label from a file.
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100205 * @name: type of the label (attribute)
Casey Schauflere114e472008-02-04 22:29:50 -0800206 * @ip: a pointer to the inode
207 * @dp: a pointer to the dentry
208 *
209 * Returns a pointer to the master list entry for the Smack label
210 * or NULL if there was no label to fetch.
211 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700212static struct smack_known *smk_fetch(const char *name, struct inode *ip,
213 struct dentry *dp)
Casey Schauflere114e472008-02-04 22:29:50 -0800214{
215 int rc;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700216 char *buffer;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700217 struct smack_known *skp = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -0800218
219 if (ip->i_op->getxattr == NULL)
220 return NULL;
221
Casey Schauflerf7112e62012-05-06 15:22:02 -0700222 buffer = kzalloc(SMK_LONGLABEL, GFP_KERNEL);
223 if (buffer == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -0800224 return NULL;
225
Casey Schauflerf7112e62012-05-06 15:22:02 -0700226 rc = ip->i_op->getxattr(dp, name, buffer, SMK_LONGLABEL);
227 if (rc > 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700228 skp = smk_import_entry(buffer, rc);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700229
230 kfree(buffer);
231
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700232 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800233}
234
235/**
236 * new_inode_smack - allocate an inode security blob
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200237 * @skp: a pointer to the Smack label entry to use in the blob
Casey Schauflere114e472008-02-04 22:29:50 -0800238 *
239 * Returns the new blob or NULL if there's no memory available
240 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200241struct inode_smack *new_inode_smack(struct smack_known *skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800242{
243 struct inode_smack *isp;
244
Rohit1a5b4722014-10-15 17:40:41 +0530245 isp = kmem_cache_zalloc(smack_inode_cache, GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -0800246 if (isp == NULL)
247 return NULL;
248
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200249 isp->smk_inode = skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800250 isp->smk_flags = 0;
251 mutex_init(&isp->smk_lock);
252
253 return isp;
254}
255
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800256/**
257 * new_task_smack - allocate a task security blob
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100258 * @task: a pointer to the Smack label for the running task
259 * @forked: a pointer to the Smack label for the forked task
260 * @gfp: type of the memory for the allocation
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800261 *
262 * Returns the new blob or NULL if there's no memory available
263 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700264static struct task_smack *new_task_smack(struct smack_known *task,
265 struct smack_known *forked, gfp_t gfp)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800266{
267 struct task_smack *tsp;
268
269 tsp = kzalloc(sizeof(struct task_smack), gfp);
270 if (tsp == NULL)
271 return NULL;
272
273 tsp->smk_task = task;
274 tsp->smk_forked = forked;
275 INIT_LIST_HEAD(&tsp->smk_rules);
276 mutex_init(&tsp->smk_rules_lock);
277
278 return tsp;
279}
280
281/**
282 * smk_copy_rules - copy a rule set
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100283 * @nhead: new rules header pointer
284 * @ohead: old rules header pointer
285 * @gfp: type of the memory for the allocation
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800286 *
287 * Returns 0 on success, -ENOMEM on error
288 */
289static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead,
290 gfp_t gfp)
291{
292 struct smack_rule *nrp;
293 struct smack_rule *orp;
294 int rc = 0;
295
296 INIT_LIST_HEAD(nhead);
297
298 list_for_each_entry_rcu(orp, ohead, list) {
299 nrp = kzalloc(sizeof(struct smack_rule), gfp);
300 if (nrp == NULL) {
301 rc = -ENOMEM;
302 break;
303 }
304 *nrp = *orp;
305 list_add_rcu(&nrp->list, nhead);
306 }
307 return rc;
308}
309
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100310/**
311 * smk_ptrace_mode - helper function for converting PTRACE_MODE_* into MAY_*
312 * @mode - input mode in form of PTRACE_MODE_*
313 *
314 * Returns a converted MAY_* mode usable by smack rules
315 */
316static inline unsigned int smk_ptrace_mode(unsigned int mode)
317{
318 switch (mode) {
319 case PTRACE_MODE_READ:
320 return MAY_READ;
321 case PTRACE_MODE_ATTACH:
322 return MAY_READWRITE;
323 }
324
325 return 0;
326}
327
328/**
329 * smk_ptrace_rule_check - helper for ptrace access
330 * @tracer: tracer process
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200331 * @tracee_known: label entry of the process that's about to be traced
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100332 * @mode: ptrace attachment mode (PTRACE_MODE_*)
333 * @func: name of the function that called us, used for audit
334 *
335 * Returns 0 on access granted, -error on error
336 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200337static int smk_ptrace_rule_check(struct task_struct *tracer,
338 struct smack_known *tracee_known,
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100339 unsigned int mode, const char *func)
340{
341 int rc;
342 struct smk_audit_info ad, *saip = NULL;
343 struct task_smack *tsp;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200344 struct smack_known *tracer_known;
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100345
346 if ((mode & PTRACE_MODE_NOAUDIT) == 0) {
347 smk_ad_init(&ad, func, LSM_AUDIT_DATA_TASK);
348 smk_ad_setfield_u_tsk(&ad, tracer);
349 saip = &ad;
350 }
351
352 tsp = task_security(tracer);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200353 tracer_known = smk_of_task(tsp);
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100354
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100355 if ((mode & PTRACE_MODE_ATTACH) &&
356 (smack_ptrace_rule == SMACK_PTRACE_EXACT ||
357 smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200358 if (tracer_known->smk_known == tracee_known->smk_known)
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100359 rc = 0;
360 else if (smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)
361 rc = -EACCES;
362 else if (capable(CAP_SYS_PTRACE))
363 rc = 0;
364 else
365 rc = -EACCES;
366
367 if (saip)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200368 smack_log(tracer_known->smk_known,
369 tracee_known->smk_known,
370 0, rc, saip);
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100371
372 return rc;
373 }
374
375 /* In case of rule==SMACK_PTRACE_DEFAULT or mode==PTRACE_MODE_READ */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200376 rc = smk_tskacc(tsp, tracee_known, smk_ptrace_mode(mode), saip);
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100377 return rc;
378}
379
Casey Schauflere114e472008-02-04 22:29:50 -0800380/*
381 * LSM hooks.
382 * We he, that is fun!
383 */
384
385/**
Ingo Molnar9e488582009-05-07 19:26:19 +1000386 * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
Casey Schauflere114e472008-02-04 22:29:50 -0800387 * @ctp: child task pointer
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100388 * @mode: ptrace attachment mode (PTRACE_MODE_*)
Casey Schauflere114e472008-02-04 22:29:50 -0800389 *
390 * Returns 0 if access is OK, an error code otherwise
391 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100392 * Do the capability checks.
Casey Schauflere114e472008-02-04 22:29:50 -0800393 */
Ingo Molnar9e488582009-05-07 19:26:19 +1000394static int smack_ptrace_access_check(struct task_struct *ctp, unsigned int mode)
Casey Schauflere114e472008-02-04 22:29:50 -0800395{
396 int rc;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700397 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800398
Ingo Molnar9e488582009-05-07 19:26:19 +1000399 rc = cap_ptrace_access_check(ctp, mode);
Casey Schauflere114e472008-02-04 22:29:50 -0800400 if (rc != 0)
401 return rc;
402
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700403 skp = smk_of_task(task_security(ctp));
Etienne Bassetecfcc532009-04-08 20:40:06 +0200404
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200405 rc = smk_ptrace_rule_check(current, skp, mode, __func__);
David Howells5cd9c582008-08-14 11:37:28 +0100406 return rc;
407}
Casey Schauflere114e472008-02-04 22:29:50 -0800408
David Howells5cd9c582008-08-14 11:37:28 +0100409/**
410 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
411 * @ptp: parent task pointer
412 *
413 * Returns 0 if access is OK, an error code otherwise
414 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100415 * Do the capability checks, and require PTRACE_MODE_ATTACH.
David Howells5cd9c582008-08-14 11:37:28 +0100416 */
417static int smack_ptrace_traceme(struct task_struct *ptp)
418{
419 int rc;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700420 struct smack_known *skp;
David Howells5cd9c582008-08-14 11:37:28 +0100421
422 rc = cap_ptrace_traceme(ptp);
423 if (rc != 0)
424 return rc;
425
Lukasz Pawelczyk959e6c72014-03-11 17:07:04 +0100426 skp = smk_of_task(current_security());
Etienne Bassetecfcc532009-04-08 20:40:06 +0200427
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200428 rc = smk_ptrace_rule_check(ptp, skp, PTRACE_MODE_ATTACH, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -0800429 return rc;
430}
431
432/**
433 * smack_syslog - Smack approval on syslog
434 * @type: message type
435 *
Casey Schauflere114e472008-02-04 22:29:50 -0800436 * Returns 0 on success, error code otherwise.
437 */
Eric Paris12b30522010-11-15 18:36:29 -0500438static int smack_syslog(int typefrom_file)
Casey Schauflere114e472008-02-04 22:29:50 -0800439{
Eric Paris12b30522010-11-15 18:36:29 -0500440 int rc = 0;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700441 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -0800442
Casey Schaufler1880eff2012-06-05 15:28:30 -0700443 if (smack_privileged(CAP_MAC_OVERRIDE))
Casey Schauflere114e472008-02-04 22:29:50 -0800444 return 0;
445
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800446 if (smack_syslog_label != NULL && smack_syslog_label != skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800447 rc = -EACCES;
448
449 return rc;
450}
451
452
453/*
454 * Superblock Hooks.
455 */
456
457/**
458 * smack_sb_alloc_security - allocate a superblock blob
459 * @sb: the superblock getting the blob
460 *
461 * Returns 0 on success or -ENOMEM on error.
462 */
463static int smack_sb_alloc_security(struct super_block *sb)
464{
465 struct superblock_smack *sbsp;
466
467 sbsp = kzalloc(sizeof(struct superblock_smack), GFP_KERNEL);
468
469 if (sbsp == NULL)
470 return -ENOMEM;
471
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200472 sbsp->smk_root = &smack_known_floor;
473 sbsp->smk_default = &smack_known_floor;
474 sbsp->smk_floor = &smack_known_floor;
475 sbsp->smk_hat = &smack_known_hat;
Casey Schauflere830b392013-05-22 18:43:07 -0700476 /*
477 * smk_initialized will be zero from kzalloc.
478 */
Casey Schauflere114e472008-02-04 22:29:50 -0800479 sb->s_security = sbsp;
480
481 return 0;
482}
483
484/**
485 * smack_sb_free_security - free a superblock blob
486 * @sb: the superblock getting the blob
487 *
488 */
489static void smack_sb_free_security(struct super_block *sb)
490{
491 kfree(sb->s_security);
492 sb->s_security = NULL;
493}
494
495/**
496 * smack_sb_copy_data - copy mount options data for processing
Casey Schauflere114e472008-02-04 22:29:50 -0800497 * @orig: where to start
Randy Dunlap251a2a92009-02-18 11:42:33 -0800498 * @smackopts: mount options string
Casey Schauflere114e472008-02-04 22:29:50 -0800499 *
500 * Returns 0 on success or -ENOMEM on error.
501 *
502 * Copy the Smack specific mount options out of the mount
503 * options list.
504 */
Eric Parise0007522008-03-05 10:31:54 -0500505static int smack_sb_copy_data(char *orig, char *smackopts)
Casey Schauflere114e472008-02-04 22:29:50 -0800506{
507 char *cp, *commap, *otheropts, *dp;
508
Casey Schauflere114e472008-02-04 22:29:50 -0800509 otheropts = (char *)get_zeroed_page(GFP_KERNEL);
510 if (otheropts == NULL)
511 return -ENOMEM;
512
513 for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
514 if (strstr(cp, SMK_FSDEFAULT) == cp)
515 dp = smackopts;
516 else if (strstr(cp, SMK_FSFLOOR) == cp)
517 dp = smackopts;
518 else if (strstr(cp, SMK_FSHAT) == cp)
519 dp = smackopts;
520 else if (strstr(cp, SMK_FSROOT) == cp)
521 dp = smackopts;
Casey Schauflere830b392013-05-22 18:43:07 -0700522 else if (strstr(cp, SMK_FSTRANS) == cp)
523 dp = smackopts;
Casey Schauflere114e472008-02-04 22:29:50 -0800524 else
525 dp = otheropts;
526
527 commap = strchr(cp, ',');
528 if (commap != NULL)
529 *commap = '\0';
530
531 if (*dp != '\0')
532 strcat(dp, ",");
533 strcat(dp, cp);
534 }
535
536 strcpy(orig, otheropts);
537 free_page((unsigned long)otheropts);
538
539 return 0;
540}
541
542/**
543 * smack_sb_kern_mount - Smack specific mount processing
544 * @sb: the file system superblock
James Morris12204e22008-12-19 10:44:42 +1100545 * @flags: the mount flags
Casey Schauflere114e472008-02-04 22:29:50 -0800546 * @data: the smack mount options
547 *
548 * Returns 0 on success, an error code on failure
549 */
James Morris12204e22008-12-19 10:44:42 +1100550static int smack_sb_kern_mount(struct super_block *sb, int flags, void *data)
Casey Schauflere114e472008-02-04 22:29:50 -0800551{
552 struct dentry *root = sb->s_root;
553 struct inode *inode = root->d_inode;
554 struct superblock_smack *sp = sb->s_security;
555 struct inode_smack *isp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800556 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800557 char *op;
558 char *commap;
Casey Schauflere830b392013-05-22 18:43:07 -0700559 int transmute = 0;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800560 int specified = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800561
Casey Schauflere830b392013-05-22 18:43:07 -0700562 if (sp->smk_initialized)
Casey Schauflere114e472008-02-04 22:29:50 -0800563 return 0;
Casey Schauflereb982cb2012-05-23 17:46:58 -0700564
Casey Schauflere114e472008-02-04 22:29:50 -0800565 sp->smk_initialized = 1;
Casey Schauflere114e472008-02-04 22:29:50 -0800566
567 for (op = data; op != NULL; op = commap) {
568 commap = strchr(op, ',');
569 if (commap != NULL)
570 *commap++ = '\0';
571
572 if (strncmp(op, SMK_FSHAT, strlen(SMK_FSHAT)) == 0) {
573 op += strlen(SMK_FSHAT);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200574 skp = smk_import_entry(op, 0);
575 if (skp != NULL) {
576 sp->smk_hat = skp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800577 specified = 1;
578 }
Casey Schauflere114e472008-02-04 22:29:50 -0800579 } else if (strncmp(op, SMK_FSFLOOR, strlen(SMK_FSFLOOR)) == 0) {
580 op += strlen(SMK_FSFLOOR);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200581 skp = smk_import_entry(op, 0);
582 if (skp != NULL) {
583 sp->smk_floor = skp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800584 specified = 1;
585 }
Casey Schauflere114e472008-02-04 22:29:50 -0800586 } else if (strncmp(op, SMK_FSDEFAULT,
587 strlen(SMK_FSDEFAULT)) == 0) {
588 op += strlen(SMK_FSDEFAULT);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200589 skp = smk_import_entry(op, 0);
590 if (skp != NULL) {
591 sp->smk_default = skp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800592 specified = 1;
593 }
Casey Schauflere114e472008-02-04 22:29:50 -0800594 } else if (strncmp(op, SMK_FSROOT, strlen(SMK_FSROOT)) == 0) {
595 op += strlen(SMK_FSROOT);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200596 skp = smk_import_entry(op, 0);
597 if (skp != NULL) {
598 sp->smk_root = skp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800599 specified = 1;
600 }
Casey Schauflere830b392013-05-22 18:43:07 -0700601 } else if (strncmp(op, SMK_FSTRANS, strlen(SMK_FSTRANS)) == 0) {
602 op += strlen(SMK_FSTRANS);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200603 skp = smk_import_entry(op, 0);
604 if (skp != NULL) {
605 sp->smk_root = skp;
Casey Schauflere830b392013-05-22 18:43:07 -0700606 transmute = 1;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800607 specified = 1;
Casey Schauflere830b392013-05-22 18:43:07 -0700608 }
Casey Schauflere114e472008-02-04 22:29:50 -0800609 }
610 }
611
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800612 if (!smack_privileged(CAP_MAC_ADMIN)) {
613 /*
614 * Unprivileged mounts don't get to specify Smack values.
615 */
616 if (specified)
617 return -EPERM;
618 /*
619 * Unprivileged mounts get root and default from the caller.
620 */
621 skp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200622 sp->smk_root = skp;
623 sp->smk_default = skp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800624 }
Casey Schauflere114e472008-02-04 22:29:50 -0800625 /*
626 * Initialize the root inode.
627 */
628 isp = inode->i_security;
José Bollo55dfc5d2014-01-08 15:53:05 +0100629 if (isp == NULL) {
630 isp = new_inode_smack(sp->smk_root);
631 if (isp == NULL)
632 return -ENOMEM;
633 inode->i_security = isp;
Casey Schauflere830b392013-05-22 18:43:07 -0700634 } else
Casey Schauflere114e472008-02-04 22:29:50 -0800635 isp->smk_inode = sp->smk_root;
636
Casey Schauflere830b392013-05-22 18:43:07 -0700637 if (transmute)
638 isp->smk_flags |= SMK_INODE_TRANSMUTE;
639
Casey Schauflere114e472008-02-04 22:29:50 -0800640 return 0;
641}
642
643/**
644 * smack_sb_statfs - Smack check on statfs
645 * @dentry: identifies the file system in question
646 *
647 * Returns 0 if current can read the floor of the filesystem,
648 * and error code otherwise
649 */
650static int smack_sb_statfs(struct dentry *dentry)
651{
652 struct superblock_smack *sbp = dentry->d_sb->s_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200653 int rc;
654 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800655
Eric Parisa2694342011-04-25 13:10:27 -0400656 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200657 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
658
659 rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700660 rc = smk_bu_current("statfs", sbp->smk_floor, MAY_READ, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200661 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800662}
663
Casey Schauflere114e472008-02-04 22:29:50 -0800664/*
Casey Schaufler676dac42010-12-02 06:43:39 -0800665 * BPRM hooks
666 */
667
Casey Schauflerce8a4322011-09-29 18:21:01 -0700668/**
669 * smack_bprm_set_creds - set creds for exec
670 * @bprm: the exec information
671 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100672 * Returns 0 if it gets a blob, -EPERM if exec forbidden and -ENOMEM otherwise
Casey Schauflerce8a4322011-09-29 18:21:01 -0700673 */
Casey Schaufler676dac42010-12-02 06:43:39 -0800674static int smack_bprm_set_creds(struct linux_binprm *bprm)
675{
Al Viro496ad9a2013-01-23 17:07:38 -0500676 struct inode *inode = file_inode(bprm->file);
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300677 struct task_smack *bsp = bprm->cred->security;
Casey Schaufler676dac42010-12-02 06:43:39 -0800678 struct inode_smack *isp;
Casey Schaufler676dac42010-12-02 06:43:39 -0800679 int rc;
680
681 rc = cap_bprm_set_creds(bprm);
682 if (rc != 0)
683 return rc;
684
685 if (bprm->cred_prepared)
686 return 0;
687
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300688 isp = inode->i_security;
689 if (isp->smk_task == NULL || isp->smk_task == bsp->smk_task)
Casey Schaufler676dac42010-12-02 06:43:39 -0800690 return 0;
691
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100692 if (bprm->unsafe & (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) {
693 struct task_struct *tracer;
694 rc = 0;
695
696 rcu_read_lock();
697 tracer = ptrace_parent(current);
698 if (likely(tracer != NULL))
699 rc = smk_ptrace_rule_check(tracer,
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200700 isp->smk_task,
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100701 PTRACE_MODE_ATTACH,
702 __func__);
703 rcu_read_unlock();
704
705 if (rc != 0)
706 return rc;
707 } else if (bprm->unsafe)
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300708 return -EPERM;
Casey Schaufler676dac42010-12-02 06:43:39 -0800709
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300710 bsp->smk_task = isp->smk_task;
711 bprm->per_clear |= PER_CLEAR_ON_SETID;
Casey Schaufler676dac42010-12-02 06:43:39 -0800712
713 return 0;
714}
715
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300716/**
717 * smack_bprm_committing_creds - Prepare to install the new credentials
718 * from bprm.
719 *
720 * @bprm: binprm for exec
721 */
722static void smack_bprm_committing_creds(struct linux_binprm *bprm)
723{
724 struct task_smack *bsp = bprm->cred->security;
725
726 if (bsp->smk_task != bsp->smk_forked)
727 current->pdeath_signal = 0;
728}
729
730/**
731 * smack_bprm_secureexec - Return the decision to use secureexec.
732 * @bprm: binprm for exec
733 *
734 * Returns 0 on success.
735 */
736static int smack_bprm_secureexec(struct linux_binprm *bprm)
737{
738 struct task_smack *tsp = current_security();
739 int ret = cap_bprm_secureexec(bprm);
740
741 if (!ret && (tsp->smk_task != tsp->smk_forked))
742 ret = 1;
743
744 return ret;
745}
746
Casey Schaufler676dac42010-12-02 06:43:39 -0800747/*
Casey Schauflere114e472008-02-04 22:29:50 -0800748 * Inode hooks
749 */
750
751/**
752 * smack_inode_alloc_security - allocate an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -0800753 * @inode: the inode in need of a blob
Casey Schauflere114e472008-02-04 22:29:50 -0800754 *
755 * Returns 0 if it gets a blob, -ENOMEM otherwise
756 */
757static int smack_inode_alloc_security(struct inode *inode)
758{
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700759 struct smack_known *skp = smk_of_current();
760
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200761 inode->i_security = new_inode_smack(skp);
Casey Schauflere114e472008-02-04 22:29:50 -0800762 if (inode->i_security == NULL)
763 return -ENOMEM;
764 return 0;
765}
766
767/**
768 * smack_inode_free_security - free an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -0800769 * @inode: the inode with a blob
Casey Schauflere114e472008-02-04 22:29:50 -0800770 *
771 * Clears the blob pointer in inode
772 */
773static void smack_inode_free_security(struct inode *inode)
774{
Rohit1a5b4722014-10-15 17:40:41 +0530775 kmem_cache_free(smack_inode_cache, inode->i_security);
Casey Schauflere114e472008-02-04 22:29:50 -0800776 inode->i_security = NULL;
777}
778
779/**
780 * smack_inode_init_security - copy out the smack from an inode
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +0200781 * @inode: the newly created inode
782 * @dir: containing directory object
Eric Paris2a7dba32011-02-01 11:05:39 -0500783 * @qstr: unused
Casey Schauflere114e472008-02-04 22:29:50 -0800784 * @name: where to put the attribute name
785 * @value: where to put the attribute value
786 * @len: where to put the length of the attribute
787 *
788 * Returns 0 if it all works out, -ENOMEM if there's no memory
789 */
790static int smack_inode_init_security(struct inode *inode, struct inode *dir,
Tetsuo Handa95489062013-07-25 05:44:02 +0900791 const struct qstr *qstr, const char **name,
Eric Paris2a7dba32011-02-01 11:05:39 -0500792 void **value, size_t *len)
Casey Schauflere114e472008-02-04 22:29:50 -0800793{
Casey Schaufler2267b132012-03-13 19:14:19 -0700794 struct inode_smack *issp = inode->i_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700795 struct smack_known *skp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200796 struct smack_known *isp = smk_of_inode(inode);
797 struct smack_known *dsp = smk_of_inode(dir);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800798 int may;
Casey Schauflere114e472008-02-04 22:29:50 -0800799
Tetsuo Handa95489062013-07-25 05:44:02 +0900800 if (name)
801 *name = XATTR_SMACK_SUFFIX;
Casey Schauflere114e472008-02-04 22:29:50 -0800802
Lukasz Pawelczyk68390cc2014-11-26 15:31:07 +0100803 if (value && len) {
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800804 rcu_read_lock();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200805 may = smk_access_entry(skp->smk_known, dsp->smk_known,
806 &skp->smk_rules);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800807 rcu_read_unlock();
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200808
809 /*
810 * If the access rule allows transmutation and
811 * the directory requests transmutation then
812 * by all means transmute.
Casey Schaufler2267b132012-03-13 19:14:19 -0700813 * Mark the inode as changed.
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200814 */
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800815 if (may > 0 && ((may & MAY_TRANSMUTE) != 0) &&
Casey Schaufler2267b132012-03-13 19:14:19 -0700816 smk_inode_transmutable(dir)) {
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200817 isp = dsp;
Casey Schaufler2267b132012-03-13 19:14:19 -0700818 issp->smk_flags |= SMK_INODE_CHANGED;
819 }
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200820
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200821 *value = kstrdup(isp->smk_known, GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -0800822 if (*value == NULL)
823 return -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -0800824
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200825 *len = strlen(isp->smk_known);
Lukasz Pawelczyk68390cc2014-11-26 15:31:07 +0100826 }
Casey Schauflere114e472008-02-04 22:29:50 -0800827
828 return 0;
829}
830
831/**
832 * smack_inode_link - Smack check on link
833 * @old_dentry: the existing object
834 * @dir: unused
835 * @new_dentry: the new object
836 *
837 * Returns 0 if access is permitted, an error code otherwise
838 */
839static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
840 struct dentry *new_dentry)
841{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200842 struct smack_known *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200843 struct smk_audit_info ad;
844 int rc;
845
Eric Parisa2694342011-04-25 13:10:27 -0400846 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200847 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -0800848
849 isp = smk_of_inode(old_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200850 rc = smk_curacc(isp, MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700851 rc = smk_bu_inode(old_dentry->d_inode, MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -0800852
853 if (rc == 0 && new_dentry->d_inode != NULL) {
854 isp = smk_of_inode(new_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200855 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
856 rc = smk_curacc(isp, MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700857 rc = smk_bu_inode(new_dentry->d_inode, MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -0800858 }
859
860 return rc;
861}
862
863/**
864 * smack_inode_unlink - Smack check on inode deletion
865 * @dir: containing directory object
866 * @dentry: file to unlink
867 *
868 * Returns 0 if current can write the containing directory
869 * and the object, error code otherwise
870 */
871static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
872{
873 struct inode *ip = dentry->d_inode;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200874 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800875 int rc;
876
Eric Parisa2694342011-04-25 13:10:27 -0400877 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200878 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
879
Casey Schauflere114e472008-02-04 22:29:50 -0800880 /*
881 * You need write access to the thing you're unlinking
882 */
Etienne Bassetecfcc532009-04-08 20:40:06 +0200883 rc = smk_curacc(smk_of_inode(ip), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700884 rc = smk_bu_inode(ip, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200885 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -0800886 /*
887 * You also need write access to the containing directory
888 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +0400889 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200890 smk_ad_setfield_u_fs_inode(&ad, dir);
891 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700892 rc = smk_bu_inode(dir, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200893 }
Casey Schauflere114e472008-02-04 22:29:50 -0800894 return rc;
895}
896
897/**
898 * smack_inode_rmdir - Smack check on directory deletion
899 * @dir: containing directory object
900 * @dentry: directory to unlink
901 *
902 * Returns 0 if current can write the containing directory
903 * and the directory, error code otherwise
904 */
905static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
906{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200907 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800908 int rc;
909
Eric Parisa2694342011-04-25 13:10:27 -0400910 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200911 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
912
Casey Schauflere114e472008-02-04 22:29:50 -0800913 /*
914 * You need write access to the thing you're removing
915 */
Etienne Bassetecfcc532009-04-08 20:40:06 +0200916 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700917 rc = smk_bu_inode(dentry->d_inode, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200918 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -0800919 /*
920 * You also need write access to the containing directory
921 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +0400922 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200923 smk_ad_setfield_u_fs_inode(&ad, dir);
924 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700925 rc = smk_bu_inode(dir, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200926 }
Casey Schauflere114e472008-02-04 22:29:50 -0800927
928 return rc;
929}
930
931/**
932 * smack_inode_rename - Smack check on rename
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +0200933 * @old_inode: unused
934 * @old_dentry: the old object
935 * @new_inode: unused
936 * @new_dentry: the new object
Casey Schauflere114e472008-02-04 22:29:50 -0800937 *
938 * Read and write access is required on both the old and
939 * new directories.
940 *
941 * Returns 0 if access is permitted, an error code otherwise
942 */
943static int smack_inode_rename(struct inode *old_inode,
944 struct dentry *old_dentry,
945 struct inode *new_inode,
946 struct dentry *new_dentry)
947{
948 int rc;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200949 struct smack_known *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200950 struct smk_audit_info ad;
951
Eric Parisa2694342011-04-25 13:10:27 -0400952 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200953 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -0800954
955 isp = smk_of_inode(old_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200956 rc = smk_curacc(isp, MAY_READWRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700957 rc = smk_bu_inode(old_dentry->d_inode, MAY_READWRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -0800958
959 if (rc == 0 && new_dentry->d_inode != NULL) {
960 isp = smk_of_inode(new_dentry->d_inode);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200961 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
962 rc = smk_curacc(isp, MAY_READWRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700963 rc = smk_bu_inode(new_dentry->d_inode, MAY_READWRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -0800964 }
Casey Schauflere114e472008-02-04 22:29:50 -0800965 return rc;
966}
967
968/**
969 * smack_inode_permission - Smack version of permission()
970 * @inode: the inode in question
971 * @mask: the access requested
Casey Schauflere114e472008-02-04 22:29:50 -0800972 *
973 * This is the important Smack hook.
974 *
975 * Returns 0 if access is permitted, -EACCES otherwise
976 */
Al Viroe74f71e2011-06-20 19:38:15 -0400977static int smack_inode_permission(struct inode *inode, int mask)
Casey Schauflere114e472008-02-04 22:29:50 -0800978{
Etienne Bassetecfcc532009-04-08 20:40:06 +0200979 struct smk_audit_info ad;
Al Viroe74f71e2011-06-20 19:38:15 -0400980 int no_block = mask & MAY_NOT_BLOCK;
Casey Schauflerd166c802014-08-27 14:51:27 -0700981 int rc;
Eric Parisd09ca732010-07-23 11:43:57 -0400982
983 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
Casey Schauflere114e472008-02-04 22:29:50 -0800984 /*
985 * No permission to check. Existence test. Yup, it's there.
986 */
987 if (mask == 0)
988 return 0;
Andi Kleen8c9e80e2011-04-21 17:23:19 -0700989
990 /* May be droppable after audit */
Al Viroe74f71e2011-06-20 19:38:15 -0400991 if (no_block)
Andi Kleen8c9e80e2011-04-21 17:23:19 -0700992 return -ECHILD;
Eric Parisf48b7392011-04-25 12:54:27 -0400993 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200994 smk_ad_setfield_u_fs_inode(&ad, inode);
Casey Schauflerd166c802014-08-27 14:51:27 -0700995 rc = smk_curacc(smk_of_inode(inode), mask, &ad);
996 rc = smk_bu_inode(inode, mask, rc);
997 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800998}
999
1000/**
1001 * smack_inode_setattr - Smack check for setting attributes
1002 * @dentry: the object
1003 * @iattr: for the force flag
1004 *
1005 * Returns 0 if access is permitted, an error code otherwise
1006 */
1007static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
1008{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001009 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001010 int rc;
1011
Casey Schauflere114e472008-02-04 22:29:50 -08001012 /*
1013 * Need to allow for clearing the setuid bit.
1014 */
1015 if (iattr->ia_valid & ATTR_FORCE)
1016 return 0;
Eric Parisa2694342011-04-25 13:10:27 -04001017 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001018 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001019
Casey Schauflerd166c802014-08-27 14:51:27 -07001020 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
1021 rc = smk_bu_inode(dentry->d_inode, MAY_WRITE, rc);
1022 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001023}
1024
1025/**
1026 * smack_inode_getattr - Smack check for getting attributes
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001027 * @mnt: vfsmount of the object
Casey Schauflere114e472008-02-04 22:29:50 -08001028 * @dentry: the object
1029 *
1030 * Returns 0 if access is permitted, an error code otherwise
1031 */
1032static int smack_inode_getattr(struct vfsmount *mnt, struct dentry *dentry)
1033{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001034 struct smk_audit_info ad;
Eric Parisa2694342011-04-25 13:10:27 -04001035 struct path path;
Casey Schauflerd166c802014-08-27 14:51:27 -07001036 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001037
Eric Parisa2694342011-04-25 13:10:27 -04001038 path.dentry = dentry;
1039 path.mnt = mnt;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001040
Eric Parisf48b7392011-04-25 12:54:27 -04001041 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Eric Parisa2694342011-04-25 13:10:27 -04001042 smk_ad_setfield_u_fs_path(&ad, path);
Casey Schauflerd166c802014-08-27 14:51:27 -07001043 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad);
1044 rc = smk_bu_inode(dentry->d_inode, MAY_READ, rc);
1045 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001046}
1047
1048/**
1049 * smack_inode_setxattr - Smack check for setting xattrs
1050 * @dentry: the object
1051 * @name: name of the attribute
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001052 * @value: value of the attribute
1053 * @size: size of the value
Casey Schauflere114e472008-02-04 22:29:50 -08001054 * @flags: unused
1055 *
1056 * This protects the Smack attribute explicitly.
1057 *
1058 * Returns 0 if access is permitted, an error code otherwise
1059 */
David Howells8f0cfa52008-04-29 00:59:41 -07001060static int smack_inode_setxattr(struct dentry *dentry, const char *name,
1061 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -08001062{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001063 struct smk_audit_info ad;
Casey Schaufler19760ad2013-12-16 16:27:26 -08001064 struct smack_known *skp;
1065 int check_priv = 0;
1066 int check_import = 0;
1067 int check_star = 0;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001068 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001069
Casey Schaufler19760ad2013-12-16 16:27:26 -08001070 /*
1071 * Check label validity here so import won't fail in post_setxattr
1072 */
Casey Schauflerbcdca222008-02-23 15:24:04 -08001073 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1074 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler19760ad2013-12-16 16:27:26 -08001075 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
1076 check_priv = 1;
1077 check_import = 1;
1078 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
1079 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
1080 check_priv = 1;
1081 check_import = 1;
1082 check_star = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001083 } else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
Casey Schaufler19760ad2013-12-16 16:27:26 -08001084 check_priv = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001085 if (size != TRANS_TRUE_SIZE ||
1086 strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
1087 rc = -EINVAL;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001088 } else
1089 rc = cap_inode_setxattr(dentry, name, value, size, flags);
1090
Casey Schaufler19760ad2013-12-16 16:27:26 -08001091 if (check_priv && !smack_privileged(CAP_MAC_ADMIN))
1092 rc = -EPERM;
1093
1094 if (rc == 0 && check_import) {
Konstantin Khlebnikovb862e562014-08-07 20:52:43 +04001095 skp = size ? smk_import_entry(value, size) : NULL;
Casey Schaufler19760ad2013-12-16 16:27:26 -08001096 if (skp == NULL || (check_star &&
1097 (skp == &smack_known_star || skp == &smack_known_web)))
1098 rc = -EINVAL;
1099 }
1100
Eric Parisa2694342011-04-25 13:10:27 -04001101 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001102 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1103
Casey Schauflerd166c802014-08-27 14:51:27 -07001104 if (rc == 0) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02001105 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001106 rc = smk_bu_inode(dentry->d_inode, MAY_WRITE, rc);
1107 }
Casey Schauflerbcdca222008-02-23 15:24:04 -08001108
1109 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001110}
1111
1112/**
1113 * smack_inode_post_setxattr - Apply the Smack update approved above
1114 * @dentry: object
1115 * @name: attribute name
1116 * @value: attribute value
1117 * @size: attribute size
1118 * @flags: unused
1119 *
1120 * Set the pointer in the inode blob to the entry found
1121 * in the master label list.
1122 */
David Howells8f0cfa52008-04-29 00:59:41 -07001123static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
1124 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -08001125{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001126 struct smack_known *skp;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001127 struct inode_smack *isp = dentry->d_inode->i_security;
Casey Schaufler676dac42010-12-02 06:43:39 -08001128
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001129 if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
1130 isp->smk_flags |= SMK_INODE_TRANSMUTE;
1131 return;
1132 }
1133
Casey Schaufler676dac42010-12-02 06:43:39 -08001134 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001135 skp = smk_import_entry(value, size);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001136 if (skp != NULL)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001137 isp->smk_inode = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08001138 else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001139 isp->smk_inode = &smack_known_invalid;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001140 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001141 skp = smk_import_entry(value, size);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001142 if (skp != NULL)
1143 isp->smk_task = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08001144 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001145 isp->smk_task = &smack_known_invalid;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001146 } else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001147 skp = smk_import_entry(value, size);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001148 if (skp != NULL)
1149 isp->smk_mmap = skp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001150 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001151 isp->smk_mmap = &smack_known_invalid;
1152 }
Casey Schauflere114e472008-02-04 22:29:50 -08001153
1154 return;
1155}
1156
Casey Schauflerce8a4322011-09-29 18:21:01 -07001157/**
Casey Schauflere114e472008-02-04 22:29:50 -08001158 * smack_inode_getxattr - Smack check on getxattr
1159 * @dentry: the object
1160 * @name: unused
1161 *
1162 * Returns 0 if access is permitted, an error code otherwise
1163 */
David Howells8f0cfa52008-04-29 00:59:41 -07001164static int smack_inode_getxattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -08001165{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001166 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001167 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001168
Eric Parisa2694342011-04-25 13:10:27 -04001169 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001170 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1171
Casey Schauflerd166c802014-08-27 14:51:27 -07001172 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_READ, &ad);
1173 rc = smk_bu_inode(dentry->d_inode, MAY_READ, rc);
1174 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001175}
1176
Casey Schauflerce8a4322011-09-29 18:21:01 -07001177/**
Casey Schauflere114e472008-02-04 22:29:50 -08001178 * smack_inode_removexattr - Smack check on removexattr
1179 * @dentry: the object
1180 * @name: name of the attribute
1181 *
1182 * Removing the Smack attribute requires CAP_MAC_ADMIN
1183 *
1184 * Returns 0 if access is permitted, an error code otherwise
1185 */
David Howells8f0cfa52008-04-29 00:59:41 -07001186static int smack_inode_removexattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -08001187{
Casey Schaufler676dac42010-12-02 06:43:39 -08001188 struct inode_smack *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001189 struct smk_audit_info ad;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001190 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001191
Casey Schauflerbcdca222008-02-23 15:24:04 -08001192 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1193 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler676dac42010-12-02 06:43:39 -08001194 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 ||
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001195 strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001196 strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 ||
Pankaj Kumar5e9ab592013-12-13 15:12:22 +05301197 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
Casey Schaufler1880eff2012-06-05 15:28:30 -07001198 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflerbcdca222008-02-23 15:24:04 -08001199 rc = -EPERM;
1200 } else
1201 rc = cap_inode_removexattr(dentry, name);
1202
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001203 if (rc != 0)
1204 return rc;
1205
Eric Parisa2694342011-04-25 13:10:27 -04001206 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001207 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001208
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001209 rc = smk_curacc(smk_of_inode(dentry->d_inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001210 rc = smk_bu_inode(dentry->d_inode, MAY_WRITE, rc);
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001211 if (rc != 0)
1212 return rc;
1213
1214 isp = dentry->d_inode->i_security;
1215 /*
1216 * Don't do anything special for these.
1217 * XATTR_NAME_SMACKIPIN
1218 * XATTR_NAME_SMACKIPOUT
1219 * XATTR_NAME_SMACKEXEC
1220 */
1221 if (strcmp(name, XATTR_NAME_SMACK) == 0)
Casey Schaufler676dac42010-12-02 06:43:39 -08001222 isp->smk_task = NULL;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001223 else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001224 isp->smk_mmap = NULL;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001225 else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0)
1226 isp->smk_flags &= ~SMK_INODE_TRANSMUTE;
Casey Schaufler676dac42010-12-02 06:43:39 -08001227
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001228 return 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001229}
1230
1231/**
1232 * smack_inode_getsecurity - get smack xattrs
1233 * @inode: the object
1234 * @name: attribute name
1235 * @buffer: where to put the result
Randy Dunlap251a2a92009-02-18 11:42:33 -08001236 * @alloc: unused
Casey Schauflere114e472008-02-04 22:29:50 -08001237 *
1238 * Returns the size of the attribute or an error code
1239 */
1240static int smack_inode_getsecurity(const struct inode *inode,
1241 const char *name, void **buffer,
1242 bool alloc)
1243{
1244 struct socket_smack *ssp;
1245 struct socket *sock;
1246 struct super_block *sbp;
1247 struct inode *ip = (struct inode *)inode;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001248 struct smack_known *isp;
Casey Schauflere114e472008-02-04 22:29:50 -08001249 int ilen;
1250 int rc = 0;
1251
1252 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
1253 isp = smk_of_inode(inode);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001254 ilen = strlen(isp->smk_known);
1255 *buffer = isp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08001256 return ilen;
1257 }
1258
1259 /*
1260 * The rest of the Smack xattrs are only on sockets.
1261 */
1262 sbp = ip->i_sb;
1263 if (sbp->s_magic != SOCKFS_MAGIC)
1264 return -EOPNOTSUPP;
1265
1266 sock = SOCKET_I(ip);
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08001267 if (sock == NULL || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08001268 return -EOPNOTSUPP;
1269
1270 ssp = sock->sk->sk_security;
1271
1272 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001273 isp = ssp->smk_in;
Casey Schauflere114e472008-02-04 22:29:50 -08001274 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001275 isp = ssp->smk_out;
Casey Schauflere114e472008-02-04 22:29:50 -08001276 else
1277 return -EOPNOTSUPP;
1278
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001279 ilen = strlen(isp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08001280 if (rc == 0) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001281 *buffer = isp->smk_known;
Casey Schauflere114e472008-02-04 22:29:50 -08001282 rc = ilen;
1283 }
1284
1285 return rc;
1286}
1287
1288
1289/**
1290 * smack_inode_listsecurity - list the Smack attributes
1291 * @inode: the object
1292 * @buffer: where they go
1293 * @buffer_size: size of buffer
1294 *
1295 * Returns 0 on success, -EINVAL otherwise
1296 */
1297static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1298 size_t buffer_size)
1299{
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001300 int len = sizeof(XATTR_NAME_SMACK);
Casey Schauflere114e472008-02-04 22:29:50 -08001301
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001302 if (buffer != NULL && len <= buffer_size)
Casey Schauflere114e472008-02-04 22:29:50 -08001303 memcpy(buffer, XATTR_NAME_SMACK, len);
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001304
1305 return len;
Casey Schauflere114e472008-02-04 22:29:50 -08001306}
1307
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001308/**
1309 * smack_inode_getsecid - Extract inode's security id
1310 * @inode: inode to extract the info from
1311 * @secid: where result will be saved
1312 */
1313static void smack_inode_getsecid(const struct inode *inode, u32 *secid)
1314{
1315 struct inode_smack *isp = inode->i_security;
1316
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001317 *secid = isp->smk_inode->smk_secid;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001318}
1319
Casey Schauflere114e472008-02-04 22:29:50 -08001320/*
1321 * File Hooks
1322 */
1323
1324/**
1325 * smack_file_permission - Smack check on file operations
1326 * @file: unused
1327 * @mask: unused
1328 *
1329 * Returns 0
1330 *
1331 * Should access checks be done on each read or write?
1332 * UNICOS and SELinux say yes.
1333 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
1334 *
1335 * I'll say no for now. Smack does not do the frequent
1336 * label changing that SELinux does.
1337 */
1338static int smack_file_permission(struct file *file, int mask)
1339{
1340 return 0;
1341}
1342
1343/**
1344 * smack_file_alloc_security - assign a file security blob
1345 * @file: the object
1346 *
1347 * The security blob for a file is a pointer to the master
1348 * label list, so no allocation is done.
1349 *
1350 * Returns 0
1351 */
1352static int smack_file_alloc_security(struct file *file)
1353{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001354 struct smack_known *skp = smk_of_current();
1355
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001356 file->f_security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08001357 return 0;
1358}
1359
1360/**
1361 * smack_file_free_security - clear a file security blob
1362 * @file: the object
1363 *
1364 * The security blob for a file is a pointer to the master
1365 * label list, so no memory is freed.
1366 */
1367static void smack_file_free_security(struct file *file)
1368{
1369 file->f_security = NULL;
1370}
1371
1372/**
1373 * smack_file_ioctl - Smack check on ioctls
1374 * @file: the object
1375 * @cmd: what to do
1376 * @arg: unused
1377 *
1378 * Relies heavily on the correct use of the ioctl command conventions.
1379 *
1380 * Returns 0 if allowed, error code otherwise
1381 */
1382static int smack_file_ioctl(struct file *file, unsigned int cmd,
1383 unsigned long arg)
1384{
1385 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001386 struct smk_audit_info ad;
1387
Eric Parisf48b7392011-04-25 12:54:27 -04001388 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001389 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflere114e472008-02-04 22:29:50 -08001390
Casey Schauflerd166c802014-08-27 14:51:27 -07001391 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02001392 rc = smk_curacc(file->f_security, MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001393 rc = smk_bu_file(file, MAY_WRITE, rc);
1394 }
Casey Schauflere114e472008-02-04 22:29:50 -08001395
Casey Schauflerd166c802014-08-27 14:51:27 -07001396 if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ)) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02001397 rc = smk_curacc(file->f_security, MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001398 rc = smk_bu_file(file, MAY_READ, rc);
1399 }
Casey Schauflere114e472008-02-04 22:29:50 -08001400
1401 return rc;
1402}
1403
1404/**
1405 * smack_file_lock - Smack check on file locking
1406 * @file: the object
Randy Dunlap251a2a92009-02-18 11:42:33 -08001407 * @cmd: unused
Casey Schauflere114e472008-02-04 22:29:50 -08001408 *
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001409 * Returns 0 if current has lock access, error code otherwise
Casey Schauflere114e472008-02-04 22:29:50 -08001410 */
1411static int smack_file_lock(struct file *file, unsigned int cmd)
1412{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001413 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001414 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001415
Eric Paris92f42502011-04-25 13:15:55 -04001416 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1417 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflerd166c802014-08-27 14:51:27 -07001418 rc = smk_curacc(file->f_security, MAY_LOCK, &ad);
1419 rc = smk_bu_file(file, MAY_LOCK, rc);
1420 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001421}
1422
1423/**
1424 * smack_file_fcntl - Smack check on fcntl
1425 * @file: the object
1426 * @cmd: what action to check
1427 * @arg: unused
1428 *
Casey Schaufler531f1d42011-09-19 12:41:42 -07001429 * Generally these operations are harmless.
1430 * File locking operations present an obvious mechanism
1431 * for passing information, so they require write access.
1432 *
Casey Schauflere114e472008-02-04 22:29:50 -08001433 * Returns 0 if current has access, error code otherwise
1434 */
1435static int smack_file_fcntl(struct file *file, unsigned int cmd,
1436 unsigned long arg)
1437{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001438 struct smk_audit_info ad;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001439 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001440
Etienne Bassetecfcc532009-04-08 20:40:06 +02001441
Casey Schauflere114e472008-02-04 22:29:50 -08001442 switch (cmd) {
Casey Schauflere114e472008-02-04 22:29:50 -08001443 case F_GETLK:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001444 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001445 case F_SETLK:
1446 case F_SETLKW:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001447 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1448 smk_ad_setfield_u_fs_path(&ad, file->f_path);
1449 rc = smk_curacc(file->f_security, MAY_LOCK, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001450 rc = smk_bu_file(file, MAY_LOCK, rc);
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001451 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001452 case F_SETOWN:
1453 case F_SETSIG:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001454 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1455 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001456 rc = smk_curacc(file->f_security, MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001457 rc = smk_bu_file(file, MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001458 break;
1459 default:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001460 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001461 }
1462
1463 return rc;
1464}
1465
1466/**
Al Viroe5467852012-05-30 13:30:51 -04001467 * smack_mmap_file :
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001468 * Check permissions for a mmap operation. The @file may be NULL, e.g.
1469 * if mapping anonymous memory.
1470 * @file contains the file structure for file to map (may be NULL).
1471 * @reqprot contains the protection requested by the application.
1472 * @prot contains the protection that will be applied by the kernel.
1473 * @flags contains the operational flags.
1474 * Return 0 if permission is granted.
1475 */
Al Viroe5467852012-05-30 13:30:51 -04001476static int smack_mmap_file(struct file *file,
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001477 unsigned long reqprot, unsigned long prot,
Al Viroe5467852012-05-30 13:30:51 -04001478 unsigned long flags)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001479{
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001480 struct smack_known *skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001481 struct smack_known *mkp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001482 struct smack_rule *srp;
1483 struct task_smack *tsp;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001484 struct smack_known *okp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001485 struct inode_smack *isp;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001486 int may;
1487 int mmay;
1488 int tmay;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001489 int rc;
1490
Al Viro496ad9a2013-01-23 17:07:38 -05001491 if (file == NULL)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001492 return 0;
1493
Al Viro496ad9a2013-01-23 17:07:38 -05001494 isp = file_inode(file)->i_security;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001495 if (isp->smk_mmap == NULL)
1496 return 0;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001497 mkp = isp->smk_mmap;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001498
1499 tsp = current_security();
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001500 skp = smk_of_current();
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001501 rc = 0;
1502
1503 rcu_read_lock();
1504 /*
1505 * For each Smack rule associated with the subject
1506 * label verify that the SMACK64MMAP also has access
1507 * to that rule's object label.
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001508 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001509 list_for_each_entry_rcu(srp, &skp->smk_rules, list) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001510 okp = srp->smk_object;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001511 /*
1512 * Matching labels always allows access.
1513 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001514 if (mkp->smk_known == okp->smk_known)
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001515 continue;
1516 /*
1517 * If there is a matching local rule take
1518 * that into account as well.
1519 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001520 may = smk_access_entry(srp->smk_subject->smk_known,
1521 okp->smk_known,
1522 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001523 if (may == -ENOENT)
1524 may = srp->smk_access;
1525 else
1526 may &= srp->smk_access;
1527 /*
1528 * If may is zero the SMACK64MMAP subject can't
1529 * possibly have less access.
1530 */
1531 if (may == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001532 continue;
1533
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001534 /*
1535 * Fetch the global list entry.
1536 * If there isn't one a SMACK64MMAP subject
1537 * can't have as much access as current.
1538 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001539 mmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1540 &mkp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001541 if (mmay == -ENOENT) {
1542 rc = -EACCES;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001543 break;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001544 }
1545 /*
1546 * If there is a local entry it modifies the
1547 * potential access, too.
1548 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001549 tmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1550 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001551 if (tmay != -ENOENT)
1552 mmay &= tmay;
1553
1554 /*
1555 * If there is any access available to current that is
1556 * not available to a SMACK64MMAP subject
1557 * deny access.
1558 */
Casey Schaufler75a25632011-02-09 19:58:42 -08001559 if ((may | mmay) != mmay) {
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001560 rc = -EACCES;
1561 break;
1562 }
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001563 }
1564
1565 rcu_read_unlock();
1566
1567 return rc;
1568}
1569
1570/**
Casey Schauflere114e472008-02-04 22:29:50 -08001571 * smack_file_set_fowner - set the file security blob value
1572 * @file: object in question
1573 *
1574 * Returns 0
1575 * Further research may be required on this one.
1576 */
Jeff Laytone0b93ed2014-08-22 11:27:32 -04001577static void smack_file_set_fowner(struct file *file)
Casey Schauflere114e472008-02-04 22:29:50 -08001578{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001579 struct smack_known *skp = smk_of_current();
1580
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001581 file->f_security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08001582}
1583
1584/**
1585 * smack_file_send_sigiotask - Smack on sigio
1586 * @tsk: The target task
1587 * @fown: the object the signal come from
1588 * @signum: unused
1589 *
1590 * Allow a privileged task to get signals even if it shouldn't
1591 *
1592 * Returns 0 if a subject with the object's smack could
1593 * write to the task, an error code otherwise.
1594 */
1595static int smack_file_send_sigiotask(struct task_struct *tsk,
1596 struct fown_struct *fown, int signum)
1597{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001598 struct smack_known *skp;
1599 struct smack_known *tkp = smk_of_task(tsk->cred->security);
Casey Schauflere114e472008-02-04 22:29:50 -08001600 struct file *file;
1601 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001602 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001603
1604 /*
1605 * struct fown_struct is never outside the context of a struct file
1606 */
1607 file = container_of(fown, struct file, f_owner);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001608
Etienne Bassetecfcc532009-04-08 20:40:06 +02001609 /* we don't log here as rc can be overriden */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001610 skp = file->f_security;
1611 rc = smk_access(skp, tkp, MAY_WRITE, NULL);
1612 rc = smk_bu_note("sigiotask", skp, tkp, MAY_WRITE, rc);
David Howells5cd9c582008-08-14 11:37:28 +01001613 if (rc != 0 && has_capability(tsk, CAP_MAC_OVERRIDE))
Etienne Bassetecfcc532009-04-08 20:40:06 +02001614 rc = 0;
1615
1616 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1617 smk_ad_setfield_u_tsk(&ad, tsk);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001618 smack_log(skp->smk_known, tkp->smk_known, MAY_WRITE, rc, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001619 return rc;
1620}
1621
1622/**
1623 * smack_file_receive - Smack file receive check
1624 * @file: the object
1625 *
1626 * Returns 0 if current has access, error code otherwise
1627 */
1628static int smack_file_receive(struct file *file)
1629{
Casey Schauflerd166c802014-08-27 14:51:27 -07001630 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001631 int may = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001632 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001633
Casey Schaufler4482a442013-12-30 17:37:45 -08001634 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001635 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflere114e472008-02-04 22:29:50 -08001636 /*
1637 * This code relies on bitmasks.
1638 */
1639 if (file->f_mode & FMODE_READ)
1640 may = MAY_READ;
1641 if (file->f_mode & FMODE_WRITE)
1642 may |= MAY_WRITE;
1643
Casey Schauflerd166c802014-08-27 14:51:27 -07001644 rc = smk_curacc(file->f_security, may, &ad);
1645 rc = smk_bu_file(file, may, rc);
1646 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001647}
1648
Casey Schaufler531f1d42011-09-19 12:41:42 -07001649/**
Eric Paris83d49852012-04-04 13:45:40 -04001650 * smack_file_open - Smack dentry open processing
Casey Schaufler531f1d42011-09-19 12:41:42 -07001651 * @file: the object
Casey Schauflera6834c02014-04-21 11:10:26 -07001652 * @cred: task credential
Casey Schaufler531f1d42011-09-19 12:41:42 -07001653 *
1654 * Set the security blob in the file structure.
Casey Schauflera6834c02014-04-21 11:10:26 -07001655 * Allow the open only if the task has read access. There are
1656 * many read operations (e.g. fstat) that you can do with an
1657 * fd even if you have the file open write-only.
Casey Schaufler531f1d42011-09-19 12:41:42 -07001658 *
1659 * Returns 0
1660 */
Eric Paris83d49852012-04-04 13:45:40 -04001661static int smack_file_open(struct file *file, const struct cred *cred)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001662{
Casey Schauflera6834c02014-04-21 11:10:26 -07001663 struct task_smack *tsp = cred->security;
Al Viro496ad9a2013-01-23 17:07:38 -05001664 struct inode_smack *isp = file_inode(file)->i_security;
Casey Schauflera6834c02014-04-21 11:10:26 -07001665 struct smk_audit_info ad;
1666 int rc;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001667
Marcin Niesluchowskid83d2c22014-08-19 14:26:32 +02001668 if (smack_privileged(CAP_MAC_OVERRIDE)) {
1669 file->f_security = isp->smk_inode;
Casey Schauflera6834c02014-04-21 11:10:26 -07001670 return 0;
Marcin Niesluchowskid83d2c22014-08-19 14:26:32 +02001671 }
Casey Schaufler531f1d42011-09-19 12:41:42 -07001672
Casey Schauflera6834c02014-04-21 11:10:26 -07001673 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1674 smk_ad_setfield_u_fs_path(&ad, file->f_path);
1675 rc = smk_access(tsp->smk_task, isp->smk_inode, MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001676 rc = smk_bu_credfile(cred, file, MAY_READ, rc);
Casey Schauflera6834c02014-04-21 11:10:26 -07001677 if (rc == 0)
1678 file->f_security = isp->smk_inode;
1679
1680 return rc;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001681}
1682
Casey Schauflere114e472008-02-04 22:29:50 -08001683/*
1684 * Task hooks
1685 */
1686
1687/**
David Howellsee18d642009-09-02 09:14:21 +01001688 * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1689 * @new: the new credentials
1690 * @gfp: the atomicity of any memory allocations
1691 *
1692 * Prepare a blank set of credentials for modification. This must allocate all
1693 * the memory the LSM module might require such that cred_transfer() can
1694 * complete without error.
1695 */
1696static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1697{
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001698 struct task_smack *tsp;
1699
1700 tsp = new_task_smack(NULL, NULL, gfp);
1701 if (tsp == NULL)
Casey Schaufler676dac42010-12-02 06:43:39 -08001702 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001703
1704 cred->security = tsp;
1705
David Howellsee18d642009-09-02 09:14:21 +01001706 return 0;
1707}
1708
1709
1710/**
David Howellsf1752ee2008-11-14 10:39:17 +11001711 * smack_cred_free - "free" task-level security credentials
1712 * @cred: the credentials in question
Casey Schauflere114e472008-02-04 22:29:50 -08001713 *
Casey Schauflere114e472008-02-04 22:29:50 -08001714 */
David Howellsf1752ee2008-11-14 10:39:17 +11001715static void smack_cred_free(struct cred *cred)
Casey Schauflere114e472008-02-04 22:29:50 -08001716{
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001717 struct task_smack *tsp = cred->security;
1718 struct smack_rule *rp;
1719 struct list_head *l;
1720 struct list_head *n;
1721
1722 if (tsp == NULL)
1723 return;
1724 cred->security = NULL;
1725
1726 list_for_each_safe(l, n, &tsp->smk_rules) {
1727 rp = list_entry(l, struct smack_rule, list);
1728 list_del(&rp->list);
1729 kfree(rp);
1730 }
1731 kfree(tsp);
Casey Schauflere114e472008-02-04 22:29:50 -08001732}
1733
1734/**
David Howellsd84f4f92008-11-14 10:39:23 +11001735 * smack_cred_prepare - prepare new set of credentials for modification
1736 * @new: the new credentials
1737 * @old: the original credentials
1738 * @gfp: the atomicity of any memory allocations
1739 *
1740 * Prepare a new set of credentials for modification.
1741 */
1742static int smack_cred_prepare(struct cred *new, const struct cred *old,
1743 gfp_t gfp)
1744{
Casey Schaufler676dac42010-12-02 06:43:39 -08001745 struct task_smack *old_tsp = old->security;
1746 struct task_smack *new_tsp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001747 int rc;
Casey Schaufler676dac42010-12-02 06:43:39 -08001748
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001749 new_tsp = new_task_smack(old_tsp->smk_task, old_tsp->smk_task, gfp);
Casey Schaufler676dac42010-12-02 06:43:39 -08001750 if (new_tsp == NULL)
1751 return -ENOMEM;
1752
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001753 rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
1754 if (rc != 0)
1755 return rc;
1756
Casey Schaufler676dac42010-12-02 06:43:39 -08001757 new->security = new_tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11001758 return 0;
1759}
1760
Randy Dunlap251a2a92009-02-18 11:42:33 -08001761/**
David Howellsee18d642009-09-02 09:14:21 +01001762 * smack_cred_transfer - Transfer the old credentials to the new credentials
1763 * @new: the new credentials
1764 * @old: the original credentials
1765 *
1766 * Fill in a set of blank credentials from another set of credentials.
1767 */
1768static void smack_cred_transfer(struct cred *new, const struct cred *old)
1769{
Casey Schaufler676dac42010-12-02 06:43:39 -08001770 struct task_smack *old_tsp = old->security;
1771 struct task_smack *new_tsp = new->security;
1772
1773 new_tsp->smk_task = old_tsp->smk_task;
1774 new_tsp->smk_forked = old_tsp->smk_task;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001775 mutex_init(&new_tsp->smk_rules_lock);
1776 INIT_LIST_HEAD(&new_tsp->smk_rules);
1777
1778
1779 /* cbs copy rule list */
David Howellsee18d642009-09-02 09:14:21 +01001780}
1781
1782/**
David Howells3a3b7ce2008-11-14 10:39:28 +11001783 * smack_kernel_act_as - Set the subjective context in a set of credentials
Randy Dunlap251a2a92009-02-18 11:42:33 -08001784 * @new: points to the set of credentials to be modified.
1785 * @secid: specifies the security ID to be set
David Howells3a3b7ce2008-11-14 10:39:28 +11001786 *
1787 * Set the security data for a kernel service.
1788 */
1789static int smack_kernel_act_as(struct cred *new, u32 secid)
1790{
Casey Schaufler676dac42010-12-02 06:43:39 -08001791 struct task_smack *new_tsp = new->security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001792 struct smack_known *skp = smack_from_secid(secid);
David Howells3a3b7ce2008-11-14 10:39:28 +11001793
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001794 if (skp == NULL)
David Howells3a3b7ce2008-11-14 10:39:28 +11001795 return -EINVAL;
1796
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001797 new_tsp->smk_task = skp;
David Howells3a3b7ce2008-11-14 10:39:28 +11001798 return 0;
1799}
1800
1801/**
1802 * smack_kernel_create_files_as - Set the file creation label in a set of creds
Randy Dunlap251a2a92009-02-18 11:42:33 -08001803 * @new: points to the set of credentials to be modified
1804 * @inode: points to the inode to use as a reference
David Howells3a3b7ce2008-11-14 10:39:28 +11001805 *
1806 * Set the file creation context in a set of credentials to the same
1807 * as the objective context of the specified inode
1808 */
1809static int smack_kernel_create_files_as(struct cred *new,
1810 struct inode *inode)
1811{
1812 struct inode_smack *isp = inode->i_security;
Casey Schaufler676dac42010-12-02 06:43:39 -08001813 struct task_smack *tsp = new->security;
David Howells3a3b7ce2008-11-14 10:39:28 +11001814
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001815 tsp->smk_forked = isp->smk_inode;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001816 tsp->smk_task = tsp->smk_forked;
David Howells3a3b7ce2008-11-14 10:39:28 +11001817 return 0;
1818}
1819
1820/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02001821 * smk_curacc_on_task - helper to log task related access
1822 * @p: the task object
Casey Schaufler531f1d42011-09-19 12:41:42 -07001823 * @access: the access requested
1824 * @caller: name of the calling function for audit
Etienne Bassetecfcc532009-04-08 20:40:06 +02001825 *
1826 * Return 0 if access is permitted
1827 */
Casey Schaufler531f1d42011-09-19 12:41:42 -07001828static int smk_curacc_on_task(struct task_struct *p, int access,
1829 const char *caller)
Etienne Bassetecfcc532009-04-08 20:40:06 +02001830{
1831 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001832 struct smack_known *skp = smk_of_task(task_security(p));
Casey Schauflerd166c802014-08-27 14:51:27 -07001833 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001834
Casey Schaufler531f1d42011-09-19 12:41:42 -07001835 smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001836 smk_ad_setfield_u_tsk(&ad, p);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001837 rc = smk_curacc(skp, access, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001838 rc = smk_bu_task(p, access, rc);
1839 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001840}
1841
1842/**
Casey Schauflere114e472008-02-04 22:29:50 -08001843 * smack_task_setpgid - Smack check on setting pgid
1844 * @p: the task object
1845 * @pgid: unused
1846 *
1847 * Return 0 if write access is permitted
1848 */
1849static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
1850{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001851 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001852}
1853
1854/**
1855 * smack_task_getpgid - Smack access check for getpgid
1856 * @p: the object task
1857 *
1858 * Returns 0 if current can read the object task, error code otherwise
1859 */
1860static int smack_task_getpgid(struct task_struct *p)
1861{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001862 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001863}
1864
1865/**
1866 * smack_task_getsid - Smack access check for getsid
1867 * @p: the object task
1868 *
1869 * Returns 0 if current can read the object task, error code otherwise
1870 */
1871static int smack_task_getsid(struct task_struct *p)
1872{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001873 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001874}
1875
1876/**
1877 * smack_task_getsecid - get the secid of the task
1878 * @p: the object task
1879 * @secid: where to put the result
1880 *
1881 * Sets the secid to contain a u32 version of the smack label.
1882 */
1883static void smack_task_getsecid(struct task_struct *p, u32 *secid)
1884{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001885 struct smack_known *skp = smk_of_task(task_security(p));
1886
1887 *secid = skp->smk_secid;
Casey Schauflere114e472008-02-04 22:29:50 -08001888}
1889
1890/**
1891 * smack_task_setnice - Smack check on setting nice
1892 * @p: the task object
1893 * @nice: unused
1894 *
1895 * Return 0 if write access is permitted
1896 */
1897static int smack_task_setnice(struct task_struct *p, int nice)
1898{
Casey Schauflerbcdca222008-02-23 15:24:04 -08001899 int rc;
1900
1901 rc = cap_task_setnice(p, nice);
1902 if (rc == 0)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001903 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001904 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001905}
1906
1907/**
1908 * smack_task_setioprio - Smack check on setting ioprio
1909 * @p: the task object
1910 * @ioprio: unused
1911 *
1912 * Return 0 if write access is permitted
1913 */
1914static int smack_task_setioprio(struct task_struct *p, int ioprio)
1915{
Casey Schauflerbcdca222008-02-23 15:24:04 -08001916 int rc;
1917
1918 rc = cap_task_setioprio(p, ioprio);
1919 if (rc == 0)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001920 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001921 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001922}
1923
1924/**
1925 * smack_task_getioprio - Smack check on reading ioprio
1926 * @p: the task object
1927 *
1928 * Return 0 if read access is permitted
1929 */
1930static int smack_task_getioprio(struct task_struct *p)
1931{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001932 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001933}
1934
1935/**
1936 * smack_task_setscheduler - Smack check on setting scheduler
1937 * @p: the task object
1938 * @policy: unused
1939 * @lp: unused
1940 *
1941 * Return 0 if read access is permitted
1942 */
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001943static int smack_task_setscheduler(struct task_struct *p)
Casey Schauflere114e472008-02-04 22:29:50 -08001944{
Casey Schauflerbcdca222008-02-23 15:24:04 -08001945 int rc;
1946
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001947 rc = cap_task_setscheduler(p);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001948 if (rc == 0)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001949 rc = smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001950 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001951}
1952
1953/**
1954 * smack_task_getscheduler - Smack check on reading scheduler
1955 * @p: the task object
1956 *
1957 * Return 0 if read access is permitted
1958 */
1959static int smack_task_getscheduler(struct task_struct *p)
1960{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001961 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001962}
1963
1964/**
1965 * smack_task_movememory - Smack check on moving memory
1966 * @p: the task object
1967 *
1968 * Return 0 if write access is permitted
1969 */
1970static int smack_task_movememory(struct task_struct *p)
1971{
Casey Schaufler531f1d42011-09-19 12:41:42 -07001972 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08001973}
1974
1975/**
1976 * smack_task_kill - Smack check on signal delivery
1977 * @p: the task object
1978 * @info: unused
1979 * @sig: unused
1980 * @secid: identifies the smack to use in lieu of current's
1981 *
1982 * Return 0 if write access is permitted
1983 *
1984 * The secid behavior is an artifact of an SELinux hack
1985 * in the USB code. Someday it may go away.
1986 */
1987static int smack_task_kill(struct task_struct *p, struct siginfo *info,
1988 int sig, u32 secid)
1989{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001990 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001991 struct smack_known *skp;
1992 struct smack_known *tkp = smk_of_task(task_security(p));
Casey Schauflerd166c802014-08-27 14:51:27 -07001993 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001994
1995 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1996 smk_ad_setfield_u_tsk(&ad, p);
Casey Schauflere114e472008-02-04 22:29:50 -08001997 /*
Casey Schauflere114e472008-02-04 22:29:50 -08001998 * Sending a signal requires that the sender
1999 * can write the receiver.
2000 */
Casey Schauflerd166c802014-08-27 14:51:27 -07002001 if (secid == 0) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002002 rc = smk_curacc(tkp, MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07002003 rc = smk_bu_task(p, MAY_WRITE, rc);
2004 return rc;
2005 }
Casey Schauflere114e472008-02-04 22:29:50 -08002006 /*
2007 * If the secid isn't 0 we're dealing with some USB IO
2008 * specific behavior. This is not clean. For one thing
2009 * we can't take privilege into account.
2010 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002011 skp = smack_from_secid(secid);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002012 rc = smk_access(skp, tkp, MAY_WRITE, &ad);
2013 rc = smk_bu_note("USB signal", skp, tkp, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07002014 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002015}
2016
2017/**
2018 * smack_task_wait - Smack access check for waiting
2019 * @p: task to wait for
2020 *
Casey Schauflerc00bedb2012-08-09 17:46:38 -07002021 * Returns 0
Casey Schauflere114e472008-02-04 22:29:50 -08002022 */
2023static int smack_task_wait(struct task_struct *p)
2024{
Casey Schauflere114e472008-02-04 22:29:50 -08002025 /*
Casey Schauflerc00bedb2012-08-09 17:46:38 -07002026 * Allow the operation to succeed.
2027 * Zombies are bad.
2028 * In userless environments (e.g. phones) programs
2029 * get marked with SMACK64EXEC and even if the parent
2030 * and child shouldn't be talking the parent still
2031 * may expect to know when the child exits.
Casey Schauflere114e472008-02-04 22:29:50 -08002032 */
Casey Schauflerc00bedb2012-08-09 17:46:38 -07002033 return 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002034}
2035
2036/**
2037 * smack_task_to_inode - copy task smack into the inode blob
2038 * @p: task to copy from
Randy Dunlap251a2a92009-02-18 11:42:33 -08002039 * @inode: inode to copy to
Casey Schauflere114e472008-02-04 22:29:50 -08002040 *
2041 * Sets the smack pointer in the inode security blob
2042 */
2043static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
2044{
2045 struct inode_smack *isp = inode->i_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002046 struct smack_known *skp = smk_of_task(task_security(p));
2047
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002048 isp->smk_inode = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002049}
2050
2051/*
2052 * Socket hooks.
2053 */
2054
2055/**
2056 * smack_sk_alloc_security - Allocate a socket blob
2057 * @sk: the socket
2058 * @family: unused
Randy Dunlap251a2a92009-02-18 11:42:33 -08002059 * @gfp_flags: memory allocation flags
Casey Schauflere114e472008-02-04 22:29:50 -08002060 *
2061 * Assign Smack pointers to current
2062 *
2063 * Returns 0 on success, -ENOMEM is there's no memory
2064 */
2065static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
2066{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002067 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002068 struct socket_smack *ssp;
2069
2070 ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
2071 if (ssp == NULL)
2072 return -ENOMEM;
2073
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002074 ssp->smk_in = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002075 ssp->smk_out = skp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07002076 ssp->smk_packet = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -08002077
2078 sk->sk_security = ssp;
2079
2080 return 0;
2081}
2082
2083/**
2084 * smack_sk_free_security - Free a socket blob
2085 * @sk: the socket
2086 *
2087 * Clears the blob pointer
2088 */
2089static void smack_sk_free_security(struct sock *sk)
2090{
2091 kfree(sk->sk_security);
2092}
2093
2094/**
Paul Moore07feee82009-03-27 17:10:54 -04002095* smack_host_label - check host based restrictions
2096* @sip: the object end
2097*
2098* looks for host based access restrictions
2099*
2100* This version will only be appropriate for really small sets of single label
2101* hosts. The caller is responsible for ensuring that the RCU read lock is
2102* taken before calling this function.
2103*
2104* Returns the label of the far end or NULL if it's not special.
2105*/
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002106static struct smack_known *smack_host_label(struct sockaddr_in *sip)
Paul Moore07feee82009-03-27 17:10:54 -04002107{
2108 struct smk_netlbladdr *snp;
2109 struct in_addr *siap = &sip->sin_addr;
2110
2111 if (siap->s_addr == 0)
2112 return NULL;
2113
2114 list_for_each_entry_rcu(snp, &smk_netlbladdr_list, list)
2115 /*
2116 * we break after finding the first match because
2117 * the list is sorted from longest to shortest mask
2118 * so we have found the most specific match
2119 */
2120 if ((&snp->smk_host.sin_addr)->s_addr ==
Etienne Basset43031542009-03-27 17:11:01 -04002121 (siap->s_addr & (&snp->smk_mask)->s_addr)) {
2122 /* we have found the special CIPSO option */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002123 if (snp->smk_label == &smack_cipso_option)
Etienne Basset43031542009-03-27 17:11:01 -04002124 return NULL;
Paul Moore07feee82009-03-27 17:10:54 -04002125 return snp->smk_label;
Etienne Basset43031542009-03-27 17:11:01 -04002126 }
Paul Moore07feee82009-03-27 17:10:54 -04002127
2128 return NULL;
2129}
2130
2131/**
Casey Schauflere114e472008-02-04 22:29:50 -08002132 * smack_netlabel - Set the secattr on a socket
2133 * @sk: the socket
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002134 * @labeled: socket label scheme
Casey Schauflere114e472008-02-04 22:29:50 -08002135 *
2136 * Convert the outbound smack value (smk_out) to a
2137 * secattr and attach it to the socket.
2138 *
2139 * Returns 0 on success or an error code
2140 */
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002141static int smack_netlabel(struct sock *sk, int labeled)
Casey Schauflere114e472008-02-04 22:29:50 -08002142{
Casey Schauflerf7112e62012-05-06 15:22:02 -07002143 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04002144 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002145 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002146
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002147 /*
2148 * Usually the netlabel code will handle changing the
2149 * packet labeling based on the label.
2150 * The case of a single label host is different, because
2151 * a single label host should never get a labeled packet
2152 * even though the label is usually associated with a packet
2153 * label.
2154 */
2155 local_bh_disable();
2156 bh_lock_sock_nested(sk);
2157
2158 if (ssp->smk_out == smack_net_ambient ||
2159 labeled == SMACK_UNLABELED_SOCKET)
2160 netlbl_sock_delattr(sk);
2161 else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002162 skp = ssp->smk_out;
Casey Schauflerf7112e62012-05-06 15:22:02 -07002163 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002164 }
2165
2166 bh_unlock_sock(sk);
2167 local_bh_enable();
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002168
Casey Schauflere114e472008-02-04 22:29:50 -08002169 return rc;
2170}
2171
2172/**
Paul Moore07feee82009-03-27 17:10:54 -04002173 * smack_netlbel_send - Set the secattr on a socket and perform access checks
2174 * @sk: the socket
2175 * @sap: the destination address
2176 *
2177 * Set the correct secattr for the given socket based on the destination
2178 * address and perform any outbound access checks needed.
2179 *
2180 * Returns 0 on success or an error code.
2181 *
2182 */
2183static int smack_netlabel_send(struct sock *sk, struct sockaddr_in *sap)
2184{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002185 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04002186 int rc;
2187 int sk_lbl;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002188 struct smack_known *hkp;
Paul Moore07feee82009-03-27 17:10:54 -04002189 struct socket_smack *ssp = sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002190 struct smk_audit_info ad;
Paul Moore07feee82009-03-27 17:10:54 -04002191
2192 rcu_read_lock();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002193 hkp = smack_host_label(sap);
2194 if (hkp != NULL) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02002195#ifdef CONFIG_AUDIT
Kees Cook923e9a12012-04-10 13:26:44 -07002196 struct lsm_network_audit net;
2197
Eric Paris48c62af2012-04-02 13:15:44 -04002198 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2199 ad.a.u.net->family = sap->sin_family;
2200 ad.a.u.net->dport = sap->sin_port;
2201 ad.a.u.net->v4info.daddr = sap->sin_addr.s_addr;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002202#endif
Kees Cook923e9a12012-04-10 13:26:44 -07002203 sk_lbl = SMACK_UNLABELED_SOCKET;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002204 skp = ssp->smk_out;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002205 rc = smk_access(skp, hkp, MAY_WRITE, &ad);
2206 rc = smk_bu_note("IPv4 host check", skp, hkp, MAY_WRITE, rc);
Paul Moore07feee82009-03-27 17:10:54 -04002207 } else {
2208 sk_lbl = SMACK_CIPSO_SOCKET;
2209 rc = 0;
2210 }
2211 rcu_read_unlock();
2212 if (rc != 0)
2213 return rc;
2214
2215 return smack_netlabel(sk, sk_lbl);
2216}
2217
2218/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002219 * smk_ipv6_port_label - Smack port access table management
2220 * @sock: socket
2221 * @address: address
2222 *
2223 * Create or update the port list entry
2224 */
2225static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
2226{
2227 struct sock *sk = sock->sk;
2228 struct sockaddr_in6 *addr6;
2229 struct socket_smack *ssp = sock->sk->sk_security;
2230 struct smk_port_label *spp;
2231 unsigned short port = 0;
2232
2233 if (address == NULL) {
2234 /*
2235 * This operation is changing the Smack information
2236 * on the bound socket. Take the changes to the port
2237 * as well.
2238 */
2239 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2240 if (sk != spp->smk_sock)
2241 continue;
2242 spp->smk_in = ssp->smk_in;
2243 spp->smk_out = ssp->smk_out;
2244 return;
2245 }
2246 /*
2247 * A NULL address is only used for updating existing
2248 * bound entries. If there isn't one, it's OK.
2249 */
2250 return;
2251 }
2252
2253 addr6 = (struct sockaddr_in6 *)address;
2254 port = ntohs(addr6->sin6_port);
2255 /*
2256 * This is a special case that is safely ignored.
2257 */
2258 if (port == 0)
2259 return;
2260
2261 /*
2262 * Look for an existing port list entry.
2263 * This is an indication that a port is getting reused.
2264 */
2265 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2266 if (spp->smk_port != port)
2267 continue;
2268 spp->smk_port = port;
2269 spp->smk_sock = sk;
2270 spp->smk_in = ssp->smk_in;
2271 spp->smk_out = ssp->smk_out;
2272 return;
2273 }
2274
2275 /*
2276 * A new port entry is required.
2277 */
2278 spp = kzalloc(sizeof(*spp), GFP_KERNEL);
2279 if (spp == NULL)
2280 return;
2281
2282 spp->smk_port = port;
2283 spp->smk_sock = sk;
2284 spp->smk_in = ssp->smk_in;
2285 spp->smk_out = ssp->smk_out;
2286
2287 list_add(&spp->list, &smk_ipv6_port_list);
2288 return;
2289}
2290
2291/**
2292 * smk_ipv6_port_check - check Smack port access
2293 * @sock: socket
2294 * @address: address
2295 *
2296 * Create or update the port list entry
2297 */
Casey Schaufler6ea06242013-08-05 13:21:22 -07002298static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
Casey Schauflerc6739442013-05-22 18:42:56 -07002299 int act)
2300{
2301 __be16 *bep;
2302 __be32 *be32p;
Casey Schauflerc6739442013-05-22 18:42:56 -07002303 struct smk_port_label *spp;
2304 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002305 struct smack_known *skp;
Casey Schauflerc6739442013-05-22 18:42:56 -07002306 unsigned short port = 0;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002307 struct smack_known *object;
Casey Schauflerc6739442013-05-22 18:42:56 -07002308 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002309 int rc;
Casey Schauflerc6739442013-05-22 18:42:56 -07002310#ifdef CONFIG_AUDIT
2311 struct lsm_network_audit net;
2312#endif
2313
2314 if (act == SMK_RECEIVING) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002315 skp = smack_net_ambient;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002316 object = ssp->smk_in;
Casey Schauflerc6739442013-05-22 18:42:56 -07002317 } else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002318 skp = ssp->smk_out;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002319 object = smack_net_ambient;
Casey Schauflerc6739442013-05-22 18:42:56 -07002320 }
2321
2322 /*
2323 * Get the IP address and port from the address.
2324 */
Casey Schaufler6ea06242013-08-05 13:21:22 -07002325 port = ntohs(address->sin6_port);
2326 bep = (__be16 *)(&address->sin6_addr);
2327 be32p = (__be32 *)(&address->sin6_addr);
Casey Schauflerc6739442013-05-22 18:42:56 -07002328
2329 /*
2330 * It's remote, so port lookup does no good.
2331 */
2332 if (be32p[0] || be32p[1] || be32p[2] || bep[6] || ntohs(bep[7]) != 1)
2333 goto auditout;
2334
2335 /*
2336 * It's local so the send check has to have passed.
2337 */
2338 if (act == SMK_RECEIVING) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002339 skp = &smack_known_web;
Casey Schauflerc6739442013-05-22 18:42:56 -07002340 goto auditout;
2341 }
2342
2343 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2344 if (spp->smk_port != port)
2345 continue;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002346 object = spp->smk_in;
Casey Schauflerc6739442013-05-22 18:42:56 -07002347 if (act == SMK_CONNECTING)
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002348 ssp->smk_packet = spp->smk_out;
Casey Schauflerc6739442013-05-22 18:42:56 -07002349 break;
2350 }
2351
2352auditout:
2353
2354#ifdef CONFIG_AUDIT
2355 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2356 ad.a.u.net->family = sk->sk_family;
2357 ad.a.u.net->dport = port;
2358 if (act == SMK_RECEIVING)
Casey Schaufler6ea06242013-08-05 13:21:22 -07002359 ad.a.u.net->v6info.saddr = address->sin6_addr;
Casey Schauflerc6739442013-05-22 18:42:56 -07002360 else
Casey Schaufler6ea06242013-08-05 13:21:22 -07002361 ad.a.u.net->v6info.daddr = address->sin6_addr;
Casey Schauflerc6739442013-05-22 18:42:56 -07002362#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07002363 rc = smk_access(skp, object, MAY_WRITE, &ad);
2364 rc = smk_bu_note("IPv6 port check", skp, object, MAY_WRITE, rc);
2365 return rc;
Casey Schauflerc6739442013-05-22 18:42:56 -07002366}
2367
2368/**
Casey Schauflere114e472008-02-04 22:29:50 -08002369 * smack_inode_setsecurity - set smack xattrs
2370 * @inode: the object
2371 * @name: attribute name
2372 * @value: attribute value
2373 * @size: size of the attribute
2374 * @flags: unused
2375 *
2376 * Sets the named attribute in the appropriate blob
2377 *
2378 * Returns 0 on success, or an error code
2379 */
2380static int smack_inode_setsecurity(struct inode *inode, const char *name,
2381 const void *value, size_t size, int flags)
2382{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002383 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002384 struct inode_smack *nsp = inode->i_security;
2385 struct socket_smack *ssp;
2386 struct socket *sock;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002387 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002388
Casey Schauflerf7112e62012-05-06 15:22:02 -07002389 if (value == NULL || size > SMK_LONGLABEL || size == 0)
Pankaj Kumar5e9ab592013-12-13 15:12:22 +05302390 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08002391
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002392 skp = smk_import_entry(value, size);
2393 if (skp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002394 return -EINVAL;
2395
2396 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002397 nsp->smk_inode = skp;
David P. Quigleyddd29ec2009-09-09 14:25:37 -04002398 nsp->smk_flags |= SMK_INODE_INSTANT;
Casey Schauflere114e472008-02-04 22:29:50 -08002399 return 0;
2400 }
2401 /*
2402 * The rest of the Smack xattrs are only on sockets.
2403 */
2404 if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2405 return -EOPNOTSUPP;
2406
2407 sock = SOCKET_I(inode);
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08002408 if (sock == NULL || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002409 return -EOPNOTSUPP;
2410
2411 ssp = sock->sk->sk_security;
2412
2413 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002414 ssp->smk_in = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002415 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002416 ssp->smk_out = skp;
Casey Schauflerc6739442013-05-22 18:42:56 -07002417 if (sock->sk->sk_family == PF_INET) {
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002418 rc = smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2419 if (rc != 0)
2420 printk(KERN_WARNING
2421 "Smack: \"%s\" netlbl error %d.\n",
2422 __func__, -rc);
2423 }
Casey Schauflere114e472008-02-04 22:29:50 -08002424 } else
2425 return -EOPNOTSUPP;
2426
Casey Schauflerc6739442013-05-22 18:42:56 -07002427 if (sock->sk->sk_family == PF_INET6)
2428 smk_ipv6_port_label(sock, NULL);
2429
Casey Schauflere114e472008-02-04 22:29:50 -08002430 return 0;
2431}
2432
2433/**
2434 * smack_socket_post_create - finish socket setup
2435 * @sock: the socket
2436 * @family: protocol family
2437 * @type: unused
2438 * @protocol: unused
2439 * @kern: unused
2440 *
2441 * Sets the netlabel information on the socket
2442 *
2443 * Returns 0 on success, and error code otherwise
2444 */
2445static int smack_socket_post_create(struct socket *sock, int family,
2446 int type, int protocol, int kern)
2447{
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08002448 if (family != PF_INET || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002449 return 0;
2450 /*
2451 * Set the outbound netlbl.
2452 */
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002453 return smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2454}
2455
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002456/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002457 * smack_socket_bind - record port binding information.
2458 * @sock: the socket
2459 * @address: the port address
2460 * @addrlen: size of the address
2461 *
2462 * Records the label bound to a port.
2463 *
2464 * Returns 0
2465 */
2466static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2467 int addrlen)
2468{
2469 if (sock->sk != NULL && sock->sk->sk_family == PF_INET6)
2470 smk_ipv6_port_label(sock, address);
2471
2472 return 0;
2473}
2474
2475/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002476 * smack_socket_connect - connect access check
2477 * @sock: the socket
2478 * @sap: the other end
2479 * @addrlen: size of sap
2480 *
2481 * Verifies that a connection may be possible
2482 *
2483 * Returns 0 on success, and error code otherwise
2484 */
2485static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2486 int addrlen)
2487{
Casey Schauflerc6739442013-05-22 18:42:56 -07002488 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002489
Casey Schauflerc6739442013-05-22 18:42:56 -07002490 if (sock->sk == NULL)
2491 return 0;
2492
2493 switch (sock->sk->sk_family) {
2494 case PF_INET:
2495 if (addrlen < sizeof(struct sockaddr_in))
2496 return -EINVAL;
2497 rc = smack_netlabel_send(sock->sk, (struct sockaddr_in *)sap);
2498 break;
2499 case PF_INET6:
2500 if (addrlen < sizeof(struct sockaddr_in6))
2501 return -EINVAL;
Casey Schaufler6ea06242013-08-05 13:21:22 -07002502 rc = smk_ipv6_port_check(sock->sk, (struct sockaddr_in6 *)sap,
2503 SMK_CONNECTING);
Casey Schauflerc6739442013-05-22 18:42:56 -07002504 break;
2505 }
2506 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002507}
2508
2509/**
2510 * smack_flags_to_may - convert S_ to MAY_ values
2511 * @flags: the S_ value
2512 *
2513 * Returns the equivalent MAY_ value
2514 */
2515static int smack_flags_to_may(int flags)
2516{
2517 int may = 0;
2518
2519 if (flags & S_IRUGO)
2520 may |= MAY_READ;
2521 if (flags & S_IWUGO)
2522 may |= MAY_WRITE;
2523 if (flags & S_IXUGO)
2524 may |= MAY_EXEC;
2525
2526 return may;
2527}
2528
2529/**
2530 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2531 * @msg: the object
2532 *
2533 * Returns 0
2534 */
2535static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2536{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002537 struct smack_known *skp = smk_of_current();
2538
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002539 msg->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002540 return 0;
2541}
2542
2543/**
2544 * smack_msg_msg_free_security - Clear the security blob for msg_msg
2545 * @msg: the object
2546 *
2547 * Clears the blob pointer
2548 */
2549static void smack_msg_msg_free_security(struct msg_msg *msg)
2550{
2551 msg->security = NULL;
2552}
2553
2554/**
2555 * smack_of_shm - the smack pointer for the shm
2556 * @shp: the object
2557 *
2558 * Returns a pointer to the smack value
2559 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002560static struct smack_known *smack_of_shm(struct shmid_kernel *shp)
Casey Schauflere114e472008-02-04 22:29:50 -08002561{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002562 return (struct smack_known *)shp->shm_perm.security;
Casey Schauflere114e472008-02-04 22:29:50 -08002563}
2564
2565/**
2566 * smack_shm_alloc_security - Set the security blob for shm
2567 * @shp: the object
2568 *
2569 * Returns 0
2570 */
2571static int smack_shm_alloc_security(struct shmid_kernel *shp)
2572{
2573 struct kern_ipc_perm *isp = &shp->shm_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002574 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002575
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002576 isp->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002577 return 0;
2578}
2579
2580/**
2581 * smack_shm_free_security - Clear the security blob for shm
2582 * @shp: the object
2583 *
2584 * Clears the blob pointer
2585 */
2586static void smack_shm_free_security(struct shmid_kernel *shp)
2587{
2588 struct kern_ipc_perm *isp = &shp->shm_perm;
2589
2590 isp->security = NULL;
2591}
2592
2593/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002594 * smk_curacc_shm : check if current has access on shm
2595 * @shp : the object
2596 * @access : access requested
2597 *
2598 * Returns 0 if current has the requested access, error code otherwise
2599 */
2600static int smk_curacc_shm(struct shmid_kernel *shp, int access)
2601{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002602 struct smack_known *ssp = smack_of_shm(shp);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002603 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002604 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002605
2606#ifdef CONFIG_AUDIT
2607 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2608 ad.a.u.ipc_id = shp->shm_perm.id;
2609#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07002610 rc = smk_curacc(ssp, access, &ad);
2611 rc = smk_bu_current("shm", ssp, access, rc);
2612 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002613}
2614
2615/**
Casey Schauflere114e472008-02-04 22:29:50 -08002616 * smack_shm_associate - Smack access check for shm
2617 * @shp: the object
2618 * @shmflg: access requested
2619 *
2620 * Returns 0 if current has the requested access, error code otherwise
2621 */
2622static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
2623{
Casey Schauflere114e472008-02-04 22:29:50 -08002624 int may;
2625
2626 may = smack_flags_to_may(shmflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002627 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002628}
2629
2630/**
2631 * smack_shm_shmctl - Smack access check for shm
2632 * @shp: the object
2633 * @cmd: what it wants to do
2634 *
2635 * Returns 0 if current has the requested access, error code otherwise
2636 */
2637static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
2638{
Casey Schauflere114e472008-02-04 22:29:50 -08002639 int may;
2640
2641 switch (cmd) {
2642 case IPC_STAT:
2643 case SHM_STAT:
2644 may = MAY_READ;
2645 break;
2646 case IPC_SET:
2647 case SHM_LOCK:
2648 case SHM_UNLOCK:
2649 case IPC_RMID:
2650 may = MAY_READWRITE;
2651 break;
2652 case IPC_INFO:
2653 case SHM_INFO:
2654 /*
2655 * System level information.
2656 */
2657 return 0;
2658 default:
2659 return -EINVAL;
2660 }
Etienne Bassetecfcc532009-04-08 20:40:06 +02002661 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002662}
2663
2664/**
2665 * smack_shm_shmat - Smack access for shmat
2666 * @shp: the object
2667 * @shmaddr: unused
2668 * @shmflg: access requested
2669 *
2670 * Returns 0 if current has the requested access, error code otherwise
2671 */
2672static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
2673 int shmflg)
2674{
Casey Schauflere114e472008-02-04 22:29:50 -08002675 int may;
2676
2677 may = smack_flags_to_may(shmflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002678 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002679}
2680
2681/**
2682 * smack_of_sem - the smack pointer for the sem
2683 * @sma: the object
2684 *
2685 * Returns a pointer to the smack value
2686 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002687static struct smack_known *smack_of_sem(struct sem_array *sma)
Casey Schauflere114e472008-02-04 22:29:50 -08002688{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002689 return (struct smack_known *)sma->sem_perm.security;
Casey Schauflere114e472008-02-04 22:29:50 -08002690}
2691
2692/**
2693 * smack_sem_alloc_security - Set the security blob for sem
2694 * @sma: the object
2695 *
2696 * Returns 0
2697 */
2698static int smack_sem_alloc_security(struct sem_array *sma)
2699{
2700 struct kern_ipc_perm *isp = &sma->sem_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002701 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002702
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002703 isp->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002704 return 0;
2705}
2706
2707/**
2708 * smack_sem_free_security - Clear the security blob for sem
2709 * @sma: the object
2710 *
2711 * Clears the blob pointer
2712 */
2713static void smack_sem_free_security(struct sem_array *sma)
2714{
2715 struct kern_ipc_perm *isp = &sma->sem_perm;
2716
2717 isp->security = NULL;
2718}
2719
2720/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002721 * smk_curacc_sem : check if current has access on sem
2722 * @sma : the object
2723 * @access : access requested
2724 *
2725 * Returns 0 if current has the requested access, error code otherwise
2726 */
2727static int smk_curacc_sem(struct sem_array *sma, int access)
2728{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002729 struct smack_known *ssp = smack_of_sem(sma);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002730 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002731 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002732
2733#ifdef CONFIG_AUDIT
2734 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2735 ad.a.u.ipc_id = sma->sem_perm.id;
2736#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07002737 rc = smk_curacc(ssp, access, &ad);
2738 rc = smk_bu_current("sem", ssp, access, rc);
2739 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002740}
2741
2742/**
Casey Schauflere114e472008-02-04 22:29:50 -08002743 * smack_sem_associate - Smack access check for sem
2744 * @sma: the object
2745 * @semflg: access requested
2746 *
2747 * Returns 0 if current has the requested access, error code otherwise
2748 */
2749static int smack_sem_associate(struct sem_array *sma, int semflg)
2750{
Casey Schauflere114e472008-02-04 22:29:50 -08002751 int may;
2752
2753 may = smack_flags_to_may(semflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002754 return smk_curacc_sem(sma, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002755}
2756
2757/**
2758 * smack_sem_shmctl - Smack access check for sem
2759 * @sma: the object
2760 * @cmd: what it wants to do
2761 *
2762 * Returns 0 if current has the requested access, error code otherwise
2763 */
2764static int smack_sem_semctl(struct sem_array *sma, int cmd)
2765{
Casey Schauflere114e472008-02-04 22:29:50 -08002766 int may;
2767
2768 switch (cmd) {
2769 case GETPID:
2770 case GETNCNT:
2771 case GETZCNT:
2772 case GETVAL:
2773 case GETALL:
2774 case IPC_STAT:
2775 case SEM_STAT:
2776 may = MAY_READ;
2777 break;
2778 case SETVAL:
2779 case SETALL:
2780 case IPC_RMID:
2781 case IPC_SET:
2782 may = MAY_READWRITE;
2783 break;
2784 case IPC_INFO:
2785 case SEM_INFO:
2786 /*
2787 * System level information
2788 */
2789 return 0;
2790 default:
2791 return -EINVAL;
2792 }
2793
Etienne Bassetecfcc532009-04-08 20:40:06 +02002794 return smk_curacc_sem(sma, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002795}
2796
2797/**
2798 * smack_sem_semop - Smack checks of semaphore operations
2799 * @sma: the object
2800 * @sops: unused
2801 * @nsops: unused
2802 * @alter: unused
2803 *
2804 * Treated as read and write in all cases.
2805 *
2806 * Returns 0 if access is allowed, error code otherwise
2807 */
2808static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
2809 unsigned nsops, int alter)
2810{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002811 return smk_curacc_sem(sma, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08002812}
2813
2814/**
2815 * smack_msg_alloc_security - Set the security blob for msg
2816 * @msq: the object
2817 *
2818 * Returns 0
2819 */
2820static int smack_msg_queue_alloc_security(struct msg_queue *msq)
2821{
2822 struct kern_ipc_perm *kisp = &msq->q_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002823 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002824
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002825 kisp->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002826 return 0;
2827}
2828
2829/**
2830 * smack_msg_free_security - Clear the security blob for msg
2831 * @msq: the object
2832 *
2833 * Clears the blob pointer
2834 */
2835static void smack_msg_queue_free_security(struct msg_queue *msq)
2836{
2837 struct kern_ipc_perm *kisp = &msq->q_perm;
2838
2839 kisp->security = NULL;
2840}
2841
2842/**
2843 * smack_of_msq - the smack pointer for the msq
2844 * @msq: the object
2845 *
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002846 * Returns a pointer to the smack label entry
Casey Schauflere114e472008-02-04 22:29:50 -08002847 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002848static struct smack_known *smack_of_msq(struct msg_queue *msq)
Casey Schauflere114e472008-02-04 22:29:50 -08002849{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002850 return (struct smack_known *)msq->q_perm.security;
Casey Schauflere114e472008-02-04 22:29:50 -08002851}
2852
2853/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002854 * smk_curacc_msq : helper to check if current has access on msq
2855 * @msq : the msq
2856 * @access : access requested
2857 *
2858 * return 0 if current has access, error otherwise
2859 */
2860static int smk_curacc_msq(struct msg_queue *msq, int access)
2861{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002862 struct smack_known *msp = smack_of_msq(msq);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002863 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002864 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002865
2866#ifdef CONFIG_AUDIT
2867 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2868 ad.a.u.ipc_id = msq->q_perm.id;
2869#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07002870 rc = smk_curacc(msp, access, &ad);
2871 rc = smk_bu_current("msq", msp, access, rc);
2872 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002873}
2874
2875/**
Casey Schauflere114e472008-02-04 22:29:50 -08002876 * smack_msg_queue_associate - Smack access check for msg_queue
2877 * @msq: the object
2878 * @msqflg: access requested
2879 *
2880 * Returns 0 if current has the requested access, error code otherwise
2881 */
2882static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
2883{
Casey Schauflere114e472008-02-04 22:29:50 -08002884 int may;
2885
2886 may = smack_flags_to_may(msqflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002887 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002888}
2889
2890/**
2891 * smack_msg_queue_msgctl - Smack access check for msg_queue
2892 * @msq: the object
2893 * @cmd: what it wants to do
2894 *
2895 * Returns 0 if current has the requested access, error code otherwise
2896 */
2897static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
2898{
Casey Schauflere114e472008-02-04 22:29:50 -08002899 int may;
2900
2901 switch (cmd) {
2902 case IPC_STAT:
2903 case MSG_STAT:
2904 may = MAY_READ;
2905 break;
2906 case IPC_SET:
2907 case IPC_RMID:
2908 may = MAY_READWRITE;
2909 break;
2910 case IPC_INFO:
2911 case MSG_INFO:
2912 /*
2913 * System level information
2914 */
2915 return 0;
2916 default:
2917 return -EINVAL;
2918 }
2919
Etienne Bassetecfcc532009-04-08 20:40:06 +02002920 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002921}
2922
2923/**
2924 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2925 * @msq: the object
2926 * @msg: unused
2927 * @msqflg: access requested
2928 *
2929 * Returns 0 if current has the requested access, error code otherwise
2930 */
2931static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
2932 int msqflg)
2933{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002934 int may;
Casey Schauflere114e472008-02-04 22:29:50 -08002935
Etienne Bassetecfcc532009-04-08 20:40:06 +02002936 may = smack_flags_to_may(msqflg);
2937 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002938}
2939
2940/**
2941 * smack_msg_queue_msgsnd - Smack access check for msg_queue
2942 * @msq: the object
2943 * @msg: unused
2944 * @target: unused
2945 * @type: unused
2946 * @mode: unused
2947 *
2948 * Returns 0 if current has read and write access, error code otherwise
2949 */
2950static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
2951 struct task_struct *target, long type, int mode)
2952{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002953 return smk_curacc_msq(msq, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08002954}
2955
2956/**
2957 * smack_ipc_permission - Smack access for ipc_permission()
2958 * @ipp: the object permissions
2959 * @flag: access requested
2960 *
2961 * Returns 0 if current has read and write access, error code otherwise
2962 */
2963static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
2964{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002965 struct smack_known *iskp = ipp->security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002966 int may = smack_flags_to_may(flag);
2967 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002968 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002969
Etienne Bassetecfcc532009-04-08 20:40:06 +02002970#ifdef CONFIG_AUDIT
2971 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2972 ad.a.u.ipc_id = ipp->id;
2973#endif
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002974 rc = smk_curacc(iskp, may, &ad);
2975 rc = smk_bu_current("svipc", iskp, may, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07002976 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002977}
2978
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10002979/**
2980 * smack_ipc_getsecid - Extract smack security id
Randy Dunlap251a2a92009-02-18 11:42:33 -08002981 * @ipp: the object permissions
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10002982 * @secid: where result will be saved
2983 */
2984static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
2985{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002986 struct smack_known *iskp = ipp->security;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10002987
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002988 *secid = iskp->smk_secid;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10002989}
2990
Casey Schauflere114e472008-02-04 22:29:50 -08002991/**
2992 * smack_d_instantiate - Make sure the blob is correct on an inode
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02002993 * @opt_dentry: dentry where inode will be attached
Casey Schauflere114e472008-02-04 22:29:50 -08002994 * @inode: the object
2995 *
2996 * Set the inode's security blob if it hasn't been done already.
2997 */
2998static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
2999{
3000 struct super_block *sbp;
3001 struct superblock_smack *sbsp;
3002 struct inode_smack *isp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003003 struct smack_known *skp;
3004 struct smack_known *ckp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003005 struct smack_known *final;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003006 char trattr[TRANS_TRUE_SIZE];
3007 int transflag = 0;
Casey Schaufler2267b132012-03-13 19:14:19 -07003008 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003009 struct dentry *dp;
3010
3011 if (inode == NULL)
3012 return;
3013
3014 isp = inode->i_security;
3015
3016 mutex_lock(&isp->smk_lock);
3017 /*
3018 * If the inode is already instantiated
3019 * take the quick way out
3020 */
3021 if (isp->smk_flags & SMK_INODE_INSTANT)
3022 goto unlockandout;
3023
3024 sbp = inode->i_sb;
3025 sbsp = sbp->s_security;
3026 /*
3027 * We're going to use the superblock default label
3028 * if there's no label on the file.
3029 */
3030 final = sbsp->smk_default;
3031
3032 /*
Casey Schauflere97dcb02008-06-02 10:04:32 -07003033 * If this is the root inode the superblock
3034 * may be in the process of initialization.
3035 * If that is the case use the root value out
3036 * of the superblock.
3037 */
3038 if (opt_dentry->d_parent == opt_dentry) {
Casey Schaufler36ea7352014-04-28 15:23:01 -07003039 if (sbp->s_magic == CGROUP_SUPER_MAGIC) {
3040 /*
3041 * The cgroup filesystem is never mounted,
3042 * so there's no opportunity to set the mount
3043 * options.
3044 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003045 sbsp->smk_root = &smack_known_star;
3046 sbsp->smk_default = &smack_known_star;
Casey Schaufler36ea7352014-04-28 15:23:01 -07003047 }
Casey Schauflere97dcb02008-06-02 10:04:32 -07003048 isp->smk_inode = sbsp->smk_root;
3049 isp->smk_flags |= SMK_INODE_INSTANT;
3050 goto unlockandout;
3051 }
3052
3053 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003054 * This is pretty hackish.
3055 * Casey says that we shouldn't have to do
3056 * file system specific code, but it does help
3057 * with keeping it simple.
3058 */
3059 switch (sbp->s_magic) {
3060 case SMACK_MAGIC:
Casey Schaufler36ea7352014-04-28 15:23:01 -07003061 case PIPEFS_MAGIC:
3062 case SOCKFS_MAGIC:
3063 case CGROUP_SUPER_MAGIC:
Casey Schauflere114e472008-02-04 22:29:50 -08003064 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003065 * Casey says that it's a little embarrassing
Casey Schauflere114e472008-02-04 22:29:50 -08003066 * that the smack file system doesn't do
3067 * extended attributes.
Casey Schaufler36ea7352014-04-28 15:23:01 -07003068 *
Casey Schauflere114e472008-02-04 22:29:50 -08003069 * Casey says pipes are easy (?)
Casey Schaufler36ea7352014-04-28 15:23:01 -07003070 *
3071 * Socket access is controlled by the socket
3072 * structures associated with the task involved.
3073 *
3074 * Cgroupfs is special
Casey Schauflere114e472008-02-04 22:29:50 -08003075 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003076 final = &smack_known_star;
Casey Schauflere114e472008-02-04 22:29:50 -08003077 break;
3078 case DEVPTS_SUPER_MAGIC:
3079 /*
3080 * devpts seems content with the label of the task.
3081 * Programs that change smack have to treat the
3082 * pty with respect.
3083 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003084 final = ckp;
Casey Schauflere114e472008-02-04 22:29:50 -08003085 break;
Casey Schauflere114e472008-02-04 22:29:50 -08003086 case PROC_SUPER_MAGIC:
3087 /*
3088 * Casey says procfs appears not to care.
3089 * The superblock default suffices.
3090 */
3091 break;
3092 case TMPFS_MAGIC:
3093 /*
3094 * Device labels should come from the filesystem,
3095 * but watch out, because they're volitile,
3096 * getting recreated on every reboot.
3097 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003098 final = &smack_known_star;
Casey Schauflere114e472008-02-04 22:29:50 -08003099 /*
3100 * No break.
3101 *
3102 * If a smack value has been set we want to use it,
3103 * but since tmpfs isn't giving us the opportunity
3104 * to set mount options simulate setting the
3105 * superblock default.
3106 */
3107 default:
3108 /*
3109 * This isn't an understood special case.
3110 * Get the value from the xattr.
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003111 */
3112
3113 /*
3114 * UNIX domain sockets use lower level socket data.
3115 */
3116 if (S_ISSOCK(inode->i_mode)) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003117 final = &smack_known_star;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003118 break;
3119 }
3120 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003121 * No xattr support means, alas, no SMACK label.
3122 * Use the aforeapplied default.
3123 * It would be curious if the label of the task
3124 * does not match that assigned.
3125 */
3126 if (inode->i_op->getxattr == NULL)
3127 break;
3128 /*
3129 * Get the dentry for xattr.
3130 */
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02003131 dp = dget(opt_dentry);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003132 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
3133 if (skp != NULL)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003134 final = skp;
Casey Schaufler2267b132012-03-13 19:14:19 -07003135
3136 /*
3137 * Transmuting directory
3138 */
3139 if (S_ISDIR(inode->i_mode)) {
3140 /*
3141 * If this is a new directory and the label was
3142 * transmuted when the inode was initialized
3143 * set the transmute attribute on the directory
3144 * and mark the inode.
3145 *
3146 * If there is a transmute attribute on the
3147 * directory mark the inode.
3148 */
3149 if (isp->smk_flags & SMK_INODE_CHANGED) {
3150 isp->smk_flags &= ~SMK_INODE_CHANGED;
3151 rc = inode->i_op->setxattr(dp,
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003152 XATTR_NAME_SMACKTRANSMUTE,
Casey Schaufler2267b132012-03-13 19:14:19 -07003153 TRANS_TRUE, TRANS_TRUE_SIZE,
3154 0);
3155 } else {
3156 rc = inode->i_op->getxattr(dp,
3157 XATTR_NAME_SMACKTRANSMUTE, trattr,
3158 TRANS_TRUE_SIZE);
3159 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
3160 TRANS_TRUE_SIZE) != 0)
3161 rc = -EINVAL;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003162 }
Casey Schaufler2267b132012-03-13 19:14:19 -07003163 if (rc >= 0)
3164 transflag = SMK_INODE_TRANSMUTE;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003165 }
Casey Schaufler19760ad2013-12-16 16:27:26 -08003166 /*
3167 * Don't let the exec or mmap label be "*" or "@".
3168 */
3169 skp = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
3170 if (skp == &smack_known_star || skp == &smack_known_web)
3171 skp = NULL;
3172 isp->smk_task = skp;
3173 skp = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
3174 if (skp == &smack_known_star || skp == &smack_known_web)
3175 skp = NULL;
3176 isp->smk_mmap = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08003177
Casey Schauflere114e472008-02-04 22:29:50 -08003178 dput(dp);
3179 break;
3180 }
3181
3182 if (final == NULL)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003183 isp->smk_inode = ckp;
Casey Schauflere114e472008-02-04 22:29:50 -08003184 else
3185 isp->smk_inode = final;
3186
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003187 isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
Casey Schauflere114e472008-02-04 22:29:50 -08003188
3189unlockandout:
3190 mutex_unlock(&isp->smk_lock);
3191 return;
3192}
3193
3194/**
3195 * smack_getprocattr - Smack process attribute access
3196 * @p: the object task
3197 * @name: the name of the attribute in /proc/.../attr
3198 * @value: where to put the result
3199 *
3200 * Places a copy of the task Smack into value
3201 *
3202 * Returns the length of the smack label or an error code
3203 */
3204static int smack_getprocattr(struct task_struct *p, char *name, char **value)
3205{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003206 struct smack_known *skp = smk_of_task(task_security(p));
Casey Schauflere114e472008-02-04 22:29:50 -08003207 char *cp;
3208 int slen;
3209
3210 if (strcmp(name, "current") != 0)
3211 return -EINVAL;
3212
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003213 cp = kstrdup(skp->smk_known, GFP_KERNEL);
Casey Schauflere114e472008-02-04 22:29:50 -08003214 if (cp == NULL)
3215 return -ENOMEM;
3216
3217 slen = strlen(cp);
3218 *value = cp;
3219 return slen;
3220}
3221
3222/**
3223 * smack_setprocattr - Smack process attribute setting
3224 * @p: the object task
3225 * @name: the name of the attribute in /proc/.../attr
3226 * @value: the value to set
3227 * @size: the size of the value
3228 *
3229 * Sets the Smack value of the task. Only setting self
3230 * is permitted and only with privilege
3231 *
3232 * Returns the length of the smack label or an error code
3233 */
3234static int smack_setprocattr(struct task_struct *p, char *name,
3235 void *value, size_t size)
3236{
Casey Schaufler676dac42010-12-02 06:43:39 -08003237 struct task_smack *tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11003238 struct cred *new;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003239 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003240
Casey Schauflere114e472008-02-04 22:29:50 -08003241 /*
3242 * Changing another process' Smack value is too dangerous
3243 * and supports no sane use case.
3244 */
3245 if (p != current)
3246 return -EPERM;
3247
Casey Schaufler1880eff2012-06-05 15:28:30 -07003248 if (!smack_privileged(CAP_MAC_ADMIN))
David Howells5cd9c582008-08-14 11:37:28 +01003249 return -EPERM;
3250
Casey Schauflerf7112e62012-05-06 15:22:02 -07003251 if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
Casey Schauflere114e472008-02-04 22:29:50 -08003252 return -EINVAL;
3253
3254 if (strcmp(name, "current") != 0)
3255 return -EINVAL;
3256
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003257 skp = smk_import_entry(value, size);
3258 if (skp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08003259 return -EINVAL;
3260
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003261 /*
3262 * No process is ever allowed the web ("@") label.
3263 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003264 if (skp == &smack_known_web)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003265 return -EPERM;
3266
David Howellsd84f4f92008-11-14 10:39:23 +11003267 new = prepare_creds();
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003268 if (new == NULL)
David Howellsd84f4f92008-11-14 10:39:23 +11003269 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003270
Casey Schaufler46a2f3b2012-08-22 11:44:03 -07003271 tsp = new->security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003272 tsp->smk_task = skp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003273
David Howellsd84f4f92008-11-14 10:39:23 +11003274 commit_creds(new);
Casey Schauflere114e472008-02-04 22:29:50 -08003275 return size;
3276}
3277
3278/**
3279 * smack_unix_stream_connect - Smack access on UDS
David S. Miller3610cda2011-01-05 15:38:53 -08003280 * @sock: one sock
3281 * @other: the other sock
Casey Schauflere114e472008-02-04 22:29:50 -08003282 * @newsk: unused
3283 *
3284 * Return 0 if a subject with the smack of sock could access
3285 * an object with the smack of other, otherwise an error code
3286 */
David S. Miller3610cda2011-01-05 15:38:53 -08003287static int smack_unix_stream_connect(struct sock *sock,
3288 struct sock *other, struct sock *newsk)
Casey Schauflere114e472008-02-04 22:29:50 -08003289{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003290 struct smack_known *skp;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003291 struct smack_known *okp;
James Morrisd2e7ad12011-01-10 09:46:24 +11003292 struct socket_smack *ssp = sock->sk_security;
3293 struct socket_smack *osp = other->sk_security;
Casey Schaufler975d5e52011-09-26 14:43:39 -07003294 struct socket_smack *nsp = newsk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003295 struct smk_audit_info ad;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003296 int rc = 0;
Kees Cook923e9a12012-04-10 13:26:44 -07003297#ifdef CONFIG_AUDIT
3298 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003299#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003300
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003301 if (!smack_privileged(CAP_MAC_OVERRIDE)) {
3302 skp = ssp->smk_out;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003303 okp = osp->smk_out;
3304#ifdef CONFIG_AUDIT
3305 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3306 smk_ad_setfield_u_net_sk(&ad, other);
3307#endif
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003308 rc = smk_access(skp, okp, MAY_WRITE, &ad);
3309 rc = smk_bu_note("UDS connect", skp, okp, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003310 if (rc == 0) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003311 rc = smk_access(okp, skp, MAY_WRITE, NULL);
3312 rc = smk_bu_note("UDS connect", okp, skp,
Casey Schauflerd166c802014-08-27 14:51:27 -07003313 MAY_WRITE, rc);
3314 }
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003315 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003316
Casey Schaufler975d5e52011-09-26 14:43:39 -07003317 /*
3318 * Cross reference the peer labels for SO_PEERSEC.
3319 */
3320 if (rc == 0) {
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003321 nsp->smk_packet = ssp->smk_out;
3322 ssp->smk_packet = osp->smk_out;
Casey Schaufler975d5e52011-09-26 14:43:39 -07003323 }
3324
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003325 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003326}
3327
3328/**
3329 * smack_unix_may_send - Smack access on UDS
3330 * @sock: one socket
3331 * @other: the other socket
3332 *
3333 * Return 0 if a subject with the smack of sock could access
3334 * an object with the smack of other, otherwise an error code
3335 */
3336static int smack_unix_may_send(struct socket *sock, struct socket *other)
3337{
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003338 struct socket_smack *ssp = sock->sk->sk_security;
3339 struct socket_smack *osp = other->sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003340 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003341 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003342
Kees Cook923e9a12012-04-10 13:26:44 -07003343#ifdef CONFIG_AUDIT
3344 struct lsm_network_audit net;
3345
Eric Paris48c62af2012-04-02 13:15:44 -04003346 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003347 smk_ad_setfield_u_net_sk(&ad, other->sk);
Kees Cook923e9a12012-04-10 13:26:44 -07003348#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003349
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003350 if (smack_privileged(CAP_MAC_OVERRIDE))
3351 return 0;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003352
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003353 rc = smk_access(ssp->smk_out, osp->smk_in, MAY_WRITE, &ad);
3354 rc = smk_bu_note("UDS send", ssp->smk_out, osp->smk_in, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003355 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003356}
3357
3358/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003359 * smack_socket_sendmsg - Smack check based on destination host
3360 * @sock: the socket
Randy Dunlap251a2a92009-02-18 11:42:33 -08003361 * @msg: the message
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003362 * @size: the size of the message
3363 *
Casey Schauflerc6739442013-05-22 18:42:56 -07003364 * Return 0 if the current subject can write to the destination host.
3365 * For IPv4 this is only a question if the destination is a single label host.
3366 * For IPv6 this is a check against the label of the port.
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003367 */
3368static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3369 int size)
3370{
3371 struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
Casey Schaufler6ea06242013-08-05 13:21:22 -07003372 struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
Casey Schauflerc6739442013-05-22 18:42:56 -07003373 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003374
3375 /*
3376 * Perfectly reasonable for this to be NULL
3377 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003378 if (sip == NULL)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003379 return 0;
3380
Casey Schauflerc6739442013-05-22 18:42:56 -07003381 switch (sip->sin_family) {
3382 case AF_INET:
3383 rc = smack_netlabel_send(sock->sk, sip);
3384 break;
3385 case AF_INET6:
3386 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
3387 break;
3388 }
3389 return rc;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003390}
3391
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003392/**
Randy Dunlap251a2a92009-02-18 11:42:33 -08003393 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
Casey Schauflere114e472008-02-04 22:29:50 -08003394 * @sap: netlabel secattr
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003395 * @ssp: socket security information
Casey Schauflere114e472008-02-04 22:29:50 -08003396 *
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003397 * Returns a pointer to a Smack label entry found on the label list.
Casey Schauflere114e472008-02-04 22:29:50 -08003398 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003399static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3400 struct socket_smack *ssp)
Casey Schauflere114e472008-02-04 22:29:50 -08003401{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003402 struct smack_known *skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003403 int found = 0;
Casey Schaufler677264e2013-06-28 13:47:07 -07003404 int acat;
3405 int kcat;
Casey Schauflere114e472008-02-04 22:29:50 -08003406
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003407 if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08003408 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003409 * Looks like a CIPSO packet.
Casey Schauflere114e472008-02-04 22:29:50 -08003410 * If there are flags but no level netlabel isn't
3411 * behaving the way we expect it to.
3412 *
Casey Schauflerf7112e62012-05-06 15:22:02 -07003413 * Look it up in the label table
Casey Schauflere114e472008-02-04 22:29:50 -08003414 * Without guidance regarding the smack value
3415 * for the packet fall back on the network
3416 * ambient value.
3417 */
Casey Schauflerf7112e62012-05-06 15:22:02 -07003418 rcu_read_lock();
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003419 list_for_each_entry(skp, &smack_known_list, list) {
3420 if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
Casey Schauflerf7112e62012-05-06 15:22:02 -07003421 continue;
Casey Schaufler677264e2013-06-28 13:47:07 -07003422 /*
3423 * Compare the catsets. Use the netlbl APIs.
3424 */
3425 if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3426 if ((skp->smk_netlabel.flags &
3427 NETLBL_SECATTR_MLS_CAT) == 0)
3428 found = 1;
3429 break;
3430 }
3431 for (acat = -1, kcat = -1; acat == kcat; ) {
Paul Moore4fbe63d2014-08-01 11:17:37 -04003432 acat = netlbl_catmap_walk(sap->attr.mls.cat,
3433 acat + 1);
3434 kcat = netlbl_catmap_walk(
Casey Schaufler677264e2013-06-28 13:47:07 -07003435 skp->smk_netlabel.attr.mls.cat,
3436 kcat + 1);
3437 if (acat < 0 || kcat < 0)
3438 break;
3439 }
3440 if (acat == kcat) {
3441 found = 1;
3442 break;
3443 }
Casey Schauflere114e472008-02-04 22:29:50 -08003444 }
Casey Schauflerf7112e62012-05-06 15:22:02 -07003445 rcu_read_unlock();
3446
3447 if (found)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003448 return skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003449
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003450 if (ssp != NULL && ssp->smk_in == &smack_known_star)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003451 return &smack_known_web;
3452 return &smack_known_star;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003453 }
3454 if ((sap->flags & NETLBL_SECATTR_SECID) != 0) {
3455 /*
3456 * Looks like a fallback, which gives us a secid.
3457 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003458 skp = smack_from_secid(sap->attr.secid);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003459 /*
3460 * This has got to be a bug because it is
3461 * impossible to specify a fallback without
3462 * specifying the label, which will ensure
3463 * it has a secid, and the only way to get a
3464 * secid is from a fallback.
3465 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003466 BUG_ON(skp == NULL);
3467 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003468 }
3469 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003470 * Without guidance regarding the smack value
3471 * for the packet fall back on the network
3472 * ambient value.
Casey Schauflere114e472008-02-04 22:29:50 -08003473 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003474 return smack_net_ambient;
Casey Schauflere114e472008-02-04 22:29:50 -08003475}
3476
Casey Schaufler6ea06242013-08-05 13:21:22 -07003477static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
Casey Schauflerc6739442013-05-22 18:42:56 -07003478{
Casey Schauflerc6739442013-05-22 18:42:56 -07003479 u8 nexthdr;
3480 int offset;
3481 int proto = -EINVAL;
3482 struct ipv6hdr _ipv6h;
3483 struct ipv6hdr *ip6;
3484 __be16 frag_off;
3485 struct tcphdr _tcph, *th;
3486 struct udphdr _udph, *uh;
3487 struct dccp_hdr _dccph, *dh;
3488
3489 sip->sin6_port = 0;
3490
3491 offset = skb_network_offset(skb);
3492 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3493 if (ip6 == NULL)
3494 return -EINVAL;
3495 sip->sin6_addr = ip6->saddr;
3496
3497 nexthdr = ip6->nexthdr;
3498 offset += sizeof(_ipv6h);
3499 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3500 if (offset < 0)
3501 return -EINVAL;
3502
3503 proto = nexthdr;
3504 switch (proto) {
3505 case IPPROTO_TCP:
3506 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3507 if (th != NULL)
3508 sip->sin6_port = th->source;
3509 break;
3510 case IPPROTO_UDP:
3511 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3512 if (uh != NULL)
3513 sip->sin6_port = uh->source;
3514 break;
3515 case IPPROTO_DCCP:
3516 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3517 if (dh != NULL)
3518 sip->sin6_port = dh->dccph_sport;
3519 break;
3520 }
3521 return proto;
3522}
3523
Casey Schauflere114e472008-02-04 22:29:50 -08003524/**
3525 * smack_socket_sock_rcv_skb - Smack packet delivery access check
3526 * @sk: socket
3527 * @skb: packet
3528 *
3529 * Returns 0 if the packet should be delivered, an error code otherwise
3530 */
3531static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3532{
3533 struct netlbl_lsm_secattr secattr;
3534 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003535 struct smack_known *skp;
Casey Schaufler6ea06242013-08-05 13:21:22 -07003536 struct sockaddr_in6 sadd;
Casey Schauflerc6739442013-05-22 18:42:56 -07003537 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003538 struct smk_audit_info ad;
Kees Cook923e9a12012-04-10 13:26:44 -07003539#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003540 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003541#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003542 switch (sk->sk_family) {
3543 case PF_INET:
3544 /*
3545 * Translate what netlabel gave us.
3546 */
3547 netlbl_secattr_init(&secattr);
Casey Schauflere114e472008-02-04 22:29:50 -08003548
Casey Schauflerc6739442013-05-22 18:42:56 -07003549 rc = netlbl_skbuff_getattr(skb, sk->sk_family, &secattr);
3550 if (rc == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003551 skp = smack_from_secattr(&secattr, ssp);
Casey Schauflerc6739442013-05-22 18:42:56 -07003552 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003553 skp = smack_net_ambient;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003554
Casey Schauflerc6739442013-05-22 18:42:56 -07003555 netlbl_secattr_destroy(&secattr);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003556
Etienne Bassetecfcc532009-04-08 20:40:06 +02003557#ifdef CONFIG_AUDIT
Casey Schauflerc6739442013-05-22 18:42:56 -07003558 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3559 ad.a.u.net->family = sk->sk_family;
3560 ad.a.u.net->netif = skb->skb_iif;
3561 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003562#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003563 /*
3564 * Receiving a packet requires that the other end
3565 * be able to write here. Read access is not required.
3566 * This is the simplist possible security model
3567 * for networking.
3568 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003569 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
3570 rc = smk_bu_note("IPv4 delivery", skp, ssp->smk_in,
Casey Schauflerd166c802014-08-27 14:51:27 -07003571 MAY_WRITE, rc);
Casey Schauflerc6739442013-05-22 18:42:56 -07003572 if (rc != 0)
3573 netlbl_skbuff_err(skb, rc, 0);
3574 break;
3575 case PF_INET6:
3576 rc = smk_skb_to_addr_ipv6(skb, &sadd);
3577 if (rc == IPPROTO_UDP || rc == IPPROTO_TCP)
3578 rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
3579 else
3580 rc = 0;
3581 break;
3582 }
Paul Moorea8134292008-10-10 10:16:31 -04003583 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003584}
3585
3586/**
3587 * smack_socket_getpeersec_stream - pull in packet label
3588 * @sock: the socket
3589 * @optval: user's destination
3590 * @optlen: size thereof
Randy Dunlap251a2a92009-02-18 11:42:33 -08003591 * @len: max thereof
Casey Schauflere114e472008-02-04 22:29:50 -08003592 *
3593 * returns zero on success, an error code otherwise
3594 */
3595static int smack_socket_getpeersec_stream(struct socket *sock,
3596 char __user *optval,
3597 int __user *optlen, unsigned len)
3598{
3599 struct socket_smack *ssp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003600 char *rcp = "";
3601 int slen = 1;
Casey Schauflere114e472008-02-04 22:29:50 -08003602 int rc = 0;
3603
3604 ssp = sock->sk->sk_security;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003605 if (ssp->smk_packet != NULL) {
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003606 rcp = ssp->smk_packet->smk_known;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003607 slen = strlen(rcp) + 1;
3608 }
Casey Schauflere114e472008-02-04 22:29:50 -08003609
3610 if (slen > len)
3611 rc = -ERANGE;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003612 else if (copy_to_user(optval, rcp, slen) != 0)
Casey Schauflere114e472008-02-04 22:29:50 -08003613 rc = -EFAULT;
3614
3615 if (put_user(slen, optlen) != 0)
3616 rc = -EFAULT;
3617
3618 return rc;
3619}
3620
3621
3622/**
3623 * smack_socket_getpeersec_dgram - pull in packet label
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003624 * @sock: the peer socket
Casey Schauflere114e472008-02-04 22:29:50 -08003625 * @skb: packet data
3626 * @secid: pointer to where to put the secid of the packet
3627 *
3628 * Sets the netlabel socket state on sk from parent
3629 */
3630static int smack_socket_getpeersec_dgram(struct socket *sock,
3631 struct sk_buff *skb, u32 *secid)
3632
3633{
3634 struct netlbl_lsm_secattr secattr;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003635 struct socket_smack *ssp = NULL;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003636 struct smack_known *skp;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003637 int family = PF_UNSPEC;
3638 u32 s = 0; /* 0 is the invalid secid */
Casey Schauflere114e472008-02-04 22:29:50 -08003639 int rc;
3640
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003641 if (skb != NULL) {
3642 if (skb->protocol == htons(ETH_P_IP))
3643 family = PF_INET;
3644 else if (skb->protocol == htons(ETH_P_IPV6))
3645 family = PF_INET6;
Casey Schauflere114e472008-02-04 22:29:50 -08003646 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003647 if (family == PF_UNSPEC && sock != NULL)
3648 family = sock->sk->sk_family;
Casey Schauflere114e472008-02-04 22:29:50 -08003649
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003650 if (family == PF_UNIX) {
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003651 ssp = sock->sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003652 s = ssp->smk_out->smk_secid;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003653 } else if (family == PF_INET || family == PF_INET6) {
3654 /*
3655 * Translate what netlabel gave us.
3656 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003657 if (sock != NULL && sock->sk != NULL)
3658 ssp = sock->sk->sk_security;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003659 netlbl_secattr_init(&secattr);
3660 rc = netlbl_skbuff_getattr(skb, family, &secattr);
3661 if (rc == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003662 skp = smack_from_secattr(&secattr, ssp);
3663 s = skp->smk_secid;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003664 }
3665 netlbl_secattr_destroy(&secattr);
3666 }
3667 *secid = s;
Casey Schauflere114e472008-02-04 22:29:50 -08003668 if (s == 0)
3669 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08003670 return 0;
3671}
3672
3673/**
Paul Moore07feee82009-03-27 17:10:54 -04003674 * smack_sock_graft - Initialize a newly created socket with an existing sock
3675 * @sk: child sock
3676 * @parent: parent socket
Casey Schauflere114e472008-02-04 22:29:50 -08003677 *
Paul Moore07feee82009-03-27 17:10:54 -04003678 * Set the smk_{in,out} state of an existing sock based on the process that
3679 * is creating the new socket.
Casey Schauflere114e472008-02-04 22:29:50 -08003680 */
3681static void smack_sock_graft(struct sock *sk, struct socket *parent)
3682{
3683 struct socket_smack *ssp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003684 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08003685
Paul Moore07feee82009-03-27 17:10:54 -04003686 if (sk == NULL ||
3687 (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
Casey Schauflere114e472008-02-04 22:29:50 -08003688 return;
3689
3690 ssp = sk->sk_security;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003691 ssp->smk_in = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003692 ssp->smk_out = skp;
Paul Moore07feee82009-03-27 17:10:54 -04003693 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
Casey Schauflere114e472008-02-04 22:29:50 -08003694}
3695
3696/**
3697 * smack_inet_conn_request - Smack access check on connect
3698 * @sk: socket involved
3699 * @skb: packet
3700 * @req: unused
3701 *
3702 * Returns 0 if a task with the packet label could write to
3703 * the socket, otherwise an error code
3704 */
3705static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
3706 struct request_sock *req)
3707{
Paul Moore07feee82009-03-27 17:10:54 -04003708 u16 family = sk->sk_family;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003709 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003710 struct socket_smack *ssp = sk->sk_security;
Paul Moore07feee82009-03-27 17:10:54 -04003711 struct netlbl_lsm_secattr secattr;
3712 struct sockaddr_in addr;
3713 struct iphdr *hdr;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003714 struct smack_known *hskp;
Casey Schauflere114e472008-02-04 22:29:50 -08003715 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003716 struct smk_audit_info ad;
Kees Cook923e9a12012-04-10 13:26:44 -07003717#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003718 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003719#endif
Casey Schauflere114e472008-02-04 22:29:50 -08003720
Casey Schauflerc6739442013-05-22 18:42:56 -07003721 if (family == PF_INET6) {
3722 /*
3723 * Handle mapped IPv4 packets arriving
3724 * via IPv6 sockets. Don't set up netlabel
3725 * processing on IPv6.
3726 */
3727 if (skb->protocol == htons(ETH_P_IP))
3728 family = PF_INET;
3729 else
3730 return 0;
3731 }
Casey Schauflere114e472008-02-04 22:29:50 -08003732
Paul Moore07feee82009-03-27 17:10:54 -04003733 netlbl_secattr_init(&secattr);
3734 rc = netlbl_skbuff_getattr(skb, family, &secattr);
Casey Schauflere114e472008-02-04 22:29:50 -08003735 if (rc == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003736 skp = smack_from_secattr(&secattr, ssp);
Casey Schauflere114e472008-02-04 22:29:50 -08003737 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003738 skp = &smack_known_huh;
Paul Moore07feee82009-03-27 17:10:54 -04003739 netlbl_secattr_destroy(&secattr);
3740
Etienne Bassetecfcc532009-04-08 20:40:06 +02003741#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003742 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3743 ad.a.u.net->family = family;
3744 ad.a.u.net->netif = skb->skb_iif;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003745 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
3746#endif
Casey Schauflere114e472008-02-04 22:29:50 -08003747 /*
Paul Moore07feee82009-03-27 17:10:54 -04003748 * Receiving a packet requires that the other end be able to write
3749 * here. Read access is not required.
Casey Schauflere114e472008-02-04 22:29:50 -08003750 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003751 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
3752 rc = smk_bu_note("IPv4 connect", skp, ssp->smk_in, MAY_WRITE, rc);
Paul Moore07feee82009-03-27 17:10:54 -04003753 if (rc != 0)
3754 return rc;
3755
3756 /*
3757 * Save the peer's label in the request_sock so we can later setup
3758 * smk_packet in the child socket so that SO_PEERCRED can report it.
3759 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003760 req->peer_secid = skp->smk_secid;
Paul Moore07feee82009-03-27 17:10:54 -04003761
3762 /*
3763 * We need to decide if we want to label the incoming connection here
3764 * if we do we only need to label the request_sock and the stack will
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003765 * propagate the wire-label to the sock when it is created.
Paul Moore07feee82009-03-27 17:10:54 -04003766 */
3767 hdr = ip_hdr(skb);
3768 addr.sin_addr.s_addr = hdr->saddr;
3769 rcu_read_lock();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003770 hskp = smack_host_label(&addr);
Casey Schauflerf7112e62012-05-06 15:22:02 -07003771 rcu_read_unlock();
3772
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003773 if (hskp == NULL)
Casey Schauflerf7112e62012-05-06 15:22:02 -07003774 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003775 else
Paul Moore07feee82009-03-27 17:10:54 -04003776 netlbl_req_delattr(req);
Casey Schauflere114e472008-02-04 22:29:50 -08003777
3778 return rc;
3779}
3780
Paul Moore07feee82009-03-27 17:10:54 -04003781/**
3782 * smack_inet_csk_clone - Copy the connection information to the new socket
3783 * @sk: the new socket
3784 * @req: the connection's request_sock
3785 *
3786 * Transfer the connection's peer label to the newly created socket.
3787 */
3788static void smack_inet_csk_clone(struct sock *sk,
3789 const struct request_sock *req)
3790{
3791 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003792 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04003793
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003794 if (req->peer_secid != 0) {
3795 skp = smack_from_secid(req->peer_secid);
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003796 ssp->smk_packet = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003797 } else
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003798 ssp->smk_packet = NULL;
Paul Moore07feee82009-03-27 17:10:54 -04003799}
3800
Casey Schauflere114e472008-02-04 22:29:50 -08003801/*
3802 * Key management security hooks
3803 *
3804 * Casey has not tested key support very heavily.
3805 * The permission check is most likely too restrictive.
3806 * If you care about keys please have a look.
3807 */
3808#ifdef CONFIG_KEYS
3809
3810/**
3811 * smack_key_alloc - Set the key security blob
3812 * @key: object
David Howellsd84f4f92008-11-14 10:39:23 +11003813 * @cred: the credentials to use
Casey Schauflere114e472008-02-04 22:29:50 -08003814 * @flags: unused
3815 *
3816 * No allocation required
3817 *
3818 * Returns 0
3819 */
David Howellsd84f4f92008-11-14 10:39:23 +11003820static int smack_key_alloc(struct key *key, const struct cred *cred,
Casey Schauflere114e472008-02-04 22:29:50 -08003821 unsigned long flags)
3822{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003823 struct smack_known *skp = smk_of_task(cred->security);
3824
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003825 key->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003826 return 0;
3827}
3828
3829/**
3830 * smack_key_free - Clear the key security blob
3831 * @key: the object
3832 *
3833 * Clear the blob pointer
3834 */
3835static void smack_key_free(struct key *key)
3836{
3837 key->security = NULL;
3838}
3839
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +01003840/**
Casey Schauflere114e472008-02-04 22:29:50 -08003841 * smack_key_permission - Smack access on a key
3842 * @key_ref: gets to the object
David Howellsd84f4f92008-11-14 10:39:23 +11003843 * @cred: the credentials to use
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +01003844 * @perm: requested key permissions
Casey Schauflere114e472008-02-04 22:29:50 -08003845 *
3846 * Return 0 if the task has read and write to the object,
3847 * an error code otherwise
3848 */
3849static int smack_key_permission(key_ref_t key_ref,
David Howellsf5895942014-03-14 17:44:49 +00003850 const struct cred *cred, unsigned perm)
Casey Schauflere114e472008-02-04 22:29:50 -08003851{
3852 struct key *keyp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003853 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003854 struct smack_known *tkp = smk_of_task(cred->security);
Dmitry Kasatkinfffea212014-03-14 17:44:49 +00003855 int request = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -07003856 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003857
3858 keyp = key_ref_to_ptr(key_ref);
3859 if (keyp == NULL)
3860 return -EINVAL;
3861 /*
3862 * If the key hasn't been initialized give it access so that
3863 * it may do so.
3864 */
3865 if (keyp->security == NULL)
3866 return 0;
3867 /*
3868 * This should not occur
3869 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003870 if (tkp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08003871 return -EACCES;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003872#ifdef CONFIG_AUDIT
3873 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
3874 ad.a.u.key_struct.key = keyp->serial;
3875 ad.a.u.key_struct.key_desc = keyp->description;
3876#endif
Dmitry Kasatkinfffea212014-03-14 17:44:49 +00003877 if (perm & KEY_NEED_READ)
3878 request = MAY_READ;
3879 if (perm & (KEY_NEED_WRITE | KEY_NEED_LINK | KEY_NEED_SETATTR))
3880 request = MAY_WRITE;
Casey Schauflerd166c802014-08-27 14:51:27 -07003881 rc = smk_access(tkp, keyp->security, request, &ad);
3882 rc = smk_bu_note("key access", tkp, keyp->security, request, rc);
3883 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003884}
3885#endif /* CONFIG_KEYS */
3886
3887/*
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003888 * Smack Audit hooks
3889 *
3890 * Audit requires a unique representation of each Smack specific
3891 * rule. This unique representation is used to distinguish the
3892 * object to be audited from remaining kernel objects and also
3893 * works as a glue between the audit hooks.
3894 *
3895 * Since repository entries are added but never deleted, we'll use
3896 * the smack_known label address related to the given audit rule as
3897 * the needed unique representation. This also better fits the smack
3898 * model where nearly everything is a label.
3899 */
3900#ifdef CONFIG_AUDIT
3901
3902/**
3903 * smack_audit_rule_init - Initialize a smack audit rule
3904 * @field: audit rule fields given from user-space (audit.h)
3905 * @op: required testing operator (=, !=, >, <, ...)
3906 * @rulestr: smack label to be audited
3907 * @vrule: pointer to save our own audit rule representation
3908 *
3909 * Prepare to audit cases where (@field @op @rulestr) is true.
3910 * The label to be audited is created if necessay.
3911 */
3912static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
3913{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003914 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003915 char **rule = (char **)vrule;
3916 *rule = NULL;
3917
3918 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3919 return -EINVAL;
3920
Al Viro5af75d82008-12-16 05:59:26 -05003921 if (op != Audit_equal && op != Audit_not_equal)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003922 return -EINVAL;
3923
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003924 skp = smk_import_entry(rulestr, 0);
3925 if (skp)
3926 *rule = skp->smk_known;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003927
3928 return 0;
3929}
3930
3931/**
3932 * smack_audit_rule_known - Distinguish Smack audit rules
3933 * @krule: rule of interest, in Audit kernel representation format
3934 *
3935 * This is used to filter Smack rules from remaining Audit ones.
3936 * If it's proved that this rule belongs to us, the
3937 * audit_rule_match hook will be called to do the final judgement.
3938 */
3939static int smack_audit_rule_known(struct audit_krule *krule)
3940{
3941 struct audit_field *f;
3942 int i;
3943
3944 for (i = 0; i < krule->field_count; i++) {
3945 f = &krule->fields[i];
3946
3947 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
3948 return 1;
3949 }
3950
3951 return 0;
3952}
3953
3954/**
3955 * smack_audit_rule_match - Audit given object ?
3956 * @secid: security id for identifying the object to test
3957 * @field: audit rule flags given from user-space
3958 * @op: required testing operator
3959 * @vrule: smack internal rule presentation
3960 * @actx: audit context associated with the check
3961 *
3962 * The core Audit hook. It's used to take the decision of
3963 * whether to audit or not to audit a given object.
3964 */
3965static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
3966 struct audit_context *actx)
3967{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003968 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003969 char *rule = vrule;
3970
Richard Guy Briggs4eb0f4a2013-11-21 13:57:33 -05003971 if (unlikely(!rule)) {
3972 WARN_ONCE(1, "Smack: missing rule\n");
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003973 return -ENOENT;
3974 }
3975
3976 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
3977 return 0;
3978
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003979 skp = smack_from_secid(secid);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003980
3981 /*
3982 * No need to do string comparisons. If a match occurs,
3983 * both pointers will point to the same smack_known
3984 * label.
3985 */
Al Viro5af75d82008-12-16 05:59:26 -05003986 if (op == Audit_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003987 return (rule == skp->smk_known);
Al Viro5af75d82008-12-16 05:59:26 -05003988 if (op == Audit_not_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003989 return (rule != skp->smk_known);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003990
3991 return 0;
3992}
3993
3994/**
3995 * smack_audit_rule_free - free smack rule representation
3996 * @vrule: rule to be freed.
3997 *
3998 * No memory was allocated.
3999 */
4000static void smack_audit_rule_free(void *vrule)
4001{
4002 /* No-op */
4003}
4004
4005#endif /* CONFIG_AUDIT */
4006
Randy Dunlap251a2a92009-02-18 11:42:33 -08004007/**
David Quigley746df9b2013-05-22 12:50:35 -04004008 * smack_ismaclabel - check if xattr @name references a smack MAC label
4009 * @name: Full xattr name to check.
4010 */
4011static int smack_ismaclabel(const char *name)
4012{
4013 return (strcmp(name, XATTR_SMACK_SUFFIX) == 0);
4014}
4015
4016
4017/**
Casey Schauflere114e472008-02-04 22:29:50 -08004018 * smack_secid_to_secctx - return the smack label for a secid
4019 * @secid: incoming integer
4020 * @secdata: destination
4021 * @seclen: how long it is
4022 *
4023 * Exists for networking code.
4024 */
4025static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
4026{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004027 struct smack_known *skp = smack_from_secid(secid);
Casey Schauflere114e472008-02-04 22:29:50 -08004028
Eric Parisd5630b92010-10-13 16:24:48 -04004029 if (secdata)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004030 *secdata = skp->smk_known;
4031 *seclen = strlen(skp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08004032 return 0;
4033}
4034
Randy Dunlap251a2a92009-02-18 11:42:33 -08004035/**
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004036 * smack_secctx_to_secid - return the secid for a smack label
4037 * @secdata: smack label
4038 * @seclen: how long result is
4039 * @secid: outgoing integer
4040 *
4041 * Exists for audit and networking code.
4042 */
David Howellse52c17642008-04-29 20:52:51 +01004043static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004044{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004045 struct smack_known *skp = smk_find_entry(secdata);
4046
4047 if (skp)
4048 *secid = skp->smk_secid;
4049 else
4050 *secid = 0;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004051 return 0;
4052}
4053
Randy Dunlap251a2a92009-02-18 11:42:33 -08004054/**
Casey Schauflere114e472008-02-04 22:29:50 -08004055 * smack_release_secctx - don't do anything.
Randy Dunlap251a2a92009-02-18 11:42:33 -08004056 * @secdata: unused
4057 * @seclen: unused
Casey Schauflere114e472008-02-04 22:29:50 -08004058 *
4059 * Exists to make sure nothing gets done, and properly
4060 */
4061static void smack_release_secctx(char *secdata, u32 seclen)
4062{
4063}
4064
David P. Quigley1ee65e32009-09-03 14:25:57 -04004065static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
4066{
4067 return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx, ctxlen, 0);
4068}
4069
4070static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
4071{
4072 return __vfs_setxattr_noperm(dentry, XATTR_NAME_SMACK, ctx, ctxlen, 0);
4073}
4074
4075static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
4076{
4077 int len = 0;
4078 len = smack_inode_getsecurity(inode, XATTR_SMACK_SUFFIX, ctx, true);
4079
4080 if (len < 0)
4081 return len;
4082 *ctxlen = len;
4083 return 0;
4084}
4085
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02004086struct security_operations smack_ops = {
4087 .name = "smack",
4088
Ingo Molnar9e488582009-05-07 19:26:19 +10004089 .ptrace_access_check = smack_ptrace_access_check,
David Howells5cd9c582008-08-14 11:37:28 +01004090 .ptrace_traceme = smack_ptrace_traceme,
Casey Schauflere114e472008-02-04 22:29:50 -08004091 .syslog = smack_syslog,
Casey Schauflere114e472008-02-04 22:29:50 -08004092
4093 .sb_alloc_security = smack_sb_alloc_security,
4094 .sb_free_security = smack_sb_free_security,
4095 .sb_copy_data = smack_sb_copy_data,
4096 .sb_kern_mount = smack_sb_kern_mount,
4097 .sb_statfs = smack_sb_statfs,
Casey Schauflere114e472008-02-04 22:29:50 -08004098
Casey Schaufler676dac42010-12-02 06:43:39 -08004099 .bprm_set_creds = smack_bprm_set_creds,
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +03004100 .bprm_committing_creds = smack_bprm_committing_creds,
4101 .bprm_secureexec = smack_bprm_secureexec,
Casey Schaufler676dac42010-12-02 06:43:39 -08004102
Casey Schauflere114e472008-02-04 22:29:50 -08004103 .inode_alloc_security = smack_inode_alloc_security,
4104 .inode_free_security = smack_inode_free_security,
4105 .inode_init_security = smack_inode_init_security,
4106 .inode_link = smack_inode_link,
4107 .inode_unlink = smack_inode_unlink,
4108 .inode_rmdir = smack_inode_rmdir,
4109 .inode_rename = smack_inode_rename,
4110 .inode_permission = smack_inode_permission,
4111 .inode_setattr = smack_inode_setattr,
4112 .inode_getattr = smack_inode_getattr,
4113 .inode_setxattr = smack_inode_setxattr,
4114 .inode_post_setxattr = smack_inode_post_setxattr,
4115 .inode_getxattr = smack_inode_getxattr,
4116 .inode_removexattr = smack_inode_removexattr,
4117 .inode_getsecurity = smack_inode_getsecurity,
4118 .inode_setsecurity = smack_inode_setsecurity,
4119 .inode_listsecurity = smack_inode_listsecurity,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004120 .inode_getsecid = smack_inode_getsecid,
Casey Schauflere114e472008-02-04 22:29:50 -08004121
4122 .file_permission = smack_file_permission,
4123 .file_alloc_security = smack_file_alloc_security,
4124 .file_free_security = smack_file_free_security,
4125 .file_ioctl = smack_file_ioctl,
4126 .file_lock = smack_file_lock,
4127 .file_fcntl = smack_file_fcntl,
Al Viroe5467852012-05-30 13:30:51 -04004128 .mmap_file = smack_mmap_file,
4129 .mmap_addr = cap_mmap_addr,
Casey Schauflere114e472008-02-04 22:29:50 -08004130 .file_set_fowner = smack_file_set_fowner,
4131 .file_send_sigiotask = smack_file_send_sigiotask,
4132 .file_receive = smack_file_receive,
4133
Eric Paris83d49852012-04-04 13:45:40 -04004134 .file_open = smack_file_open,
Casey Schaufler531f1d42011-09-19 12:41:42 -07004135
David Howellsee18d642009-09-02 09:14:21 +01004136 .cred_alloc_blank = smack_cred_alloc_blank,
David Howellsf1752ee2008-11-14 10:39:17 +11004137 .cred_free = smack_cred_free,
David Howellsd84f4f92008-11-14 10:39:23 +11004138 .cred_prepare = smack_cred_prepare,
David Howellsee18d642009-09-02 09:14:21 +01004139 .cred_transfer = smack_cred_transfer,
David Howells3a3b7ce2008-11-14 10:39:28 +11004140 .kernel_act_as = smack_kernel_act_as,
4141 .kernel_create_files_as = smack_kernel_create_files_as,
Casey Schauflere114e472008-02-04 22:29:50 -08004142 .task_setpgid = smack_task_setpgid,
4143 .task_getpgid = smack_task_getpgid,
4144 .task_getsid = smack_task_getsid,
4145 .task_getsecid = smack_task_getsecid,
4146 .task_setnice = smack_task_setnice,
4147 .task_setioprio = smack_task_setioprio,
4148 .task_getioprio = smack_task_getioprio,
4149 .task_setscheduler = smack_task_setscheduler,
4150 .task_getscheduler = smack_task_getscheduler,
4151 .task_movememory = smack_task_movememory,
4152 .task_kill = smack_task_kill,
4153 .task_wait = smack_task_wait,
Casey Schauflere114e472008-02-04 22:29:50 -08004154 .task_to_inode = smack_task_to_inode,
4155
4156 .ipc_permission = smack_ipc_permission,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004157 .ipc_getsecid = smack_ipc_getsecid,
Casey Schauflere114e472008-02-04 22:29:50 -08004158
4159 .msg_msg_alloc_security = smack_msg_msg_alloc_security,
4160 .msg_msg_free_security = smack_msg_msg_free_security,
4161
4162 .msg_queue_alloc_security = smack_msg_queue_alloc_security,
4163 .msg_queue_free_security = smack_msg_queue_free_security,
4164 .msg_queue_associate = smack_msg_queue_associate,
4165 .msg_queue_msgctl = smack_msg_queue_msgctl,
4166 .msg_queue_msgsnd = smack_msg_queue_msgsnd,
4167 .msg_queue_msgrcv = smack_msg_queue_msgrcv,
4168
4169 .shm_alloc_security = smack_shm_alloc_security,
4170 .shm_free_security = smack_shm_free_security,
4171 .shm_associate = smack_shm_associate,
4172 .shm_shmctl = smack_shm_shmctl,
4173 .shm_shmat = smack_shm_shmat,
4174
4175 .sem_alloc_security = smack_sem_alloc_security,
4176 .sem_free_security = smack_sem_free_security,
4177 .sem_associate = smack_sem_associate,
4178 .sem_semctl = smack_sem_semctl,
4179 .sem_semop = smack_sem_semop,
4180
Casey Schauflere114e472008-02-04 22:29:50 -08004181 .d_instantiate = smack_d_instantiate,
4182
4183 .getprocattr = smack_getprocattr,
4184 .setprocattr = smack_setprocattr,
4185
4186 .unix_stream_connect = smack_unix_stream_connect,
4187 .unix_may_send = smack_unix_may_send,
4188
4189 .socket_post_create = smack_socket_post_create,
Casey Schauflerc6739442013-05-22 18:42:56 -07004190 .socket_bind = smack_socket_bind,
Casey Schaufler6d3dc072008-12-31 12:54:12 -05004191 .socket_connect = smack_socket_connect,
4192 .socket_sendmsg = smack_socket_sendmsg,
Casey Schauflere114e472008-02-04 22:29:50 -08004193 .socket_sock_rcv_skb = smack_socket_sock_rcv_skb,
4194 .socket_getpeersec_stream = smack_socket_getpeersec_stream,
4195 .socket_getpeersec_dgram = smack_socket_getpeersec_dgram,
4196 .sk_alloc_security = smack_sk_alloc_security,
4197 .sk_free_security = smack_sk_free_security,
4198 .sock_graft = smack_sock_graft,
4199 .inet_conn_request = smack_inet_conn_request,
Paul Moore07feee82009-03-27 17:10:54 -04004200 .inet_csk_clone = smack_inet_csk_clone,
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004201
Casey Schauflere114e472008-02-04 22:29:50 -08004202 /* key management security hooks */
4203#ifdef CONFIG_KEYS
4204 .key_alloc = smack_key_alloc,
4205 .key_free = smack_key_free,
4206 .key_permission = smack_key_permission,
4207#endif /* CONFIG_KEYS */
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004208
4209 /* Audit hooks */
4210#ifdef CONFIG_AUDIT
4211 .audit_rule_init = smack_audit_rule_init,
4212 .audit_rule_known = smack_audit_rule_known,
4213 .audit_rule_match = smack_audit_rule_match,
4214 .audit_rule_free = smack_audit_rule_free,
4215#endif /* CONFIG_AUDIT */
4216
David Quigley746df9b2013-05-22 12:50:35 -04004217 .ismaclabel = smack_ismaclabel,
Casey Schauflere114e472008-02-04 22:29:50 -08004218 .secid_to_secctx = smack_secid_to_secctx,
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004219 .secctx_to_secid = smack_secctx_to_secid,
Casey Schauflere114e472008-02-04 22:29:50 -08004220 .release_secctx = smack_release_secctx,
David P. Quigley1ee65e32009-09-03 14:25:57 -04004221 .inode_notifysecctx = smack_inode_notifysecctx,
4222 .inode_setsecctx = smack_inode_setsecctx,
4223 .inode_getsecctx = smack_inode_getsecctx,
Casey Schauflere114e472008-02-04 22:29:50 -08004224};
4225
Etienne Basset7198e2e2009-03-24 20:53:24 +01004226
Casey Schaufler86812bb2012-04-17 18:55:46 -07004227static __init void init_smack_known_list(void)
Etienne Basset7198e2e2009-03-24 20:53:24 +01004228{
Casey Schaufler86812bb2012-04-17 18:55:46 -07004229 /*
Casey Schaufler86812bb2012-04-17 18:55:46 -07004230 * Initialize rule list locks
4231 */
4232 mutex_init(&smack_known_huh.smk_rules_lock);
4233 mutex_init(&smack_known_hat.smk_rules_lock);
4234 mutex_init(&smack_known_floor.smk_rules_lock);
4235 mutex_init(&smack_known_star.smk_rules_lock);
4236 mutex_init(&smack_known_invalid.smk_rules_lock);
4237 mutex_init(&smack_known_web.smk_rules_lock);
4238 /*
4239 * Initialize rule lists
4240 */
4241 INIT_LIST_HEAD(&smack_known_huh.smk_rules);
4242 INIT_LIST_HEAD(&smack_known_hat.smk_rules);
4243 INIT_LIST_HEAD(&smack_known_star.smk_rules);
4244 INIT_LIST_HEAD(&smack_known_floor.smk_rules);
4245 INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
4246 INIT_LIST_HEAD(&smack_known_web.smk_rules);
4247 /*
4248 * Create the known labels list
4249 */
Tomasz Stanislawski4d7cf4a2013-06-11 14:55:13 +02004250 smk_insert_entry(&smack_known_huh);
4251 smk_insert_entry(&smack_known_hat);
4252 smk_insert_entry(&smack_known_star);
4253 smk_insert_entry(&smack_known_floor);
4254 smk_insert_entry(&smack_known_invalid);
4255 smk_insert_entry(&smack_known_web);
Etienne Basset7198e2e2009-03-24 20:53:24 +01004256}
4257
Casey Schauflere114e472008-02-04 22:29:50 -08004258/**
4259 * smack_init - initialize the smack system
4260 *
4261 * Returns 0
4262 */
4263static __init int smack_init(void)
4264{
David Howellsd84f4f92008-11-14 10:39:23 +11004265 struct cred *cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08004266 struct task_smack *tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11004267
Casey Schaufler7898e1f2011-01-17 08:05:27 -08004268 if (!security_module_enable(&smack_ops))
4269 return 0;
4270
Rohit1a5b4722014-10-15 17:40:41 +05304271 smack_inode_cache = KMEM_CACHE(inode_smack, 0);
4272 if (!smack_inode_cache)
4273 return -ENOMEM;
4274
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004275 tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
4276 GFP_KERNEL);
Rohit1a5b4722014-10-15 17:40:41 +05304277 if (tsp == NULL) {
4278 kmem_cache_destroy(smack_inode_cache);
Casey Schaufler676dac42010-12-02 06:43:39 -08004279 return -ENOMEM;
Rohit1a5b4722014-10-15 17:40:41 +05304280 }
Casey Schaufler676dac42010-12-02 06:43:39 -08004281
Casey Schauflere114e472008-02-04 22:29:50 -08004282 printk(KERN_INFO "Smack: Initializing.\n");
4283
4284 /*
4285 * Set the security state for the initial task.
4286 */
David Howellsd84f4f92008-11-14 10:39:23 +11004287 cred = (struct cred *) current->cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08004288 cred->security = tsp;
Casey Schauflere114e472008-02-04 22:29:50 -08004289
Casey Schaufler86812bb2012-04-17 18:55:46 -07004290 /* initialize the smack_known_list */
4291 init_smack_known_list();
Casey Schauflere114e472008-02-04 22:29:50 -08004292
4293 /*
4294 * Register with LSM
4295 */
4296 if (register_security(&smack_ops))
4297 panic("smack: Unable to register with kernel.\n");
4298
4299 return 0;
4300}
4301
4302/*
4303 * Smack requires early initialization in order to label
4304 * all processes and objects when they are created.
4305 */
4306security_initcall(smack_init);