blob: 76a5dca46404bd62928b34a492d0534e986a34d8 [file] [log] [blame]
Casey Schauflere114e472008-02-04 22:29:50 -08001/*
2 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, version 2.
7 *
8 * Authors:
9 * Casey Schaufler <casey@schaufler-ca.com>
10 * Ahmed S. Darwish <darwish.07@gmail.com>
11 *
12 * Special thanks to the authors of selinuxfs.
13 *
14 * Karl MacMillan <kmacmillan@tresys.com>
15 * James Morris <jmorris@redhat.com>
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/vmalloc.h>
21#include <linux/security.h>
22#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Casey Schaufler6d3dc072008-12-31 12:54:12 -050024#include <net/net_namespace.h>
Casey Schauflere114e472008-02-04 22:29:50 -080025#include <net/cipso_ipv4.h>
26#include <linux/seq_file.h>
27#include <linux/ctype.h>
Casey Schaufler4bc87e62008-02-15 15:24:25 -080028#include <linux/audit.h>
Casey Schauflere114e472008-02-04 22:29:50 -080029#include "smack.h"
30
31/*
32 * smackfs pseudo filesystem.
33 */
34
35enum smk_inos {
36 SMK_ROOT_INO = 2,
37 SMK_LOAD = 3, /* load policy */
38 SMK_CIPSO = 4, /* load label -> CIPSO mapping */
39 SMK_DOI = 5, /* CIPSO DOI */
40 SMK_DIRECT = 6, /* CIPSO level indicating direct label */
41 SMK_AMBIENT = 7, /* internet ambient label */
Casey Schaufler6d3dc072008-12-31 12:54:12 -050042 SMK_NETLBLADDR = 8, /* single label hosts */
Casey Schaufler15446232008-07-30 15:37:11 -070043 SMK_ONLYCAP = 9, /* the only "capable" label */
Etienne Bassetecfcc532009-04-08 20:40:06 +020044 SMK_LOGGING = 10, /* logging */
Casey Schaufler7898e1f2011-01-17 08:05:27 -080045 SMK_LOAD_SELF = 11, /* task specific rules */
Jarkko Sakkinen828716c2011-09-08 10:12:01 +030046 SMK_ACCESSES = 12, /* access policy */
Casey Schauflerf7112e62012-05-06 15:22:02 -070047 SMK_MAPPED = 13, /* CIPSO level indicating mapped label */
48 SMK_LOAD2 = 14, /* load policy with long labels */
49 SMK_LOAD_SELF2 = 15, /* load task specific rules with long labels */
50 SMK_ACCESS2 = 16, /* make an access check with long labels */
51 SMK_CIPSO2 = 17, /* load long label -> CIPSO mapping */
Rafal Krypa449543b2012-07-11 17:49:30 +020052 SMK_REVOKE_SUBJ = 18, /* set rules with subject label to '-' */
Casey Schauflere114e472008-02-04 22:29:50 -080053};
54
55/*
56 * List locks
57 */
58static DEFINE_MUTEX(smack_list_lock);
59static DEFINE_MUTEX(smack_cipso_lock);
Casey Schaufler4bc87e62008-02-15 15:24:25 -080060static DEFINE_MUTEX(smack_ambient_lock);
Casey Schaufler6d3dc072008-12-31 12:54:12 -050061static DEFINE_MUTEX(smk_netlbladdr_lock);
Casey Schauflere114e472008-02-04 22:29:50 -080062
63/*
64 * This is the "ambient" label for network traffic.
65 * If it isn't somehow marked, use this.
66 * It can be reset via smackfs/ambient
67 */
Casey Schauflerf7112e62012-05-06 15:22:02 -070068char *smack_net_ambient;
Casey Schauflere114e472008-02-04 22:29:50 -080069
70/*
Casey Schauflere114e472008-02-04 22:29:50 -080071 * This is the level in a CIPSO header that indicates a
72 * smack label is contained directly in the category set.
73 * It can be reset via smackfs/direct
74 */
75int smack_cipso_direct = SMACK_CIPSO_DIRECT_DEFAULT;
76
Casey Schaufler15446232008-07-30 15:37:11 -070077/*
Casey Schauflerf7112e62012-05-06 15:22:02 -070078 * This is the level in a CIPSO header that indicates a
79 * secid is contained directly in the category set.
80 * It can be reset via smackfs/mapped
81 */
82int smack_cipso_mapped = SMACK_CIPSO_MAPPED_DEFAULT;
83
84/*
Casey Schaufler15446232008-07-30 15:37:11 -070085 * Unless a process is running with this label even
86 * having CAP_MAC_OVERRIDE isn't enough to grant
87 * privilege to violate MAC policy. If no label is
88 * designated (the NULL case) capabilities apply to
89 * everyone. It is expected that the hat (^) label
90 * will be used if any label is used.
91 */
92char *smack_onlycap;
93
Casey Schaufler6d3dc072008-12-31 12:54:12 -050094/*
95 * Certain IP addresses may be designated as single label hosts.
96 * Packets are sent there unlabeled, but only from tasks that
97 * can write to the specified label.
98 */
Etienne Basset7198e2e2009-03-24 20:53:24 +010099
100LIST_HEAD(smk_netlbladdr_list);
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700101
102/*
103 * Rule lists are maintained for each label.
Casey Schauflerf7112e62012-05-06 15:22:02 -0700104 * This master list is just for reading /smack/load and /smack/load2.
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700105 */
106struct smack_master_list {
107 struct list_head list;
108 struct smack_rule *smk_rule;
109};
110
Etienne Basset7198e2e2009-03-24 20:53:24 +0100111LIST_HEAD(smack_rule_list);
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500112
Casey Schauflere114e472008-02-04 22:29:50 -0800113static int smk_cipso_doi_value = SMACK_CIPSO_DOI_DEFAULT;
Casey Schauflere114e472008-02-04 22:29:50 -0800114
Etienne Basset43031542009-03-27 17:11:01 -0400115const char *smack_cipso_option = SMACK_CIPSO_OPTION;
116
Casey Schauflere114e472008-02-04 22:29:50 -0800117/*
Casey Schauflere114e472008-02-04 22:29:50 -0800118 * Values for parsing cipso rules
119 * SMK_DIGITLEN: Length of a digit field in a rule.
Ahmed S. Darwishb500ce82008-03-13 12:32:34 -0700120 * SMK_CIPSOMIN: Minimum possible cipso rule length.
121 * SMK_CIPSOMAX: Maximum possible cipso rule length.
Casey Schauflere114e472008-02-04 22:29:50 -0800122 */
123#define SMK_DIGITLEN 4
Ahmed S. Darwishb500ce82008-03-13 12:32:34 -0700124#define SMK_CIPSOMIN (SMK_LABELLEN + 2 * SMK_DIGITLEN)
125#define SMK_CIPSOMAX (SMK_CIPSOMIN + SMACK_CIPSO_MAXCATNUM * SMK_DIGITLEN)
126
127/*
128 * Values for parsing MAC rules
129 * SMK_ACCESS: Maximum possible combination of access permissions
130 * SMK_ACCESSLEN: Maximum length for a rule access field
131 * SMK_LOADLEN: Smack rule length
132 */
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200133#define SMK_OACCESS "rwxa"
134#define SMK_ACCESS "rwxat"
135#define SMK_OACCESSLEN (sizeof(SMK_OACCESS) - 1)
136#define SMK_ACCESSLEN (sizeof(SMK_ACCESS) - 1)
137#define SMK_OLOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_OACCESSLEN)
138#define SMK_LOADLEN (SMK_LABELLEN + SMK_LABELLEN + SMK_ACCESSLEN)
Ahmed S. Darwishb500ce82008-03-13 12:32:34 -0700139
Casey Schauflerf7112e62012-05-06 15:22:02 -0700140/*
141 * Stricly for CIPSO level manipulation.
142 * Set the category bit number in a smack label sized buffer.
143 */
144static inline void smack_catset_bit(unsigned int cat, char *catsetp)
145{
146 if (cat == 0 || cat > (SMK_CIPSOLEN * 8))
147 return;
148
149 catsetp[(cat - 1) / 8] |= 0x80 >> ((cat - 1) % 8);
150}
151
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500152/**
153 * smk_netlabel_audit_set - fill a netlbl_audit struct
154 * @nap: structure to fill
155 */
156static void smk_netlabel_audit_set(struct netlbl_audit *nap)
157{
158 nap->loginuid = audit_get_loginuid(current);
159 nap->sessionid = audit_get_sessionid(current);
Casey Schaufler676dac42010-12-02 06:43:39 -0800160 nap->secid = smack_to_secid(smk_of_current());
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500161}
162
163/*
Casey Schauflerf7112e62012-05-06 15:22:02 -0700164 * Value for parsing single label host rules
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500165 * "1.2.3.4 X"
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500166 */
167#define SMK_NETLBLADDRMIN 9
Casey Schauflere114e472008-02-04 22:29:50 -0800168
Casey Schauflere114e472008-02-04 22:29:50 -0800169/**
170 * smk_set_access - add a rule to the rule list
171 * @srp: the new rule to add
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800172 * @rule_list: the list of rules
173 * @rule_lock: the rule list lock
Casey Schauflere114e472008-02-04 22:29:50 -0800174 *
175 * Looks through the current subject/object/access list for
176 * the subject/object pair and replaces the access that was
177 * there. If the pair isn't found add it with the specified
178 * access.
Sergio Luis81ea7142008-12-22 01:16:15 -0300179 *
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800180 * Returns 1 if a rule was found to exist already, 0 if it is new
Sergio Luis81ea7142008-12-22 01:16:15 -0300181 * Returns 0 if nothing goes wrong or -ENOMEM if it fails
182 * during the allocation of the new pair to add.
Casey Schauflere114e472008-02-04 22:29:50 -0800183 */
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800184static int smk_set_access(struct smack_rule *srp, struct list_head *rule_list,
185 struct mutex *rule_lock)
Casey Schauflere114e472008-02-04 22:29:50 -0800186{
Etienne Basset7198e2e2009-03-24 20:53:24 +0100187 struct smack_rule *sp;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800188 int found = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800189
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800190 mutex_lock(rule_lock);
191
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700192 /*
193 * Because the object label is less likely to match
194 * than the subject label check it first
195 */
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800196 list_for_each_entry_rcu(sp, rule_list, list) {
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700197 if (sp->smk_object == srp->smk_object &&
198 sp->smk_subject == srp->smk_subject) {
Etienne Basset7198e2e2009-03-24 20:53:24 +0100199 found = 1;
200 sp->smk_access = srp->smk_access;
Casey Schauflere114e472008-02-04 22:29:50 -0800201 break;
202 }
Casey Schauflere114e472008-02-04 22:29:50 -0800203 }
Etienne Basset7198e2e2009-03-24 20:53:24 +0100204 if (found == 0)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800205 list_add_rcu(&srp->list, rule_list);
Casey Schauflere114e472008-02-04 22:29:50 -0800206
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800207 mutex_unlock(rule_lock);
Casey Schauflere114e472008-02-04 22:29:50 -0800208
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800209 return found;
Casey Schauflere114e472008-02-04 22:29:50 -0800210}
211
212/**
Casey Schauflerf7112e62012-05-06 15:22:02 -0700213 * smk_fill_rule - Fill Smack rule from strings
214 * @subject: subject label string
215 * @object: object label string
216 * @access: access string
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300217 * @rule: Smack rule
218 * @import: if non-zero, import labels
Casey Schaufler35187212012-06-18 19:01:36 -0700219 * @len: label length limit
Casey Schauflerf7112e62012-05-06 15:22:02 -0700220 *
221 * Returns 0 on success, -1 on failure
Jarkko Sakkinen828716c2011-09-08 10:12:01 +0300222 */
Casey Schauflerf7112e62012-05-06 15:22:02 -0700223static int smk_fill_rule(const char *subject, const char *object,
224 const char *access, struct smack_rule *rule,
Casey Schaufler35187212012-06-18 19:01:36 -0700225 int import, int len)
Jarkko Sakkinen828716c2011-09-08 10:12:01 +0300226{
Casey Schauflerf7112e62012-05-06 15:22:02 -0700227 const char *cp;
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300228 struct smack_known *skp;
Jarkko Sakkinen828716c2011-09-08 10:12:01 +0300229
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300230 if (import) {
Casey Schaufler35187212012-06-18 19:01:36 -0700231 rule->smk_subject = smk_import(subject, len);
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300232 if (rule->smk_subject == NULL)
233 return -1;
234
Casey Schaufler35187212012-06-18 19:01:36 -0700235 rule->smk_object = smk_import(object, len);
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300236 if (rule->smk_object == NULL)
237 return -1;
238 } else {
Casey Schaufler35187212012-06-18 19:01:36 -0700239 cp = smk_parse_smack(subject, len);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700240 if (cp == NULL)
241 return -1;
242 skp = smk_find_entry(cp);
243 kfree(cp);
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300244 if (skp == NULL)
245 return -1;
246 rule->smk_subject = skp->smk_known;
247
Casey Schaufler35187212012-06-18 19:01:36 -0700248 cp = smk_parse_smack(object, len);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700249 if (cp == NULL)
250 return -1;
251 skp = smk_find_entry(cp);
252 kfree(cp);
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +0300253 if (skp == NULL)
254 return -1;
255 rule->smk_object = skp->smk_known;
256 }
Jarkko Sakkinen828716c2011-09-08 10:12:01 +0300257
258 rule->smk_access = 0;
259
Casey Schaufler35187212012-06-18 19:01:36 -0700260 for (cp = access; *cp != '\0'; cp++) {
Casey Schauflerf7112e62012-05-06 15:22:02 -0700261 switch (*cp) {
262 case '-':
263 break;
264 case 'r':
265 case 'R':
266 rule->smk_access |= MAY_READ;
267 break;
268 case 'w':
269 case 'W':
270 rule->smk_access |= MAY_WRITE;
271 break;
272 case 'x':
273 case 'X':
274 rule->smk_access |= MAY_EXEC;
275 break;
276 case 'a':
277 case 'A':
278 rule->smk_access |= MAY_APPEND;
279 break;
280 case 't':
281 case 'T':
282 rule->smk_access |= MAY_TRANSMUTE;
283 break;
284 default:
Casey Schaufler35187212012-06-18 19:01:36 -0700285 return 0;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700286 }
Jarkko Sakkinen828716c2011-09-08 10:12:01 +0300287 }
288
Casey Schaufler35187212012-06-18 19:01:36 -0700289 return 0;
Jarkko Sakkinen828716c2011-09-08 10:12:01 +0300290}
291
292/**
Casey Schauflerf7112e62012-05-06 15:22:02 -0700293 * smk_parse_rule - parse Smack rule from load string
294 * @data: string to be parsed whose size is SMK_LOADLEN
295 * @rule: Smack rule
296 * @import: if non-zero, import labels
297 *
298 * Returns 0 on success, -1 on errors.
299 */
300static int smk_parse_rule(const char *data, struct smack_rule *rule, int import)
301{
302 int rc;
303
304 rc = smk_fill_rule(data, data + SMK_LABELLEN,
Casey Schaufler35187212012-06-18 19:01:36 -0700305 data + SMK_LABELLEN + SMK_LABELLEN, rule, import,
306 SMK_LABELLEN);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700307 return rc;
308}
309
310/**
311 * smk_parse_long_rule - parse Smack rule from rule string
312 * @data: string to be parsed, null terminated
313 * @rule: Smack rule
314 * @import: if non-zero, import labels
315 *
316 * Returns 0 on success, -1 on failure
317 */
318static int smk_parse_long_rule(const char *data, struct smack_rule *rule,
319 int import)
320{
321 char *subject;
322 char *object;
323 char *access;
324 int datalen;
325 int rc = -1;
326
Alan Cox3b9fc372012-07-26 14:47:11 -0700327 /* This is inefficient */
Casey Schauflerf7112e62012-05-06 15:22:02 -0700328 datalen = strlen(data);
Alan Cox3b9fc372012-07-26 14:47:11 -0700329
330 /* Our first element can be 64 + \0 with no spaces */
331 subject = kzalloc(datalen + 1, GFP_KERNEL);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700332 if (subject == NULL)
333 return -1;
334 object = kzalloc(datalen, GFP_KERNEL);
335 if (object == NULL)
336 goto free_out_s;
337 access = kzalloc(datalen, GFP_KERNEL);
338 if (access == NULL)
339 goto free_out_o;
340
341 if (sscanf(data, "%s %s %s", subject, object, access) == 3)
Casey Schaufler35187212012-06-18 19:01:36 -0700342 rc = smk_fill_rule(subject, object, access, rule, import, 0);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700343
344 kfree(access);
345free_out_o:
346 kfree(object);
347free_out_s:
348 kfree(subject);
349 return rc;
350}
351
352#define SMK_FIXED24_FMT 0 /* Fixed 24byte label format */
353#define SMK_LONG_FMT 1 /* Variable long label format */
354/**
355 * smk_write_rules_list - write() for any /smack rule file
Randy Dunlap251a2a92009-02-18 11:42:33 -0800356 * @file: file pointer, not actually used
Casey Schauflere114e472008-02-04 22:29:50 -0800357 * @buf: where to get the data from
358 * @count: bytes sent
359 * @ppos: where to start - must be 0
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800360 * @rule_list: the list of rules to write to
361 * @rule_lock: lock for the rule list
Casey Schauflerf7112e62012-05-06 15:22:02 -0700362 * @format: /smack/load or /smack/load2 format.
Casey Schauflere114e472008-02-04 22:29:50 -0800363 *
364 * Get one smack access rule from above.
Casey Schauflerf7112e62012-05-06 15:22:02 -0700365 * The format for SMK_LONG_FMT is:
366 * "subject<whitespace>object<whitespace>access[<whitespace>...]"
367 * The format for SMK_FIXED24_FMT is exactly:
368 * "subject object rwxat"
Casey Schauflere114e472008-02-04 22:29:50 -0800369 */
Casey Schauflerf7112e62012-05-06 15:22:02 -0700370static ssize_t smk_write_rules_list(struct file *file, const char __user *buf,
371 size_t count, loff_t *ppos,
372 struct list_head *rule_list,
373 struct mutex *rule_lock, int format)
Casey Schauflere114e472008-02-04 22:29:50 -0800374{
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700375 struct smack_master_list *smlp;
376 struct smack_known *skp;
Etienne Basset7198e2e2009-03-24 20:53:24 +0100377 struct smack_rule *rule;
Casey Schauflere114e472008-02-04 22:29:50 -0800378 char *data;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700379 int datalen;
Casey Schauflere114e472008-02-04 22:29:50 -0800380 int rc = -EINVAL;
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700381 int load = 0;
Casey Schauflere114e472008-02-04 22:29:50 -0800382
383 /*
Casey Schauflere114e472008-02-04 22:29:50 -0800384 * No partial writes.
385 * Enough data must be present.
386 */
Jarkko Sakkinen5c6d1122010-12-07 13:34:01 +0200387 if (*ppos != 0)
388 return -EINVAL;
Casey Schauflere114e472008-02-04 22:29:50 -0800389
Casey Schauflerf7112e62012-05-06 15:22:02 -0700390 if (format == SMK_FIXED24_FMT) {
391 /*
392 * Minor hack for backward compatibility
393 */
394 if (count != SMK_OLOADLEN && count != SMK_LOADLEN)
395 return -EINVAL;
396 datalen = SMK_LOADLEN;
397 } else
398 datalen = count + 1;
399
400 data = kzalloc(datalen, GFP_KERNEL);
Casey Schauflere114e472008-02-04 22:29:50 -0800401 if (data == NULL)
402 return -ENOMEM;
403
404 if (copy_from_user(data, buf, count) != 0) {
405 rc = -EFAULT;
406 goto out;
407 }
408
Etienne Basset7198e2e2009-03-24 20:53:24 +0100409 rule = kzalloc(sizeof(*rule), GFP_KERNEL);
410 if (rule == NULL) {
411 rc = -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -0800412 goto out;
Etienne Basset7198e2e2009-03-24 20:53:24 +0100413 }
Casey Schauflere114e472008-02-04 22:29:50 -0800414
Casey Schauflerf7112e62012-05-06 15:22:02 -0700415 if (format == SMK_LONG_FMT) {
416 /*
417 * Be sure the data string is terminated.
418 */
419 data[count] = '\0';
420 if (smk_parse_long_rule(data, rule, 1))
421 goto out_free_rule;
422 } else {
423 /*
424 * More on the minor hack for backward compatibility
425 */
426 if (count == (SMK_OLOADLEN))
427 data[SMK_OLOADLEN] = '-';
428 if (smk_parse_rule(data, rule, 1))
429 goto out_free_rule;
430 }
431
Casey Schauflere114e472008-02-04 22:29:50 -0800432
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700433 if (rule_list == NULL) {
434 load = 1;
435 skp = smk_find_entry(rule->smk_subject);
436 rule_list = &skp->smk_rules;
437 rule_lock = &skp->smk_rules_lock;
438 }
439
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800440 rc = count;
441 /*
Casey Schauflerf7112e62012-05-06 15:22:02 -0700442 * If this is a global as opposed to self and a new rule
Casey Schaufler40809562011-11-10 15:02:22 -0800443 * it needs to get added for reporting.
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800444 * smk_set_access returns true if there was already a rule
445 * for the subject/object pair, and false if it was new.
446 */
Casey Schauflerf7112e62012-05-06 15:22:02 -0700447 if (!smk_set_access(rule, rule_list, rule_lock)) {
448 if (load) {
449 smlp = kzalloc(sizeof(*smlp), GFP_KERNEL);
450 if (smlp != NULL) {
451 smlp->smk_rule = rule;
452 list_add_rcu(&smlp->list, &smack_rule_list);
453 } else
454 rc = -ENOMEM;
455 }
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800456 goto out;
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700457 }
Casey Schauflere114e472008-02-04 22:29:50 -0800458
Etienne Basset7198e2e2009-03-24 20:53:24 +0100459out_free_rule:
460 kfree(rule);
Casey Schauflere114e472008-02-04 22:29:50 -0800461out:
462 kfree(data);
463 return rc;
464}
465
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800466/*
Casey Schaufler40809562011-11-10 15:02:22 -0800467 * Core logic for smackfs seq list operations.
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800468 */
469
Casey Schaufler40809562011-11-10 15:02:22 -0800470static void *smk_seq_start(struct seq_file *s, loff_t *pos,
471 struct list_head *head)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800472{
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700473 struct list_head *list;
474
475 /*
476 * This is 0 the first time through.
477 */
478 if (s->index == 0)
Casey Schaufler40809562011-11-10 15:02:22 -0800479 s->private = head;
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700480
481 if (s->private == NULL)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800482 return NULL;
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700483
484 list = s->private;
485 if (list_empty(list))
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800486 return NULL;
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700487
488 if (s->index == 0)
489 return list->next;
490 return list;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800491}
492
Casey Schaufler40809562011-11-10 15:02:22 -0800493static void *smk_seq_next(struct seq_file *s, void *v, loff_t *pos,
494 struct list_head *head)
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800495{
496 struct list_head *list = v;
497
Casey Schaufler40809562011-11-10 15:02:22 -0800498 if (list_is_last(list, head)) {
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700499 s->private = NULL;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800500 return NULL;
501 }
Casey Schaufler272cd7a2011-09-20 12:24:36 -0700502 s->private = list->next;
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800503 return list->next;
504}
505
Casey Schaufler40809562011-11-10 15:02:22 -0800506static void smk_seq_stop(struct seq_file *s, void *v)
507{
508 /* No-op */
509}
510
Casey Schauflerf7112e62012-05-06 15:22:02 -0700511static void smk_rule_show(struct seq_file *s, struct smack_rule *srp, int max)
Casey Schaufler40809562011-11-10 15:02:22 -0800512{
Casey Schauflerf7112e62012-05-06 15:22:02 -0700513 /*
514 * Don't show any rules with label names too long for
515 * interface file (/smack/load or /smack/load2)
516 * because you should expect to be able to write
517 * anything you read back.
518 */
519 if (strlen(srp->smk_subject) >= max || strlen(srp->smk_object) >= max)
520 return;
Casey Schaufler40809562011-11-10 15:02:22 -0800521
Rafal Krypa65ee7f42012-07-09 19:36:34 +0200522 if (srp->smk_access == 0)
523 return;
524
Casey Schauflerf7112e62012-05-06 15:22:02 -0700525 seq_printf(s, "%s %s", srp->smk_subject, srp->smk_object);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800526
527 seq_putc(s, ' ');
528
529 if (srp->smk_access & MAY_READ)
530 seq_putc(s, 'r');
531 if (srp->smk_access & MAY_WRITE)
532 seq_putc(s, 'w');
533 if (srp->smk_access & MAY_EXEC)
534 seq_putc(s, 'x');
535 if (srp->smk_access & MAY_APPEND)
536 seq_putc(s, 'a');
537 if (srp->smk_access & MAY_TRANSMUTE)
538 seq_putc(s, 't');
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800539
540 seq_putc(s, '\n');
Casey Schauflerf7112e62012-05-06 15:22:02 -0700541}
542
543/*
544 * Seq_file read operations for /smack/load
545 */
546
547static void *load2_seq_start(struct seq_file *s, loff_t *pos)
548{
549 return smk_seq_start(s, pos, &smack_rule_list);
550}
551
552static void *load2_seq_next(struct seq_file *s, void *v, loff_t *pos)
553{
554 return smk_seq_next(s, v, pos, &smack_rule_list);
555}
556
557static int load_seq_show(struct seq_file *s, void *v)
558{
559 struct list_head *list = v;
560 struct smack_master_list *smlp =
561 list_entry(list, struct smack_master_list, list);
562
563 smk_rule_show(s, smlp->smk_rule, SMK_LABELLEN);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800564
565 return 0;
566}
567
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800568static const struct seq_operations load_seq_ops = {
Casey Schauflerf7112e62012-05-06 15:22:02 -0700569 .start = load2_seq_start,
570 .next = load2_seq_next,
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800571 .show = load_seq_show,
Casey Schaufler40809562011-11-10 15:02:22 -0800572 .stop = smk_seq_stop,
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800573};
574
575/**
576 * smk_open_load - open() for /smack/load
577 * @inode: inode structure representing file
578 * @file: "load" file pointer
579 *
580 * For reading, use load_seq_* seq_file reading operations.
581 */
582static int smk_open_load(struct inode *inode, struct file *file)
583{
584 return seq_open(file, &load_seq_ops);
585}
586
587/**
588 * smk_write_load - write() for /smack/load
589 * @file: file pointer, not actually used
590 * @buf: where to get the data from
591 * @count: bytes sent
592 * @ppos: where to start - must be 0
593 *
594 */
595static ssize_t smk_write_load(struct file *file, const char __user *buf,
596 size_t count, loff_t *ppos)
597{
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800598 /*
599 * Must have privilege.
600 * No partial writes.
601 * Enough data must be present.
602 */
Casey Schaufler1880eff2012-06-05 15:28:30 -0700603 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800604 return -EPERM;
605
Casey Schauflerf7112e62012-05-06 15:22:02 -0700606 return smk_write_rules_list(file, buf, count, ppos, NULL, NULL,
607 SMK_FIXED24_FMT);
Casey Schaufler7898e1f2011-01-17 08:05:27 -0800608}
609
Casey Schauflere114e472008-02-04 22:29:50 -0800610static const struct file_operations smk_load_ops = {
611 .open = smk_open_load,
612 .read = seq_read,
613 .llseek = seq_lseek,
614 .write = smk_write_load,
Ahmed S. Darwishcb622bb2008-03-24 12:29:49 -0700615 .release = seq_release,
Casey Schauflere114e472008-02-04 22:29:50 -0800616};
617
618/**
619 * smk_cipso_doi - initialize the CIPSO domain
620 */
Casey Schaufler30aa4fa2008-04-28 02:13:43 -0700621static void smk_cipso_doi(void)
Casey Schauflere114e472008-02-04 22:29:50 -0800622{
623 int rc;
624 struct cipso_v4_doi *doip;
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500625 struct netlbl_audit nai;
Casey Schauflere114e472008-02-04 22:29:50 -0800626
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500627 smk_netlabel_audit_set(&nai);
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800628
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500629 rc = netlbl_cfg_map_del(NULL, PF_INET, NULL, NULL, &nai);
Casey Schauflere114e472008-02-04 22:29:50 -0800630 if (rc != 0)
631 printk(KERN_WARNING "%s:%d remove rc = %d\n",
632 __func__, __LINE__, rc);
633
634 doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL);
635 if (doip == NULL)
636 panic("smack: Failed to initialize cipso DOI.\n");
637 doip->map.std = NULL;
638 doip->doi = smk_cipso_doi_value;
639 doip->type = CIPSO_V4_MAP_PASS;
640 doip->tags[0] = CIPSO_V4_TAG_RBITMAP;
641 for (rc = 1; rc < CIPSO_V4_TAG_MAXCNT; rc++)
642 doip->tags[rc] = CIPSO_V4_TAG_INVALID;
643
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500644 rc = netlbl_cfg_cipsov4_add(doip, &nai);
Paul Mooreb1edeb12008-10-10 10:16:31 -0400645 if (rc != 0) {
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500646 printk(KERN_WARNING "%s:%d cipso add rc = %d\n",
Casey Schauflere114e472008-02-04 22:29:50 -0800647 __func__, __LINE__, rc);
Paul Mooreb1edeb12008-10-10 10:16:31 -0400648 kfree(doip);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500649 return;
650 }
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500651 rc = netlbl_cfg_cipsov4_map_add(doip->doi, NULL, NULL, NULL, &nai);
Paul Moore6c2e8ac2008-12-31 12:54:11 -0500652 if (rc != 0) {
653 printk(KERN_WARNING "%s:%d map add rc = %d\n",
654 __func__, __LINE__, rc);
655 kfree(doip);
656 return;
Paul Mooreb1edeb12008-10-10 10:16:31 -0400657 }
Casey Schauflere114e472008-02-04 22:29:50 -0800658}
659
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800660/**
661 * smk_unlbl_ambient - initialize the unlabeled domain
Randy Dunlap251a2a92009-02-18 11:42:33 -0800662 * @oldambient: previous domain string
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800663 */
Casey Schaufler30aa4fa2008-04-28 02:13:43 -0700664static void smk_unlbl_ambient(char *oldambient)
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800665{
666 int rc;
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500667 struct netlbl_audit nai;
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800668
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500669 smk_netlabel_audit_set(&nai);
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800670
671 if (oldambient != NULL) {
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500672 rc = netlbl_cfg_map_del(oldambient, PF_INET, NULL, NULL, &nai);
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800673 if (rc != 0)
674 printk(KERN_WARNING "%s:%d remove rc = %d\n",
675 __func__, __LINE__, rc);
676 }
Casey Schauflerf7112e62012-05-06 15:22:02 -0700677 if (smack_net_ambient == NULL)
678 smack_net_ambient = smack_known_floor.smk_known;
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800679
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500680 rc = netlbl_cfg_unlbl_map_add(smack_net_ambient, PF_INET,
681 NULL, NULL, &nai);
Casey Schaufler4bc87e62008-02-15 15:24:25 -0800682 if (rc != 0)
683 printk(KERN_WARNING "%s:%d add rc = %d\n",
684 __func__, __LINE__, rc);
685}
686
Casey Schauflere114e472008-02-04 22:29:50 -0800687/*
688 * Seq_file read operations for /smack/cipso
689 */
690
691static void *cipso_seq_start(struct seq_file *s, loff_t *pos)
692{
Casey Schaufler40809562011-11-10 15:02:22 -0800693 return smk_seq_start(s, pos, &smack_known_list);
Casey Schauflere114e472008-02-04 22:29:50 -0800694}
695
696static void *cipso_seq_next(struct seq_file *s, void *v, loff_t *pos)
697{
Casey Schaufler40809562011-11-10 15:02:22 -0800698 return smk_seq_next(s, v, pos, &smack_known_list);
Casey Schauflere114e472008-02-04 22:29:50 -0800699}
700
701/*
702 * Print cipso labels in format:
703 * label level[/cat[,cat]]
704 */
705static int cipso_seq_show(struct seq_file *s, void *v)
706{
Etienne Basset7198e2e2009-03-24 20:53:24 +0100707 struct list_head *list = v;
708 struct smack_known *skp =
709 list_entry(list, struct smack_known, list);
Casey Schauflerf7112e62012-05-06 15:22:02 -0700710 struct netlbl_lsm_secattr_catmap *cmp = skp->smk_netlabel.attr.mls.cat;
Casey Schauflere114e472008-02-04 22:29:50 -0800711 char sep = '/';
Casey Schauflere114e472008-02-04 22:29:50 -0800712 int i;
Casey Schauflere114e472008-02-04 22:29:50 -0800713
Casey Schauflerf7112e62012-05-06 15:22:02 -0700714 /*
715 * Don't show a label that could not have been set using
716 * /smack/cipso. This is in support of the notion that
717 * anything read from /smack/cipso ought to be writeable
718 * to /smack/cipso.
719 *
720 * /smack/cipso2 should be used instead.
721 */
722 if (strlen(skp->smk_known) >= SMK_LABELLEN)
Casey Schauflere114e472008-02-04 22:29:50 -0800723 return 0;
724
Casey Schauflerf7112e62012-05-06 15:22:02 -0700725 seq_printf(s, "%s %3d", skp->smk_known, skp->smk_netlabel.attr.mls.lvl);
Casey Schauflere114e472008-02-04 22:29:50 -0800726
Casey Schauflerf7112e62012-05-06 15:22:02 -0700727 for (i = netlbl_secattr_catmap_walk(cmp, 0); i >= 0;
728 i = netlbl_secattr_catmap_walk(cmp, i + 1)) {
729 seq_printf(s, "%c%d", sep, i);
730 sep = ',';
731 }
Casey Schauflere114e472008-02-04 22:29:50 -0800732
733 seq_putc(s, '\n');
734
735 return 0;
736}
737
James Morris88e9d342009-09-22 16:43:43 -0700738static const struct seq_operations cipso_seq_ops = {
Casey Schauflere114e472008-02-04 22:29:50 -0800739 .start = cipso_seq_start,
Casey Schauflere114e472008-02-04 22:29:50 -0800740 .next = cipso_seq_next,
741 .show = cipso_seq_show,
Casey Schaufler40809562011-11-10 15:02:22 -0800742 .stop = smk_seq_stop,
Casey Schauflere114e472008-02-04 22:29:50 -0800743};
744
745/**
746 * smk_open_cipso - open() for /smack/cipso
747 * @inode: inode structure representing file
748 * @file: "cipso" file pointer
749 *
750 * Connect our cipso_seq_* operations with /smack/cipso
751 * file_operations
752 */
753static int smk_open_cipso(struct inode *inode, struct file *file)
754{
755 return seq_open(file, &cipso_seq_ops);
756}
757
758/**
Casey Schauflerf7112e62012-05-06 15:22:02 -0700759 * smk_set_cipso - do the work for write() for cipso and cipso2
Randy Dunlap251a2a92009-02-18 11:42:33 -0800760 * @file: file pointer, not actually used
Casey Schauflere114e472008-02-04 22:29:50 -0800761 * @buf: where to get the data from
762 * @count: bytes sent
763 * @ppos: where to start
Casey Schauflerf7112e62012-05-06 15:22:02 -0700764 * @format: /smack/cipso or /smack/cipso2
Casey Schauflere114e472008-02-04 22:29:50 -0800765 *
766 * Accepts only one cipso rule per write call.
767 * Returns number of bytes written or error code, as appropriate
768 */
Casey Schauflerf7112e62012-05-06 15:22:02 -0700769static ssize_t smk_set_cipso(struct file *file, const char __user *buf,
770 size_t count, loff_t *ppos, int format)
Casey Schauflere114e472008-02-04 22:29:50 -0800771{
772 struct smack_known *skp;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700773 struct netlbl_lsm_secattr ncats;
774 char mapcatset[SMK_CIPSOLEN];
Casey Schauflere114e472008-02-04 22:29:50 -0800775 int maplevel;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700776 unsigned int cat;
Casey Schauflere114e472008-02-04 22:29:50 -0800777 int catlen;
778 ssize_t rc = -EINVAL;
779 char *data = NULL;
780 char *rule;
781 int ret;
782 int i;
783
784 /*
785 * Must have privilege.
786 * No partial writes.
787 * Enough data must be present.
788 */
Casey Schaufler1880eff2012-06-05 15:28:30 -0700789 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflere114e472008-02-04 22:29:50 -0800790 return -EPERM;
791 if (*ppos != 0)
792 return -EINVAL;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700793 if (format == SMK_FIXED24_FMT &&
794 (count < SMK_CIPSOMIN || count > SMK_CIPSOMAX))
Casey Schauflere114e472008-02-04 22:29:50 -0800795 return -EINVAL;
796
797 data = kzalloc(count + 1, GFP_KERNEL);
798 if (data == NULL)
799 return -ENOMEM;
800
801 if (copy_from_user(data, buf, count) != 0) {
802 rc = -EFAULT;
803 goto unlockedout;
804 }
805
806 data[count] = '\0';
807 rule = data;
808 /*
809 * Only allow one writer at a time. Writes should be
810 * quite rare and small in any case.
811 */
812 mutex_lock(&smack_cipso_lock);
813
814 skp = smk_import_entry(rule, 0);
815 if (skp == NULL)
816 goto out;
817
Casey Schauflerf7112e62012-05-06 15:22:02 -0700818 if (format == SMK_FIXED24_FMT)
819 rule += SMK_LABELLEN;
820 else
821 rule += strlen(skp->smk_known);
822
Casey Schauflere114e472008-02-04 22:29:50 -0800823 ret = sscanf(rule, "%d", &maplevel);
824 if (ret != 1 || maplevel > SMACK_CIPSO_MAXLEVEL)
825 goto out;
826
827 rule += SMK_DIGITLEN;
828 ret = sscanf(rule, "%d", &catlen);
829 if (ret != 1 || catlen > SMACK_CIPSO_MAXCATNUM)
830 goto out;
831
Casey Schauflerf7112e62012-05-06 15:22:02 -0700832 if (format == SMK_FIXED24_FMT &&
833 count != (SMK_CIPSOMIN + catlen * SMK_DIGITLEN))
Casey Schauflere114e472008-02-04 22:29:50 -0800834 goto out;
835
836 memset(mapcatset, 0, sizeof(mapcatset));
837
838 for (i = 0; i < catlen; i++) {
839 rule += SMK_DIGITLEN;
Casey Schauflerf7112e62012-05-06 15:22:02 -0700840 ret = sscanf(rule, "%u", &cat);
Casey Schauflere114e472008-02-04 22:29:50 -0800841 if (ret != 1 || cat > SMACK_CIPSO_MAXCATVAL)
842 goto out;
843
844 smack_catset_bit(cat, mapcatset);
845 }
846
Casey Schauflerf7112e62012-05-06 15:22:02 -0700847 rc = smk_netlbl_mls(maplevel, mapcatset, &ncats, SMK_CIPSOLEN);
848 if (rc >= 0) {
849 netlbl_secattr_catmap_free(skp->smk_netlabel.attr.mls.cat);
850 skp->smk_netlabel.attr.mls.cat = ncats.attr.mls.cat;
851 skp->smk_netlabel.attr.mls.lvl = ncats.attr.mls.lvl;
852 rc = count;
Casey Schauflere114e472008-02-04 22:29:50 -0800853 }
854
Casey Schauflere114e472008-02-04 22:29:50 -0800855out:
856 mutex_unlock(&smack_cipso_lock);
857unlockedout:
858 kfree(data);
859 return rc;
860}
861
Casey Schauflerf7112e62012-05-06 15:22:02 -0700862/**
863 * smk_write_cipso - write() for /smack/cipso
864 * @file: file pointer, not actually used
865 * @buf: where to get the data from
866 * @count: bytes sent
867 * @ppos: where to start
868 *
869 * Accepts only one cipso rule per write call.
870 * Returns number of bytes written or error code, as appropriate
871 */
872static ssize_t smk_write_cipso(struct file *file, const char __user *buf,
873 size_t count, loff_t *ppos)
874{
875 return smk_set_cipso(file, buf, count, ppos, SMK_FIXED24_FMT);
876}
877
Casey Schauflere114e472008-02-04 22:29:50 -0800878static const struct file_operations smk_cipso_ops = {
879 .open = smk_open_cipso,
880 .read = seq_read,
881 .llseek = seq_lseek,
882 .write = smk_write_cipso,
883 .release = seq_release,
884};
885
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500886/*
Casey Schauflerf7112e62012-05-06 15:22:02 -0700887 * Seq_file read operations for /smack/cipso2
888 */
889
890/*
891 * Print cipso labels in format:
892 * label level[/cat[,cat]]
893 */
894static int cipso2_seq_show(struct seq_file *s, void *v)
895{
896 struct list_head *list = v;
897 struct smack_known *skp =
898 list_entry(list, struct smack_known, list);
899 struct netlbl_lsm_secattr_catmap *cmp = skp->smk_netlabel.attr.mls.cat;
900 char sep = '/';
901 int i;
902
903 seq_printf(s, "%s %3d", skp->smk_known, skp->smk_netlabel.attr.mls.lvl);
904
905 for (i = netlbl_secattr_catmap_walk(cmp, 0); i >= 0;
906 i = netlbl_secattr_catmap_walk(cmp, i + 1)) {
907 seq_printf(s, "%c%d", sep, i);
908 sep = ',';
909 }
910
911 seq_putc(s, '\n');
912
913 return 0;
914}
915
916static const struct seq_operations cipso2_seq_ops = {
917 .start = cipso_seq_start,
918 .next = cipso_seq_next,
919 .show = cipso2_seq_show,
920 .stop = smk_seq_stop,
921};
922
923/**
924 * smk_open_cipso2 - open() for /smack/cipso2
925 * @inode: inode structure representing file
926 * @file: "cipso2" file pointer
927 *
928 * Connect our cipso_seq_* operations with /smack/cipso2
929 * file_operations
930 */
931static int smk_open_cipso2(struct inode *inode, struct file *file)
932{
933 return seq_open(file, &cipso2_seq_ops);
934}
935
936/**
937 * smk_write_cipso2 - write() for /smack/cipso2
938 * @file: file pointer, not actually used
939 * @buf: where to get the data from
940 * @count: bytes sent
941 * @ppos: where to start
942 *
943 * Accepts only one cipso rule per write call.
944 * Returns number of bytes written or error code, as appropriate
945 */
946static ssize_t smk_write_cipso2(struct file *file, const char __user *buf,
947 size_t count, loff_t *ppos)
948{
949 return smk_set_cipso(file, buf, count, ppos, SMK_LONG_FMT);
950}
951
952static const struct file_operations smk_cipso2_ops = {
953 .open = smk_open_cipso2,
954 .read = seq_read,
955 .llseek = seq_lseek,
956 .write = smk_write_cipso2,
957 .release = seq_release,
958};
959
960/*
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500961 * Seq_file read operations for /smack/netlabel
962 */
963
964static void *netlbladdr_seq_start(struct seq_file *s, loff_t *pos)
965{
Casey Schaufler40809562011-11-10 15:02:22 -0800966 return smk_seq_start(s, pos, &smk_netlbladdr_list);
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500967}
968
969static void *netlbladdr_seq_next(struct seq_file *s, void *v, loff_t *pos)
970{
Casey Schaufler40809562011-11-10 15:02:22 -0800971 return smk_seq_next(s, v, pos, &smk_netlbladdr_list);
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500972}
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500973#define BEBITS (sizeof(__be32) * 8)
974
975/*
976 * Print host/label pairs
977 */
978static int netlbladdr_seq_show(struct seq_file *s, void *v)
979{
Etienne Basset7198e2e2009-03-24 20:53:24 +0100980 struct list_head *list = v;
981 struct smk_netlbladdr *skp =
982 list_entry(list, struct smk_netlbladdr, list);
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500983 unsigned char *hp = (char *) &skp->smk_host.sin_addr.s_addr;
etienne113a0e42009-03-04 07:33:51 +0100984 int maskn;
985 u32 temp_mask = be32_to_cpu(skp->smk_mask.s_addr);
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500986
etienne113a0e42009-03-04 07:33:51 +0100987 for (maskn = 0; temp_mask; temp_mask <<= 1, maskn++);
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500988
989 seq_printf(s, "%u.%u.%u.%u/%d %s\n",
990 hp[0], hp[1], hp[2], hp[3], maskn, skp->smk_label);
991
992 return 0;
993}
994
James Morris88e9d342009-09-22 16:43:43 -0700995static const struct seq_operations netlbladdr_seq_ops = {
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500996 .start = netlbladdr_seq_start,
Casey Schaufler6d3dc072008-12-31 12:54:12 -0500997 .next = netlbladdr_seq_next,
998 .show = netlbladdr_seq_show,
Casey Schaufler40809562011-11-10 15:02:22 -0800999 .stop = smk_seq_stop,
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001000};
1001
1002/**
1003 * smk_open_netlbladdr - open() for /smack/netlabel
1004 * @inode: inode structure representing file
1005 * @file: "netlabel" file pointer
1006 *
1007 * Connect our netlbladdr_seq_* operations with /smack/netlabel
1008 * file_operations
1009 */
1010static int smk_open_netlbladdr(struct inode *inode, struct file *file)
1011{
1012 return seq_open(file, &netlbladdr_seq_ops);
1013}
1014
1015/**
etienne113a0e42009-03-04 07:33:51 +01001016 * smk_netlbladdr_insert
1017 * @new : netlabel to insert
1018 *
1019 * This helper insert netlabel in the smack_netlbladdrs list
1020 * sorted by netmask length (longest to smallest)
Etienne Basset7198e2e2009-03-24 20:53:24 +01001021 * locked by &smk_netlbladdr_lock in smk_write_netlbladdr
1022 *
etienne113a0e42009-03-04 07:33:51 +01001023 */
1024static void smk_netlbladdr_insert(struct smk_netlbladdr *new)
1025{
Etienne Basset7198e2e2009-03-24 20:53:24 +01001026 struct smk_netlbladdr *m, *m_next;
etienne113a0e42009-03-04 07:33:51 +01001027
Etienne Basset7198e2e2009-03-24 20:53:24 +01001028 if (list_empty(&smk_netlbladdr_list)) {
1029 list_add_rcu(&new->list, &smk_netlbladdr_list);
etienne113a0e42009-03-04 07:33:51 +01001030 return;
1031 }
1032
Jiri Pirko05725f72009-04-14 20:17:16 +02001033 m = list_entry_rcu(smk_netlbladdr_list.next,
1034 struct smk_netlbladdr, list);
Etienne Basset7198e2e2009-03-24 20:53:24 +01001035
etienne113a0e42009-03-04 07:33:51 +01001036 /* the comparison '>' is a bit hacky, but works */
Etienne Basset7198e2e2009-03-24 20:53:24 +01001037 if (new->smk_mask.s_addr > m->smk_mask.s_addr) {
1038 list_add_rcu(&new->list, &smk_netlbladdr_list);
etienne113a0e42009-03-04 07:33:51 +01001039 return;
1040 }
Etienne Basset7198e2e2009-03-24 20:53:24 +01001041
1042 list_for_each_entry_rcu(m, &smk_netlbladdr_list, list) {
1043 if (list_is_last(&m->list, &smk_netlbladdr_list)) {
1044 list_add_rcu(&new->list, &m->list);
etienne113a0e42009-03-04 07:33:51 +01001045 return;
1046 }
Jiri Pirko05725f72009-04-14 20:17:16 +02001047 m_next = list_entry_rcu(m->list.next,
1048 struct smk_netlbladdr, list);
Etienne Basset7198e2e2009-03-24 20:53:24 +01001049 if (new->smk_mask.s_addr > m_next->smk_mask.s_addr) {
1050 list_add_rcu(&new->list, &m->list);
etienne113a0e42009-03-04 07:33:51 +01001051 return;
1052 }
1053 }
1054}
1055
1056
1057/**
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001058 * smk_write_netlbladdr - write() for /smack/netlabel
Randy Dunlap251a2a92009-02-18 11:42:33 -08001059 * @file: file pointer, not actually used
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001060 * @buf: where to get the data from
1061 * @count: bytes sent
1062 * @ppos: where to start
1063 *
1064 * Accepts only one netlbladdr per write call.
1065 * Returns number of bytes written or error code, as appropriate
1066 */
1067static ssize_t smk_write_netlbladdr(struct file *file, const char __user *buf,
1068 size_t count, loff_t *ppos)
1069{
1070 struct smk_netlbladdr *skp;
1071 struct sockaddr_in newname;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001072 char *smack;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001073 char *sp;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001074 char *data;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001075 char *host = (char *)&newname.sin_addr.s_addr;
1076 int rc;
1077 struct netlbl_audit audit_info;
1078 struct in_addr mask;
1079 unsigned int m;
Etienne Basset7198e2e2009-03-24 20:53:24 +01001080 int found;
etienne113a0e42009-03-04 07:33:51 +01001081 u32 mask_bits = (1<<31);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001082 __be32 nsa;
etienne113a0e42009-03-04 07:33:51 +01001083 u32 temp_mask;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001084
1085 /*
1086 * Must have privilege.
1087 * No partial writes.
1088 * Enough data must be present.
1089 * "<addr/mask, as a.b.c.d/e><space><label>"
1090 * "<addr, as a.b.c.d><space><label>"
1091 */
Casey Schaufler1880eff2012-06-05 15:28:30 -07001092 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001093 return -EPERM;
1094 if (*ppos != 0)
1095 return -EINVAL;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001096 if (count < SMK_NETLBLADDRMIN)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001097 return -EINVAL;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001098
1099 data = kzalloc(count + 1, GFP_KERNEL);
1100 if (data == NULL)
1101 return -ENOMEM;
1102
1103 if (copy_from_user(data, buf, count) != 0) {
1104 rc = -EFAULT;
1105 goto free_data_out;
1106 }
1107
1108 smack = kzalloc(count + 1, GFP_KERNEL);
1109 if (smack == NULL) {
1110 rc = -ENOMEM;
1111 goto free_data_out;
1112 }
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001113
1114 data[count] = '\0';
1115
1116 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%d %s",
1117 &host[0], &host[1], &host[2], &host[3], &m, smack);
1118 if (rc != 6) {
1119 rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s",
1120 &host[0], &host[1], &host[2], &host[3], smack);
Casey Schauflerf7112e62012-05-06 15:22:02 -07001121 if (rc != 5) {
1122 rc = -EINVAL;
1123 goto free_out;
1124 }
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001125 m = BEBITS;
1126 }
Casey Schauflerf7112e62012-05-06 15:22:02 -07001127 if (m > BEBITS) {
1128 rc = -EINVAL;
1129 goto free_out;
1130 }
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001131
Casey Schauflerf7112e62012-05-06 15:22:02 -07001132 /*
1133 * If smack begins with '-', it is an option, don't import it
1134 */
Etienne Basset43031542009-03-27 17:11:01 -04001135 if (smack[0] != '-') {
1136 sp = smk_import(smack, 0);
Casey Schauflerf7112e62012-05-06 15:22:02 -07001137 if (sp == NULL) {
1138 rc = -EINVAL;
1139 goto free_out;
1140 }
Etienne Basset43031542009-03-27 17:11:01 -04001141 } else {
1142 /* check known options */
1143 if (strcmp(smack, smack_cipso_option) == 0)
1144 sp = (char *)smack_cipso_option;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001145 else {
1146 rc = -EINVAL;
1147 goto free_out;
1148 }
Etienne Basset43031542009-03-27 17:11:01 -04001149 }
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001150
etienne113a0e42009-03-04 07:33:51 +01001151 for (temp_mask = 0; m > 0; m--) {
1152 temp_mask |= mask_bits;
1153 mask_bits >>= 1;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001154 }
etienne113a0e42009-03-04 07:33:51 +01001155 mask.s_addr = cpu_to_be32(temp_mask);
1156
1157 newname.sin_addr.s_addr &= mask.s_addr;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001158 /*
1159 * Only allow one writer at a time. Writes should be
1160 * quite rare and small in any case.
1161 */
1162 mutex_lock(&smk_netlbladdr_lock);
1163
1164 nsa = newname.sin_addr.s_addr;
etienne113a0e42009-03-04 07:33:51 +01001165 /* try to find if the prefix is already in the list */
Etienne Basset7198e2e2009-03-24 20:53:24 +01001166 found = 0;
1167 list_for_each_entry_rcu(skp, &smk_netlbladdr_list, list) {
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001168 if (skp->smk_host.sin_addr.s_addr == nsa &&
Etienne Basset7198e2e2009-03-24 20:53:24 +01001169 skp->smk_mask.s_addr == mask.s_addr) {
1170 found = 1;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001171 break;
Etienne Basset7198e2e2009-03-24 20:53:24 +01001172 }
1173 }
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001174 smk_netlabel_audit_set(&audit_info);
1175
Etienne Basset7198e2e2009-03-24 20:53:24 +01001176 if (found == 0) {
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001177 skp = kzalloc(sizeof(*skp), GFP_KERNEL);
1178 if (skp == NULL)
1179 rc = -ENOMEM;
1180 else {
1181 rc = 0;
1182 skp->smk_host.sin_addr.s_addr = newname.sin_addr.s_addr;
1183 skp->smk_mask.s_addr = mask.s_addr;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001184 skp->smk_label = sp;
etienne113a0e42009-03-04 07:33:51 +01001185 smk_netlbladdr_insert(skp);
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001186 }
1187 } else {
Etienne Basset43031542009-03-27 17:11:01 -04001188 /* we delete the unlabeled entry, only if the previous label
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001189 * wasn't the special CIPSO option */
Etienne Basset43031542009-03-27 17:11:01 -04001190 if (skp->smk_label != smack_cipso_option)
1191 rc = netlbl_cfg_unlbl_static_del(&init_net, NULL,
1192 &skp->smk_host.sin_addr, &skp->smk_mask,
1193 PF_INET, &audit_info);
1194 else
1195 rc = 0;
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001196 skp->smk_label = sp;
1197 }
1198
1199 /*
1200 * Now tell netlabel about the single label nature of
1201 * this host so that incoming packets get labeled.
Etienne Basset43031542009-03-27 17:11:01 -04001202 * but only if we didn't get the special CIPSO option
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001203 */
Etienne Basset43031542009-03-27 17:11:01 -04001204 if (rc == 0 && sp != smack_cipso_option)
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001205 rc = netlbl_cfg_unlbl_static_add(&init_net, NULL,
1206 &skp->smk_host.sin_addr, &skp->smk_mask, PF_INET,
1207 smack_to_secid(skp->smk_label), &audit_info);
1208
1209 if (rc == 0)
1210 rc = count;
1211
1212 mutex_unlock(&smk_netlbladdr_lock);
1213
Casey Schauflerf7112e62012-05-06 15:22:02 -07001214free_out:
1215 kfree(smack);
1216free_data_out:
1217 kfree(data);
1218
Casey Schaufler6d3dc072008-12-31 12:54:12 -05001219 return rc;
1220}
1221
1222static const struct file_operations smk_netlbladdr_ops = {
1223 .open = smk_open_netlbladdr,
1224 .read = seq_read,
1225 .llseek = seq_lseek,
1226 .write = smk_write_netlbladdr,
1227 .release = seq_release,
1228};
1229
Casey Schauflere114e472008-02-04 22:29:50 -08001230/**
1231 * smk_read_doi - read() for /smack/doi
1232 * @filp: file pointer, not actually used
1233 * @buf: where to put the result
1234 * @count: maximum to send along
1235 * @ppos: where to start
1236 *
1237 * Returns number of bytes read or error code, as appropriate
1238 */
1239static ssize_t smk_read_doi(struct file *filp, char __user *buf,
1240 size_t count, loff_t *ppos)
1241{
1242 char temp[80];
1243 ssize_t rc;
1244
1245 if (*ppos != 0)
1246 return 0;
1247
1248 sprintf(temp, "%d", smk_cipso_doi_value);
1249 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1250
1251 return rc;
1252}
1253
1254/**
1255 * smk_write_doi - write() for /smack/doi
Randy Dunlap251a2a92009-02-18 11:42:33 -08001256 * @file: file pointer, not actually used
Casey Schauflere114e472008-02-04 22:29:50 -08001257 * @buf: where to get the data from
1258 * @count: bytes sent
1259 * @ppos: where to start
1260 *
1261 * Returns number of bytes written or error code, as appropriate
1262 */
1263static ssize_t smk_write_doi(struct file *file, const char __user *buf,
1264 size_t count, loff_t *ppos)
1265{
1266 char temp[80];
1267 int i;
1268
Casey Schaufler1880eff2012-06-05 15:28:30 -07001269 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflere114e472008-02-04 22:29:50 -08001270 return -EPERM;
1271
1272 if (count >= sizeof(temp) || count == 0)
1273 return -EINVAL;
1274
1275 if (copy_from_user(temp, buf, count) != 0)
1276 return -EFAULT;
1277
1278 temp[count] = '\0';
1279
1280 if (sscanf(temp, "%d", &i) != 1)
1281 return -EINVAL;
1282
1283 smk_cipso_doi_value = i;
1284
1285 smk_cipso_doi();
1286
1287 return count;
1288}
1289
1290static const struct file_operations smk_doi_ops = {
1291 .read = smk_read_doi,
1292 .write = smk_write_doi,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001293 .llseek = default_llseek,
Casey Schauflere114e472008-02-04 22:29:50 -08001294};
1295
1296/**
1297 * smk_read_direct - read() for /smack/direct
1298 * @filp: file pointer, not actually used
1299 * @buf: where to put the result
1300 * @count: maximum to send along
1301 * @ppos: where to start
1302 *
1303 * Returns number of bytes read or error code, as appropriate
1304 */
1305static ssize_t smk_read_direct(struct file *filp, char __user *buf,
1306 size_t count, loff_t *ppos)
1307{
1308 char temp[80];
1309 ssize_t rc;
1310
1311 if (*ppos != 0)
1312 return 0;
1313
1314 sprintf(temp, "%d", smack_cipso_direct);
1315 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1316
1317 return rc;
1318}
1319
1320/**
1321 * smk_write_direct - write() for /smack/direct
Randy Dunlap251a2a92009-02-18 11:42:33 -08001322 * @file: file pointer, not actually used
Casey Schauflere114e472008-02-04 22:29:50 -08001323 * @buf: where to get the data from
1324 * @count: bytes sent
1325 * @ppos: where to start
1326 *
1327 * Returns number of bytes written or error code, as appropriate
1328 */
1329static ssize_t smk_write_direct(struct file *file, const char __user *buf,
1330 size_t count, loff_t *ppos)
1331{
Casey Schauflerf7112e62012-05-06 15:22:02 -07001332 struct smack_known *skp;
Casey Schauflere114e472008-02-04 22:29:50 -08001333 char temp[80];
1334 int i;
1335
Casey Schaufler1880eff2012-06-05 15:28:30 -07001336 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflere114e472008-02-04 22:29:50 -08001337 return -EPERM;
1338
1339 if (count >= sizeof(temp) || count == 0)
1340 return -EINVAL;
1341
1342 if (copy_from_user(temp, buf, count) != 0)
1343 return -EFAULT;
1344
1345 temp[count] = '\0';
1346
1347 if (sscanf(temp, "%d", &i) != 1)
1348 return -EINVAL;
1349
Casey Schauflerf7112e62012-05-06 15:22:02 -07001350 /*
1351 * Don't do anything if the value hasn't actually changed.
1352 * If it is changing reset the level on entries that were
1353 * set up to be direct when they were created.
1354 */
1355 if (smack_cipso_direct != i) {
1356 mutex_lock(&smack_known_lock);
1357 list_for_each_entry_rcu(skp, &smack_known_list, list)
1358 if (skp->smk_netlabel.attr.mls.lvl ==
1359 smack_cipso_direct)
1360 skp->smk_netlabel.attr.mls.lvl = i;
1361 smack_cipso_direct = i;
1362 mutex_unlock(&smack_known_lock);
1363 }
Casey Schauflere114e472008-02-04 22:29:50 -08001364
1365 return count;
1366}
1367
1368static const struct file_operations smk_direct_ops = {
1369 .read = smk_read_direct,
1370 .write = smk_write_direct,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001371 .llseek = default_llseek,
Casey Schauflere114e472008-02-04 22:29:50 -08001372};
1373
1374/**
Casey Schauflerf7112e62012-05-06 15:22:02 -07001375 * smk_read_mapped - read() for /smack/mapped
1376 * @filp: file pointer, not actually used
1377 * @buf: where to put the result
1378 * @count: maximum to send along
1379 * @ppos: where to start
1380 *
1381 * Returns number of bytes read or error code, as appropriate
1382 */
1383static ssize_t smk_read_mapped(struct file *filp, char __user *buf,
1384 size_t count, loff_t *ppos)
1385{
1386 char temp[80];
1387 ssize_t rc;
1388
1389 if (*ppos != 0)
1390 return 0;
1391
1392 sprintf(temp, "%d", smack_cipso_mapped);
1393 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1394
1395 return rc;
1396}
1397
1398/**
1399 * smk_write_mapped - write() for /smack/mapped
1400 * @file: file pointer, not actually used
1401 * @buf: where to get the data from
1402 * @count: bytes sent
1403 * @ppos: where to start
1404 *
1405 * Returns number of bytes written or error code, as appropriate
1406 */
1407static ssize_t smk_write_mapped(struct file *file, const char __user *buf,
1408 size_t count, loff_t *ppos)
1409{
1410 struct smack_known *skp;
1411 char temp[80];
1412 int i;
1413
Casey Schaufler1880eff2012-06-05 15:28:30 -07001414 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflerf7112e62012-05-06 15:22:02 -07001415 return -EPERM;
1416
1417 if (count >= sizeof(temp) || count == 0)
1418 return -EINVAL;
1419
1420 if (copy_from_user(temp, buf, count) != 0)
1421 return -EFAULT;
1422
1423 temp[count] = '\0';
1424
1425 if (sscanf(temp, "%d", &i) != 1)
1426 return -EINVAL;
1427
1428 /*
1429 * Don't do anything if the value hasn't actually changed.
1430 * If it is changing reset the level on entries that were
1431 * set up to be mapped when they were created.
1432 */
1433 if (smack_cipso_mapped != i) {
1434 mutex_lock(&smack_known_lock);
1435 list_for_each_entry_rcu(skp, &smack_known_list, list)
1436 if (skp->smk_netlabel.attr.mls.lvl ==
1437 smack_cipso_mapped)
1438 skp->smk_netlabel.attr.mls.lvl = i;
1439 smack_cipso_mapped = i;
1440 mutex_unlock(&smack_known_lock);
1441 }
1442
1443 return count;
1444}
1445
1446static const struct file_operations smk_mapped_ops = {
1447 .read = smk_read_mapped,
1448 .write = smk_write_mapped,
1449 .llseek = default_llseek,
1450};
1451
1452/**
Casey Schauflere114e472008-02-04 22:29:50 -08001453 * smk_read_ambient - read() for /smack/ambient
1454 * @filp: file pointer, not actually used
1455 * @buf: where to put the result
1456 * @cn: maximum to send along
1457 * @ppos: where to start
1458 *
1459 * Returns number of bytes read or error code, as appropriate
1460 */
1461static ssize_t smk_read_ambient(struct file *filp, char __user *buf,
1462 size_t cn, loff_t *ppos)
1463{
1464 ssize_t rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001465 int asize;
1466
1467 if (*ppos != 0)
1468 return 0;
1469 /*
1470 * Being careful to avoid a problem in the case where
1471 * smack_net_ambient gets changed in midstream.
Casey Schauflere114e472008-02-04 22:29:50 -08001472 */
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001473 mutex_lock(&smack_ambient_lock);
Casey Schauflere114e472008-02-04 22:29:50 -08001474
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001475 asize = strlen(smack_net_ambient) + 1;
Casey Schauflere114e472008-02-04 22:29:50 -08001476
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001477 if (cn >= asize)
1478 rc = simple_read_from_buffer(buf, cn, ppos,
1479 smack_net_ambient, asize);
1480 else
1481 rc = -EINVAL;
1482
1483 mutex_unlock(&smack_ambient_lock);
Casey Schauflere114e472008-02-04 22:29:50 -08001484
1485 return rc;
1486}
1487
1488/**
1489 * smk_write_ambient - write() for /smack/ambient
Randy Dunlap251a2a92009-02-18 11:42:33 -08001490 * @file: file pointer, not actually used
Casey Schauflere114e472008-02-04 22:29:50 -08001491 * @buf: where to get the data from
1492 * @count: bytes sent
1493 * @ppos: where to start
1494 *
1495 * Returns number of bytes written or error code, as appropriate
1496 */
1497static ssize_t smk_write_ambient(struct file *file, const char __user *buf,
1498 size_t count, loff_t *ppos)
1499{
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001500 char *oldambient;
Casey Schauflerf7112e62012-05-06 15:22:02 -07001501 char *smack = NULL;
1502 char *data;
1503 int rc = count;
Casey Schauflere114e472008-02-04 22:29:50 -08001504
Casey Schaufler1880eff2012-06-05 15:28:30 -07001505 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflere114e472008-02-04 22:29:50 -08001506 return -EPERM;
1507
Casey Schauflerf7112e62012-05-06 15:22:02 -07001508 data = kzalloc(count + 1, GFP_KERNEL);
1509 if (data == NULL)
1510 return -ENOMEM;
Casey Schauflere114e472008-02-04 22:29:50 -08001511
Casey Schauflerf7112e62012-05-06 15:22:02 -07001512 if (copy_from_user(data, buf, count) != 0) {
1513 rc = -EFAULT;
1514 goto out;
1515 }
Casey Schauflere114e472008-02-04 22:29:50 -08001516
Casey Schauflerf7112e62012-05-06 15:22:02 -07001517 smack = smk_import(data, count);
1518 if (smack == NULL) {
1519 rc = -EINVAL;
1520 goto out;
1521 }
Casey Schauflere114e472008-02-04 22:29:50 -08001522
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001523 mutex_lock(&smack_ambient_lock);
1524
1525 oldambient = smack_net_ambient;
Casey Schauflere114e472008-02-04 22:29:50 -08001526 smack_net_ambient = smack;
Casey Schaufler4bc87e62008-02-15 15:24:25 -08001527 smk_unlbl_ambient(oldambient);
1528
1529 mutex_unlock(&smack_ambient_lock);
Casey Schauflere114e472008-02-04 22:29:50 -08001530
Casey Schauflerf7112e62012-05-06 15:22:02 -07001531out:
1532 kfree(data);
1533 return rc;
Casey Schauflere114e472008-02-04 22:29:50 -08001534}
1535
1536static const struct file_operations smk_ambient_ops = {
1537 .read = smk_read_ambient,
1538 .write = smk_write_ambient,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001539 .llseek = default_llseek,
Casey Schauflere114e472008-02-04 22:29:50 -08001540};
1541
Casey Schaufler15446232008-07-30 15:37:11 -07001542/**
1543 * smk_read_onlycap - read() for /smack/onlycap
1544 * @filp: file pointer, not actually used
1545 * @buf: where to put the result
1546 * @cn: maximum to send along
1547 * @ppos: where to start
1548 *
1549 * Returns number of bytes read or error code, as appropriate
1550 */
1551static ssize_t smk_read_onlycap(struct file *filp, char __user *buf,
1552 size_t cn, loff_t *ppos)
1553{
1554 char *smack = "";
1555 ssize_t rc = -EINVAL;
1556 int asize;
1557
1558 if (*ppos != 0)
1559 return 0;
1560
1561 if (smack_onlycap != NULL)
1562 smack = smack_onlycap;
1563
1564 asize = strlen(smack) + 1;
1565
1566 if (cn >= asize)
1567 rc = simple_read_from_buffer(buf, cn, ppos, smack, asize);
1568
1569 return rc;
1570}
1571
1572/**
1573 * smk_write_onlycap - write() for /smack/onlycap
Randy Dunlap251a2a92009-02-18 11:42:33 -08001574 * @file: file pointer, not actually used
Casey Schaufler15446232008-07-30 15:37:11 -07001575 * @buf: where to get the data from
1576 * @count: bytes sent
1577 * @ppos: where to start
1578 *
1579 * Returns number of bytes written or error code, as appropriate
1580 */
1581static ssize_t smk_write_onlycap(struct file *file, const char __user *buf,
1582 size_t count, loff_t *ppos)
1583{
Casey Schauflerf7112e62012-05-06 15:22:02 -07001584 char *data;
Casey Schaufler676dac42010-12-02 06:43:39 -08001585 char *sp = smk_of_task(current->cred->security);
Casey Schauflerf7112e62012-05-06 15:22:02 -07001586 int rc = count;
Casey Schaufler15446232008-07-30 15:37:11 -07001587
Casey Schaufler1880eff2012-06-05 15:28:30 -07001588 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schaufler15446232008-07-30 15:37:11 -07001589 return -EPERM;
1590
1591 /*
1592 * This can be done using smk_access() but is done
1593 * explicitly for clarity. The smk_access() implementation
1594 * would use smk_access(smack_onlycap, MAY_WRITE)
1595 */
1596 if (smack_onlycap != NULL && smack_onlycap != sp)
1597 return -EPERM;
1598
Casey Schauflerf7112e62012-05-06 15:22:02 -07001599 data = kzalloc(count, GFP_KERNEL);
1600 if (data == NULL)
1601 return -ENOMEM;
Casey Schaufler15446232008-07-30 15:37:11 -07001602
1603 /*
1604 * Should the null string be passed in unset the onlycap value.
1605 * This seems like something to be careful with as usually
1606 * smk_import only expects to return NULL for errors. It
1607 * is usually the case that a nullstring or "\n" would be
1608 * bad to pass to smk_import but in fact this is useful here.
Casey Schauflerf7112e62012-05-06 15:22:02 -07001609 *
1610 * smk_import will also reject a label beginning with '-',
1611 * so "-usecapabilities" will also work.
Casey Schaufler15446232008-07-30 15:37:11 -07001612 */
Casey Schauflerf7112e62012-05-06 15:22:02 -07001613 if (copy_from_user(data, buf, count) != 0)
1614 rc = -EFAULT;
1615 else
1616 smack_onlycap = smk_import(data, count);
Casey Schaufler15446232008-07-30 15:37:11 -07001617
Casey Schauflerf7112e62012-05-06 15:22:02 -07001618 kfree(data);
1619 return rc;
Casey Schaufler15446232008-07-30 15:37:11 -07001620}
1621
1622static const struct file_operations smk_onlycap_ops = {
1623 .read = smk_read_onlycap,
1624 .write = smk_write_onlycap,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001625 .llseek = default_llseek,
Casey Schaufler15446232008-07-30 15:37:11 -07001626};
1627
Casey Schauflere114e472008-02-04 22:29:50 -08001628/**
Etienne Bassetecfcc532009-04-08 20:40:06 +02001629 * smk_read_logging - read() for /smack/logging
1630 * @filp: file pointer, not actually used
1631 * @buf: where to put the result
1632 * @cn: maximum to send along
1633 * @ppos: where to start
1634 *
1635 * Returns number of bytes read or error code, as appropriate
1636 */
1637static ssize_t smk_read_logging(struct file *filp, char __user *buf,
1638 size_t count, loff_t *ppos)
1639{
1640 char temp[32];
1641 ssize_t rc;
1642
1643 if (*ppos != 0)
1644 return 0;
1645
1646 sprintf(temp, "%d\n", log_policy);
1647 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
1648 return rc;
1649}
1650
1651/**
1652 * smk_write_logging - write() for /smack/logging
1653 * @file: file pointer, not actually used
1654 * @buf: where to get the data from
1655 * @count: bytes sent
1656 * @ppos: where to start
1657 *
1658 * Returns number of bytes written or error code, as appropriate
1659 */
1660static ssize_t smk_write_logging(struct file *file, const char __user *buf,
1661 size_t count, loff_t *ppos)
1662{
1663 char temp[32];
1664 int i;
1665
Casey Schaufler1880eff2012-06-05 15:28:30 -07001666 if (!smack_privileged(CAP_MAC_ADMIN))
Etienne Bassetecfcc532009-04-08 20:40:06 +02001667 return -EPERM;
1668
1669 if (count >= sizeof(temp) || count == 0)
1670 return -EINVAL;
1671
1672 if (copy_from_user(temp, buf, count) != 0)
1673 return -EFAULT;
1674
1675 temp[count] = '\0';
1676
1677 if (sscanf(temp, "%d", &i) != 1)
1678 return -EINVAL;
1679 if (i < 0 || i > 3)
1680 return -EINVAL;
1681 log_policy = i;
1682 return count;
1683}
1684
1685
1686
1687static const struct file_operations smk_logging_ops = {
1688 .read = smk_read_logging,
1689 .write = smk_write_logging,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001690 .llseek = default_llseek,
Etienne Bassetecfcc532009-04-08 20:40:06 +02001691};
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001692
1693/*
1694 * Seq_file read operations for /smack/load-self
1695 */
1696
1697static void *load_self_seq_start(struct seq_file *s, loff_t *pos)
1698{
1699 struct task_smack *tsp = current_security();
1700
Casey Schaufler40809562011-11-10 15:02:22 -08001701 return smk_seq_start(s, pos, &tsp->smk_rules);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001702}
1703
1704static void *load_self_seq_next(struct seq_file *s, void *v, loff_t *pos)
1705{
1706 struct task_smack *tsp = current_security();
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001707
Casey Schaufler40809562011-11-10 15:02:22 -08001708 return smk_seq_next(s, v, pos, &tsp->smk_rules);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001709}
1710
1711static int load_self_seq_show(struct seq_file *s, void *v)
1712{
1713 struct list_head *list = v;
1714 struct smack_rule *srp =
1715 list_entry(list, struct smack_rule, list);
1716
Casey Schauflerf7112e62012-05-06 15:22:02 -07001717 smk_rule_show(s, srp, SMK_LABELLEN);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001718
1719 return 0;
1720}
1721
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001722static const struct seq_operations load_self_seq_ops = {
1723 .start = load_self_seq_start,
1724 .next = load_self_seq_next,
1725 .show = load_self_seq_show,
Casey Schaufler40809562011-11-10 15:02:22 -08001726 .stop = smk_seq_stop,
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001727};
1728
1729
1730/**
Casey Schauflerf7112e62012-05-06 15:22:02 -07001731 * smk_open_load_self - open() for /smack/load-self2
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001732 * @inode: inode structure representing file
1733 * @file: "load" file pointer
1734 *
1735 * For reading, use load_seq_* seq_file reading operations.
1736 */
1737static int smk_open_load_self(struct inode *inode, struct file *file)
1738{
1739 return seq_open(file, &load_self_seq_ops);
1740}
1741
1742/**
1743 * smk_write_load_self - write() for /smack/load-self
1744 * @file: file pointer, not actually used
1745 * @buf: where to get the data from
1746 * @count: bytes sent
1747 * @ppos: where to start - must be 0
1748 *
1749 */
1750static ssize_t smk_write_load_self(struct file *file, const char __user *buf,
1751 size_t count, loff_t *ppos)
1752{
1753 struct task_smack *tsp = current_security();
1754
Casey Schauflerf7112e62012-05-06 15:22:02 -07001755 return smk_write_rules_list(file, buf, count, ppos, &tsp->smk_rules,
1756 &tsp->smk_rules_lock, SMK_FIXED24_FMT);
Casey Schaufler7898e1f2011-01-17 08:05:27 -08001757}
1758
1759static const struct file_operations smk_load_self_ops = {
1760 .open = smk_open_load_self,
1761 .read = seq_read,
1762 .llseek = seq_lseek,
1763 .write = smk_write_load_self,
1764 .release = seq_release,
1765};
Jarkko Sakkinen828716c2011-09-08 10:12:01 +03001766
1767/**
Casey Schauflerf7112e62012-05-06 15:22:02 -07001768 * smk_user_access - handle access check transaction
1769 * @file: file pointer
1770 * @buf: data from user space
1771 * @count: bytes sent
1772 * @ppos: where to start - must be 0
1773 */
1774static ssize_t smk_user_access(struct file *file, const char __user *buf,
1775 size_t count, loff_t *ppos, int format)
1776{
1777 struct smack_rule rule;
1778 char *data;
1779 char *cod;
1780 int res;
1781
1782 data = simple_transaction_get(file, buf, count);
1783 if (IS_ERR(data))
1784 return PTR_ERR(data);
1785
1786 if (format == SMK_FIXED24_FMT) {
1787 if (count < SMK_LOADLEN)
1788 return -EINVAL;
1789 res = smk_parse_rule(data, &rule, 0);
1790 } else {
1791 /*
1792 * Copy the data to make sure the string is terminated.
1793 */
1794 cod = kzalloc(count + 1, GFP_KERNEL);
1795 if (cod == NULL)
1796 return -ENOMEM;
1797 memcpy(cod, data, count);
1798 cod[count] = '\0';
1799 res = smk_parse_long_rule(cod, &rule, 0);
1800 kfree(cod);
1801 }
1802
1803 if (res)
1804 return -EINVAL;
1805
1806 res = smk_access(rule.smk_subject, rule.smk_object, rule.smk_access,
1807 NULL);
1808 data[0] = res == 0 ? '1' : '0';
1809 data[1] = '\0';
1810
1811 simple_transaction_set(file, 2);
1812
1813 if (format == SMK_FIXED24_FMT)
1814 return SMK_LOADLEN;
1815 return count;
1816}
1817
1818/**
Jarkko Sakkinen828716c2011-09-08 10:12:01 +03001819 * smk_write_access - handle access check transaction
1820 * @file: file pointer
1821 * @buf: data from user space
1822 * @count: bytes sent
1823 * @ppos: where to start - must be 0
1824 */
1825static ssize_t smk_write_access(struct file *file, const char __user *buf,
1826 size_t count, loff_t *ppos)
1827{
Casey Schauflerf7112e62012-05-06 15:22:02 -07001828 return smk_user_access(file, buf, count, ppos, SMK_FIXED24_FMT);
Jarkko Sakkinen828716c2011-09-08 10:12:01 +03001829}
1830
1831static const struct file_operations smk_access_ops = {
1832 .write = smk_write_access,
1833 .read = simple_transaction_read,
1834 .release = simple_transaction_release,
1835 .llseek = generic_file_llseek,
1836};
1837
Casey Schauflerf7112e62012-05-06 15:22:02 -07001838
1839/*
1840 * Seq_file read operations for /smack/load2
1841 */
1842
1843static int load2_seq_show(struct seq_file *s, void *v)
1844{
1845 struct list_head *list = v;
1846 struct smack_master_list *smlp =
1847 list_entry(list, struct smack_master_list, list);
1848
1849 smk_rule_show(s, smlp->smk_rule, SMK_LONGLABEL);
1850
1851 return 0;
1852}
1853
1854static const struct seq_operations load2_seq_ops = {
1855 .start = load2_seq_start,
1856 .next = load2_seq_next,
1857 .show = load2_seq_show,
1858 .stop = smk_seq_stop,
1859};
1860
1861/**
1862 * smk_open_load2 - open() for /smack/load2
1863 * @inode: inode structure representing file
1864 * @file: "load2" file pointer
1865 *
1866 * For reading, use load2_seq_* seq_file reading operations.
1867 */
1868static int smk_open_load2(struct inode *inode, struct file *file)
1869{
1870 return seq_open(file, &load2_seq_ops);
1871}
1872
1873/**
1874 * smk_write_load2 - write() for /smack/load2
1875 * @file: file pointer, not actually used
1876 * @buf: where to get the data from
1877 * @count: bytes sent
1878 * @ppos: where to start - must be 0
1879 *
1880 */
1881static ssize_t smk_write_load2(struct file *file, const char __user *buf,
1882 size_t count, loff_t *ppos)
1883{
1884 /*
1885 * Must have privilege.
1886 */
Casey Schaufler1880eff2012-06-05 15:28:30 -07001887 if (!smack_privileged(CAP_MAC_ADMIN))
Casey Schauflerf7112e62012-05-06 15:22:02 -07001888 return -EPERM;
1889
1890 return smk_write_rules_list(file, buf, count, ppos, NULL, NULL,
1891 SMK_LONG_FMT);
1892}
1893
1894static const struct file_operations smk_load2_ops = {
1895 .open = smk_open_load2,
1896 .read = seq_read,
1897 .llseek = seq_lseek,
1898 .write = smk_write_load2,
1899 .release = seq_release,
1900};
1901
1902/*
1903 * Seq_file read operations for /smack/load-self2
1904 */
1905
1906static void *load_self2_seq_start(struct seq_file *s, loff_t *pos)
1907{
1908 struct task_smack *tsp = current_security();
1909
1910 return smk_seq_start(s, pos, &tsp->smk_rules);
1911}
1912
1913static void *load_self2_seq_next(struct seq_file *s, void *v, loff_t *pos)
1914{
1915 struct task_smack *tsp = current_security();
1916
1917 return smk_seq_next(s, v, pos, &tsp->smk_rules);
1918}
1919
1920static int load_self2_seq_show(struct seq_file *s, void *v)
1921{
1922 struct list_head *list = v;
1923 struct smack_rule *srp =
1924 list_entry(list, struct smack_rule, list);
1925
1926 smk_rule_show(s, srp, SMK_LONGLABEL);
1927
1928 return 0;
1929}
1930
1931static const struct seq_operations load_self2_seq_ops = {
1932 .start = load_self2_seq_start,
1933 .next = load_self2_seq_next,
1934 .show = load_self2_seq_show,
1935 .stop = smk_seq_stop,
1936};
1937
1938/**
1939 * smk_open_load_self2 - open() for /smack/load-self2
1940 * @inode: inode structure representing file
1941 * @file: "load" file pointer
1942 *
1943 * For reading, use load_seq_* seq_file reading operations.
1944 */
1945static int smk_open_load_self2(struct inode *inode, struct file *file)
1946{
1947 return seq_open(file, &load_self2_seq_ops);
1948}
1949
1950/**
1951 * smk_write_load_self2 - write() for /smack/load-self2
1952 * @file: file pointer, not actually used
1953 * @buf: where to get the data from
1954 * @count: bytes sent
1955 * @ppos: where to start - must be 0
1956 *
1957 */
1958static ssize_t smk_write_load_self2(struct file *file, const char __user *buf,
1959 size_t count, loff_t *ppos)
1960{
1961 struct task_smack *tsp = current_security();
1962
1963 return smk_write_rules_list(file, buf, count, ppos, &tsp->smk_rules,
1964 &tsp->smk_rules_lock, SMK_LONG_FMT);
1965}
1966
1967static const struct file_operations smk_load_self2_ops = {
1968 .open = smk_open_load_self2,
1969 .read = seq_read,
1970 .llseek = seq_lseek,
1971 .write = smk_write_load_self2,
1972 .release = seq_release,
1973};
1974
1975/**
1976 * smk_write_access2 - handle access check transaction
1977 * @file: file pointer
1978 * @buf: data from user space
1979 * @count: bytes sent
1980 * @ppos: where to start - must be 0
1981 */
1982static ssize_t smk_write_access2(struct file *file, const char __user *buf,
1983 size_t count, loff_t *ppos)
1984{
1985 return smk_user_access(file, buf, count, ppos, SMK_LONG_FMT);
1986}
1987
1988static const struct file_operations smk_access2_ops = {
1989 .write = smk_write_access2,
1990 .read = simple_transaction_read,
1991 .release = simple_transaction_release,
1992 .llseek = generic_file_llseek,
1993};
1994
Etienne Bassetecfcc532009-04-08 20:40:06 +02001995/**
Rafal Krypa449543b2012-07-11 17:49:30 +02001996 * smk_write_revoke_subj - write() for /smack/revoke-subject
1997 * @file: file pointer
1998 * @buf: data from user space
1999 * @count: bytes sent
2000 * @ppos: where to start - must be 0
2001 */
2002static ssize_t smk_write_revoke_subj(struct file *file, const char __user *buf,
2003 size_t count, loff_t *ppos)
2004{
2005 char *data = NULL;
2006 const char *cp = NULL;
2007 struct smack_known *skp;
2008 struct smack_rule *sp;
2009 struct list_head *rule_list;
2010 struct mutex *rule_lock;
2011 int rc = count;
2012
2013 if (*ppos != 0)
2014 return -EINVAL;
2015
2016 if (!smack_privileged(CAP_MAC_ADMIN))
2017 return -EPERM;
2018
2019 if (count == 0 || count > SMK_LONGLABEL)
2020 return -EINVAL;
2021
2022 data = kzalloc(count, GFP_KERNEL);
2023 if (data == NULL)
2024 return -ENOMEM;
2025
2026 if (copy_from_user(data, buf, count) != 0) {
2027 rc = -EFAULT;
2028 goto free_out;
2029 }
2030
2031 cp = smk_parse_smack(data, count);
2032 if (cp == NULL) {
2033 rc = -EINVAL;
2034 goto free_out;
2035 }
2036
2037 skp = smk_find_entry(cp);
2038 if (skp == NULL) {
2039 rc = -EINVAL;
2040 goto free_out;
2041 }
2042
2043 rule_list = &skp->smk_rules;
2044 rule_lock = &skp->smk_rules_lock;
2045
2046 mutex_lock(rule_lock);
2047
2048 list_for_each_entry_rcu(sp, rule_list, list)
2049 sp->smk_access = 0;
2050
2051 mutex_unlock(rule_lock);
2052
2053free_out:
2054 kfree(data);
2055 kfree(cp);
2056 return rc;
2057}
2058
2059static const struct file_operations smk_revoke_subj_ops = {
2060 .write = smk_write_revoke_subj,
2061 .read = simple_transaction_read,
2062 .release = simple_transaction_release,
2063 .llseek = generic_file_llseek,
2064};
2065
Casey Schauflere9307232012-11-01 18:14:32 -07002066static struct kset *smackfs_kset;
2067/**
2068 * smk_init_sysfs - initialize /sys/fs/smackfs
2069 *
2070 */
2071static int smk_init_sysfs(void)
2072{
2073 smackfs_kset = kset_create_and_add("smackfs", NULL, fs_kobj);
2074 if (!smackfs_kset)
2075 return -ENOMEM;
2076 return 0;
2077}
2078
Rafal Krypa449543b2012-07-11 17:49:30 +02002079/**
Casey Schauflere114e472008-02-04 22:29:50 -08002080 * smk_fill_super - fill the /smackfs superblock
2081 * @sb: the empty superblock
2082 * @data: unused
2083 * @silent: unused
2084 *
2085 * Fill in the well known entries for /smack
2086 *
2087 * Returns 0 on success, an error code on failure
2088 */
2089static int smk_fill_super(struct super_block *sb, void *data, int silent)
2090{
2091 int rc;
2092 struct inode *root_inode;
2093
2094 static struct tree_descr smack_files[] = {
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002095 [SMK_LOAD] = {
2096 "load", &smk_load_ops, S_IRUGO|S_IWUSR},
2097 [SMK_CIPSO] = {
2098 "cipso", &smk_cipso_ops, S_IRUGO|S_IWUSR},
2099 [SMK_DOI] = {
2100 "doi", &smk_doi_ops, S_IRUGO|S_IWUSR},
2101 [SMK_DIRECT] = {
2102 "direct", &smk_direct_ops, S_IRUGO|S_IWUSR},
2103 [SMK_AMBIENT] = {
2104 "ambient", &smk_ambient_ops, S_IRUGO|S_IWUSR},
2105 [SMK_NETLBLADDR] = {
2106 "netlabel", &smk_netlbladdr_ops, S_IRUGO|S_IWUSR},
2107 [SMK_ONLYCAP] = {
2108 "onlycap", &smk_onlycap_ops, S_IRUGO|S_IWUSR},
2109 [SMK_LOGGING] = {
2110 "logging", &smk_logging_ops, S_IRUGO|S_IWUSR},
2111 [SMK_LOAD_SELF] = {
2112 "load-self", &smk_load_self_ops, S_IRUGO|S_IWUGO},
Jarkko Sakkinen828716c2011-09-08 10:12:01 +03002113 [SMK_ACCESSES] = {
Jarkko Sakkinen0e94ae12011-10-18 21:21:36 +03002114 "access", &smk_access_ops, S_IRUGO|S_IWUGO},
Casey Schauflerf7112e62012-05-06 15:22:02 -07002115 [SMK_MAPPED] = {
2116 "mapped", &smk_mapped_ops, S_IRUGO|S_IWUSR},
2117 [SMK_LOAD2] = {
2118 "load2", &smk_load2_ops, S_IRUGO|S_IWUSR},
2119 [SMK_LOAD_SELF2] = {
2120 "load-self2", &smk_load_self2_ops, S_IRUGO|S_IWUGO},
2121 [SMK_ACCESS2] = {
2122 "access2", &smk_access2_ops, S_IRUGO|S_IWUGO},
2123 [SMK_CIPSO2] = {
2124 "cipso2", &smk_cipso2_ops, S_IRUGO|S_IWUSR},
Rafal Krypa449543b2012-07-11 17:49:30 +02002125 [SMK_REVOKE_SUBJ] = {
2126 "revoke-subject", &smk_revoke_subj_ops,
2127 S_IRUGO|S_IWUSR},
Casey Schaufler7898e1f2011-01-17 08:05:27 -08002128 /* last one */
2129 {""}
Casey Schauflere114e472008-02-04 22:29:50 -08002130 };
2131
2132 rc = simple_fill_super(sb, SMACK_MAGIC, smack_files);
2133 if (rc != 0) {
2134 printk(KERN_ERR "%s failed %d while creating inodes\n",
2135 __func__, rc);
2136 return rc;
2137 }
2138
2139 root_inode = sb->s_root->d_inode;
Casey Schauflere114e472008-02-04 22:29:50 -08002140
2141 return 0;
2142}
2143
2144/**
Al Virofc14f2f2010-07-25 01:48:30 +04002145 * smk_mount - get the smackfs superblock
Casey Schauflere114e472008-02-04 22:29:50 -08002146 * @fs_type: passed along without comment
2147 * @flags: passed along without comment
2148 * @dev_name: passed along without comment
2149 * @data: passed along without comment
Casey Schauflere114e472008-02-04 22:29:50 -08002150 *
2151 * Just passes everything along.
2152 *
2153 * Returns what the lower level code does.
2154 */
Al Virofc14f2f2010-07-25 01:48:30 +04002155static struct dentry *smk_mount(struct file_system_type *fs_type,
2156 int flags, const char *dev_name, void *data)
Casey Schauflere114e472008-02-04 22:29:50 -08002157{
Al Virofc14f2f2010-07-25 01:48:30 +04002158 return mount_single(fs_type, flags, data, smk_fill_super);
Casey Schauflere114e472008-02-04 22:29:50 -08002159}
2160
2161static struct file_system_type smk_fs_type = {
2162 .name = "smackfs",
Al Virofc14f2f2010-07-25 01:48:30 +04002163 .mount = smk_mount,
Casey Schauflere114e472008-02-04 22:29:50 -08002164 .kill_sb = kill_litter_super,
2165};
2166
2167static struct vfsmount *smackfs_mount;
2168
Casey Schauflerf7112e62012-05-06 15:22:02 -07002169static int __init smk_preset_netlabel(struct smack_known *skp)
2170{
2171 skp->smk_netlabel.domain = skp->smk_known;
2172 skp->smk_netlabel.flags =
2173 NETLBL_SECATTR_DOMAIN | NETLBL_SECATTR_MLS_LVL;
2174 return smk_netlbl_mls(smack_cipso_direct, skp->smk_known,
2175 &skp->smk_netlabel, strlen(skp->smk_known));
2176}
2177
Casey Schauflere114e472008-02-04 22:29:50 -08002178/**
2179 * init_smk_fs - get the smackfs superblock
2180 *
2181 * register the smackfs
2182 *
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02002183 * Do not register smackfs if Smack wasn't enabled
2184 * on boot. We can not put this method normally under the
2185 * smack_init() code path since the security subsystem get
2186 * initialized before the vfs caches.
2187 *
2188 * Returns true if we were not chosen on boot or if
2189 * we were chosen and filesystem registration succeeded.
Casey Schauflere114e472008-02-04 22:29:50 -08002190 */
2191static int __init init_smk_fs(void)
2192{
2193 int err;
Casey Schauflerf7112e62012-05-06 15:22:02 -07002194 int rc;
Casey Schauflere114e472008-02-04 22:29:50 -08002195
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02002196 if (!security_module_enable(&smack_ops))
2197 return 0;
2198
Casey Schauflere9307232012-11-01 18:14:32 -07002199 err = smk_init_sysfs();
2200 if (err)
2201 printk(KERN_ERR "smackfs: sysfs mountpoint problem.\n");
2202
Casey Schauflere114e472008-02-04 22:29:50 -08002203 err = register_filesystem(&smk_fs_type);
2204 if (!err) {
2205 smackfs_mount = kern_mount(&smk_fs_type);
2206 if (IS_ERR(smackfs_mount)) {
2207 printk(KERN_ERR "smackfs: could not mount!\n");
2208 err = PTR_ERR(smackfs_mount);
2209 smackfs_mount = NULL;
2210 }
2211 }
2212
Casey Schauflere114e472008-02-04 22:29:50 -08002213 smk_cipso_doi();
Casey Schaufler4bc87e62008-02-15 15:24:25 -08002214 smk_unlbl_ambient(NULL);
Casey Schauflere114e472008-02-04 22:29:50 -08002215
Casey Schauflerf7112e62012-05-06 15:22:02 -07002216 rc = smk_preset_netlabel(&smack_known_floor);
2217 if (err == 0 && rc < 0)
2218 err = rc;
2219 rc = smk_preset_netlabel(&smack_known_hat);
2220 if (err == 0 && rc < 0)
2221 err = rc;
2222 rc = smk_preset_netlabel(&smack_known_huh);
2223 if (err == 0 && rc < 0)
2224 err = rc;
2225 rc = smk_preset_netlabel(&smack_known_invalid);
2226 if (err == 0 && rc < 0)
2227 err = rc;
2228 rc = smk_preset_netlabel(&smack_known_star);
2229 if (err == 0 && rc < 0)
2230 err = rc;
2231 rc = smk_preset_netlabel(&smack_known_web);
2232 if (err == 0 && rc < 0)
2233 err = rc;
2234
Casey Schauflere114e472008-02-04 22:29:50 -08002235 return err;
2236}
2237
2238__initcall(init_smk_fs);