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 * what events do we log
64 * can be overwritten at run-time by /smack/logging
66 int log_policy
= SMACK_AUDIT_DENIED
;
69 * smk_access - determine if a subject has a specific access to an object
70 * @subject_label: a pointer to the subject's Smack label
71 * @object_label: a pointer to the object's Smack label
72 * @request: the access requested, in "MAY" format
73 * @a : a pointer to the audit data
75 * This function looks up the subject/object pair in the
76 * access rule list and returns 0 if the access is permitted,
79 * Even though Smack labels are usually shared on smack_list
80 * labels that come in off the network can't be imported
81 * and added to the list for locking reasons.
83 * Therefore, it is necessary to check the contents of the labels,
84 * not just the pointer values. Of course, in most cases the labels
85 * will be on the list, so checking the pointers may be a worthwhile
88 int smk_access(char *subject_label
, char *object_label
, int request
,
89 struct smk_audit_info
*a
)
92 struct smack_rule
*srp
;
96 * Hardcoded comparisons.
98 * A star subject can't access any object.
100 if (subject_label
== smack_known_star
.smk_known
||
101 strcmp(subject_label
, smack_known_star
.smk_known
) == 0) {
106 * An internet object can be accessed by any subject.
107 * Tasks cannot be assigned the internet label.
108 * An internet subject can access any object.
110 if (object_label
== smack_known_web
.smk_known
||
111 subject_label
== smack_known_web
.smk_known
||
112 strcmp(object_label
, smack_known_web
.smk_known
) == 0 ||
113 strcmp(subject_label
, smack_known_web
.smk_known
) == 0)
116 * A star object can be accessed by any subject.
118 if (object_label
== smack_known_star
.smk_known
||
119 strcmp(object_label
, smack_known_star
.smk_known
) == 0)
122 * An object can be accessed in any way by a subject
123 * with the same label.
125 if (subject_label
== object_label
||
126 strcmp(subject_label
, object_label
) == 0)
129 * A hat subject can read any object.
130 * A floor object can be read by any subject.
132 if ((request
& MAY_ANYREAD
) == request
) {
133 if (object_label
== smack_known_floor
.smk_known
||
134 strcmp(object_label
, smack_known_floor
.smk_known
) == 0)
136 if (subject_label
== smack_known_hat
.smk_known
||
137 strcmp(subject_label
, smack_known_hat
.smk_known
) == 0)
141 * Beyond here an explicit relationship is required.
142 * If the requested access is contained in the available
143 * access (e.g. read is included in readwrite) it's
147 list_for_each_entry_rcu(srp
, &smack_rule_list
, list
) {
148 if (srp
->smk_subject
== subject_label
||
149 strcmp(srp
->smk_subject
, subject_label
) == 0) {
150 if (srp
->smk_object
== object_label
||
151 strcmp(srp
->smk_object
, object_label
) == 0) {
152 may
= srp
->smk_access
;
159 * This is a bit map operation.
161 if ((request
& may
) == request
)
168 smack_log(subject_label
, object_label
, request
, rc
, a
);
174 * smk_curacc - determine if current has a specific access to an object
175 * @obj_label: a pointer to the object's Smack label
176 * @mode: the access requested, in "MAY" format
177 * @a : common audit data
179 * This function checks the current subject label/object label pair
180 * in the access rule list and returns 0 if the access is permitted,
181 * non zero otherwise. It allows that current may have the capability
182 * to override the rules.
184 int smk_curacc(char *obj_label
, u32 mode
, struct smk_audit_info
*a
)
187 char *sp
= current_security();
189 rc
= smk_access(sp
, obj_label
, mode
, NULL
);
194 * Return if a specific label has been designated as the
195 * only one that gets privilege and current does not
198 if (smack_onlycap
!= NULL
&& smack_onlycap
!= current
->cred
->security
)
201 if (capable(CAP_MAC_OVERRIDE
))
207 smack_log(sp
, obj_label
, mode
, rc
, a
);
214 * smack_str_from_perm : helper to transalate an int to a
216 * @string : the string to fill
220 static inline void smack_str_from_perm(char *string
, int access
)
223 if (access
& MAY_READ
)
225 if (access
& MAY_WRITE
)
227 if (access
& MAY_EXEC
)
229 if (access
& MAY_APPEND
)
234 * smack_log_callback - SMACK specific information
235 * will be called by generic audit code
236 * @ab : the audit_buffer
240 static void smack_log_callback(struct audit_buffer
*ab
, void *a
)
242 struct common_audit_data
*ad
= a
;
243 struct smack_audit_data
*sad
= &ad
->lsm_priv
.smack_audit_data
;
244 audit_log_format(ab
, "lsm=SMACK fn=%s action=%s", ad
->function
,
245 sad
->result
? "denied" : "granted");
246 audit_log_format(ab
, " subject=");
247 audit_log_untrustedstring(ab
, sad
->subject
);
248 audit_log_format(ab
, " object=");
249 audit_log_untrustedstring(ab
, sad
->object
);
250 audit_log_format(ab
, " requested=%s", sad
->request
);
254 * smack_log - Audit the granting or denial of permissions.
255 * @subject_label : smack label of the requester
256 * @object_label : smack label of the object being accessed
257 * @request: requested permissions
258 * @result: result from smk_access
259 * @a: auxiliary audit data
261 * Audit the granting or denial of permissions in accordance
264 void smack_log(char *subject_label
, char *object_label
, int request
,
265 int result
, struct smk_audit_info
*ad
)
267 char request_buffer
[SMK_NUM_ACCESS_TYPE
+ 1];
268 struct smack_audit_data
*sad
;
269 struct common_audit_data
*a
= &ad
->a
;
271 /* check if we have to log the current event */
272 if (result
!= 0 && (log_policy
& SMACK_AUDIT_DENIED
) == 0)
274 if (result
== 0 && (log_policy
& SMACK_AUDIT_ACCEPT
) == 0)
277 if (a
->function
== NULL
)
278 a
->function
= "unknown";
280 /* end preparing the audit data */
281 sad
= &a
->lsm_priv
.smack_audit_data
;
282 smack_str_from_perm(request_buffer
, request
);
283 sad
->subject
= subject_label
;
284 sad
->object
= object_label
;
285 sad
->request
= request_buffer
;
286 sad
->result
= result
;
287 a
->lsm_pre_audit
= smack_log_callback
;
291 #else /* #ifdef CONFIG_AUDIT */
292 void smack_log(char *subject_label
, char *object_label
, int request
,
293 int result
, struct smk_audit_info
*ad
)
298 static DEFINE_MUTEX(smack_known_lock
);
301 * smk_import_entry - import a label, return the list entry
302 * @string: a text string that might be a Smack label
303 * @len: the maximum size, or zero if it is NULL terminated.
305 * Returns a pointer to the entry in the label list that
306 * matches the passed string, adding it if necessary.
308 struct smack_known
*smk_import_entry(const char *string
, int len
)
310 struct smack_known
*skp
;
311 char smack
[SMK_LABELLEN
];
315 if (len
<= 0 || len
> SMK_MAXLEN
)
318 for (i
= 0, found
= 0; i
< SMK_LABELLEN
; i
++) {
321 else if (i
>= len
|| string
[i
] > '~' || string
[i
] <= ' ' ||
322 string
[i
] == '/' || string
[i
] == '"' ||
323 string
[i
] == '\\' || string
[i
] == '\'') {
327 smack
[i
] = string
[i
];
330 if (smack
[0] == '\0')
333 mutex_lock(&smack_known_lock
);
336 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
337 if (strncmp(skp
->smk_known
, smack
, SMK_MAXLEN
) == 0) {
344 skp
= kzalloc(sizeof(struct smack_known
), GFP_KERNEL
);
346 strncpy(skp
->smk_known
, smack
, SMK_MAXLEN
);
347 skp
->smk_secid
= smack_next_secid
++;
348 skp
->smk_cipso
= NULL
;
349 spin_lock_init(&skp
->smk_cipsolock
);
351 * Make sure that the entry is actually
352 * filled before putting it on the list.
354 list_add_rcu(&skp
->list
, &smack_known_list
);
358 mutex_unlock(&smack_known_lock
);
364 * smk_import - import a smack label
365 * @string: a text string that might be a Smack label
366 * @len: the maximum size, or zero if it is NULL terminated.
368 * Returns a pointer to the label in the label list that
369 * matches the passed string, adding it if necessary.
371 char *smk_import(const char *string
, int len
)
373 struct smack_known
*skp
;
375 /* labels cannot begin with a '-' */
376 if (string
[0] == '-')
378 skp
= smk_import_entry(string
, len
);
381 return skp
->smk_known
;
385 * smack_from_secid - find the Smack label associated with a secid
386 * @secid: an integer that might be associated with a Smack label
388 * Returns a pointer to the appropraite Smack label if there is one,
389 * otherwise a pointer to the invalid Smack label.
391 char *smack_from_secid(const u32 secid
)
393 struct smack_known
*skp
;
396 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
397 if (skp
->smk_secid
== secid
) {
399 return skp
->smk_known
;
404 * If we got this far someone asked for the translation
405 * of a secid that is not on the list.
408 return smack_known_invalid
.smk_known
;
412 * smack_to_secid - find the secid associated with a Smack label
413 * @smack: the Smack label
415 * Returns the appropriate secid if there is one,
418 u32
smack_to_secid(const char *smack
)
420 struct smack_known
*skp
;
423 list_for_each_entry_rcu(skp
, &smack_known_list
, list
) {
424 if (strncmp(skp
->smk_known
, smack
, SMK_MAXLEN
) == 0) {
426 return skp
->smk_secid
;
434 * smack_from_cipso - find the Smack label associated with a CIPSO option
435 * @level: Bell & LaPadula level from the network
436 * @cp: Bell & LaPadula categories from the network
437 * @result: where to put the Smack value
439 * This is a simple lookup in the label table.
441 * This is an odd duck as far as smack handling goes in that
442 * it sends back a copy of the smack label rather than a pointer
443 * to the master list. This is done because it is possible for
444 * a foreign host to send a smack label that is new to this
445 * machine and hence not on the list. That would not be an
446 * issue except that adding an entry to the master list can't
447 * be done at that point.
449 void smack_from_cipso(u32 level
, char *cp
, char *result
)
451 struct smack_known
*kp
;
455 list_for_each_entry(kp
, &smack_known_list
, list
) {
456 if (kp
->smk_cipso
== NULL
)
459 spin_lock_bh(&kp
->smk_cipsolock
);
461 if (kp
->smk_cipso
->smk_level
== level
&&
462 memcmp(kp
->smk_cipso
->smk_catset
, cp
, SMK_LABELLEN
) == 0)
463 final
= kp
->smk_known
;
465 spin_unlock_bh(&kp
->smk_cipsolock
);
469 final
= smack_known_huh
.smk_known
;
470 strncpy(result
, final
, SMK_MAXLEN
);
475 * smack_to_cipso - find the CIPSO option to go with a Smack label
476 * @smack: a pointer to the smack label in question
477 * @cp: where to put the result
479 * Returns zero if a value is available, non-zero otherwise.
481 int smack_to_cipso(const char *smack
, struct smack_cipso
*cp
)
483 struct smack_known
*kp
;
487 list_for_each_entry_rcu(kp
, &smack_known_list
, list
) {
488 if (kp
->smk_known
== smack
||
489 strcmp(kp
->smk_known
, smack
) == 0) {
496 if (found
== 0 || kp
->smk_cipso
== NULL
)
499 memcpy(cp
, kp
->smk_cipso
, sizeof(struct smack_cipso
));