blob: 14b279cc75c964b7fb5f5001d41bd20fb23940a7 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Casey Schauflere114e472008-02-04 22:29:50 -08002/*
3 * Simplified MAC Kernel (smack) security module
4 *
5 * This file contains the smack hook function implementations.
6 *
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02007 * Authors:
Casey Schauflere114e472008-02-04 22:29:50 -08008 * Casey Schaufler <casey@schaufler-ca.com>
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +03009 * Jarkko Sakkinen <jarkko.sakkinen@intel.com>
Casey Schauflere114e472008-02-04 22:29:50 -080010 *
11 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
Paul Moore07feee82009-03-27 17:10:54 -040012 * Copyright (C) 2009 Hewlett-Packard Development Company, L.P.
Paul Moore82c21bf2011-08-01 11:10:33 +000013 * Paul Moore <paul@paul-moore.com>
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +020014 * Copyright (C) 2010 Nokia Corporation
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +030015 * Copyright (C) 2011 Intel Corporation.
Casey Schauflere114e472008-02-04 22:29:50 -080016 */
17
18#include <linux/xattr.h>
19#include <linux/pagemap.h>
20#include <linux/mount.h>
21#include <linux/stat.h>
Casey Schauflere114e472008-02-04 22:29:50 -080022#include <linux/kd.h>
23#include <asm/ioctls.h>
Paul Moore07feee82009-03-27 17:10:54 -040024#include <linux/ip.h>
Casey Schauflere114e472008-02-04 22:29:50 -080025#include <linux/tcp.h>
26#include <linux/udp.h>
Casey Schauflerc6739442013-05-22 18:42:56 -070027#include <linux/dccp.h>
Piotr Sawickid66a8ac2018-07-19 11:47:31 +020028#include <linux/icmpv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Casey Schauflere114e472008-02-04 22:29:50 -080030#include <linux/mutex.h>
Casey Schauflere114e472008-02-04 22:29:50 -080031#include <net/cipso_ipv4.h>
Casey Schauflerc6739442013-05-22 18:42:56 -070032#include <net/ip.h>
33#include <net/ipv6.h>
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +100034#include <linux/audit.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070035#include <linux/magic.h>
Eric Paris2a7dba32011-02-01 11:05:39 -050036#include <linux/dcache.h>
Jarkko Sakkinen16014d82011-10-14 13:16:24 +030037#include <linux/personality.h>
Al Viro40401532012-02-13 03:58:52 +000038#include <linux/msg.h>
39#include <linux/shm.h>
40#include <linux/binfmts.h>
Vivek Trivedi3bf27892015-06-22 15:36:06 +053041#include <linux/parser.h>
David Howells2febd252018-11-01 23:07:24 +000042#include <linux/fs_context.h>
43#include <linux/fs_parser.h>
David Howellsa8478a62020-01-14 17:07:13 +000044#include <linux/watch_queue.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
Sebastian Andrzej Siewior222a96b2021-09-23 19:05:03 +020054#ifdef SMACK_IPV6_PORT_LABELING
Arnd Bergmann00720f02020-04-08 21:04:31 +020055static DEFINE_MUTEX(smack_ipv6_lock);
Geliang Tang8b549ef2015-09-27 23:10:25 +080056static LIST_HEAD(smk_ipv6_port_list);
Sebastian Andrzej Siewior222a96b2021-09-23 19:05:03 +020057#endif
Casey Schaufler4e328b02019-04-02 11:37:12 -070058struct kmem_cache *smack_rule_cache;
Austin Kimbfc3cac2021-06-29 14:41:44 +010059int smack_enabled __initdata;
Casey Schauflerc6739442013-05-22 18:42:56 -070060
Al Viroc3300aa2018-12-16 01:52:24 -050061#define A(s) {"smack"#s, sizeof("smack"#s) - 1, Opt_##s}
62static struct {
63 const char *name;
64 int len;
65 int opt;
66} smk_mount_opts[] = {
Casey Schaufler6e7739f2019-05-31 11:53:33 +010067 {"smackfsdef", sizeof("smackfsdef") - 1, Opt_fsdefault},
Al Viroc3300aa2018-12-16 01:52:24 -050068 A(fsdefault), A(fsfloor), A(fshat), A(fsroot), A(fstransmute)
Vivek Trivedi3bf27892015-06-22 15:36:06 +053069};
Al Viroc3300aa2018-12-16 01:52:24 -050070#undef A
71
72static int match_opt_prefix(char *s, int l, char **arg)
73{
74 int i;
75
76 for (i = 0; i < ARRAY_SIZE(smk_mount_opts); i++) {
77 size_t len = smk_mount_opts[i].len;
78 if (len > l || memcmp(s, smk_mount_opts[i].name, len))
79 continue;
80 if (len == l || s[len] != '=')
81 continue;
82 *arg = s + len + 1;
83 return smk_mount_opts[i].opt;
84 }
85 return Opt_error;
86}
Vivek Trivedi3bf27892015-06-22 15:36:06 +053087
Casey Schaufler3d04c922015-08-12 11:56:02 -070088#ifdef CONFIG_SECURITY_SMACK_BRINGUP
89static char *smk_bu_mess[] = {
90 "Bringup Error", /* Unused */
91 "Bringup", /* SMACK_BRINGUP_ALLOW */
92 "Unconfined Subject", /* SMACK_UNCONFINED_SUBJECT */
93 "Unconfined Object", /* SMACK_UNCONFINED_OBJECT */
94};
95
Casey Schauflerd166c802014-08-27 14:51:27 -070096static void smk_bu_mode(int mode, char *s)
97{
98 int i = 0;
99
100 if (mode & MAY_READ)
101 s[i++] = 'r';
102 if (mode & MAY_WRITE)
103 s[i++] = 'w';
104 if (mode & MAY_EXEC)
105 s[i++] = 'x';
106 if (mode & MAY_APPEND)
107 s[i++] = 'a';
108 if (mode & MAY_TRANSMUTE)
109 s[i++] = 't';
110 if (mode & MAY_LOCK)
111 s[i++] = 'l';
112 if (i == 0)
113 s[i++] = '-';
114 s[i] = '\0';
115}
116#endif
117
118#ifdef CONFIG_SECURITY_SMACK_BRINGUP
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200119static int smk_bu_note(char *note, struct smack_known *sskp,
120 struct smack_known *oskp, int mode, int rc)
Casey Schauflerd166c802014-08-27 14:51:27 -0700121{
122 char acc[SMK_NUM_ACCESS_TYPE + 1];
123
124 if (rc <= 0)
125 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700126 if (rc > SMACK_UNCONFINED_OBJECT)
127 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700128
129 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700130 pr_info("Smack %s: (%s %s %s) %s\n", smk_bu_mess[rc],
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200131 sskp->smk_known, oskp->smk_known, acc, note);
Casey Schauflerd166c802014-08-27 14:51:27 -0700132 return 0;
133}
134#else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200135#define smk_bu_note(note, sskp, oskp, mode, RC) (RC)
Casey Schauflerd166c802014-08-27 14:51:27 -0700136#endif
137
138#ifdef CONFIG_SECURITY_SMACK_BRINGUP
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200139static int smk_bu_current(char *note, struct smack_known *oskp,
140 int mode, int rc)
Casey Schauflerd166c802014-08-27 14:51:27 -0700141{
Casey Schauflerb17103a2018-11-09 16:12:56 -0800142 struct task_smack *tsp = smack_cred(current_cred());
Casey Schauflerd166c802014-08-27 14:51:27 -0700143 char acc[SMK_NUM_ACCESS_TYPE + 1];
144
145 if (rc <= 0)
146 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700147 if (rc > SMACK_UNCONFINED_OBJECT)
148 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700149
150 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700151 pr_info("Smack %s: (%s %s %s) %s %s\n", smk_bu_mess[rc],
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200152 tsp->smk_task->smk_known, oskp->smk_known,
153 acc, current->comm, note);
Casey Schauflerd166c802014-08-27 14:51:27 -0700154 return 0;
155}
156#else
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200157#define smk_bu_current(note, oskp, mode, RC) (RC)
Casey Schauflerd166c802014-08-27 14:51:27 -0700158#endif
159
160#ifdef CONFIG_SECURITY_SMACK_BRINGUP
161static int smk_bu_task(struct task_struct *otp, int mode, int rc)
162{
Casey Schauflerb17103a2018-11-09 16:12:56 -0800163 struct task_smack *tsp = smack_cred(current_cred());
Paul Moore1fb057d2021-02-19 15:04:58 -0500164 struct smack_known *smk_task = smk_of_task_struct_obj(otp);
Casey Schauflerd166c802014-08-27 14:51:27 -0700165 char acc[SMK_NUM_ACCESS_TYPE + 1];
166
167 if (rc <= 0)
168 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700169 if (rc > SMACK_UNCONFINED_OBJECT)
170 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700171
172 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700173 pr_info("Smack %s: (%s %s %s) %s to %s\n", smk_bu_mess[rc],
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300174 tsp->smk_task->smk_known, smk_task->smk_known, acc,
Casey Schauflerd166c802014-08-27 14:51:27 -0700175 current->comm, otp->comm);
176 return 0;
177}
178#else
179#define smk_bu_task(otp, mode, RC) (RC)
180#endif
181
182#ifdef CONFIG_SECURITY_SMACK_BRINGUP
183static int smk_bu_inode(struct inode *inode, int mode, int rc)
184{
Casey Schauflerb17103a2018-11-09 16:12:56 -0800185 struct task_smack *tsp = smack_cred(current_cred());
Casey Schauflerfb4021b2018-11-12 12:43:01 -0800186 struct inode_smack *isp = smack_inode(inode);
Casey Schauflerd166c802014-08-27 14:51:27 -0700187 char acc[SMK_NUM_ACCESS_TYPE + 1];
188
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700189 if (isp->smk_flags & SMK_INODE_IMPURE)
190 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
191 inode->i_sb->s_id, inode->i_ino, current->comm);
192
Casey Schauflerd166c802014-08-27 14:51:27 -0700193 if (rc <= 0)
194 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700195 if (rc > SMACK_UNCONFINED_OBJECT)
196 rc = 0;
197 if (rc == SMACK_UNCONFINED_SUBJECT &&
198 (mode & (MAY_WRITE | MAY_APPEND)))
199 isp->smk_flags |= SMK_INODE_IMPURE;
Casey Schauflerd166c802014-08-27 14:51:27 -0700200
201 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700202
203 pr_info("Smack %s: (%s %s %s) inode=(%s %ld) %s\n", smk_bu_mess[rc],
204 tsp->smk_task->smk_known, isp->smk_inode->smk_known, acc,
Casey Schauflerd166c802014-08-27 14:51:27 -0700205 inode->i_sb->s_id, inode->i_ino, current->comm);
206 return 0;
207}
208#else
209#define smk_bu_inode(inode, mode, RC) (RC)
210#endif
211
212#ifdef CONFIG_SECURITY_SMACK_BRINGUP
213static int smk_bu_file(struct file *file, int mode, int rc)
214{
Casey Schauflerb17103a2018-11-09 16:12:56 -0800215 struct task_smack *tsp = smack_cred(current_cred());
Casey Schauflerd166c802014-08-27 14:51:27 -0700216 struct smack_known *sskp = tsp->smk_task;
Casey Schaufler5e7270a2014-12-12 17:19:19 -0800217 struct inode *inode = file_inode(file);
Casey Schauflerfb4021b2018-11-12 12:43:01 -0800218 struct inode_smack *isp = smack_inode(inode);
Casey Schauflerd166c802014-08-27 14:51:27 -0700219 char acc[SMK_NUM_ACCESS_TYPE + 1];
220
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700221 if (isp->smk_flags & SMK_INODE_IMPURE)
222 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
223 inode->i_sb->s_id, inode->i_ino, current->comm);
224
Casey Schauflerd166c802014-08-27 14:51:27 -0700225 if (rc <= 0)
226 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700227 if (rc > SMACK_UNCONFINED_OBJECT)
228 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700229
230 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700231 pr_info("Smack %s: (%s %s %s) file=(%s %ld %pD) %s\n", smk_bu_mess[rc],
Casey Schaufler5e7270a2014-12-12 17:19:19 -0800232 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
Al Viroa4555892014-10-21 20:11:25 -0400233 inode->i_sb->s_id, inode->i_ino, file,
Casey Schauflerd166c802014-08-27 14:51:27 -0700234 current->comm);
235 return 0;
236}
237#else
238#define smk_bu_file(file, mode, RC) (RC)
239#endif
240
241#ifdef CONFIG_SECURITY_SMACK_BRINGUP
242static int smk_bu_credfile(const struct cred *cred, struct file *file,
243 int mode, int rc)
244{
Casey Schauflerb17103a2018-11-09 16:12:56 -0800245 struct task_smack *tsp = smack_cred(cred);
Casey Schauflerd166c802014-08-27 14:51:27 -0700246 struct smack_known *sskp = tsp->smk_task;
Al Viro45063092016-12-04 18:24:56 -0500247 struct inode *inode = file_inode(file);
Casey Schauflerfb4021b2018-11-12 12:43:01 -0800248 struct inode_smack *isp = smack_inode(inode);
Casey Schauflerd166c802014-08-27 14:51:27 -0700249 char acc[SMK_NUM_ACCESS_TYPE + 1];
250
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700251 if (isp->smk_flags & SMK_INODE_IMPURE)
252 pr_info("Smack Unconfined Corruption: inode=(%s %ld) %s\n",
253 inode->i_sb->s_id, inode->i_ino, current->comm);
254
Casey Schauflerd166c802014-08-27 14:51:27 -0700255 if (rc <= 0)
256 return rc;
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700257 if (rc > SMACK_UNCONFINED_OBJECT)
258 rc = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -0700259
260 smk_bu_mode(mode, acc);
Casey Schauflerbf4b2fe2015-03-21 18:26:40 -0700261 pr_info("Smack %s: (%s %s %s) file=(%s %ld %pD) %s\n", smk_bu_mess[rc],
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200262 sskp->smk_known, smk_of_inode(inode)->smk_known, acc,
Al Viroa4555892014-10-21 20:11:25 -0400263 inode->i_sb->s_id, inode->i_ino, file,
Casey Schauflerd166c802014-08-27 14:51:27 -0700264 current->comm);
265 return 0;
266}
267#else
268#define smk_bu_credfile(cred, file, mode, RC) (RC)
269#endif
270
Casey Schauflere114e472008-02-04 22:29:50 -0800271/**
272 * smk_fetch - Fetch the smack label from a file.
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100273 * @name: type of the label (attribute)
Casey Schauflere114e472008-02-04 22:29:50 -0800274 * @ip: a pointer to the inode
275 * @dp: a pointer to the dentry
276 *
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200277 * Returns a pointer to the master list entry for the Smack label,
278 * NULL if there was no label to fetch, or an error code.
Casey Schauflere114e472008-02-04 22:29:50 -0800279 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700280static struct smack_known *smk_fetch(const char *name, struct inode *ip,
281 struct dentry *dp)
Casey Schauflere114e472008-02-04 22:29:50 -0800282{
283 int rc;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700284 char *buffer;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700285 struct smack_known *skp = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -0800286
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200287 if (!(ip->i_opflags & IOP_XATTR))
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200288 return ERR_PTR(-EOPNOTSUPP);
Casey Schauflere114e472008-02-04 22:29:50 -0800289
Eric Biggerse5bfad32019-08-21 22:54:41 -0700290 buffer = kzalloc(SMK_LONGLABEL, GFP_NOFS);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700291 if (buffer == NULL)
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200292 return ERR_PTR(-ENOMEM);
Casey Schauflere114e472008-02-04 22:29:50 -0800293
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200294 rc = __vfs_getxattr(dp, ip, name, buffer, SMK_LONGLABEL);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200295 if (rc < 0)
296 skp = ERR_PTR(rc);
297 else if (rc == 0)
298 skp = NULL;
299 else
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700300 skp = smk_import_entry(buffer, rc);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700301
302 kfree(buffer);
303
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700304 return skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800305}
306
307/**
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700308 * init_inode_smack - initialize an inode security blob
luanshia1a07f22019-07-05 10:35:20 +0800309 * @inode: inode to extract the info from
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200310 * @skp: a pointer to the Smack label entry to use in the blob
Casey Schauflere114e472008-02-04 22:29:50 -0800311 *
Casey Schauflere114e472008-02-04 22:29:50 -0800312 */
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700313static void init_inode_smack(struct inode *inode, struct smack_known *skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800314{
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700315 struct inode_smack *isp = smack_inode(inode);
Casey Schauflere114e472008-02-04 22:29:50 -0800316
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200317 isp->smk_inode = skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800318 isp->smk_flags = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800319}
320
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800321/**
Casey Schauflerbbd36622018-11-12 09:30:56 -0800322 * init_task_smack - initialize a task security blob
323 * @tsp: blob to initialize
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100324 * @task: a pointer to the Smack label for the running task
325 * @forked: a pointer to the Smack label for the forked task
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800326 *
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800327 */
Casey Schauflerbbd36622018-11-12 09:30:56 -0800328static void init_task_smack(struct task_smack *tsp, struct smack_known *task,
329 struct smack_known *forked)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800330{
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800331 tsp->smk_task = task;
332 tsp->smk_forked = forked;
333 INIT_LIST_HEAD(&tsp->smk_rules);
Zbigniew Jasinski38416e52015-10-19 18:23:53 +0200334 INIT_LIST_HEAD(&tsp->smk_relabel);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800335 mutex_init(&tsp->smk_rules_lock);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800336}
337
338/**
339 * smk_copy_rules - copy a rule set
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +0100340 * @nhead: new rules header pointer
341 * @ohead: old rules header pointer
342 * @gfp: type of the memory for the allocation
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800343 *
344 * Returns 0 on success, -ENOMEM on error
345 */
346static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead,
347 gfp_t gfp)
348{
349 struct smack_rule *nrp;
350 struct smack_rule *orp;
351 int rc = 0;
352
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800353 list_for_each_entry_rcu(orp, ohead, list) {
Casey Schaufler4e328b02019-04-02 11:37:12 -0700354 nrp = kmem_cache_zalloc(smack_rule_cache, gfp);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800355 if (nrp == NULL) {
356 rc = -ENOMEM;
357 break;
358 }
359 *nrp = *orp;
360 list_add_rcu(&nrp->list, nhead);
361 }
362 return rc;
363}
364
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100365/**
Zbigniew Jasinski38416e52015-10-19 18:23:53 +0200366 * smk_copy_relabel - copy smk_relabel labels list
367 * @nhead: new rules header pointer
368 * @ohead: old rules header pointer
369 * @gfp: type of the memory for the allocation
370 *
371 * Returns 0 on success, -ENOMEM on error
372 */
373static int smk_copy_relabel(struct list_head *nhead, struct list_head *ohead,
374 gfp_t gfp)
375{
376 struct smack_known_list_elem *nklep;
377 struct smack_known_list_elem *oklep;
378
Zbigniew Jasinski38416e52015-10-19 18:23:53 +0200379 list_for_each_entry(oklep, ohead, list) {
380 nklep = kzalloc(sizeof(struct smack_known_list_elem), gfp);
381 if (nklep == NULL) {
382 smk_destroy_label_list(nhead);
383 return -ENOMEM;
384 }
385 nklep->smk_label = oklep->smk_label;
386 list_add(&nklep->list, nhead);
387 }
388
389 return 0;
390}
391
392/**
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100393 * smk_ptrace_mode - helper function for converting PTRACE_MODE_* into MAY_*
Casey Schauflerb57d0202021-10-13 14:56:43 -0700394 * @mode: input mode in form of PTRACE_MODE_*
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100395 *
396 * Returns a converted MAY_* mode usable by smack rules
397 */
398static inline unsigned int smk_ptrace_mode(unsigned int mode)
399{
Jann Horn3dfb7d82016-01-20 15:00:01 -0800400 if (mode & PTRACE_MODE_ATTACH)
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100401 return MAY_READWRITE;
Jann Horn3dfb7d82016-01-20 15:00:01 -0800402 if (mode & PTRACE_MODE_READ)
403 return MAY_READ;
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100404
405 return 0;
406}
407
408/**
409 * smk_ptrace_rule_check - helper for ptrace access
410 * @tracer: tracer process
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200411 * @tracee_known: label entry of the process that's about to be traced
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100412 * @mode: ptrace attachment mode (PTRACE_MODE_*)
413 * @func: name of the function that called us, used for audit
414 *
415 * Returns 0 on access granted, -error on error
416 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200417static int smk_ptrace_rule_check(struct task_struct *tracer,
418 struct smack_known *tracee_known,
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100419 unsigned int mode, const char *func)
420{
421 int rc;
422 struct smk_audit_info ad, *saip = NULL;
423 struct task_smack *tsp;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200424 struct smack_known *tracer_known;
Casey Schauflerdcb569c2018-09-18 16:09:16 -0700425 const struct cred *tracercred;
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();
Casey Schauflerdcb569c2018-09-18 16:09:16 -0700434 tracercred = __task_cred(tracer);
Casey Schauflerb17103a2018-11-09 16:12:56 -0800435 tsp = smack_cred(tracercred);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200436 tracer_known = smk_of_task(tsp);
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100437
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100438 if ((mode & PTRACE_MODE_ATTACH) &&
439 (smack_ptrace_rule == SMACK_PTRACE_EXACT ||
440 smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200441 if (tracer_known->smk_known == tracee_known->smk_known)
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100442 rc = 0;
443 else if (smack_ptrace_rule == SMACK_PTRACE_DRACONIAN)
444 rc = -EACCES;
Casey Schauflerdcb569c2018-09-18 16:09:16 -0700445 else if (smack_privileged_cred(CAP_SYS_PTRACE, tracercred))
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100446 rc = 0;
447 else
448 rc = -EACCES;
449
450 if (saip)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200451 smack_log(tracer_known->smk_known,
452 tracee_known->smk_known,
453 0, rc, saip);
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100454
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300455 rcu_read_unlock();
Lukasz Pawelczyk66867812014-03-11 17:07:06 +0100456 return rc;
457 }
458
459 /* In case of rule==SMACK_PTRACE_DEFAULT or mode==PTRACE_MODE_READ */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200460 rc = smk_tskacc(tsp, tracee_known, smk_ptrace_mode(mode), saip);
Andrey Ryabinin6d1cff22015-01-13 18:52:40 +0300461
462 rcu_read_unlock();
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100463 return rc;
464}
465
Casey Schauflere114e472008-02-04 22:29:50 -0800466/*
467 * LSM hooks.
468 * We he, that is fun!
469 */
470
471/**
Ingo Molnar9e488582009-05-07 19:26:19 +1000472 * smack_ptrace_access_check - Smack approval on PTRACE_ATTACH
Casey Schauflere114e472008-02-04 22:29:50 -0800473 * @ctp: child task pointer
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100474 * @mode: ptrace attachment mode (PTRACE_MODE_*)
Casey Schauflere114e472008-02-04 22:29:50 -0800475 *
476 * Returns 0 if access is OK, an error code otherwise
477 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100478 * Do the capability checks.
Casey Schauflere114e472008-02-04 22:29:50 -0800479 */
Ingo Molnar9e488582009-05-07 19:26:19 +1000480static int smack_ptrace_access_check(struct task_struct *ctp, unsigned int mode)
Casey Schauflere114e472008-02-04 22:29:50 -0800481{
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700482 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -0800483
Paul Moore1fb057d2021-02-19 15:04:58 -0500484 skp = smk_of_task_struct_obj(ctp);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200485
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700486 return smk_ptrace_rule_check(current, skp, mode, __func__);
David Howells5cd9c582008-08-14 11:37:28 +0100487}
Casey Schauflere114e472008-02-04 22:29:50 -0800488
David Howells5cd9c582008-08-14 11:37:28 +0100489/**
490 * smack_ptrace_traceme - Smack approval on PTRACE_TRACEME
491 * @ptp: parent task pointer
492 *
493 * Returns 0 if access is OK, an error code otherwise
494 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100495 * Do the capability checks, and require PTRACE_MODE_ATTACH.
David Howells5cd9c582008-08-14 11:37:28 +0100496 */
497static int smack_ptrace_traceme(struct task_struct *ptp)
498{
499 int rc;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700500 struct smack_known *skp;
David Howells5cd9c582008-08-14 11:37:28 +0100501
Casey Schauflerb17103a2018-11-09 16:12:56 -0800502 skp = smk_of_task(smack_cred(current_cred()));
Etienne Bassetecfcc532009-04-08 20:40:06 +0200503
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200504 rc = smk_ptrace_rule_check(ptp, skp, PTRACE_MODE_ATTACH, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -0800505 return rc;
506}
507
508/**
509 * smack_syslog - Smack approval on syslog
luanshia1a07f22019-07-05 10:35:20 +0800510 * @typefrom_file: unused
Casey Schauflere114e472008-02-04 22:29:50 -0800511 *
Casey Schauflere114e472008-02-04 22:29:50 -0800512 * Returns 0 on success, error code otherwise.
513 */
Eric Paris12b30522010-11-15 18:36:29 -0500514static int smack_syslog(int typefrom_file)
Casey Schauflere114e472008-02-04 22:29:50 -0800515{
Eric Paris12b30522010-11-15 18:36:29 -0500516 int rc = 0;
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700517 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -0800518
Casey Schaufler1880eff2012-06-05 15:28:30 -0700519 if (smack_privileged(CAP_MAC_OVERRIDE))
Casey Schauflere114e472008-02-04 22:29:50 -0800520 return 0;
521
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800522 if (smack_syslog_label != NULL && smack_syslog_label != skp)
Casey Schauflere114e472008-02-04 22:29:50 -0800523 rc = -EACCES;
524
525 return rc;
526}
527
Casey Schauflere114e472008-02-04 22:29:50 -0800528/*
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{
Casey Schaufler1aea7802021-04-22 17:41:15 +0200540 struct superblock_smack *sbsp = smack_superblock(sb);
Casey Schauflere114e472008-02-04 22:29:50 -0800541
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200542 sbsp->smk_root = &smack_known_floor;
543 sbsp->smk_default = &smack_known_floor;
544 sbsp->smk_floor = &smack_known_floor;
545 sbsp->smk_hat = &smack_known_hat;
Casey Schauflere830b392013-05-22 18:43:07 -0700546 /*
Seth Forshee9f50eda2015-09-23 15:16:06 -0500547 * SMK_SB_INITIALIZED will be zero from kzalloc.
Casey Schauflere830b392013-05-22 18:43:07 -0700548 */
Casey Schauflere114e472008-02-04 22:29:50 -0800549
550 return 0;
551}
552
Al Viro12085b12018-12-13 15:18:05 -0500553struct smack_mnt_opts {
554 const char *fsdefault, *fsfloor, *fshat, *fsroot, *fstransmute;
555};
556
Al Viro204cc0c2018-12-13 13:41:47 -0500557static void smack_free_mnt_opts(void *mnt_opts)
Casey Schauflere114e472008-02-04 22:29:50 -0800558{
Al Viro12085b12018-12-13 15:18:05 -0500559 struct smack_mnt_opts *opts = mnt_opts;
560 kfree(opts->fsdefault);
561 kfree(opts->fsfloor);
562 kfree(opts->fshat);
563 kfree(opts->fsroot);
564 kfree(opts->fstransmute);
Al Viro204cc0c2018-12-13 13:41:47 -0500565 kfree(opts);
Casey Schauflere114e472008-02-04 22:29:50 -0800566}
567
Al Viro55c0e5b2018-12-16 01:09:45 -0500568static int smack_add_opt(int token, const char *s, void **mnt_opts)
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530569{
Al Viro55c0e5b2018-12-16 01:09:45 -0500570 struct smack_mnt_opts *opts = *mnt_opts;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530571
Al Viro55c0e5b2018-12-16 01:09:45 -0500572 if (!opts) {
573 opts = kzalloc(sizeof(struct smack_mnt_opts), GFP_KERNEL);
574 if (!opts)
575 return -ENOMEM;
576 *mnt_opts = opts;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530577 }
Al Viro55c0e5b2018-12-16 01:09:45 -0500578 if (!s)
579 return -ENOMEM;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530580
Al Viro55c0e5b2018-12-16 01:09:45 -0500581 switch (token) {
582 case Opt_fsdefault:
583 if (opts->fsdefault)
584 goto out_opt_err;
585 opts->fsdefault = s;
586 break;
587 case Opt_fsfloor:
588 if (opts->fsfloor)
589 goto out_opt_err;
590 opts->fsfloor = s;
591 break;
592 case Opt_fshat:
593 if (opts->fshat)
594 goto out_opt_err;
595 opts->fshat = s;
596 break;
597 case Opt_fsroot:
598 if (opts->fsroot)
599 goto out_opt_err;
600 opts->fsroot = s;
601 break;
602 case Opt_fstransmute:
603 if (opts->fstransmute)
604 goto out_opt_err;
605 opts->fstransmute = s;
606 break;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530607 }
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530608 return 0;
609
610out_opt_err:
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530611 pr_warn("Smack: duplicate mount options\n");
Al Viro55c0e5b2018-12-16 01:09:45 -0500612 return -EINVAL;
613}
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530614
Al Viro0b520752018-12-23 16:02:47 -0500615/**
616 * smack_fs_context_dup - Duplicate the security data on fs_context duplication
617 * @fc: The new filesystem context.
618 * @src_fc: The source filesystem context being duplicated.
619 *
620 * Returns 0 on success or -ENOMEM on error.
621 */
622static int smack_fs_context_dup(struct fs_context *fc,
623 struct fs_context *src_fc)
624{
625 struct smack_mnt_opts *dst, *src = src_fc->security;
626
627 if (!src)
628 return 0;
629
630 fc->security = kzalloc(sizeof(struct smack_mnt_opts), GFP_KERNEL);
631 if (!fc->security)
632 return -ENOMEM;
633 dst = fc->security;
634
635 if (src->fsdefault) {
636 dst->fsdefault = kstrdup(src->fsdefault, GFP_KERNEL);
637 if (!dst->fsdefault)
638 return -ENOMEM;
639 }
640 if (src->fsfloor) {
641 dst->fsfloor = kstrdup(src->fsfloor, GFP_KERNEL);
642 if (!dst->fsfloor)
643 return -ENOMEM;
644 }
645 if (src->fshat) {
646 dst->fshat = kstrdup(src->fshat, GFP_KERNEL);
647 if (!dst->fshat)
648 return -ENOMEM;
649 }
650 if (src->fsroot) {
651 dst->fsroot = kstrdup(src->fsroot, GFP_KERNEL);
652 if (!dst->fsroot)
653 return -ENOMEM;
654 }
655 if (src->fstransmute) {
656 dst->fstransmute = kstrdup(src->fstransmute, GFP_KERNEL);
657 if (!dst->fstransmute)
658 return -ENOMEM;
659 }
660 return 0;
661}
662
Al Virod7167b12019-09-07 07:23:15 -0400663static const struct fs_parameter_spec smack_fs_parameters[] = {
Casey Schaufler6e7739f2019-05-31 11:53:33 +0100664 fsparam_string("smackfsdef", Opt_fsdefault),
665 fsparam_string("smackfsdefault", Opt_fsdefault),
666 fsparam_string("smackfsfloor", Opt_fsfloor),
667 fsparam_string("smackfshat", Opt_fshat),
668 fsparam_string("smackfsroot", Opt_fsroot),
669 fsparam_string("smackfstransmute", Opt_fstransmute),
David Howells2febd252018-11-01 23:07:24 +0000670 {}
671};
672
David Howells2febd252018-11-01 23:07:24 +0000673/**
674 * smack_fs_context_parse_param - Parse a single mount parameter
675 * @fc: The new filesystem context being constructed.
676 * @param: The parameter.
677 *
678 * Returns 0 on success, -ENOPARAM to pass the parameter on or anything else on
679 * error.
680 */
681static int smack_fs_context_parse_param(struct fs_context *fc,
682 struct fs_parameter *param)
683{
684 struct fs_parse_result result;
685 int opt, rc;
686
Al Virod7167b12019-09-07 07:23:15 -0400687 opt = fs_parse(fc, smack_fs_parameters, param, &result);
David Howells2febd252018-11-01 23:07:24 +0000688 if (opt < 0)
689 return opt;
690
691 rc = smack_add_opt(opt, param->string, &fc->security);
692 if (!rc)
693 param->string = NULL;
694 return rc;
695}
696
Al Virod2497e12018-12-16 01:37:06 -0500697static int smack_sb_eat_lsm_opts(char *options, void **mnt_opts)
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530698{
Al Virod2497e12018-12-16 01:37:06 -0500699 char *from = options, *to = options;
700 bool first = true;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530701
Al Viroc3300aa2018-12-16 01:52:24 -0500702 while (1) {
703 char *next = strchr(from, ',');
704 int token, len, rc;
705 char *arg = NULL;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530706
Al Viroc3300aa2018-12-16 01:52:24 -0500707 if (next)
708 len = next - from;
709 else
710 len = strlen(from);
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530711
Al Viroc3300aa2018-12-16 01:52:24 -0500712 token = match_opt_prefix(from, len, &arg);
Al Virod2497e12018-12-16 01:37:06 -0500713 if (token != Opt_error) {
714 arg = kmemdup_nul(arg, from + len - arg, GFP_KERNEL);
715 rc = smack_add_opt(token, arg, mnt_opts);
716 if (unlikely(rc)) {
717 kfree(arg);
718 if (*mnt_opts)
719 smack_free_mnt_opts(*mnt_opts);
720 *mnt_opts = NULL;
721 return rc;
722 }
723 } else {
724 if (!first) { // copy with preceding comma
725 from--;
726 len++;
727 }
728 if (to != from)
729 memmove(to, from, len);
730 to += len;
731 first = false;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530732 }
Al Viroc3300aa2018-12-16 01:52:24 -0500733 if (!from[len])
734 break;
735 from += len + 1;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530736 }
Al Virod2497e12018-12-16 01:37:06 -0500737 *to = '\0';
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530738 return 0;
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530739}
740
741/**
742 * smack_set_mnt_opts - set Smack specific mount options
Casey Schauflere114e472008-02-04 22:29:50 -0800743 * @sb: the file system superblock
luanshia1a07f22019-07-05 10:35:20 +0800744 * @mnt_opts: Smack mount options
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530745 * @kern_flags: mount option from kernel space or user space
746 * @set_kern_flags: where to store converted mount opts
Casey Schauflere114e472008-02-04 22:29:50 -0800747 *
748 * Returns 0 on success, an error code on failure
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530749 *
750 * Allow filesystems with binary mount data to explicitly set Smack mount
751 * labels.
Casey Schauflere114e472008-02-04 22:29:50 -0800752 */
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530753static int smack_set_mnt_opts(struct super_block *sb,
Al Viro204cc0c2018-12-13 13:41:47 -0500754 void *mnt_opts,
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530755 unsigned long kern_flags,
756 unsigned long *set_kern_flags)
Casey Schauflere114e472008-02-04 22:29:50 -0800757{
758 struct dentry *root = sb->s_root;
David Howellsc6f493d2015-03-17 22:26:22 +0000759 struct inode *inode = d_backing_inode(root);
Casey Schaufler1aea7802021-04-22 17:41:15 +0200760 struct superblock_smack *sp = smack_superblock(sb);
Casey Schauflere114e472008-02-04 22:29:50 -0800761 struct inode_smack *isp;
Casey Schaufler24ea1b62013-12-30 09:38:00 -0800762 struct smack_known *skp;
Al Viro12085b12018-12-13 15:18:05 -0500763 struct smack_mnt_opts *opts = mnt_opts;
764 bool transmute = false;
Casey Schauflere114e472008-02-04 22:29:50 -0800765
Seth Forshee9f50eda2015-09-23 15:16:06 -0500766 if (sp->smk_flags & SMK_SB_INITIALIZED)
Casey Schauflere114e472008-02-04 22:29:50 -0800767 return 0;
Casey Schauflereb982cb2012-05-23 17:46:58 -0700768
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700769 if (inode->i_security == NULL) {
770 int rc = lsm_inode_alloc(inode);
771
772 if (rc)
773 return rc;
774 }
775
Himanshu Shukla2097f592016-11-10 16:19:52 +0530776 if (!smack_privileged(CAP_MAC_ADMIN)) {
777 /*
778 * Unprivileged mounts don't get to specify Smack values.
779 */
Al Viro12085b12018-12-13 15:18:05 -0500780 if (opts)
Himanshu Shukla2097f592016-11-10 16:19:52 +0530781 return -EPERM;
782 /*
783 * Unprivileged mounts get root and default from the caller.
784 */
785 skp = smk_of_current();
786 sp->smk_root = skp;
787 sp->smk_default = skp;
788 /*
789 * For a handful of fs types with no user-controlled
790 * backing store it's okay to trust security labels
791 * in the filesystem. The rest are untrusted.
792 */
793 if (sb->s_user_ns != &init_user_ns &&
794 sb->s_magic != SYSFS_MAGIC && sb->s_magic != TMPFS_MAGIC &&
795 sb->s_magic != RAMFS_MAGIC) {
Al Viro12085b12018-12-13 15:18:05 -0500796 transmute = true;
Himanshu Shukla2097f592016-11-10 16:19:52 +0530797 sp->smk_flags |= SMK_SB_UNTRUSTED;
798 }
799 }
800
Seth Forshee9f50eda2015-09-23 15:16:06 -0500801 sp->smk_flags |= SMK_SB_INITIALIZED;
Casey Schauflere114e472008-02-04 22:29:50 -0800802
Al Viro12085b12018-12-13 15:18:05 -0500803 if (opts) {
804 if (opts->fsdefault) {
805 skp = smk_import_entry(opts->fsdefault, 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200806 if (IS_ERR(skp))
807 return PTR_ERR(skp);
808 sp->smk_default = skp;
Al Viro12085b12018-12-13 15:18:05 -0500809 }
810 if (opts->fsfloor) {
811 skp = smk_import_entry(opts->fsfloor, 0);
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530812 if (IS_ERR(skp))
813 return PTR_ERR(skp);
814 sp->smk_floor = skp;
Al Viro12085b12018-12-13 15:18:05 -0500815 }
816 if (opts->fshat) {
817 skp = smk_import_entry(opts->fshat, 0);
Vivek Trivedi3bf27892015-06-22 15:36:06 +0530818 if (IS_ERR(skp))
819 return PTR_ERR(skp);
820 sp->smk_hat = skp;
Al Viro12085b12018-12-13 15:18:05 -0500821 }
822 if (opts->fsroot) {
823 skp = smk_import_entry(opts->fsroot, 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200824 if (IS_ERR(skp))
825 return PTR_ERR(skp);
826 sp->smk_root = skp;
Al Viro12085b12018-12-13 15:18:05 -0500827 }
828 if (opts->fstransmute) {
829 skp = smk_import_entry(opts->fstransmute, 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +0200830 if (IS_ERR(skp))
831 return PTR_ERR(skp);
832 sp->smk_root = skp;
Al Viro12085b12018-12-13 15:18:05 -0500833 transmute = true;
Casey Schauflere114e472008-02-04 22:29:50 -0800834 }
835 }
836
837 /*
838 * Initialize the root inode.
839 */
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700840 init_inode_smack(inode, sp->smk_root);
Casey Schauflere114e472008-02-04 22:29:50 -0800841
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700842 if (transmute) {
843 isp = smack_inode(inode);
Casey Schauflere830b392013-05-22 18:43:07 -0700844 isp->smk_flags |= SMK_INODE_TRANSMUTE;
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700845 }
Casey Schauflere830b392013-05-22 18:43:07 -0700846
Casey Schauflere114e472008-02-04 22:29:50 -0800847 return 0;
848}
849
850/**
851 * smack_sb_statfs - Smack check on statfs
852 * @dentry: identifies the file system in question
853 *
854 * Returns 0 if current can read the floor of the filesystem,
855 * and error code otherwise
856 */
857static int smack_sb_statfs(struct dentry *dentry)
858{
Casey Schaufler1aea7802021-04-22 17:41:15 +0200859 struct superblock_smack *sbp = smack_superblock(dentry->d_sb);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200860 int rc;
861 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -0800862
Eric Parisa2694342011-04-25 13:10:27 -0400863 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200864 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
865
866 rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -0700867 rc = smk_bu_current("statfs", sbp->smk_floor, MAY_READ, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +0200868 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -0800869}
870
Casey Schauflere114e472008-02-04 22:29:50 -0800871/*
Casey Schaufler676dac42010-12-02 06:43:39 -0800872 * BPRM hooks
873 */
874
Casey Schauflerce8a4322011-09-29 18:21:01 -0700875/**
Eric W. Biedermanb8bff592020-03-22 15:46:24 -0500876 * smack_bprm_creds_for_exec - Update bprm->cred if needed for exec
Casey Schauflerce8a4322011-09-29 18:21:01 -0700877 * @bprm: the exec information
878 *
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100879 * Returns 0 if it gets a blob, -EPERM if exec forbidden and -ENOMEM otherwise
Casey Schauflerce8a4322011-09-29 18:21:01 -0700880 */
Eric W. Biedermanb8bff592020-03-22 15:46:24 -0500881static int smack_bprm_creds_for_exec(struct linux_binprm *bprm)
Casey Schaufler676dac42010-12-02 06:43:39 -0800882{
Al Viro496ad9a2013-01-23 17:07:38 -0500883 struct inode *inode = file_inode(bprm->file);
Casey Schauflerb17103a2018-11-09 16:12:56 -0800884 struct task_smack *bsp = smack_cred(bprm->cred);
Casey Schaufler676dac42010-12-02 06:43:39 -0800885 struct inode_smack *isp;
Seth Forshee809c02e2016-04-26 14:36:22 -0500886 struct superblock_smack *sbsp;
Casey Schaufler676dac42010-12-02 06:43:39 -0800887 int rc;
888
Casey Schauflerfb4021b2018-11-12 12:43:01 -0800889 isp = smack_inode(inode);
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300890 if (isp->smk_task == NULL || isp->smk_task == bsp->smk_task)
Casey Schaufler676dac42010-12-02 06:43:39 -0800891 return 0;
892
Casey Schaufler1aea7802021-04-22 17:41:15 +0200893 sbsp = smack_superblock(inode->i_sb);
Seth Forshee809c02e2016-04-26 14:36:22 -0500894 if ((sbsp->smk_flags & SMK_SB_UNTRUSTED) &&
895 isp->smk_task != sbsp->smk_root)
896 return 0;
897
Eric W. Biederman9227dd22017-01-23 17:26:31 +1300898 if (bprm->unsafe & LSM_UNSAFE_PTRACE) {
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100899 struct task_struct *tracer;
900 rc = 0;
901
902 rcu_read_lock();
903 tracer = ptrace_parent(current);
904 if (likely(tracer != NULL))
905 rc = smk_ptrace_rule_check(tracer,
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200906 isp->smk_task,
Lukasz Pawelczyk56638842014-03-11 17:07:05 +0100907 PTRACE_MODE_ATTACH,
908 __func__);
909 rcu_read_unlock();
910
911 if (rc != 0)
912 return rc;
Jann Horn3675f052019-07-04 20:44:44 +0200913 }
914 if (bprm->unsafe & ~LSM_UNSAFE_PTRACE)
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300915 return -EPERM;
Casey Schaufler676dac42010-12-02 06:43:39 -0800916
Jarkko Sakkinen84088ba2011-10-07 09:27:53 +0300917 bsp->smk_task = isp->smk_task;
918 bprm->per_clear |= PER_CLEAR_ON_SETID;
Casey Schaufler676dac42010-12-02 06:43:39 -0800919
Kees Cookccbb6e12017-07-18 15:25:26 -0700920 /* Decide if this is a secure exec. */
921 if (bsp->smk_task != bsp->smk_forked)
922 bprm->secureexec = 1;
923
Casey Schaufler676dac42010-12-02 06:43:39 -0800924 return 0;
925}
926
927/*
Casey Schauflere114e472008-02-04 22:29:50 -0800928 * Inode hooks
929 */
930
931/**
932 * smack_inode_alloc_security - allocate an inode blob
Randy Dunlap251a2a92009-02-18 11:42:33 -0800933 * @inode: the inode in need of a blob
Casey Schauflere114e472008-02-04 22:29:50 -0800934 *
luanshia1a07f22019-07-05 10:35:20 +0800935 * Returns 0
Casey Schauflere114e472008-02-04 22:29:50 -0800936 */
937static int smack_inode_alloc_security(struct inode *inode)
938{
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700939 struct smack_known *skp = smk_of_current();
940
Casey Schauflerafb1cbe32018-09-21 17:19:29 -0700941 init_inode_smack(inode, skp);
Casey Schauflere114e472008-02-04 22:29:50 -0800942 return 0;
943}
944
945/**
Casey Schauflere114e472008-02-04 22:29:50 -0800946 * smack_inode_init_security - copy out the smack from an inode
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +0200947 * @inode: the newly created inode
948 * @dir: containing directory object
Eric Paris2a7dba32011-02-01 11:05:39 -0500949 * @qstr: unused
Casey Schauflere114e472008-02-04 22:29:50 -0800950 * @name: where to put the attribute name
951 * @value: where to put the attribute value
952 * @len: where to put the length of the attribute
953 *
954 * Returns 0 if it all works out, -ENOMEM if there's no memory
955 */
956static int smack_inode_init_security(struct inode *inode, struct inode *dir,
Tetsuo Handa95489062013-07-25 05:44:02 +0900957 const struct qstr *qstr, const char **name,
Eric Paris2a7dba32011-02-01 11:05:39 -0500958 void **value, size_t *len)
Casey Schauflere114e472008-02-04 22:29:50 -0800959{
Casey Schauflerfb4021b2018-11-12 12:43:01 -0800960 struct inode_smack *issp = smack_inode(inode);
Casey Schaufler2f823ff2013-05-22 18:43:03 -0700961 struct smack_known *skp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200962 struct smack_known *isp = smk_of_inode(inode);
963 struct smack_known *dsp = smk_of_inode(dir);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800964 int may;
Casey Schauflere114e472008-02-04 22:29:50 -0800965
Tetsuo Handa95489062013-07-25 05:44:02 +0900966 if (name)
967 *name = XATTR_SMACK_SUFFIX;
Casey Schauflere114e472008-02-04 22:29:50 -0800968
Lukasz Pawelczyk68390cc2014-11-26 15:31:07 +0100969 if (value && len) {
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800970 rcu_read_lock();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200971 may = smk_access_entry(skp->smk_known, dsp->smk_known,
972 &skp->smk_rules);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800973 rcu_read_unlock();
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200974
975 /*
976 * If the access rule allows transmutation and
977 * the directory requests transmutation then
978 * by all means transmute.
Casey Schaufler2267b132012-03-13 19:14:19 -0700979 * Mark the inode as changed.
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200980 */
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800981 if (may > 0 && ((may & MAY_TRANSMUTE) != 0) &&
Casey Schaufler2267b132012-03-13 19:14:19 -0700982 smk_inode_transmutable(dir)) {
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200983 isp = dsp;
Casey Schaufler2267b132012-03-13 19:14:19 -0700984 issp->smk_flags |= SMK_INODE_CHANGED;
985 }
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200986
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200987 *value = kstrdup(isp->smk_known, GFP_NOFS);
Casey Schauflere114e472008-02-04 22:29:50 -0800988 if (*value == NULL)
989 return -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -0800990
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +0200991 *len = strlen(isp->smk_known);
Lukasz Pawelczyk68390cc2014-11-26 15:31:07 +0100992 }
Casey Schauflere114e472008-02-04 22:29:50 -0800993
994 return 0;
995}
996
997/**
998 * smack_inode_link - Smack check on link
999 * @old_dentry: the existing object
1000 * @dir: unused
1001 * @new_dentry: the new object
1002 *
1003 * Returns 0 if access is permitted, an error code otherwise
1004 */
1005static int smack_inode_link(struct dentry *old_dentry, struct inode *dir,
1006 struct dentry *new_dentry)
1007{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001008 struct smack_known *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001009 struct smk_audit_info ad;
1010 int rc;
1011
Eric Parisa2694342011-04-25 13:10:27 -04001012 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001013 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001014
David Howellsc6f493d2015-03-17 22:26:22 +00001015 isp = smk_of_inode(d_backing_inode(old_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001016 rc = smk_curacc(isp, MAY_WRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001017 rc = smk_bu_inode(d_backing_inode(old_dentry), MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001018
David Howells88025652015-01-29 12:02:32 +00001019 if (rc == 0 && d_is_positive(new_dentry)) {
David Howellsc6f493d2015-03-17 22:26:22 +00001020 isp = smk_of_inode(d_backing_inode(new_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001021 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
1022 rc = smk_curacc(isp, MAY_WRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001023 rc = smk_bu_inode(d_backing_inode(new_dentry), MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001024 }
1025
1026 return rc;
1027}
1028
1029/**
1030 * smack_inode_unlink - Smack check on inode deletion
1031 * @dir: containing directory object
1032 * @dentry: file to unlink
1033 *
1034 * Returns 0 if current can write the containing directory
1035 * and the object, error code otherwise
1036 */
1037static int smack_inode_unlink(struct inode *dir, struct dentry *dentry)
1038{
David Howellsc6f493d2015-03-17 22:26:22 +00001039 struct inode *ip = d_backing_inode(dentry);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001040 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001041 int rc;
1042
Eric Parisa2694342011-04-25 13:10:27 -04001043 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001044 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1045
Casey Schauflere114e472008-02-04 22:29:50 -08001046 /*
1047 * You need write access to the thing you're unlinking
1048 */
Etienne Bassetecfcc532009-04-08 20:40:06 +02001049 rc = smk_curacc(smk_of_inode(ip), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001050 rc = smk_bu_inode(ip, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001051 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08001052 /*
1053 * You also need write access to the containing directory
1054 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +04001055 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001056 smk_ad_setfield_u_fs_inode(&ad, dir);
1057 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001058 rc = smk_bu_inode(dir, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001059 }
Casey Schauflere114e472008-02-04 22:29:50 -08001060 return rc;
1061}
1062
1063/**
1064 * smack_inode_rmdir - Smack check on directory deletion
1065 * @dir: containing directory object
1066 * @dentry: directory to unlink
1067 *
1068 * Returns 0 if current can write the containing directory
1069 * and the directory, error code otherwise
1070 */
1071static int smack_inode_rmdir(struct inode *dir, struct dentry *dentry)
1072{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001073 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001074 int rc;
1075
Eric Parisa2694342011-04-25 13:10:27 -04001076 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001077 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1078
Casey Schauflere114e472008-02-04 22:29:50 -08001079 /*
1080 * You need write access to the thing you're removing
1081 */
David Howellsc6f493d2015-03-17 22:26:22 +00001082 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1083 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001084 if (rc == 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08001085 /*
1086 * You also need write access to the containing directory
1087 */
Igor Zhbanovcdb56b62013-03-19 13:49:47 +04001088 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001089 smk_ad_setfield_u_fs_inode(&ad, dir);
1090 rc = smk_curacc(smk_of_inode(dir), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001091 rc = smk_bu_inode(dir, MAY_WRITE, rc);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001092 }
Casey Schauflere114e472008-02-04 22:29:50 -08001093
1094 return rc;
1095}
1096
1097/**
1098 * smack_inode_rename - Smack check on rename
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001099 * @old_inode: unused
1100 * @old_dentry: the old object
1101 * @new_inode: unused
1102 * @new_dentry: the new object
Casey Schauflere114e472008-02-04 22:29:50 -08001103 *
1104 * Read and write access is required on both the old and
1105 * new directories.
1106 *
1107 * Returns 0 if access is permitted, an error code otherwise
1108 */
1109static int smack_inode_rename(struct inode *old_inode,
1110 struct dentry *old_dentry,
1111 struct inode *new_inode,
1112 struct dentry *new_dentry)
1113{
1114 int rc;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001115 struct smack_known *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001116 struct smk_audit_info ad;
1117
Eric Parisa2694342011-04-25 13:10:27 -04001118 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001119 smk_ad_setfield_u_fs_path_dentry(&ad, old_dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001120
David Howellsc6f493d2015-03-17 22:26:22 +00001121 isp = smk_of_inode(d_backing_inode(old_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001122 rc = smk_curacc(isp, MAY_READWRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001123 rc = smk_bu_inode(d_backing_inode(old_dentry), MAY_READWRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001124
David Howells88025652015-01-29 12:02:32 +00001125 if (rc == 0 && d_is_positive(new_dentry)) {
David Howellsc6f493d2015-03-17 22:26:22 +00001126 isp = smk_of_inode(d_backing_inode(new_dentry));
Etienne Bassetecfcc532009-04-08 20:40:06 +02001127 smk_ad_setfield_u_fs_path_dentry(&ad, new_dentry);
1128 rc = smk_curacc(isp, MAY_READWRITE, &ad);
David Howellsc6f493d2015-03-17 22:26:22 +00001129 rc = smk_bu_inode(d_backing_inode(new_dentry), MAY_READWRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001130 }
Casey Schauflere114e472008-02-04 22:29:50 -08001131 return rc;
1132}
1133
1134/**
1135 * smack_inode_permission - Smack version of permission()
1136 * @inode: the inode in question
1137 * @mask: the access requested
Casey Schauflere114e472008-02-04 22:29:50 -08001138 *
1139 * This is the important Smack hook.
1140 *
luanshia1a07f22019-07-05 10:35:20 +08001141 * Returns 0 if access is permitted, an error code otherwise
Casey Schauflere114e472008-02-04 22:29:50 -08001142 */
Al Viroe74f71e2011-06-20 19:38:15 -04001143static int smack_inode_permission(struct inode *inode, int mask)
Casey Schauflere114e472008-02-04 22:29:50 -08001144{
Casey Schaufler1aea7802021-04-22 17:41:15 +02001145 struct superblock_smack *sbsp = smack_superblock(inode->i_sb);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001146 struct smk_audit_info ad;
Al Viroe74f71e2011-06-20 19:38:15 -04001147 int no_block = mask & MAY_NOT_BLOCK;
Casey Schauflerd166c802014-08-27 14:51:27 -07001148 int rc;
Eric Parisd09ca732010-07-23 11:43:57 -04001149
1150 mask &= (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND);
Casey Schauflere114e472008-02-04 22:29:50 -08001151 /*
1152 * No permission to check. Existence test. Yup, it's there.
1153 */
1154 if (mask == 0)
1155 return 0;
Andi Kleen8c9e80e2011-04-21 17:23:19 -07001156
Seth Forshee9f50eda2015-09-23 15:16:06 -05001157 if (sbsp->smk_flags & SMK_SB_UNTRUSTED) {
1158 if (smk_of_inode(inode) != sbsp->smk_root)
1159 return -EACCES;
1160 }
1161
Andi Kleen8c9e80e2011-04-21 17:23:19 -07001162 /* May be droppable after audit */
Al Viroe74f71e2011-06-20 19:38:15 -04001163 if (no_block)
Andi Kleen8c9e80e2011-04-21 17:23:19 -07001164 return -ECHILD;
Eric Parisf48b7392011-04-25 12:54:27 -04001165 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_INODE);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001166 smk_ad_setfield_u_fs_inode(&ad, inode);
Casey Schauflerd166c802014-08-27 14:51:27 -07001167 rc = smk_curacc(smk_of_inode(inode), mask, &ad);
1168 rc = smk_bu_inode(inode, mask, rc);
1169 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001170}
1171
1172/**
1173 * smack_inode_setattr - Smack check for setting attributes
1174 * @dentry: the object
1175 * @iattr: for the force flag
1176 *
1177 * Returns 0 if access is permitted, an error code otherwise
1178 */
1179static int smack_inode_setattr(struct dentry *dentry, struct iattr *iattr)
1180{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001181 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001182 int rc;
1183
Casey Schauflere114e472008-02-04 22:29:50 -08001184 /*
1185 * Need to allow for clearing the setuid bit.
1186 */
1187 if (iattr->ia_valid & ATTR_FORCE)
1188 return 0;
Eric Parisa2694342011-04-25 13:10:27 -04001189 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001190 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflere114e472008-02-04 22:29:50 -08001191
David Howellsc6f493d2015-03-17 22:26:22 +00001192 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1193 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001194 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001195}
1196
1197/**
1198 * smack_inode_getattr - Smack check for getting attributes
luanshia1a07f22019-07-05 10:35:20 +08001199 * @path: path to extract the info from
Casey Schauflere114e472008-02-04 22:29:50 -08001200 *
1201 * Returns 0 if access is permitted, an error code otherwise
1202 */
Al Viro3f7036a2015-03-08 19:28:30 -04001203static int smack_inode_getattr(const struct path *path)
Casey Schauflere114e472008-02-04 22:29:50 -08001204{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001205 struct smk_audit_info ad;
David Howellsc6f493d2015-03-17 22:26:22 +00001206 struct inode *inode = d_backing_inode(path->dentry);
Casey Schauflerd166c802014-08-27 14:51:27 -07001207 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001208
Eric Parisf48b7392011-04-25 12:54:27 -04001209 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Al Viro3f7036a2015-03-08 19:28:30 -04001210 smk_ad_setfield_u_fs_path(&ad, *path);
1211 rc = smk_curacc(smk_of_inode(inode), MAY_READ, &ad);
1212 rc = smk_bu_inode(inode, MAY_READ, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001213 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001214}
1215
1216/**
1217 * smack_inode_setxattr - Smack check for setting xattrs
Casey Schauflerb57d0202021-10-13 14:56:43 -07001218 * @mnt_userns: active user namespace
Casey Schauflere114e472008-02-04 22:29:50 -08001219 * @dentry: the object
1220 * @name: name of the attribute
Lukasz Pawelczyke95ef492014-08-29 17:02:53 +02001221 * @value: value of the attribute
1222 * @size: size of the value
Casey Schauflere114e472008-02-04 22:29:50 -08001223 * @flags: unused
1224 *
1225 * This protects the Smack attribute explicitly.
1226 *
1227 * Returns 0 if access is permitted, an error code otherwise
1228 */
Christian Brauner71bc3562021-01-21 14:19:29 +01001229static int smack_inode_setxattr(struct user_namespace *mnt_userns,
1230 struct dentry *dentry, const char *name,
David Howells8f0cfa52008-04-29 00:59:41 -07001231 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -08001232{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001233 struct smk_audit_info ad;
Casey Schaufler19760ad2013-12-16 16:27:26 -08001234 struct smack_known *skp;
1235 int check_priv = 0;
1236 int check_import = 0;
1237 int check_star = 0;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001238 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001239
Casey Schaufler19760ad2013-12-16 16:27:26 -08001240 /*
1241 * Check label validity here so import won't fail in post_setxattr
1242 */
Casey Schauflerbcdca222008-02-23 15:24:04 -08001243 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1244 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler19760ad2013-12-16 16:27:26 -08001245 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0) {
1246 check_priv = 1;
1247 check_import = 1;
1248 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
1249 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
1250 check_priv = 1;
1251 check_import = 1;
1252 check_star = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001253 } else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
Casey Schaufler19760ad2013-12-16 16:27:26 -08001254 check_priv = 1;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001255 if (size != TRANS_TRUE_SIZE ||
1256 strncmp(value, TRANS_TRUE, TRANS_TRUE_SIZE) != 0)
1257 rc = -EINVAL;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001258 } else
1259 rc = cap_inode_setxattr(dentry, name, value, size, flags);
1260
Casey Schaufler19760ad2013-12-16 16:27:26 -08001261 if (check_priv && !smack_privileged(CAP_MAC_ADMIN))
1262 rc = -EPERM;
1263
1264 if (rc == 0 && check_import) {
Konstantin Khlebnikovb862e562014-08-07 20:52:43 +04001265 skp = size ? smk_import_entry(value, size) : NULL;
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001266 if (IS_ERR(skp))
1267 rc = PTR_ERR(skp);
1268 else if (skp == NULL || (check_star &&
Casey Schaufler19760ad2013-12-16 16:27:26 -08001269 (skp == &smack_known_star || skp == &smack_known_web)))
1270 rc = -EINVAL;
1271 }
1272
Eric Parisa2694342011-04-25 13:10:27 -04001273 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001274 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1275
Casey Schauflerd166c802014-08-27 14:51:27 -07001276 if (rc == 0) {
David Howellsc6f493d2015-03-17 22:26:22 +00001277 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1278 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001279 }
Casey Schauflerbcdca222008-02-23 15:24:04 -08001280
1281 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001282}
1283
1284/**
1285 * smack_inode_post_setxattr - Apply the Smack update approved above
1286 * @dentry: object
1287 * @name: attribute name
1288 * @value: attribute value
1289 * @size: attribute size
1290 * @flags: unused
1291 *
1292 * Set the pointer in the inode blob to the entry found
1293 * in the master label list.
1294 */
David Howells8f0cfa52008-04-29 00:59:41 -07001295static void smack_inode_post_setxattr(struct dentry *dentry, const char *name,
1296 const void *value, size_t size, int flags)
Casey Schauflere114e472008-02-04 22:29:50 -08001297{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001298 struct smack_known *skp;
Casey Schauflerfb4021b2018-11-12 12:43:01 -08001299 struct inode_smack *isp = smack_inode(d_backing_inode(dentry));
Casey Schaufler676dac42010-12-02 06:43:39 -08001300
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001301 if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0) {
1302 isp->smk_flags |= SMK_INODE_TRANSMUTE;
1303 return;
1304 }
1305
Casey Schaufler676dac42010-12-02 06:43:39 -08001306 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001307 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001308 if (!IS_ERR(skp))
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001309 isp->smk_inode = skp;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001310 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001311 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001312 if (!IS_ERR(skp))
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001313 isp->smk_task = skp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001314 } else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
José Bollo9598f4c2014-04-03 13:48:41 +02001315 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02001316 if (!IS_ERR(skp))
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001317 isp->smk_mmap = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001318 }
Casey Schauflere114e472008-02-04 22:29:50 -08001319
1320 return;
1321}
1322
Casey Schauflerce8a4322011-09-29 18:21:01 -07001323/**
Casey Schauflere114e472008-02-04 22:29:50 -08001324 * smack_inode_getxattr - Smack check on getxattr
1325 * @dentry: the object
1326 * @name: unused
1327 *
1328 * Returns 0 if access is permitted, an error code otherwise
1329 */
David Howells8f0cfa52008-04-29 00:59:41 -07001330static int smack_inode_getxattr(struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -08001331{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001332 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001333 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001334
Eric Parisa2694342011-04-25 13:10:27 -04001335 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001336 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
1337
David Howellsc6f493d2015-03-17 22:26:22 +00001338 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_READ, &ad);
1339 rc = smk_bu_inode(d_backing_inode(dentry), MAY_READ, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07001340 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001341}
1342
Casey Schauflerce8a4322011-09-29 18:21:01 -07001343/**
Casey Schauflere114e472008-02-04 22:29:50 -08001344 * smack_inode_removexattr - Smack check on removexattr
Casey Schauflerb57d0202021-10-13 14:56:43 -07001345 * @mnt_userns: active user namespace
Casey Schauflere114e472008-02-04 22:29:50 -08001346 * @dentry: the object
1347 * @name: name of the attribute
1348 *
1349 * Removing the Smack attribute requires CAP_MAC_ADMIN
1350 *
1351 * Returns 0 if access is permitted, an error code otherwise
1352 */
Christian Brauner71bc3562021-01-21 14:19:29 +01001353static int smack_inode_removexattr(struct user_namespace *mnt_userns,
1354 struct dentry *dentry, const char *name)
Casey Schauflere114e472008-02-04 22:29:50 -08001355{
Casey Schaufler676dac42010-12-02 06:43:39 -08001356 struct inode_smack *isp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001357 struct smk_audit_info ad;
Casey Schauflerbcdca222008-02-23 15:24:04 -08001358 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001359
Casey Schauflerbcdca222008-02-23 15:24:04 -08001360 if (strcmp(name, XATTR_NAME_SMACK) == 0 ||
1361 strcmp(name, XATTR_NAME_SMACKIPIN) == 0 ||
Casey Schaufler676dac42010-12-02 06:43:39 -08001362 strcmp(name, XATTR_NAME_SMACKIPOUT) == 0 ||
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02001363 strcmp(name, XATTR_NAME_SMACKEXEC) == 0 ||
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001364 strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0 ||
Pankaj Kumar5e9ab592013-12-13 15:12:22 +05301365 strcmp(name, XATTR_NAME_SMACKMMAP) == 0) {
Casey Schaufler1880eff2012-06-05 15:28:30 -07001366 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflerbcdca222008-02-23 15:24:04 -08001367 rc = -EPERM;
1368 } else
Christian Brauner71bc3562021-01-21 14:19:29 +01001369 rc = cap_inode_removexattr(mnt_userns, dentry, name);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001370
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001371 if (rc != 0)
1372 return rc;
1373
Eric Parisa2694342011-04-25 13:10:27 -04001374 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001375 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
Casey Schauflerbcdca222008-02-23 15:24:04 -08001376
David Howellsc6f493d2015-03-17 22:26:22 +00001377 rc = smk_curacc(smk_of_inode(d_backing_inode(dentry)), MAY_WRITE, &ad);
1378 rc = smk_bu_inode(d_backing_inode(dentry), MAY_WRITE, rc);
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001379 if (rc != 0)
1380 return rc;
1381
Casey Schauflerfb4021b2018-11-12 12:43:01 -08001382 isp = smack_inode(d_backing_inode(dentry));
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001383 /*
1384 * Don't do anything special for these.
1385 * XATTR_NAME_SMACKIPIN
1386 * XATTR_NAME_SMACKIPOUT
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001387 */
José Bollo80124952016-01-12 21:23:40 +01001388 if (strcmp(name, XATTR_NAME_SMACK) == 0) {
Al Virofc640052016-04-10 01:33:30 -04001389 struct super_block *sbp = dentry->d_sb;
Casey Schaufler1aea7802021-04-22 17:41:15 +02001390 struct superblock_smack *sbsp = smack_superblock(sbp);
José Bollo80124952016-01-12 21:23:40 +01001391
1392 isp->smk_inode = sbsp->smk_default;
1393 } else if (strcmp(name, XATTR_NAME_SMACKEXEC) == 0)
Casey Schaufler676dac42010-12-02 06:43:39 -08001394 isp->smk_task = NULL;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001395 else if (strcmp(name, XATTR_NAME_SMACKMMAP) == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001396 isp->smk_mmap = NULL;
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001397 else if (strcmp(name, XATTR_NAME_SMACKTRANSMUTE) == 0)
1398 isp->smk_flags &= ~SMK_INODE_TRANSMUTE;
Casey Schaufler676dac42010-12-02 06:43:39 -08001399
Casey Schauflerf59bdfb2014-04-10 16:35:36 -07001400 return 0;
Casey Schauflere114e472008-02-04 22:29:50 -08001401}
1402
1403/**
1404 * smack_inode_getsecurity - get smack xattrs
Casey Schauflerb57d0202021-10-13 14:56:43 -07001405 * @mnt_userns: active user namespace
Casey Schauflere114e472008-02-04 22:29:50 -08001406 * @inode: the object
1407 * @name: attribute name
1408 * @buffer: where to put the result
Casey Schaufler57e7ba02017-09-19 09:39:08 -07001409 * @alloc: duplicate memory
Casey Schauflere114e472008-02-04 22:29:50 -08001410 *
1411 * Returns the size of the attribute or an error code
1412 */
Christian Brauner71bc3562021-01-21 14:19:29 +01001413static int smack_inode_getsecurity(struct user_namespace *mnt_userns,
1414 struct inode *inode, const char *name,
1415 void **buffer, bool alloc)
Casey Schauflere114e472008-02-04 22:29:50 -08001416{
1417 struct socket_smack *ssp;
1418 struct socket *sock;
1419 struct super_block *sbp;
1420 struct inode *ip = (struct inode *)inode;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001421 struct smack_known *isp;
Casey Schauflere114e472008-02-04 22:29:50 -08001422
Casey Schaufler57e7ba02017-09-19 09:39:08 -07001423 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0)
Casey Schauflere114e472008-02-04 22:29:50 -08001424 isp = smk_of_inode(inode);
Casey Schaufler57e7ba02017-09-19 09:39:08 -07001425 else {
1426 /*
1427 * The rest of the Smack xattrs are only on sockets.
1428 */
1429 sbp = ip->i_sb;
1430 if (sbp->s_magic != SOCKFS_MAGIC)
1431 return -EOPNOTSUPP;
1432
1433 sock = SOCKET_I(ip);
1434 if (sock == NULL || sock->sk == NULL)
1435 return -EOPNOTSUPP;
1436
1437 ssp = sock->sk->sk_security;
1438
1439 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
1440 isp = ssp->smk_in;
1441 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0)
1442 isp = ssp->smk_out;
1443 else
1444 return -EOPNOTSUPP;
Casey Schauflere114e472008-02-04 22:29:50 -08001445 }
1446
Casey Schaufler57e7ba02017-09-19 09:39:08 -07001447 if (alloc) {
1448 *buffer = kstrdup(isp->smk_known, GFP_KERNEL);
1449 if (*buffer == NULL)
1450 return -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -08001451 }
1452
Casey Schaufler57e7ba02017-09-19 09:39:08 -07001453 return strlen(isp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08001454}
1455
1456
1457/**
1458 * smack_inode_listsecurity - list the Smack attributes
1459 * @inode: the object
1460 * @buffer: where they go
1461 * @buffer_size: size of buffer
Casey Schauflere114e472008-02-04 22:29:50 -08001462 */
1463static int smack_inode_listsecurity(struct inode *inode, char *buffer,
1464 size_t buffer_size)
1465{
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001466 int len = sizeof(XATTR_NAME_SMACK);
Casey Schauflere114e472008-02-04 22:29:50 -08001467
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001468 if (buffer != NULL && len <= buffer_size)
Casey Schauflere114e472008-02-04 22:29:50 -08001469 memcpy(buffer, XATTR_NAME_SMACK, len);
Konstantin Khlebnikovfd5c9d22014-08-07 20:52:33 +04001470
1471 return len;
Casey Schauflere114e472008-02-04 22:29:50 -08001472}
1473
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001474/**
1475 * smack_inode_getsecid - Extract inode's security id
1476 * @inode: inode to extract the info from
1477 * @secid: where result will be saved
1478 */
Andreas Gruenbacherd6335d72015-12-24 11:09:39 -05001479static void smack_inode_getsecid(struct inode *inode, u32 *secid)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001480{
Casey Schaufler0f8983c2018-06-01 10:45:12 -07001481 struct smack_known *skp = smk_of_inode(inode);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001482
Casey Schaufler0f8983c2018-06-01 10:45:12 -07001483 *secid = skp->smk_secid;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10001484}
1485
Casey Schauflere114e472008-02-04 22:29:50 -08001486/*
1487 * File Hooks
1488 */
1489
Casey Schaufler491a0b02016-01-26 15:08:35 -08001490/*
1491 * There is no smack_file_permission hook
Casey Schauflere114e472008-02-04 22:29:50 -08001492 *
1493 * Should access checks be done on each read or write?
1494 * UNICOS and SELinux say yes.
1495 * Trusted Solaris, Trusted Irix, and just about everyone else says no.
1496 *
1497 * I'll say no for now. Smack does not do the frequent
1498 * label changing that SELinux does.
1499 */
Casey Schauflere114e472008-02-04 22:29:50 -08001500
1501/**
1502 * smack_file_alloc_security - assign a file security blob
1503 * @file: the object
1504 *
1505 * The security blob for a file is a pointer to the master
1506 * label list, so no allocation is done.
1507 *
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001508 * f_security is the owner security information. It
1509 * isn't used on file access checks, it's for send_sigio.
1510 *
Casey Schauflere114e472008-02-04 22:29:50 -08001511 * Returns 0
1512 */
1513static int smack_file_alloc_security(struct file *file)
1514{
Casey Schauflerf28952a2018-11-12 09:38:53 -08001515 struct smack_known **blob = smack_file(file);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001516
Casey Schauflerf28952a2018-11-12 09:38:53 -08001517 *blob = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08001518 return 0;
1519}
1520
1521/**
Casey Schauflere114e472008-02-04 22:29:50 -08001522 * smack_file_ioctl - Smack check on ioctls
1523 * @file: the object
1524 * @cmd: what to do
1525 * @arg: unused
1526 *
1527 * Relies heavily on the correct use of the ioctl command conventions.
1528 *
1529 * Returns 0 if allowed, error code otherwise
1530 */
1531static int smack_file_ioctl(struct file *file, unsigned int cmd,
1532 unsigned long arg)
1533{
1534 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001535 struct smk_audit_info ad;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001536 struct inode *inode = file_inode(file);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001537
Seung-Woo Kim83a1e532016-12-12 17:35:26 +09001538 if (unlikely(IS_PRIVATE(inode)))
1539 return 0;
1540
Eric Parisf48b7392011-04-25 12:54:27 -04001541 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001542 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schauflere114e472008-02-04 22:29:50 -08001543
Casey Schauflerd166c802014-08-27 14:51:27 -07001544 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001545 rc = smk_curacc(smk_of_inode(inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001546 rc = smk_bu_file(file, MAY_WRITE, rc);
1547 }
Casey Schauflere114e472008-02-04 22:29:50 -08001548
Casey Schauflerd166c802014-08-27 14:51:27 -07001549 if (rc == 0 && (_IOC_DIR(cmd) & _IOC_READ)) {
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001550 rc = smk_curacc(smk_of_inode(inode), MAY_READ, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001551 rc = smk_bu_file(file, MAY_READ, rc);
1552 }
Casey Schauflere114e472008-02-04 22:29:50 -08001553
1554 return rc;
1555}
1556
1557/**
1558 * smack_file_lock - Smack check on file locking
1559 * @file: the object
Randy Dunlap251a2a92009-02-18 11:42:33 -08001560 * @cmd: unused
Casey Schauflere114e472008-02-04 22:29:50 -08001561 *
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001562 * Returns 0 if current has lock access, error code otherwise
Casey Schauflere114e472008-02-04 22:29:50 -08001563 */
1564static int smack_file_lock(struct file *file, unsigned int cmd)
1565{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001566 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07001567 int rc;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001568 struct inode *inode = file_inode(file);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001569
Seung-Woo Kim83a1e532016-12-12 17:35:26 +09001570 if (unlikely(IS_PRIVATE(inode)))
1571 return 0;
1572
Eric Paris92f42502011-04-25 13:15:55 -04001573 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1574 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001575 rc = smk_curacc(smk_of_inode(inode), MAY_LOCK, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001576 rc = smk_bu_file(file, MAY_LOCK, rc);
1577 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001578}
1579
1580/**
1581 * smack_file_fcntl - Smack check on fcntl
1582 * @file: the object
1583 * @cmd: what action to check
1584 * @arg: unused
1585 *
Casey Schaufler531f1d42011-09-19 12:41:42 -07001586 * Generally these operations are harmless.
1587 * File locking operations present an obvious mechanism
1588 * for passing information, so they require write access.
1589 *
Casey Schauflere114e472008-02-04 22:29:50 -08001590 * Returns 0 if current has access, error code otherwise
1591 */
1592static int smack_file_fcntl(struct file *file, unsigned int cmd,
1593 unsigned long arg)
1594{
Etienne Bassetecfcc532009-04-08 20:40:06 +02001595 struct smk_audit_info ad;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001596 int rc = 0;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001597 struct inode *inode = file_inode(file);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001598
Seung-Woo Kim83a1e532016-12-12 17:35:26 +09001599 if (unlikely(IS_PRIVATE(inode)))
1600 return 0;
1601
Casey Schauflere114e472008-02-04 22:29:50 -08001602 switch (cmd) {
Casey Schauflere114e472008-02-04 22:29:50 -08001603 case F_GETLK:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001604 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001605 case F_SETLK:
1606 case F_SETLKW:
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001607 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1608 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001609 rc = smk_curacc(smk_of_inode(inode), MAY_LOCK, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001610 rc = smk_bu_file(file, MAY_LOCK, rc);
Casey Schauflerc0ab6e52013-10-11 18:06:39 -07001611 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001612 case F_SETOWN:
1613 case F_SETSIG:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001614 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1615 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001616 rc = smk_curacc(smk_of_inode(inode), MAY_WRITE, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001617 rc = smk_bu_file(file, MAY_WRITE, rc);
Casey Schauflere114e472008-02-04 22:29:50 -08001618 break;
1619 default:
Casey Schaufler531f1d42011-09-19 12:41:42 -07001620 break;
Casey Schauflere114e472008-02-04 22:29:50 -08001621 }
1622
1623 return rc;
1624}
1625
1626/**
Casey Schauflerb57d0202021-10-13 14:56:43 -07001627 * smack_mmap_file - Check permissions for a mmap operation.
1628 * @file: contains the file structure for file to map (may be NULL).
1629 * @reqprot: contains the protection requested by the application.
1630 * @prot: contains the protection that will be applied by the kernel.
1631 * @flags: contains the operational flags.
1632 *
1633 * The @file may be NULL, e.g. if mapping anonymous memory.
1634 *
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001635 * Return 0 if permission is granted.
1636 */
Al Viroe5467852012-05-30 13:30:51 -04001637static int smack_mmap_file(struct file *file,
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001638 unsigned long reqprot, unsigned long prot,
Al Viroe5467852012-05-30 13:30:51 -04001639 unsigned long flags)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001640{
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001641 struct smack_known *skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001642 struct smack_known *mkp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001643 struct smack_rule *srp;
1644 struct task_smack *tsp;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001645 struct smack_known *okp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001646 struct inode_smack *isp;
Seth Forshee809c02e2016-04-26 14:36:22 -05001647 struct superblock_smack *sbsp;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001648 int may;
1649 int mmay;
1650 int tmay;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001651 int rc;
1652
Al Viro496ad9a2013-01-23 17:07:38 -05001653 if (file == NULL)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001654 return 0;
1655
Seung-Woo Kim83a1e532016-12-12 17:35:26 +09001656 if (unlikely(IS_PRIVATE(file_inode(file))))
1657 return 0;
1658
Casey Schauflerfb4021b2018-11-12 12:43:01 -08001659 isp = smack_inode(file_inode(file));
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001660 if (isp->smk_mmap == NULL)
1661 return 0;
Casey Schaufler1aea7802021-04-22 17:41:15 +02001662 sbsp = smack_superblock(file_inode(file)->i_sb);
Seth Forshee809c02e2016-04-26 14:36:22 -05001663 if (sbsp->smk_flags & SMK_SB_UNTRUSTED &&
1664 isp->smk_mmap != sbsp->smk_root)
1665 return -EACCES;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001666 mkp = isp->smk_mmap;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001667
Casey Schauflerb17103a2018-11-09 16:12:56 -08001668 tsp = smack_cred(current_cred());
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001669 skp = smk_of_current();
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001670 rc = 0;
1671
1672 rcu_read_lock();
1673 /*
1674 * For each Smack rule associated with the subject
1675 * label verify that the SMACK64MMAP also has access
1676 * to that rule's object label.
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001677 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07001678 list_for_each_entry_rcu(srp, &skp->smk_rules, list) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001679 okp = srp->smk_object;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001680 /*
1681 * Matching labels always allows access.
1682 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001683 if (mkp->smk_known == okp->smk_known)
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001684 continue;
1685 /*
1686 * If there is a matching local rule take
1687 * that into account as well.
1688 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001689 may = smk_access_entry(srp->smk_subject->smk_known,
1690 okp->smk_known,
1691 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001692 if (may == -ENOENT)
1693 may = srp->smk_access;
1694 else
1695 may &= srp->smk_access;
1696 /*
1697 * If may is zero the SMACK64MMAP subject can't
1698 * possibly have less access.
1699 */
1700 if (may == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001701 continue;
1702
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001703 /*
1704 * Fetch the global list entry.
1705 * If there isn't one a SMACK64MMAP subject
1706 * can't have as much access as current.
1707 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001708 mmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1709 &mkp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001710 if (mmay == -ENOENT) {
1711 rc = -EACCES;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001712 break;
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001713 }
1714 /*
1715 * If there is a local entry it modifies the
1716 * potential access, too.
1717 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02001718 tmay = smk_access_entry(mkp->smk_known, okp->smk_known,
1719 &tsp->smk_rules);
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001720 if (tmay != -ENOENT)
1721 mmay &= tmay;
1722
1723 /*
1724 * If there is any access available to current that is
1725 * not available to a SMACK64MMAP subject
1726 * deny access.
1727 */
Casey Schaufler75a25632011-02-09 19:58:42 -08001728 if ((may | mmay) != mmay) {
Casey Schaufler0e0a0702011-02-08 16:36:24 -08001729 rc = -EACCES;
1730 break;
1731 }
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001732 }
1733
1734 rcu_read_unlock();
1735
1736 return rc;
1737}
1738
1739/**
Casey Schauflere114e472008-02-04 22:29:50 -08001740 * smack_file_set_fowner - set the file security blob value
1741 * @file: object in question
1742 *
Casey Schauflere114e472008-02-04 22:29:50 -08001743 */
Jeff Laytone0b93ed2014-08-22 11:27:32 -04001744static void smack_file_set_fowner(struct file *file)
Casey Schauflere114e472008-02-04 22:29:50 -08001745{
Casey Schauflerf28952a2018-11-12 09:38:53 -08001746 struct smack_known **blob = smack_file(file);
1747
1748 *blob = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08001749}
1750
1751/**
1752 * smack_file_send_sigiotask - Smack on sigio
1753 * @tsk: The target task
1754 * @fown: the object the signal come from
1755 * @signum: unused
1756 *
1757 * Allow a privileged task to get signals even if it shouldn't
1758 *
1759 * Returns 0 if a subject with the object's smack could
1760 * write to the task, an error code otherwise.
1761 */
1762static int smack_file_send_sigiotask(struct task_struct *tsk,
1763 struct fown_struct *fown, int signum)
1764{
Casey Schauflerf28952a2018-11-12 09:38:53 -08001765 struct smack_known **blob;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07001766 struct smack_known *skp;
Casey Schauflerb17103a2018-11-09 16:12:56 -08001767 struct smack_known *tkp = smk_of_task(smack_cred(tsk->cred));
Casey Schauflerdcb569c2018-09-18 16:09:16 -07001768 const struct cred *tcred;
Casey Schauflere114e472008-02-04 22:29:50 -08001769 struct file *file;
1770 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001771 struct smk_audit_info ad;
Casey Schauflere114e472008-02-04 22:29:50 -08001772
1773 /*
1774 * struct fown_struct is never outside the context of a struct file
1775 */
1776 file = container_of(fown, struct file, f_owner);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001777
Etienne Bassetecfcc532009-04-08 20:40:06 +02001778 /* we don't log here as rc can be overriden */
Casey Schauflerf28952a2018-11-12 09:38:53 -08001779 blob = smack_file(file);
1780 skp = *blob;
Casey Schauflerc60b9062016-08-30 10:31:39 -07001781 rc = smk_access(skp, tkp, MAY_DELIVER, NULL);
1782 rc = smk_bu_note("sigiotask", skp, tkp, MAY_DELIVER, rc);
Casey Schauflerdcb569c2018-09-18 16:09:16 -07001783
1784 rcu_read_lock();
1785 tcred = __task_cred(tsk);
1786 if (rc != 0 && smack_privileged_cred(CAP_MAC_OVERRIDE, tcred))
Etienne Bassetecfcc532009-04-08 20:40:06 +02001787 rc = 0;
Casey Schauflerdcb569c2018-09-18 16:09:16 -07001788 rcu_read_unlock();
Etienne Bassetecfcc532009-04-08 20:40:06 +02001789
1790 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
1791 smk_ad_setfield_u_tsk(&ad, tsk);
Casey Schauflerc60b9062016-08-30 10:31:39 -07001792 smack_log(skp->smk_known, tkp->smk_known, MAY_DELIVER, rc, &ad);
Casey Schauflere114e472008-02-04 22:29:50 -08001793 return rc;
1794}
1795
1796/**
1797 * smack_file_receive - Smack file receive check
1798 * @file: the object
1799 *
1800 * Returns 0 if current has access, error code otherwise
1801 */
1802static int smack_file_receive(struct file *file)
1803{
Casey Schauflerd166c802014-08-27 14:51:27 -07001804 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001805 int may = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02001806 struct smk_audit_info ad;
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001807 struct inode *inode = file_inode(file);
Casey Schaufler79be0932015-12-07 14:34:32 -08001808 struct socket *sock;
1809 struct task_smack *tsp;
1810 struct socket_smack *ssp;
Casey Schauflere114e472008-02-04 22:29:50 -08001811
Seung-Woo Kim97775822015-04-17 15:25:04 +09001812 if (unlikely(IS_PRIVATE(inode)))
1813 return 0;
1814
Casey Schaufler4482a442013-12-30 17:37:45 -08001815 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
Etienne Bassetecfcc532009-04-08 20:40:06 +02001816 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Casey Schaufler79be0932015-12-07 14:34:32 -08001817
Casey Schaufler51d59af2017-05-31 08:53:42 -07001818 if (inode->i_sb->s_magic == SOCKFS_MAGIC) {
Casey Schaufler79be0932015-12-07 14:34:32 -08001819 sock = SOCKET_I(inode);
1820 ssp = sock->sk->sk_security;
Casey Schauflerb17103a2018-11-09 16:12:56 -08001821 tsp = smack_cred(current_cred());
Casey Schaufler79be0932015-12-07 14:34:32 -08001822 /*
1823 * If the receiving process can't write to the
1824 * passed socket or if the passed socket can't
1825 * write to the receiving process don't accept
1826 * the passed socket.
1827 */
1828 rc = smk_access(tsp->smk_task, ssp->smk_out, MAY_WRITE, &ad);
1829 rc = smk_bu_file(file, may, rc);
1830 if (rc < 0)
1831 return rc;
1832 rc = smk_access(ssp->smk_in, tsp->smk_task, MAY_WRITE, &ad);
1833 rc = smk_bu_file(file, may, rc);
1834 return rc;
1835 }
Casey Schauflere114e472008-02-04 22:29:50 -08001836 /*
1837 * This code relies on bitmasks.
1838 */
1839 if (file->f_mode & FMODE_READ)
1840 may = MAY_READ;
1841 if (file->f_mode & FMODE_WRITE)
1842 may |= MAY_WRITE;
1843
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001844 rc = smk_curacc(smk_of_inode(inode), may, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07001845 rc = smk_bu_file(file, may, rc);
1846 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001847}
1848
Casey Schaufler531f1d42011-09-19 12:41:42 -07001849/**
Eric Paris83d49852012-04-04 13:45:40 -04001850 * smack_file_open - Smack dentry open processing
Casey Schaufler531f1d42011-09-19 12:41:42 -07001851 * @file: the object
Casey Schaufler531f1d42011-09-19 12:41:42 -07001852 *
1853 * Set the security blob in the file structure.
Casey Schauflera6834c02014-04-21 11:10:26 -07001854 * Allow the open only if the task has read access. There are
1855 * many read operations (e.g. fstat) that you can do with an
1856 * fd even if you have the file open write-only.
Casey Schaufler531f1d42011-09-19 12:41:42 -07001857 *
luanshia1a07f22019-07-05 10:35:20 +08001858 * Returns 0 if current has access, error code otherwise
Casey Schaufler531f1d42011-09-19 12:41:42 -07001859 */
Al Viro94817692018-07-10 14:13:18 -04001860static int smack_file_open(struct file *file)
Casey Schaufler531f1d42011-09-19 12:41:42 -07001861{
Casey Schauflerb17103a2018-11-09 16:12:56 -08001862 struct task_smack *tsp = smack_cred(file->f_cred);
Casey Schaufler5e7270a2014-12-12 17:19:19 -08001863 struct inode *inode = file_inode(file);
Casey Schauflera6834c02014-04-21 11:10:26 -07001864 struct smk_audit_info ad;
1865 int rc;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001866
Casey Schauflera6834c02014-04-21 11:10:26 -07001867 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_PATH);
1868 smk_ad_setfield_u_fs_path(&ad, file->f_path);
Himanshu Shuklac9d238a2016-11-23 11:59:45 +05301869 rc = smk_tskacc(tsp, smk_of_inode(inode), MAY_READ, &ad);
Al Viro94817692018-07-10 14:13:18 -04001870 rc = smk_bu_credfile(file->f_cred, file, MAY_READ, rc);
Casey Schauflera6834c02014-04-21 11:10:26 -07001871
1872 return rc;
Casey Schaufler531f1d42011-09-19 12:41:42 -07001873}
1874
Casey Schauflere114e472008-02-04 22:29:50 -08001875/*
1876 * Task hooks
1877 */
1878
1879/**
David Howellsee18d642009-09-02 09:14:21 +01001880 * smack_cred_alloc_blank - "allocate" blank task-level security credentials
luanshia1a07f22019-07-05 10:35:20 +08001881 * @cred: the new credentials
David Howellsee18d642009-09-02 09:14:21 +01001882 * @gfp: the atomicity of any memory allocations
1883 *
1884 * Prepare a blank set of credentials for modification. This must allocate all
1885 * the memory the LSM module might require such that cred_transfer() can
1886 * complete without error.
1887 */
1888static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp)
1889{
Casey Schauflerbbd36622018-11-12 09:30:56 -08001890 init_task_smack(smack_cred(cred), NULL, NULL);
David Howellsee18d642009-09-02 09:14:21 +01001891 return 0;
1892}
1893
1894
1895/**
David Howellsf1752ee2008-11-14 10:39:17 +11001896 * smack_cred_free - "free" task-level security credentials
1897 * @cred: the credentials in question
Casey Schauflere114e472008-02-04 22:29:50 -08001898 *
Casey Schauflere114e472008-02-04 22:29:50 -08001899 */
David Howellsf1752ee2008-11-14 10:39:17 +11001900static void smack_cred_free(struct cred *cred)
Casey Schauflere114e472008-02-04 22:29:50 -08001901{
Casey Schauflerb17103a2018-11-09 16:12:56 -08001902 struct task_smack *tsp = smack_cred(cred);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001903 struct smack_rule *rp;
1904 struct list_head *l;
1905 struct list_head *n;
1906
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02001907 smk_destroy_label_list(&tsp->smk_relabel);
1908
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001909 list_for_each_safe(l, n, &tsp->smk_rules) {
1910 rp = list_entry(l, struct smack_rule, list);
1911 list_del(&rp->list);
Casey Schaufler4e328b02019-04-02 11:37:12 -07001912 kmem_cache_free(smack_rule_cache, rp);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001913 }
Casey Schauflere114e472008-02-04 22:29:50 -08001914}
1915
1916/**
David Howellsd84f4f92008-11-14 10:39:23 +11001917 * smack_cred_prepare - prepare new set of credentials for modification
1918 * @new: the new credentials
1919 * @old: the original credentials
1920 * @gfp: the atomicity of any memory allocations
1921 *
1922 * Prepare a new set of credentials for modification.
1923 */
1924static int smack_cred_prepare(struct cred *new, const struct cred *old,
1925 gfp_t gfp)
1926{
Casey Schauflerb17103a2018-11-09 16:12:56 -08001927 struct task_smack *old_tsp = smack_cred(old);
Casey Schauflerbbd36622018-11-12 09:30:56 -08001928 struct task_smack *new_tsp = smack_cred(new);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001929 int rc;
Casey Schaufler676dac42010-12-02 06:43:39 -08001930
Casey Schauflerbbd36622018-11-12 09:30:56 -08001931 init_task_smack(new_tsp, old_tsp->smk_task, old_tsp->smk_task);
Himanshu Shuklab437aba2016-11-10 16:17:02 +05301932
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001933 rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp);
1934 if (rc != 0)
1935 return rc;
1936
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02001937 rc = smk_copy_relabel(&new_tsp->smk_relabel, &old_tsp->smk_relabel,
1938 gfp);
Casey Schauflerbbd36622018-11-12 09:30:56 -08001939 return rc;
David Howellsd84f4f92008-11-14 10:39:23 +11001940}
1941
Randy Dunlap251a2a92009-02-18 11:42:33 -08001942/**
David Howellsee18d642009-09-02 09:14:21 +01001943 * smack_cred_transfer - Transfer the old credentials to the new credentials
1944 * @new: the new credentials
1945 * @old: the original credentials
1946 *
1947 * Fill in a set of blank credentials from another set of credentials.
1948 */
1949static void smack_cred_transfer(struct cred *new, const struct cred *old)
1950{
Casey Schauflerb17103a2018-11-09 16:12:56 -08001951 struct task_smack *old_tsp = smack_cred(old);
1952 struct task_smack *new_tsp = smack_cred(new);
Casey Schaufler676dac42010-12-02 06:43:39 -08001953
1954 new_tsp->smk_task = old_tsp->smk_task;
1955 new_tsp->smk_forked = old_tsp->smk_task;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001956 mutex_init(&new_tsp->smk_rules_lock);
1957 INIT_LIST_HEAD(&new_tsp->smk_rules);
1958
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001959 /* cbs copy rule list */
David Howellsee18d642009-09-02 09:14:21 +01001960}
1961
1962/**
Matthew Garrett3ec30112018-01-08 13:36:19 -08001963 * smack_cred_getsecid - get the secid corresponding to a creds structure
luanshia1a07f22019-07-05 10:35:20 +08001964 * @cred: the object creds
Matthew Garrett3ec30112018-01-08 13:36:19 -08001965 * @secid: where to put the result
1966 *
1967 * Sets the secid to contain a u32 version of the smack label.
1968 */
Casey Schauflerb17103a2018-11-09 16:12:56 -08001969static void smack_cred_getsecid(const struct cred *cred, u32 *secid)
Matthew Garrett3ec30112018-01-08 13:36:19 -08001970{
1971 struct smack_known *skp;
1972
1973 rcu_read_lock();
Casey Schauflerb17103a2018-11-09 16:12:56 -08001974 skp = smk_of_task(smack_cred(cred));
Matthew Garrett3ec30112018-01-08 13:36:19 -08001975 *secid = skp->smk_secid;
1976 rcu_read_unlock();
1977}
1978
1979/**
David Howells3a3b7ce2008-11-14 10:39:28 +11001980 * smack_kernel_act_as - Set the subjective context in a set of credentials
Randy Dunlap251a2a92009-02-18 11:42:33 -08001981 * @new: points to the set of credentials to be modified.
1982 * @secid: specifies the security ID to be set
David Howells3a3b7ce2008-11-14 10:39:28 +11001983 *
1984 * Set the security data for a kernel service.
1985 */
1986static int smack_kernel_act_as(struct cred *new, u32 secid)
1987{
Casey Schauflerb17103a2018-11-09 16:12:56 -08001988 struct task_smack *new_tsp = smack_cred(new);
David Howells3a3b7ce2008-11-14 10:39:28 +11001989
Casey Schaufler152f91d2016-11-14 09:38:15 -08001990 new_tsp->smk_task = smack_from_secid(secid);
David Howells3a3b7ce2008-11-14 10:39:28 +11001991 return 0;
1992}
1993
1994/**
1995 * smack_kernel_create_files_as - Set the file creation label in a set of creds
Randy Dunlap251a2a92009-02-18 11:42:33 -08001996 * @new: points to the set of credentials to be modified
1997 * @inode: points to the inode to use as a reference
David Howells3a3b7ce2008-11-14 10:39:28 +11001998 *
1999 * Set the file creation context in a set of credentials to the same
2000 * as the objective context of the specified inode
2001 */
2002static int smack_kernel_create_files_as(struct cred *new,
2003 struct inode *inode)
2004{
Casey Schauflerfb4021b2018-11-12 12:43:01 -08002005 struct inode_smack *isp = smack_inode(inode);
Casey Schauflerb17103a2018-11-09 16:12:56 -08002006 struct task_smack *tsp = smack_cred(new);
David Howells3a3b7ce2008-11-14 10:39:28 +11002007
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002008 tsp->smk_forked = isp->smk_inode;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002009 tsp->smk_task = tsp->smk_forked;
David Howells3a3b7ce2008-11-14 10:39:28 +11002010 return 0;
2011}
2012
2013/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002014 * smk_curacc_on_task - helper to log task related access
2015 * @p: the task object
Casey Schaufler531f1d42011-09-19 12:41:42 -07002016 * @access: the access requested
2017 * @caller: name of the calling function for audit
Etienne Bassetecfcc532009-04-08 20:40:06 +02002018 *
2019 * Return 0 if access is permitted
2020 */
Casey Schaufler531f1d42011-09-19 12:41:42 -07002021static int smk_curacc_on_task(struct task_struct *p, int access,
2022 const char *caller)
Etienne Bassetecfcc532009-04-08 20:40:06 +02002023{
2024 struct smk_audit_info ad;
Paul Moorea3727a82021-09-23 09:50:11 -04002025 struct smack_known *skp = smk_of_task_struct_obj(p);
Casey Schauflerd166c802014-08-27 14:51:27 -07002026 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002027
Casey Schaufler531f1d42011-09-19 12:41:42 -07002028 smk_ad_init(&ad, caller, LSM_AUDIT_DATA_TASK);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002029 smk_ad_setfield_u_tsk(&ad, p);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002030 rc = smk_curacc(skp, access, &ad);
Casey Schauflerd166c802014-08-27 14:51:27 -07002031 rc = smk_bu_task(p, access, rc);
2032 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002033}
2034
2035/**
Casey Schauflere114e472008-02-04 22:29:50 -08002036 * smack_task_setpgid - Smack check on setting pgid
2037 * @p: the task object
2038 * @pgid: unused
2039 *
2040 * Return 0 if write access is permitted
2041 */
2042static int smack_task_setpgid(struct task_struct *p, pid_t pgid)
2043{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002044 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002045}
2046
2047/**
2048 * smack_task_getpgid - Smack access check for getpgid
2049 * @p: the object task
2050 *
2051 * Returns 0 if current can read the object task, error code otherwise
2052 */
2053static int smack_task_getpgid(struct task_struct *p)
2054{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002055 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002056}
2057
2058/**
2059 * smack_task_getsid - Smack access check for getsid
2060 * @p: the object task
2061 *
2062 * Returns 0 if current can read the object task, error code otherwise
2063 */
2064static int smack_task_getsid(struct task_struct *p)
2065{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002066 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002067}
2068
2069/**
Paul Moore63269482021-09-29 11:01:21 -04002070 * smack_current_getsecid_subj - get the subjective secid of the current task
Casey Schauflere114e472008-02-04 22:29:50 -08002071 * @secid: where to put the result
2072 *
Paul Moore1fb057d2021-02-19 15:04:58 -05002073 * Sets the secid to contain a u32 version of the task's subjective smack label.
Casey Schauflere114e472008-02-04 22:29:50 -08002074 */
Paul Moore63269482021-09-29 11:01:21 -04002075static void smack_current_getsecid_subj(u32 *secid)
Casey Schauflere114e472008-02-04 22:29:50 -08002076{
Paul Moore63269482021-09-29 11:01:21 -04002077 struct smack_known *skp = smk_of_current();
Paul Moore1fb057d2021-02-19 15:04:58 -05002078
2079 *secid = skp->smk_secid;
2080}
2081
2082/**
2083 * smack_task_getsecid_obj - get the objective secid of the task
2084 * @p: the task
2085 * @secid: where to put the result
2086 *
2087 * Sets the secid to contain a u32 version of the task's objective smack label.
2088 */
2089static void smack_task_getsecid_obj(struct task_struct *p, u32 *secid)
2090{
2091 struct smack_known *skp = smk_of_task_struct_obj(p);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002092
2093 *secid = skp->smk_secid;
Casey Schauflere114e472008-02-04 22:29:50 -08002094}
2095
2096/**
2097 * smack_task_setnice - Smack check on setting nice
2098 * @p: the task object
2099 * @nice: unused
2100 *
2101 * Return 0 if write access is permitted
2102 */
2103static int smack_task_setnice(struct task_struct *p, int nice)
2104{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002105 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002106}
2107
2108/**
2109 * smack_task_setioprio - Smack check on setting ioprio
2110 * @p: the task object
2111 * @ioprio: unused
2112 *
2113 * Return 0 if write access is permitted
2114 */
2115static int smack_task_setioprio(struct task_struct *p, int ioprio)
2116{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002117 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002118}
2119
2120/**
2121 * smack_task_getioprio - Smack check on reading ioprio
2122 * @p: the task object
2123 *
2124 * Return 0 if read access is permitted
2125 */
2126static int smack_task_getioprio(struct task_struct *p)
2127{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002128 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002129}
2130
2131/**
2132 * smack_task_setscheduler - Smack check on setting scheduler
2133 * @p: the task object
Casey Schauflere114e472008-02-04 22:29:50 -08002134 *
2135 * Return 0 if read access is permitted
2136 */
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09002137static int smack_task_setscheduler(struct task_struct *p)
Casey Schauflere114e472008-02-04 22:29:50 -08002138{
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07002139 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002140}
2141
2142/**
2143 * smack_task_getscheduler - Smack check on reading scheduler
2144 * @p: the task object
2145 *
2146 * Return 0 if read access is permitted
2147 */
2148static int smack_task_getscheduler(struct task_struct *p)
2149{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002150 return smk_curacc_on_task(p, MAY_READ, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002151}
2152
2153/**
2154 * smack_task_movememory - Smack check on moving memory
2155 * @p: the task object
2156 *
2157 * Return 0 if write access is permitted
2158 */
2159static int smack_task_movememory(struct task_struct *p)
2160{
Casey Schaufler531f1d42011-09-19 12:41:42 -07002161 return smk_curacc_on_task(p, MAY_WRITE, __func__);
Casey Schauflere114e472008-02-04 22:29:50 -08002162}
2163
2164/**
2165 * smack_task_kill - Smack check on signal delivery
2166 * @p: the task object
2167 * @info: unused
2168 * @sig: unused
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04002169 * @cred: identifies the cred to use in lieu of current's
Casey Schauflere114e472008-02-04 22:29:50 -08002170 *
2171 * Return 0 if write access is permitted
2172 *
Casey Schauflere114e472008-02-04 22:29:50 -08002173 */
Eric W. Biedermanae7795b2018-09-25 11:27:20 +02002174static int smack_task_kill(struct task_struct *p, struct kernel_siginfo *info,
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04002175 int sig, const struct cred *cred)
Casey Schauflere114e472008-02-04 22:29:50 -08002176{
Etienne Bassetecfcc532009-04-08 20:40:06 +02002177 struct smk_audit_info ad;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002178 struct smack_known *skp;
Paul Moore1fb057d2021-02-19 15:04:58 -05002179 struct smack_known *tkp = smk_of_task_struct_obj(p);
Casey Schauflerd166c802014-08-27 14:51:27 -07002180 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002181
Rafal Krypa18d872f2016-04-04 11:14:53 +02002182 if (!sig)
2183 return 0; /* null signal; existence test */
2184
Etienne Bassetecfcc532009-04-08 20:40:06 +02002185 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_TASK);
2186 smk_ad_setfield_u_tsk(&ad, p);
Casey Schauflere114e472008-02-04 22:29:50 -08002187 /*
Casey Schauflere114e472008-02-04 22:29:50 -08002188 * Sending a signal requires that the sender
2189 * can write the receiver.
2190 */
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04002191 if (cred == NULL) {
Casey Schauflerc60b9062016-08-30 10:31:39 -07002192 rc = smk_curacc(tkp, MAY_DELIVER, &ad);
2193 rc = smk_bu_task(p, MAY_DELIVER, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07002194 return rc;
2195 }
Casey Schauflere114e472008-02-04 22:29:50 -08002196 /*
Stephen Smalley6b4f3d02017-09-08 12:40:01 -04002197 * If the cred isn't NULL we're dealing with some USB IO
Casey Schauflere114e472008-02-04 22:29:50 -08002198 * specific behavior. This is not clean. For one thing
2199 * we can't take privilege into account.
2200 */
Casey Schauflerb17103a2018-11-09 16:12:56 -08002201 skp = smk_of_task(smack_cred(cred));
Casey Schauflerc60b9062016-08-30 10:31:39 -07002202 rc = smk_access(skp, tkp, MAY_DELIVER, &ad);
2203 rc = smk_bu_note("USB signal", skp, tkp, MAY_DELIVER, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07002204 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002205}
2206
2207/**
Casey Schauflere114e472008-02-04 22:29:50 -08002208 * smack_task_to_inode - copy task smack into the inode blob
2209 * @p: task to copy from
Randy Dunlap251a2a92009-02-18 11:42:33 -08002210 * @inode: inode to copy to
Casey Schauflere114e472008-02-04 22:29:50 -08002211 *
2212 * Sets the smack pointer in the inode security blob
2213 */
2214static void smack_task_to_inode(struct task_struct *p, struct inode *inode)
2215{
Casey Schauflerfb4021b2018-11-12 12:43:01 -08002216 struct inode_smack *isp = smack_inode(inode);
Paul Moore1fb057d2021-02-19 15:04:58 -05002217 struct smack_known *skp = smk_of_task_struct_obj(p);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002218
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002219 isp->smk_inode = skp;
Casey Schaufler7b4e8842018-06-22 10:54:45 -07002220 isp->smk_flags |= SMK_INODE_INSTANT;
Casey Schauflere114e472008-02-04 22:29:50 -08002221}
2222
2223/*
2224 * Socket hooks.
2225 */
2226
2227/**
2228 * smack_sk_alloc_security - Allocate a socket blob
2229 * @sk: the socket
2230 * @family: unused
Randy Dunlap251a2a92009-02-18 11:42:33 -08002231 * @gfp_flags: memory allocation flags
Casey Schauflere114e472008-02-04 22:29:50 -08002232 *
2233 * Assign Smack pointers to current
2234 *
2235 * Returns 0 on success, -ENOMEM is there's no memory
2236 */
2237static int smack_sk_alloc_security(struct sock *sk, int family, gfp_t gfp_flags)
2238{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002239 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002240 struct socket_smack *ssp;
2241
2242 ssp = kzalloc(sizeof(struct socket_smack), gfp_flags);
2243 if (ssp == NULL)
2244 return -ENOMEM;
2245
jooseong lee08382c92016-11-03 11:54:39 +01002246 /*
2247 * Sockets created by kernel threads receive web label.
2248 */
2249 if (unlikely(current->flags & PF_KTHREAD)) {
2250 ssp->smk_in = &smack_known_web;
2251 ssp->smk_out = &smack_known_web;
2252 } else {
2253 ssp->smk_in = skp;
2254 ssp->smk_out = skp;
2255 }
Casey Schaufler272cd7a2011-09-20 12:24:36 -07002256 ssp->smk_packet = NULL;
Casey Schauflere114e472008-02-04 22:29:50 -08002257
2258 sk->sk_security = ssp;
2259
2260 return 0;
2261}
2262
2263/**
2264 * smack_sk_free_security - Free a socket blob
2265 * @sk: the socket
2266 *
2267 * Clears the blob pointer
2268 */
2269static void smack_sk_free_security(struct sock *sk)
2270{
Vishal Goel0c96d1f2016-11-23 10:32:54 +05302271#ifdef SMACK_IPV6_PORT_LABELING
2272 struct smk_port_label *spp;
2273
2274 if (sk->sk_family == PF_INET6) {
2275 rcu_read_lock();
2276 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) {
2277 if (spp->smk_sock != sk)
2278 continue;
2279 spp->smk_can_reuse = 1;
2280 break;
2281 }
2282 rcu_read_unlock();
2283 }
2284#endif
Casey Schauflere114e472008-02-04 22:29:50 -08002285 kfree(sk->sk_security);
2286}
2287
2288/**
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002289* smack_ipv4host_label - check host based restrictions
Paul Moore07feee82009-03-27 17:10:54 -04002290* @sip: the object end
2291*
2292* looks for host based access restrictions
2293*
2294* This version will only be appropriate for really small sets of single label
2295* hosts. The caller is responsible for ensuring that the RCU read lock is
2296* taken before calling this function.
2297*
2298* Returns the label of the far end or NULL if it's not special.
2299*/
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002300static struct smack_known *smack_ipv4host_label(struct sockaddr_in *sip)
Paul Moore07feee82009-03-27 17:10:54 -04002301{
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002302 struct smk_net4addr *snp;
Paul Moore07feee82009-03-27 17:10:54 -04002303 struct in_addr *siap = &sip->sin_addr;
2304
2305 if (siap->s_addr == 0)
2306 return NULL;
2307
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002308 list_for_each_entry_rcu(snp, &smk_net4addr_list, list)
2309 /*
2310 * we break after finding the first match because
2311 * the list is sorted from longest to shortest mask
2312 * so we have found the most specific match
2313 */
2314 if (snp->smk_host.s_addr ==
2315 (siap->s_addr & snp->smk_mask.s_addr))
2316 return snp->smk_label;
2317
2318 return NULL;
2319}
2320
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002321/*
2322 * smk_ipv6_localhost - Check for local ipv6 host address
2323 * @sip: the address
2324 *
2325 * Returns boolean true if this is the localhost address
2326 */
2327static bool smk_ipv6_localhost(struct sockaddr_in6 *sip)
2328{
2329 __be16 *be16p = (__be16 *)&sip->sin6_addr;
2330 __be32 *be32p = (__be32 *)&sip->sin6_addr;
2331
2332 if (be32p[0] == 0 && be32p[1] == 0 && be32p[2] == 0 && be16p[6] == 0 &&
2333 ntohs(be16p[7]) == 1)
2334 return true;
2335 return false;
2336}
2337
2338/**
2339* smack_ipv6host_label - check host based restrictions
2340* @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*/
2350static struct smack_known *smack_ipv6host_label(struct sockaddr_in6 *sip)
2351{
2352 struct smk_net6addr *snp;
2353 struct in6_addr *sap = &sip->sin6_addr;
2354 int i;
2355 int found = 0;
2356
2357 /*
2358 * It's local. Don't look for a host label.
2359 */
2360 if (smk_ipv6_localhost(sip))
2361 return NULL;
2362
2363 list_for_each_entry_rcu(snp, &smk_net6addr_list, list) {
Paul Moore07feee82009-03-27 17:10:54 -04002364 /*
Casey Schaufler2e4939f2016-11-07 19:01:09 -08002365 * If the label is NULL the entry has
2366 * been renounced. Ignore it.
2367 */
2368 if (snp->smk_label == NULL)
2369 continue;
2370 /*
Paul Moore07feee82009-03-27 17:10:54 -04002371 * we break after finding the first match because
2372 * the list is sorted from longest to shortest mask
2373 * so we have found the most specific match
2374 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002375 for (found = 1, i = 0; i < 8; i++) {
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002376 if ((sap->s6_addr16[i] & snp->smk_mask.s6_addr16[i]) !=
2377 snp->smk_host.s6_addr16[i]) {
2378 found = 0;
2379 break;
2380 }
Etienne Basset43031542009-03-27 17:11:01 -04002381 }
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002382 if (found)
2383 return snp->smk_label;
2384 }
Paul Moore07feee82009-03-27 17:10:54 -04002385
2386 return NULL;
2387}
2388
2389/**
Casey Schauflera2af0312020-08-11 17:39:42 -07002390 * smack_netlbl_add - Set the secattr on a socket
Casey Schauflere114e472008-02-04 22:29:50 -08002391 * @sk: the socket
2392 *
Casey Schauflera2af0312020-08-11 17:39:42 -07002393 * Attach the outbound smack value (smk_out) to the socket.
Casey Schauflere114e472008-02-04 22:29:50 -08002394 *
2395 * Returns 0 on success or an error code
2396 */
Casey Schauflera2af0312020-08-11 17:39:42 -07002397static int smack_netlbl_add(struct sock *sk)
Casey Schauflere114e472008-02-04 22:29:50 -08002398{
Paul Moore07feee82009-03-27 17:10:54 -04002399 struct socket_smack *ssp = sk->sk_security;
Casey Schauflera2af0312020-08-11 17:39:42 -07002400 struct smack_known *skp = ssp->smk_out;
2401 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002402
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002403 local_bh_disable();
2404 bh_lock_sock_nested(sk);
2405
Casey Schauflera2af0312020-08-11 17:39:42 -07002406 rc = netlbl_sock_setattr(sk, sk->sk_family, &skp->smk_netlabel);
2407 switch (rc) {
2408 case 0:
2409 ssp->smk_state = SMK_NETLBL_LABELED;
2410 break;
2411 case -EDESTADDRREQ:
2412 ssp->smk_state = SMK_NETLBL_REQSKB;
2413 rc = 0;
2414 break;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002415 }
2416
2417 bh_unlock_sock(sk);
2418 local_bh_enable();
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002419
Casey Schauflere114e472008-02-04 22:29:50 -08002420 return rc;
2421}
2422
2423/**
Casey Schauflera2af0312020-08-11 17:39:42 -07002424 * smack_netlbl_delete - Remove the secattr from a socket
2425 * @sk: the socket
2426 *
2427 * Remove the outbound smack value from a socket
2428 */
2429static void smack_netlbl_delete(struct sock *sk)
2430{
2431 struct socket_smack *ssp = sk->sk_security;
2432
2433 /*
2434 * Take the label off the socket if one is set.
2435 */
2436 if (ssp->smk_state != SMK_NETLBL_LABELED)
2437 return;
2438
2439 local_bh_disable();
2440 bh_lock_sock_nested(sk);
2441 netlbl_sock_delattr(sk);
2442 bh_unlock_sock(sk);
2443 local_bh_enable();
2444 ssp->smk_state = SMK_NETLBL_UNLABELED;
2445}
2446
2447/**
2448 * smk_ipv4_check - Perform IPv4 host access checks
Paul Moore07feee82009-03-27 17:10:54 -04002449 * @sk: the socket
2450 * @sap: the destination address
2451 *
2452 * Set the correct secattr for the given socket based on the destination
2453 * address and perform any outbound access checks needed.
2454 *
2455 * Returns 0 on success or an error code.
2456 *
2457 */
Casey Schauflera2af0312020-08-11 17:39:42 -07002458static int smk_ipv4_check(struct sock *sk, struct sockaddr_in *sap)
Paul Moore07feee82009-03-27 17:10:54 -04002459{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002460 struct smack_known *skp;
Casey Schauflera2af0312020-08-11 17:39:42 -07002461 int rc = 0;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002462 struct smack_known *hkp;
Paul Moore07feee82009-03-27 17:10:54 -04002463 struct socket_smack *ssp = sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002464 struct smk_audit_info ad;
Paul Moore07feee82009-03-27 17:10:54 -04002465
2466 rcu_read_lock();
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002467 hkp = smack_ipv4host_label(sap);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002468 if (hkp != NULL) {
Etienne Bassetecfcc532009-04-08 20:40:06 +02002469#ifdef CONFIG_AUDIT
Kees Cook923e9a12012-04-10 13:26:44 -07002470 struct lsm_network_audit net;
2471
Eric Paris48c62af2012-04-02 13:15:44 -04002472 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2473 ad.a.u.net->family = sap->sin_family;
2474 ad.a.u.net->dport = sap->sin_port;
2475 ad.a.u.net->v4info.daddr = sap->sin_addr.s_addr;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002476#endif
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002477 skp = ssp->smk_out;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002478 rc = smk_access(skp, hkp, MAY_WRITE, &ad);
2479 rc = smk_bu_note("IPv4 host check", skp, hkp, MAY_WRITE, rc);
Casey Schauflera2af0312020-08-11 17:39:42 -07002480 /*
2481 * Clear the socket netlabel if it's set.
2482 */
2483 if (!rc)
2484 smack_netlbl_delete(sk);
Paul Moore07feee82009-03-27 17:10:54 -04002485 }
2486 rcu_read_unlock();
Paul Moore07feee82009-03-27 17:10:54 -04002487
Casey Schauflera2af0312020-08-11 17:39:42 -07002488 return rc;
Paul Moore07feee82009-03-27 17:10:54 -04002489}
2490
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002491/**
2492 * smk_ipv6_check - check Smack access
2493 * @subject: subject Smack label
2494 * @object: object Smack label
2495 * @address: address
2496 * @act: the action being taken
2497 *
2498 * Check an IPv6 access
2499 */
2500static int smk_ipv6_check(struct smack_known *subject,
2501 struct smack_known *object,
2502 struct sockaddr_in6 *address, int act)
2503{
2504#ifdef CONFIG_AUDIT
2505 struct lsm_network_audit net;
2506#endif
2507 struct smk_audit_info ad;
2508 int rc;
2509
2510#ifdef CONFIG_AUDIT
2511 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
2512 ad.a.u.net->family = PF_INET6;
2513 ad.a.u.net->dport = ntohs(address->sin6_port);
2514 if (act == SMK_RECEIVING)
2515 ad.a.u.net->v6info.saddr = address->sin6_addr;
2516 else
2517 ad.a.u.net->v6info.daddr = address->sin6_addr;
2518#endif
2519 rc = smk_access(subject, object, MAY_WRITE, &ad);
2520 rc = smk_bu_note("IPv6 check", subject, object, MAY_WRITE, rc);
2521 return rc;
2522}
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002523
2524#ifdef SMACK_IPV6_PORT_LABELING
Paul Moore07feee82009-03-27 17:10:54 -04002525/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002526 * smk_ipv6_port_label - Smack port access table management
2527 * @sock: socket
2528 * @address: address
2529 *
2530 * Create or update the port list entry
2531 */
2532static void smk_ipv6_port_label(struct socket *sock, struct sockaddr *address)
2533{
2534 struct sock *sk = sock->sk;
2535 struct sockaddr_in6 *addr6;
2536 struct socket_smack *ssp = sock->sk->sk_security;
2537 struct smk_port_label *spp;
2538 unsigned short port = 0;
2539
2540 if (address == NULL) {
2541 /*
2542 * This operation is changing the Smack information
2543 * on the bound socket. Take the changes to the port
2544 * as well.
2545 */
Vishal Goel3c7ce342016-11-23 10:31:08 +05302546 rcu_read_lock();
2547 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) {
Casey Schauflerc6739442013-05-22 18:42:56 -07002548 if (sk != spp->smk_sock)
2549 continue;
2550 spp->smk_in = ssp->smk_in;
2551 spp->smk_out = ssp->smk_out;
Vishal Goel3c7ce342016-11-23 10:31:08 +05302552 rcu_read_unlock();
Casey Schauflerc6739442013-05-22 18:42:56 -07002553 return;
2554 }
2555 /*
2556 * A NULL address is only used for updating existing
2557 * bound entries. If there isn't one, it's OK.
2558 */
Vishal Goel3c7ce342016-11-23 10:31:08 +05302559 rcu_read_unlock();
Casey Schauflerc6739442013-05-22 18:42:56 -07002560 return;
2561 }
2562
2563 addr6 = (struct sockaddr_in6 *)address;
2564 port = ntohs(addr6->sin6_port);
2565 /*
2566 * This is a special case that is safely ignored.
2567 */
2568 if (port == 0)
2569 return;
2570
2571 /*
2572 * Look for an existing port list entry.
2573 * This is an indication that a port is getting reused.
2574 */
Vishal Goel3c7ce342016-11-23 10:31:08 +05302575 rcu_read_lock();
2576 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) {
Vishal Goel9d44c972016-11-23 10:31:59 +05302577 if (spp->smk_port != port || spp->smk_sock_type != sock->type)
Casey Schauflerc6739442013-05-22 18:42:56 -07002578 continue;
Vishal Goel0c96d1f2016-11-23 10:32:54 +05302579 if (spp->smk_can_reuse != 1) {
2580 rcu_read_unlock();
2581 return;
2582 }
Casey Schauflerc6739442013-05-22 18:42:56 -07002583 spp->smk_port = port;
2584 spp->smk_sock = sk;
2585 spp->smk_in = ssp->smk_in;
2586 spp->smk_out = ssp->smk_out;
Vishal Goel0c96d1f2016-11-23 10:32:54 +05302587 spp->smk_can_reuse = 0;
Vishal Goel3c7ce342016-11-23 10:31:08 +05302588 rcu_read_unlock();
Casey Schauflerc6739442013-05-22 18:42:56 -07002589 return;
2590 }
Vishal Goel3c7ce342016-11-23 10:31:08 +05302591 rcu_read_unlock();
Casey Schauflerc6739442013-05-22 18:42:56 -07002592 /*
2593 * A new port entry is required.
2594 */
2595 spp = kzalloc(sizeof(*spp), GFP_KERNEL);
2596 if (spp == NULL)
2597 return;
2598
2599 spp->smk_port = port;
2600 spp->smk_sock = sk;
2601 spp->smk_in = ssp->smk_in;
2602 spp->smk_out = ssp->smk_out;
Vishal Goel9d44c972016-11-23 10:31:59 +05302603 spp->smk_sock_type = sock->type;
Vishal Goel0c96d1f2016-11-23 10:32:54 +05302604 spp->smk_can_reuse = 0;
Casey Schauflerc6739442013-05-22 18:42:56 -07002605
Vishal Goel3c7ce342016-11-23 10:31:08 +05302606 mutex_lock(&smack_ipv6_lock);
2607 list_add_rcu(&spp->list, &smk_ipv6_port_list);
2608 mutex_unlock(&smack_ipv6_lock);
Casey Schauflerc6739442013-05-22 18:42:56 -07002609 return;
2610}
2611
2612/**
2613 * smk_ipv6_port_check - check Smack port access
luanshia1a07f22019-07-05 10:35:20 +08002614 * @sk: socket
Casey Schauflerc6739442013-05-22 18:42:56 -07002615 * @address: address
luanshia1a07f22019-07-05 10:35:20 +08002616 * @act: the action being taken
Casey Schauflerc6739442013-05-22 18:42:56 -07002617 *
2618 * Create or update the port list entry
2619 */
Casey Schaufler6ea06242013-08-05 13:21:22 -07002620static int smk_ipv6_port_check(struct sock *sk, struct sockaddr_in6 *address,
Casey Schauflerc6739442013-05-22 18:42:56 -07002621 int act)
2622{
Casey Schauflerc6739442013-05-22 18:42:56 -07002623 struct smk_port_label *spp;
2624 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002625 struct smack_known *skp = NULL;
2626 unsigned short port;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002627 struct smack_known *object;
Casey Schauflerc6739442013-05-22 18:42:56 -07002628
2629 if (act == SMK_RECEIVING) {
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002630 skp = smack_ipv6host_label(address);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002631 object = ssp->smk_in;
Casey Schauflerc6739442013-05-22 18:42:56 -07002632 } else {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002633 skp = ssp->smk_out;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002634 object = smack_ipv6host_label(address);
Casey Schauflerc6739442013-05-22 18:42:56 -07002635 }
2636
2637 /*
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002638 * The other end is a single label host.
Casey Schauflerc6739442013-05-22 18:42:56 -07002639 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002640 if (skp != NULL && object != NULL)
2641 return smk_ipv6_check(skp, object, address, act);
2642 if (skp == NULL)
2643 skp = smack_net_ambient;
2644 if (object == NULL)
2645 object = smack_net_ambient;
Casey Schauflerc6739442013-05-22 18:42:56 -07002646
2647 /*
2648 * It's remote, so port lookup does no good.
2649 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002650 if (!smk_ipv6_localhost(address))
2651 return smk_ipv6_check(skp, object, address, act);
Casey Schauflerc6739442013-05-22 18:42:56 -07002652
2653 /*
2654 * It's local so the send check has to have passed.
2655 */
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002656 if (act == SMK_RECEIVING)
2657 return 0;
Casey Schauflerc6739442013-05-22 18:42:56 -07002658
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002659 port = ntohs(address->sin6_port);
Vishal Goel3c7ce342016-11-23 10:31:08 +05302660 rcu_read_lock();
2661 list_for_each_entry_rcu(spp, &smk_ipv6_port_list, list) {
Vishal Goel9d44c972016-11-23 10:31:59 +05302662 if (spp->smk_port != port || spp->smk_sock_type != sk->sk_type)
Casey Schauflerc6739442013-05-22 18:42:56 -07002663 continue;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002664 object = spp->smk_in;
Casey Schauflerc6739442013-05-22 18:42:56 -07002665 if (act == SMK_CONNECTING)
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002666 ssp->smk_packet = spp->smk_out;
Casey Schauflerc6739442013-05-22 18:42:56 -07002667 break;
2668 }
Vishal Goel3c7ce342016-11-23 10:31:08 +05302669 rcu_read_unlock();
Casey Schauflerc6739442013-05-22 18:42:56 -07002670
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002671 return smk_ipv6_check(skp, object, address, act);
Casey Schauflerc6739442013-05-22 18:42:56 -07002672}
Sebastian Andrzej Siewior222a96b2021-09-23 19:05:03 +02002673#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07002674
2675/**
Casey Schauflere114e472008-02-04 22:29:50 -08002676 * smack_inode_setsecurity - set smack xattrs
2677 * @inode: the object
2678 * @name: attribute name
2679 * @value: attribute value
2680 * @size: size of the attribute
2681 * @flags: unused
2682 *
2683 * Sets the named attribute in the appropriate blob
2684 *
2685 * Returns 0 on success, or an error code
2686 */
2687static int smack_inode_setsecurity(struct inode *inode, const char *name,
2688 const void *value, size_t size, int flags)
2689{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002690 struct smack_known *skp;
Casey Schauflerfb4021b2018-11-12 12:43:01 -08002691 struct inode_smack *nsp = smack_inode(inode);
Casey Schauflere114e472008-02-04 22:29:50 -08002692 struct socket_smack *ssp;
2693 struct socket *sock;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002694 int rc = 0;
Casey Schauflere114e472008-02-04 22:29:50 -08002695
Casey Schauflerf7112e62012-05-06 15:22:02 -07002696 if (value == NULL || size > SMK_LONGLABEL || size == 0)
Pankaj Kumar5e9ab592013-12-13 15:12:22 +05302697 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08002698
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002699 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02002700 if (IS_ERR(skp))
2701 return PTR_ERR(skp);
Casey Schauflere114e472008-02-04 22:29:50 -08002702
2703 if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02002704 nsp->smk_inode = skp;
David P. Quigleyddd29ec2009-09-09 14:25:37 -04002705 nsp->smk_flags |= SMK_INODE_INSTANT;
Casey Schauflere114e472008-02-04 22:29:50 -08002706 return 0;
2707 }
2708 /*
2709 * The rest of the Smack xattrs are only on sockets.
2710 */
2711 if (inode->i_sb->s_magic != SOCKFS_MAGIC)
2712 return -EOPNOTSUPP;
2713
2714 sock = SOCKET_I(inode);
Ahmed S. Darwish2e1d1462008-02-13 15:03:34 -08002715 if (sock == NULL || sock->sk == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08002716 return -EOPNOTSUPP;
2717
2718 ssp = sock->sk->sk_security;
2719
2720 if (strcmp(name, XATTR_SMACK_IPIN) == 0)
Casey Schaufler54e70ec2014-04-10 16:37:08 -07002721 ssp->smk_in = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08002722 else if (strcmp(name, XATTR_SMACK_IPOUT) == 0) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002723 ssp->smk_out = skp;
Casey Schauflerc6739442013-05-22 18:42:56 -07002724 if (sock->sk->sk_family == PF_INET) {
Casey Schauflera2af0312020-08-11 17:39:42 -07002725 rc = smack_netlbl_add(sock->sk);
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08002726 if (rc != 0)
2727 printk(KERN_WARNING
2728 "Smack: \"%s\" netlbl error %d.\n",
2729 __func__, -rc);
2730 }
Casey Schauflere114e472008-02-04 22:29:50 -08002731 } else
2732 return -EOPNOTSUPP;
2733
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002734#ifdef SMACK_IPV6_PORT_LABELING
Casey Schauflerc6739442013-05-22 18:42:56 -07002735 if (sock->sk->sk_family == PF_INET6)
2736 smk_ipv6_port_label(sock, NULL);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002737#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07002738
Casey Schauflere114e472008-02-04 22:29:50 -08002739 return 0;
2740}
2741
2742/**
2743 * smack_socket_post_create - finish socket setup
2744 * @sock: the socket
2745 * @family: protocol family
2746 * @type: unused
2747 * @protocol: unused
2748 * @kern: unused
2749 *
2750 * Sets the netlabel information on the socket
2751 *
2752 * Returns 0 on success, and error code otherwise
2753 */
2754static int smack_socket_post_create(struct socket *sock, int family,
2755 int type, int protocol, int kern)
2756{
Marcin Lis74123012015-01-22 15:40:33 +01002757 struct socket_smack *ssp;
2758
2759 if (sock->sk == NULL)
2760 return 0;
2761
2762 /*
2763 * Sockets created by kernel threads receive web label.
2764 */
2765 if (unlikely(current->flags & PF_KTHREAD)) {
2766 ssp = sock->sk->sk_security;
2767 ssp->smk_in = &smack_known_web;
2768 ssp->smk_out = &smack_known_web;
2769 }
2770
2771 if (family != PF_INET)
Casey Schauflere114e472008-02-04 22:29:50 -08002772 return 0;
2773 /*
2774 * Set the outbound netlbl.
2775 */
Casey Schauflera2af0312020-08-11 17:39:42 -07002776 return smack_netlbl_add(sock->sk);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002777}
2778
Tom Gundersen5859cdf2018-05-04 16:28:22 +02002779/**
2780 * smack_socket_socketpair - create socket pair
2781 * @socka: one socket
2782 * @sockb: another socket
2783 *
2784 * Cross reference the peer labels for SO_PEERSEC
2785 *
luanshia1a07f22019-07-05 10:35:20 +08002786 * Returns 0
Tom Gundersen5859cdf2018-05-04 16:28:22 +02002787 */
2788static int smack_socket_socketpair(struct socket *socka,
2789 struct socket *sockb)
2790{
2791 struct socket_smack *asp = socka->sk->sk_security;
2792 struct socket_smack *bsp = sockb->sk->sk_security;
2793
2794 asp->smk_packet = bsp->smk_out;
2795 bsp->smk_packet = asp->smk_out;
2796
2797 return 0;
2798}
2799
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002800#ifdef SMACK_IPV6_PORT_LABELING
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002801/**
Casey Schauflerc6739442013-05-22 18:42:56 -07002802 * smack_socket_bind - record port binding information.
2803 * @sock: the socket
2804 * @address: the port address
2805 * @addrlen: size of the address
2806 *
2807 * Records the label bound to a port.
2808 *
Tetsuo Handab9ef5512019-04-12 19:59:35 +09002809 * Returns 0 on success, and error code otherwise
Casey Schauflerc6739442013-05-22 18:42:56 -07002810 */
2811static int smack_socket_bind(struct socket *sock, struct sockaddr *address,
2812 int addrlen)
2813{
Tetsuo Handab9ef5512019-04-12 19:59:35 +09002814 if (sock->sk != NULL && sock->sk->sk_family == PF_INET6) {
2815 if (addrlen < SIN6_LEN_RFC2133 ||
2816 address->sa_family != AF_INET6)
2817 return -EINVAL;
Casey Schauflerc6739442013-05-22 18:42:56 -07002818 smk_ipv6_port_label(sock, address);
Tetsuo Handab9ef5512019-04-12 19:59:35 +09002819 }
Casey Schauflerc6739442013-05-22 18:42:56 -07002820 return 0;
2821}
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002822#endif /* SMACK_IPV6_PORT_LABELING */
Casey Schauflerc6739442013-05-22 18:42:56 -07002823
2824/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002825 * smack_socket_connect - connect access check
2826 * @sock: the socket
2827 * @sap: the other end
2828 * @addrlen: size of sap
2829 *
2830 * Verifies that a connection may be possible
2831 *
2832 * Returns 0 on success, and error code otherwise
2833 */
2834static int smack_socket_connect(struct socket *sock, struct sockaddr *sap,
2835 int addrlen)
2836{
Casey Schauflerc6739442013-05-22 18:42:56 -07002837 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05002838
Casey Schauflerc6739442013-05-22 18:42:56 -07002839 if (sock->sk == NULL)
2840 return 0;
Casey Schaufler87fbfff2020-02-03 09:15:00 -08002841 if (sock->sk->sk_family != PF_INET &&
2842 (!IS_ENABLED(CONFIG_IPV6) || sock->sk->sk_family != PF_INET6))
2843 return 0;
2844 if (addrlen < offsetofend(struct sockaddr, sa_family))
2845 return 0;
2846 if (IS_ENABLED(CONFIG_IPV6) && sap->sa_family == AF_INET6) {
2847 struct sockaddr_in6 *sip = (struct sockaddr_in6 *)sap;
Arnd Bergmann00720f02020-04-08 21:04:31 +02002848 struct smack_known *rsp = NULL;
Vasyl Gomonovychda49b5d2017-12-21 16:57:52 +01002849
Casey Schaufler87fbfff2020-02-03 09:15:00 -08002850 if (addrlen < SIN6_LEN_RFC2133)
2851 return 0;
Arnd Bergmann00720f02020-04-08 21:04:31 +02002852 if (__is_defined(SMACK_IPV6_SECMARK_LABELING))
2853 rsp = smack_ipv6host_label(sip);
Casey Schaufler87fbfff2020-02-03 09:15:00 -08002854 if (rsp != NULL) {
2855 struct socket_smack *ssp = sock->sk->sk_security;
2856
Casey Schaufler21abb1e2015-07-22 14:25:31 -07002857 rc = smk_ipv6_check(ssp->smk_out, rsp, sip,
Casey Schaufler87fbfff2020-02-03 09:15:00 -08002858 SMK_CONNECTING);
2859 }
Sebastian Andrzej Siewior222a96b2021-09-23 19:05:03 +02002860#ifdef SMACK_IPV6_PORT_LABELING
2861 rc = smk_ipv6_port_check(sock->sk, sip, SMK_CONNECTING);
2862#endif
Arnd Bergmann00720f02020-04-08 21:04:31 +02002863
Casey Schaufler87fbfff2020-02-03 09:15:00 -08002864 return rc;
Casey Schauflerc6739442013-05-22 18:42:56 -07002865 }
Casey Schaufler87fbfff2020-02-03 09:15:00 -08002866 if (sap->sa_family != AF_INET || addrlen < sizeof(struct sockaddr_in))
2867 return 0;
Casey Schauflera2af0312020-08-11 17:39:42 -07002868 rc = smk_ipv4_check(sock->sk, (struct sockaddr_in *)sap);
Casey Schauflerc6739442013-05-22 18:42:56 -07002869 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002870}
2871
2872/**
2873 * smack_flags_to_may - convert S_ to MAY_ values
2874 * @flags: the S_ value
2875 *
2876 * Returns the equivalent MAY_ value
2877 */
2878static int smack_flags_to_may(int flags)
2879{
2880 int may = 0;
2881
2882 if (flags & S_IRUGO)
2883 may |= MAY_READ;
2884 if (flags & S_IWUGO)
2885 may |= MAY_WRITE;
2886 if (flags & S_IXUGO)
2887 may |= MAY_EXEC;
2888
2889 return may;
2890}
2891
2892/**
2893 * smack_msg_msg_alloc_security - Set the security blob for msg_msg
2894 * @msg: the object
2895 *
2896 * Returns 0
2897 */
2898static int smack_msg_msg_alloc_security(struct msg_msg *msg)
2899{
Casey Schauflerecd5f822018-11-20 11:55:02 -08002900 struct smack_known **blob = smack_msg_msg(msg);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07002901
Casey Schauflerecd5f822018-11-20 11:55:02 -08002902 *blob = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002903 return 0;
2904}
2905
2906/**
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002907 * smack_of_ipc - the smack pointer for the ipc
2908 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08002909 *
2910 * Returns a pointer to the smack value
2911 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002912static struct smack_known *smack_of_ipc(struct kern_ipc_perm *isp)
Casey Schauflere114e472008-02-04 22:29:50 -08002913{
Casey Schaufler019bcca2018-09-21 17:19:54 -07002914 struct smack_known **blob = smack_ipc(isp);
2915
2916 return *blob;
Casey Schauflere114e472008-02-04 22:29:50 -08002917}
2918
2919/**
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002920 * smack_ipc_alloc_security - Set the security blob for ipc
2921 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08002922 *
2923 * Returns 0
2924 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002925static int smack_ipc_alloc_security(struct kern_ipc_perm *isp)
Casey Schauflere114e472008-02-04 22:29:50 -08002926{
Casey Schaufler019bcca2018-09-21 17:19:54 -07002927 struct smack_known **blob = smack_ipc(isp);
Casey Schauflere114e472008-02-04 22:29:50 -08002928
Casey Schaufler019bcca2018-09-21 17:19:54 -07002929 *blob = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08002930 return 0;
2931}
2932
2933/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02002934 * smk_curacc_shm : check if current has access on shm
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002935 * @isp : the object
Etienne Bassetecfcc532009-04-08 20:40:06 +02002936 * @access : access requested
2937 *
2938 * Returns 0 if current has the requested access, error code otherwise
2939 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002940static int smk_curacc_shm(struct kern_ipc_perm *isp, int access)
Etienne Bassetecfcc532009-04-08 20:40:06 +02002941{
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002942 struct smack_known *ssp = smack_of_ipc(isp);
Etienne Bassetecfcc532009-04-08 20:40:06 +02002943 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07002944 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002945
2946#ifdef CONFIG_AUDIT
2947 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002948 ad.a.u.ipc_id = isp->id;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002949#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07002950 rc = smk_curacc(ssp, access, &ad);
2951 rc = smk_bu_current("shm", ssp, access, rc);
2952 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02002953}
2954
2955/**
Casey Schauflere114e472008-02-04 22:29:50 -08002956 * smack_shm_associate - Smack access check for shm
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002957 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08002958 * @shmflg: access requested
2959 *
2960 * Returns 0 if current has the requested access, error code otherwise
2961 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002962static int smack_shm_associate(struct kern_ipc_perm *isp, int shmflg)
Casey Schauflere114e472008-02-04 22:29:50 -08002963{
Casey Schauflere114e472008-02-04 22:29:50 -08002964 int may;
2965
2966 may = smack_flags_to_may(shmflg);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002967 return smk_curacc_shm(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08002968}
2969
2970/**
2971 * smack_shm_shmctl - Smack access check for shm
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002972 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08002973 * @cmd: what it wants to do
2974 *
2975 * Returns 0 if current has the requested access, error code otherwise
2976 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05002977static int smack_shm_shmctl(struct kern_ipc_perm *isp, int cmd)
Casey Schauflere114e472008-02-04 22:29:50 -08002978{
Casey Schauflere114e472008-02-04 22:29:50 -08002979 int may;
2980
2981 switch (cmd) {
2982 case IPC_STAT:
2983 case SHM_STAT:
Davidlohr Buesoc21a6972018-04-10 16:35:23 -07002984 case SHM_STAT_ANY:
Casey Schauflere114e472008-02-04 22:29:50 -08002985 may = MAY_READ;
2986 break;
2987 case IPC_SET:
2988 case SHM_LOCK:
2989 case SHM_UNLOCK:
2990 case IPC_RMID:
2991 may = MAY_READWRITE;
2992 break;
2993 case IPC_INFO:
2994 case SHM_INFO:
2995 /*
2996 * System level information.
2997 */
2998 return 0;
2999 default:
3000 return -EINVAL;
3001 }
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003002 return smk_curacc_shm(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003003}
3004
3005/**
3006 * smack_shm_shmat - Smack access for shmat
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003007 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003008 * @shmaddr: unused
3009 * @shmflg: access requested
3010 *
3011 * Returns 0 if current has the requested access, error code otherwise
3012 */
luanshia1a07f22019-07-05 10:35:20 +08003013static int smack_shm_shmat(struct kern_ipc_perm *isp, char __user *shmaddr,
Casey Schauflere114e472008-02-04 22:29:50 -08003014 int shmflg)
3015{
Casey Schauflere114e472008-02-04 22:29:50 -08003016 int may;
3017
3018 may = smack_flags_to_may(shmflg);
luanshia1a07f22019-07-05 10:35:20 +08003019 return smk_curacc_shm(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003020}
3021
3022/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02003023 * smk_curacc_sem : check if current has access on sem
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003024 * @isp : the object
Etienne Bassetecfcc532009-04-08 20:40:06 +02003025 * @access : access requested
3026 *
3027 * Returns 0 if current has the requested access, error code otherwise
3028 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003029static int smk_curacc_sem(struct kern_ipc_perm *isp, int access)
Etienne Bassetecfcc532009-04-08 20:40:06 +02003030{
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003031 struct smack_known *ssp = smack_of_ipc(isp);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003032 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003033 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003034
3035#ifdef CONFIG_AUDIT
3036 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003037 ad.a.u.ipc_id = isp->id;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003038#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07003039 rc = smk_curacc(ssp, access, &ad);
3040 rc = smk_bu_current("sem", ssp, access, rc);
3041 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003042}
3043
3044/**
Casey Schauflere114e472008-02-04 22:29:50 -08003045 * smack_sem_associate - Smack access check for sem
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003046 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003047 * @semflg: access requested
3048 *
3049 * Returns 0 if current has the requested access, error code otherwise
3050 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003051static int smack_sem_associate(struct kern_ipc_perm *isp, int semflg)
Casey Schauflere114e472008-02-04 22:29:50 -08003052{
Casey Schauflere114e472008-02-04 22:29:50 -08003053 int may;
3054
3055 may = smack_flags_to_may(semflg);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003056 return smk_curacc_sem(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003057}
3058
3059/**
Casey Schauflerb57d0202021-10-13 14:56:43 -07003060 * smack_sem_semctl - Smack access check for sem
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003061 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003062 * @cmd: what it wants to do
3063 *
3064 * Returns 0 if current has the requested access, error code otherwise
3065 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003066static int smack_sem_semctl(struct kern_ipc_perm *isp, int cmd)
Casey Schauflere114e472008-02-04 22:29:50 -08003067{
Casey Schauflere114e472008-02-04 22:29:50 -08003068 int may;
3069
3070 switch (cmd) {
3071 case GETPID:
3072 case GETNCNT:
3073 case GETZCNT:
3074 case GETVAL:
3075 case GETALL:
3076 case IPC_STAT:
3077 case SEM_STAT:
Davidlohr Buesoa280d6d2018-04-10 16:35:26 -07003078 case SEM_STAT_ANY:
Casey Schauflere114e472008-02-04 22:29:50 -08003079 may = MAY_READ;
3080 break;
3081 case SETVAL:
3082 case SETALL:
3083 case IPC_RMID:
3084 case IPC_SET:
3085 may = MAY_READWRITE;
3086 break;
3087 case IPC_INFO:
3088 case SEM_INFO:
3089 /*
3090 * System level information
3091 */
3092 return 0;
3093 default:
3094 return -EINVAL;
3095 }
3096
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003097 return smk_curacc_sem(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003098}
3099
3100/**
3101 * smack_sem_semop - Smack checks of semaphore operations
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003102 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003103 * @sops: unused
3104 * @nsops: unused
3105 * @alter: unused
3106 *
3107 * Treated as read and write in all cases.
3108 *
3109 * Returns 0 if access is allowed, error code otherwise
3110 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003111static int smack_sem_semop(struct kern_ipc_perm *isp, struct sembuf *sops,
Casey Schauflere114e472008-02-04 22:29:50 -08003112 unsigned nsops, int alter)
3113{
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003114 return smk_curacc_sem(isp, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08003115}
3116
3117/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02003118 * smk_curacc_msq : helper to check if current has access on msq
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003119 * @isp : the msq
Etienne Bassetecfcc532009-04-08 20:40:06 +02003120 * @access : access requested
3121 *
3122 * return 0 if current has access, error otherwise
3123 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003124static int smk_curacc_msq(struct kern_ipc_perm *isp, int access)
Etienne Bassetecfcc532009-04-08 20:40:06 +02003125{
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003126 struct smack_known *msp = smack_of_ipc(isp);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003127 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003128 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003129
3130#ifdef CONFIG_AUDIT
3131 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003132 ad.a.u.ipc_id = isp->id;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003133#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07003134 rc = smk_curacc(msp, access, &ad);
3135 rc = smk_bu_current("msq", msp, access, rc);
3136 return rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003137}
3138
3139/**
Casey Schauflere114e472008-02-04 22:29:50 -08003140 * smack_msg_queue_associate - Smack access check for msg_queue
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003141 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003142 * @msqflg: access requested
3143 *
3144 * Returns 0 if current has the requested access, error code otherwise
3145 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003146static int smack_msg_queue_associate(struct kern_ipc_perm *isp, int msqflg)
Casey Schauflere114e472008-02-04 22:29:50 -08003147{
Casey Schauflere114e472008-02-04 22:29:50 -08003148 int may;
3149
3150 may = smack_flags_to_may(msqflg);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003151 return smk_curacc_msq(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003152}
3153
3154/**
3155 * smack_msg_queue_msgctl - Smack access check for msg_queue
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003156 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003157 * @cmd: what it wants to do
3158 *
3159 * Returns 0 if current has the requested access, error code otherwise
3160 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003161static int smack_msg_queue_msgctl(struct kern_ipc_perm *isp, int cmd)
Casey Schauflere114e472008-02-04 22:29:50 -08003162{
Casey Schauflere114e472008-02-04 22:29:50 -08003163 int may;
3164
3165 switch (cmd) {
3166 case IPC_STAT:
3167 case MSG_STAT:
Davidlohr Bueso23c8cec2018-04-10 16:35:30 -07003168 case MSG_STAT_ANY:
Casey Schauflere114e472008-02-04 22:29:50 -08003169 may = MAY_READ;
3170 break;
3171 case IPC_SET:
3172 case IPC_RMID:
3173 may = MAY_READWRITE;
3174 break;
3175 case IPC_INFO:
3176 case MSG_INFO:
3177 /*
3178 * System level information
3179 */
3180 return 0;
3181 default:
3182 return -EINVAL;
3183 }
3184
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003185 return smk_curacc_msq(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003186}
3187
3188/**
3189 * smack_msg_queue_msgsnd - Smack access check for msg_queue
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003190 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003191 * @msg: unused
3192 * @msqflg: access requested
3193 *
3194 * Returns 0 if current has the requested access, error code otherwise
3195 */
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003196static int smack_msg_queue_msgsnd(struct kern_ipc_perm *isp, struct msg_msg *msg,
Casey Schauflere114e472008-02-04 22:29:50 -08003197 int msqflg)
3198{
Etienne Bassetecfcc532009-04-08 20:40:06 +02003199 int may;
Casey Schauflere114e472008-02-04 22:29:50 -08003200
Etienne Bassetecfcc532009-04-08 20:40:06 +02003201 may = smack_flags_to_may(msqflg);
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003202 return smk_curacc_msq(isp, may);
Casey Schauflere114e472008-02-04 22:29:50 -08003203}
3204
3205/**
Casey Schauflerb57d0202021-10-13 14:56:43 -07003206 * smack_msg_queue_msgrcv - Smack access check for msg_queue
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003207 * @isp: the object
Casey Schauflere114e472008-02-04 22:29:50 -08003208 * @msg: unused
3209 * @target: unused
3210 * @type: unused
3211 * @mode: unused
3212 *
3213 * Returns 0 if current has read and write access, error code otherwise
3214 */
Casey Schauflerb57d0202021-10-13 14:56:43 -07003215static int smack_msg_queue_msgrcv(struct kern_ipc_perm *isp,
3216 struct msg_msg *msg,
3217 struct task_struct *target, long type,
3218 int mode)
Casey Schauflere114e472008-02-04 22:29:50 -08003219{
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05003220 return smk_curacc_msq(isp, MAY_READWRITE);
Casey Schauflere114e472008-02-04 22:29:50 -08003221}
3222
3223/**
3224 * smack_ipc_permission - Smack access for ipc_permission()
3225 * @ipp: the object permissions
3226 * @flag: access requested
3227 *
3228 * Returns 0 if current has read and write access, error code otherwise
3229 */
3230static int smack_ipc_permission(struct kern_ipc_perm *ipp, short flag)
3231{
Casey Schaufler019bcca2018-09-21 17:19:54 -07003232 struct smack_known **blob = smack_ipc(ipp);
3233 struct smack_known *iskp = *blob;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003234 int may = smack_flags_to_may(flag);
3235 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003236 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003237
Etienne Bassetecfcc532009-04-08 20:40:06 +02003238#ifdef CONFIG_AUDIT
3239 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_IPC);
3240 ad.a.u.ipc_id = ipp->id;
3241#endif
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003242 rc = smk_curacc(iskp, may, &ad);
3243 rc = smk_bu_current("svipc", iskp, may, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003244 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003245}
3246
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003247/**
3248 * smack_ipc_getsecid - Extract smack security id
Randy Dunlap251a2a92009-02-18 11:42:33 -08003249 * @ipp: the object permissions
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003250 * @secid: where result will be saved
3251 */
3252static void smack_ipc_getsecid(struct kern_ipc_perm *ipp, u32 *secid)
3253{
Casey Schaufler019bcca2018-09-21 17:19:54 -07003254 struct smack_known **blob = smack_ipc(ipp);
3255 struct smack_known *iskp = *blob;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003256
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003257 *secid = iskp->smk_secid;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10003258}
3259
Casey Schauflere114e472008-02-04 22:29:50 -08003260/**
3261 * smack_d_instantiate - Make sure the blob is correct on an inode
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02003262 * @opt_dentry: dentry where inode will be attached
Casey Schauflere114e472008-02-04 22:29:50 -08003263 * @inode: the object
3264 *
3265 * Set the inode's security blob if it hasn't been done already.
3266 */
3267static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
3268{
3269 struct super_block *sbp;
3270 struct superblock_smack *sbsp;
3271 struct inode_smack *isp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003272 struct smack_known *skp;
3273 struct smack_known *ckp = smk_of_current();
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003274 struct smack_known *final;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003275 char trattr[TRANS_TRUE_SIZE];
3276 int transflag = 0;
Casey Schaufler2267b132012-03-13 19:14:19 -07003277 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003278 struct dentry *dp;
3279
3280 if (inode == NULL)
3281 return;
3282
Casey Schauflerfb4021b2018-11-12 12:43:01 -08003283 isp = smack_inode(inode);
Casey Schauflere114e472008-02-04 22:29:50 -08003284
Casey Schauflere114e472008-02-04 22:29:50 -08003285 /*
3286 * If the inode is already instantiated
3287 * take the quick way out
3288 */
3289 if (isp->smk_flags & SMK_INODE_INSTANT)
Casey Schaufler921bb1c2020-04-24 15:23:04 -07003290 return;
Casey Schauflere114e472008-02-04 22:29:50 -08003291
3292 sbp = inode->i_sb;
Casey Schaufler1aea7802021-04-22 17:41:15 +02003293 sbsp = smack_superblock(sbp);
Casey Schauflere114e472008-02-04 22:29:50 -08003294 /*
3295 * We're going to use the superblock default label
3296 * if there's no label on the file.
3297 */
3298 final = sbsp->smk_default;
3299
3300 /*
Casey Schauflere97dcb02008-06-02 10:04:32 -07003301 * If this is the root inode the superblock
3302 * may be in the process of initialization.
3303 * If that is the case use the root value out
3304 * of the superblock.
3305 */
3306 if (opt_dentry->d_parent == opt_dentry) {
Łukasz Stelmach1d8c2322014-12-16 16:53:08 +01003307 switch (sbp->s_magic) {
3308 case CGROUP_SUPER_MAGIC:
José Bollo58c442f2018-02-27 17:06:21 +01003309 case CGROUP2_SUPER_MAGIC:
Casey Schaufler36ea7352014-04-28 15:23:01 -07003310 /*
3311 * The cgroup filesystem is never mounted,
3312 * so there's no opportunity to set the mount
3313 * options.
3314 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003315 sbsp->smk_root = &smack_known_star;
3316 sbsp->smk_default = &smack_known_star;
Łukasz Stelmach1d8c2322014-12-16 16:53:08 +01003317 isp->smk_inode = sbsp->smk_root;
3318 break;
3319 case TMPFS_MAGIC:
3320 /*
3321 * What about shmem/tmpfs anonymous files with dentry
3322 * obtained from d_alloc_pseudo()?
3323 */
3324 isp->smk_inode = smk_of_current();
3325 break;
Roman Kubiak8da4aba2015-10-05 12:27:16 +02003326 case PIPEFS_MAGIC:
3327 isp->smk_inode = smk_of_current();
3328 break;
Rafal Krypa805b65a2016-12-09 14:03:04 +01003329 case SOCKFS_MAGIC:
3330 /*
3331 * Socket access is controlled by the socket
3332 * structures associated with the task involved.
3333 */
3334 isp->smk_inode = &smack_known_star;
3335 break;
Łukasz Stelmach1d8c2322014-12-16 16:53:08 +01003336 default:
3337 isp->smk_inode = sbsp->smk_root;
3338 break;
Casey Schaufler36ea7352014-04-28 15:23:01 -07003339 }
Casey Schauflere97dcb02008-06-02 10:04:32 -07003340 isp->smk_flags |= SMK_INODE_INSTANT;
Casey Schaufler921bb1c2020-04-24 15:23:04 -07003341 return;
Casey Schauflere97dcb02008-06-02 10:04:32 -07003342 }
3343
3344 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003345 * This is pretty hackish.
3346 * Casey says that we shouldn't have to do
3347 * file system specific code, but it does help
3348 * with keeping it simple.
3349 */
3350 switch (sbp->s_magic) {
3351 case SMACK_MAGIC:
Casey Schaufler36ea7352014-04-28 15:23:01 -07003352 case CGROUP_SUPER_MAGIC:
José Bollo58c442f2018-02-27 17:06:21 +01003353 case CGROUP2_SUPER_MAGIC:
Casey Schauflere114e472008-02-04 22:29:50 -08003354 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003355 * Casey says that it's a little embarrassing
Casey Schauflere114e472008-02-04 22:29:50 -08003356 * that the smack file system doesn't do
3357 * extended attributes.
Casey Schaufler36ea7352014-04-28 15:23:01 -07003358 *
Casey Schaufler36ea7352014-04-28 15:23:01 -07003359 * Cgroupfs is special
Casey Schauflere114e472008-02-04 22:29:50 -08003360 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003361 final = &smack_known_star;
Casey Schauflere114e472008-02-04 22:29:50 -08003362 break;
3363 case DEVPTS_SUPER_MAGIC:
3364 /*
3365 * devpts seems content with the label of the task.
3366 * Programs that change smack have to treat the
3367 * pty with respect.
3368 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003369 final = ckp;
Casey Schauflere114e472008-02-04 22:29:50 -08003370 break;
Casey Schauflere114e472008-02-04 22:29:50 -08003371 case PROC_SUPER_MAGIC:
3372 /*
3373 * Casey says procfs appears not to care.
3374 * The superblock default suffices.
3375 */
3376 break;
3377 case TMPFS_MAGIC:
3378 /*
3379 * Device labels should come from the filesystem,
3380 * but watch out, because they're volitile,
3381 * getting recreated on every reboot.
3382 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003383 final = &smack_known_star;
Casey Schauflere114e472008-02-04 22:29:50 -08003384 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003385 * If a smack value has been set we want to use it,
3386 * but since tmpfs isn't giving us the opportunity
3387 * to set mount options simulate setting the
3388 * superblock default.
3389 */
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05003390 fallthrough;
Casey Schauflere114e472008-02-04 22:29:50 -08003391 default:
3392 /*
3393 * This isn't an understood special case.
3394 * Get the value from the xattr.
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003395 */
3396
3397 /*
3398 * UNIX domain sockets use lower level socket data.
3399 */
3400 if (S_ISSOCK(inode->i_mode)) {
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003401 final = &smack_known_star;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003402 break;
3403 }
3404 /*
Casey Schauflere114e472008-02-04 22:29:50 -08003405 * No xattr support means, alas, no SMACK label.
3406 * Use the aforeapplied default.
3407 * It would be curious if the label of the task
3408 * does not match that assigned.
3409 */
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +02003410 if (!(inode->i_opflags & IOP_XATTR))
3411 break;
Casey Schauflere114e472008-02-04 22:29:50 -08003412 /*
3413 * Get the dentry for xattr.
3414 */
Dan Carpenter3e62cbb2010-06-01 09:14:04 +02003415 dp = dget(opt_dentry);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003416 skp = smk_fetch(XATTR_NAME_SMACK, inode, dp);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003417 if (!IS_ERR_OR_NULL(skp))
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003418 final = skp;
Casey Schaufler2267b132012-03-13 19:14:19 -07003419
3420 /*
3421 * Transmuting directory
3422 */
3423 if (S_ISDIR(inode->i_mode)) {
3424 /*
3425 * If this is a new directory and the label was
3426 * transmuted when the inode was initialized
3427 * set the transmute attribute on the directory
3428 * and mark the inode.
3429 *
3430 * If there is a transmute attribute on the
3431 * directory mark the inode.
3432 */
3433 if (isp->smk_flags & SMK_INODE_CHANGED) {
3434 isp->smk_flags &= ~SMK_INODE_CHANGED;
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01003435 rc = __vfs_setxattr(&init_user_ns, dp, inode,
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003436 XATTR_NAME_SMACKTRANSMUTE,
Casey Schaufler2267b132012-03-13 19:14:19 -07003437 TRANS_TRUE, TRANS_TRUE_SIZE,
3438 0);
3439 } else {
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +02003440 rc = __vfs_getxattr(dp, inode,
Casey Schaufler2267b132012-03-13 19:14:19 -07003441 XATTR_NAME_SMACKTRANSMUTE, trattr,
3442 TRANS_TRUE_SIZE);
3443 if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
3444 TRANS_TRUE_SIZE) != 0)
3445 rc = -EINVAL;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003446 }
Casey Schaufler2267b132012-03-13 19:14:19 -07003447 if (rc >= 0)
3448 transflag = SMK_INODE_TRANSMUTE;
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003449 }
Seth Forshee809c02e2016-04-26 14:36:22 -05003450 /*
3451 * Don't let the exec or mmap label be "*" or "@".
3452 */
3453 skp = smk_fetch(XATTR_NAME_SMACKEXEC, inode, dp);
3454 if (IS_ERR(skp) || skp == &smack_known_star ||
3455 skp == &smack_known_web)
3456 skp = NULL;
3457 isp->smk_task = skp;
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003458
Casey Schaufler19760ad2013-12-16 16:27:26 -08003459 skp = smk_fetch(XATTR_NAME_SMACKMMAP, inode, dp);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003460 if (IS_ERR(skp) || skp == &smack_known_star ||
3461 skp == &smack_known_web)
Casey Schaufler19760ad2013-12-16 16:27:26 -08003462 skp = NULL;
3463 isp->smk_mmap = skp;
Casey Schaufler676dac42010-12-02 06:43:39 -08003464
Casey Schauflere114e472008-02-04 22:29:50 -08003465 dput(dp);
3466 break;
3467 }
3468
3469 if (final == NULL)
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003470 isp->smk_inode = ckp;
Casey Schauflere114e472008-02-04 22:29:50 -08003471 else
3472 isp->smk_inode = final;
3473
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +02003474 isp->smk_flags |= (SMK_INODE_INSTANT | transflag);
Casey Schauflere114e472008-02-04 22:29:50 -08003475
Casey Schauflere114e472008-02-04 22:29:50 -08003476 return;
3477}
3478
3479/**
3480 * smack_getprocattr - Smack process attribute access
3481 * @p: the object task
3482 * @name: the name of the attribute in /proc/.../attr
3483 * @value: where to put the result
3484 *
3485 * Places a copy of the task Smack into value
3486 *
3487 * Returns the length of the smack label or an error code
3488 */
3489static int smack_getprocattr(struct task_struct *p, char *name, char **value)
3490{
Paul Moorea3727a82021-09-23 09:50:11 -04003491 struct smack_known *skp = smk_of_task_struct_obj(p);
Casey Schauflere114e472008-02-04 22:29:50 -08003492 char *cp;
3493 int slen;
3494
3495 if (strcmp(name, "current") != 0)
3496 return -EINVAL;
3497
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003498 cp = kstrdup(skp->smk_known, GFP_KERNEL);
Casey Schauflere114e472008-02-04 22:29:50 -08003499 if (cp == NULL)
3500 return -ENOMEM;
3501
3502 slen = strlen(cp);
3503 *value = cp;
3504 return slen;
3505}
3506
3507/**
3508 * smack_setprocattr - Smack process attribute setting
Casey Schauflere114e472008-02-04 22:29:50 -08003509 * @name: the name of the attribute in /proc/.../attr
3510 * @value: the value to set
3511 * @size: the size of the value
3512 *
3513 * Sets the Smack value of the task. Only setting self
3514 * is permitted and only with privilege
3515 *
3516 * Returns the length of the smack label or an error code
3517 */
Stephen Smalleyb21507e2017-01-09 10:07:31 -05003518static int smack_setprocattr(const char *name, void *value, size_t size)
Casey Schauflere114e472008-02-04 22:29:50 -08003519{
Casey Schauflerb17103a2018-11-09 16:12:56 -08003520 struct task_smack *tsp = smack_cred(current_cred());
David Howellsd84f4f92008-11-14 10:39:23 +11003521 struct cred *new;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003522 struct smack_known *skp;
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003523 struct smack_known_list_elem *sklep;
3524 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003525
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003526 if (!smack_privileged(CAP_MAC_ADMIN) && list_empty(&tsp->smk_relabel))
David Howells5cd9c582008-08-14 11:37:28 +01003527 return -EPERM;
3528
Casey Schauflerf7112e62012-05-06 15:22:02 -07003529 if (value == NULL || size == 0 || size >= SMK_LONGLABEL)
Casey Schauflere114e472008-02-04 22:29:50 -08003530 return -EINVAL;
3531
3532 if (strcmp(name, "current") != 0)
3533 return -EINVAL;
3534
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003535 skp = smk_import_entry(value, size);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02003536 if (IS_ERR(skp))
3537 return PTR_ERR(skp);
Casey Schauflere114e472008-02-04 22:29:50 -08003538
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003539 /*
Himanshu Shukla7128ea12016-11-10 16:17:49 +05303540 * No process is ever allowed the web ("@") label
3541 * and the star ("*") label.
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003542 */
Himanshu Shukla7128ea12016-11-10 16:17:49 +05303543 if (skp == &smack_known_web || skp == &smack_known_star)
3544 return -EINVAL;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003545
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003546 if (!smack_privileged(CAP_MAC_ADMIN)) {
3547 rc = -EPERM;
3548 list_for_each_entry(sklep, &tsp->smk_relabel, list)
3549 if (sklep->smk_label == skp) {
3550 rc = 0;
3551 break;
3552 }
3553 if (rc)
3554 return rc;
3555 }
3556
David Howellsd84f4f92008-11-14 10:39:23 +11003557 new = prepare_creds();
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003558 if (new == NULL)
David Howellsd84f4f92008-11-14 10:39:23 +11003559 return -ENOMEM;
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003560
Casey Schauflerb17103a2018-11-09 16:12:56 -08003561 tsp = smack_cred(new);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003562 tsp->smk_task = skp;
Zbigniew Jasinski38416e52015-10-19 18:23:53 +02003563 /*
3564 * process can change its label only once
3565 */
3566 smk_destroy_label_list(&tsp->smk_relabel);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08003567
David Howellsd84f4f92008-11-14 10:39:23 +11003568 commit_creds(new);
Casey Schauflere114e472008-02-04 22:29:50 -08003569 return size;
3570}
3571
3572/**
3573 * smack_unix_stream_connect - Smack access on UDS
David S. Miller3610cda2011-01-05 15:38:53 -08003574 * @sock: one sock
3575 * @other: the other sock
Casey Schauflere114e472008-02-04 22:29:50 -08003576 * @newsk: unused
3577 *
3578 * Return 0 if a subject with the smack of sock could access
3579 * an object with the smack of other, otherwise an error code
3580 */
David S. Miller3610cda2011-01-05 15:38:53 -08003581static int smack_unix_stream_connect(struct sock *sock,
3582 struct sock *other, struct sock *newsk)
Casey Schauflere114e472008-02-04 22:29:50 -08003583{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003584 struct smack_known *skp;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003585 struct smack_known *okp;
James Morrisd2e7ad12011-01-10 09:46:24 +11003586 struct socket_smack *ssp = sock->sk_security;
3587 struct socket_smack *osp = other->sk_security;
Casey Schaufler975d5e52011-09-26 14:43:39 -07003588 struct socket_smack *nsp = newsk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003589 struct smk_audit_info ad;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003590 int rc = 0;
Kees Cook923e9a12012-04-10 13:26:44 -07003591#ifdef CONFIG_AUDIT
3592 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003593#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003594
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003595 if (!smack_privileged(CAP_MAC_OVERRIDE)) {
3596 skp = ssp->smk_out;
Zbigniew Jasinski96be7b52014-12-29 15:34:58 +01003597 okp = osp->smk_in;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003598#ifdef CONFIG_AUDIT
3599 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
3600 smk_ad_setfield_u_net_sk(&ad, other);
3601#endif
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003602 rc = smk_access(skp, okp, MAY_WRITE, &ad);
3603 rc = smk_bu_note("UDS connect", skp, okp, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003604 if (rc == 0) {
Zbigniew Jasinski96be7b52014-12-29 15:34:58 +01003605 okp = osp->smk_out;
3606 skp = ssp->smk_in;
Rafal Krypa138a8682015-01-08 18:52:45 +01003607 rc = smk_access(okp, skp, MAY_WRITE, &ad);
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003608 rc = smk_bu_note("UDS connect", okp, skp,
Casey Schauflerd166c802014-08-27 14:51:27 -07003609 MAY_WRITE, rc);
3610 }
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003611 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003612
Casey Schaufler975d5e52011-09-26 14:43:39 -07003613 /*
3614 * Cross reference the peer labels for SO_PEERSEC.
3615 */
3616 if (rc == 0) {
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003617 nsp->smk_packet = ssp->smk_out;
3618 ssp->smk_packet = osp->smk_out;
Casey Schaufler975d5e52011-09-26 14:43:39 -07003619 }
3620
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003621 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003622}
3623
3624/**
3625 * smack_unix_may_send - Smack access on UDS
3626 * @sock: one socket
3627 * @other: the other socket
3628 *
3629 * Return 0 if a subject with the smack of sock could access
3630 * an object with the smack of other, otherwise an error code
3631 */
3632static int smack_unix_may_send(struct socket *sock, struct socket *other)
3633{
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003634 struct socket_smack *ssp = sock->sk->sk_security;
3635 struct socket_smack *osp = other->sk->sk_security;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003636 struct smk_audit_info ad;
Casey Schauflerd166c802014-08-27 14:51:27 -07003637 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003638
Kees Cook923e9a12012-04-10 13:26:44 -07003639#ifdef CONFIG_AUDIT
3640 struct lsm_network_audit net;
3641
Eric Paris48c62af2012-04-02 13:15:44 -04003642 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003643 smk_ad_setfield_u_net_sk(&ad, other->sk);
Kees Cook923e9a12012-04-10 13:26:44 -07003644#endif
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003645
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003646 if (smack_privileged(CAP_MAC_OVERRIDE))
3647 return 0;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08003648
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003649 rc = smk_access(ssp->smk_out, osp->smk_in, MAY_WRITE, &ad);
3650 rc = smk_bu_note("UDS send", ssp->smk_out, osp->smk_in, MAY_WRITE, rc);
Casey Schauflerd166c802014-08-27 14:51:27 -07003651 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003652}
3653
3654/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003655 * smack_socket_sendmsg - Smack check based on destination host
3656 * @sock: the socket
Randy Dunlap251a2a92009-02-18 11:42:33 -08003657 * @msg: the message
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003658 * @size: the size of the message
3659 *
Casey Schauflerc6739442013-05-22 18:42:56 -07003660 * Return 0 if the current subject can write to the destination host.
3661 * For IPv4 this is only a question if the destination is a single label host.
3662 * For IPv6 this is a check against the label of the port.
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003663 */
3664static int smack_socket_sendmsg(struct socket *sock, struct msghdr *msg,
3665 int size)
3666{
3667 struct sockaddr_in *sip = (struct sockaddr_in *) msg->msg_name;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003668#if IS_ENABLED(CONFIG_IPV6)
Casey Schaufler6ea06242013-08-05 13:21:22 -07003669 struct sockaddr_in6 *sap = (struct sockaddr_in6 *) msg->msg_name;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003670#endif
3671#ifdef SMACK_IPV6_SECMARK_LABELING
3672 struct socket_smack *ssp = sock->sk->sk_security;
3673 struct smack_known *rsp;
3674#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003675 int rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003676
3677 /*
3678 * Perfectly reasonable for this to be NULL
3679 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003680 if (sip == NULL)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003681 return 0;
3682
Roman Kubiak81bd0d52015-12-17 13:24:35 +01003683 switch (sock->sk->sk_family) {
Casey Schauflerc6739442013-05-22 18:42:56 -07003684 case AF_INET:
Tetsuo Handab9ef5512019-04-12 19:59:35 +09003685 if (msg->msg_namelen < sizeof(struct sockaddr_in) ||
3686 sip->sin_family != AF_INET)
3687 return -EINVAL;
Casey Schauflera2af0312020-08-11 17:39:42 -07003688 rc = smk_ipv4_check(sock->sk, sip);
Casey Schauflerc6739442013-05-22 18:42:56 -07003689 break;
Casey Schaufler619ae032019-04-30 14:13:32 -07003690#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerc6739442013-05-22 18:42:56 -07003691 case AF_INET6:
Tetsuo Handab9ef5512019-04-12 19:59:35 +09003692 if (msg->msg_namelen < SIN6_LEN_RFC2133 ||
3693 sap->sin6_family != AF_INET6)
3694 return -EINVAL;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003695#ifdef SMACK_IPV6_SECMARK_LABELING
3696 rsp = smack_ipv6host_label(sap);
3697 if (rsp != NULL)
3698 rc = smk_ipv6_check(ssp->smk_out, rsp, sap,
3699 SMK_CONNECTING);
3700#endif
3701#ifdef SMACK_IPV6_PORT_LABELING
Casey Schauflerc6739442013-05-22 18:42:56 -07003702 rc = smk_ipv6_port_check(sock->sk, sap, SMK_SENDING);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003703#endif
Casey Schaufler619ae032019-04-30 14:13:32 -07003704#endif /* IS_ENABLED(CONFIG_IPV6) */
Casey Schauflerc6739442013-05-22 18:42:56 -07003705 break;
3706 }
3707 return rc;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003708}
3709
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003710/**
Randy Dunlap251a2a92009-02-18 11:42:33 -08003711 * smack_from_secattr - Convert a netlabel attr.mls.lvl/attr.mls.cat pair to smack
Casey Schauflere114e472008-02-04 22:29:50 -08003712 * @sap: netlabel secattr
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003713 * @ssp: socket security information
Casey Schauflere114e472008-02-04 22:29:50 -08003714 *
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003715 * Returns a pointer to a Smack label entry found on the label list.
Casey Schauflere114e472008-02-04 22:29:50 -08003716 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003717static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap,
3718 struct socket_smack *ssp)
Casey Schauflere114e472008-02-04 22:29:50 -08003719{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003720 struct smack_known *skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003721 int found = 0;
Casey Schaufler677264e2013-06-28 13:47:07 -07003722 int acat;
3723 int kcat;
Casey Schauflere114e472008-02-04 22:29:50 -08003724
Casey Schaufler322dd632020-08-11 17:39:43 -07003725 /*
3726 * Netlabel found it in the cache.
3727 */
3728 if ((sap->flags & NETLBL_SECATTR_CACHE) != 0)
3729 return (struct smack_known *)sap->cache->data;
3730
3731 if ((sap->flags & NETLBL_SECATTR_SECID) != 0)
3732 /*
3733 * Looks like a fallback, which gives us a secid.
3734 */
3735 return smack_from_secid(sap->attr.secid);
3736
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003737 if ((sap->flags & NETLBL_SECATTR_MLS_LVL) != 0) {
Casey Schauflere114e472008-02-04 22:29:50 -08003738 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003739 * Looks like a CIPSO packet.
Casey Schauflere114e472008-02-04 22:29:50 -08003740 * If there are flags but no level netlabel isn't
3741 * behaving the way we expect it to.
3742 *
Casey Schauflerf7112e62012-05-06 15:22:02 -07003743 * Look it up in the label table
Casey Schauflere114e472008-02-04 22:29:50 -08003744 * Without guidance regarding the smack value
3745 * for the packet fall back on the network
3746 * ambient value.
3747 */
Casey Schauflerf7112e62012-05-06 15:22:02 -07003748 rcu_read_lock();
Vishal Goel348dc282016-11-23 10:45:31 +05303749 list_for_each_entry_rcu(skp, &smack_known_list, list) {
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003750 if (sap->attr.mls.lvl != skp->smk_netlabel.attr.mls.lvl)
Casey Schauflerf7112e62012-05-06 15:22:02 -07003751 continue;
Casey Schaufler677264e2013-06-28 13:47:07 -07003752 /*
3753 * Compare the catsets. Use the netlbl APIs.
3754 */
3755 if ((sap->flags & NETLBL_SECATTR_MLS_CAT) == 0) {
3756 if ((skp->smk_netlabel.flags &
3757 NETLBL_SECATTR_MLS_CAT) == 0)
3758 found = 1;
3759 break;
3760 }
3761 for (acat = -1, kcat = -1; acat == kcat; ) {
Paul Moore4fbe63d2014-08-01 11:17:37 -04003762 acat = netlbl_catmap_walk(sap->attr.mls.cat,
3763 acat + 1);
3764 kcat = netlbl_catmap_walk(
Casey Schaufler677264e2013-06-28 13:47:07 -07003765 skp->smk_netlabel.attr.mls.cat,
3766 kcat + 1);
3767 if (acat < 0 || kcat < 0)
3768 break;
3769 }
3770 if (acat == kcat) {
3771 found = 1;
3772 break;
3773 }
Casey Schauflere114e472008-02-04 22:29:50 -08003774 }
Casey Schauflerf7112e62012-05-06 15:22:02 -07003775 rcu_read_unlock();
3776
3777 if (found)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003778 return skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07003779
Casey Schaufler54e70ec2014-04-10 16:37:08 -07003780 if (ssp != NULL && ssp->smk_in == &smack_known_star)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07003781 return &smack_known_web;
3782 return &smack_known_star;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003783 }
Casey Schauflere114e472008-02-04 22:29:50 -08003784 /*
Casey Schaufler6d3dc072008-12-31 12:54:12 -05003785 * Without guidance regarding the smack value
3786 * for the packet fall back on the network
3787 * ambient value.
Casey Schauflere114e472008-02-04 22:29:50 -08003788 */
Casey Schaufler272cd7a2011-09-20 12:24:36 -07003789 return smack_net_ambient;
Casey Schauflere114e472008-02-04 22:29:50 -08003790}
3791
Casey Schaufler69f287a2014-12-12 17:08:40 -08003792#if IS_ENABLED(CONFIG_IPV6)
Casey Schaufler6ea06242013-08-05 13:21:22 -07003793static int smk_skb_to_addr_ipv6(struct sk_buff *skb, struct sockaddr_in6 *sip)
Casey Schauflerc6739442013-05-22 18:42:56 -07003794{
Casey Schauflerc6739442013-05-22 18:42:56 -07003795 u8 nexthdr;
3796 int offset;
3797 int proto = -EINVAL;
3798 struct ipv6hdr _ipv6h;
3799 struct ipv6hdr *ip6;
3800 __be16 frag_off;
3801 struct tcphdr _tcph, *th;
3802 struct udphdr _udph, *uh;
3803 struct dccp_hdr _dccph, *dh;
3804
3805 sip->sin6_port = 0;
3806
3807 offset = skb_network_offset(skb);
3808 ip6 = skb_header_pointer(skb, offset, sizeof(_ipv6h), &_ipv6h);
3809 if (ip6 == NULL)
3810 return -EINVAL;
3811 sip->sin6_addr = ip6->saddr;
3812
3813 nexthdr = ip6->nexthdr;
3814 offset += sizeof(_ipv6h);
3815 offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
3816 if (offset < 0)
3817 return -EINVAL;
3818
3819 proto = nexthdr;
3820 switch (proto) {
3821 case IPPROTO_TCP:
3822 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
3823 if (th != NULL)
3824 sip->sin6_port = th->source;
3825 break;
3826 case IPPROTO_UDP:
Piotr Sawickia07ef952018-07-19 11:45:16 +02003827 case IPPROTO_UDPLITE:
Casey Schauflerc6739442013-05-22 18:42:56 -07003828 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
3829 if (uh != NULL)
3830 sip->sin6_port = uh->source;
3831 break;
3832 case IPPROTO_DCCP:
3833 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
3834 if (dh != NULL)
3835 sip->sin6_port = dh->dccph_sport;
3836 break;
3837 }
3838 return proto;
3839}
Casey Schaufler69f287a2014-12-12 17:08:40 -08003840#endif /* CONFIG_IPV6 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003841
Casey Schauflere114e472008-02-04 22:29:50 -08003842/**
Casey Schaufler36be8122020-08-11 17:39:41 -07003843 * smack_from_skb - Smack data from the secmark in an skb
3844 * @skb: packet
3845 *
3846 * Returns smack_known of the secmark or NULL if that won't work.
3847 */
Casey Schauflerbf0afe62020-09-22 14:59:31 -07003848#ifdef CONFIG_NETWORK_SECMARK
Casey Schaufler36be8122020-08-11 17:39:41 -07003849static struct smack_known *smack_from_skb(struct sk_buff *skb)
3850{
3851 if (skb == NULL || skb->secmark == 0)
3852 return NULL;
3853
3854 return smack_from_secid(skb->secmark);
3855}
Casey Schauflerbf0afe62020-09-22 14:59:31 -07003856#else
3857static inline struct smack_known *smack_from_skb(struct sk_buff *skb)
3858{
3859 return NULL;
3860}
3861#endif
Casey Schaufler36be8122020-08-11 17:39:41 -07003862
3863/**
Casey Schauflera2af0312020-08-11 17:39:42 -07003864 * smack_from_netlbl - Smack data from the IP options in an skb
3865 * @sk: socket data came in on
3866 * @family: address family
3867 * @skb: packet
3868 *
Casey Schaufler322dd632020-08-11 17:39:43 -07003869 * Find the Smack label in the IP options. If it hasn't been
3870 * added to the netlabel cache, add it here.
3871 *
Casey Schauflera2af0312020-08-11 17:39:42 -07003872 * Returns smack_known of the IP options or NULL if that won't work.
3873 */
Florian Westphal41dd9592020-11-30 16:36:29 +01003874static struct smack_known *smack_from_netlbl(const struct sock *sk, u16 family,
Casey Schauflera2af0312020-08-11 17:39:42 -07003875 struct sk_buff *skb)
3876{
3877 struct netlbl_lsm_secattr secattr;
3878 struct socket_smack *ssp = NULL;
3879 struct smack_known *skp = NULL;
3880
3881 netlbl_secattr_init(&secattr);
3882
3883 if (sk)
3884 ssp = sk->sk_security;
Casey Schaufler322dd632020-08-11 17:39:43 -07003885
3886 if (netlbl_skbuff_getattr(skb, family, &secattr) == 0) {
Casey Schauflera2af0312020-08-11 17:39:42 -07003887 skp = smack_from_secattr(&secattr, ssp);
Casey Schaufler322dd632020-08-11 17:39:43 -07003888 if (secattr.flags & NETLBL_SECATTR_CACHEABLE)
Alex Shi9b0072e2020-11-08 14:45:42 +08003889 netlbl_cache_add(skb, family, &skp->smk_netlabel);
Casey Schaufler322dd632020-08-11 17:39:43 -07003890 }
Casey Schauflera2af0312020-08-11 17:39:42 -07003891
3892 netlbl_secattr_destroy(&secattr);
3893
3894 return skp;
3895}
3896
3897/**
Casey Schauflere114e472008-02-04 22:29:50 -08003898 * smack_socket_sock_rcv_skb - Smack packet delivery access check
3899 * @sk: socket
3900 * @skb: packet
3901 *
3902 * Returns 0 if the packet should be delivered, an error code otherwise
3903 */
3904static int smack_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
3905{
Casey Schauflere114e472008-02-04 22:29:50 -08003906 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003907 struct smack_known *skp = NULL;
Casey Schauflerc6739442013-05-22 18:42:56 -07003908 int rc = 0;
Etienne Bassetecfcc532009-04-08 20:40:06 +02003909 struct smk_audit_info ad;
Piotr Sawicki129a9982018-07-19 11:42:58 +02003910 u16 family = sk->sk_family;
Kees Cook923e9a12012-04-10 13:26:44 -07003911#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04003912 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07003913#endif
Casey Schaufler69f287a2014-12-12 17:08:40 -08003914#if IS_ENABLED(CONFIG_IPV6)
3915 struct sockaddr_in6 sadd;
3916 int proto;
Piotr Sawicki129a9982018-07-19 11:42:58 +02003917
3918 if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
3919 family = PF_INET;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003920#endif /* CONFIG_IPV6 */
3921
Piotr Sawicki129a9982018-07-19 11:42:58 +02003922 switch (family) {
Casey Schauflerc6739442013-05-22 18:42:56 -07003923 case PF_INET:
Casey Schaufler69f287a2014-12-12 17:08:40 -08003924 /*
3925 * If there is a secmark use it rather than the CIPSO label.
3926 * If there is no secmark fall back to CIPSO.
3927 * The secmark is assumed to reflect policy better.
3928 */
Casey Schaufler36be8122020-08-11 17:39:41 -07003929 skp = smack_from_skb(skb);
Casey Schauflera2af0312020-08-11 17:39:42 -07003930 if (skp == NULL) {
3931 skp = smack_from_netlbl(sk, family, skb);
3932 if (skp == NULL)
3933 skp = smack_net_ambient;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003934 }
Casey Schauflere114e472008-02-04 22:29:50 -08003935
Etienne Bassetecfcc532009-04-08 20:40:06 +02003936#ifdef CONFIG_AUDIT
Casey Schauflerc6739442013-05-22 18:42:56 -07003937 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Piotr Sawicki129a9982018-07-19 11:42:58 +02003938 ad.a.u.net->family = family;
Casey Schauflerc6739442013-05-22 18:42:56 -07003939 ad.a.u.net->netif = skb->skb_iif;
3940 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
Etienne Bassetecfcc532009-04-08 20:40:06 +02003941#endif
Casey Schauflerc6739442013-05-22 18:42:56 -07003942 /*
3943 * Receiving a packet requires that the other end
3944 * be able to write here. Read access is not required.
3945 * This is the simplist possible security model
3946 * for networking.
3947 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02003948 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
3949 rc = smk_bu_note("IPv4 delivery", skp, ssp->smk_in,
Casey Schauflerd166c802014-08-27 14:51:27 -07003950 MAY_WRITE, rc);
Casey Schauflerc6739442013-05-22 18:42:56 -07003951 if (rc != 0)
Piotr Sawicki129a9982018-07-19 11:42:58 +02003952 netlbl_skbuff_err(skb, family, rc, 0);
Casey Schauflerc6739442013-05-22 18:42:56 -07003953 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003954#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerc6739442013-05-22 18:42:56 -07003955 case PF_INET6:
Casey Schaufler69f287a2014-12-12 17:08:40 -08003956 proto = smk_skb_to_addr_ipv6(skb, &sadd);
Piotr Sawickia07ef952018-07-19 11:45:16 +02003957 if (proto != IPPROTO_UDP && proto != IPPROTO_UDPLITE &&
3958 proto != IPPROTO_TCP && proto != IPPROTO_DCCP)
Casey Schaufler69f287a2014-12-12 17:08:40 -08003959 break;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003960#ifdef SMACK_IPV6_SECMARK_LABELING
Casey Schaufler36be8122020-08-11 17:39:41 -07003961 skp = smack_from_skb(skb);
3962 if (skp == NULL) {
3963 if (smk_ipv6_localhost(&sadd))
3964 break;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003965 skp = smack_ipv6host_label(&sadd);
Casey Schaufler36be8122020-08-11 17:39:41 -07003966 if (skp == NULL)
3967 skp = smack_net_ambient;
3968 }
Casey Schaufler69f287a2014-12-12 17:08:40 -08003969#ifdef CONFIG_AUDIT
3970 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
Piotr Sawicki129a9982018-07-19 11:42:58 +02003971 ad.a.u.net->family = family;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003972 ad.a.u.net->netif = skb->skb_iif;
3973 ipv6_skb_to_auditdata(skb, &ad.a, NULL);
3974#endif /* CONFIG_AUDIT */
3975 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
3976 rc = smk_bu_note("IPv6 delivery", skp, ssp->smk_in,
3977 MAY_WRITE, rc);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003978#endif /* SMACK_IPV6_SECMARK_LABELING */
3979#ifdef SMACK_IPV6_PORT_LABELING
Casey Schaufler69f287a2014-12-12 17:08:40 -08003980 rc = smk_ipv6_port_check(sk, &sadd, SMK_RECEIVING);
Casey Schaufler21abb1e2015-07-22 14:25:31 -07003981#endif /* SMACK_IPV6_PORT_LABELING */
Piotr Sawickid66a8ac2018-07-19 11:47:31 +02003982 if (rc != 0)
3983 icmpv6_send(skb, ICMPV6_DEST_UNREACH,
3984 ICMPV6_ADM_PROHIBITED, 0);
Casey Schauflerc6739442013-05-22 18:42:56 -07003985 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08003986#endif /* CONFIG_IPV6 */
Casey Schauflerc6739442013-05-22 18:42:56 -07003987 }
Casey Schaufler69f287a2014-12-12 17:08:40 -08003988
Paul Moorea8134292008-10-10 10:16:31 -04003989 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08003990}
3991
3992/**
3993 * smack_socket_getpeersec_stream - pull in packet label
3994 * @sock: the socket
3995 * @optval: user's destination
3996 * @optlen: size thereof
Randy Dunlap251a2a92009-02-18 11:42:33 -08003997 * @len: max thereof
Casey Schauflere114e472008-02-04 22:29:50 -08003998 *
3999 * returns zero on success, an error code otherwise
4000 */
4001static int smack_socket_getpeersec_stream(struct socket *sock,
4002 char __user *optval,
4003 int __user *optlen, unsigned len)
4004{
4005 struct socket_smack *ssp;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004006 char *rcp = "";
4007 int slen = 1;
Casey Schauflere114e472008-02-04 22:29:50 -08004008 int rc = 0;
4009
4010 ssp = sock->sk->sk_security;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004011 if (ssp->smk_packet != NULL) {
Casey Schaufler54e70ec2014-04-10 16:37:08 -07004012 rcp = ssp->smk_packet->smk_known;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004013 slen = strlen(rcp) + 1;
4014 }
Casey Schauflere114e472008-02-04 22:29:50 -08004015
4016 if (slen > len)
4017 rc = -ERANGE;
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004018 else if (copy_to_user(optval, rcp, slen) != 0)
Casey Schauflere114e472008-02-04 22:29:50 -08004019 rc = -EFAULT;
4020
4021 if (put_user(slen, optlen) != 0)
4022 rc = -EFAULT;
4023
4024 return rc;
4025}
4026
4027
4028/**
4029 * smack_socket_getpeersec_dgram - pull in packet label
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004030 * @sock: the peer socket
Casey Schauflere114e472008-02-04 22:29:50 -08004031 * @skb: packet data
4032 * @secid: pointer to where to put the secid of the packet
4033 *
4034 * Sets the netlabel socket state on sk from parent
4035 */
4036static int smack_socket_getpeersec_dgram(struct socket *sock,
4037 struct sk_buff *skb, u32 *secid)
4038
4039{
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004040 struct socket_smack *ssp = NULL;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004041 struct smack_known *skp;
Casey Schauflera2af0312020-08-11 17:39:42 -07004042 struct sock *sk = NULL;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004043 int family = PF_UNSPEC;
4044 u32 s = 0; /* 0 is the invalid secid */
Casey Schauflere114e472008-02-04 22:29:50 -08004045
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004046 if (skb != NULL) {
4047 if (skb->protocol == htons(ETH_P_IP))
4048 family = PF_INET;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004049#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004050 else if (skb->protocol == htons(ETH_P_IPV6))
4051 family = PF_INET6;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004052#endif /* CONFIG_IPV6 */
Casey Schauflere114e472008-02-04 22:29:50 -08004053 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004054 if (family == PF_UNSPEC && sock != NULL)
4055 family = sock->sk->sk_family;
Casey Schauflere114e472008-02-04 22:29:50 -08004056
Casey Schaufler69f287a2014-12-12 17:08:40 -08004057 switch (family) {
4058 case PF_UNIX:
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004059 ssp = sock->sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004060 s = ssp->smk_out->smk_secid;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004061 break;
4062 case PF_INET:
Casey Schaufler36be8122020-08-11 17:39:41 -07004063 skp = smack_from_skb(skb);
4064 if (skp) {
4065 s = skp->smk_secid;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004066 break;
Casey Schaufler36be8122020-08-11 17:39:41 -07004067 }
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004068 /*
4069 * Translate what netlabel gave us.
4070 */
Casey Schauflera2af0312020-08-11 17:39:42 -07004071 if (sock != NULL)
4072 sk = sock->sk;
4073 skp = smack_from_netlbl(sk, family, skb);
4074 if (skp != NULL)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004075 s = skp->smk_secid;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004076 break;
Casey Schaufler69f287a2014-12-12 17:08:40 -08004077 case PF_INET6:
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004078#ifdef SMACK_IPV6_SECMARK_LABELING
Casey Schaufler36be8122020-08-11 17:39:41 -07004079 skp = smack_from_skb(skb);
4080 if (skp)
4081 s = skp->smk_secid;
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004082#endif
Casey Schaufler69f287a2014-12-12 17:08:40 -08004083 break;
Casey Schauflerb4e0d5f2010-11-24 17:12:10 -08004084 }
4085 *secid = s;
Casey Schauflere114e472008-02-04 22:29:50 -08004086 if (s == 0)
4087 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -08004088 return 0;
4089}
4090
4091/**
Paul Moore07feee82009-03-27 17:10:54 -04004092 * smack_sock_graft - Initialize a newly created socket with an existing sock
4093 * @sk: child sock
4094 * @parent: parent socket
Casey Schauflere114e472008-02-04 22:29:50 -08004095 *
Paul Moore07feee82009-03-27 17:10:54 -04004096 * Set the smk_{in,out} state of an existing sock based on the process that
4097 * is creating the new socket.
Casey Schauflere114e472008-02-04 22:29:50 -08004098 */
4099static void smack_sock_graft(struct sock *sk, struct socket *parent)
4100{
4101 struct socket_smack *ssp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004102 struct smack_known *skp = smk_of_current();
Casey Schauflere114e472008-02-04 22:29:50 -08004103
Paul Moore07feee82009-03-27 17:10:54 -04004104 if (sk == NULL ||
4105 (sk->sk_family != PF_INET && sk->sk_family != PF_INET6))
Casey Schauflere114e472008-02-04 22:29:50 -08004106 return;
4107
4108 ssp = sk->sk_security;
Casey Schaufler54e70ec2014-04-10 16:37:08 -07004109 ssp->smk_in = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004110 ssp->smk_out = skp;
Paul Moore07feee82009-03-27 17:10:54 -04004111 /* cssp->smk_packet is already set in smack_inet_csk_clone() */
Casey Schauflere114e472008-02-04 22:29:50 -08004112}
4113
4114/**
4115 * smack_inet_conn_request - Smack access check on connect
4116 * @sk: socket involved
4117 * @skb: packet
4118 * @req: unused
4119 *
4120 * Returns 0 if a task with the packet label could write to
4121 * the socket, otherwise an error code
4122 */
Florian Westphal41dd9592020-11-30 16:36:29 +01004123static int smack_inet_conn_request(const struct sock *sk, struct sk_buff *skb,
Casey Schauflere114e472008-02-04 22:29:50 -08004124 struct request_sock *req)
4125{
Paul Moore07feee82009-03-27 17:10:54 -04004126 u16 family = sk->sk_family;
Casey Schauflerf7112e62012-05-06 15:22:02 -07004127 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08004128 struct socket_smack *ssp = sk->sk_security;
Paul Moore07feee82009-03-27 17:10:54 -04004129 struct sockaddr_in addr;
4130 struct iphdr *hdr;
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004131 struct smack_known *hskp;
Casey Schauflere114e472008-02-04 22:29:50 -08004132 int rc;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004133 struct smk_audit_info ad;
Kees Cook923e9a12012-04-10 13:26:44 -07004134#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04004135 struct lsm_network_audit net;
Kees Cook923e9a12012-04-10 13:26:44 -07004136#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004137
Casey Schaufler69f287a2014-12-12 17:08:40 -08004138#if IS_ENABLED(CONFIG_IPV6)
Casey Schauflerc6739442013-05-22 18:42:56 -07004139 if (family == PF_INET6) {
4140 /*
4141 * Handle mapped IPv4 packets arriving
4142 * via IPv6 sockets. Don't set up netlabel
4143 * processing on IPv6.
4144 */
4145 if (skb->protocol == htons(ETH_P_IP))
4146 family = PF_INET;
4147 else
4148 return 0;
4149 }
Casey Schaufler69f287a2014-12-12 17:08:40 -08004150#endif /* CONFIG_IPV6 */
Casey Schauflere114e472008-02-04 22:29:50 -08004151
Casey Schaufler7f368ad2015-02-11 12:52:32 -08004152 /*
4153 * If there is a secmark use it rather than the CIPSO label.
4154 * If there is no secmark fall back to CIPSO.
4155 * The secmark is assumed to reflect policy better.
4156 */
Casey Schaufler36be8122020-08-11 17:39:41 -07004157 skp = smack_from_skb(skb);
Casey Schauflera2af0312020-08-11 17:39:42 -07004158 if (skp == NULL) {
4159 skp = smack_from_netlbl(sk, family, skb);
4160 if (skp == NULL)
4161 skp = &smack_known_huh;
Casey Schaufler7f368ad2015-02-11 12:52:32 -08004162 }
Casey Schaufler7f368ad2015-02-11 12:52:32 -08004163
Etienne Bassetecfcc532009-04-08 20:40:06 +02004164#ifdef CONFIG_AUDIT
Eric Paris48c62af2012-04-02 13:15:44 -04004165 smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
4166 ad.a.u.net->family = family;
4167 ad.a.u.net->netif = skb->skb_iif;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004168 ipv4_skb_to_auditdata(skb, &ad.a, NULL);
4169#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004170 /*
Paul Moore07feee82009-03-27 17:10:54 -04004171 * Receiving a packet requires that the other end be able to write
4172 * here. Read access is not required.
Casey Schauflere114e472008-02-04 22:29:50 -08004173 */
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004174 rc = smk_access(skp, ssp->smk_in, MAY_WRITE, &ad);
4175 rc = smk_bu_note("IPv4 connect", skp, ssp->smk_in, MAY_WRITE, rc);
Paul Moore07feee82009-03-27 17:10:54 -04004176 if (rc != 0)
4177 return rc;
4178
4179 /*
4180 * Save the peer's label in the request_sock so we can later setup
4181 * smk_packet in the child socket so that SO_PEERCRED can report it.
4182 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004183 req->peer_secid = skp->smk_secid;
Paul Moore07feee82009-03-27 17:10:54 -04004184
4185 /*
4186 * We need to decide if we want to label the incoming connection here
4187 * if we do we only need to label the request_sock and the stack will
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004188 * propagate the wire-label to the sock when it is created.
Paul Moore07feee82009-03-27 17:10:54 -04004189 */
4190 hdr = ip_hdr(skb);
4191 addr.sin_addr.s_addr = hdr->saddr;
4192 rcu_read_lock();
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004193 hskp = smack_ipv4host_label(&addr);
Casey Schauflerf7112e62012-05-06 15:22:02 -07004194 rcu_read_unlock();
4195
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004196 if (hskp == NULL)
Casey Schauflerf7112e62012-05-06 15:22:02 -07004197 rc = netlbl_req_setattr(req, &skp->smk_netlabel);
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004198 else
Paul Moore07feee82009-03-27 17:10:54 -04004199 netlbl_req_delattr(req);
Casey Schauflere114e472008-02-04 22:29:50 -08004200
4201 return rc;
4202}
4203
Paul Moore07feee82009-03-27 17:10:54 -04004204/**
4205 * smack_inet_csk_clone - Copy the connection information to the new socket
4206 * @sk: the new socket
4207 * @req: the connection's request_sock
4208 *
4209 * Transfer the connection's peer label to the newly created socket.
4210 */
4211static void smack_inet_csk_clone(struct sock *sk,
4212 const struct request_sock *req)
4213{
4214 struct socket_smack *ssp = sk->sk_security;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004215 struct smack_known *skp;
Paul Moore07feee82009-03-27 17:10:54 -04004216
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004217 if (req->peer_secid != 0) {
4218 skp = smack_from_secid(req->peer_secid);
Casey Schaufler54e70ec2014-04-10 16:37:08 -07004219 ssp->smk_packet = skp;
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004220 } else
Casey Schaufler272cd7a2011-09-20 12:24:36 -07004221 ssp->smk_packet = NULL;
Paul Moore07feee82009-03-27 17:10:54 -04004222}
4223
Casey Schauflere114e472008-02-04 22:29:50 -08004224/*
4225 * Key management security hooks
4226 *
4227 * Casey has not tested key support very heavily.
4228 * The permission check is most likely too restrictive.
4229 * If you care about keys please have a look.
4230 */
4231#ifdef CONFIG_KEYS
4232
4233/**
4234 * smack_key_alloc - Set the key security blob
4235 * @key: object
David Howellsd84f4f92008-11-14 10:39:23 +11004236 * @cred: the credentials to use
Casey Schauflere114e472008-02-04 22:29:50 -08004237 * @flags: unused
4238 *
4239 * No allocation required
4240 *
4241 * Returns 0
4242 */
David Howellsd84f4f92008-11-14 10:39:23 +11004243static int smack_key_alloc(struct key *key, const struct cred *cred,
Casey Schauflere114e472008-02-04 22:29:50 -08004244 unsigned long flags)
4245{
Casey Schauflerb17103a2018-11-09 16:12:56 -08004246 struct smack_known *skp = smk_of_task(smack_cred(cred));
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004247
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004248 key->security = skp;
Casey Schauflere114e472008-02-04 22:29:50 -08004249 return 0;
4250}
4251
4252/**
4253 * smack_key_free - Clear the key security blob
4254 * @key: the object
4255 *
4256 * Clear the blob pointer
4257 */
4258static void smack_key_free(struct key *key)
4259{
4260 key->security = NULL;
4261}
4262
Lukasz Pawelczyk1a289792014-11-26 15:31:06 +01004263/**
Casey Schauflere114e472008-02-04 22:29:50 -08004264 * smack_key_permission - Smack access on a key
4265 * @key_ref: gets to the object
David Howellsd84f4f92008-11-14 10:39:23 +11004266 * @cred: the credentials to use
David Howells8c0637e2020-05-12 15:16:29 +01004267 * @need_perm: requested key permission
Casey Schauflere114e472008-02-04 22:29:50 -08004268 *
4269 * Return 0 if the task has read and write to the object,
4270 * an error code otherwise
4271 */
4272static int smack_key_permission(key_ref_t key_ref,
David Howells8c0637e2020-05-12 15:16:29 +01004273 const struct cred *cred,
4274 enum key_need_perm need_perm)
Casey Schauflere114e472008-02-04 22:29:50 -08004275{
4276 struct key *keyp;
Etienne Bassetecfcc532009-04-08 20:40:06 +02004277 struct smk_audit_info ad;
Casey Schauflerb17103a2018-11-09 16:12:56 -08004278 struct smack_known *tkp = smk_of_task(smack_cred(cred));
Dmitry Kasatkinfffea212014-03-14 17:44:49 +00004279 int request = 0;
Casey Schauflerd166c802014-08-27 14:51:27 -07004280 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08004281
Zoran Markovic5b841bf2018-10-17 16:25:44 -07004282 /*
4283 * Validate requested permissions
4284 */
David Howells8c0637e2020-05-12 15:16:29 +01004285 switch (need_perm) {
4286 case KEY_NEED_READ:
4287 case KEY_NEED_SEARCH:
4288 case KEY_NEED_VIEW:
4289 request |= MAY_READ;
4290 break;
4291 case KEY_NEED_WRITE:
4292 case KEY_NEED_LINK:
4293 case KEY_NEED_SETATTR:
4294 request |= MAY_WRITE;
4295 break;
4296 case KEY_NEED_UNSPECIFIED:
4297 case KEY_NEED_UNLINK:
4298 case KEY_SYSADMIN_OVERRIDE:
4299 case KEY_AUTHTOKEN_OVERRIDE:
4300 case KEY_DEFER_PERM_CHECK:
4301 return 0;
4302 default:
Zoran Markovic5b841bf2018-10-17 16:25:44 -07004303 return -EINVAL;
David Howells8c0637e2020-05-12 15:16:29 +01004304 }
Zoran Markovic5b841bf2018-10-17 16:25:44 -07004305
Casey Schauflere114e472008-02-04 22:29:50 -08004306 keyp = key_ref_to_ptr(key_ref);
4307 if (keyp == NULL)
4308 return -EINVAL;
4309 /*
4310 * If the key hasn't been initialized give it access so that
4311 * it may do so.
4312 */
4313 if (keyp->security == NULL)
4314 return 0;
4315 /*
4316 * This should not occur
4317 */
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004318 if (tkp == NULL)
Casey Schauflere114e472008-02-04 22:29:50 -08004319 return -EACCES;
Casey Schauflerd19dfe52018-01-08 10:25:32 -08004320
David Howellsa8478a62020-01-14 17:07:13 +00004321 if (smack_privileged(CAP_MAC_OVERRIDE))
Casey Schauflerd19dfe52018-01-08 10:25:32 -08004322 return 0;
4323
Etienne Bassetecfcc532009-04-08 20:40:06 +02004324#ifdef CONFIG_AUDIT
4325 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
4326 ad.a.u.key_struct.key = keyp->serial;
4327 ad.a.u.key_struct.key_desc = keyp->description;
4328#endif
Casey Schauflerd166c802014-08-27 14:51:27 -07004329 rc = smk_access(tkp, keyp->security, request, &ad);
4330 rc = smk_bu_note("key access", tkp, keyp->security, request, rc);
4331 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08004332}
José Bollo7fc5f362015-02-17 15:41:22 +01004333
4334/*
4335 * smack_key_getsecurity - Smack label tagging the key
4336 * @key points to the key to be queried
4337 * @_buffer points to a pointer that should be set to point to the
4338 * resulting string (if no label or an error occurs).
4339 * Return the length of the string (including terminating NUL) or -ve if
4340 * an error.
4341 * May also return 0 (and a NULL buffer pointer) if there is no label.
4342 */
4343static int smack_key_getsecurity(struct key *key, char **_buffer)
4344{
4345 struct smack_known *skp = key->security;
4346 size_t length;
4347 char *copy;
4348
4349 if (key->security == NULL) {
4350 *_buffer = NULL;
4351 return 0;
4352 }
4353
4354 copy = kstrdup(skp->smk_known, GFP_KERNEL);
4355 if (copy == NULL)
4356 return -ENOMEM;
4357 length = strlen(copy) + 1;
4358
4359 *_buffer = copy;
4360 return length;
4361}
4362
David Howellsa8478a62020-01-14 17:07:13 +00004363
4364#ifdef CONFIG_KEY_NOTIFICATIONS
4365/**
4366 * smack_watch_key - Smack access to watch a key for notifications.
4367 * @key: The key to be watched
4368 *
4369 * Return 0 if the @watch->cred has permission to read from the key object and
4370 * an error otherwise.
4371 */
4372static int smack_watch_key(struct key *key)
4373{
4374 struct smk_audit_info ad;
4375 struct smack_known *tkp = smk_of_current();
4376 int rc;
4377
4378 if (key == NULL)
4379 return -EINVAL;
4380 /*
4381 * If the key hasn't been initialized give it access so that
4382 * it may do so.
4383 */
4384 if (key->security == NULL)
4385 return 0;
4386 /*
4387 * This should not occur
4388 */
4389 if (tkp == NULL)
4390 return -EACCES;
4391
4392 if (smack_privileged_cred(CAP_MAC_OVERRIDE, current_cred()))
4393 return 0;
4394
4395#ifdef CONFIG_AUDIT
4396 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_KEY);
4397 ad.a.u.key_struct.key = key->serial;
4398 ad.a.u.key_struct.key_desc = key->description;
4399#endif
4400 rc = smk_access(tkp, key->security, MAY_READ, &ad);
4401 rc = smk_bu_note("key watch", tkp, key->security, MAY_READ, rc);
4402 return rc;
4403}
4404#endif /* CONFIG_KEY_NOTIFICATIONS */
Casey Schauflere114e472008-02-04 22:29:50 -08004405#endif /* CONFIG_KEYS */
4406
David Howellsa8478a62020-01-14 17:07:13 +00004407#ifdef CONFIG_WATCH_QUEUE
4408/**
4409 * smack_post_notification - Smack access to post a notification to a queue
4410 * @w_cred: The credentials of the watcher.
4411 * @cred: The credentials of the event source (may be NULL).
4412 * @n: The notification message to be posted.
4413 */
4414static int smack_post_notification(const struct cred *w_cred,
4415 const struct cred *cred,
4416 struct watch_notification *n)
4417{
4418 struct smk_audit_info ad;
4419 struct smack_known *subj, *obj;
4420 int rc;
4421
4422 /* Always let maintenance notifications through. */
4423 if (n->type == WATCH_TYPE_META)
4424 return 0;
4425
4426 if (!cred)
4427 return 0;
4428 subj = smk_of_task(smack_cred(cred));
4429 obj = smk_of_task(smack_cred(w_cred));
4430
4431 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_NOTIFICATION);
4432 rc = smk_access(subj, obj, MAY_WRITE, &ad);
4433 rc = smk_bu_note("notification", subj, obj, MAY_WRITE, rc);
4434 return rc;
4435}
4436#endif /* CONFIG_WATCH_QUEUE */
4437
Casey Schauflere114e472008-02-04 22:29:50 -08004438/*
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004439 * Smack Audit hooks
4440 *
4441 * Audit requires a unique representation of each Smack specific
4442 * rule. This unique representation is used to distinguish the
4443 * object to be audited from remaining kernel objects and also
4444 * works as a glue between the audit hooks.
4445 *
4446 * Since repository entries are added but never deleted, we'll use
4447 * the smack_known label address related to the given audit rule as
4448 * the needed unique representation. This also better fits the smack
4449 * model where nearly everything is a label.
4450 */
4451#ifdef CONFIG_AUDIT
4452
4453/**
4454 * smack_audit_rule_init - Initialize a smack audit rule
4455 * @field: audit rule fields given from user-space (audit.h)
4456 * @op: required testing operator (=, !=, >, <, ...)
4457 * @rulestr: smack label to be audited
4458 * @vrule: pointer to save our own audit rule representation
4459 *
4460 * Prepare to audit cases where (@field @op @rulestr) is true.
4461 * The label to be audited is created if necessay.
4462 */
4463static int smack_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
4464{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004465 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004466 char **rule = (char **)vrule;
4467 *rule = NULL;
4468
4469 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
4470 return -EINVAL;
4471
Al Viro5af75d82008-12-16 05:59:26 -05004472 if (op != Audit_equal && op != Audit_not_equal)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004473 return -EINVAL;
4474
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004475 skp = smk_import_entry(rulestr, 0);
Lukasz Pawelczyke774ad62015-04-20 17:12:54 +02004476 if (IS_ERR(skp))
4477 return PTR_ERR(skp);
4478
4479 *rule = skp->smk_known;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004480
4481 return 0;
4482}
4483
4484/**
4485 * smack_audit_rule_known - Distinguish Smack audit rules
4486 * @krule: rule of interest, in Audit kernel representation format
4487 *
4488 * This is used to filter Smack rules from remaining Audit ones.
4489 * If it's proved that this rule belongs to us, the
4490 * audit_rule_match hook will be called to do the final judgement.
4491 */
4492static int smack_audit_rule_known(struct audit_krule *krule)
4493{
4494 struct audit_field *f;
4495 int i;
4496
4497 for (i = 0; i < krule->field_count; i++) {
4498 f = &krule->fields[i];
4499
4500 if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER)
4501 return 1;
4502 }
4503
4504 return 0;
4505}
4506
4507/**
4508 * smack_audit_rule_match - Audit given object ?
4509 * @secid: security id for identifying the object to test
4510 * @field: audit rule flags given from user-space
4511 * @op: required testing operator
4512 * @vrule: smack internal rule presentation
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004513 *
4514 * The core Audit hook. It's used to take the decision of
4515 * whether to audit or not to audit a given object.
4516 */
Richard Guy Briggs90462a52019-01-31 11:52:11 -05004517static int smack_audit_rule_match(u32 secid, u32 field, u32 op, void *vrule)
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004518{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004519 struct smack_known *skp;
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004520 char *rule = vrule;
4521
Richard Guy Briggs4eb0f4a2013-11-21 13:57:33 -05004522 if (unlikely(!rule)) {
4523 WARN_ONCE(1, "Smack: missing rule\n");
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004524 return -ENOENT;
4525 }
4526
4527 if (field != AUDIT_SUBJ_USER && field != AUDIT_OBJ_USER)
4528 return 0;
4529
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004530 skp = smack_from_secid(secid);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004531
4532 /*
4533 * No need to do string comparisons. If a match occurs,
4534 * both pointers will point to the same smack_known
4535 * label.
4536 */
Al Viro5af75d82008-12-16 05:59:26 -05004537 if (op == Audit_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004538 return (rule == skp->smk_known);
Al Viro5af75d82008-12-16 05:59:26 -05004539 if (op == Audit_not_equal)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004540 return (rule != skp->smk_known);
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004541
4542 return 0;
4543}
4544
Casey Schaufler491a0b02016-01-26 15:08:35 -08004545/*
4546 * There is no need for a smack_audit_rule_free hook.
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004547 * No memory was allocated.
4548 */
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004549
4550#endif /* CONFIG_AUDIT */
4551
Randy Dunlap251a2a92009-02-18 11:42:33 -08004552/**
David Quigley746df9b2013-05-22 12:50:35 -04004553 * smack_ismaclabel - check if xattr @name references a smack MAC label
4554 * @name: Full xattr name to check.
4555 */
4556static int smack_ismaclabel(const char *name)
4557{
4558 return (strcmp(name, XATTR_SMACK_SUFFIX) == 0);
4559}
4560
4561
4562/**
Casey Schauflere114e472008-02-04 22:29:50 -08004563 * smack_secid_to_secctx - return the smack label for a secid
4564 * @secid: incoming integer
4565 * @secdata: destination
4566 * @seclen: how long it is
4567 *
4568 * Exists for networking code.
4569 */
4570static int smack_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
4571{
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004572 struct smack_known *skp = smack_from_secid(secid);
Casey Schauflere114e472008-02-04 22:29:50 -08004573
Eric Parisd5630b92010-10-13 16:24:48 -04004574 if (secdata)
Casey Schaufler2f823ff2013-05-22 18:43:03 -07004575 *secdata = skp->smk_known;
4576 *seclen = strlen(skp->smk_known);
Casey Schauflere114e472008-02-04 22:29:50 -08004577 return 0;
4578}
4579
Randy Dunlap251a2a92009-02-18 11:42:33 -08004580/**
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004581 * smack_secctx_to_secid - return the secid for a smack label
4582 * @secdata: smack label
4583 * @seclen: how long result is
4584 * @secid: outgoing integer
4585 *
4586 * Exists for audit and networking code.
4587 */
David Howellse52c17642008-04-29 20:52:51 +01004588static int smack_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004589{
Lukasz Pawelczyk21c7eae2014-08-29 17:02:55 +02004590 struct smack_known *skp = smk_find_entry(secdata);
4591
4592 if (skp)
4593 *secid = skp->smk_secid;
4594 else
4595 *secid = 0;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08004596 return 0;
4597}
4598
Casey Schaufler491a0b02016-01-26 15:08:35 -08004599/*
4600 * There used to be a smack_release_secctx hook
4601 * that did nothing back when hooks were in a vector.
4602 * Now that there's a list such a hook adds cost.
Casey Schauflere114e472008-02-04 22:29:50 -08004603 */
Casey Schauflere114e472008-02-04 22:29:50 -08004604
David P. Quigley1ee65e32009-09-03 14:25:57 -04004605static int smack_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
4606{
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01004607 return smack_inode_setsecurity(inode, XATTR_SMACK_SUFFIX, ctx,
4608 ctxlen, 0);
David P. Quigley1ee65e32009-09-03 14:25:57 -04004609}
4610
4611static int smack_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
4612{
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01004613 return __vfs_setxattr_noperm(&init_user_ns, dentry, XATTR_NAME_SMACK,
4614 ctx, ctxlen, 0);
David P. Quigley1ee65e32009-09-03 14:25:57 -04004615}
4616
4617static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
4618{
Casey Schaufler0f8983c2018-06-01 10:45:12 -07004619 struct smack_known *skp = smk_of_inode(inode);
David P. Quigley1ee65e32009-09-03 14:25:57 -04004620
Casey Schaufler0f8983c2018-06-01 10:45:12 -07004621 *ctx = skp->smk_known;
4622 *ctxlen = strlen(skp->smk_known);
David P. Quigley1ee65e32009-09-03 14:25:57 -04004623 return 0;
4624}
4625
Casey Schauflerd6d80cb2017-09-28 14:54:50 -07004626static int smack_inode_copy_up(struct dentry *dentry, struct cred **new)
4627{
4628
4629 struct task_smack *tsp;
4630 struct smack_known *skp;
4631 struct inode_smack *isp;
4632 struct cred *new_creds = *new;
4633
4634 if (new_creds == NULL) {
4635 new_creds = prepare_creds();
4636 if (new_creds == NULL)
4637 return -ENOMEM;
4638 }
4639
Casey Schauflerb17103a2018-11-09 16:12:56 -08004640 tsp = smack_cred(new_creds);
Casey Schauflerd6d80cb2017-09-28 14:54:50 -07004641
4642 /*
4643 * Get label from overlay inode and set it in create_sid
4644 */
Vishal Goel387ef962021-09-17 13:08:14 +05304645 isp = smack_inode(d_inode(dentry));
Casey Schauflerd6d80cb2017-09-28 14:54:50 -07004646 skp = isp->smk_inode;
4647 tsp->smk_task = skp;
4648 *new = new_creds;
4649 return 0;
4650}
4651
4652static int smack_inode_copy_up_xattr(const char *name)
4653{
4654 /*
4655 * Return 1 if this is the smack access Smack attribute.
4656 */
4657 if (strcmp(name, XATTR_NAME_SMACK) == 0)
4658 return 1;
4659
4660 return -EOPNOTSUPP;
4661}
4662
4663static int smack_dentry_create_files_as(struct dentry *dentry, int mode,
4664 struct qstr *name,
4665 const struct cred *old,
4666 struct cred *new)
4667{
Casey Schauflerb17103a2018-11-09 16:12:56 -08004668 struct task_smack *otsp = smack_cred(old);
4669 struct task_smack *ntsp = smack_cred(new);
Casey Schauflerd6d80cb2017-09-28 14:54:50 -07004670 struct inode_smack *isp;
4671 int may;
4672
4673 /*
4674 * Use the process credential unless all of
4675 * the transmuting criteria are met
4676 */
4677 ntsp->smk_task = otsp->smk_task;
4678
4679 /*
4680 * the attribute of the containing directory
4681 */
Casey Schauflerfb4021b2018-11-12 12:43:01 -08004682 isp = smack_inode(d_inode(dentry->d_parent));
Casey Schauflerd6d80cb2017-09-28 14:54:50 -07004683
4684 if (isp->smk_flags & SMK_INODE_TRANSMUTE) {
4685 rcu_read_lock();
4686 may = smk_access_entry(otsp->smk_task->smk_known,
4687 isp->smk_inode->smk_known,
4688 &otsp->smk_task->smk_rules);
4689 rcu_read_unlock();
4690
4691 /*
4692 * If the directory is transmuting and the rule
4693 * providing access is transmuting use the containing
4694 * directory label instead of the process label.
4695 */
4696 if (may > 0 && (may & MAY_TRANSMUTE))
4697 ntsp->smk_task = isp->smk_inode;
4698 }
4699 return 0;
4700}
4701
Casey Schauflerd9d8c932021-05-21 11:21:16 -07004702#ifdef CONFIG_IO_URING
4703/**
4704 * smack_uring_override_creds - Is io_uring cred override allowed?
4705 * @new: the target creds
4706 *
4707 * Check to see if the current task is allowed to override it's credentials
4708 * to service an io_uring operation.
4709 */
4710static int smack_uring_override_creds(const struct cred *new)
4711{
4712 struct task_smack *tsp = smack_cred(current_cred());
4713 struct task_smack *nsp = smack_cred(new);
4714
4715 /*
4716 * Allow the degenerate case where the new Smack value is
4717 * the same as the current Smack value.
4718 */
4719 if (tsp->smk_task == nsp->smk_task)
4720 return 0;
4721
4722 if (smack_privileged_cred(CAP_MAC_OVERRIDE, current_cred()))
4723 return 0;
4724
4725 return -EPERM;
4726}
4727
4728/**
4729 * smack_uring_sqpoll - check if a io_uring polling thread can be created
4730 *
4731 * Check to see if the current task is allowed to create a new io_uring
4732 * kernel polling thread.
4733 */
4734static int smack_uring_sqpoll(void)
4735{
4736 if (smack_privileged_cred(CAP_MAC_ADMIN, current_cred()))
4737 return 0;
4738
4739 return -EPERM;
4740}
4741
4742#endif /* CONFIG_IO_URING */
4743
Casey Schauflerbbd36622018-11-12 09:30:56 -08004744struct lsm_blob_sizes smack_blob_sizes __lsm_ro_after_init = {
4745 .lbs_cred = sizeof(struct task_smack),
Casey Schaufler33bf60c2018-11-12 12:02:49 -08004746 .lbs_file = sizeof(struct smack_known *),
Casey Schauflerafb1cbe32018-09-21 17:19:29 -07004747 .lbs_inode = sizeof(struct inode_smack),
Casey Schauflerecd5f822018-11-20 11:55:02 -08004748 .lbs_ipc = sizeof(struct smack_known *),
4749 .lbs_msg_msg = sizeof(struct smack_known *),
Casey Schaufler1aea7802021-04-22 17:41:15 +02004750 .lbs_superblock = sizeof(struct superblock_smack),
Casey Schauflerbbd36622018-11-12 09:30:56 -08004751};
4752
James Morrisca97d932017-02-15 00:18:51 +11004753static struct security_hook_list smack_hooks[] __lsm_ro_after_init = {
Casey Schauflere20b0432015-05-02 15:11:36 -07004754 LSM_HOOK_INIT(ptrace_access_check, smack_ptrace_access_check),
4755 LSM_HOOK_INIT(ptrace_traceme, smack_ptrace_traceme),
4756 LSM_HOOK_INIT(syslog, smack_syslog),
Casey Schauflere114e472008-02-04 22:29:50 -08004757
Al Viro0b520752018-12-23 16:02:47 -05004758 LSM_HOOK_INIT(fs_context_dup, smack_fs_context_dup),
David Howells2febd252018-11-01 23:07:24 +00004759 LSM_HOOK_INIT(fs_context_parse_param, smack_fs_context_parse_param),
4760
Casey Schauflere20b0432015-05-02 15:11:36 -07004761 LSM_HOOK_INIT(sb_alloc_security, smack_sb_alloc_security),
Al Viro204cc0c2018-12-13 13:41:47 -05004762 LSM_HOOK_INIT(sb_free_mnt_opts, smack_free_mnt_opts),
Al Viro5b400232018-12-12 20:13:29 -05004763 LSM_HOOK_INIT(sb_eat_lsm_opts, smack_sb_eat_lsm_opts),
Casey Schauflere20b0432015-05-02 15:11:36 -07004764 LSM_HOOK_INIT(sb_statfs, smack_sb_statfs),
Vivek Trivedi3bf27892015-06-22 15:36:06 +05304765 LSM_HOOK_INIT(sb_set_mnt_opts, smack_set_mnt_opts),
Casey Schauflere114e472008-02-04 22:29:50 -08004766
Eric W. Biedermanb8bff592020-03-22 15:46:24 -05004767 LSM_HOOK_INIT(bprm_creds_for_exec, smack_bprm_creds_for_exec),
Casey Schaufler676dac42010-12-02 06:43:39 -08004768
Casey Schauflere20b0432015-05-02 15:11:36 -07004769 LSM_HOOK_INIT(inode_alloc_security, smack_inode_alloc_security),
Casey Schauflere20b0432015-05-02 15:11:36 -07004770 LSM_HOOK_INIT(inode_init_security, smack_inode_init_security),
4771 LSM_HOOK_INIT(inode_link, smack_inode_link),
4772 LSM_HOOK_INIT(inode_unlink, smack_inode_unlink),
4773 LSM_HOOK_INIT(inode_rmdir, smack_inode_rmdir),
4774 LSM_HOOK_INIT(inode_rename, smack_inode_rename),
4775 LSM_HOOK_INIT(inode_permission, smack_inode_permission),
4776 LSM_HOOK_INIT(inode_setattr, smack_inode_setattr),
4777 LSM_HOOK_INIT(inode_getattr, smack_inode_getattr),
4778 LSM_HOOK_INIT(inode_setxattr, smack_inode_setxattr),
4779 LSM_HOOK_INIT(inode_post_setxattr, smack_inode_post_setxattr),
4780 LSM_HOOK_INIT(inode_getxattr, smack_inode_getxattr),
4781 LSM_HOOK_INIT(inode_removexattr, smack_inode_removexattr),
4782 LSM_HOOK_INIT(inode_getsecurity, smack_inode_getsecurity),
4783 LSM_HOOK_INIT(inode_setsecurity, smack_inode_setsecurity),
4784 LSM_HOOK_INIT(inode_listsecurity, smack_inode_listsecurity),
4785 LSM_HOOK_INIT(inode_getsecid, smack_inode_getsecid),
Casey Schauflere114e472008-02-04 22:29:50 -08004786
Casey Schauflere20b0432015-05-02 15:11:36 -07004787 LSM_HOOK_INIT(file_alloc_security, smack_file_alloc_security),
Casey Schauflere20b0432015-05-02 15:11:36 -07004788 LSM_HOOK_INIT(file_ioctl, smack_file_ioctl),
4789 LSM_HOOK_INIT(file_lock, smack_file_lock),
4790 LSM_HOOK_INIT(file_fcntl, smack_file_fcntl),
4791 LSM_HOOK_INIT(mmap_file, smack_mmap_file),
4792 LSM_HOOK_INIT(mmap_addr, cap_mmap_addr),
4793 LSM_HOOK_INIT(file_set_fowner, smack_file_set_fowner),
4794 LSM_HOOK_INIT(file_send_sigiotask, smack_file_send_sigiotask),
4795 LSM_HOOK_INIT(file_receive, smack_file_receive),
Casey Schauflere114e472008-02-04 22:29:50 -08004796
Casey Schauflere20b0432015-05-02 15:11:36 -07004797 LSM_HOOK_INIT(file_open, smack_file_open),
Casey Schaufler531f1d42011-09-19 12:41:42 -07004798
Casey Schauflere20b0432015-05-02 15:11:36 -07004799 LSM_HOOK_INIT(cred_alloc_blank, smack_cred_alloc_blank),
4800 LSM_HOOK_INIT(cred_free, smack_cred_free),
4801 LSM_HOOK_INIT(cred_prepare, smack_cred_prepare),
4802 LSM_HOOK_INIT(cred_transfer, smack_cred_transfer),
Matthew Garrett3ec30112018-01-08 13:36:19 -08004803 LSM_HOOK_INIT(cred_getsecid, smack_cred_getsecid),
Casey Schauflere20b0432015-05-02 15:11:36 -07004804 LSM_HOOK_INIT(kernel_act_as, smack_kernel_act_as),
4805 LSM_HOOK_INIT(kernel_create_files_as, smack_kernel_create_files_as),
4806 LSM_HOOK_INIT(task_setpgid, smack_task_setpgid),
4807 LSM_HOOK_INIT(task_getpgid, smack_task_getpgid),
4808 LSM_HOOK_INIT(task_getsid, smack_task_getsid),
Paul Moore63269482021-09-29 11:01:21 -04004809 LSM_HOOK_INIT(current_getsecid_subj, smack_current_getsecid_subj),
Paul Moore1fb057d2021-02-19 15:04:58 -05004810 LSM_HOOK_INIT(task_getsecid_obj, smack_task_getsecid_obj),
Casey Schauflere20b0432015-05-02 15:11:36 -07004811 LSM_HOOK_INIT(task_setnice, smack_task_setnice),
4812 LSM_HOOK_INIT(task_setioprio, smack_task_setioprio),
4813 LSM_HOOK_INIT(task_getioprio, smack_task_getioprio),
4814 LSM_HOOK_INIT(task_setscheduler, smack_task_setscheduler),
4815 LSM_HOOK_INIT(task_getscheduler, smack_task_getscheduler),
4816 LSM_HOOK_INIT(task_movememory, smack_task_movememory),
4817 LSM_HOOK_INIT(task_kill, smack_task_kill),
Casey Schauflere20b0432015-05-02 15:11:36 -07004818 LSM_HOOK_INIT(task_to_inode, smack_task_to_inode),
Casey Schauflere114e472008-02-04 22:29:50 -08004819
Casey Schauflere20b0432015-05-02 15:11:36 -07004820 LSM_HOOK_INIT(ipc_permission, smack_ipc_permission),
4821 LSM_HOOK_INIT(ipc_getsecid, smack_ipc_getsecid),
Casey Schauflere114e472008-02-04 22:29:50 -08004822
Casey Schauflere20b0432015-05-02 15:11:36 -07004823 LSM_HOOK_INIT(msg_msg_alloc_security, smack_msg_msg_alloc_security),
Casey Schauflere114e472008-02-04 22:29:50 -08004824
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05004825 LSM_HOOK_INIT(msg_queue_alloc_security, smack_ipc_alloc_security),
Casey Schauflere20b0432015-05-02 15:11:36 -07004826 LSM_HOOK_INIT(msg_queue_associate, smack_msg_queue_associate),
4827 LSM_HOOK_INIT(msg_queue_msgctl, smack_msg_queue_msgctl),
4828 LSM_HOOK_INIT(msg_queue_msgsnd, smack_msg_queue_msgsnd),
4829 LSM_HOOK_INIT(msg_queue_msgrcv, smack_msg_queue_msgrcv),
Casey Schauflere114e472008-02-04 22:29:50 -08004830
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05004831 LSM_HOOK_INIT(shm_alloc_security, smack_ipc_alloc_security),
Casey Schauflere20b0432015-05-02 15:11:36 -07004832 LSM_HOOK_INIT(shm_associate, smack_shm_associate),
4833 LSM_HOOK_INIT(shm_shmctl, smack_shm_shmctl),
4834 LSM_HOOK_INIT(shm_shmat, smack_shm_shmat),
Casey Schauflere114e472008-02-04 22:29:50 -08004835
Eric W. Biederman0d79cbf2018-03-23 23:56:19 -05004836 LSM_HOOK_INIT(sem_alloc_security, smack_ipc_alloc_security),
Casey Schauflere20b0432015-05-02 15:11:36 -07004837 LSM_HOOK_INIT(sem_associate, smack_sem_associate),
4838 LSM_HOOK_INIT(sem_semctl, smack_sem_semctl),
4839 LSM_HOOK_INIT(sem_semop, smack_sem_semop),
Casey Schauflere114e472008-02-04 22:29:50 -08004840
Casey Schauflere20b0432015-05-02 15:11:36 -07004841 LSM_HOOK_INIT(d_instantiate, smack_d_instantiate),
Casey Schauflere114e472008-02-04 22:29:50 -08004842
Casey Schauflere20b0432015-05-02 15:11:36 -07004843 LSM_HOOK_INIT(getprocattr, smack_getprocattr),
4844 LSM_HOOK_INIT(setprocattr, smack_setprocattr),
Casey Schauflere114e472008-02-04 22:29:50 -08004845
Casey Schauflere20b0432015-05-02 15:11:36 -07004846 LSM_HOOK_INIT(unix_stream_connect, smack_unix_stream_connect),
4847 LSM_HOOK_INIT(unix_may_send, smack_unix_may_send),
Casey Schauflere114e472008-02-04 22:29:50 -08004848
Casey Schauflere20b0432015-05-02 15:11:36 -07004849 LSM_HOOK_INIT(socket_post_create, smack_socket_post_create),
Tom Gundersen5859cdf2018-05-04 16:28:22 +02004850 LSM_HOOK_INIT(socket_socketpair, smack_socket_socketpair),
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004851#ifdef SMACK_IPV6_PORT_LABELING
Casey Schauflere20b0432015-05-02 15:11:36 -07004852 LSM_HOOK_INIT(socket_bind, smack_socket_bind),
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004853#endif
Casey Schauflere20b0432015-05-02 15:11:36 -07004854 LSM_HOOK_INIT(socket_connect, smack_socket_connect),
4855 LSM_HOOK_INIT(socket_sendmsg, smack_socket_sendmsg),
4856 LSM_HOOK_INIT(socket_sock_rcv_skb, smack_socket_sock_rcv_skb),
4857 LSM_HOOK_INIT(socket_getpeersec_stream, smack_socket_getpeersec_stream),
4858 LSM_HOOK_INIT(socket_getpeersec_dgram, smack_socket_getpeersec_dgram),
4859 LSM_HOOK_INIT(sk_alloc_security, smack_sk_alloc_security),
4860 LSM_HOOK_INIT(sk_free_security, smack_sk_free_security),
4861 LSM_HOOK_INIT(sock_graft, smack_sock_graft),
4862 LSM_HOOK_INIT(inet_conn_request, smack_inet_conn_request),
4863 LSM_HOOK_INIT(inet_csk_clone, smack_inet_csk_clone),
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004864
Casey Schauflere114e472008-02-04 22:29:50 -08004865 /* key management security hooks */
4866#ifdef CONFIG_KEYS
Casey Schauflere20b0432015-05-02 15:11:36 -07004867 LSM_HOOK_INIT(key_alloc, smack_key_alloc),
4868 LSM_HOOK_INIT(key_free, smack_key_free),
4869 LSM_HOOK_INIT(key_permission, smack_key_permission),
4870 LSM_HOOK_INIT(key_getsecurity, smack_key_getsecurity),
David Howellsa8478a62020-01-14 17:07:13 +00004871#ifdef CONFIG_KEY_NOTIFICATIONS
4872 LSM_HOOK_INIT(watch_key, smack_watch_key),
4873#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004874#endif /* CONFIG_KEYS */
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004875
David Howellsa8478a62020-01-14 17:07:13 +00004876#ifdef CONFIG_WATCH_QUEUE
4877 LSM_HOOK_INIT(post_notification, smack_post_notification),
4878#endif
4879
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004880 /* Audit hooks */
4881#ifdef CONFIG_AUDIT
Casey Schauflere20b0432015-05-02 15:11:36 -07004882 LSM_HOOK_INIT(audit_rule_init, smack_audit_rule_init),
4883 LSM_HOOK_INIT(audit_rule_known, smack_audit_rule_known),
4884 LSM_HOOK_INIT(audit_rule_match, smack_audit_rule_match),
Ahmed S. Darwishd20bdda2008-04-30 08:34:10 +10004885#endif /* CONFIG_AUDIT */
4886
Casey Schauflere20b0432015-05-02 15:11:36 -07004887 LSM_HOOK_INIT(ismaclabel, smack_ismaclabel),
4888 LSM_HOOK_INIT(secid_to_secctx, smack_secid_to_secctx),
4889 LSM_HOOK_INIT(secctx_to_secid, smack_secctx_to_secid),
Casey Schauflere20b0432015-05-02 15:11:36 -07004890 LSM_HOOK_INIT(inode_notifysecctx, smack_inode_notifysecctx),
4891 LSM_HOOK_INIT(inode_setsecctx, smack_inode_setsecctx),
4892 LSM_HOOK_INIT(inode_getsecctx, smack_inode_getsecctx),
Casey Schauflerd6d80cb2017-09-28 14:54:50 -07004893 LSM_HOOK_INIT(inode_copy_up, smack_inode_copy_up),
4894 LSM_HOOK_INIT(inode_copy_up_xattr, smack_inode_copy_up_xattr),
4895 LSM_HOOK_INIT(dentry_create_files_as, smack_dentry_create_files_as),
Casey Schauflerd9d8c932021-05-21 11:21:16 -07004896#ifdef CONFIG_IO_URING
4897 LSM_HOOK_INIT(uring_override_creds, smack_uring_override_creds),
4898 LSM_HOOK_INIT(uring_sqpoll, smack_uring_sqpoll),
4899#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004900};
4901
Etienne Basset7198e2e2009-03-24 20:53:24 +01004902
Casey Schaufler86812bb2012-04-17 18:55:46 -07004903static __init void init_smack_known_list(void)
Etienne Basset7198e2e2009-03-24 20:53:24 +01004904{
Casey Schaufler86812bb2012-04-17 18:55:46 -07004905 /*
Casey Schaufler86812bb2012-04-17 18:55:46 -07004906 * Initialize rule list locks
4907 */
4908 mutex_init(&smack_known_huh.smk_rules_lock);
4909 mutex_init(&smack_known_hat.smk_rules_lock);
4910 mutex_init(&smack_known_floor.smk_rules_lock);
4911 mutex_init(&smack_known_star.smk_rules_lock);
Casey Schaufler86812bb2012-04-17 18:55:46 -07004912 mutex_init(&smack_known_web.smk_rules_lock);
4913 /*
4914 * Initialize rule lists
4915 */
4916 INIT_LIST_HEAD(&smack_known_huh.smk_rules);
4917 INIT_LIST_HEAD(&smack_known_hat.smk_rules);
4918 INIT_LIST_HEAD(&smack_known_star.smk_rules);
4919 INIT_LIST_HEAD(&smack_known_floor.smk_rules);
Casey Schaufler86812bb2012-04-17 18:55:46 -07004920 INIT_LIST_HEAD(&smack_known_web.smk_rules);
4921 /*
4922 * Create the known labels list
4923 */
Tomasz Stanislawski4d7cf4a2013-06-11 14:55:13 +02004924 smk_insert_entry(&smack_known_huh);
4925 smk_insert_entry(&smack_known_hat);
4926 smk_insert_entry(&smack_known_star);
4927 smk_insert_entry(&smack_known_floor);
Tomasz Stanislawski4d7cf4a2013-06-11 14:55:13 +02004928 smk_insert_entry(&smack_known_web);
Etienne Basset7198e2e2009-03-24 20:53:24 +01004929}
4930
Casey Schauflere114e472008-02-04 22:29:50 -08004931/**
4932 * smack_init - initialize the smack system
4933 *
luanshia1a07f22019-07-05 10:35:20 +08004934 * Returns 0 on success, -ENOMEM is there's no memory
Casey Schauflere114e472008-02-04 22:29:50 -08004935 */
4936static __init int smack_init(void)
4937{
Casey Schauflerbbd36622018-11-12 09:30:56 -08004938 struct cred *cred = (struct cred *) current->cred;
Casey Schaufler676dac42010-12-02 06:43:39 -08004939 struct task_smack *tsp;
David Howellsd84f4f92008-11-14 10:39:23 +11004940
Casey Schaufler4e328b02019-04-02 11:37:12 -07004941 smack_rule_cache = KMEM_CACHE(smack_rule, 0);
Casey Schaufler4ca75282020-04-28 15:00:26 -07004942 if (!smack_rule_cache)
Casey Schaufler4e328b02019-04-02 11:37:12 -07004943 return -ENOMEM;
Casey Schaufler4e328b02019-04-02 11:37:12 -07004944
Casey Schauflerbbd36622018-11-12 09:30:56 -08004945 /*
4946 * Set the security state for the initial task.
4947 */
4948 tsp = smack_cred(cred);
4949 init_task_smack(tsp, &smack_known_floor, &smack_known_floor);
4950
4951 /*
4952 * Register with LSM
4953 */
4954 security_add_hooks(smack_hooks, ARRAY_SIZE(smack_hooks), "smack");
José Bollod21b7b02015-10-02 15:15:56 +02004955 smack_enabled = 1;
4956
Casey Schaufler21abb1e2015-07-22 14:25:31 -07004957 pr_info("Smack: Initializing.\n");
4958#ifdef CONFIG_SECURITY_SMACK_NETFILTER
4959 pr_info("Smack: Netfilter enabled.\n");
4960#endif
4961#ifdef SMACK_IPV6_PORT_LABELING
4962 pr_info("Smack: IPv6 port labeling enabled.\n");
4963#endif
4964#ifdef SMACK_IPV6_SECMARK_LABELING
4965 pr_info("Smack: IPv6 Netfilter enabled.\n");
4966#endif
Casey Schauflere114e472008-02-04 22:29:50 -08004967
Casey Schaufler86812bb2012-04-17 18:55:46 -07004968 /* initialize the smack_known_list */
4969 init_smack_known_list();
Casey Schauflere114e472008-02-04 22:29:50 -08004970
Casey Schauflere114e472008-02-04 22:29:50 -08004971 return 0;
4972}
4973
4974/*
4975 * Smack requires early initialization in order to label
4976 * all processes and objects when they are created.
4977 */
Kees Cook3d6e5f62018-10-10 17:18:23 -07004978DEFINE_LSM(smack) = {
Kees Cook07aed2f2018-10-10 17:18:24 -07004979 .name = "smack",
Kees Cook14bd99c2018-09-19 19:57:06 -07004980 .flags = LSM_FLAG_LEGACY_MAJOR | LSM_FLAG_EXCLUSIVE,
Casey Schauflerbbd36622018-11-12 09:30:56 -08004981 .blobs = &smack_blob_sizes,
Kees Cook3d6e5f62018-10-10 17:18:23 -07004982 .init = smack_init,
4983};