2 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
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.
9 * Casey Schaufler <casey@schaufler-ca.com>
13 #include <linux/types.h>
15 #include <linux/sched.h>
18 struct smack_known smack_known_huh
= {
24 struct smack_known smack_known_hat
= {
30 struct smack_known smack_known_star
= {
36 struct smack_known smack_known_floor
= {
42 struct smack_known smack_known_invalid
= {
48 struct smack_known smack_known_web
= {
54 LIST_HEAD(smack_known_list
);
57 * The initial value needs to be bigger than any of the
60 static u32 smack_next_secid
= 10;
63 * smk_access - determine if a subject has a specific access to an object
64 * @subject_label: a pointer to the subject's Smack label
65 * @object_label: a pointer to the object's Smack label
66 * @request: the access requested, in "MAY" format
68 * This function looks up the subject/object pair in the
69 * access rule list and returns 0 if the access is permitted,
72 * Even though Smack labels are usually shared on smack_list
73 * labels that come in off the network can't be imported
74 * and added to the list for locking reasons.
76 * Therefore, it is necessary to check the contents of the labels,
77 * not just the pointer values. Of course, in most cases the labels
78 * will be on the list, so checking the pointers may be a worthwhile
81 int smk_access(char *subject_label
, char *object_label
, int request
)
84 struct smack_rule
*srp
;
87 * Hardcoded comparisons.
89 * A star subject can't access any object.
91 if (subject_label
== smack_known_star
.smk_known
||
92 strcmp(subject_label
, smack_known_star
.smk_known
) == 0)
95 * An internet object can be accessed by any subject.
96 * Tasks cannot be assigned the internet label.
97 * An internet subject can access any object.
99 if (object_label
== smack_known_web
.smk_known
||
100 subject_label
== smack_known_web
.smk_known
||
101 strcmp(object_label
, smack_known_web
.smk_known
) == 0 ||
102 strcmp(subject_label
, smack_known_web
.smk_known
) == 0)
105 * A star object can be accessed by any subject.
107 if (object_label
== smack_known_star
.smk_known
||
108 strcmp(object_label
, smack_known_star
.smk_known
) == 0)
111 * An object can be accessed in any way by a subject
112 * with the same label.
114 if (subject_label
== object_label
||
115 strcmp(subject_label
, object_label
) == 0)
118 * A hat subject can read any object.
119 * A floor object can be read by any subject.
121 if ((request
& MAY_ANYREAD
) == request
) {
122 if (object_label
== smack_known_floor
.smk_known
||
123 strcmp(object_label
, smack_known_floor
.smk_known
) == 0)
125 if (subject_label
== smack_known_hat
.smk_known
||
126 strcmp(subject_label
, smack_known_hat
.smk_known
) == 0)
130 * Beyond here an explicit relationship is required.
131 * If the requested access is contained in the available
132 * access (e.g. read is included in readwrite) it's
136 list_for_each_entry_rcu(srp
, &smack_rule_list
, list
) {
137 if (srp
->smk_subject
== subject_label
||
138 strcmp(srp
->smk_subject
, subject_label
) == 0) {
139 if (srp
->smk_object
== object_label
||
140 strcmp(srp
->smk_object
, object_label
) == 0) {
141 may
= srp
->smk_access
;
148 * This is a bit map operation.
150 if ((request
& may
) == request
)
157 * smk_curacc - determine if current has a specific access to an object
158 * @obj_label: a pointer to the object's Smack label
159 * @mode: the access requested, in "MAY" format
161 * This function checks the current subject label/object label pair
162 * in the access rule list and returns 0 if the access is permitted,
163 * non zero otherwise. It allows that current may have the capability
164 * to override the rules.
166 int smk_curacc(char *obj_label
, u32 mode
)
170 rc
= smk_access(current_security(), obj_label
, mode
);
175 * Return if a specific label has been designated as the
176 * only one that gets privilege and current does not
179 if (smack_onlycap
!= NULL
&& smack_onlycap
!= current
->cred
->security
)
182 if (capable(CAP_MAC_OVERRIDE
))
188 static DEFINE_MUTEX(smack_known_lock
);
191 * smk_import_entry - import a label, return the list entry
192 * @string: a text string that might be a Smack label
193 * @len: the maximum size, or zero if it is NULL terminated.
195 * Returns a pointer to the entry in the label list that
196 * matches the passed string, adding it if necessary.
198 struct smack_known
*smk_import_entry(const char *string
, int len
)
200 struct smack_known
*skp
;
201 char smack
[SMK_LABELLEN
];
205 if (len
<= 0 || len
> SMK_MAXLEN
)
208 for (i
= 0, found
= 0; i
< SMK_LABELLEN
; i
++) {
211 else if (i
>= len
|| string
[i
] > '~' || string
[i
] <= ' ' ||
216 smack
[i
] = string
[i
];
219 if (smack
[0] == '\0')
222 mutex_lock(&smack_known_lock
);
225 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
226 if (strncmp(skp
->smk_known
, smack
, SMK_MAXLEN
) == 0) {
233 skp
= kzalloc(sizeof(struct smack_known
), GFP_KERNEL
);
235 strncpy(skp
->smk_known
, smack
, SMK_MAXLEN
);
236 skp
->smk_secid
= smack_next_secid
++;
237 skp
->smk_cipso
= NULL
;
238 spin_lock_init(&skp
->smk_cipsolock
);
240 * Make sure that the entry is actually
241 * filled before putting it on the list.
243 list_add_rcu(&skp
->list
, &smack_known_list
);
247 mutex_unlock(&smack_known_lock
);
253 * smk_import - import a smack label
254 * @string: a text string that might be a Smack label
255 * @len: the maximum size, or zero if it is NULL terminated.
257 * Returns a pointer to the label in the label list that
258 * matches the passed string, adding it if necessary.
260 char *smk_import(const char *string
, int len
)
262 struct smack_known
*skp
;
264 /* labels cannot begin with a '-' */
265 if (string
[0] == '-')
267 skp
= smk_import_entry(string
, len
);
270 return skp
->smk_known
;
274 * smack_from_secid - find the Smack label associated with a secid
275 * @secid: an integer that might be associated with a Smack label
277 * Returns a pointer to the appropraite Smack label if there is one,
278 * otherwise a pointer to the invalid Smack label.
280 char *smack_from_secid(const u32 secid
)
282 struct smack_known
*skp
;
285 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
286 if (skp
->smk_secid
== secid
) {
288 return skp
->smk_known
;
293 * If we got this far someone asked for the translation
294 * of a secid that is not on the list.
297 return smack_known_invalid
.smk_known
;
301 * smack_to_secid - find the secid associated with a Smack label
302 * @smack: the Smack label
304 * Returns the appropriate secid if there is one,
307 u32
smack_to_secid(const char *smack
)
309 struct smack_known
*skp
;
312 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
313 if (strncmp(skp
->smk_known
, smack
, SMK_MAXLEN
) == 0) {
315 return skp
->smk_secid
;
323 * smack_from_cipso - find the Smack label associated with a CIPSO option
324 * @level: Bell & LaPadula level from the network
325 * @cp: Bell & LaPadula categories from the network
326 * @result: where to put the Smack value
328 * This is a simple lookup in the label table.
330 * This is an odd duck as far as smack handling goes in that
331 * it sends back a copy of the smack label rather than a pointer
332 * to the master list. This is done because it is possible for
333 * a foreign host to send a smack label that is new to this
334 * machine and hence not on the list. That would not be an
335 * issue except that adding an entry to the master list can't
336 * be done at that point.
338 void smack_from_cipso(u32 level
, char *cp
, char *result
)
340 struct smack_known
*kp
;
344 list_for_each_entry(kp
, &smack_known_list
, list
) {
345 if (kp
->smk_cipso
== NULL
)
348 spin_lock_bh(&kp
->smk_cipsolock
);
350 if (kp
->smk_cipso
->smk_level
== level
&&
351 memcmp(kp
->smk_cipso
->smk_catset
, cp
, SMK_LABELLEN
) == 0)
352 final
= kp
->smk_known
;
354 spin_unlock_bh(&kp
->smk_cipsolock
);
358 final
= smack_known_huh
.smk_known
;
359 strncpy(result
, final
, SMK_MAXLEN
);
364 * smack_to_cipso - find the CIPSO option to go with a Smack label
365 * @smack: a pointer to the smack label in question
366 * @cp: where to put the result
368 * Returns zero if a value is available, non-zero otherwise.
370 int smack_to_cipso(const char *smack
, struct smack_cipso
*cp
)
372 struct smack_known
*kp
;
376 list_for_each_entry_rcu(kp
, &smack_known_list
, list
) {
377 if (kp
->smk_known
== smack
||
378 strcmp(kp
->smk_known
, smack
) == 0) {
385 if (found
== 0 || kp
->smk_cipso
== NULL
)
388 memcpy(cp
, kp
->smk_cipso
, sizeof(struct smack_cipso
));