smack_access.c 16.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) 2007 Casey Schaufler <casey@schaufler-ca.com>
 *
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation, version 2.
 *
 * Author:
 *      Casey Schaufler <casey@schaufler-ca.com>
 *
 */

#include <linux/types.h>
14
#include <linux/slab.h>
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#include <linux/fs.h>
#include <linux/sched.h>
#include "smack.h"

struct smack_known smack_known_huh = {
	.smk_known	= "?",
	.smk_secid	= 2,
};

struct smack_known smack_known_hat = {
	.smk_known	= "^",
	.smk_secid	= 3,
};

struct smack_known smack_known_star = {
	.smk_known	= "*",
	.smk_secid	= 4,
};

struct smack_known smack_known_floor = {
	.smk_known	= "_",
	.smk_secid	= 5,
};

struct smack_known smack_known_invalid = {
	.smk_known	= "",
	.smk_secid	= 6,
};

44 45 46 47 48
struct smack_known smack_known_web = {
	.smk_known	= "@",
	.smk_secid	= 7,
};

49
LIST_HEAD(smack_known_list);
50 51 52 53 54 55 56

/*
 * The initial value needs to be bigger than any of the
 * known values above.
 */
static u32 smack_next_secid = 10;

E
Etienne Basset 已提交
57 58 59 60 61 62
/*
 * what events do we log
 * can be overwritten at run-time by /smack/logging
 */
int log_policy = SMACK_AUDIT_DENIED;

63 64 65 66
/**
 * smk_access_entry - look up matching access rule
 * @subject_label: a pointer to the subject's Smack label
 * @object_label: a pointer to the object's Smack label
67
 * @rule_list: the list of rules to search
68 69
 *
 * This function looks up the subject/object pair in the
70 71
 * access rule list and returns the access mode. If no
 * entry is found returns -ENOENT.
72 73 74
 *
 * NOTE:
 *
75 76 77 78 79 80 81 82 83 84 85 86
 * Earlier versions of this function allowed for labels that
 * were not on the label list. This was done to allow for
 * labels to come over the network that had never been seen
 * before on this host. Unless the receiving socket has the
 * star label this will always result in a failure check. The
 * star labeled socket case is now handled in the networking
 * hooks so there is no case where the label is not on the
 * label list. Checking to see if the address of two labels
 * is the same is now a reliable test.
 *
 * Do the object check first because that is more
 * likely to differ.
87 88
 *
 * Allowing write access implies allowing locking.
89
 */
90 91
int smk_access_entry(char *subject_label, char *object_label,
			struct list_head *rule_list)
92
{
93
	int may = -ENOENT;
94 95
	struct smack_rule *srp;

96
	list_for_each_entry_rcu(srp, rule_list, list) {
97
		if (srp->smk_object->smk_known == object_label &&
98
		    srp->smk_subject->smk_known == subject_label) {
99 100
			may = srp->smk_access;
			break;
101 102 103
		}
	}

104 105 106 107 108
	/*
	 * MAY_WRITE implies MAY_LOCK.
	 */
	if ((may & MAY_WRITE) == MAY_WRITE)
		may |= MAY_LOCK;
109 110 111
	return may;
}

112 113
/**
 * smk_access - determine if a subject has a specific access to an object
114 115
 * @subject: a pointer to the subject's Smack label entry
 * @object: a pointer to the object's Smack label entry
116
 * @request: the access requested, in "MAY" format
E
Etienne Basset 已提交
117
 * @a : a pointer to the audit data
118 119 120 121 122
 *
 * This function looks up the subject/object pair in the
 * access rule list and returns 0 if the access is permitted,
 * non zero otherwise.
 *
123
 * Smack labels are shared on smack_list
124
 */
125 126
int smk_access(struct smack_known *subject, struct smack_known *object,
	       int request, struct smk_audit_info *a)
