blob: f01b69ead47ec4c70ec6843ae853997372f78b93 [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 Black1fd73172009-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>
Vivek Trivedi3bf27892015-06-22 15:36:06 +053044#include <linux/parser.h>
Casey Schauflere114e472008-02-04 22:29:50 -080045#include "smack.h"
46
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +020047#define TRANS_TRUE "TRUE"
48#define TRANS_TRUE_SIZE 4
49
Casey Schauflerc6739442013-05-22 18:42:56 -070050#define SMK_CONNECTING 0
51#define SMK_RECEIVING 1
52#define SMK_SENDING 2
53
Casey Schaufler21abb1e2015-07-22 14:25:31 -070054#ifdef SMACK_IPV6_PORT_LABELING
Geliang Tang8b549ef2015-09-27 23:10:25 +080055static LIST_HEAD(smk_ipv6_port_list);
Casey Schaufler21abb1e2015-07-22 14:25:31 -070056#endif
Rohit1a5b4722014-10-15 17:40:41 +053057static struct kmem_cache *smack_inode_cache;
Casey Schaufler69f287a2014-12-12 17:08:40 -080058int smack_enabled;
Casey Schauflerc6739442013-05-22 18:42:56 -070059
Casey Schaufler3d04c922015-08-12 11:56:02 -070060static const match_table_t smk_mount_tokens = {
Vivek Trivedi3bf27892015-06-22 15:36:06 +053061 {Opt_fsdefault, SMK_FSDEFAULT "%s"},
62 {Opt_fsfloor, SMK_FSFLOOR "%s"},
63 {Opt_fshat, SMK_FSHAT "%s"},
64 {Opt_fsroot, SMK_FSROOT "%s"},
65 {Opt_fstransmute, SMK_FSTRANS "%s"},
66 {Opt_error, NULL},
67};
68
Casey Schaufler3d04c922015-08-12 11:56:02 -070069#ifdef CONFIG_SECURITY_SMACK_BRINGUP
70static char *smk_bu_mess[] = {
71 "Bringup Error", /* Unused */
72 "Bringup", /* SMACK_BRINGUP_ALLOW */
73 "Unconfined Subject", /* SMACK_UNCONFINED_SUBJECT */
74 "Unconfined Object", /* SMACK_UNCONFINED_OBJECT */
75};
76
Casey Schauflerd166c802014-08-27 14:51:27 -070077static void smk_bu_mode(int mode, char *s)
78{
79 int i = 0;
80
81 if (mode & MAY_READ)
82 s[i++] = 'r';
83 if (mode & MAY_WRITE)
84 s[i++] = 'w';
85 if (mode & MAY_EXEC)
86 s[i++] = 'x';
87 if (mode & MAY_APPEND)
88 s[i++] = 'a';
89 if (mode & MAY_TRANSMUTE)
90 s[i++] = 't';
91 if (mode & MAY_LOCK)
92 s[i++] = 'l';
93 if (i == 0)
94 s[i++] = '-';
95 s[i] = '\0';
96}
97#endif
98
99#ifdef CONFIG_SECURITY_SMACK_BRINGUP
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200100static int smk_bu_note(char *note, struct smack_known *sskp,
101 struct smack_known *oskp, int mode, int rc)
Casey Schauflerd166c802014-08-27 14:51:27 -0700102{
103 char acc[SMK_NUM_ACCESS_TYPE + 1];
104
105 if (rc <= 0)
106 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700107 if (rc > SMACK_UNCONFINED_OBJECT)
108 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700109
110 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700111 pr_info("Smack %s: (%s %s %s) %s\n", smk_bu_mess[rc],
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200112 sskp->smk_known, oskp->smk_known, acc, 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_note(note, sskp, oskp, mode, RC) (RC)
Casey Schauflerd166c802014-08-27 14:51:27 -0700117#endif
118
119#ifdef CONFIG_SECURITY_SMACK_BRINGUP
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200120static int smk_bu_current(char *note, struct smack_known *oskp,
121 int mode, int rc)
Casey Schauflerd166c802014-08-27 14:51:27 -0700122{
123 struct task_smack *tsp = current_security();
124 char acc[SMK_NUM_ACCESS_TYPE + 1];
125
126 if (rc <= 0)
127 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700128 if (rc > SMACK_UNCONFINED_OBJECT)
129 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700130
131 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700132 pr_info("Smack %s: (%s %s %s) %s %s\n", smk_bu_mess[rc],
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200133 tsp->smk_task->smk_known, oskp->smk_known,
134 acc, current->comm, note);
Casey Schauflerd166c802014-08-27 14:51:27 -0700135 return 0;
136}
137#else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200138#define smk_bu_current(note, oskp, mode, RC) (RC)
Casey Schauflerd166c802014-08-27 14:51:27 -0700139#endif
140
141#ifdef CONFIG_SECURITY_SMACK_BRINGUP
142static int smk_bu_task(struct task_struct *otp, int mode, int rc)
143{
144 struct task_smack *tsp = current_security();
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300145 struct smack_known *smk_task = smk_of_task_struct(otp);
Casey Schauflerd166c802014-08-27 14:51:27 -0700146 char acc[SMK_NUM_ACCESS_TYPE + 1];
147
148 if (rc <= 0)
149 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700150 if (rc > SMACK_UNCONFINED_OBJECT)
151 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700152
153 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700154 pr_info("Smack %s: (%s %s %s) %s to %s\n", smk_bu_mess[rc],
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300155 tsp->smk_task->smk_known, smk_task->smk_known, acc,
Casey Schauflerd166c802014-08-27 14:51:27 -0700156 current->comm, otp->comm);
157 return 0;
158}
159#else
160#define smk_bu_task(otp, mode, RC) (RC)
161#endif
162
163#ifdef CONFIG_SECURITY_SMACK_BRINGUP
164static int smk_bu_inode(struct inode *inode, int mode, int rc)
165{
166 struct task_smack *tsp = current_security();
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700167 struct inode_smack *isp = inode->i_security;
Casey Schauflerd166c802014-08-27 14:51:27 -0700168 char acc[SMK_NUM_ACCESS_TYPE + 1];
169
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700170 if (isp->smk_flags & SMK_INODE_IMPURE)
171 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
172 inode->i_sb->s_id, inode->i_ino, current->comm);
173
Casey Schauflerd166c802014-08-27 14:51:27 -0700174 if (rc <= 0)
175 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700176 if (rc > SMACK_UNCONFINED_OBJECT)
177 rc = 0;
178 if (rc == SMACK_UNCONFINED_SUBJECT &&
179 (mode & (MAY_WRITE | MAY_APPEND)))
180 isp->smk_flags |= SMK_INODE_IMPURE;
Casey Schauflerd166c802014-08-27 14:51:27 -0700181
182 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700183
184 pr_info("Smack %s: (%s %s %s) inode=(%s %ld) %s\n", smk_bu_mess[rc],
185 tsp->smk_task->smk_known, isp->smk_inode->smk_known, acc,
Casey Schauflerd166c802014-08-27 14:51:27 -0700186 inode->i_sb->s_id, inode->i_ino, current->comm);
187 return 0;
188}
189#else
190#define smk_bu_inode(inode, mode, RC) (RC)
191#endif
192
193#ifdef CONFIG_SECURITY_SMACK_BRINGUP
194static int smk_bu_file(struct file *file, int mode, int rc)
195{
196 struct task_smack *tsp = current_security();
197 struct smack_known *sskp = tsp->smk_task;
Casey Schaufler5e7270a2014-12-12 17:19:19 -0800198 struct inode *inode = file_inode(file);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700199 struct inode_smack *isp = inode->i_security;
Casey Schauflerd166c802014-08-27 14:51:27 -0700200 char acc[SMK_NUM_ACCESS_TYPE + 1];
201
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700202 if (isp->smk_flags & SMK_INODE_IMPURE)
203 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
204 inode->i_sb->s_id, inode->i_ino, current->comm);
205
Casey Schauflerd166c802014-08-27 14:51:27 -0700206 if (rc <= 0)
207 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700208 if (rc > SMACK_UNCONFINED_OBJECT)
209 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700210
211 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700212 pr_info("Smack %s: (%s %s %s) file=(%s %ld %pD) %s\n", smk_bu_mess[rc],
Casey Schaufler5e7270a2014-12-12 17:19:19 -0800213 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
Al Viroa4555892014-10-21 20:11:25 -0400214 inode->i_sb->s_id, inode->i_ino, file,
Casey Schauflerd166c802014-08-27 14:51:27 -0700215 current->comm);
216 return 0;
217}
218#else
219#define smk_bu_file(file, mode, RC) (RC)
220#endif
221
222#ifdef CONFIG_SECURITY_SMACK_BRINGUP
223static int smk_bu_credfile(const struct cred *cred, struct file *file,
224 int mode, int rc)
225{
226 struct task_smack *tsp = cred->security;
227 struct smack_known *sskp = tsp->smk_task;
228 struct inode *inode = file->f_inode;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700229 struct inode_smack *isp = inode->i_security;
Casey Schauflerd166c802014-08-27 14:51:27 -0700230 char acc[SMK_NUM_ACCESS_TYPE + 1];
231
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700232 if (isp->smk_flags & SMK_INODE_IMPURE)
233 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
234 inode->i_sb->s_id, inode->i_ino, current->comm);
235
Casey Schauflerd166c802014-08-27 14:51:27 -0700236 if (rc <= 0)
237 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700238 if (rc > SMACK_UNCONFINED_OBJECT)
239 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700240
241 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700242 pr_info("Smack %s: (%s %s %s) file=(%s %ld %pD) %s\n", smk_bu_mess[rc],
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200243 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
Al Viroa4555892014-10-21 20:11:25 -0400244 inode->i_sb->s_id, inode->i_ino, file,
Casey Schauflerd166c802014-08-27 14:51:27 -0700245 current->comm);
246 return 0;
247}
248#else
249#define smk_bu_credfile(cred, file, mode, RC) (RC)
250#endif
251
Casey Schauflere114e472008-02-04 22:29:50 -0800252/**
253 * smk_fetch - Fetch the smack label from a file.
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100254 * @name: type of the label (attribute)
Casey Schauflere114e472008-02-04 22:29:50 -0800255 * @ip: a pointer to the inode
256 * @dp: a pointer to the dentry
257 *
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200258 * Returns a pointer to the master list entry for the Smack label,
259 * NULL if there was no label to fetch, or an error code.
Casey Schauflere114e472008-02-04 22:29:50 -0800260 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700261static struct smack_known *smk_fetch(const char *name, struct inode *ip,
262 struct dentry *dp)
Casey Schauflere114e472008-02-04 22:29:50 -0800263{
264 int rc;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700265 char *buffer;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700266 struct smack_known *skp = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -0800267
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200268 if (!(ip->i_opflags & IOP_XATTR))
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200269 return ERR_PTR(-EOPNOTSUPP);
Casey Schauflere114e472008-02-04 22:29:50 -0800270
Eric Biggers1e4c7ce2019-08-21 22:54:41 -0700271 buffer = kzalloc(SMK_LONGLABEL, GFP_NOFS);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700272 if (buffer == NULL)
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200273 return ERR_PTR(-ENOMEM);
Casey Schauflere114e472008-02-04 22:29:50 -0800274
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200275 rc = __vfs_getxattr(dp, ip, name, buffer, SMK_LONGLABEL);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200276 if (rc < 0)
277 skp = ERR_PTR(rc);
278 else if (rc == 0)
279 skp = NULL;
280 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700281 skp = smk_import_entry(buffer, rc);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700282
283 kfree(buffer);
284
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700285 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800286}
287
288/**
289 * new_inode_smack - allocate an inode security blob
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200290 * @skp: a pointer to the Smack label entry to use in the blob
Casey Schauflere114e472008-02-04 22:29:50 -0800291 *
292 * Returns the new blob or NULL if there's no memory available
293 */
Casey Schaufler1eddfe82015-07-30 14:35:14 -0700294static struct inode_smack *new_inode_smack(struct smack_known *skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800295{
296 struct inode_smack *isp;
297
Rohit1a5b4722014-10-15 17:40:41 +0530298 isp = kmem_cache_zalloc(smack_inode_cache, GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -0800299 if (isp == NULL)
300 return NULL;
301
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200302 isp->smk_inode = skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800303 isp->smk_flags = 0;
304 mutex_init(&isp->smk_lock);
305
306 return isp;
307}
308
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800309/**
310 * new_task_smack - allocate a task security blob
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100311 * @task: a pointer to the Smack label for the running task
312 * @forked: a pointer to the Smack label for the forked task
313 * @gfp: type of the memory for the allocation
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800314 *
315 * Returns the new blob or NULL if there's no memory available
316 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700317static struct task_smack *new_task_smack(struct smack_known *task,
318 struct smack_known *forked, gfp_t gfp)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800319{
320 struct task_smack *tsp;
321
322 tsp = kzalloc(sizeof(struct task_smack), gfp);
323 if (tsp == NULL)
324 return NULL;
325
326 tsp->smk_task = task;
327 tsp->smk_forked = forked;
328 INIT_LIST_HEAD(&tsp->smk_rules);
Zbigniew Jasinski38416e52015-10-19 18:23:53 +0200329 INIT_LIST_HEAD(&tsp->smk_relabel);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800330 mutex_init(&tsp->smk_rules_lock);
331
332 return tsp;
333}
334
335/**
336 * smk_copy_rules - copy a rule set
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100337 * @nhead: new rules header pointer
338 * @ohead: old rules header pointer
339 * @gfp: type of the memory for the allocation
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800340 *
341 * Returns 0 on success, -ENOMEM on error
342 */
343static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead,
344 gfp_t gfp)
345{
346 struct smack_rule *nrp;
347 struct smack_rule *orp;
348 int rc = 0;
349
350 INIT_LIST_HEAD(nhead);
351
352 list_for_each_entry_rcu(orp, ohead, list) {
353 nrp = kzalloc(sizeof(struct smack_rule), gfp);
354 if (nrp == NULL) {
355 rc = -ENOMEM;
356 break;
357 }
358 *nrp = *orp;
359 list_add_rcu(&nrp->list, nhead);
360 }
361 return rc;
362}
363
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100364/**
Zbigniew Jasinski38416e52015-10-19 18:23:53 +0200365 * smk_copy_relabel - copy smk_relabel labels list
366 * @nhead: new rules header pointer
367 * @ohead: old rules header pointer
368 * @gfp: type of the memory for the allocation
369 *
370 * Returns 0 on success, -ENOMEM on error
371 */
372static int smk_copy_relabel(struct list_head *nhead, struct list_head *ohead,
373 gfp_t gfp)
374{
375 struct smack_known_list_elem *nklep;
376 struct smack_known_list_elem *oklep;
377
378 INIT_LIST_HEAD(nhead);
379
380 list_for_each_entry(oklep, ohead, list) {
381 nklep = kzalloc(sizeof(struct smack_known_list_elem), gfp);
382 if (nklep == NULL) {
383 smk_destroy_label_list(nhead);
384 return -ENOMEM;
385 }
386 nklep->smk_label = oklep->smk_label;
387 list_add(&nklep->list, nhead);
388 }
389
390 return 0;
391}
392
393/**
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100394 * smk_ptrace_mode - helper function for converting PTRACE_MODE_* into MAY_*
395 * @mode - input mode in form of PTRACE_MODE_*
396 *
397 * Returns a converted MAY_* mode usable by smack rules
398 */
399static inline unsigned int smk_ptrace_mode(unsigned int mode)
400{
Jann Horn3dfb7d82016-01-20 15:00:01 -0800401 if (mode & PTRACE_MODE_ATTACH)
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100402 return MAY_READWRITE;
Jann Horn3dfb7d82016-01-20 15:00:01 -0800403 if (mode & PTRACE_MODE_READ)
404 return MAY_READ;
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100405
406 return 0;
407}
408
409/**
410 * smk_ptrace_rule_check - helper for ptrace access
411 * @tracer: tracer process
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200412 * @tracee_known: label entry of the process that's about to be traced
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100413 * @mode: ptrace attachment mode (PTRACE_MODE_*)
414 * @func: name of the function that called us, used for audit
415 *
416 * Returns 0 on access granted, -error on error
417 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200418static int smk_ptrace_rule_check(struct task_struct *tracer,
419 struct smack_known *tracee_known,
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100420 unsigned int mode, const char *func)
421{
422 int rc;
423 struct smk_audit_info ad, *saip = NULL;
424 struct task_smack *tsp;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200425 struct smack_known *tracer_known;
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100426
427 if ((mode & PTRACE_MODE_NOAUDIT) == 0) {
428 smk_ad_init(&ad, func, LSM_AUDIT_DATA_TASK);
429 smk_ad_setfield_u_tsk(&ad, tracer);
430 saip = &ad;
431 }
432
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300433 rcu_read_lock();
434 tsp = __task_cred(tracer)->security;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200435 tracer_known = smk_of_task(tsp);
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100436
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100437 if ((mode & PTRACE_MODE_ATTACH) &&
438 (smack_ptrace_rule == SMACK_PTRACE_EXACT ||
439 smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200440 if (tracer_known->smk_known == tracee_known->smk_known)
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100441 rc = 0;
442 else if (smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)
443 rc = -EACCES;
444 else if (capable(CAP_SYS_PTRACE))
445 rc = 0;
446 else
447 rc = -EACCES;
448
449 if (saip)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200450 smack_log(tracer_known->smk_known,
451 tracee_known->smk_known,
452 0, rc, saip);
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100453
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300454 rcu_read_unlock();
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100455 return rc;
456 }
457
458 /* In case of rule==SMACK_PTRACE_DEFAULT or mode==PTRACE_MODE_READ */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200459 rc = smk_tskacc(tsp, tracee_known, smk_ptrace_mode(mode), saip);
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300460
461 rcu_read_unlock();
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100462 return rc;
463}
464
Casey Schauflere114e472008-02-04 22:29:50 -0800465/*
466 * LSM hooks.
467 * We he, that is fun!
468 */
469
470/**
Ingo Molnar9e488582009-05-07 19:26:19 +1000471 * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
Casey Schauflere114e472008-02-04 22:29:50 -0800472 * @ctp: child task pointer
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100473 * @mode: ptrace attachment mode (PTRACE_MODE_*)
Casey Schauflere114e472008-02-04 22:29:50 -0800474 *
475 * Returns 0 if access is OK, an error code otherwise
476 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100477 * Do the capability checks.
Casey Schauflere114e472008-02-04 22:29:50 -0800478 */
Ingo Molnar9e488582009-05-07 19:26:19 +1000479static int smack_ptrace_access_check(struct task_struct *ctp, unsigned int mode)
Casey Schauflere114e472008-02-04 22:29:50 -0800480{
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700481 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800482
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300483 skp = smk_of_task_struct(ctp);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200484
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700485 return smk_ptrace_rule_check(current, skp, mode, __func__);
David Howells5cd9c582008-08-14 11:37:28 +0100486}
Casey Schauflere114e472008-02-04 22:29:50 -0800487
David Howells5cd9c582008-08-14 11:37:28 +0100488/**
489 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
490 * @ptp: parent task pointer
491 *
492 * Returns 0 if access is OK, an error code otherwise
493 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100494 * Do the capability checks, and require PTRACE_MODE_ATTACH.
David Howells5cd9c582008-08-14 11:37:28 +0100495 */
496static int smack_ptrace_traceme(struct task_struct *ptp)
497{
498 int rc;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700499 struct smack_known *skp;
David Howells5cd9c582008-08-14 11:37:28 +0100500
Lukasz Pawelczyk959e6c72014-03-11 17:07:04 +0100501 skp = smk_of_task(current_security());
Etienne Bassetecfcc532009-04-08 20:40:06 +0200502
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200503 rc = smk_ptrace_rule_check(ptp, skp, PTRACE_MODE_ATTACH, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -0800504 return rc;
505}
506
507/**
508 * smack_syslog - Smack approval on syslog
509 * @type: message type
510 *
Casey Schauflere114e472008-02-04 22:29:50 -0800511 * Returns 0 on success, error code otherwise.
512 */
Eric Paris12b30522010-11-15 18:36:29 -0500513static int smack_syslog(int typefrom_file)
Casey Schauflere114e472008-02-04 22:29:50 -0800514{
Eric Paris12b30522010-11-15 18:36:29 -0500515 int rc = 0;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700516 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -0800517
Casey Schaufler1880eff2012-06-05 15:28:30 -0700518 if (smack_privileged(CAP_MAC_OVERRIDE))
Casey Schauflere114e472008-02-04 22:29:50 -0800519 return 0;
520
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800521 if (smack_syslog_label != NULL && smack_syslog_label != skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800522 rc = -EACCES;
523
524 return rc;
525}
526
527
528/*
529 * Superblock Hooks.
530 */
531
532/**
533 * smack_sb_alloc_security - allocate a superblock blob
534 * @sb: the superblock getting the blob
535 *
536 * Returns 0 on success or -ENOMEM on error.
537 */
538static int smack_sb_alloc_security(struct super_block *sb)
539{
540 struct superblock_smack *sbsp;
541
542 sbsp = kzalloc(sizeof(struct superblock_smack), GFP_KERNEL);
543
544 if (sbsp == NULL)
545 return -ENOMEM;
546
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200547 sbsp->smk_root = &smack_known_floor;
548 sbsp->smk_default = &smack_known_floor;
549 sbsp->smk_floor = &smack_known_floor;
550 sbsp->smk_hat = &smack_known_hat;
Casey Schauflere830b392013-05-22 18:43:07 -0700551 /*
Seth Forshee9f50eda2015-09-23 15:16:06 -0500552 * SMK_SB_INITIALIZED will be zero from kzalloc.
Casey Schauflere830b392013-05-22 18:43:07 -0700553 */
Casey Schauflere114e472008-02-04 22:29:50 -0800554 sb->s_security = sbsp;
555
556 return 0;
557}
558
559/**
560 * smack_sb_free_security - free a superblock blob
561 * @sb: the superblock getting the blob
562 *
563 */
564static void smack_sb_free_security(struct super_block *sb)
565{
566 kfree(sb->s_security);
567 sb->s_security = NULL;
568}
569
570/**
571 * smack_sb_copy_data - copy mount options data for processing
Casey Schauflere114e472008-02-04 22:29:50 -0800572 * @orig: where to start
Randy Dunlap251a2a92009-02-18 11:42:33 -0800573 * @smackopts: mount options string
Casey Schauflere114e472008-02-04 22:29:50 -0800574 *
575 * Returns 0 on success or -ENOMEM on error.
576 *
577 * Copy the Smack specific mount options out of the mount
578 * options list.
579 */
Eric Parise0007522008-03-05 10:31:54 -0500580static int smack_sb_copy_data(char *orig, char *smackopts)
Casey Schauflere114e472008-02-04 22:29:50 -0800581{
582 char *cp, *commap, *otheropts, *dp;
583
Casey Schauflere114e472008-02-04 22:29:50 -0800584 otheropts = (char *)get_zeroed_page(GFP_KERNEL);
585 if (otheropts == NULL)
586 return -ENOMEM;
587
588 for (cp = orig, commap = orig; commap != NULL; cp = commap + 1) {
589 if (strstr(cp, SMK_FSDEFAULT) == cp)
590 dp = smackopts;
591 else if (strstr(cp, SMK_FSFLOOR) == cp)
592 dp = smackopts;
593 else if (strstr(cp, SMK_FSHAT) == cp)
594 dp = smackopts;
595 else if (strstr(cp, SMK_FSROOT) == cp)
596 dp = smackopts;
Casey Schauflere830b392013-05-22 18:43:07 -0700597 else if (strstr(cp, SMK_FSTRANS) == cp)
598 dp = smackopts;
Casey Schauflere114e472008-02-04 22:29:50 -0800599 else
600 dp = otheropts;
601
602 commap = strchr(cp, ',');
603 if (commap != NULL)
604 *commap = '\0';
605
606 if (*dp != '\0')
607 strcat(dp, ",");
608 strcat(dp, cp);
609 }
610
611 strcpy(orig, otheropts);
612 free_page((unsigned long)otheropts);
613
614 return 0;
615}
616
617/**
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530618 * smack_parse_opts_str - parse Smack specific mount options
619 * @options: mount options string
620 * @opts: where to store converted mount opts
621 *
622 * Returns 0 on success or -ENOMEM on error.
623 *
624 * converts Smack specific mount options to generic security option format
625 */
626static int smack_parse_opts_str(char *options,
627 struct security_mnt_opts *opts)
628{
629 char *p;
Casey Schaufler3d04c922015-08-12 11:56:02 -0700630 char *fsdefault = NULL;
631 char *fsfloor = NULL;
632 char *fshat = NULL;
633 char *fsroot = NULL;
634 char *fstransmute = NULL;
635 int rc = -ENOMEM;
636 int num_mnt_opts = 0;
637 int token;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530638
639 opts->num_mnt_opts = 0;
640
641 if (!options)
642 return 0;
643
644 while ((p = strsep(&options, ",")) != NULL) {
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530645 substring_t args[MAX_OPT_ARGS];
646
647 if (!*p)
648 continue;
649
Casey Schaufler3d04c922015-08-12 11:56:02 -0700650 token = match_token(p, smk_mount_tokens, args);
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530651
652 switch (token) {
653 case Opt_fsdefault:
654 if (fsdefault)
655 goto out_opt_err;
656 fsdefault = match_strdup(&args[0]);
657 if (!fsdefault)
658 goto out_err;
659 break;
660 case Opt_fsfloor:
661 if (fsfloor)
662 goto out_opt_err;
663 fsfloor = match_strdup(&args[0]);
664 if (!fsfloor)
665 goto out_err;
666 break;
667 case Opt_fshat:
668 if (fshat)
669 goto out_opt_err;
670 fshat = match_strdup(&args[0]);
671 if (!fshat)
672 goto out_err;
673 break;
674 case Opt_fsroot:
675 if (fsroot)
676 goto out_opt_err;
677 fsroot = match_strdup(&args[0]);
678 if (!fsroot)
679 goto out_err;
680 break;
681 case Opt_fstransmute:
682 if (fstransmute)
683 goto out_opt_err;
684 fstransmute = match_strdup(&args[0]);
685 if (!fstransmute)
686 goto out_err;
687 break;
688 default:
689 rc = -EINVAL;
690 pr_warn("Smack: unknown mount option\n");
691 goto out_err;
692 }
693 }
694
695 opts->mnt_opts = kcalloc(NUM_SMK_MNT_OPTS, sizeof(char *), GFP_ATOMIC);
696 if (!opts->mnt_opts)
697 goto out_err;
698
699 opts->mnt_opts_flags = kcalloc(NUM_SMK_MNT_OPTS, sizeof(int),
700 GFP_ATOMIC);
701 if (!opts->mnt_opts_flags) {
702 kfree(opts->mnt_opts);
703 goto out_err;
704 }
705
706 if (fsdefault) {
707 opts->mnt_opts[num_mnt_opts] = fsdefault;
708 opts->mnt_opts_flags[num_mnt_opts++] = FSDEFAULT_MNT;
709 }
710 if (fsfloor) {
711 opts->mnt_opts[num_mnt_opts] = fsfloor;
712 opts->mnt_opts_flags[num_mnt_opts++] = FSFLOOR_MNT;
713 }
714 if (fshat) {
715 opts->mnt_opts[num_mnt_opts] = fshat;
716 opts->mnt_opts_flags[num_mnt_opts++] = FSHAT_MNT;
717 }
718 if (fsroot) {
719 opts->mnt_opts[num_mnt_opts] = fsroot;
720 opts->mnt_opts_flags[num_mnt_opts++] = FSROOT_MNT;
721 }
722 if (fstransmute) {
723 opts->mnt_opts[num_mnt_opts] = fstransmute;
724 opts->mnt_opts_flags[num_mnt_opts++] = FSTRANS_MNT;
725 }
726
727 opts->num_mnt_opts = num_mnt_opts;
728 return 0;
729
730out_opt_err:
731 rc = -EINVAL;
732 pr_warn("Smack: duplicate mount options\n");
733
734out_err:
735 kfree(fsdefault);
736 kfree(fsfloor);
737 kfree(fshat);
738 kfree(fsroot);
739 kfree(fstransmute);
740 return rc;
741}
742
743/**
744 * smack_set_mnt_opts - set Smack specific mount options
Casey Schauflere114e472008-02-04 22:29:50 -0800745 * @sb: the file system superblock
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530746 * @opts: Smack mount options
747 * @kern_flags: mount option from kernel space or user space
748 * @set_kern_flags: where to store converted mount opts
Casey Schauflere114e472008-02-04 22:29:50 -0800749 *
750 * Returns 0 on success, an error code on failure
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530751 *
752 * Allow filesystems with binary mount data to explicitly set Smack mount
753 * labels.
Casey Schauflere114e472008-02-04 22:29:50 -0800754 */
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530755static int smack_set_mnt_opts(struct super_block *sb,
756 struct security_mnt_opts *opts,
757 unsigned long kern_flags,
758 unsigned long *set_kern_flags)
Casey Schauflere114e472008-02-04 22:29:50 -0800759{
760 struct dentry *root = sb->s_root;
David Howellsc6f493d2015-03-17 22:26:22 +0000761 struct inode *inode = d_backing_inode(root);
Casey Schauflere114e472008-02-04 22:29:50 -0800762 struct superblock_smack *sp = sb->s_security;
763 struct inode_smack *isp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800764 struct smack_known *skp;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530765 int i;
766 int num_opts = opts->num_mnt_opts;
Casey Schauflere830b392013-05-22 18:43:07 -0700767 int transmute = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800768
Seth Forshee9f50eda2015-09-23 15:16:06 -0500769 if (sp->smk_flags & SMK_SB_INITIALIZED)
Casey Schauflere114e472008-02-04 22:29:50 -0800770 return 0;
Casey Schauflereb982cb2012-05-23 17:46:58 -0700771
Seth Forshee9f50eda2015-09-23 15:16:06 -0500772 sp->smk_flags |= SMK_SB_INITIALIZED;
Casey Schauflere114e472008-02-04 22:29:50 -0800773
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530774 for (i = 0; i < num_opts; i++) {
775 switch (opts->mnt_opts_flags[i]) {
776 case FSDEFAULT_MNT:
777 skp = smk_import_entry(opts->mnt_opts[i], 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200778 if (IS_ERR(skp))
779 return PTR_ERR(skp);
780 sp->smk_default = skp;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530781 break;
782 case FSFLOOR_MNT:
783 skp = smk_import_entry(opts->mnt_opts[i], 0);
784 if (IS_ERR(skp))
785 return PTR_ERR(skp);
786 sp->smk_floor = skp;
787 break;
788 case FSHAT_MNT:
789 skp = smk_import_entry(opts->mnt_opts[i], 0);
790 if (IS_ERR(skp))
791 return PTR_ERR(skp);
792 sp->smk_hat = skp;
793 break;
794 case FSROOT_MNT:
795 skp = smk_import_entry(opts->mnt_opts[i], 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200796 if (IS_ERR(skp))
797 return PTR_ERR(skp);
798 sp->smk_root = skp;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530799 break;
800 case FSTRANS_MNT:
801 skp = smk_import_entry(opts->mnt_opts[i], 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200802 if (IS_ERR(skp))
803 return PTR_ERR(skp);
804 sp->smk_root = skp;
805 transmute = 1;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530806 break;
807 default:
808 break;
Casey Schauflere114e472008-02-04 22:29:50 -0800809 }
810 }
811
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800812 if (!smack_privileged(CAP_MAC_ADMIN)) {
813 /*
814 * Unprivileged mounts don't get to specify Smack values.
815 */
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530816 if (num_opts)
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800817 return -EPERM;
818 /*
819 * Unprivileged mounts get root and default from the caller.
820 */
821 skp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200822 sp->smk_root = skp;
823 sp->smk_default = skp;
Seth Forshee9f50eda2015-09-23 15:16:06 -0500824 /*
825 * For a handful of fs types with no user-controlled
826 * backing store it's okay to trust security labels
827 * in the filesystem. The rest are untrusted.
828 */
829 if (sb->s_user_ns != &init_user_ns &&
830 sb->s_magic != SYSFS_MAGIC && sb->s_magic != TMPFS_MAGIC &&
831 sb->s_magic != RAMFS_MAGIC) {
832 transmute = 1;
833 sp->smk_flags |= SMK_SB_UNTRUSTED;
834 }
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800835 }
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530836
Casey Schauflere114e472008-02-04 22:29:50 -0800837 /*
838 * Initialize the root inode.
839 */
840 isp = inode->i_security;
José Bollo55dfc5d2014-01-08 15:53:05 +0100841 if (isp == NULL) {
842 isp = new_inode_smack(sp->smk_root);
843 if (isp == NULL)
844 return -ENOMEM;
845 inode->i_security = isp;
Casey Schauflere830b392013-05-22 18:43:07 -0700846 } else
Casey Schauflere114e472008-02-04 22:29:50 -0800847 isp->smk_inode = sp->smk_root;
848
Casey Schauflere830b392013-05-22 18:43:07 -0700849 if (transmute)
850 isp->smk_flags |= SMK_INODE_TRANSMUTE;
851
Casey Schauflere114e472008-02-04 22:29:50 -0800852 return 0;
853}
854
855/**
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530856 * smack_sb_kern_mount - Smack specific mount processing
857 * @sb: the file system superblock
858 * @flags: the mount flags
859 * @data: the smack mount options
860 *
861 * Returns 0 on success, an error code on failure
862 */
863static int smack_sb_kern_mount(struct super_block *sb, int flags, void *data)
864{
865 int rc = 0;
866 char *options = data;
867 struct security_mnt_opts opts;
868
869 security_init_mnt_opts(&opts);
870
871 if (!options)
872 goto out;
873
874 rc = smack_parse_opts_str(options, &opts);
875 if (rc)
876 goto out_err;
877
878out:
879 rc = smack_set_mnt_opts(sb, &opts, 0, NULL);
880
881out_err:
882 security_free_mnt_opts(&opts);
883 return rc;
884}
885
886/**
Casey Schauflere114e472008-02-04 22:29:50 -0800887 * smack_sb_statfs - Smack check on statfs
888 * @dentry: identifies the file system in question
889 *
890 * Returns 0 if current can read the floor of the filesystem,
891 * and error code otherwise
892 */
893static int smack_sb_statfs(struct dentry *dentry)
894{
895 struct superblock_smack *sbp = dentry->d_sb->s_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +0200896 int rc;
897 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800898
Eric Parisa2694342011-04-25 13:10:27 -0400899 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200900 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
901
902 rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700903 rc = smk_bu_current("statfs", sbp->smk_floor, MAY_READ, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200904 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800905}
906
Casey Schauflere114e472008-02-04 22:29:50 -0800907/*
Casey Schaufler676dac42010-12-02 06:43:39 -0800908 * BPRM hooks
909 */
910
Casey Schauflerce8a4322011-09-29 18:21:01 -0700911/**
912 * smack_bprm_set_creds - set creds for exec
913 * @bprm: the exec information
914 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100915 * Returns 0 if it gets a blob, -EPERM if exec forbidden and -ENOMEM otherwise
Casey Schauflerce8a4322011-09-29 18:21:01 -0700916 */
Casey Schaufler676dac42010-12-02 06:43:39 -0800917static int smack_bprm_set_creds(struct linux_binprm *bprm)
918{
Al Viro496ad9a2013-01-23 17:07:38 -0500919 struct inode *inode = file_inode(bprm->file);
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300920 struct task_smack *bsp = bprm->cred->security;
Casey Schaufler676dac42010-12-02 06:43:39 -0800921 struct inode_smack *isp;
Seth Forshee809c02e2016-04-26 14:36:22 -0500922 struct superblock_smack *sbsp;
Casey Schaufler676dac42010-12-02 06:43:39 -0800923 int rc;
924
Casey Schaufler676dac42010-12-02 06:43:39 -0800925 if (bprm->cred_prepared)
926 return 0;
927
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300928 isp = inode->i_security;
929 if (isp->smk_task == NULL || isp->smk_task == bsp->smk_task)
Casey Schaufler676dac42010-12-02 06:43:39 -0800930 return 0;
931
Seth Forshee809c02e2016-04-26 14:36:22 -0500932 sbsp = inode->i_sb->s_security;
933 if ((sbsp->smk_flags & SMK_SB_UNTRUSTED) &&
934 isp->smk_task != sbsp->smk_root)
935 return 0;
936
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100937 if (bprm->unsafe & (LSM_UNSAFE_PTRACE | LSM_UNSAFE_PTRACE_CAP)) {
938 struct task_struct *tracer;
939 rc = 0;
940
941 rcu_read_lock();
942 tracer = ptrace_parent(current);
943 if (likely(tracer != NULL))
944 rc = smk_ptrace_rule_check(tracer,
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200945 isp->smk_task,
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100946 PTRACE_MODE_ATTACH,
947 __func__);
948 rcu_read_unlock();
949
950 if (rc != 0)
951 return rc;
Jann Horn128373c2019-07-04 20:44:44 +0200952 }
953 if (bprm->unsafe & ~LSM_UNSAFE_PTRACE)
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300954 return -EPERM;
Casey Schaufler676dac42010-12-02 06:43:39 -0800955
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300956 bsp->smk_task = isp->smk_task;
957 bprm->per_clear |= PER_CLEAR_ON_SETID;
Casey Schaufler676dac42010-12-02 06:43:39 -0800958
959 return 0;
960}
961
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300962/**
963 * smack_bprm_committing_creds - Prepare to install the new credentials
964 * from bprm.
965 *
966 * @bprm: binprm for exec
967 */
968static void smack_bprm_committing_creds(struct linux_binprm *bprm)
969{
970 struct task_smack *bsp = bprm->cred->security;
971
972 if (bsp->smk_task != bsp->smk_forked)
973 current->pdeath_signal = 0;
974}
975
976/**
977 * smack_bprm_secureexec - Return the decision to use secureexec.
978 * @bprm: binprm for exec
979 *
980 * Returns 0 on success.
981 */
982static int smack_bprm_secureexec(struct linux_binprm *bprm)
983{
984 struct task_smack *tsp = current_security();
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300985
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700986 if (tsp->smk_task != tsp->smk_forked)
987 return 1;
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300988
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700989 return 0;
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300990}
991
Casey Schaufler676dac42010-12-02 06:43:39 -0800992/*
Casey Schauflere114e472008-02-04 22:29:50 -0800993 * Inode hooks
994 */
995
996/**
997 * smack_inode_alloc_security - allocate an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -0800998 * @inode: the inode in need of a blob
Casey Schauflere114e472008-02-04 22:29:50 -0800999 *
1000 * Returns 0 if it gets a blob, -ENOMEM otherwise
1001 */
1002static int smack_inode_alloc_security(struct inode *inode)
1003{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001004 struct smack_known *skp = smk_of_current();
1005
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001006 inode->i_security = new_inode_smack(skp);
Casey Schauflere114e472008-02-04 22:29:50 -08001007 if (inode->i_security == NULL)
1008 return -ENOMEM;
1009 return 0;
1010}
1011
1012/**
1013 * smack_inode_free_security - free an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -08001014 * @inode: the inode with a blob
Casey Schauflere114e472008-02-04 22:29:50 -08001015 *
1016 * Clears the blob pointer in inode
1017 */
1018static void smack_inode_free_security(struct inode *inode)
1019{
Rohit1a5b4722014-10-15 17:40:41 +05301020 kmem_cache_free(smack_inode_cache, inode->i_security);
Casey Schauflere114e472008-02-04 22:29:50 -08001021 inode->i_security = NULL;
1022}
1023
1024/**
1025 * smack_inode_init_security - copy out the smack from an inode
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001026 * @inode: the newly created inode
1027 * @dir: containing directory object
Eric Paris2a7dba32011-02-01 11:05:39 -05001028 * @qstr: unused
Casey Schauflere114e472008-02-04 22:29:50 -08001029 * @name: where to put the attribute name
1030 * @value: where to put the attribute value
1031 * @len: where to put the length of the attribute
1032 *
1033 * Returns 0 if it all works out, -ENOMEM if there's no memory
1034 */
1035static int smack_inode_init_security(struct inode *inode, struct inode *dir,
Tetsuo Handa95489062013-07-25 05:44:02 +09001036 const struct qstr *qstr, const char **name,
Eric Paris2a7dba32011-02-01 11:05:39 -05001037 void **value, size_t *len)
Casey Schauflere114e472008-02-04 22:29:50 -08001038{
Casey Schaufler2267b132012-03-13 19:14:19 -07001039 struct inode_smack *issp = inode->i_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001040 struct smack_known *skp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001041 struct smack_known *isp = smk_of_inode(inode);
1042 struct smack_known *dsp = smk_of_inode(dir);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001043 int may;
Casey Schauflere114e472008-02-04 22:29:50 -08001044
Tetsuo Handa95489062013-07-25 05:44:02 +09001045 if (name)
1046 *name = XATTR_SMACK_SUFFIX;
Casey Schauflere114e472008-02-04 22:29:50 -08001047
Lukasz Pawelczyk68390cc2014-11-26 15:31:07 +01001048 if (value && len) {
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001049 rcu_read_lock();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001050 may = smk_access_entry(skp->smk_known, dsp->smk_known,
1051 &skp->smk_rules);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001052 rcu_read_unlock();
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001053
1054 /*
1055 * If the access rule allows transmutation and
1056 * the directory requests transmutation then
1057 * by all means transmute.
Casey Schaufler2267b132012-03-13 19:14:19 -07001058 * Mark the inode as changed.
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001059 */
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001060 if (may > 0 && ((may & MAY_TRANSMUTE) != 0) &&
Casey Schaufler2267b132012-03-13 19:14:19 -07001061 smk_inode_transmutable(dir)) {
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001062 isp = dsp;
Casey Schaufler2267b132012-03-13 19:14:19 -07001063 issp->smk_flags |= SMK_INODE_CHANGED;
1064 }
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001065
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001066 *value = kstrdup(isp->smk_known, GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -08001067 if (*value == NULL)
1068 return -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -08001069
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001070 *len = strlen(isp->smk_known);
Lukasz Pawelczyk68390cc2014-11-26 15:31:07 +01001071 }
Casey Schauflere114e472008-02-04 22:29:50 -08001072
1073 return 0;
1074}
1075
1076/**
1077 * smack_inode_link - Smack check on link
1078 * @old_dentry: the existing object
1079 * @dir: unused
1080 * @new_dentry: the new object
1081 *
1082 * Returns 0 if access is permitted, an error code otherwise
1083 */
1084static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
1085 struct dentry *new_dentry)
1086{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001087 struct smack_known *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001088 struct smk_audit_info ad;
1089 int rc;
1090
Eric Parisa2694342011-04-25 13:10:27 -04001091 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001092 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001093
David Howellsc6f493d2015-03-17 22:26:22 +00001094 isp = smk_of_inode(d_backing_inode(old_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001095 rc = smk_curacc(isp, MAY_WRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001096 rc = smk_bu_inode(d_backing_inode(old_dentry), MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001097
David Howells88025652015-01-29 12:02:32 +00001098 if (rc == 0 && d_is_positive(new_dentry)) {
David Howellsc6f493d2015-03-17 22:26:22 +00001099 isp = smk_of_inode(d_backing_inode(new_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001100 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
1101 rc = smk_curacc(isp, MAY_WRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001102 rc = smk_bu_inode(d_backing_inode(new_dentry), MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001103 }
1104
1105 return rc;
1106}
1107
1108/**
1109 * smack_inode_unlink - Smack check on inode deletion
1110 * @dir: containing directory object
1111 * @dentry: file to unlink
1112 *
1113 * Returns 0 if current can write the containing directory
1114 * and the object, error code otherwise
1115 */
1116static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
1117{
David Howellsc6f493d2015-03-17 22:26:22 +00001118 struct inode *ip = d_backing_inode(dentry);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001119 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001120 int rc;
1121
Eric Parisa2694342011-04-25 13:10:27 -04001122 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001123 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1124
Casey Schauflere114e472008-02-04 22:29:50 -08001125 /*
1126 * You need write access to the thing you're unlinking
1127 */
Etienne Bassetecfcc532009-04-08 20:40:06 +02001128 rc = smk_curacc(smk_of_inode(ip), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001129 rc = smk_bu_inode(ip, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001130 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08001131 /*
1132 * You also need write access to the containing directory
1133 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +04001134 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001135 smk_ad_setfield_u_fs_inode(&ad, dir);
1136 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001137 rc = smk_bu_inode(dir, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001138 }
Casey Schauflere114e472008-02-04 22:29:50 -08001139 return rc;
1140}
1141
1142/**
1143 * smack_inode_rmdir - Smack check on directory deletion
1144 * @dir: containing directory object
1145 * @dentry: directory to unlink
1146 *
1147 * Returns 0 if current can write the containing directory
1148 * and the directory, error code otherwise
1149 */
1150static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
1151{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001152 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001153 int rc;
1154
Eric Parisa2694342011-04-25 13:10:27 -04001155 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001156 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1157
Casey Schauflere114e472008-02-04 22:29:50 -08001158 /*
1159 * You need write access to the thing you're removing
1160 */
David Howellsc6f493d2015-03-17 22:26:22 +00001161 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1162 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001163 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08001164 /*
1165 * You also need write access to the containing directory
1166 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +04001167 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001168 smk_ad_setfield_u_fs_inode(&ad, dir);
1169 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001170 rc = smk_bu_inode(dir, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001171 }
Casey Schauflere114e472008-02-04 22:29:50 -08001172
1173 return rc;
1174}
1175
1176/**
1177 * smack_inode_rename - Smack check on rename
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001178 * @old_inode: unused
1179 * @old_dentry: the old object
1180 * @new_inode: unused
1181 * @new_dentry: the new object
Casey Schauflere114e472008-02-04 22:29:50 -08001182 *
1183 * Read and write access is required on both the old and
1184 * new directories.
1185 *
1186 * Returns 0 if access is permitted, an error code otherwise
1187 */
1188static int smack_inode_rename(struct inode *old_inode,
1189 struct dentry *old_dentry,
1190 struct inode *new_inode,
1191 struct dentry *new_dentry)
1192{
1193 int rc;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001194 struct smack_known *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001195 struct smk_audit_info ad;
1196
Eric Parisa2694342011-04-25 13:10:27 -04001197 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001198 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001199
David Howellsc6f493d2015-03-17 22:26:22 +00001200 isp = smk_of_inode(d_backing_inode(old_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001201 rc = smk_curacc(isp, MAY_READWRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001202 rc = smk_bu_inode(d_backing_inode(old_dentry), MAY_READWRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001203
David Howells88025652015-01-29 12:02:32 +00001204 if (rc == 0 && d_is_positive(new_dentry)) {
David Howellsc6f493d2015-03-17 22:26:22 +00001205 isp = smk_of_inode(d_backing_inode(new_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001206 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
1207 rc = smk_curacc(isp, MAY_READWRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001208 rc = smk_bu_inode(d_backing_inode(new_dentry), MAY_READWRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001209 }
Casey Schauflere114e472008-02-04 22:29:50 -08001210 return rc;
1211}
1212
1213/**
1214 * smack_inode_permission - Smack version of permission()
1215 * @inode: the inode in question
1216 * @mask: the access requested
Casey Schauflere114e472008-02-04 22:29:50 -08001217 *
1218 * This is the important Smack hook.
1219 *
1220 * Returns 0 if access is permitted, -EACCES otherwise
1221 */
Al Viroe74f71e2011-06-20 19:38:15 -04001222static int smack_inode_permission(struct inode *inode, int mask)
Casey Schauflere114e472008-02-04 22:29:50 -08001223{
Seth Forshee9f50eda2015-09-23 15:16:06 -05001224 struct superblock_smack *sbsp = inode->i_sb->s_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001225 struct smk_audit_info ad;
Al Viroe74f71e2011-06-20 19:38:15 -04001226 int no_block = mask & MAY_NOT_BLOCK;
Casey Schauflerd166c802014-08-27 14:51:27 -07001227 int rc;
Eric Parisd09ca732010-07-23 11:43:57 -04001228
1229 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
Casey Schauflere114e472008-02-04 22:29:50 -08001230 /*
1231 * No permission to check. Existence test. Yup, it's there.
1232 */
1233 if (mask == 0)
1234 return 0;
Andi Kleen8c9e80e2011-04-21 17:23:19 -07001235
Seth Forshee9f50eda2015-09-23 15:16:06 -05001236 if (sbsp->smk_flags & SMK_SB_UNTRUSTED) {
1237 if (smk_of_inode(inode) != sbsp->smk_root)
1238 return -EACCES;
1239 }
1240
Andi Kleen8c9e80e2011-04-21 17:23:19 -07001241 /* May be droppable after audit */
Al Viroe74f71e2011-06-20 19:38:15 -04001242 if (no_block)
Andi Kleen8c9e80e2011-04-21 17:23:19 -07001243 return -ECHILD;
Eric Parisf48b7392011-04-25 12:54:27 -04001244 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001245 smk_ad_setfield_u_fs_inode(&ad, inode);
Casey Schauflerd166c802014-08-27 14:51:27 -07001246 rc = smk_curacc(smk_of_inode(inode), mask, &ad);
1247 rc = smk_bu_inode(inode, mask, rc);
1248 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001249}
1250
1251/**
1252 * smack_inode_setattr - Smack check for setting attributes
1253 * @dentry: the object
1254 * @iattr: for the force flag
1255 *
1256 * Returns 0 if access is permitted, an error code otherwise
1257 */
1258static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
1259{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001260 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001261 int rc;
1262
Casey Schauflere114e472008-02-04 22:29:50 -08001263 /*
1264 * Need to allow for clearing the setuid bit.
1265 */
1266 if (iattr->ia_valid & ATTR_FORCE)
1267 return 0;
Eric Parisa2694342011-04-25 13:10:27 -04001268 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001269 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001270
David Howellsc6f493d2015-03-17 22:26:22 +00001271 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1272 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001273 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001274}
1275
1276/**
1277 * smack_inode_getattr - Smack check for getting attributes
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001278 * @mnt: vfsmount of the object
Casey Schauflere114e472008-02-04 22:29:50 -08001279 * @dentry: the object
1280 *
1281 * Returns 0 if access is permitted, an error code otherwise
1282 */
Al Viro3f7036a2015-03-08 19:28:30 -04001283static int smack_inode_getattr(const struct path *path)
Casey Schauflere114e472008-02-04 22:29:50 -08001284{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001285 struct smk_audit_info ad;
David Howellsc6f493d2015-03-17 22:26:22 +00001286 struct inode *inode = d_backing_inode(path->dentry);
Casey Schauflerd166c802014-08-27 14:51:27 -07001287 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001288
Eric Parisf48b7392011-04-25 12:54:27 -04001289 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Al Viro3f7036a2015-03-08 19:28:30 -04001290 smk_ad_setfield_u_fs_path(&ad, *path);
1291 rc = smk_curacc(smk_of_inode(inode), MAY_READ, &ad);
1292 rc = smk_bu_inode(inode, MAY_READ, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001293 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001294}
1295
1296/**
1297 * smack_inode_setxattr - Smack check for setting xattrs
1298 * @dentry: the object
1299 * @name: name of the attribute
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001300 * @value: value of the attribute
1301 * @size: size of the value
Casey Schauflere114e472008-02-04 22:29:50 -08001302 * @flags: unused
1303 *
1304 * This protects the Smack attribute explicitly.
1305 *
1306 * Returns 0 if access is permitted, an error code otherwise
1307 */
David Howells8f0cfa52008-04-29 00:59:41 -07001308static int smack_inode_setxattr(struct dentry *dentry, const char *name,
1309 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -08001310{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001311 struct smk_audit_info ad;
Casey Schaufler19760ad2013-12-16 16:27:26 -08001312 struct smack_known *skp;
1313 int check_priv = 0;
1314 int check_import = 0;
1315 int check_star = 0;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001316 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001317
Casey Schaufler19760ad2013-12-16 16:27:26 -08001318 /*
1319 * Check label validity here so import won't fail in post_setxattr
1320 */
Casey Schauflerbcdca222008-02-23 15:24:04 -08001321 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1322 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler19760ad2013-12-16 16:27:26 -08001323 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
1324 check_priv = 1;
1325 check_import = 1;
1326 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
1327 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
1328 check_priv = 1;
1329 check_import = 1;
1330 check_star = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001331 } else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
Casey Schaufler19760ad2013-12-16 16:27:26 -08001332 check_priv = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001333 if (size != TRANS_TRUE_SIZE ||
1334 strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
1335 rc = -EINVAL;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001336 } else
1337 rc = cap_inode_setxattr(dentry, name, value, size, flags);
1338
Casey Schaufler19760ad2013-12-16 16:27:26 -08001339 if (check_priv && !smack_privileged(CAP_MAC_ADMIN))
1340 rc = -EPERM;
1341
1342 if (rc == 0 && check_import) {
Konstantin Khlebnikovb862e562014-08-07 20:52:43 +04001343 skp = size ? smk_import_entry(value, size) : NULL;
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001344 if (IS_ERR(skp))
1345 rc = PTR_ERR(skp);
1346 else if (skp == NULL || (check_star &&
Casey Schaufler19760ad2013-12-16 16:27:26 -08001347 (skp == &smack_known_star || skp == &smack_known_web)))
1348 rc = -EINVAL;
1349 }
1350
Eric Parisa2694342011-04-25 13:10:27 -04001351 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001352 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1353
Casey Schauflerd166c802014-08-27 14:51:27 -07001354 if (rc == 0) {
David Howellsc6f493d2015-03-17 22:26:22 +00001355 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1356 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001357 }
Casey Schauflerbcdca222008-02-23 15:24:04 -08001358
1359 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001360}
1361
1362/**
1363 * smack_inode_post_setxattr - Apply the Smack update approved above
1364 * @dentry: object
1365 * @name: attribute name
1366 * @value: attribute value
1367 * @size: attribute size
1368 * @flags: unused
1369 *
1370 * Set the pointer in the inode blob to the entry found
1371 * in the master label list.
1372 */
David Howells8f0cfa52008-04-29 00:59:41 -07001373static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
1374 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -08001375{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001376 struct smack_known *skp;
David Howellsc6f493d2015-03-17 22:26:22 +00001377 struct inode_smack *isp = d_backing_inode(dentry)->i_security;
Casey Schaufler676dac42010-12-02 06:43:39 -08001378
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001379 if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
1380 isp->smk_flags |= SMK_INODE_TRANSMUTE;
1381 return;
1382 }
1383
Casey Schaufler676dac42010-12-02 06:43:39 -08001384 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001385 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001386 if (!IS_ERR(skp))
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001387 isp->smk_inode = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08001388 else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001389 isp->smk_inode = &smack_known_invalid;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001390 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001391 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001392 if (!IS_ERR(skp))
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001393 isp->smk_task = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08001394 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001395 isp->smk_task = &smack_known_invalid;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001396 } else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001397 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001398 if (!IS_ERR(skp))
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001399 isp->smk_mmap = skp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001400 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001401 isp->smk_mmap = &smack_known_invalid;
1402 }
Casey Schauflere114e472008-02-04 22:29:50 -08001403
1404 return;
1405}
1406
Casey Schauflerce8a4322011-09-29 18:21:01 -07001407/**
Casey Schauflere114e472008-02-04 22:29:50 -08001408 * smack_inode_getxattr - Smack check on getxattr
1409 * @dentry: the object
1410 * @name: unused
1411 *
1412 * Returns 0 if access is permitted, an error code otherwise
1413 */
David Howells8f0cfa52008-04-29 00:59:41 -07001414static int smack_inode_getxattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -08001415{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001416 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001417 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001418
Eric Parisa2694342011-04-25 13:10:27 -04001419 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001420 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1421
David Howellsc6f493d2015-03-17 22:26:22 +00001422 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_READ, &ad);
1423 rc = smk_bu_inode(d_backing_inode(dentry), MAY_READ, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001424 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001425}
1426
Casey Schauflerce8a4322011-09-29 18:21:01 -07001427/**
Casey Schauflere114e472008-02-04 22:29:50 -08001428 * smack_inode_removexattr - Smack check on removexattr
1429 * @dentry: the object
1430 * @name: name of the attribute
1431 *
1432 * Removing the Smack attribute requires CAP_MAC_ADMIN
1433 *
1434 * Returns 0 if access is permitted, an error code otherwise
1435 */
David Howells8f0cfa52008-04-29 00:59:41 -07001436static int smack_inode_removexattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -08001437{
Casey Schaufler676dac42010-12-02 06:43:39 -08001438 struct inode_smack *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001439 struct smk_audit_info ad;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001440 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001441
Casey Schauflerbcdca222008-02-23 15:24:04 -08001442 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1443 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler676dac42010-12-02 06:43:39 -08001444 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 ||
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001445 strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001446 strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 ||
Pankaj Kumar5e9ab592013-12-13 15:12:22 +05301447 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
Casey Schaufler1880eff2012-06-05 15:28:30 -07001448 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflerbcdca222008-02-23 15:24:04 -08001449 rc = -EPERM;
1450 } else
1451 rc = cap_inode_removexattr(dentry, name);
1452
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001453 if (rc != 0)
1454 return rc;
1455
Eric Parisa2694342011-04-25 13:10:27 -04001456 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001457 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001458
David Howellsc6f493d2015-03-17 22:26:22 +00001459 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1460 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001461 if (rc != 0)
1462 return rc;
1463
David Howellsc6f493d2015-03-17 22:26:22 +00001464 isp = d_backing_inode(dentry)->i_security;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001465 /*
1466 * Don't do anything special for these.
1467 * XATTR_NAME_SMACKIPIN
1468 * XATTR_NAME_SMACKIPOUT
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001469 */
José Bollo80124952016-01-12 21:23:40 +01001470 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
Al Virofc640052016-04-10 01:33:30 -04001471 struct super_block *sbp = dentry->d_sb;
José Bollo80124952016-01-12 21:23:40 +01001472 struct superblock_smack *sbsp = sbp->s_security;
1473
1474 isp->smk_inode = sbsp->smk_default;
1475 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0)
Casey Schaufler676dac42010-12-02 06:43:39 -08001476 isp->smk_task = NULL;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001477 else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001478 isp->smk_mmap = NULL;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001479 else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0)
1480 isp->smk_flags &= ~SMK_INODE_TRANSMUTE;
Casey Schaufler676dac42010-12-02 06:43:39 -08001481
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001482 return 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001483}
1484
1485/**
1486 * smack_inode_getsecurity - get smack xattrs
1487 * @inode: the object
1488 * @name: attribute name
1489 * @buffer: where to put the result
Casey Schaufler88c195d2017-09-19 09:39:08 -07001490 * @alloc: duplicate memory
Casey Schauflere114e472008-02-04 22:29:50 -08001491 *
1492 * Returns the size of the attribute or an error code
1493 */
Andreas Gruenbacherea861df2015-12-24 11:09:39 -05001494static int smack_inode_getsecurity(struct inode *inode,
Casey Schauflere114e472008-02-04 22:29:50 -08001495 const char *name, void **buffer,
1496 bool alloc)
1497{
1498 struct socket_smack *ssp;
1499 struct socket *sock;
1500 struct super_block *sbp;
1501 struct inode *ip = (struct inode *)inode;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001502 struct smack_known *isp;
Casey Schauflere114e472008-02-04 22:29:50 -08001503
Casey Schaufler88c195d2017-09-19 09:39:08 -07001504 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0)
Casey Schauflere114e472008-02-04 22:29:50 -08001505 isp = smk_of_inode(inode);
Casey Schaufler88c195d2017-09-19 09:39:08 -07001506 else {
1507 /*
1508 * The rest of the Smack xattrs are only on sockets.
1509 */
1510 sbp = ip->i_sb;
1511 if (sbp->s_magic != SOCKFS_MAGIC)
1512 return -EOPNOTSUPP;
1513
1514 sock = SOCKET_I(ip);
1515 if (sock == NULL || sock->sk == NULL)
1516 return -EOPNOTSUPP;
1517
1518 ssp = sock->sk->sk_security;
1519
1520 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
1521 isp = ssp->smk_in;
1522 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
1523 isp = ssp->smk_out;
1524 else
1525 return -EOPNOTSUPP;
Casey Schauflere114e472008-02-04 22:29:50 -08001526 }
1527
Casey Schaufler88c195d2017-09-19 09:39:08 -07001528 if (alloc) {
1529 *buffer = kstrdup(isp->smk_known, GFP_KERNEL);
1530 if (*buffer == NULL)
1531 return -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -08001532 }
1533
Casey Schaufler88c195d2017-09-19 09:39:08 -07001534 return strlen(isp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08001535}
1536
1537
1538/**
1539 * smack_inode_listsecurity - list the Smack attributes
1540 * @inode: the object
1541 * @buffer: where they go
1542 * @buffer_size: size of buffer
Casey Schauflere114e472008-02-04 22:29:50 -08001543 */
1544static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1545 size_t buffer_size)
1546{
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001547 int len = sizeof(XATTR_NAME_SMACK);
Casey Schauflere114e472008-02-04 22:29:50 -08001548
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001549 if (buffer != NULL && len <= buffer_size)
Casey Schauflere114e472008-02-04 22:29:50 -08001550 memcpy(buffer, XATTR_NAME_SMACK, len);
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001551
1552 return len;
Casey Schauflere114e472008-02-04 22:29:50 -08001553}
1554
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001555/**
1556 * smack_inode_getsecid - Extract inode's security id
1557 * @inode: inode to extract the info from
1558 * @secid: where result will be saved
1559 */
Andreas Gruenbacherd6335d72015-12-24 11:09:39 -05001560static void smack_inode_getsecid(struct inode *inode, u32 *secid)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001561{
1562 struct inode_smack *isp = inode->i_security;
1563
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001564 *secid = isp->smk_inode->smk_secid;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001565}
1566
Casey Schauflere114e472008-02-04 22:29:50 -08001567/*
1568 * File Hooks
1569 */
1570
Casey Schaufler491a0b02016-01-26 15:08:35 -08001571/*
1572 * There is no smack_file_permission hook
Casey Schauflere114e472008-02-04 22:29:50 -08001573 *
1574 * Should access checks be done on each read or write?
1575 * UNICOS and SELinux say yes.
1576 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
1577 *
1578 * I'll say no for now. Smack does not do the frequent
1579 * label changing that SELinux does.
1580 */
Casey Schauflere114e472008-02-04 22:29:50 -08001581
1582/**
1583 * smack_file_alloc_security - assign a file security blob
1584 * @file: the object
1585 *
1586 * The security blob for a file is a pointer to the master
1587 * label list, so no allocation is done.
1588 *
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001589 * f_security is the owner security information. It
1590 * isn't used on file access checks, it's for send_sigio.
1591 *
Casey Schauflere114e472008-02-04 22:29:50 -08001592 * Returns 0
1593 */
1594static int smack_file_alloc_security(struct file *file)
1595{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001596 struct smack_known *skp = smk_of_current();
1597
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001598 file->f_security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08001599 return 0;
1600}
1601
1602/**
1603 * smack_file_free_security - clear a file security blob
1604 * @file: the object
1605 *
1606 * The security blob for a file is a pointer to the master
1607 * label list, so no memory is freed.
1608 */
1609static void smack_file_free_security(struct file *file)
1610{
1611 file->f_security = NULL;
1612}
1613
1614/**
1615 * smack_file_ioctl - Smack check on ioctls
1616 * @file: the object
1617 * @cmd: what to do
1618 * @arg: unused
1619 *
1620 * Relies heavily on the correct use of the ioctl command conventions.
1621 *
1622 * Returns 0 if allowed, error code otherwise
1623 */
1624static int smack_file_ioctl(struct file *file, unsigned int cmd,
1625 unsigned long arg)
1626{
1627 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001628 struct smk_audit_info ad;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001629 struct inode *inode = file_inode(file);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001630
Eric Parisf48b7392011-04-25 12:54:27 -04001631 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001632 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflere114e472008-02-04 22:29:50 -08001633
Casey Schauflerd166c802014-08-27 14:51:27 -07001634 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001635 rc = smk_curacc(smk_of_inode(inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001636 rc = smk_bu_file(file, MAY_WRITE, rc);
1637 }
Casey Schauflere114e472008-02-04 22:29:50 -08001638
Casey Schauflerd166c802014-08-27 14:51:27 -07001639 if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ)) {
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001640 rc = smk_curacc(smk_of_inode(inode), MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001641 rc = smk_bu_file(file, MAY_READ, rc);
1642 }
Casey Schauflere114e472008-02-04 22:29:50 -08001643
1644 return rc;
1645}
1646
1647/**
1648 * smack_file_lock - Smack check on file locking
1649 * @file: the object
Randy Dunlap251a2a92009-02-18 11:42:33 -08001650 * @cmd: unused
Casey Schauflere114e472008-02-04 22:29:50 -08001651 *
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001652 * Returns 0 if current has lock access, error code otherwise
Casey Schauflere114e472008-02-04 22:29:50 -08001653 */
1654static int smack_file_lock(struct file *file, unsigned int cmd)
1655{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001656 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001657 int rc;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001658 struct inode *inode = file_inode(file);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001659
Eric Paris92f42502011-04-25 13:15:55 -04001660 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1661 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001662 rc = smk_curacc(smk_of_inode(inode), MAY_LOCK, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001663 rc = smk_bu_file(file, MAY_LOCK, rc);
1664 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001665}
1666
1667/**
1668 * smack_file_fcntl - Smack check on fcntl
1669 * @file: the object
1670 * @cmd: what action to check
1671 * @arg: unused
1672 *
Casey Schaufler531f1d42011-09-19 12:41:42 -07001673 * Generally these operations are harmless.
1674 * File locking operations present an obvious mechanism
1675 * for passing information, so they require write access.
1676 *
Casey Schauflere114e472008-02-04 22:29:50 -08001677 * Returns 0 if current has access, error code otherwise
1678 */
1679static int smack_file_fcntl(struct file *file, unsigned int cmd,
1680 unsigned long arg)
1681{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001682 struct smk_audit_info ad;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001683 int rc = 0;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001684 struct inode *inode = file_inode(file);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001685
Casey Schauflere114e472008-02-04 22:29:50 -08001686 switch (cmd) {
Casey Schauflere114e472008-02-04 22:29:50 -08001687 case F_GETLK:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001688 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001689 case F_SETLK:
1690 case F_SETLKW:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001691 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1692 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001693 rc = smk_curacc(smk_of_inode(inode), MAY_LOCK, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001694 rc = smk_bu_file(file, MAY_LOCK, rc);
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001695 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001696 case F_SETOWN:
1697 case F_SETSIG:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001698 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1699 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001700 rc = smk_curacc(smk_of_inode(inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001701 rc = smk_bu_file(file, MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001702 break;
1703 default:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001704 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001705 }
1706
1707 return rc;
1708}
1709
1710/**
Al Viroe5467852012-05-30 13:30:51 -04001711 * smack_mmap_file :
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001712 * Check permissions for a mmap operation. The @file may be NULL, e.g.
1713 * if mapping anonymous memory.
1714 * @file contains the file structure for file to map (may be NULL).
1715 * @reqprot contains the protection requested by the application.
1716 * @prot contains the protection that will be applied by the kernel.
1717 * @flags contains the operational flags.
1718 * Return 0 if permission is granted.
1719 */
Al Viroe5467852012-05-30 13:30:51 -04001720static int smack_mmap_file(struct file *file,
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001721 unsigned long reqprot, unsigned long prot,
Al Viroe5467852012-05-30 13:30:51 -04001722 unsigned long flags)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001723{
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001724 struct smack_known *skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001725 struct smack_known *mkp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001726 struct smack_rule *srp;
1727 struct task_smack *tsp;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001728 struct smack_known *okp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001729 struct inode_smack *isp;
Seth Forshee809c02e2016-04-26 14:36:22 -05001730 struct superblock_smack *sbsp;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001731 int may;
1732 int mmay;
1733 int tmay;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001734 int rc;
1735
Al Viro496ad9a2013-01-23 17:07:38 -05001736 if (file == NULL)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001737 return 0;
1738
Al Viro496ad9a2013-01-23 17:07:38 -05001739 isp = file_inode(file)->i_security;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001740 if (isp->smk_mmap == NULL)
1741 return 0;
Seth Forshee809c02e2016-04-26 14:36:22 -05001742 sbsp = file_inode(file)->i_sb->s_security;
1743 if (sbsp->smk_flags & SMK_SB_UNTRUSTED &&
1744 isp->smk_mmap != sbsp->smk_root)
1745 return -EACCES;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001746 mkp = isp->smk_mmap;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001747
1748 tsp = current_security();
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001749 skp = smk_of_current();
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001750 rc = 0;
1751
1752 rcu_read_lock();
1753 /*
1754 * For each Smack rule associated with the subject
1755 * label verify that the SMACK64MMAP also has access
1756 * to that rule's object label.
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001757 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001758 list_for_each_entry_rcu(srp, &skp->smk_rules, list) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001759 okp = srp->smk_object;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001760 /*
1761 * Matching labels always allows access.
1762 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001763 if (mkp->smk_known == okp->smk_known)
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001764 continue;
1765 /*
1766 * If there is a matching local rule take
1767 * that into account as well.
1768 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001769 may = smk_access_entry(srp->smk_subject->smk_known,
1770 okp->smk_known,
1771 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001772 if (may == -ENOENT)
1773 may = srp->smk_access;
1774 else
1775 may &= srp->smk_access;
1776 /*
1777 * If may is zero the SMACK64MMAP subject can't
1778 * possibly have less access.
1779 */
1780 if (may == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001781 continue;
1782
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001783 /*
1784 * Fetch the global list entry.
1785 * If there isn't one a SMACK64MMAP subject
1786 * can't have as much access as current.
1787 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001788 mmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1789 &mkp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001790 if (mmay == -ENOENT) {
1791 rc = -EACCES;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001792 break;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001793 }
1794 /*
1795 * If there is a local entry it modifies the
1796 * potential access, too.
1797 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001798 tmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1799 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001800 if (tmay != -ENOENT)
1801 mmay &= tmay;
1802
1803 /*
1804 * If there is any access available to current that is
1805 * not available to a SMACK64MMAP subject
1806 * deny access.
1807 */
Casey Schaufler75a25632011-02-09 19:58:42 -08001808 if ((may | mmay) != mmay) {
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001809 rc = -EACCES;
1810 break;
1811 }
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001812 }
1813
1814 rcu_read_unlock();
1815
1816 return rc;
1817}
1818
1819/**
Casey Schauflere114e472008-02-04 22:29:50 -08001820 * smack_file_set_fowner - set the file security blob value
1821 * @file: object in question
1822 *
Casey Schauflere114e472008-02-04 22:29:50 -08001823 */
Jeff Laytone0b93ed2014-08-22 11:27:32 -04001824static void smack_file_set_fowner(struct file *file)
Casey Schauflere114e472008-02-04 22:29:50 -08001825{
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001826 file->f_security = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08001827}
1828
1829/**
1830 * smack_file_send_sigiotask - Smack on sigio
1831 * @tsk: The target task
1832 * @fown: the object the signal come from
1833 * @signum: unused
1834 *
1835 * Allow a privileged task to get signals even if it shouldn't
1836 *
1837 * Returns 0 if a subject with the object's smack could
1838 * write to the task, an error code otherwise.
1839 */
1840static int smack_file_send_sigiotask(struct task_struct *tsk,
1841 struct fown_struct *fown, int signum)
1842{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001843 struct smack_known *skp;
1844 struct smack_known *tkp = smk_of_task(tsk->cred->security);
Casey Schauflere114e472008-02-04 22:29:50 -08001845 struct file *file;
1846 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001847 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001848
1849 /*
1850 * struct fown_struct is never outside the context of a struct file
1851 */
1852 file = container_of(fown, struct file, f_owner);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001853
Etienne Bassetecfcc532009-04-08 20:40:06 +02001854 /* we don't log here as rc can be overriden */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001855 skp = file->f_security;
Casey Schauflerc60b9062016-08-30 10:31:39 -07001856 rc = smk_access(skp, tkp, MAY_DELIVER, NULL);
1857 rc = smk_bu_note("sigiotask", skp, tkp, MAY_DELIVER, rc);
David Howells5cd9c582008-08-14 11:37:28 +01001858 if (rc != 0 && has_capability(tsk, CAP_MAC_OVERRIDE))
Etienne Bassetecfcc532009-04-08 20:40:06 +02001859 rc = 0;
1860
1861 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1862 smk_ad_setfield_u_tsk(&ad, tsk);
Casey Schauflerc60b9062016-08-30 10:31:39 -07001863 smack_log(skp->smk_known, tkp->smk_known, MAY_DELIVER, rc, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001864 return rc;
1865}
1866
1867/**
1868 * smack_file_receive - Smack file receive check
1869 * @file: the object
1870 *
1871 * Returns 0 if current has access, error code otherwise
1872 */
1873static int smack_file_receive(struct file *file)
1874{
Casey Schauflerd166c802014-08-27 14:51:27 -07001875 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001876 int may = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001877 struct smk_audit_info ad;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001878 struct inode *inode = file_inode(file);
Casey Schaufler79be0932015-12-07 14:34:32 -08001879 struct socket *sock;
1880 struct task_smack *tsp;
1881 struct socket_smack *ssp;
Casey Schauflere114e472008-02-04 22:29:50 -08001882
Seung-Woo Kim97775822015-04-17 15:25:04 +09001883 if (unlikely(IS_PRIVATE(inode)))
1884 return 0;
1885
Casey Schaufler4482a442013-12-30 17:37:45 -08001886 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001887 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler79be0932015-12-07 14:34:32 -08001888
1889 if (S_ISSOCK(inode->i_mode)) {
1890 sock = SOCKET_I(inode);
1891 ssp = sock->sk->sk_security;
1892 tsp = current_security();
1893 /*
1894 * If the receiving process can't write to the
1895 * passed socket or if the passed socket can't
1896 * write to the receiving process don't accept
1897 * the passed socket.
1898 */
1899 rc = smk_access(tsp->smk_task, ssp->smk_out, MAY_WRITE, &ad);
1900 rc = smk_bu_file(file, may, rc);
1901 if (rc < 0)
1902 return rc;
1903 rc = smk_access(ssp->smk_in, tsp->smk_task, MAY_WRITE, &ad);
1904 rc = smk_bu_file(file, may, rc);
1905 return rc;
1906 }
Casey Schauflere114e472008-02-04 22:29:50 -08001907 /*
1908 * This code relies on bitmasks.
1909 */
1910 if (file->f_mode & FMODE_READ)
1911 may = MAY_READ;
1912 if (file->f_mode & FMODE_WRITE)
1913 may |= MAY_WRITE;
1914
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001915 rc = smk_curacc(smk_of_inode(inode), may, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001916 rc = smk_bu_file(file, may, rc);
1917 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001918}
1919
Casey Schaufler531f1d42011-09-19 12:41:42 -07001920/**
Eric Paris83d49852012-04-04 13:45:40 -04001921 * smack_file_open - Smack dentry open processing
Casey Schaufler531f1d42011-09-19 12:41:42 -07001922 * @file: the object
Casey Schauflera6834c02014-04-21 11:10:26 -07001923 * @cred: task credential
Casey Schaufler531f1d42011-09-19 12:41:42 -07001924 *
1925 * Set the security blob in the file structure.
Casey Schauflera6834c02014-04-21 11:10:26 -07001926 * Allow the open only if the task has read access. There are
1927 * many read operations (e.g. fstat) that you can do with an
1928 * fd even if you have the file open write-only.
Casey Schaufler531f1d42011-09-19 12:41:42 -07001929 *
1930 * Returns 0
1931 */
Eric Paris83d49852012-04-04 13:45:40 -04001932static int smack_file_open(struct file *file, const struct cred *cred)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001933{
Casey Schauflera6834c02014-04-21 11:10:26 -07001934 struct task_smack *tsp = cred->security;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001935 struct inode *inode = file_inode(file);
Casey Schauflera6834c02014-04-21 11:10:26 -07001936 struct smk_audit_info ad;
1937 int rc;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001938
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001939 if (smack_privileged(CAP_MAC_OVERRIDE))
Casey Schauflera6834c02014-04-21 11:10:26 -07001940 return 0;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001941
Casey Schauflera6834c02014-04-21 11:10:26 -07001942 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1943 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001944 rc = smk_access(tsp->smk_task, smk_of_inode(inode), MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001945 rc = smk_bu_credfile(cred, file, MAY_READ, rc);
Casey Schauflera6834c02014-04-21 11:10:26 -07001946
1947 return rc;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001948}
1949
Casey Schauflere114e472008-02-04 22:29:50 -08001950/*
1951 * Task hooks
1952 */
1953
1954/**
David Howellsee18d642009-09-02 09:14:21 +01001955 * smack_cred_alloc_blank - "allocate" blank task-level security credentials
1956 * @new: the new credentials
1957 * @gfp: the atomicity of any memory allocations
1958 *
1959 * Prepare a blank set of credentials for modification. This must allocate all
1960 * the memory the LSM module might require such that cred_transfer() can
1961 * complete without error.
1962 */
1963static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1964{
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001965 struct task_smack *tsp;
1966
1967 tsp = new_task_smack(NULL, NULL, gfp);
1968 if (tsp == NULL)
Casey Schaufler676dac42010-12-02 06:43:39 -08001969 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001970
1971 cred->security = tsp;
1972
David Howellsee18d642009-09-02 09:14:21 +01001973 return 0;
1974}
1975
1976
1977/**
David Howellsf1752ee2008-11-14 10:39:17 +11001978 * smack_cred_free - "free" task-level security credentials
1979 * @cred: the credentials in question
Casey Schauflere114e472008-02-04 22:29:50 -08001980 *
Casey Schauflere114e472008-02-04 22:29:50 -08001981 */
David Howellsf1752ee2008-11-14 10:39:17 +11001982static void smack_cred_free(struct cred *cred)
Casey Schauflere114e472008-02-04 22:29:50 -08001983{
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001984 struct task_smack *tsp = cred->security;
1985 struct smack_rule *rp;
1986 struct list_head *l;
1987 struct list_head *n;
1988
1989 if (tsp == NULL)
1990 return;
1991 cred->security = NULL;
1992
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02001993 smk_destroy_label_list(&tsp->smk_relabel);
1994
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001995 list_for_each_safe(l, n, &tsp->smk_rules) {
1996 rp = list_entry(l, struct smack_rule, list);
1997 list_del(&rp->list);
1998 kfree(rp);
1999 }
2000 kfree(tsp);
Casey Schauflere114e472008-02-04 22:29:50 -08002001}
2002
2003/**
David Howellsd84f4f92008-11-14 10:39:23 +11002004 * smack_cred_prepare - prepare new set of credentials for modification
2005 * @new: the new credentials
2006 * @old: the original credentials
2007 * @gfp: the atomicity of any memory allocations
2008 *
2009 * Prepare a new set of credentials for modification.
2010 */
2011static int smack_cred_prepare(struct cred *new, const struct cred *old,
2012 gfp_t gfp)
2013{
Casey Schaufler676dac42010-12-02 06:43:39 -08002014 struct task_smack *old_tsp = old->security;
2015 struct task_smack *new_tsp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002016 int rc;
Casey Schaufler676dac42010-12-02 06:43:39 -08002017
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002018 new_tsp = new_task_smack(old_tsp->smk_task, old_tsp->smk_task, gfp);
Casey Schaufler676dac42010-12-02 06:43:39 -08002019 if (new_tsp == NULL)
2020 return -ENOMEM;
2021
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002022 rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
2023 if (rc != 0)
2024 return rc;
2025
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02002026 rc = smk_copy_relabel(&new_tsp->smk_relabel, &old_tsp->smk_relabel,
2027 gfp);
2028 if (rc != 0)
2029 return rc;
2030
Casey Schaufler676dac42010-12-02 06:43:39 -08002031 new->security = new_tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11002032 return 0;
2033}
2034
Randy Dunlap251a2a92009-02-18 11:42:33 -08002035/**
David Howellsee18d642009-09-02 09:14:21 +01002036 * smack_cred_transfer - Transfer the old credentials to the new credentials
2037 * @new: the new credentials
2038 * @old: the original credentials
2039 *
2040 * Fill in a set of blank credentials from another set of credentials.
2041 */
2042static void smack_cred_transfer(struct cred *new, const struct cred *old)
2043{
Casey Schaufler676dac42010-12-02 06:43:39 -08002044 struct task_smack *old_tsp = old->security;
2045 struct task_smack *new_tsp = new->security;
2046
2047 new_tsp->smk_task = old_tsp->smk_task;
2048 new_tsp->smk_forked = old_tsp->smk_task;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002049 mutex_init(&new_tsp->smk_rules_lock);
2050 INIT_LIST_HEAD(&new_tsp->smk_rules);
2051
2052
2053 /* cbs copy rule list */
David Howellsee18d642009-09-02 09:14:21 +01002054}
2055
2056/**
David Howells3a3b7ce2008-11-14 10:39:28 +11002057 * smack_kernel_act_as - Set the subjective context in a set of credentials
Randy Dunlap251a2a92009-02-18 11:42:33 -08002058 * @new: points to the set of credentials to be modified.
2059 * @secid: specifies the security ID to be set
David Howells3a3b7ce2008-11-14 10:39:28 +11002060 *
2061 * Set the security data for a kernel service.
2062 */
2063static int smack_kernel_act_as(struct cred *new, u32 secid)
2064{
Casey Schaufler676dac42010-12-02 06:43:39 -08002065 struct task_smack *new_tsp = new->security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002066 struct smack_known *skp = smack_from_secid(secid);
David Howells3a3b7ce2008-11-14 10:39:28 +11002067
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002068 if (skp == NULL)
David Howells3a3b7ce2008-11-14 10:39:28 +11002069 return -EINVAL;
2070
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002071 new_tsp->smk_task = skp;
David Howells3a3b7ce2008-11-14 10:39:28 +11002072 return 0;
2073}
2074
2075/**
2076 * smack_kernel_create_files_as - Set the file creation label in a set of creds
Randy Dunlap251a2a92009-02-18 11:42:33 -08002077 * @new: points to the set of credentials to be modified
2078 * @inode: points to the inode to use as a reference
David Howells3a3b7ce2008-11-14 10:39:28 +11002079 *
2080 * Set the file creation context in a set of credentials to the same
2081 * as the objective context of the specified inode
2082 */
2083static int smack_kernel_create_files_as(struct cred *new,
2084 struct inode *inode)
2085{
2086 struct inode_smack *isp = inode->i_security;
Casey Schaufler676dac42010-12-02 06:43:39 -08002087 struct task_smack *tsp = new->security;
David Howells3a3b7ce2008-11-14 10:39:28 +11002088
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002089 tsp->smk_forked = isp->smk_inode;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002090 tsp->smk_task = tsp->smk_forked;
David Howells3a3b7ce2008-11-14 10:39:28 +11002091 return 0;
2092}
2093
2094/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002095 * smk_curacc_on_task - helper to log task related access
2096 * @p: the task object
Casey Schaufler531f1d42011-09-19 12:41:42 -07002097 * @access: the access requested
2098 * @caller: name of the calling function for audit
Etienne Bassetecfcc532009-04-08 20:40:06 +02002099 *
2100 * Return 0 if access is permitted
2101 */
Casey Schaufler531f1d42011-09-19 12:41:42 -07002102static int smk_curacc_on_task(struct task_struct *p, int access,
2103 const char *caller)
Etienne Bassetecfcc532009-04-08 20:40:06 +02002104{
2105 struct smk_audit_info ad;
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +03002106 struct smack_known *skp = smk_of_task_struct(p);
Casey Schauflerd166c802014-08-27 14:51:27 -07002107 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002108
Casey Schaufler531f1d42011-09-19 12:41:42 -07002109 smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002110 smk_ad_setfield_u_tsk(&ad, p);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002111 rc = smk_curacc(skp, access, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07002112 rc = smk_bu_task(p, access, rc);
2113 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002114}
2115
2116/**
Casey Schauflere114e472008-02-04 22:29:50 -08002117 * smack_task_setpgid - Smack check on setting pgid
2118 * @p: the task object
2119 * @pgid: unused
2120 *
2121 * Return 0 if write access is permitted
2122 */
2123static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
2124{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002125 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002126}
2127
2128/**
2129 * smack_task_getpgid - Smack access check for getpgid
2130 * @p: the object task
2131 *
2132 * Returns 0 if current can read the object task, error code otherwise
2133 */
2134static int smack_task_getpgid(struct task_struct *p)
2135{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002136 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002137}
2138
2139/**
2140 * smack_task_getsid - Smack access check for getsid
2141 * @p: the object task
2142 *
2143 * Returns 0 if current can read the object task, error code otherwise
2144 */
2145static int smack_task_getsid(struct task_struct *p)
2146{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002147 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002148}
2149
2150/**
2151 * smack_task_getsecid - get the secid of the task
2152 * @p: the object task
2153 * @secid: where to put the result
2154 *
2155 * Sets the secid to contain a u32 version of the smack label.
2156 */
2157static void smack_task_getsecid(struct task_struct *p, u32 *secid)
2158{
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +03002159 struct smack_known *skp = smk_of_task_struct(p);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002160
2161 *secid = skp->smk_secid;
Casey Schauflere114e472008-02-04 22:29:50 -08002162}
2163
2164/**
2165 * smack_task_setnice - Smack check on setting nice
2166 * @p: the task object
2167 * @nice: unused
2168 *
2169 * Return 0 if write access is permitted
2170 */
2171static int smack_task_setnice(struct task_struct *p, int nice)
2172{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002173 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002174}
2175
2176/**
2177 * smack_task_setioprio - Smack check on setting ioprio
2178 * @p: the task object
2179 * @ioprio: unused
2180 *
2181 * Return 0 if write access is permitted
2182 */
2183static int smack_task_setioprio(struct task_struct *p, int ioprio)
2184{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002185 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002186}
2187
2188/**
2189 * smack_task_getioprio - Smack check on reading ioprio
2190 * @p: the task object
2191 *
2192 * Return 0 if read access is permitted
2193 */
2194static int smack_task_getioprio(struct task_struct *p)
2195{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002196 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002197}
2198
2199/**
2200 * smack_task_setscheduler - Smack check on setting scheduler
2201 * @p: the task object
2202 * @policy: unused
2203 * @lp: unused
2204 *
2205 * Return 0 if read access is permitted
2206 */
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09002207static int smack_task_setscheduler(struct task_struct *p)
Casey Schauflere114e472008-02-04 22:29:50 -08002208{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002209 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002210}
2211
2212/**
2213 * smack_task_getscheduler - Smack check on reading scheduler
2214 * @p: the task object
2215 *
2216 * Return 0 if read access is permitted
2217 */
2218static int smack_task_getscheduler(struct task_struct *p)
2219{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002220 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002221}
2222
2223/**
2224 * smack_task_movememory - Smack check on moving memory
2225 * @p: the task object
2226 *
2227 * Return 0 if write access is permitted
2228 */
2229static int smack_task_movememory(struct task_struct *p)
2230{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002231 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002232}
2233
2234/**
2235 * smack_task_kill - Smack check on signal delivery
2236 * @p: the task object
2237 * @info: unused
2238 * @sig: unused
2239 * @secid: identifies the smack to use in lieu of current's
2240 *
2241 * Return 0 if write access is permitted
2242 *
2243 * The secid behavior is an artifact of an SELinux hack
2244 * in the USB code. Someday it may go away.
2245 */
2246static int smack_task_kill(struct task_struct *p, struct siginfo *info,
2247 int sig, u32 secid)
2248{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002249 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002250 struct smack_known *skp;
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +03002251 struct smack_known *tkp = smk_of_task_struct(p);
Casey Schauflerd166c802014-08-27 14:51:27 -07002252 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002253
Rafal Krypa18d872f2016-04-04 11:14:53 +02002254 if (!sig)
2255 return 0; /* null signal; existence test */
2256
Etienne Bassetecfcc532009-04-08 20:40:06 +02002257 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
2258 smk_ad_setfield_u_tsk(&ad, p);
Casey Schauflere114e472008-02-04 22:29:50 -08002259 /*
Casey Schauflere114e472008-02-04 22:29:50 -08002260 * Sending a signal requires that the sender
2261 * can write the receiver.
2262 */
Casey Schauflerd166c802014-08-27 14:51:27 -07002263 if (secid == 0) {
Casey Schauflerc60b9062016-08-30 10:31:39 -07002264 rc = smk_curacc(tkp, MAY_DELIVER, &ad);
2265 rc = smk_bu_task(p, MAY_DELIVER, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07002266 return rc;
2267 }
Casey Schauflere114e472008-02-04 22:29:50 -08002268 /*
2269 * If the secid isn't 0 we're dealing with some USB IO
2270 * specific behavior. This is not clean. For one thing
2271 * we can't take privilege into account.
2272 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002273 skp = smack_from_secid(secid);
Casey Schauflerc60b9062016-08-30 10:31:39 -07002274 rc = smk_access(skp, tkp, MAY_DELIVER, &ad);
2275 rc = smk_bu_note("USB signal", skp, tkp, MAY_DELIVER, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07002276 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002277}
2278
2279/**
Casey Schauflere114e472008-02-04 22:29:50 -08002280 * smack_task_to_inode - copy task smack into the inode blob
2281 * @p: task to copy from
Randy Dunlap251a2a92009-02-18 11:42:33 -08002282 * @inode: inode to copy to
Casey Schauflere114e472008-02-04 22:29:50 -08002283 *
2284 * Sets the smack pointer in the inode security blob
2285 */
2286static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
2287{
2288 struct inode_smack *isp = inode->i_security;
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +03002289 struct smack_known *skp = smk_of_task_struct(p);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002290
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002291 isp->smk_inode = skp;
Casey Schauflerebc6dcb2018-06-22 10:54:45 -07002292 isp->smk_flags |= SMK_INODE_INSTANT;
Casey Schauflere114e472008-02-04 22:29:50 -08002293}
2294
2295/*
2296 * Socket hooks.
2297 */
2298
2299/**
2300 * smack_sk_alloc_security - Allocate a socket blob
2301 * @sk: the socket
2302 * @family: unused
Randy Dunlap251a2a92009-02-18 11:42:33 -08002303 * @gfp_flags: memory allocation flags
Casey Schauflere114e472008-02-04 22:29:50 -08002304 *
2305 * Assign Smack pointers to current
2306 *
2307 * Returns 0 on success, -ENOMEM is there's no memory
2308 */
2309static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
2310{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002311 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002312 struct socket_smack *ssp;
2313
2314 ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
2315 if (ssp == NULL)
2316 return -ENOMEM;
2317
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002318 ssp->smk_in = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002319 ssp->smk_out = skp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07002320 ssp->smk_packet = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -08002321
2322 sk->sk_security = ssp;
2323
2324 return 0;
2325}
2326
2327/**
2328 * smack_sk_free_security - Free a socket blob
2329 * @sk: the socket
2330 *
2331 * Clears the blob pointer
2332 */
2333static void smack_sk_free_security(struct sock *sk)
2334{
2335 kfree(sk->sk_security);
2336}
2337
2338/**
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002339* smack_ipv4host_label - check host based restrictions
Paul Moore07feee82009-03-27 17:10:54 -04002340* @sip: the object end
2341*
2342* looks for host based access restrictions
2343*
2344* This version will only be appropriate for really small sets of single label
2345* hosts. The caller is responsible for ensuring that the RCU read lock is
2346* taken before calling this function.
2347*
2348* Returns the label of the far end or NULL if it's not special.
2349*/
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002350static struct smack_known *smack_ipv4host_label(struct sockaddr_in *sip)
Paul Moore07feee82009-03-27 17:10:54 -04002351{
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002352 struct smk_net4addr *snp;
Paul Moore07feee82009-03-27 17:10:54 -04002353 struct in_addr *siap = &sip->sin_addr;
2354
2355 if (siap->s_addr == 0)
2356 return NULL;
2357
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002358 list_for_each_entry_rcu(snp, &smk_net4addr_list, list)
2359 /*
2360 * we break after finding the first match because
2361 * the list is sorted from longest to shortest mask
2362 * so we have found the most specific match
2363 */
2364 if (snp->smk_host.s_addr ==
2365 (siap->s_addr & snp->smk_mask.s_addr))
2366 return snp->smk_label;
2367
2368 return NULL;
2369}
2370
2371#if IS_ENABLED(CONFIG_IPV6)
2372/*
2373 * smk_ipv6_localhost - Check for local ipv6 host address
2374 * @sip: the address
2375 *
2376 * Returns boolean true if this is the localhost address
2377 */
2378static bool smk_ipv6_localhost(struct sockaddr_in6 *sip)
2379{
2380 __be16 *be16p = (__be16 *)&sip->sin6_addr;
2381 __be32 *be32p = (__be32 *)&sip->sin6_addr;
2382
2383 if (be32p[0] == 0 && be32p[1] == 0 && be32p[2] == 0 && be16p[6] == 0 &&
2384 ntohs(be16p[7]) == 1)
2385 return true;
2386 return false;
2387}
2388
2389/**
2390* smack_ipv6host_label - check host based restrictions
2391* @sip: the object end
2392*
2393* looks for host based access restrictions
2394*
2395* This version will only be appropriate for really small sets of single label
2396* hosts. The caller is responsible for ensuring that the RCU read lock is
2397* taken before calling this function.
2398*
2399* Returns the label of the far end or NULL if it's not special.
2400*/
2401static struct smack_known *smack_ipv6host_label(struct sockaddr_in6 *sip)
2402{
2403 struct smk_net6addr *snp;
2404 struct in6_addr *sap = &sip->sin6_addr;
2405 int i;
2406 int found = 0;
2407
2408 /*
2409 * It's local. Don't look for a host label.
2410 */
2411 if (smk_ipv6_localhost(sip))
2412 return NULL;
2413
2414 list_for_each_entry_rcu(snp, &smk_net6addr_list, list) {
Paul Moore07feee82009-03-27 17:10:54 -04002415 /*
2416 * we break after finding the first match because
2417 * the list is sorted from longest to shortest mask
2418 * so we have found the most specific match
2419 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002420 for (found = 1, i = 0; i < 8; i++) {
2421 /*
2422 * If the label is NULL the entry has
2423 * been renounced. Ignore it.
2424 */
2425 if (snp->smk_label == NULL)
2426 continue;
2427 if ((sap->s6_addr16[i] & snp->smk_mask.s6_addr16[i]) !=
2428 snp->smk_host.s6_addr16[i]) {
2429 found = 0;
2430 break;
2431 }
Etienne Basset43031542009-03-27 17:11:01 -04002432 }
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002433 if (found)
2434 return snp->smk_label;
2435 }
Paul Moore07feee82009-03-27 17:10:54 -04002436
2437 return NULL;
2438}
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002439#endif /* CONFIG_IPV6 */
Paul Moore07feee82009-03-27 17:10:54 -04002440
2441/**
Casey Schauflere114e472008-02-04 22:29:50 -08002442 * smack_netlabel - Set the secattr on a socket
2443 * @sk: the socket
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002444 * @labeled: socket label scheme
Casey Schauflere114e472008-02-04 22:29:50 -08002445 *
2446 * Convert the outbound smack value (smk_out) to a
2447 * secattr and attach it to the socket.
2448 *
2449 * Returns 0 on success or an error code
2450 */
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002451static int smack_netlabel(struct sock *sk, int labeled)
Casey Schauflere114e472008-02-04 22:29:50 -08002452{
Casey Schauflerf7112e62012-05-06 15:22:02 -07002453 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04002454 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002455 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002456
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002457 /*
2458 * Usually the netlabel code will handle changing the
2459 * packet labeling based on the label.
2460 * The case of a single label host is different, because
2461 * a single label host should never get a labeled packet
2462 * even though the label is usually associated with a packet
2463 * label.
2464 */
2465 local_bh_disable();
2466 bh_lock_sock_nested(sk);
2467
2468 if (ssp->smk_out == smack_net_ambient ||
2469 labeled == SMACK_UNLABELED_SOCKET)
2470 netlbl_sock_delattr(sk);
2471 else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002472 skp = ssp->smk_out;
Casey Schauflerf7112e62012-05-06 15:22:02 -07002473 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002474 }
2475
2476 bh_unlock_sock(sk);
2477 local_bh_enable();
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002478
Casey Schauflere114e472008-02-04 22:29:50 -08002479 return rc;
2480}
2481
2482/**
Paul Moore07feee82009-03-27 17:10:54 -04002483 * smack_netlbel_send - Set the secattr on a socket and perform access checks
2484 * @sk: the socket
2485 * @sap: the destination address
2486 *
2487 * Set the correct secattr for the given socket based on the destination
2488 * address and perform any outbound access checks needed.
2489 *
2490 * Returns 0 on success or an error code.
2491 *
2492 */
2493static int smack_netlabel_send(struct sock *sk, struct sockaddr_in *sap)
2494{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002495 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04002496 int rc;
2497 int sk_lbl;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002498 struct smack_known *hkp;
Paul Moore07feee82009-03-27 17:10:54 -04002499 struct socket_smack *ssp = sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002500 struct smk_audit_info ad;
Paul Moore07feee82009-03-27 17:10:54 -04002501
2502 rcu_read_lock();
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002503 hkp = smack_ipv4host_label(sap);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002504 if (hkp != NULL) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02002505#ifdef CONFIG_AUDIT
Kees Cook923e9a12012-04-10 13:26:44 -07002506 struct lsm_network_audit net;
2507
Eric Paris48c62af2012-04-02 13:15:44 -04002508 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2509 ad.a.u.net->family = sap->sin_family;
2510 ad.a.u.net->dport = sap->sin_port;
2511 ad.a.u.net->v4info.daddr = sap->sin_addr.s_addr;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002512#endif
Kees Cook923e9a12012-04-10 13:26:44 -07002513 sk_lbl = SMACK_UNLABELED_SOCKET;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002514 skp = ssp->smk_out;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002515 rc = smk_access(skp, hkp, MAY_WRITE, &ad);
2516 rc = smk_bu_note("IPv4 host check", skp, hkp, MAY_WRITE, rc);
Paul Moore07feee82009-03-27 17:10:54 -04002517 } else {
2518 sk_lbl = SMACK_CIPSO_SOCKET;
2519 rc = 0;
2520 }
2521 rcu_read_unlock();
2522 if (rc != 0)
2523 return rc;
2524
2525 return smack_netlabel(sk, sk_lbl);
2526}
2527
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002528#if IS_ENABLED(CONFIG_IPV6)
2529/**
2530 * smk_ipv6_check - check Smack access
2531 * @subject: subject Smack label
2532 * @object: object Smack label
2533 * @address: address
2534 * @act: the action being taken
2535 *
2536 * Check an IPv6 access
2537 */
2538static int smk_ipv6_check(struct smack_known *subject,
2539 struct smack_known *object,
2540 struct sockaddr_in6 *address, int act)
2541{
2542#ifdef CONFIG_AUDIT
2543 struct lsm_network_audit net;
2544#endif
2545 struct smk_audit_info ad;
2546 int rc;
2547
2548#ifdef CONFIG_AUDIT
2549 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2550 ad.a.u.net->family = PF_INET6;
Casey Schaufler8c62a902022-02-28 15:45:32 -08002551 ad.a.u.net->dport = address->sin6_port;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002552 if (act == SMK_RECEIVING)
2553 ad.a.u.net->v6info.saddr = address->sin6_addr;
2554 else
2555 ad.a.u.net->v6info.daddr = address->sin6_addr;
2556#endif
2557 rc = smk_access(subject, object, MAY_WRITE, &ad);
2558 rc = smk_bu_note("IPv6 check", subject, object, MAY_WRITE, rc);
2559 return rc;
2560}
2561#endif /* CONFIG_IPV6 */
2562
2563#ifdef SMACK_IPV6_PORT_LABELING
Paul Moore07feee82009-03-27 17:10:54 -04002564/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002565 * smk_ipv6_port_label - Smack port access table management
2566 * @sock: socket
2567 * @address: address
2568 *
2569 * Create or update the port list entry
2570 */
2571static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
2572{
2573 struct sock *sk = sock->sk;
2574 struct sockaddr_in6 *addr6;
2575 struct socket_smack *ssp = sock->sk->sk_security;
2576 struct smk_port_label *spp;
2577 unsigned short port = 0;
2578
2579 if (address == NULL) {
2580 /*
2581 * This operation is changing the Smack information
2582 * on the bound socket. Take the changes to the port
2583 * as well.
2584 */
2585 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2586 if (sk != spp->smk_sock)
2587 continue;
2588 spp->smk_in = ssp->smk_in;
2589 spp->smk_out = ssp->smk_out;
2590 return;
2591 }
2592 /*
2593 * A NULL address is only used for updating existing
2594 * bound entries. If there isn't one, it's OK.
2595 */
2596 return;
2597 }
2598
2599 addr6 = (struct sockaddr_in6 *)address;
2600 port = ntohs(addr6->sin6_port);
2601 /*
2602 * This is a special case that is safely ignored.
2603 */
2604 if (port == 0)
2605 return;
2606
2607 /*
2608 * Look for an existing port list entry.
2609 * This is an indication that a port is getting reused.
2610 */
2611 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2612 if (spp->smk_port != port)
2613 continue;
2614 spp->smk_port = port;
2615 spp->smk_sock = sk;
2616 spp->smk_in = ssp->smk_in;
2617 spp->smk_out = ssp->smk_out;
2618 return;
2619 }
2620
2621 /*
2622 * A new port entry is required.
2623 */
2624 spp = kzalloc(sizeof(*spp), GFP_KERNEL);
2625 if (spp == NULL)
2626 return;
2627
2628 spp->smk_port = port;
2629 spp->smk_sock = sk;
2630 spp->smk_in = ssp->smk_in;
2631 spp->smk_out = ssp->smk_out;
2632
2633 list_add(&spp->list, &smk_ipv6_port_list);
2634 return;
2635}
2636
2637/**
2638 * smk_ipv6_port_check - check Smack port access
2639 * @sock: socket
2640 * @address: address
2641 *
2642 * Create or update the port list entry
2643 */
Casey Schaufler6ea06242013-08-05 13:21:22 -07002644static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
Casey Schauflerc6739442013-05-22 18:42:56 -07002645 int act)
2646{
Casey Schauflerc6739442013-05-22 18:42:56 -07002647 struct smk_port_label *spp;
2648 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002649 struct smack_known *skp = NULL;
2650 unsigned short port;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002651 struct smack_known *object;
Casey Schauflerc6739442013-05-22 18:42:56 -07002652
2653 if (act == SMK_RECEIVING) {
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002654 skp = smack_ipv6host_label(address);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002655 object = ssp->smk_in;
Casey Schauflerc6739442013-05-22 18:42:56 -07002656 } else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002657 skp = ssp->smk_out;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002658 object = smack_ipv6host_label(address);
Casey Schauflerc6739442013-05-22 18:42:56 -07002659 }
2660
2661 /*
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002662 * The other end is a single label host.
Casey Schauflerc6739442013-05-22 18:42:56 -07002663 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002664 if (skp != NULL && object != NULL)
2665 return smk_ipv6_check(skp, object, address, act);
2666 if (skp == NULL)
2667 skp = smack_net_ambient;
2668 if (object == NULL)
2669 object = smack_net_ambient;
Casey Schauflerc6739442013-05-22 18:42:56 -07002670
2671 /*
2672 * It's remote, so port lookup does no good.
2673 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002674 if (!smk_ipv6_localhost(address))
2675 return smk_ipv6_check(skp, object, address, act);
Casey Schauflerc6739442013-05-22 18:42:56 -07002676
2677 /*
2678 * It's local so the send check has to have passed.
2679 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002680 if (act == SMK_RECEIVING)
2681 return 0;
Casey Schauflerc6739442013-05-22 18:42:56 -07002682
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002683 port = ntohs(address->sin6_port);
Casey Schauflerc6739442013-05-22 18:42:56 -07002684 list_for_each_entry(spp, &smk_ipv6_port_list, list) {
2685 if (spp->smk_port != port)
2686 continue;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002687 object = spp->smk_in;
Casey Schauflerc6739442013-05-22 18:42:56 -07002688 if (act == SMK_CONNECTING)
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002689 ssp->smk_packet = spp->smk_out;
Casey Schauflerc6739442013-05-22 18:42:56 -07002690 break;
2691 }
2692
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002693 return smk_ipv6_check(skp, object, address, act);
Casey Schauflerc6739442013-05-22 18:42:56 -07002694}
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002695#endif /* SMACK_IPV6_PORT_LABELING */
Casey Schauflerc6739442013-05-22 18:42:56 -07002696
2697/**
Casey Schauflere114e472008-02-04 22:29:50 -08002698 * smack_inode_setsecurity - set smack xattrs
2699 * @inode: the object
2700 * @name: attribute name
2701 * @value: attribute value
2702 * @size: size of the attribute
2703 * @flags: unused
2704 *
2705 * Sets the named attribute in the appropriate blob
2706 *
2707 * Returns 0 on success, or an error code
2708 */
2709static int smack_inode_setsecurity(struct inode *inode, const char *name,
2710 const void *value, size_t size, int flags)
2711{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002712 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002713 struct inode_smack *nsp = inode->i_security;
2714 struct socket_smack *ssp;
2715 struct socket *sock;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002716 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002717
Casey Schauflerf7112e62012-05-06 15:22:02 -07002718 if (value == NULL || size > SMK_LONGLABEL || size == 0)
Pankaj Kumar5e9ab592013-12-13 15:12:22 +05302719 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08002720
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002721 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02002722 if (IS_ERR(skp))
2723 return PTR_ERR(skp);
Casey Schauflere114e472008-02-04 22:29:50 -08002724
2725 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002726 nsp->smk_inode = skp;
David P. Quigleyddd29ec2009-09-09 14:25:37 -04002727 nsp->smk_flags |= SMK_INODE_INSTANT;
Casey Schauflere114e472008-02-04 22:29:50 -08002728 return 0;
2729 }
2730 /*
2731 * The rest of the Smack xattrs are only on sockets.
2732 */
2733 if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2734 return -EOPNOTSUPP;
2735
2736 sock = SOCKET_I(inode);
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08002737 if (sock == NULL || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002738 return -EOPNOTSUPP;
2739
2740 ssp = sock->sk->sk_security;
2741
2742 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002743 ssp->smk_in = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002744 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002745 ssp->smk_out = skp;
Casey Schauflerc6739442013-05-22 18:42:56 -07002746 if (sock->sk->sk_family == PF_INET) {
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002747 rc = smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2748 if (rc != 0)
2749 printk(KERN_WARNING
2750 "Smack: \"%s\" netlbl error %d.\n",
2751 __func__, -rc);
2752 }
Casey Schauflere114e472008-02-04 22:29:50 -08002753 } else
2754 return -EOPNOTSUPP;
2755
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002756#ifdef SMACK_IPV6_PORT_LABELING
Casey Schauflerc6739442013-05-22 18:42:56 -07002757 if (sock->sk->sk_family == PF_INET6)
2758 smk_ipv6_port_label(sock, NULL);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002759#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07002760
Casey Schauflere114e472008-02-04 22:29:50 -08002761 return 0;
2762}
2763
2764/**
2765 * smack_socket_post_create - finish socket setup
2766 * @sock: the socket
2767 * @family: protocol family
2768 * @type: unused
2769 * @protocol: unused
2770 * @kern: unused
2771 *
2772 * Sets the netlabel information on the socket
2773 *
2774 * Returns 0 on success, and error code otherwise
2775 */
2776static int smack_socket_post_create(struct socket *sock, int family,
2777 int type, int protocol, int kern)
2778{
Marcin Lis74123012015-01-22 15:40:33 +01002779 struct socket_smack *ssp;
2780
2781 if (sock->sk == NULL)
2782 return 0;
2783
2784 /*
2785 * Sockets created by kernel threads receive web label.
2786 */
2787 if (unlikely(current->flags & PF_KTHREAD)) {
2788 ssp = sock->sk->sk_security;
2789 ssp->smk_in = &smack_known_web;
2790 ssp->smk_out = &smack_known_web;
2791 }
2792
2793 if (family != PF_INET)
Casey Schauflere114e472008-02-04 22:29:50 -08002794 return 0;
2795 /*
2796 * Set the outbound netlbl.
2797 */
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002798 return smack_netlabel(sock->sk, SMACK_CIPSO_SOCKET);
2799}
2800
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002801#ifdef SMACK_IPV6_PORT_LABELING
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002802/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002803 * smack_socket_bind - record port binding information.
2804 * @sock: the socket
2805 * @address: the port address
2806 * @addrlen: size of the address
2807 *
2808 * Records the label bound to a port.
2809 *
2810 * Returns 0
2811 */
2812static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2813 int addrlen)
2814{
2815 if (sock->sk != NULL && sock->sk->sk_family == PF_INET6)
2816 smk_ipv6_port_label(sock, address);
Casey Schauflerc6739442013-05-22 18:42:56 -07002817 return 0;
2818}
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002819#endif /* SMACK_IPV6_PORT_LABELING */
Casey Schauflerc6739442013-05-22 18:42:56 -07002820
2821/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002822 * smack_socket_connect - connect access check
2823 * @sock: the socket
2824 * @sap: the other end
2825 * @addrlen: size of sap
2826 *
2827 * Verifies that a connection may be possible
2828 *
2829 * Returns 0 on success, and error code otherwise
2830 */
2831static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2832 int addrlen)
2833{
Casey Schauflerc6739442013-05-22 18:42:56 -07002834 int rc = 0;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002835#if IS_ENABLED(CONFIG_IPV6)
2836 struct sockaddr_in6 *sip = (struct sockaddr_in6 *)sap;
2837#endif
2838#ifdef SMACK_IPV6_SECMARK_LABELING
2839 struct smack_known *rsp;
2840 struct socket_smack *ssp = sock->sk->sk_security;
2841#endif
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002842
Casey Schauflerc6739442013-05-22 18:42:56 -07002843 if (sock->sk == NULL)
2844 return 0;
2845
2846 switch (sock->sk->sk_family) {
2847 case PF_INET:
2848 if (addrlen < sizeof(struct sockaddr_in))
2849 return -EINVAL;
2850 rc = smack_netlabel_send(sock->sk, (struct sockaddr_in *)sap);
2851 break;
2852 case PF_INET6:
2853 if (addrlen < sizeof(struct sockaddr_in6))
2854 return -EINVAL;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002855#ifdef SMACK_IPV6_SECMARK_LABELING
2856 rsp = smack_ipv6host_label(sip);
2857 if (rsp != NULL)
2858 rc = smk_ipv6_check(ssp->smk_out, rsp, sip,
Casey Schaufler6ea06242013-08-05 13:21:22 -07002859 SMK_CONNECTING);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002860#endif
2861#ifdef SMACK_IPV6_PORT_LABELING
2862 rc = smk_ipv6_port_check(sock->sk, sip, SMK_CONNECTING);
2863#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07002864 break;
2865 }
2866 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002867}
2868
2869/**
2870 * smack_flags_to_may - convert S_ to MAY_ values
2871 * @flags: the S_ value
2872 *
2873 * Returns the equivalent MAY_ value
2874 */
2875static int smack_flags_to_may(int flags)
2876{
2877 int may = 0;
2878
2879 if (flags & S_IRUGO)
2880 may |= MAY_READ;
2881 if (flags & S_IWUGO)
2882 may |= MAY_WRITE;
2883 if (flags & S_IXUGO)
2884 may |= MAY_EXEC;
2885
2886 return may;
2887}
2888
2889/**
2890 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2891 * @msg: the object
2892 *
2893 * Returns 0
2894 */
2895static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2896{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002897 struct smack_known *skp = smk_of_current();
2898
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002899 msg->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002900 return 0;
2901}
2902
2903/**
2904 * smack_msg_msg_free_security - Clear the security blob for msg_msg
2905 * @msg: the object
2906 *
2907 * Clears the blob pointer
2908 */
2909static void smack_msg_msg_free_security(struct msg_msg *msg)
2910{
2911 msg->security = NULL;
2912}
2913
2914/**
2915 * smack_of_shm - the smack pointer for the shm
2916 * @shp: the object
2917 *
2918 * Returns a pointer to the smack value
2919 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002920static struct smack_known *smack_of_shm(struct shmid_kernel *shp)
Casey Schauflere114e472008-02-04 22:29:50 -08002921{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002922 return (struct smack_known *)shp->shm_perm.security;
Casey Schauflere114e472008-02-04 22:29:50 -08002923}
2924
2925/**
2926 * smack_shm_alloc_security - Set the security blob for shm
2927 * @shp: the object
2928 *
2929 * Returns 0
2930 */
2931static int smack_shm_alloc_security(struct shmid_kernel *shp)
2932{
2933 struct kern_ipc_perm *isp = &shp->shm_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002934 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002935
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002936 isp->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002937 return 0;
2938}
2939
2940/**
2941 * smack_shm_free_security - Clear the security blob for shm
2942 * @shp: the object
2943 *
2944 * Clears the blob pointer
2945 */
2946static void smack_shm_free_security(struct shmid_kernel *shp)
2947{
2948 struct kern_ipc_perm *isp = &shp->shm_perm;
2949
2950 isp->security = NULL;
2951}
2952
2953/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002954 * smk_curacc_shm : check if current has access on shm
2955 * @shp : the object
2956 * @access : access requested
2957 *
2958 * Returns 0 if current has the requested access, error code otherwise
2959 */
2960static int smk_curacc_shm(struct shmid_kernel *shp, int access)
2961{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002962 struct smack_known *ssp = smack_of_shm(shp);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002963 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002964 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002965
2966#ifdef CONFIG_AUDIT
2967 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
2968 ad.a.u.ipc_id = shp->shm_perm.id;
2969#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07002970 rc = smk_curacc(ssp, access, &ad);
2971 rc = smk_bu_current("shm", ssp, access, rc);
2972 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002973}
2974
2975/**
Casey Schauflere114e472008-02-04 22:29:50 -08002976 * smack_shm_associate - Smack access check for shm
2977 * @shp: the object
2978 * @shmflg: access requested
2979 *
2980 * Returns 0 if current has the requested access, error code otherwise
2981 */
2982static int smack_shm_associate(struct shmid_kernel *shp, int shmflg)
2983{
Casey Schauflere114e472008-02-04 22:29:50 -08002984 int may;
2985
2986 may = smack_flags_to_may(shmflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002987 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002988}
2989
2990/**
2991 * smack_shm_shmctl - Smack access check for shm
2992 * @shp: the object
2993 * @cmd: what it wants to do
2994 *
2995 * Returns 0 if current has the requested access, error code otherwise
2996 */
2997static int smack_shm_shmctl(struct shmid_kernel *shp, int cmd)
2998{
Casey Schauflere114e472008-02-04 22:29:50 -08002999 int may;
3000
3001 switch (cmd) {
3002 case IPC_STAT:
3003 case SHM_STAT:
3004 may = MAY_READ;
3005 break;
3006 case IPC_SET:
3007 case SHM_LOCK:
3008 case SHM_UNLOCK:
3009 case IPC_RMID:
3010 may = MAY_READWRITE;
3011 break;
3012 case IPC_INFO:
3013 case SHM_INFO:
3014 /*
3015 * System level information.
3016 */
3017 return 0;
3018 default:
3019 return -EINVAL;
3020 }
Etienne Bassetecfcc532009-04-08 20:40:06 +02003021 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003022}
3023
3024/**
3025 * smack_shm_shmat - Smack access for shmat
3026 * @shp: the object
3027 * @shmaddr: unused
3028 * @shmflg: access requested
3029 *
3030 * Returns 0 if current has the requested access, error code otherwise
3031 */
3032static int smack_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr,
3033 int shmflg)
3034{
Casey Schauflere114e472008-02-04 22:29:50 -08003035 int may;
3036
3037 may = smack_flags_to_may(shmflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003038 return smk_curacc_shm(shp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003039}
3040
3041/**
3042 * smack_of_sem - the smack pointer for the sem
3043 * @sma: the object
3044 *
3045 * Returns a pointer to the smack value
3046 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003047static struct smack_known *smack_of_sem(struct sem_array *sma)
Casey Schauflere114e472008-02-04 22:29:50 -08003048{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003049 return (struct smack_known *)sma->sem_perm.security;
Casey Schauflere114e472008-02-04 22:29:50 -08003050}
3051
3052/**
3053 * smack_sem_alloc_security - Set the security blob for sem
3054 * @sma: the object
3055 *
3056 * Returns 0
3057 */
3058static int smack_sem_alloc_security(struct sem_array *sma)
3059{
3060 struct kern_ipc_perm *isp = &sma->sem_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003061 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08003062
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003063 isp->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003064 return 0;
3065}
3066
3067/**
3068 * smack_sem_free_security - Clear the security blob for sem
3069 * @sma: the object
3070 *
3071 * Clears the blob pointer
3072 */
3073static void smack_sem_free_security(struct sem_array *sma)
3074{
3075 struct kern_ipc_perm *isp = &sma->sem_perm;
3076
3077 isp->security = NULL;
3078}
3079
3080/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02003081 * smk_curacc_sem : check if current has access on sem
3082 * @sma : the object
3083 * @access : access requested
3084 *
3085 * Returns 0 if current has the requested access, error code otherwise
3086 */
3087static int smk_curacc_sem(struct sem_array *sma, int access)
3088{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003089 struct smack_known *ssp = smack_of_sem(sma);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003090 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003091 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003092
3093#ifdef CONFIG_AUDIT
3094 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3095 ad.a.u.ipc_id = sma->sem_perm.id;
3096#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07003097 rc = smk_curacc(ssp, access, &ad);
3098 rc = smk_bu_current("sem", ssp, access, rc);
3099 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003100}
3101
3102/**
Casey Schauflere114e472008-02-04 22:29:50 -08003103 * smack_sem_associate - Smack access check for sem
3104 * @sma: the object
3105 * @semflg: access requested
3106 *
3107 * Returns 0 if current has the requested access, error code otherwise
3108 */
3109static int smack_sem_associate(struct sem_array *sma, int semflg)
3110{
Casey Schauflere114e472008-02-04 22:29:50 -08003111 int may;
3112
3113 may = smack_flags_to_may(semflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003114 return smk_curacc_sem(sma, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003115}
3116
3117/**
3118 * smack_sem_shmctl - Smack access check for sem
3119 * @sma: the object
3120 * @cmd: what it wants to do
3121 *
3122 * Returns 0 if current has the requested access, error code otherwise
3123 */
3124static int smack_sem_semctl(struct sem_array *sma, int cmd)
3125{
Casey Schauflere114e472008-02-04 22:29:50 -08003126 int may;
3127
3128 switch (cmd) {
3129 case GETPID:
3130 case GETNCNT:
3131 case GETZCNT:
3132 case GETVAL:
3133 case GETALL:
3134 case IPC_STAT:
3135 case SEM_STAT:
3136 may = MAY_READ;
3137 break;
3138 case SETVAL:
3139 case SETALL:
3140 case IPC_RMID:
3141 case IPC_SET:
3142 may = MAY_READWRITE;
3143 break;
3144 case IPC_INFO:
3145 case SEM_INFO:
3146 /*
3147 * System level information
3148 */
3149 return 0;
3150 default:
3151 return -EINVAL;
3152 }
3153
Etienne Bassetecfcc532009-04-08 20:40:06 +02003154 return smk_curacc_sem(sma, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003155}
3156
3157/**
3158 * smack_sem_semop - Smack checks of semaphore operations
3159 * @sma: the object
3160 * @sops: unused
3161 * @nsops: unused
3162 * @alter: unused
3163 *
3164 * Treated as read and write in all cases.
3165 *
3166 * Returns 0 if access is allowed, error code otherwise
3167 */
3168static int smack_sem_semop(struct sem_array *sma, struct sembuf *sops,
3169 unsigned nsops, int alter)
3170{
Etienne Bassetecfcc532009-04-08 20:40:06 +02003171 return smk_curacc_sem(sma, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08003172}
3173
3174/**
3175 * smack_msg_alloc_security - Set the security blob for msg
3176 * @msq: the object
3177 *
3178 * Returns 0
3179 */
3180static int smack_msg_queue_alloc_security(struct msg_queue *msq)
3181{
3182 struct kern_ipc_perm *kisp = &msq->q_perm;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003183 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08003184
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003185 kisp->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003186 return 0;
3187}
3188
3189/**
3190 * smack_msg_free_security - Clear the security blob for msg
3191 * @msq: the object
3192 *
3193 * Clears the blob pointer
3194 */
3195static void smack_msg_queue_free_security(struct msg_queue *msq)
3196{
3197 struct kern_ipc_perm *kisp = &msq->q_perm;
3198
3199 kisp->security = NULL;
3200}
3201
3202/**
3203 * smack_of_msq - the smack pointer for the msq
3204 * @msq: the object
3205 *
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003206 * Returns a pointer to the smack label entry
Casey Schauflere114e472008-02-04 22:29:50 -08003207 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003208static struct smack_known *smack_of_msq(struct msg_queue *msq)
Casey Schauflere114e472008-02-04 22:29:50 -08003209{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003210 return (struct smack_known *)msq->q_perm.security;
Casey Schauflere114e472008-02-04 22:29:50 -08003211}
3212
3213/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02003214 * smk_curacc_msq : helper to check if current has access on msq
3215 * @msq : the msq
3216 * @access : access requested
3217 *
3218 * return 0 if current has access, error otherwise
3219 */
3220static int smk_curacc_msq(struct msg_queue *msq, int access)
3221{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003222 struct smack_known *msp = smack_of_msq(msq);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003223 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003224 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003225
3226#ifdef CONFIG_AUDIT
3227 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3228 ad.a.u.ipc_id = msq->q_perm.id;
3229#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07003230 rc = smk_curacc(msp, access, &ad);
3231 rc = smk_bu_current("msq", msp, access, rc);
3232 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003233}
3234
3235/**
Casey Schauflere114e472008-02-04 22:29:50 -08003236 * smack_msg_queue_associate - Smack access check for msg_queue
3237 * @msq: the object
3238 * @msqflg: access requested
3239 *
3240 * Returns 0 if current has the requested access, error code otherwise
3241 */
3242static int smack_msg_queue_associate(struct msg_queue *msq, int msqflg)
3243{
Casey Schauflere114e472008-02-04 22:29:50 -08003244 int may;
3245
3246 may = smack_flags_to_may(msqflg);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003247 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003248}
3249
3250/**
3251 * smack_msg_queue_msgctl - Smack access check for msg_queue
3252 * @msq: the object
3253 * @cmd: what it wants to do
3254 *
3255 * Returns 0 if current has the requested access, error code otherwise
3256 */
3257static int smack_msg_queue_msgctl(struct msg_queue *msq, int cmd)
3258{
Casey Schauflere114e472008-02-04 22:29:50 -08003259 int may;
3260
3261 switch (cmd) {
3262 case IPC_STAT:
3263 case MSG_STAT:
3264 may = MAY_READ;
3265 break;
3266 case IPC_SET:
3267 case IPC_RMID:
3268 may = MAY_READWRITE;
3269 break;
3270 case IPC_INFO:
3271 case MSG_INFO:
3272 /*
3273 * System level information
3274 */
3275 return 0;
3276 default:
3277 return -EINVAL;
3278 }
3279
Etienne Bassetecfcc532009-04-08 20:40:06 +02003280 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003281}
3282
3283/**
3284 * smack_msg_queue_msgsnd - Smack access check for msg_queue
3285 * @msq: the object
3286 * @msg: unused
3287 * @msqflg: access requested
3288 *
3289 * Returns 0 if current has the requested access, error code otherwise
3290 */
3291static int smack_msg_queue_msgsnd(struct msg_queue *msq, struct msg_msg *msg,
3292 int msqflg)
3293{
Etienne Bassetecfcc532009-04-08 20:40:06 +02003294 int may;
Casey Schauflere114e472008-02-04 22:29:50 -08003295
Etienne Bassetecfcc532009-04-08 20:40:06 +02003296 may = smack_flags_to_may(msqflg);
3297 return smk_curacc_msq(msq, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003298}
3299
3300/**
3301 * smack_msg_queue_msgsnd - Smack access check for msg_queue
3302 * @msq: the object
3303 * @msg: unused
3304 * @target: unused
3305 * @type: unused
3306 * @mode: unused
3307 *
3308 * Returns 0 if current has read and write access, error code otherwise
3309 */
3310static int smack_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
3311 struct task_struct *target, long type, int mode)
3312{
Etienne Bassetecfcc532009-04-08 20:40:06 +02003313 return smk_curacc_msq(msq, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08003314}
3315
3316/**
3317 * smack_ipc_permission - Smack access for ipc_permission()
3318 * @ipp: the object permissions
3319 * @flag: access requested
3320 *
3321 * Returns 0 if current has read and write access, error code otherwise
3322 */
3323static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
3324{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003325 struct smack_known *iskp = ipp->security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003326 int may = smack_flags_to_may(flag);
3327 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003328 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003329
Etienne Bassetecfcc532009-04-08 20:40:06 +02003330#ifdef CONFIG_AUDIT
3331 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3332 ad.a.u.ipc_id = ipp->id;
3333#endif
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003334 rc = smk_curacc(iskp, may, &ad);
3335 rc = smk_bu_current("svipc", iskp, may, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003336 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003337}
3338
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003339/**
3340 * smack_ipc_getsecid - Extract smack security id
Randy Dunlap251a2a92009-02-18 11:42:33 -08003341 * @ipp: the object permissions
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003342 * @secid: where result will be saved
3343 */
3344static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
3345{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003346 struct smack_known *iskp = ipp->security;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003347
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003348 *secid = iskp->smk_secid;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003349}
3350
Casey Schauflere114e472008-02-04 22:29:50 -08003351/**
3352 * smack_d_instantiate - Make sure the blob is correct on an inode
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02003353 * @opt_dentry: dentry where inode will be attached
Casey Schauflere114e472008-02-04 22:29:50 -08003354 * @inode: the object
3355 *
3356 * Set the inode's security blob if it hasn't been done already.
3357 */
3358static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
3359{
3360 struct super_block *sbp;
3361 struct superblock_smack *sbsp;
3362 struct inode_smack *isp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003363 struct smack_known *skp;
3364 struct smack_known *ckp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003365 struct smack_known *final;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003366 char trattr[TRANS_TRUE_SIZE];
3367 int transflag = 0;
Casey Schaufler2267b132012-03-13 19:14:19 -07003368 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003369 struct dentry *dp;
3370
3371 if (inode == NULL)
3372 return;
3373
3374 isp = inode->i_security;
3375
3376 mutex_lock(&isp->smk_lock);
3377 /*
3378 * If the inode is already instantiated
3379 * take the quick way out
3380 */
3381 if (isp->smk_flags & SMK_INODE_INSTANT)
3382 goto unlockandout;
3383
3384 sbp = inode->i_sb;
3385 sbsp = sbp->s_security;
3386 /*
3387 * We're going to use the superblock default label
3388 * if there's no label on the file.
3389 */
3390 final = sbsp->smk_default;
3391
3392 /*
Casey Schauflere97dcb02008-06-02 10:04:32 -07003393 * If this is the root inode the superblock
3394 * may be in the process of initialization.
3395 * If that is the case use the root value out
3396 * of the superblock.
3397 */
3398 if (opt_dentry->d_parent == opt_dentry) {
Łukasz Stelmach1d8c2322014-12-16 16:53:08 +01003399 switch (sbp->s_magic) {
3400 case CGROUP_SUPER_MAGIC:
Casey Schaufler36ea7352014-04-28 15:23:01 -07003401 /*
3402 * The cgroup filesystem is never mounted,
3403 * so there's no opportunity to set the mount
3404 * options.
3405 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003406 sbsp->smk_root = &smack_known_star;
3407 sbsp->smk_default = &smack_known_star;
Łukasz Stelmach1d8c2322014-12-16 16:53:08 +01003408 isp->smk_inode = sbsp->smk_root;
3409 break;
3410 case TMPFS_MAGIC:
3411 /*
3412 * What about shmem/tmpfs anonymous files with dentry
3413 * obtained from d_alloc_pseudo()?
3414 */
3415 isp->smk_inode = smk_of_current();
3416 break;
Roman Kubiak8da4aba2015-10-05 12:27:16 +02003417 case PIPEFS_MAGIC:
3418 isp->smk_inode = smk_of_current();
3419 break;
Łukasz Stelmach1d8c2322014-12-16 16:53:08 +01003420 default:
3421 isp->smk_inode = sbsp->smk_root;
3422 break;
Casey Schaufler36ea7352014-04-28 15:23:01 -07003423 }
Casey Schauflere97dcb02008-06-02 10:04:32 -07003424 isp->smk_flags |= SMK_INODE_INSTANT;
3425 goto unlockandout;
3426 }
3427
3428 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003429 * This is pretty hackish.
3430 * Casey says that we shouldn't have to do
3431 * file system specific code, but it does help
3432 * with keeping it simple.
3433 */
3434 switch (sbp->s_magic) {
3435 case SMACK_MAGIC:
Casey Schaufler36ea7352014-04-28 15:23:01 -07003436 case PIPEFS_MAGIC:
3437 case SOCKFS_MAGIC:
3438 case CGROUP_SUPER_MAGIC:
Casey Schauflere114e472008-02-04 22:29:50 -08003439 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003440 * Casey says that it's a little embarrassing
Casey Schauflere114e472008-02-04 22:29:50 -08003441 * that the smack file system doesn't do
3442 * extended attributes.
Casey Schaufler36ea7352014-04-28 15:23:01 -07003443 *
Casey Schauflere114e472008-02-04 22:29:50 -08003444 * Casey says pipes are easy (?)
Casey Schaufler36ea7352014-04-28 15:23:01 -07003445 *
3446 * Socket access is controlled by the socket
3447 * structures associated with the task involved.
3448 *
3449 * Cgroupfs is special
Casey Schauflere114e472008-02-04 22:29:50 -08003450 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003451 final = &smack_known_star;
Casey Schauflere114e472008-02-04 22:29:50 -08003452 break;
3453 case DEVPTS_SUPER_MAGIC:
3454 /*
3455 * devpts seems content with the label of the task.
3456 * Programs that change smack have to treat the
3457 * pty with respect.
3458 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003459 final = ckp;
Casey Schauflere114e472008-02-04 22:29:50 -08003460 break;
Casey Schauflere114e472008-02-04 22:29:50 -08003461 case PROC_SUPER_MAGIC:
3462 /*
3463 * Casey says procfs appears not to care.
3464 * The superblock default suffices.
3465 */
3466 break;
3467 case TMPFS_MAGIC:
3468 /*
3469 * Device labels should come from the filesystem,
3470 * but watch out, because they're volitile,
3471 * getting recreated on every reboot.
3472 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003473 final = &smack_known_star;
Casey Schauflere114e472008-02-04 22:29:50 -08003474 /*
3475 * No break.
3476 *
3477 * If a smack value has been set we want to use it,
3478 * but since tmpfs isn't giving us the opportunity
3479 * to set mount options simulate setting the
3480 * superblock default.
3481 */
3482 default:
3483 /*
3484 * This isn't an understood special case.
3485 * Get the value from the xattr.
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003486 */
3487
3488 /*
3489 * UNIX domain sockets use lower level socket data.
3490 */
3491 if (S_ISSOCK(inode->i_mode)) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003492 final = &smack_known_star;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003493 break;
3494 }
3495 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003496 * No xattr support means, alas, no SMACK label.
3497 * Use the aforeapplied default.
3498 * It would be curious if the label of the task
3499 * does not match that assigned.
3500 */
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +02003501 if (!(inode->i_opflags & IOP_XATTR))
3502 break;
Casey Schauflere114e472008-02-04 22:29:50 -08003503 /*
3504 * Get the dentry for xattr.
3505 */
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02003506 dp = dget(opt_dentry);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003507 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003508 if (!IS_ERR_OR_NULL(skp))
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003509 final = skp;
Casey Schaufler2267b132012-03-13 19:14:19 -07003510
3511 /*
3512 * Transmuting directory
3513 */
3514 if (S_ISDIR(inode->i_mode)) {
3515 /*
3516 * If this is a new directory and the label was
3517 * transmuted when the inode was initialized
3518 * set the transmute attribute on the directory
3519 * and mark the inode.
3520 *
3521 * If there is a transmute attribute on the
3522 * directory mark the inode.
3523 */
3524 if (isp->smk_flags & SMK_INODE_CHANGED) {
3525 isp->smk_flags &= ~SMK_INODE_CHANGED;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +02003526 rc = __vfs_setxattr(dp, inode,
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003527 XATTR_NAME_SMACKTRANSMUTE,
Casey Schaufler2267b132012-03-13 19:14:19 -07003528 TRANS_TRUE, TRANS_TRUE_SIZE,
3529 0);
3530 } else {
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +02003531 rc = __vfs_getxattr(dp, inode,
Casey Schaufler2267b132012-03-13 19:14:19 -07003532 XATTR_NAME_SMACKTRANSMUTE, trattr,
3533 TRANS_TRUE_SIZE);
3534 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
3535 TRANS_TRUE_SIZE) != 0)
3536 rc = -EINVAL;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003537 }
Casey Schaufler2267b132012-03-13 19:14:19 -07003538 if (rc >= 0)
3539 transflag = SMK_INODE_TRANSMUTE;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003540 }
Seth Forshee809c02e2016-04-26 14:36:22 -05003541 /*
3542 * Don't let the exec or mmap label be "*" or "@".
3543 */
3544 skp = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
3545 if (IS_ERR(skp) || skp == &smack_known_star ||
3546 skp == &smack_known_web)
3547 skp = NULL;
3548 isp->smk_task = skp;
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003549
Casey Schaufler19760ad2013-12-16 16:27:26 -08003550 skp = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003551 if (IS_ERR(skp) || skp == &smack_known_star ||
3552 skp == &smack_known_web)
Casey Schaufler19760ad2013-12-16 16:27:26 -08003553 skp = NULL;
3554 isp->smk_mmap = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08003555
Casey Schauflere114e472008-02-04 22:29:50 -08003556 dput(dp);
3557 break;
3558 }
3559
3560 if (final == NULL)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003561 isp->smk_inode = ckp;
Casey Schauflere114e472008-02-04 22:29:50 -08003562 else
3563 isp->smk_inode = final;
3564
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003565 isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
Casey Schauflere114e472008-02-04 22:29:50 -08003566
3567unlockandout:
3568 mutex_unlock(&isp->smk_lock);
3569 return;
3570}
3571
3572/**
3573 * smack_getprocattr - Smack process attribute access
3574 * @p: the object task
3575 * @name: the name of the attribute in /proc/.../attr
3576 * @value: where to put the result
3577 *
3578 * Places a copy of the task Smack into value
3579 *
3580 * Returns the length of the smack label or an error code
3581 */
3582static int smack_getprocattr(struct task_struct *p, char *name, char **value)
3583{
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +03003584 struct smack_known *skp = smk_of_task_struct(p);
Casey Schauflere114e472008-02-04 22:29:50 -08003585 char *cp;
3586 int slen;
3587
3588 if (strcmp(name, "current") != 0)
3589 return -EINVAL;
3590
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003591 cp = kstrdup(skp->smk_known, GFP_KERNEL);
Casey Schauflere114e472008-02-04 22:29:50 -08003592 if (cp == NULL)
3593 return -ENOMEM;
3594
3595 slen = strlen(cp);
3596 *value = cp;
3597 return slen;
3598}
3599
3600/**
3601 * smack_setprocattr - Smack process attribute setting
3602 * @p: the object task
3603 * @name: the name of the attribute in /proc/.../attr
3604 * @value: the value to set
3605 * @size: the size of the value
3606 *
3607 * Sets the Smack value of the task. Only setting self
3608 * is permitted and only with privilege
3609 *
3610 * Returns the length of the smack label or an error code
3611 */
3612static int smack_setprocattr(struct task_struct *p, char *name,
3613 void *value, size_t size)
3614{
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003615 struct task_smack *tsp = current_security();
David Howellsd84f4f92008-11-14 10:39:23 +11003616 struct cred *new;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003617 struct smack_known *skp;
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003618 struct smack_known_list_elem *sklep;
3619 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003620
Casey Schauflere114e472008-02-04 22:29:50 -08003621 /*
3622 * Changing another process' Smack value is too dangerous
3623 * and supports no sane use case.
3624 */
3625 if (p != current)
3626 return -EPERM;
3627
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003628 if (!smack_privileged(CAP_MAC_ADMIN) && list_empty(&tsp->smk_relabel))
David Howells5cd9c582008-08-14 11:37:28 +01003629 return -EPERM;
3630
Casey Schauflerf7112e62012-05-06 15:22:02 -07003631 if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
Casey Schauflere114e472008-02-04 22:29:50 -08003632 return -EINVAL;
3633
3634 if (strcmp(name, "current") != 0)
3635 return -EINVAL;
3636
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003637 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003638 if (IS_ERR(skp))
3639 return PTR_ERR(skp);
Casey Schauflere114e472008-02-04 22:29:50 -08003640
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003641 /*
3642 * No process is ever allowed the web ("@") label.
3643 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003644 if (skp == &smack_known_web)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003645 return -EPERM;
3646
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003647 if (!smack_privileged(CAP_MAC_ADMIN)) {
3648 rc = -EPERM;
3649 list_for_each_entry(sklep, &tsp->smk_relabel, list)
3650 if (sklep->smk_label == skp) {
3651 rc = 0;
3652 break;
3653 }
3654 if (rc)
3655 return rc;
3656 }
3657
David Howellsd84f4f92008-11-14 10:39:23 +11003658 new = prepare_creds();
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003659 if (new == NULL)
David Howellsd84f4f92008-11-14 10:39:23 +11003660 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003661
Casey Schaufler46a2f3b2012-08-22 11:44:03 -07003662 tsp = new->security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003663 tsp->smk_task = skp;
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003664 /*
3665 * process can change its label only once
3666 */
3667 smk_destroy_label_list(&tsp->smk_relabel);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003668
David Howellsd84f4f92008-11-14 10:39:23 +11003669 commit_creds(new);
Casey Schauflere114e472008-02-04 22:29:50 -08003670 return size;
3671}
3672
3673/**
3674 * smack_unix_stream_connect - Smack access on UDS
David S. Miller3610cda2011-01-05 15:38:53 -08003675 * @sock: one sock
3676 * @other: the other sock
Casey Schauflere114e472008-02-04 22:29:50 -08003677 * @newsk: unused
3678 *
3679 * Return 0 if a subject with the smack of sock could access
3680 * an object with the smack of other, otherwise an error code
3681 */
David S. Miller3610cda2011-01-05 15:38:53 -08003682static int smack_unix_stream_connect(struct sock *sock,
3683 struct sock *other, struct sock *newsk)
Casey Schauflere114e472008-02-04 22:29:50 -08003684{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003685 struct smack_known *skp;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003686 struct smack_known *okp;
James Morrisd2e7ad12011-01-10 09:46:24 +11003687 struct socket_smack *ssp = sock->sk_security;
3688 struct socket_smack *osp = other->sk_security;
Casey Schaufler975d5e52011-09-26 14:43:39 -07003689 struct socket_smack *nsp = newsk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003690 struct smk_audit_info ad;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003691 int rc = 0;
Kees Cook923e9a12012-04-10 13:26:44 -07003692#ifdef CONFIG_AUDIT
3693 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003694#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003695
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003696 if (!smack_privileged(CAP_MAC_OVERRIDE)) {
3697 skp = ssp->smk_out;
Zbigniew Jasinski96be7b52014-12-29 15:34:58 +01003698 okp = osp->smk_in;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003699#ifdef CONFIG_AUDIT
3700 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3701 smk_ad_setfield_u_net_sk(&ad, other);
3702#endif
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003703 rc = smk_access(skp, okp, MAY_WRITE, &ad);
3704 rc = smk_bu_note("UDS connect", skp, okp, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003705 if (rc == 0) {
Zbigniew Jasinski96be7b52014-12-29 15:34:58 +01003706 okp = osp->smk_out;
3707 skp = ssp->smk_in;
Rafal Krypa138a8682015-01-08 18:52:45 +01003708 rc = smk_access(okp, skp, MAY_WRITE, &ad);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003709 rc = smk_bu_note("UDS connect", okp, skp,
Casey Schauflerd166c802014-08-27 14:51:27 -07003710 MAY_WRITE, rc);
3711 }
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003712 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003713
Casey Schaufler975d5e52011-09-26 14:43:39 -07003714 /*
3715 * Cross reference the peer labels for SO_PEERSEC.
3716 */
3717 if (rc == 0) {
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003718 nsp->smk_packet = ssp->smk_out;
3719 ssp->smk_packet = osp->smk_out;
Casey Schaufler975d5e52011-09-26 14:43:39 -07003720 }
3721
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003722 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003723}
3724
3725/**
3726 * smack_unix_may_send - Smack access on UDS
3727 * @sock: one socket
3728 * @other: the other socket
3729 *
3730 * Return 0 if a subject with the smack of sock could access
3731 * an object with the smack of other, otherwise an error code
3732 */
3733static int smack_unix_may_send(struct socket *sock, struct socket *other)
3734{
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003735 struct socket_smack *ssp = sock->sk->sk_security;
3736 struct socket_smack *osp = other->sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003737 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003738 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003739
Kees Cook923e9a12012-04-10 13:26:44 -07003740#ifdef CONFIG_AUDIT
3741 struct lsm_network_audit net;
3742
Eric Paris48c62af2012-04-02 13:15:44 -04003743 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003744 smk_ad_setfield_u_net_sk(&ad, other->sk);
Kees Cook923e9a12012-04-10 13:26:44 -07003745#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003746
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003747 if (smack_privileged(CAP_MAC_OVERRIDE))
3748 return 0;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003749
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003750 rc = smk_access(ssp->smk_out, osp->smk_in, MAY_WRITE, &ad);
3751 rc = smk_bu_note("UDS send", ssp->smk_out, osp->smk_in, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003752 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003753}
3754
3755/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003756 * smack_socket_sendmsg - Smack check based on destination host
3757 * @sock: the socket
Randy Dunlap251a2a92009-02-18 11:42:33 -08003758 * @msg: the message
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003759 * @size: the size of the message
3760 *
Casey Schauflerc6739442013-05-22 18:42:56 -07003761 * Return 0 if the current subject can write to the destination host.
3762 * For IPv4 this is only a question if the destination is a single label host.
3763 * For IPv6 this is a check against the label of the port.
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003764 */
3765static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3766 int size)
3767{
3768 struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003769#if IS_ENABLED(CONFIG_IPV6)
Casey Schaufler6ea06242013-08-05 13:21:22 -07003770 struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003771#endif
3772#ifdef SMACK_IPV6_SECMARK_LABELING
3773 struct socket_smack *ssp = sock->sk->sk_security;
3774 struct smack_known *rsp;
3775#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003776 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003777
3778 /*
3779 * Perfectly reasonable for this to be NULL
3780 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003781 if (sip == NULL)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003782 return 0;
3783
Roman Kubiak81bd0d52015-12-17 13:24:35 +01003784 switch (sock->sk->sk_family) {
Casey Schauflerc6739442013-05-22 18:42:56 -07003785 case AF_INET:
3786 rc = smack_netlabel_send(sock->sk, sip);
3787 break;
3788 case AF_INET6:
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003789#ifdef SMACK_IPV6_SECMARK_LABELING
3790 rsp = smack_ipv6host_label(sap);
3791 if (rsp != NULL)
3792 rc = smk_ipv6_check(ssp->smk_out, rsp, sap,
3793 SMK_CONNECTING);
3794#endif
3795#ifdef SMACK_IPV6_PORT_LABELING
Casey Schauflerc6739442013-05-22 18:42:56 -07003796 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003797#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003798 break;
3799 }
3800 return rc;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003801}
3802
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003803/**
Randy Dunlap251a2a92009-02-18 11:42:33 -08003804 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
Casey Schauflere114e472008-02-04 22:29:50 -08003805 * @sap: netlabel secattr
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003806 * @ssp: socket security information
Casey Schauflere114e472008-02-04 22:29:50 -08003807 *
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003808 * Returns a pointer to a Smack label entry found on the label list.
Casey Schauflere114e472008-02-04 22:29:50 -08003809 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003810static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3811 struct socket_smack *ssp)
Casey Schauflere114e472008-02-04 22:29:50 -08003812{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003813 struct smack_known *skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003814 int found = 0;
Casey Schaufler677264e2013-06-28 13:47:07 -07003815 int acat;
3816 int kcat;
Casey Schauflere114e472008-02-04 22:29:50 -08003817
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003818 if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08003819 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003820 * Looks like a CIPSO packet.
Casey Schauflere114e472008-02-04 22:29:50 -08003821 * If there are flags but no level netlabel isn't
3822 * behaving the way we expect it to.
3823 *
Casey Schauflerf7112e62012-05-06 15:22:02 -07003824 * Look it up in the label table
Casey Schauflere114e472008-02-04 22:29:50 -08003825 * Without guidance regarding the smack value
3826 * for the packet fall back on the network
3827 * ambient value.
3828 */
Casey Schauflerf7112e62012-05-06 15:22:02 -07003829 rcu_read_lock();
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003830 list_for_each_entry(skp, &smack_known_list, list) {
3831 if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
Casey Schauflerf7112e62012-05-06 15:22:02 -07003832 continue;
Casey Schaufler677264e2013-06-28 13:47:07 -07003833 /*
3834 * Compare the catsets. Use the netlbl APIs.
3835 */
3836 if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3837 if ((skp->smk_netlabel.flags &
3838 NETLBL_SECATTR_MLS_CAT) == 0)
3839 found = 1;
3840 break;
3841 }
3842 for (acat = -1, kcat = -1; acat == kcat; ) {
Paul Moore4fbe63d2014-08-01 11:17:37 -04003843 acat = netlbl_catmap_walk(sap->attr.mls.cat,
3844 acat + 1);
3845 kcat = netlbl_catmap_walk(
Casey Schaufler677264e2013-06-28 13:47:07 -07003846 skp->smk_netlabel.attr.mls.cat,
3847 kcat + 1);
3848 if (acat < 0 || kcat < 0)
3849 break;
3850 }
3851 if (acat == kcat) {
3852 found = 1;
3853 break;
3854 }
Casey Schauflere114e472008-02-04 22:29:50 -08003855 }
Casey Schauflerf7112e62012-05-06 15:22:02 -07003856 rcu_read_unlock();
3857
3858 if (found)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003859 return skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003860
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003861 if (ssp != NULL && ssp->smk_in == &smack_known_star)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003862 return &smack_known_web;
3863 return &smack_known_star;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003864 }
3865 if ((sap->flags & NETLBL_SECATTR_SECID) != 0) {
3866 /*
3867 * Looks like a fallback, which gives us a secid.
3868 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003869 skp = smack_from_secid(sap->attr.secid);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003870 /*
3871 * This has got to be a bug because it is
3872 * impossible to specify a fallback without
3873 * specifying the label, which will ensure
3874 * it has a secid, and the only way to get a
3875 * secid is from a fallback.
3876 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003877 BUG_ON(skp == NULL);
3878 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -08003879 }
3880 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003881 * Without guidance regarding the smack value
3882 * for the packet fall back on the network
3883 * ambient value.
Casey Schauflere114e472008-02-04 22:29:50 -08003884 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003885 return smack_net_ambient;
Casey Schauflere114e472008-02-04 22:29:50 -08003886}
3887
Casey Schaufler69f287a2014-12-12 17:08:40 -08003888#if IS_ENABLED(CONFIG_IPV6)
Casey Schaufler6ea06242013-08-05 13:21:22 -07003889static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
Casey Schauflerc6739442013-05-22 18:42:56 -07003890{
Casey Schauflerc6739442013-05-22 18:42:56 -07003891 u8 nexthdr;
3892 int offset;
3893 int proto = -EINVAL;
3894 struct ipv6hdr _ipv6h;
3895 struct ipv6hdr *ip6;
3896 __be16 frag_off;
3897 struct tcphdr _tcph, *th;
3898 struct udphdr _udph, *uh;
3899 struct dccp_hdr _dccph, *dh;
3900
3901 sip->sin6_port = 0;
3902
3903 offset = skb_network_offset(skb);
3904 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3905 if (ip6 == NULL)
3906 return -EINVAL;
3907 sip->sin6_addr = ip6->saddr;
3908
3909 nexthdr = ip6->nexthdr;
3910 offset += sizeof(_ipv6h);
3911 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3912 if (offset < 0)
3913 return -EINVAL;
3914
3915 proto = nexthdr;
3916 switch (proto) {
3917 case IPPROTO_TCP:
3918 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3919 if (th != NULL)
3920 sip->sin6_port = th->source;
3921 break;
3922 case IPPROTO_UDP:
3923 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3924 if (uh != NULL)
3925 sip->sin6_port = uh->source;
3926 break;
3927 case IPPROTO_DCCP:
3928 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3929 if (dh != NULL)
3930 sip->sin6_port = dh->dccph_sport;
3931 break;
3932 }
3933 return proto;
3934}
Casey Schaufler69f287a2014-12-12 17:08:40 -08003935#endif /* CONFIG_IPV6 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003936
Casey Schauflere114e472008-02-04 22:29:50 -08003937/**
3938 * smack_socket_sock_rcv_skb - Smack packet delivery access check
3939 * @sk: socket
3940 * @skb: packet
3941 *
3942 * Returns 0 if the packet should be delivered, an error code otherwise
3943 */
3944static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3945{
3946 struct netlbl_lsm_secattr secattr;
3947 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003948 struct smack_known *skp = NULL;
Casey Schauflerc6739442013-05-22 18:42:56 -07003949 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003950 struct smk_audit_info ad;
Piotr Sawickia64fa272018-07-19 11:42:58 +02003951 u16 family = sk->sk_family;
Kees Cook923e9a12012-04-10 13:26:44 -07003952#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003953 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003954#endif
Casey Schaufler69f287a2014-12-12 17:08:40 -08003955#if IS_ENABLED(CONFIG_IPV6)
3956 struct sockaddr_in6 sadd;
3957 int proto;
Piotr Sawickia64fa272018-07-19 11:42:58 +02003958
3959 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
3960 family = PF_INET;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003961#endif /* CONFIG_IPV6 */
3962
Piotr Sawickia64fa272018-07-19 11:42:58 +02003963 switch (family) {
Casey Schauflerc6739442013-05-22 18:42:56 -07003964 case PF_INET:
Casey Schaufler69f287a2014-12-12 17:08:40 -08003965#ifdef CONFIG_SECURITY_SMACK_NETFILTER
3966 /*
3967 * If there is a secmark use it rather than the CIPSO label.
3968 * If there is no secmark fall back to CIPSO.
3969 * The secmark is assumed to reflect policy better.
3970 */
3971 if (skb && skb->secmark != 0) {
3972 skp = smack_from_secid(skb->secmark);
3973 goto access_check;
3974 }
3975#endif /* CONFIG_SECURITY_SMACK_NETFILTER */
Casey Schauflerc6739442013-05-22 18:42:56 -07003976 /*
3977 * Translate what netlabel gave us.
3978 */
3979 netlbl_secattr_init(&secattr);
Casey Schauflere114e472008-02-04 22:29:50 -08003980
Piotr Sawickia64fa272018-07-19 11:42:58 +02003981 rc = netlbl_skbuff_getattr(skb, family, &secattr);
Casey Schauflerc6739442013-05-22 18:42:56 -07003982 if (rc == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003983 skp = smack_from_secattr(&secattr, ssp);
Casey Schauflerc6739442013-05-22 18:42:56 -07003984 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003985 skp = smack_net_ambient;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003986
Casey Schauflerc6739442013-05-22 18:42:56 -07003987 netlbl_secattr_destroy(&secattr);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003988
Casey Schaufler69f287a2014-12-12 17:08:40 -08003989#ifdef CONFIG_SECURITY_SMACK_NETFILTER
3990access_check:
3991#endif
Etienne Bassetecfcc532009-04-08 20:40:06 +02003992#ifdef CONFIG_AUDIT
Casey Schauflerc6739442013-05-22 18:42:56 -07003993 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Piotr Sawickia64fa272018-07-19 11:42:58 +02003994 ad.a.u.net->family = family;
Casey Schauflerc6739442013-05-22 18:42:56 -07003995 ad.a.u.net->netif = skb->skb_iif;
3996 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003997#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003998 /*
3999 * Receiving a packet requires that the other end
4000 * be able to write here. Read access is not required.
4001 * This is the simplist possible security model
4002 * for networking.
4003 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004004 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4005 rc = smk_bu_note("IPv4 delivery", skp, ssp->smk_in,
Casey Schauflerd166c802014-08-27 14:51:27 -07004006 MAY_WRITE, rc);
Casey Schauflerc6739442013-05-22 18:42:56 -07004007 if (rc != 0)
Piotr Sawickia64fa272018-07-19 11:42:58 +02004008 netlbl_skbuff_err(skb, family, rc, 0);
Casey Schauflerc6739442013-05-22 18:42:56 -07004009 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004010#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerc6739442013-05-22 18:42:56 -07004011 case PF_INET6:
Casey Schaufler69f287a2014-12-12 17:08:40 -08004012 proto = smk_skb_to_addr_ipv6(skb, &sadd);
4013 if (proto != IPPROTO_UDP && proto != IPPROTO_TCP)
4014 break;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004015#ifdef SMACK_IPV6_SECMARK_LABELING
Casey Schaufler69f287a2014-12-12 17:08:40 -08004016 if (skb && skb->secmark != 0)
4017 skp = smack_from_secid(skb->secmark);
Casey Schauflerc6739442013-05-22 18:42:56 -07004018 else
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004019 skp = smack_ipv6host_label(&sadd);
4020 if (skp == NULL)
Casey Schaufler69f287a2014-12-12 17:08:40 -08004021 skp = smack_net_ambient;
Jia-Ju Bai5f0b9f02019-07-23 18:00:15 +08004022 if (skb == NULL)
4023 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004024#ifdef CONFIG_AUDIT
4025 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Piotr Sawickia64fa272018-07-19 11:42:58 +02004026 ad.a.u.net->family = family;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004027 ad.a.u.net->netif = skb->skb_iif;
4028 ipv6_skb_to_auditdata(skb, &ad.a, NULL);
4029#endif /* CONFIG_AUDIT */
4030 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4031 rc = smk_bu_note("IPv6 delivery", skp, ssp->smk_in,
4032 MAY_WRITE, rc);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004033#endif /* SMACK_IPV6_SECMARK_LABELING */
4034#ifdef SMACK_IPV6_PORT_LABELING
Casey Schaufler69f287a2014-12-12 17:08:40 -08004035 rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004036#endif /* SMACK_IPV6_PORT_LABELING */
Casey Schauflerc6739442013-05-22 18:42:56 -07004037 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004038#endif /* CONFIG_IPV6 */
Casey Schauflerc6739442013-05-22 18:42:56 -07004039 }
Casey Schaufler69f287a2014-12-12 17:08:40 -08004040
Paul Moorea8134292008-10-10 10:16:31 -04004041 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08004042}
4043
4044/**
4045 * smack_socket_getpeersec_stream - pull in packet label
4046 * @sock: the socket
4047 * @optval: user's destination
4048 * @optlen: size thereof
Randy Dunlap251a2a92009-02-18 11:42:33 -08004049 * @len: max thereof
Casey Schauflere114e472008-02-04 22:29:50 -08004050 *
4051 * returns zero on success, an error code otherwise
4052 */
4053static int smack_socket_getpeersec_stream(struct socket *sock,
4054 char __user *optval,
4055 int __user *optlen, unsigned len)
4056{
4057 struct socket_smack *ssp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004058 char *rcp = "";
4059 int slen = 1;
Casey Schauflere114e472008-02-04 22:29:50 -08004060 int rc = 0;
4061
4062 ssp = sock->sk->sk_security;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004063 if (ssp->smk_packet != NULL) {
Casey Schaufler54e70ec2014-04-10 16:37:08 -07004064 rcp = ssp->smk_packet->smk_known;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004065 slen = strlen(rcp) + 1;
4066 }
Casey Schauflere114e472008-02-04 22:29:50 -08004067
4068 if (slen > len)
4069 rc = -ERANGE;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004070 else if (copy_to_user(optval, rcp, slen) != 0)
Casey Schauflere114e472008-02-04 22:29:50 -08004071 rc = -EFAULT;
4072
4073 if (put_user(slen, optlen) != 0)
4074 rc = -EFAULT;
4075
4076 return rc;
4077}
4078
4079
4080/**
4081 * smack_socket_getpeersec_dgram - pull in packet label
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004082 * @sock: the peer socket
Casey Schauflere114e472008-02-04 22:29:50 -08004083 * @skb: packet data
4084 * @secid: pointer to where to put the secid of the packet
4085 *
4086 * Sets the netlabel socket state on sk from parent
4087 */
4088static int smack_socket_getpeersec_dgram(struct socket *sock,
4089 struct sk_buff *skb, u32 *secid)
4090
4091{
4092 struct netlbl_lsm_secattr secattr;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004093 struct socket_smack *ssp = NULL;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004094 struct smack_known *skp;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004095 int family = PF_UNSPEC;
4096 u32 s = 0; /* 0 is the invalid secid */
Casey Schauflere114e472008-02-04 22:29:50 -08004097 int rc;
4098
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004099 if (skb != NULL) {
4100 if (skb->protocol == htons(ETH_P_IP))
4101 family = PF_INET;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004102#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004103 else if (skb->protocol == htons(ETH_P_IPV6))
4104 family = PF_INET6;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004105#endif /* CONFIG_IPV6 */
Casey Schauflere114e472008-02-04 22:29:50 -08004106 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004107 if (family == PF_UNSPEC && sock != NULL)
4108 family = sock->sk->sk_family;
Casey Schauflere114e472008-02-04 22:29:50 -08004109
Casey Schaufler69f287a2014-12-12 17:08:40 -08004110 switch (family) {
4111 case PF_UNIX:
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004112 ssp = sock->sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004113 s = ssp->smk_out->smk_secid;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004114 break;
4115 case PF_INET:
4116#ifdef CONFIG_SECURITY_SMACK_NETFILTER
4117 s = skb->secmark;
4118 if (s != 0)
4119 break;
4120#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004121 /*
4122 * Translate what netlabel gave us.
4123 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004124 if (sock != NULL && sock->sk != NULL)
4125 ssp = sock->sk->sk_security;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004126 netlbl_secattr_init(&secattr);
4127 rc = netlbl_skbuff_getattr(skb, family, &secattr);
4128 if (rc == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004129 skp = smack_from_secattr(&secattr, ssp);
4130 s = skp->smk_secid;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004131 }
4132 netlbl_secattr_destroy(&secattr);
Casey Schaufler69f287a2014-12-12 17:08:40 -08004133 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004134 case PF_INET6:
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004135#ifdef SMACK_IPV6_SECMARK_LABELING
Casey Schaufler69f287a2014-12-12 17:08:40 -08004136 s = skb->secmark;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004137#endif
Casey Schaufler69f287a2014-12-12 17:08:40 -08004138 break;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004139 }
4140 *secid = s;
Casey Schauflere114e472008-02-04 22:29:50 -08004141 if (s == 0)
4142 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08004143 return 0;
4144}
4145
4146/**
Paul Moore07feee82009-03-27 17:10:54 -04004147 * smack_sock_graft - Initialize a newly created socket with an existing sock
4148 * @sk: child sock
4149 * @parent: parent socket
Casey Schauflere114e472008-02-04 22:29:50 -08004150 *
Paul Moore07feee82009-03-27 17:10:54 -04004151 * Set the smk_{in,out} state of an existing sock based on the process that
4152 * is creating the new socket.
Casey Schauflere114e472008-02-04 22:29:50 -08004153 */
4154static void smack_sock_graft(struct sock *sk, struct socket *parent)
4155{
4156 struct socket_smack *ssp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004157 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08004158
Paul Moore07feee82009-03-27 17:10:54 -04004159 if (sk == NULL ||
4160 (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
Casey Schauflere114e472008-02-04 22:29:50 -08004161 return;
4162
4163 ssp = sk->sk_security;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07004164 ssp->smk_in = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004165 ssp->smk_out = skp;
Paul Moore07feee82009-03-27 17:10:54 -04004166 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
Casey Schauflere114e472008-02-04 22:29:50 -08004167}
4168
4169/**
4170 * smack_inet_conn_request - Smack access check on connect
4171 * @sk: socket involved
4172 * @skb: packet
4173 * @req: unused
4174 *
4175 * Returns 0 if a task with the packet label could write to
4176 * the socket, otherwise an error code
4177 */
4178static int smack_inet_conn_request(struct sock *sk, struct sk_buff *skb,
4179 struct request_sock *req)
4180{
Paul Moore07feee82009-03-27 17:10:54 -04004181 u16 family = sk->sk_family;
Casey Schauflerf7112e62012-05-06 15:22:02 -07004182 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08004183 struct socket_smack *ssp = sk->sk_security;
Paul Moore07feee82009-03-27 17:10:54 -04004184 struct netlbl_lsm_secattr secattr;
4185 struct sockaddr_in addr;
4186 struct iphdr *hdr;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004187 struct smack_known *hskp;
Casey Schauflere114e472008-02-04 22:29:50 -08004188 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004189 struct smk_audit_info ad;
Kees Cook923e9a12012-04-10 13:26:44 -07004190#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04004191 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07004192#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004193
Casey Schaufler69f287a2014-12-12 17:08:40 -08004194#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerc6739442013-05-22 18:42:56 -07004195 if (family == PF_INET6) {
4196 /*
4197 * Handle mapped IPv4 packets arriving
4198 * via IPv6 sockets. Don't set up netlabel
4199 * processing on IPv6.
4200 */
4201 if (skb->protocol == htons(ETH_P_IP))
4202 family = PF_INET;
4203 else
4204 return 0;
4205 }
Casey Schaufler69f287a2014-12-12 17:08:40 -08004206#endif /* CONFIG_IPV6 */
Casey Schauflere114e472008-02-04 22:29:50 -08004207
Casey Schaufler7f368ad2015-02-11 12:52:32 -08004208#ifdef CONFIG_SECURITY_SMACK_NETFILTER
4209 /*
4210 * If there is a secmark use it rather than the CIPSO label.
4211 * If there is no secmark fall back to CIPSO.
4212 * The secmark is assumed to reflect policy better.
4213 */
4214 if (skb && skb->secmark != 0) {
4215 skp = smack_from_secid(skb->secmark);
4216 goto access_check;
4217 }
4218#endif /* CONFIG_SECURITY_SMACK_NETFILTER */
4219
Paul Moore07feee82009-03-27 17:10:54 -04004220 netlbl_secattr_init(&secattr);
4221 rc = netlbl_skbuff_getattr(skb, family, &secattr);
Casey Schauflere114e472008-02-04 22:29:50 -08004222 if (rc == 0)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004223 skp = smack_from_secattr(&secattr, ssp);
Casey Schauflere114e472008-02-04 22:29:50 -08004224 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004225 skp = &smack_known_huh;
Paul Moore07feee82009-03-27 17:10:54 -04004226 netlbl_secattr_destroy(&secattr);
4227
Casey Schaufler7f368ad2015-02-11 12:52:32 -08004228#ifdef CONFIG_SECURITY_SMACK_NETFILTER
4229access_check:
4230#endif
4231
Etienne Bassetecfcc532009-04-08 20:40:06 +02004232#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04004233 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
4234 ad.a.u.net->family = family;
4235 ad.a.u.net->netif = skb->skb_iif;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004236 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
4237#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004238 /*
Paul Moore07feee82009-03-27 17:10:54 -04004239 * Receiving a packet requires that the other end be able to write
4240 * here. Read access is not required.
Casey Schauflere114e472008-02-04 22:29:50 -08004241 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004242 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4243 rc = smk_bu_note("IPv4 connect", skp, ssp->smk_in, MAY_WRITE, rc);
Paul Moore07feee82009-03-27 17:10:54 -04004244 if (rc != 0)
4245 return rc;
4246
4247 /*
4248 * Save the peer's label in the request_sock so we can later setup
4249 * smk_packet in the child socket so that SO_PEERCRED can report it.
4250 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004251 req->peer_secid = skp->smk_secid;
Paul Moore07feee82009-03-27 17:10:54 -04004252
4253 /*
4254 * We need to decide if we want to label the incoming connection here
4255 * if we do we only need to label the request_sock and the stack will
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004256 * propagate the wire-label to the sock when it is created.
Paul Moore07feee82009-03-27 17:10:54 -04004257 */
4258 hdr = ip_hdr(skb);
4259 addr.sin_addr.s_addr = hdr->saddr;
4260 rcu_read_lock();
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004261 hskp = smack_ipv4host_label(&addr);
Casey Schauflerf7112e62012-05-06 15:22:02 -07004262 rcu_read_unlock();
4263
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004264 if (hskp == NULL)
Casey Schauflerf7112e62012-05-06 15:22:02 -07004265 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004266 else
Paul Moore07feee82009-03-27 17:10:54 -04004267 netlbl_req_delattr(req);
Casey Schauflere114e472008-02-04 22:29:50 -08004268
4269 return rc;
4270}
4271
Paul Moore07feee82009-03-27 17:10:54 -04004272/**
4273 * smack_inet_csk_clone - Copy the connection information to the new socket
4274 * @sk: the new socket
4275 * @req: the connection's request_sock
4276 *
4277 * Transfer the connection's peer label to the newly created socket.
4278 */
4279static void smack_inet_csk_clone(struct sock *sk,
4280 const struct request_sock *req)
4281{
4282 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004283 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04004284
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004285 if (req->peer_secid != 0) {
4286 skp = smack_from_secid(req->peer_secid);
Casey Schaufler54e70ec2014-04-10 16:37:08 -07004287 ssp->smk_packet = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004288 } else
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004289 ssp->smk_packet = NULL;
Paul Moore07feee82009-03-27 17:10:54 -04004290}
4291
Casey Schauflere114e472008-02-04 22:29:50 -08004292/*
4293 * Key management security hooks
4294 *
4295 * Casey has not tested key support very heavily.
4296 * The permission check is most likely too restrictive.
4297 * If you care about keys please have a look.
4298 */
4299#ifdef CONFIG_KEYS
4300
4301/**
4302 * smack_key_alloc - Set the key security blob
4303 * @key: object
David Howellsd84f4f92008-11-14 10:39:23 +11004304 * @cred: the credentials to use
Casey Schauflere114e472008-02-04 22:29:50 -08004305 * @flags: unused
4306 *
4307 * No allocation required
4308 *
4309 * Returns 0
4310 */
David Howellsd84f4f92008-11-14 10:39:23 +11004311static int smack_key_alloc(struct key *key, const struct cred *cred,
Casey Schauflere114e472008-02-04 22:29:50 -08004312 unsigned long flags)
4313{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004314 struct smack_known *skp = smk_of_task(cred->security);
4315
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004316 key->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08004317 return 0;
4318}
4319
4320/**
4321 * smack_key_free - Clear the key security blob
4322 * @key: the object
4323 *
4324 * Clear the blob pointer
4325 */
4326static void smack_key_free(struct key *key)
4327{
4328 key->security = NULL;
4329}
4330
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +01004331/**
Casey Schauflere114e472008-02-04 22:29:50 -08004332 * smack_key_permission - Smack access on a key
4333 * @key_ref: gets to the object
David Howellsd84f4f92008-11-14 10:39:23 +11004334 * @cred: the credentials to use
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +01004335 * @perm: requested key permissions
Casey Schauflere114e472008-02-04 22:29:50 -08004336 *
4337 * Return 0 if the task has read and write to the object,
4338 * an error code otherwise
4339 */
4340static int smack_key_permission(key_ref_t key_ref,
David Howellsf5895942014-03-14 17:44:49 +00004341 const struct cred *cred, unsigned perm)
Casey Schauflere114e472008-02-04 22:29:50 -08004342{
4343 struct key *keyp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004344 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004345 struct smack_known *tkp = smk_of_task(cred->security);
Dmitry Kasatkinfffea212014-03-14 17:44:49 +00004346 int request = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -07004347 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08004348
Zoran Markovicf096ede2018-10-17 16:25:44 -07004349 /*
4350 * Validate requested permissions
4351 */
4352 if (perm & ~KEY_NEED_ALL)
4353 return -EINVAL;
4354
Casey Schauflere114e472008-02-04 22:29:50 -08004355 keyp = key_ref_to_ptr(key_ref);
4356 if (keyp == NULL)
4357 return -EINVAL;
4358 /*
4359 * If the key hasn't been initialized give it access so that
4360 * it may do so.
4361 */
4362 if (keyp->security == NULL)
4363 return 0;
4364 /*
4365 * This should not occur
4366 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004367 if (tkp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08004368 return -EACCES;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004369#ifdef CONFIG_AUDIT
4370 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
4371 ad.a.u.key_struct.key = keyp->serial;
4372 ad.a.u.key_struct.key_desc = keyp->description;
4373#endif
Zoran Markovicf096ede2018-10-17 16:25:44 -07004374 if (perm & (KEY_NEED_READ | KEY_NEED_SEARCH | KEY_NEED_VIEW))
4375 request |= MAY_READ;
Dmitry Kasatkinfffea212014-03-14 17:44:49 +00004376 if (perm & (KEY_NEED_WRITE | KEY_NEED_LINK | KEY_NEED_SETATTR))
Zoran Markovicf096ede2018-10-17 16:25:44 -07004377 request |= MAY_WRITE;
Casey Schauflerd166c802014-08-27 14:51:27 -07004378 rc = smk_access(tkp, keyp->security, request, &ad);
4379 rc = smk_bu_note("key access", tkp, keyp->security, request, rc);
4380 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08004381}
José Bollo7fc5f362015-02-17 15:41:22 +01004382
4383/*
4384 * smack_key_getsecurity - Smack label tagging the key
4385 * @key points to the key to be queried
4386 * @_buffer points to a pointer that should be set to point to the
4387 * resulting string (if no label or an error occurs).
4388 * Return the length of the string (including terminating NUL) or -ve if
4389 * an error.
4390 * May also return 0 (and a NULL buffer pointer) if there is no label.
4391 */
4392static int smack_key_getsecurity(struct key *key, char **_buffer)
4393{
4394 struct smack_known *skp = key->security;
4395 size_t length;
4396 char *copy;
4397
4398 if (key->security == NULL) {
4399 *_buffer = NULL;
4400 return 0;
4401 }
4402
4403 copy = kstrdup(skp->smk_known, GFP_KERNEL);
4404 if (copy == NULL)
4405 return -ENOMEM;
4406 length = strlen(copy) + 1;
4407
4408 *_buffer = copy;
4409 return length;
4410}
4411
Casey Schauflere114e472008-02-04 22:29:50 -08004412#endif /* CONFIG_KEYS */
4413
4414/*
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004415 * Smack Audit hooks
4416 *
4417 * Audit requires a unique representation of each Smack specific
4418 * rule. This unique representation is used to distinguish the
4419 * object to be audited from remaining kernel objects and also
4420 * works as a glue between the audit hooks.
4421 *
4422 * Since repository entries are added but never deleted, we'll use
4423 * the smack_known label address related to the given audit rule as
4424 * the needed unique representation. This also better fits the smack
4425 * model where nearly everything is a label.
4426 */
4427#ifdef CONFIG_AUDIT
4428
4429/**
4430 * smack_audit_rule_init - Initialize a smack audit rule
4431 * @field: audit rule fields given from user-space (audit.h)
4432 * @op: required testing operator (=, !=, >, <, ...)
4433 * @rulestr: smack label to be audited
4434 * @vrule: pointer to save our own audit rule representation
4435 *
4436 * Prepare to audit cases where (@field @op @rulestr) is true.
4437 * The label to be audited is created if necessay.
4438 */
4439static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
4440{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004441 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004442 char **rule = (char **)vrule;
4443 *rule = NULL;
4444
4445 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
4446 return -EINVAL;
4447
Al Viro5af75d82008-12-16 05:59:26 -05004448 if (op != Audit_equal && op != Audit_not_equal)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004449 return -EINVAL;
4450
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004451 skp = smk_import_entry(rulestr, 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02004452 if (IS_ERR(skp))
4453 return PTR_ERR(skp);
4454
4455 *rule = skp->smk_known;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004456
4457 return 0;
4458}
4459
4460/**
4461 * smack_audit_rule_known - Distinguish Smack audit rules
4462 * @krule: rule of interest, in Audit kernel representation format
4463 *
4464 * This is used to filter Smack rules from remaining Audit ones.
4465 * If it's proved that this rule belongs to us, the
4466 * audit_rule_match hook will be called to do the final judgement.
4467 */
4468static int smack_audit_rule_known(struct audit_krule *krule)
4469{
4470 struct audit_field *f;
4471 int i;
4472
4473 for (i = 0; i < krule->field_count; i++) {
4474 f = &krule->fields[i];
4475
4476 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
4477 return 1;
4478 }
4479
4480 return 0;
4481}
4482
4483/**
4484 * smack_audit_rule_match - Audit given object ?
4485 * @secid: security id for identifying the object to test
4486 * @field: audit rule flags given from user-space
4487 * @op: required testing operator
4488 * @vrule: smack internal rule presentation
4489 * @actx: audit context associated with the check
4490 *
4491 * The core Audit hook. It's used to take the decision of
4492 * whether to audit or not to audit a given object.
4493 */
4494static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule,
4495 struct audit_context *actx)
4496{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004497 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004498 char *rule = vrule;
4499
Richard Guy Briggs4eb0f4a2013-11-21 13:57:33 -05004500 if (unlikely(!rule)) {
4501 WARN_ONCE(1, "Smack: missing rule\n");
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004502 return -ENOENT;
4503 }
4504
4505 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
4506 return 0;
4507
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004508 skp = smack_from_secid(secid);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004509
4510 /*
4511 * No need to do string comparisons. If a match occurs,
4512 * both pointers will point to the same smack_known
4513 * label.
4514 */
Al Viro5af75d82008-12-16 05:59:26 -05004515 if (op == Audit_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004516 return (rule == skp->smk_known);
Al Viro5af75d82008-12-16 05:59:26 -05004517 if (op == Audit_not_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004518 return (rule != skp->smk_known);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004519
4520 return 0;
4521}
4522
Casey Schaufler491a0b02016-01-26 15:08:35 -08004523/*
4524 * There is no need for a smack_audit_rule_free hook.
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004525 * No memory was allocated.
4526 */
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004527
4528#endif /* CONFIG_AUDIT */
4529
Randy Dunlap251a2a92009-02-18 11:42:33 -08004530/**
David Quigley746df9b2013-05-22 12:50:35 -04004531 * smack_ismaclabel - check if xattr @name references a smack MAC label
4532 * @name: Full xattr name to check.
4533 */
4534static int smack_ismaclabel(const char *name)
4535{
4536 return (strcmp(name, XATTR_SMACK_SUFFIX) == 0);
4537}
4538
4539
4540/**
Casey Schauflere114e472008-02-04 22:29:50 -08004541 * smack_secid_to_secctx - return the smack label for a secid
4542 * @secid: incoming integer
4543 * @secdata: destination
4544 * @seclen: how long it is
4545 *
4546 * Exists for networking code.
4547 */
4548static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
4549{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004550 struct smack_known *skp = smack_from_secid(secid);
Casey Schauflere114e472008-02-04 22:29:50 -08004551
Eric Parisd5630b92010-10-13 16:24:48 -04004552 if (secdata)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004553 *secdata = skp->smk_known;
4554 *seclen = strlen(skp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08004555 return 0;
4556}
4557
Randy Dunlap251a2a92009-02-18 11:42:33 -08004558/**
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004559 * smack_secctx_to_secid - return the secid for a smack label
4560 * @secdata: smack label
4561 * @seclen: how long result is
4562 * @secid: outgoing integer
4563 *
4564 * Exists for audit and networking code.
4565 */
David Howellse52c17642008-04-29 20:52:51 +01004566static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004567{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004568 struct smack_known *skp = smk_find_entry(secdata);
4569
4570 if (skp)
4571 *secid = skp->smk_secid;
4572 else
4573 *secid = 0;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004574 return 0;
4575}
4576
Casey Schaufler491a0b02016-01-26 15:08:35 -08004577/*
4578 * There used to be a smack_release_secctx hook
4579 * that did nothing back when hooks were in a vector.
4580 * Now that there's a list such a hook adds cost.
Casey Schauflere114e472008-02-04 22:29:50 -08004581 */
Casey Schauflere114e472008-02-04 22:29:50 -08004582
David P. Quigley1ee65e32009-09-03 14:25:57 -04004583static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
4584{
4585 return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx, ctxlen, 0);
4586}
4587
4588static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
4589{
4590 return __vfs_setxattr_noperm(dentry, XATTR_NAME_SMACK, ctx, ctxlen, 0);
4591}
4592
4593static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
4594{
4595 int len = 0;
4596 len = smack_inode_getsecurity(inode, XATTR_SMACK_SUFFIX, ctx, true);
4597
4598 if (len < 0)
4599 return len;
4600 *ctxlen = len;
4601 return 0;
4602}
4603
Casey Schaufler1eddfe82015-07-30 14:35:14 -07004604static struct security_hook_list smack_hooks[] = {
Casey Schauflere20b0432015-05-02 15:11:36 -07004605 LSM_HOOK_INIT(ptrace_access_check, smack_ptrace_access_check),
4606 LSM_HOOK_INIT(ptrace_traceme, smack_ptrace_traceme),
4607 LSM_HOOK_INIT(syslog, smack_syslog),
Casey Schauflere114e472008-02-04 22:29:50 -08004608
Casey Schauflere20b0432015-05-02 15:11:36 -07004609 LSM_HOOK_INIT(sb_alloc_security, smack_sb_alloc_security),
4610 LSM_HOOK_INIT(sb_free_security, smack_sb_free_security),
4611 LSM_HOOK_INIT(sb_copy_data, smack_sb_copy_data),
4612 LSM_HOOK_INIT(sb_kern_mount, smack_sb_kern_mount),
4613 LSM_HOOK_INIT(sb_statfs, smack_sb_statfs),
Vivek Trivedi3bf27892015-06-22 15:36:06 +05304614 LSM_HOOK_INIT(sb_set_mnt_opts, smack_set_mnt_opts),
4615 LSM_HOOK_INIT(sb_parse_opts_str, smack_parse_opts_str),
Casey Schauflere114e472008-02-04 22:29:50 -08004616
Casey Schauflere20b0432015-05-02 15:11:36 -07004617 LSM_HOOK_INIT(bprm_set_creds, smack_bprm_set_creds),
4618 LSM_HOOK_INIT(bprm_committing_creds, smack_bprm_committing_creds),
4619 LSM_HOOK_INIT(bprm_secureexec, smack_bprm_secureexec),
Casey Schaufler676dac42010-12-02 06:43:39 -08004620
Casey Schauflere20b0432015-05-02 15:11:36 -07004621 LSM_HOOK_INIT(inode_alloc_security, smack_inode_alloc_security),
4622 LSM_HOOK_INIT(inode_free_security, smack_inode_free_security),
4623 LSM_HOOK_INIT(inode_init_security, smack_inode_init_security),
4624 LSM_HOOK_INIT(inode_link, smack_inode_link),
4625 LSM_HOOK_INIT(inode_unlink, smack_inode_unlink),
4626 LSM_HOOK_INIT(inode_rmdir, smack_inode_rmdir),
4627 LSM_HOOK_INIT(inode_rename, smack_inode_rename),
4628 LSM_HOOK_INIT(inode_permission, smack_inode_permission),
4629 LSM_HOOK_INIT(inode_setattr, smack_inode_setattr),
4630 LSM_HOOK_INIT(inode_getattr, smack_inode_getattr),
4631 LSM_HOOK_INIT(inode_setxattr, smack_inode_setxattr),
4632 LSM_HOOK_INIT(inode_post_setxattr, smack_inode_post_setxattr),
4633 LSM_HOOK_INIT(inode_getxattr, smack_inode_getxattr),
4634 LSM_HOOK_INIT(inode_removexattr, smack_inode_removexattr),
4635 LSM_HOOK_INIT(inode_getsecurity, smack_inode_getsecurity),
4636 LSM_HOOK_INIT(inode_setsecurity, smack_inode_setsecurity),
4637 LSM_HOOK_INIT(inode_listsecurity, smack_inode_listsecurity),
4638 LSM_HOOK_INIT(inode_getsecid, smack_inode_getsecid),
Casey Schauflere114e472008-02-04 22:29:50 -08004639
Casey Schauflere20b0432015-05-02 15:11:36 -07004640 LSM_HOOK_INIT(file_alloc_security, smack_file_alloc_security),
4641 LSM_HOOK_INIT(file_free_security, smack_file_free_security),
4642 LSM_HOOK_INIT(file_ioctl, smack_file_ioctl),
4643 LSM_HOOK_INIT(file_lock, smack_file_lock),
4644 LSM_HOOK_INIT(file_fcntl, smack_file_fcntl),
4645 LSM_HOOK_INIT(mmap_file, smack_mmap_file),
4646 LSM_HOOK_INIT(mmap_addr, cap_mmap_addr),
4647 LSM_HOOK_INIT(file_set_fowner, smack_file_set_fowner),
4648 LSM_HOOK_INIT(file_send_sigiotask, smack_file_send_sigiotask),
4649 LSM_HOOK_INIT(file_receive, smack_file_receive),
Casey Schauflere114e472008-02-04 22:29:50 -08004650
Casey Schauflere20b0432015-05-02 15:11:36 -07004651 LSM_HOOK_INIT(file_open, smack_file_open),
Casey Schaufler531f1d42011-09-19 12:41:42 -07004652
Casey Schauflere20b0432015-05-02 15:11:36 -07004653 LSM_HOOK_INIT(cred_alloc_blank, smack_cred_alloc_blank),
4654 LSM_HOOK_INIT(cred_free, smack_cred_free),
4655 LSM_HOOK_INIT(cred_prepare, smack_cred_prepare),
4656 LSM_HOOK_INIT(cred_transfer, smack_cred_transfer),
4657 LSM_HOOK_INIT(kernel_act_as, smack_kernel_act_as),
4658 LSM_HOOK_INIT(kernel_create_files_as, smack_kernel_create_files_as),
4659 LSM_HOOK_INIT(task_setpgid, smack_task_setpgid),
4660 LSM_HOOK_INIT(task_getpgid, smack_task_getpgid),
4661 LSM_HOOK_INIT(task_getsid, smack_task_getsid),
4662 LSM_HOOK_INIT(task_getsecid, smack_task_getsecid),
4663 LSM_HOOK_INIT(task_setnice, smack_task_setnice),
4664 LSM_HOOK_INIT(task_setioprio, smack_task_setioprio),
4665 LSM_HOOK_INIT(task_getioprio, smack_task_getioprio),
4666 LSM_HOOK_INIT(task_setscheduler, smack_task_setscheduler),
4667 LSM_HOOK_INIT(task_getscheduler, smack_task_getscheduler),
4668 LSM_HOOK_INIT(task_movememory, smack_task_movememory),
4669 LSM_HOOK_INIT(task_kill, smack_task_kill),
Casey Schauflere20b0432015-05-02 15:11:36 -07004670 LSM_HOOK_INIT(task_to_inode, smack_task_to_inode),
Casey Schauflere114e472008-02-04 22:29:50 -08004671
Casey Schauflere20b0432015-05-02 15:11:36 -07004672 LSM_HOOK_INIT(ipc_permission, smack_ipc_permission),
4673 LSM_HOOK_INIT(ipc_getsecid, smack_ipc_getsecid),
Casey Schauflere114e472008-02-04 22:29:50 -08004674
Casey Schauflere20b0432015-05-02 15:11:36 -07004675 LSM_HOOK_INIT(msg_msg_alloc_security, smack_msg_msg_alloc_security),
4676 LSM_HOOK_INIT(msg_msg_free_security, smack_msg_msg_free_security),
Casey Schauflere114e472008-02-04 22:29:50 -08004677
Casey Schauflere20b0432015-05-02 15:11:36 -07004678 LSM_HOOK_INIT(msg_queue_alloc_security, smack_msg_queue_alloc_security),
4679 LSM_HOOK_INIT(msg_queue_free_security, smack_msg_queue_free_security),
4680 LSM_HOOK_INIT(msg_queue_associate, smack_msg_queue_associate),
4681 LSM_HOOK_INIT(msg_queue_msgctl, smack_msg_queue_msgctl),
4682 LSM_HOOK_INIT(msg_queue_msgsnd, smack_msg_queue_msgsnd),
4683 LSM_HOOK_INIT(msg_queue_msgrcv, smack_msg_queue_msgrcv),
Casey Schauflere114e472008-02-04 22:29:50 -08004684
Casey Schauflere20b0432015-05-02 15:11:36 -07004685 LSM_HOOK_INIT(shm_alloc_security, smack_shm_alloc_security),
4686 LSM_HOOK_INIT(shm_free_security, smack_shm_free_security),
4687 LSM_HOOK_INIT(shm_associate, smack_shm_associate),
4688 LSM_HOOK_INIT(shm_shmctl, smack_shm_shmctl),
4689 LSM_HOOK_INIT(shm_shmat, smack_shm_shmat),
Casey Schauflere114e472008-02-04 22:29:50 -08004690
Casey Schauflere20b0432015-05-02 15:11:36 -07004691 LSM_HOOK_INIT(sem_alloc_security, smack_sem_alloc_security),
4692 LSM_HOOK_INIT(sem_free_security, smack_sem_free_security),
4693 LSM_HOOK_INIT(sem_associate, smack_sem_associate),
4694 LSM_HOOK_INIT(sem_semctl, smack_sem_semctl),
4695 LSM_HOOK_INIT(sem_semop, smack_sem_semop),
Casey Schauflere114e472008-02-04 22:29:50 -08004696
Casey Schauflere20b0432015-05-02 15:11:36 -07004697 LSM_HOOK_INIT(d_instantiate, smack_d_instantiate),
Casey Schauflere114e472008-02-04 22:29:50 -08004698
Casey Schauflere20b0432015-05-02 15:11:36 -07004699 LSM_HOOK_INIT(getprocattr, smack_getprocattr),
4700 LSM_HOOK_INIT(setprocattr, smack_setprocattr),
Casey Schauflere114e472008-02-04 22:29:50 -08004701
Casey Schauflere20b0432015-05-02 15:11:36 -07004702 LSM_HOOK_INIT(unix_stream_connect, smack_unix_stream_connect),
4703 LSM_HOOK_INIT(unix_may_send, smack_unix_may_send),
Casey Schauflere114e472008-02-04 22:29:50 -08004704
Casey Schauflere20b0432015-05-02 15:11:36 -07004705 LSM_HOOK_INIT(socket_post_create, smack_socket_post_create),
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004706#ifdef SMACK_IPV6_PORT_LABELING
Casey Schauflere20b0432015-05-02 15:11:36 -07004707 LSM_HOOK_INIT(socket_bind, smack_socket_bind),
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004708#endif
Casey Schauflere20b0432015-05-02 15:11:36 -07004709 LSM_HOOK_INIT(socket_connect, smack_socket_connect),
4710 LSM_HOOK_INIT(socket_sendmsg, smack_socket_sendmsg),
4711 LSM_HOOK_INIT(socket_sock_rcv_skb, smack_socket_sock_rcv_skb),
4712 LSM_HOOK_INIT(socket_getpeersec_stream, smack_socket_getpeersec_stream),
4713 LSM_HOOK_INIT(socket_getpeersec_dgram, smack_socket_getpeersec_dgram),
4714 LSM_HOOK_INIT(sk_alloc_security, smack_sk_alloc_security),
4715 LSM_HOOK_INIT(sk_free_security, smack_sk_free_security),
4716 LSM_HOOK_INIT(sock_graft, smack_sock_graft),
4717 LSM_HOOK_INIT(inet_conn_request, smack_inet_conn_request),
4718 LSM_HOOK_INIT(inet_csk_clone, smack_inet_csk_clone),
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004719
Casey Schauflere114e472008-02-04 22:29:50 -08004720 /* key management security hooks */
4721#ifdef CONFIG_KEYS
Casey Schauflere20b0432015-05-02 15:11:36 -07004722 LSM_HOOK_INIT(key_alloc, smack_key_alloc),
4723 LSM_HOOK_INIT(key_free, smack_key_free),
4724 LSM_HOOK_INIT(key_permission, smack_key_permission),
4725 LSM_HOOK_INIT(key_getsecurity, smack_key_getsecurity),
Casey Schauflere114e472008-02-04 22:29:50 -08004726#endif /* CONFIG_KEYS */
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004727
4728 /* Audit hooks */
4729#ifdef CONFIG_AUDIT
Casey Schauflere20b0432015-05-02 15:11:36 -07004730 LSM_HOOK_INIT(audit_rule_init, smack_audit_rule_init),
4731 LSM_HOOK_INIT(audit_rule_known, smack_audit_rule_known),
4732 LSM_HOOK_INIT(audit_rule_match, smack_audit_rule_match),
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004733#endif /* CONFIG_AUDIT */
4734
Casey Schauflere20b0432015-05-02 15:11:36 -07004735 LSM_HOOK_INIT(ismaclabel, smack_ismaclabel),
4736 LSM_HOOK_INIT(secid_to_secctx, smack_secid_to_secctx),
4737 LSM_HOOK_INIT(secctx_to_secid, smack_secctx_to_secid),
Casey Schauflere20b0432015-05-02 15:11:36 -07004738 LSM_HOOK_INIT(inode_notifysecctx, smack_inode_notifysecctx),
4739 LSM_HOOK_INIT(inode_setsecctx, smack_inode_setsecctx),
4740 LSM_HOOK_INIT(inode_getsecctx, smack_inode_getsecctx),
Casey Schauflere114e472008-02-04 22:29:50 -08004741};
4742
Etienne Basset7198e2e2009-03-24 20:53:24 +01004743
Casey Schaufler86812bb2012-04-17 18:55:46 -07004744static __init void init_smack_known_list(void)
Etienne Basset7198e2e2009-03-24 20:53:24 +01004745{
Casey Schaufler86812bb2012-04-17 18:55:46 -07004746 /*
Casey Schaufler86812bb2012-04-17 18:55:46 -07004747 * Initialize rule list locks
4748 */
4749 mutex_init(&smack_known_huh.smk_rules_lock);
4750 mutex_init(&smack_known_hat.smk_rules_lock);
4751 mutex_init(&smack_known_floor.smk_rules_lock);
4752 mutex_init(&smack_known_star.smk_rules_lock);
4753 mutex_init(&smack_known_invalid.smk_rules_lock);
4754 mutex_init(&smack_known_web.smk_rules_lock);
4755 /*
4756 * Initialize rule lists
4757 */
4758 INIT_LIST_HEAD(&smack_known_huh.smk_rules);
4759 INIT_LIST_HEAD(&smack_known_hat.smk_rules);
4760 INIT_LIST_HEAD(&smack_known_star.smk_rules);
4761 INIT_LIST_HEAD(&smack_known_floor.smk_rules);
4762 INIT_LIST_HEAD(&smack_known_invalid.smk_rules);
4763 INIT_LIST_HEAD(&smack_known_web.smk_rules);
4764 /*
4765 * Create the known labels list
4766 */
Tomasz Stanislawski4d7cf4a2013-06-11 14:55:13 +02004767 smk_insert_entry(&smack_known_huh);
4768 smk_insert_entry(&smack_known_hat);
4769 smk_insert_entry(&smack_known_star);
4770 smk_insert_entry(&smack_known_floor);
4771 smk_insert_entry(&smack_known_invalid);
4772 smk_insert_entry(&smack_known_web);
Etienne Basset7198e2e2009-03-24 20:53:24 +01004773}
4774
Casey Schauflere114e472008-02-04 22:29:50 -08004775/**
4776 * smack_init - initialize the smack system
4777 *
4778 * Returns 0
4779 */
4780static __init int smack_init(void)
4781{
David Howellsd84f4f92008-11-14 10:39:23 +11004782 struct cred *cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08004783 struct task_smack *tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11004784
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07004785 if (!security_module_enable("smack"))
Casey Schaufler7898e1f2011-01-17 08:05:27 -08004786 return 0;
4787
Rohit1a5b4722014-10-15 17:40:41 +05304788 smack_inode_cache = KMEM_CACHE(inode_smack, 0);
4789 if (!smack_inode_cache)
4790 return -ENOMEM;
4791
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004792 tsp = new_task_smack(&smack_known_floor, &smack_known_floor,
4793 GFP_KERNEL);
Rohit1a5b4722014-10-15 17:40:41 +05304794 if (tsp == NULL) {
4795 kmem_cache_destroy(smack_inode_cache);
Casey Schaufler676dac42010-12-02 06:43:39 -08004796 return -ENOMEM;
Rohit1a5b4722014-10-15 17:40:41 +05304797 }
Casey Schaufler676dac42010-12-02 06:43:39 -08004798
José Bollod21b7b02015-10-02 15:15:56 +02004799 smack_enabled = 1;
4800
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004801 pr_info("Smack: Initializing.\n");
4802#ifdef CONFIG_SECURITY_SMACK_NETFILTER
4803 pr_info("Smack: Netfilter enabled.\n");
4804#endif
4805#ifdef SMACK_IPV6_PORT_LABELING
4806 pr_info("Smack: IPv6 port labeling enabled.\n");
4807#endif
4808#ifdef SMACK_IPV6_SECMARK_LABELING
4809 pr_info("Smack: IPv6 Netfilter enabled.\n");
4810#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004811
4812 /*
4813 * Set the security state for the initial task.
4814 */
David Howellsd84f4f92008-11-14 10:39:23 +11004815 cred = (struct cred *) current->cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08004816 cred->security = tsp;
Casey Schauflere114e472008-02-04 22:29:50 -08004817
Casey Schaufler86812bb2012-04-17 18:55:46 -07004818 /* initialize the smack_known_list */
4819 init_smack_known_list();
Casey Schauflere114e472008-02-04 22:29:50 -08004820
4821 /*
4822 * Register with LSM
4823 */
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07004824 security_add_hooks(smack_hooks, ARRAY_SIZE(smack_hooks));
Casey Schauflere114e472008-02-04 22:29:50 -08004825
4826 return 0;
4827}
4828
4829/*
4830 * Smack requires early initialization in order to label
4831 * all processes and objects when they are created.
4832 */
4833security_initcall(smack_init);