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>
14 #include <linux/slab.h>
16 #include <linux/sched.h>
19 struct smack_known smack_known_huh
= {
25 struct smack_known smack_known_hat
= {
31 struct smack_known smack_known_star
= {
37 struct smack_known smack_known_floor
= {
43 struct smack_known smack_known_invalid
= {
49 struct smack_known smack_known_web
= {
55 LIST_HEAD(smack_known_list
);
58 * The initial value needs to be bigger than any of the
61 static u32 smack_next_secid
= 10;
64 * what events do we log
65 * can be overwritten at run-time by /smack/logging
67 int log_policy
= SMACK_AUDIT_DENIED
;
70 * smk_access - determine if a subject has a specific access to an object
71 * @subject_label: a pointer to the subject's Smack label
72 * @object_label: a pointer to the object's Smack label
73 * @request: the access requested, in "MAY" format
74 * @a : a pointer to the audit data
76 * This function looks up the subject/object pair in the
77 * access rule list and returns 0 if the access is permitted,
80 * Even though Smack labels are usually shared on smack_list
81 * labels that come in off the network can't be imported
82 * and added to the list for locking reasons.
84 * Therefore, it is necessary to check the contents of the labels,
85 * not just the pointer values. Of course, in most cases the labels
86 * will be on the list, so checking the pointers may be a worthwhile
89 int smk_access(char *subject_label
, char *object_label
, int request
,
90 struct smk_audit_info
*a
)
93 struct smack_rule
*srp
;
97 * Hardcoded comparisons.
99 * A star subject can't access any object.
101 if (subject_label
== smack_known_star
.smk_known
||
102 strcmp(subject_label
, smack_known_star
.smk_known
) == 0) {
107 * An internet object can be accessed by any subject.
108 * Tasks cannot be assigned the internet label.
109 * An internet subject can access any object.
111 if (object_label
== smack_known_web
.smk_known
||
112 subject_label
== smack_known_web
.smk_known
||
113 strcmp(object_label
, smack_known_web
.smk_known
) == 0 ||
114 strcmp(subject_label
, smack_known_web
.smk_known
) == 0)
117 * A star object can be accessed by any subject.
119 if (object_label
== smack_known_star
.smk_known
||
120 strcmp(object_label
, smack_known_star
.smk_known
) == 0)
123 * An object can be accessed in any way by a subject
124 * with the same label.
126 if (subject_label
== object_label
||
127 strcmp(subject_label
, object_label
) == 0)
130 * A hat subject can read any object.
131 * A floor object can be read by any subject.
133 if ((request
& MAY_ANYREAD
) == request
) {
134 if (object_label
== smack_known_floor
.smk_known
||
135 strcmp(object_label
, smack_known_floor
.smk_known
) == 0)
137 if (subject_label
== smack_known_hat
.smk_known
||
138 strcmp(subject_label
, smack_known_hat
.smk_known
) == 0)
142 * Beyond here an explicit relationship is required.
143 * If the requested access is contained in the available
144 * access (e.g. read is included in readwrite) it's
148 list_for_each_entry_rcu(srp
, &smack_rule_list
, list
) {
149 if (srp
->smk_subject
== subject_label
||
150 strcmp(srp
->smk_subject
, subject_label
) == 0) {
151 if (srp
->smk_object
== object_label
||
152 strcmp(srp
->smk_object
, object_label
) == 0) {
153 may
= srp
->smk_access
;
160 * This is a bit map operation.
162 if ((request
& may
) == request
)
169 smack_log(subject_label
, object_label
, request
, rc
, a
);
175 * smk_curacc - determine if current has a specific access to an object
176 * @obj_label: a pointer to the object's Smack label
177 * @mode: the access requested, in "MAY" format
178 * @a : common audit data
180 * This function checks the current subject label/object label pair
181 * in the access rule list and returns 0 if the access is permitted,
182 * non zero otherwise. It allows that current may have the capability
183 * to override the rules.
185 int smk_curacc(char *obj_label
, u32 mode
, struct smk_audit_info
*a
)
188 char *sp
= current_security();
190 rc
= smk_access(sp
, obj_label
, mode
, NULL
);
195 * Return if a specific label has been designated as the
196 * only one that gets privilege and current does not
199 if (smack_onlycap
!= NULL
&& smack_onlycap
!= current
->cred
->security
)
202 if (capable(CAP_MAC_OVERRIDE
))
208 smack_log(sp
, obj_label
, mode
, rc
, a
);
215 * smack_str_from_perm : helper to transalate an int to a
217 * @string : the string to fill
221 static inline void smack_str_from_perm(char *string
, int access
)
224 if (access
& MAY_READ
)
226 if (access
& MAY_WRITE
)
228 if (access
& MAY_EXEC
)
230 if (access
& MAY_APPEND
)
235 * smack_log_callback - SMACK specific information
236 * will be called by generic audit code
237 * @ab : the audit_buffer
241 static void smack_log_callback(struct audit_buffer
*ab
, void *a
)
243 struct common_audit_data
*ad
= a
;
244 struct smack_audit_data
*sad
= &ad
->smack_audit_data
;
245 audit_log_format(ab
, "lsm=SMACK fn=%s action=%s",
246 ad
->smack_audit_data
.function
,
247 sad
->result
? "denied" : "granted");
248 audit_log_format(ab
, " subject=");
249 audit_log_untrustedstring(ab
, sad
->subject
);
250 audit_log_format(ab
, " object=");
251 audit_log_untrustedstring(ab
, sad
->object
);
252 audit_log_format(ab
, " requested=%s", sad
->request
);
256 * smack_log - Audit the granting or denial of permissions.
257 * @subject_label : smack label of the requester
258 * @object_label : smack label of the object being accessed
259 * @request: requested permissions
260 * @result: result from smk_access
261 * @a: auxiliary audit data
263 * Audit the granting or denial of permissions in accordance
266 void smack_log(char *subject_label
, char *object_label
, int request
,
267 int result
, struct smk_audit_info
*ad
)
269 char request_buffer
[SMK_NUM_ACCESS_TYPE
+ 1];
270 struct smack_audit_data
*sad
;
271 struct common_audit_data
*a
= &ad
->a
;
273 /* check if we have to log the current event */
274 if (result
!= 0 && (log_policy
& SMACK_AUDIT_DENIED
) == 0)
276 if (result
== 0 && (log_policy
& SMACK_AUDIT_ACCEPT
) == 0)
279 if (a
->smack_audit_data
.function
== NULL
)
280 a
->smack_audit_data
.function
= "unknown";
282 /* end preparing the audit data */
283 sad
= &a
->smack_audit_data
;
284 smack_str_from_perm(request_buffer
, request
);
285 sad
->subject
= subject_label
;
286 sad
->object
= object_label
;
287 sad
->request
= request_buffer
;
288 sad
->result
= result
;
289 a
->lsm_pre_audit
= smack_log_callback
;
293 #else /* #ifdef CONFIG_AUDIT */
294 void smack_log(char *subject_label
, char *object_label
, int request
,
295 int result
, struct smk_audit_info
*ad
)
300 static DEFINE_MUTEX(smack_known_lock
);
303 * smk_import_entry - import a label, return the list entry
304 * @string: a text string that might be a Smack label
305 * @len: the maximum size, or zero if it is NULL terminated.
307 * Returns a pointer to the entry in the label list that
308 * matches the passed string, adding it if necessary.
310 struct smack_known
*smk_import_entry(const char *string
, int len
)
312 struct smack_known
*skp
;
313 char smack
[SMK_LABELLEN
];
317 if (len
<= 0 || len
> SMK_MAXLEN
)
320 for (i
= 0, found
= 0; i
< SMK_LABELLEN
; i
++) {
323 else if (i
>= len
|| string
[i
] > '~' || string
[i
] <= ' ' ||
324 string
[i
] == '/' || string
[i
] == '"' ||
325 string
[i
] == '\\' || string
[i
] == '\'') {
329 smack
[i
] = string
[i
];
332 if (smack
[0] == '\0')
335 mutex_lock(&smack_known_lock
);
338 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
339 if (strncmp(skp
->smk_known
, smack
, SMK_MAXLEN
) == 0) {
346 skp
= kzalloc(sizeof(struct smack_known
), GFP_KERNEL
);
348 strncpy(skp
->smk_known
, smack
, SMK_MAXLEN
);
349 skp
->smk_secid
= smack_next_secid
++;
350 skp
->smk_cipso
= NULL
;
351 spin_lock_init(&skp
->smk_cipsolock
);
353 * Make sure that the entry is actually
354 * filled before putting it on the list.
356 list_add_rcu(&skp
->list
, &smack_known_list
);
360 mutex_unlock(&smack_known_lock
);
366 * smk_import - import a smack label
367 * @string: a text string that might be a Smack label
368 * @len: the maximum size, or zero if it is NULL terminated.
370 * Returns a pointer to the label in the label list that
371 * matches the passed string, adding it if necessary.
373 char *smk_import(const char *string
, int len
)
375 struct smack_known
*skp
;
377 /* labels cannot begin with a '-' */
378 if (string
[0] == '-')
380 skp
= smk_import_entry(string
, len
);
383 return skp
->smk_known
;
387 * smack_from_secid - find the Smack label associated with a secid
388 * @secid: an integer that might be associated with a Smack label
390 * Returns a pointer to the appropraite Smack label if there is one,
391 * otherwise a pointer to the invalid Smack label.
393 char *smack_from_secid(const u32 secid
)
395 struct smack_known
*skp
;
398 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
399 if (skp
->smk_secid
== secid
) {
401 return skp
->smk_known
;
406 * If we got this far someone asked for the translation
407 * of a secid that is not on the list.
410 return smack_known_invalid
.smk_known
;
414 * smack_to_secid - find the secid associated with a Smack label
415 * @smack: the Smack label
417 * Returns the appropriate secid if there is one,
420 u32
smack_to_secid(const char *smack
)
422 struct smack_known
*skp
;
425 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
426 if (strncmp(skp
->smk_known
, smack
, SMK_MAXLEN
) == 0) {
428 return skp
->smk_secid
;
436 * smack_from_cipso - find the Smack label associated with a CIPSO option
437 * @level: Bell & LaPadula level from the network
438 * @cp: Bell & LaPadula categories from the network
439 * @result: where to put the Smack value
441 * This is a simple lookup in the label table.
443 * This is an odd duck as far as smack handling goes in that
444 * it sends back a copy of the smack label rather than a pointer
445 * to the master list. This is done because it is possible for
446 * a foreign host to send a smack label that is new to this
447 * machine and hence not on the list. That would not be an
448 * issue except that adding an entry to the master list can't
449 * be done at that point.
451 void smack_from_cipso(u32 level
, char *cp
, char *result
)
453 struct smack_known
*kp
;
457 list_for_each_entry(kp
, &smack_known_list
, list
) {
458 if (kp
->smk_cipso
== NULL
)
461 spin_lock_bh(&kp
->smk_cipsolock
);
463 if (kp
->smk_cipso
->smk_level
== level
&&
464 memcmp(kp
->smk_cipso
->smk_catset
, cp
, SMK_LABELLEN
) == 0)
465 final
= kp
->smk_known
;
467 spin_unlock_bh(&kp
->smk_cipsolock
);
471 final
= smack_known_huh
.smk_known
;
472 strncpy(result
, final
, SMK_MAXLEN
);
477 * smack_to_cipso - find the CIPSO option to go with a Smack label
478 * @smack: a pointer to the smack label in question
479 * @cp: where to put the result
481 * Returns zero if a value is available, non-zero otherwise.
483 int smack_to_cipso(const char *smack
, struct smack_cipso
*cp
)
485 struct smack_known
*kp
;
489 list_for_each_entry_rcu(kp
, &smack_known_list
, list
) {
490 if (kp
->smk_known
== smack
||
491 strcmp(kp
->smk_known
, smack
) == 0) {
498 if (found
== 0 || kp
->smk_cipso
== NULL
)
501 memcpy(cp
, kp
->smk_cipso
, sizeof(struct smack_cipso
));