127
{
128
	int may = MAY_NOT;
E
Etienne Basset 已提交
129
	int rc = 0;
130 131 132

	/*
	 * Hardcoded comparisons.
133 134
	 */
	/*
135 136
	 * A star subject can't access any object.
	 */
137
	if (subject == &smack_known_star) {
E
Etienne Basset 已提交
138 139 140
		rc = -EACCES;
		goto out_audit;
	}
141 142 143 144 145
	/*
	 * An internet object can be accessed by any subject.
	 * Tasks cannot be assigned the internet label.
	 * An internet subject can access any object.
	 */
146
	if (object == &smack_known_web || subject == &smack_known_web)
E
Etienne Basset 已提交
147
		goto out_audit;
148 149 150
	/*
	 * A star object can be accessed by any subject.
	 */
151
	if (object == &smack_known_star)
E
Etienne Basset 已提交
152
		goto out_audit;
153 154 155 156
	/*
	 * An object can be accessed in any way by a subject
	 * with the same label.
	 */
157
	if (subject->smk_known == object->smk_known)
E
Etienne Basset 已提交
158
		goto out_audit;
159
	/*
160 161
	 * A hat subject can read or lock any object.
	 * A floor object can be read or locked by any subject.
162
	 */
163 164
	if ((request & MAY_ANYREAD) == request ||
	    (request & MAY_LOCK) == request) {
165
		if (object == &smack_known_floor)
E
Etienne Basset 已提交
166
			goto out_audit;
167
		if (subject == &smack_known_hat)
E
Etienne Basset 已提交
168
			goto out_audit;
169 170 171 172 173
	}
	/*
	 * Beyond here an explicit relationship is required.
	 * If the requested access is contained in the available
	 * access (e.g. read is included in readwrite) it's
174 175
	 * good. A negative response from smk_access_entry()
	 * indicates there is no entry for this pair.
176
	 */
177
	rcu_read_lock();
178 179
	may = smk_access_entry(subject->smk_known, object->smk_known,
			       &subject->smk_rules);
180 181
	rcu_read_unlock();

C
Casey Schaufler 已提交
182 183
	if (may <= 0 || (request & may) != request) {
		rc = -EACCES;
E
Etienne Basset 已提交
184
		goto out_audit;
C
Casey Schaufler 已提交
185 186 187 188 189 190 191 192
	}
#ifdef CONFIG_SECURITY_SMACK_BRINGUP
	/*
	 * Return a positive value if using bringup mode.
	 * This allows the hooks to identify checks that
	 * succeed because of "b" rules.
	 */
	if (may & MAY_BRINGUP)
193
		rc = SMACK_BRINGUP_ALLOW;
C
Casey Schaufler 已提交
194
#endif
195

E
Etienne Basset 已提交
196
out_audit:
197 198 199 200 201 202 203 204 205 206

#ifdef CONFIG_SECURITY_SMACK_BRINGUP
	if (rc < 0) {
		if (object == smack_unconfined)
			rc = SMACK_UNCONFINED_OBJECT;
		if (subject == smack_unconfined)
			rc = SMACK_UNCONFINED_SUBJECT;
	}
#endif

E
Etienne Basset 已提交
207 208
#ifdef CONFIG_AUDIT
	if (a)
209 210
		smack_log(subject->smk_known, object->smk_known,
			  request, rc, a);
E
Etienne Basset 已提交
211
#endif
C
Casey Schaufler 已提交
212

E
Etienne Basset 已提交
213
	return rc;
214 215 216
}

/**
217
 * smk_tskacc - determine if a task has a specific access to an object
218 219
 * @tsp: a pointer to the subject's task
 * @obj_known: a pointer to the object's label entry
220
 * @mode: the access requested, in "MAY" format
E
Etienne Basset 已提交
221
 * @a : common audit data
222
 *
223
 * This function checks the subject task's label/object label pair
224
 * in the access rule list and returns 0 if the access is permitted,
225
 * non zero otherwise. It allows that the task may have the capability
226 227
 * to override the rules.
 */
228
int smk_tskacc(struct task_smack *tsp, struct smack_known *obj_known,
229
	       u32 mode, struct smk_audit_info *a)
230
{
231
	struct smack_known *sbj_known = smk_of_task(tsp);
232
	int may;
233 234
	int rc;

235 236 237
	/*
	 * Check the global rule list
	 */
238
	rc = smk_access(sbj_known, obj_known, mode, NULL);
C
Casey Schaufler 已提交
239
	if (rc >= 0) {
240 241 242 243
		/*
		 * If there is an entry in the task's rule list
		 * it can further restrict access.
		 */
244 245 246
		may = smk_access_entry(sbj_known->smk_known,
				       obj_known->smk_known,
				       &tsp->smk_rules);
247 248 249 250 251 252
		if (may < 0)
			goto out_audit;
		if ((mode & may) == mode)
			goto out_audit;
		rc = -EACCES;
	}
253

254
	/*
255
	 * Allow for priviliged to override policy.
256
	 */
257
	if (rc != 0 && smack_privileged(CAP_MAC_OVERRIDE))
258
		rc = 0;
259

E
Etienne Basset 已提交
260 261 262
out_audit:
#ifdef CONFIG_AUDIT
	if (a)
263 264
		smack_log(sbj_known->smk_known, obj_known->smk_known,
			  mode, rc, a);
E
Etienne Basset 已提交
265
#endif
266 267 268
	return rc;
}

269 270
/**
 * smk_curacc - determine if current has a specific access to an object
271
 * @obj_known: a pointer to the object's Smack label entry
272 273 274 275 276 277 278 279
 * @mode: the access requested, in "MAY" format
 * @a : common audit data
 *
 * This function checks the current subject label/object label pair
 * in the access rule list and returns 0 if the access is permitted,
 * non zero otherwise. It allows that current may have the capability
 * to override the rules.
 */
280 281
int smk_curacc(struct smack_known *obj_known,
	       u32 mode, struct smk_audit_info *a)
282 283 284
{
	struct task_smack *tsp = current_security();

285
	return smk_tskacc(tsp, obj_known, mode, a);
286 287
}

E
Etienne Basset 已提交
288 289 290 291 292 293 294 295 296 297 298
#ifdef CONFIG_AUDIT
/**
 * smack_str_from_perm : helper to transalate an int to a
 * readable string
 * @string : the string to fill
 * @access : the int
 *
 */
static inline void smack_str_from_perm(char *string, int access)
{
	int i = 0;
299

E
Etienne Basset 已提交
300 301 302 303 304 305 306 307
	if (access & MAY_READ)
		string[i++] = 'r';
	if (access & MAY_WRITE)
		string[i++] = 'w';
	if (access & MAY_EXEC)
		string[i++] = 'x';
	if (access & MAY_APPEND)
		string[i++] = 'a';
308 309
	if (access & MAY_TRANSMUTE)
		string[i++] = 't';
310 311
	if (access & MAY_LOCK)
		string[i++] = 'l';
E
Etienne Basset 已提交
312 313 314 315 316 317 318 319 320 321 322 323
	string[i] = '\0';
}
/**
 * smack_log_callback - SMACK specific information
 * will be called by generic audit code
 * @ab : the audit_buffer
 * @a  : audit_data
 *
 */
static void smack_log_callback(struct audit_buffer *ab, void *a)
{
	struct common_audit_data *ad = a;
324
	struct smack_audit_data *sad = ad->smack_audit_data;
325
	audit_log_format(ab, "lsm=SMACK fn=%s action=%s",
326
			 ad->smack_audit_data->function,
E
Etienne Basset 已提交
327 328 329 330 331
			 sad->result ? "denied" : "granted");
	audit_log_format(ab, " subject=");
	audit_log_untrustedstring(ab, sad->subject);
	audit_log_format(ab, " object=");
	audit_log_untrustedstring(ab, sad->object);
332 333 334 335
	if (sad->request[0] == '\0')
		audit_log_format(ab, " labels_differ");
	else
		audit_log_format(ab, " requested=%s", sad->request);
E
Etienne Basset 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
}

/**
 *  smack_log - Audit the granting or denial of permissions.
 *  @subject_label : smack label of the requester
 *  @object_label  : smack label of the object being accessed
 *  @request: requested permissions
 *  @result: result from smk_access
 *  @a:  auxiliary audit data
 *
 * Audit the granting or denial of permissions in accordance
 * with the policy.
 */
void smack_log(char *subject_label, char *object_label, int request,
	       int result, struct smk_audit_info *ad)
{
352 353 354
#ifdef CONFIG_SECURITY_SMACK_BRINGUP
	char request_buffer[SMK_NUM_ACCESS_TYPE + 5];
#else
E
Etienne Basset 已提交
355
	char request_buffer[SMK_NUM_ACCESS_TYPE + 1];
356
#endif
E
Etienne Basset 已提交
357 358 359 360
	struct smack_audit_data *sad;
	struct common_audit_data *a = &ad->a;

	/* check if we have to log the current event */
361
	if (result < 0 && (log_policy & SMACK_AUDIT_DENIED) == 0)
E
Etienne Basset 已提交
362 363 364 365
		return;
	if (result == 0 && (log_policy & SMACK_AUDIT_ACCEPT) == 0)
		return;

366 367 368 369
	sad = a->smack_audit_data;

	if (sad->function == NULL)
		sad->function = "unknown";
E
Etienne Basset 已提交
370 371 372 373 374

	/* end preparing the audit data */
	smack_str_from_perm(request_buffer, request);
	sad->subject = subject_label;
	sad->object  = object_label;
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
#ifdef CONFIG_SECURITY_SMACK_BRINGUP
	/*
	 * The result may be positive in bringup mode.
	 * A positive result is an allow, but not for normal reasons.
	 * Mark it as successful, but don't filter it out even if
	 * the logging policy says to do so.
	 */
	if (result == SMACK_UNCONFINED_SUBJECT)
		strcat(request_buffer, "(US)");
	else if (result == SMACK_UNCONFINED_OBJECT)
		strcat(request_buffer, "(UO)");

	if (result > 0)
		result = 0;
#endif
E
Etienne Basset 已提交
390 391 392
	sad->request = request_buffer;
	sad->result  = result;

393
	common_lsm_audit(a, smack_log_callback, NULL);
E
Etienne Basset 已提交
394 395 396 397 398 399 400 401
}
#else /* #ifdef CONFIG_AUDIT */
void smack_log(char *subject_label, char *object_label, int request,
               int result, struct smk_audit_info *ad)
{
}
#endif

402
DEFINE_MUTEX(smack_known_lock);
403

404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
struct hlist_head smack_known_hash[SMACK_HASH_SLOTS];

/**
 * smk_insert_entry - insert a smack label into a hash map,
 *
 * this function must be called under smack_known_lock
 */
void smk_insert_entry(struct smack_known *skp)
{
	unsigned int hash;
	struct hlist_head *head;

	hash = full_name_hash(skp->smk_known, strlen(skp->smk_known));
	head = &smack_known_hash[hash & (SMACK_HASH_SLOTS - 1)];

	hlist_add_head_rcu(&skp->smk_hashed, head);
	list_add_rcu(&skp->list, &smack_known_list);
}

423 424 425 426 427
/**
 * smk_find_entry - find a label on the list, return the list entry
 * @string: a text string that might be a Smack label
 *
 * Returns a pointer to the entry in the label list that
428
 * matches the passed string or NULL if not found.
429 430 431
 */
struct smack_known *smk_find_entry(const char *string)
{
432 433
	unsigned int hash;
	struct hlist_head *head;
434 435
	struct smack_known *skp;

436 437 438 439
	hash = full_name_hash(string, strlen(string));
	head = &smack_known_hash[hash & (SMACK_HASH_SLOTS - 1)];

	hlist_for_each_entry_rcu(skp, head, smk_hashed)
440
		if (strcmp(skp->smk_known, string) == 0)
441 442 443 444 445
			return skp;

	return NULL;
}

446
/**
447 448
 * smk_parse_smack - parse smack label from a text string
 * @string: a text string that might contain a Smack label
449
 * @len: the maximum size, or zero if it is NULL terminated.
450
 *
451
 * Returns a pointer to the clean label or an error code.
452
 */
453
char *smk_parse_smack(const char *string, int len)
454
{
455
	char *smack;
456 457
	int i;

458 459 460 461 462 463 464 465 466
	if (len <= 0)
		len = strlen(string) + 1;

	/*
	 * Reserve a leading '-' as an indicator that
	 * this isn't a label, but an option to interfaces
	 * including /smack/cipso and /smack/cipso2
	 */
	if (string[0] == '-')
467
		return ERR_PTR(-EINVAL);
468 469 470 471 472 473 474

	for (i = 0; i < len; i++)
		if (string[i] > '~' || string[i] <= ' ' || string[i] == '/' ||
		    string[i] == '"' || string[i] == '\\' || string[i] == '\'')
			break;

	if (i == 0 || i >= SMK_LONGLABEL)
475
		return ERR_PTR(-EINVAL);
476 477

	smack = kzalloc(i + 1, GFP_KERNEL);
478 479 480 481
	if (smack == NULL)
		return ERR_PTR(-ENOMEM);

	strncpy(smack, string, i);
482

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
	return smack;
}

/**
 * smk_netlbl_mls - convert a catset to netlabel mls categories
 * @catset: the Smack categories
 * @sap: where to put the netlabel categories
 *
 * Allocates and fills attr.mls
 * Returns 0 on success, error code on failure.
 */
int smk_netlbl_mls(int level, char *catset, struct netlbl_lsm_secattr *sap,
			int len)
{
	unsigned char *cp;
	unsigned char m;
	int cat;
	int rc;
	int byte;

	sap->flags |= NETLBL_SECATTR_MLS_CAT;
	sap->attr.mls.lvl = level;
505
	sap->attr.mls.cat = NULL;
506 507 508 509 510

	for (cat = 1, cp = catset, byte = 0; byte < len; cp++, byte++)
		for (m = 0x80; m != 0; m >>= 1, cat++) {
			if ((m & *cp) == 0)
				continue;
511 512
			rc = netlbl_catmap_setbit(&sap->attr.mls.cat,
						  cat, GFP_ATOMIC);
513
			if (rc < 0) {
514
				netlbl_catmap_free(sap->attr.mls.cat);
515 516 517 518 519
				return rc;
			}
		}

	return 0;
520 521 522 523 524 525 526 527
}

/**
 * smk_import_entry - import a label, return the list entry
 * @string: a text string that might be a Smack label
 * @len: the maximum size, or zero if it is NULL terminated.
 *
 * Returns a pointer to the entry in the label list that
528 529
 * matches the passed string, adding it if necessary,
 * or an error code.
530 531 532 533
 */
struct smack_known *smk_import_entry(const char *string, int len)
{
	struct smack_known *skp;
534 535 536
	char *smack;
	int slen;
	int rc;
537

538
	smack = smk_parse_smack(string, len);
539 540
	if (IS_ERR(smack))
		return ERR_CAST(smack);
541 542 543

	mutex_lock(&smack_known_lock);

544
	skp = smk_find_entry(smack);
545 546
	if (skp != NULL)
		goto freeout;
547

548
	skp = kzalloc(sizeof(*skp), GFP_KERNEL);
549 550
	if (skp == NULL) {
		skp = ERR_PTR(-ENOMEM);
551
		goto freeout;
552
	}
553

554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
	skp->smk_known = smack;
	skp->smk_secid = smack_next_secid++;
	skp->smk_netlabel.domain = skp->smk_known;
	skp->smk_netlabel.flags =
		NETLBL_SECATTR_DOMAIN | NETLBL_SECATTR_MLS_LVL;
	/*
	 * If direct labeling works use it.
	 * Otherwise use mapped labeling.
	 */
	slen = strlen(smack);
	if (slen < SMK_CIPSOLEN)
		rc = smk_netlbl_mls(smack_cipso_direct, skp->smk_known,
			       &skp->smk_netlabel, slen);
	else
		rc = smk_netlbl_mls(smack_cipso_mapped, (char *)&skp->smk_secid,
			       &skp->smk_netlabel, sizeof(skp->smk_secid));

	if (rc >= 0) {
		INIT_LIST_HEAD(&skp->smk_rules);
		mutex_init(&skp->smk_rules_lock);
		/*
		 * Make sure that the entry is actually
		 * filled before putting it on the list.
		 */
578
		smk_insert_entry(skp);
579 580 581 582 583 584
		goto unlockout;
	}
	/*
	 * smk_netlbl_mls failed.
	 */
	kfree(skp);
585
	skp = ERR_PTR(rc);
586 587 588
freeout:
	kfree(smack);
unlockout:
589 590 591 592 593 594 595 596 597
	mutex_unlock(&smack_known_lock);

	return skp;
}

/**
 * smack_from_secid - find the Smack label associated with a secid
 * @secid: an integer that might be associated with a Smack label
 *
598
 * Returns a pointer to the appropriate Smack label entry if there is one,
599 600
 * otherwise a pointer to the invalid Smack label.
 */
601
struct smack_known *smack_from_secid(const u32 secid)
602 603 604
{
	struct smack_known *skp;

605 606 607 608
	rcu_read_lock();
	list_for_each_entry_rcu(skp, &smack_known_list, list) {
		if (skp->smk_secid == secid) {
			rcu_read_unlock();
609
			return skp;
610 611
		}
	}
612 613 614 615 616

	/*
	 * If we got this far someone asked for the translation
	 * of a secid that is not on the list.
	 */
617
	rcu_read_unlock();
618
	return &smack_known_invalid;
619
}
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660

/*
 * Unless a process is running with one of these labels
 * even having CAP_MAC_OVERRIDE isn't enough to grant
 * privilege to violate MAC policy. If no labels are
 * designated (the empty list case) capabilities apply to
 * everyone.
 */
LIST_HEAD(smack_onlycap_list);
DEFINE_MUTEX(smack_onlycap_lock);

/*
 * Is the task privileged and allowed to be privileged
 * by the onlycap rule.
 *
 * Returns 1 if the task is allowed to be privileged, 0 if it's not.
 */
int smack_privileged(int cap)
{
	struct smack_known *skp = smk_of_current();
	struct smack_onlycap *sop;

	if (!capable(cap))
		return 0;

	rcu_read_lock();
	if (list_empty(&smack_onlycap_list)) {
		rcu_read_unlock();
		return 1;
	}

	list_for_each_entry_rcu(sop, &smack_onlycap_list, list) {
		if (sop->smk_label == skp) {
			rcu_read_unlock();
			return 1;
		}
	}
	rcu_read_unlock();

	return 0;
}