diff options
| -rw-r--r-- | security/selinux/avc.c | 36 | ||||
| -rw-r--r-- | security/selinux/hooks.c | 26 | ||||
| -rw-r--r-- | security/selinux/include/avc.h | 18 |
3 files changed, 55 insertions, 25 deletions
diff --git a/security/selinux/avc.c b/security/selinux/avc.c index 9da6420e2056..1d027e29ce8d 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c | |||
| @@ -471,6 +471,7 @@ static void avc_audit_post_callback(struct audit_buffer *ab, void *a) | |||
| 471 | * @avd: access vector decisions | 471 | * @avd: access vector decisions |
| 472 | * @result: result from avc_has_perm_noaudit | 472 | * @result: result from avc_has_perm_noaudit |
| 473 | * @a: auxiliary audit data | 473 | * @a: auxiliary audit data |
| 474 | * @flags: VFS walk flags | ||
| 474 | * | 475 | * |
| 475 | * Audit the granting or denial of permissions in accordance | 476 | * Audit the granting or denial of permissions in accordance |
| 476 | * with the policy. This function is typically called by | 477 | * with the policy. This function is typically called by |
| @@ -481,9 +482,10 @@ static void avc_audit_post_callback(struct audit_buffer *ab, void *a) | |||
| 481 | * be performed under a lock, to allow the lock to be released | 482 | * be performed under a lock, to allow the lock to be released |
| 482 | * before calling the auditing code. | 483 | * before calling the auditing code. |
| 483 | */ | 484 | */ |
| 484 | void avc_audit(u32 ssid, u32 tsid, | 485 | int avc_audit(u32 ssid, u32 tsid, |
| 485 | u16 tclass, u32 requested, | 486 | u16 tclass, u32 requested, |
| 486 | struct av_decision *avd, int result, struct common_audit_data *a) | 487 | struct av_decision *avd, int result, struct common_audit_data *a, |
| 488 | unsigned flags) | ||
| 487 | { | 489 | { |
| 488 | struct common_audit_data stack_data; | 490 | struct common_audit_data stack_data; |
| 489 | u32 denied, audited; | 491 | u32 denied, audited; |
| @@ -515,11 +517,24 @@ void avc_audit(u32 ssid, u32 tsid, | |||
| 515 | else | 517 | else |
| 516 | audited = requested & avd->auditallow; | 518 | audited = requested & avd->auditallow; |
| 517 | if (!audited) | 519 | if (!audited) |
| 518 | return; | 520 | return 0; |
| 521 | |||
| 519 | if (!a) { | 522 | if (!a) { |
| 520 | a = &stack_data; | 523 | a = &stack_data; |
| 521 | COMMON_AUDIT_DATA_INIT(a, NONE); | 524 | COMMON_AUDIT_DATA_INIT(a, NONE); |
| 522 | } | 525 | } |
| 526 | |||
| 527 | /* | ||
| 528 | * When in a RCU walk do the audit on the RCU retry. This is because | ||
| 529 | * the collection of the dname in an inode audit message is not RCU | ||
| 530 | * safe. Note this may drop some audits when the situation changes | ||
| 531 | * during retry. However this is logically just as if the operation | ||
| 532 | * happened a little later. | ||
| 533 | */ | ||
| 534 | if ((a->type == LSM_AUDIT_DATA_FS) && | ||
| 535 | (flags & IPERM_FLAG_RCU)) | ||
| 536 | return -ECHILD; | ||
| 537 | |||
| 523 | a->selinux_audit_data.tclass = tclass; | 538 | a->selinux_audit_data.tclass = tclass; |
| 524 | a->selinux_audit_data.requested = requested; | 539 | a->selinux_audit_data.requested = requested; |
| 525 | a->selinux_audit_data.ssid = ssid; | 540 | a->selinux_audit_data.ssid = ssid; |
| @@ -529,6 +544,7 @@ void avc_audit(u32 ssid, u32 tsid, | |||
| 529 | a->lsm_pre_audit = avc_audit_pre_callback; | 544 | a->lsm_pre_audit = avc_audit_pre_callback; |
| 530 | a->lsm_post_audit = avc_audit_post_callback; | 545 | a->lsm_post_audit = avc_audit_post_callback; |
| 531 | common_lsm_audit(a); | 546 | common_lsm_audit(a); |
| 547 | return 0; | ||
| 532 | } | 548 | } |
| 533 | 549 | ||
| 534 | /** | 550 | /** |
| @@ -793,6 +809,7 @@ int avc_has_perm_noaudit(u32 ssid, u32 tsid, | |||
| 793 | * @tclass: target security class | 809 | * @tclass: target security class |
| 794 | * @requested: requested permissions, interpreted based on @tclass | 810 | * @requested: requested permissions, interpreted based on @tclass |
| 795 | * @auditdata: auxiliary audit data | 811 | * @auditdata: auxiliary audit data |
| 812 | * @flags: VFS walk flags | ||
| 796 | * | 813 | * |
| 797 | * Check the AVC to determine whether the @requested permissions are granted | 814 | * Check the AVC to determine whether the @requested permissions are granted |
| 798 | * for the SID pair (@ssid, @tsid), interpreting the permissions | 815 | * for the SID pair (@ssid, @tsid), interpreting the permissions |
| @@ -802,14 +819,19 @@ int avc_has_perm_noaudit(u32 ssid, u32 tsid, | |||
| 802 | * permissions are granted, -%EACCES if any permissions are denied, or | 819 | * permissions are granted, -%EACCES if any permissions are denied, or |
| 803 | * another -errno upon other errors. | 820 | * another -errno upon other errors. |
| 804 | */ | 821 | */ |
| 805 | int avc_has_perm(u32 ssid, u32 tsid, u16 tclass, | 822 | int avc_has_perm_flags(u32 ssid, u32 tsid, u16 tclass, |
| 806 | u32 requested, struct common_audit_data *auditdata) | 823 | u32 requested, struct common_audit_data *auditdata, |
| 824 | unsigned flags) | ||
| 807 | { | 825 | { |
| 808 | struct av_decision avd; | 826 | struct av_decision avd; |
| 809 | int rc; | 827 | int rc, rc2; |
| 810 | 828 | ||
| 811 | rc = avc_has_perm_noaudit(ssid, tsid, tclass, requested, 0, &avd); | 829 | rc = avc_has_perm_noaudit(ssid, tsid, tclass, requested, 0, &avd); |
| 812 | avc_audit(ssid, tsid, tclass, requested, &avd, rc, auditdata); | 830 | |
| 831 | rc2 = avc_audit(ssid, tsid, tclass, requested, &avd, rc, auditdata, | ||
| 832 | flags); | ||
| 833 | if (rc2) | ||
| 834 | return rc2; | ||
| 813 | return rc; | 835 | return rc; |
| 814 | } | 836 | } |
| 815 | 837 | ||
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index a73f4e463774..f7cf0ea6faea 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
| @@ -1446,8 +1446,11 @@ static int task_has_capability(struct task_struct *tsk, | |||
| 1446 | } | 1446 | } |
| 1447 | 1447 | ||
| 1448 | rc = avc_has_perm_noaudit(sid, sid, sclass, av, 0, &avd); | 1448 | rc = avc_has_perm_noaudit(sid, sid, sclass, av, 0, &avd); |
| 1449 | if (audit == SECURITY_CAP_AUDIT) | 1449 | if (audit == SECURITY_CAP_AUDIT) { |
| 1450 | avc_audit(sid, sid, sclass, av, &avd, rc, &ad); | 1450 | int rc2 = avc_audit(sid, sid, sclass, av, &avd, rc, &ad, 0); |
| 1451 | if (rc2) | ||
| 1452 | return rc2; | ||
| 1453 | } | ||
| 1451 | return rc; | 1454 | return rc; |
| 1452 | } | 1455 | } |
| 1453 | 1456 | ||
| @@ -1467,7 +1470,8 @@ static int task_has_system(struct task_struct *tsk, | |||
| 1467 | static int inode_has_perm(const struct cred *cred, | 1470 | static int inode_has_perm(const struct cred *cred, |
| 1468 | struct inode *inode, | 1471 | struct inode *inode, |
| 1469 | u32 perms, | 1472 | u32 perms, |
| 1470 | struct common_audit_data *adp) | 1473 | struct common_audit_data *adp, |
| 1474 | unsigned flags) | ||
| 1471 | { | 1475 | { |
| 1472 | struct inode_security_struct *isec; | 1476 | struct inode_security_struct *isec; |
| 1473 | struct common_audit_data ad; | 1477 | struct common_audit_data ad; |
| @@ -1487,7 +1491,7 @@ static int inode_has_perm(const struct cred *cred, | |||
| 1487 | ad.u.fs.inode = inode; | 1491 | ad.u.fs.inode = inode; |
| 1488 | } | 1492 | } |
| 1489 | 1493 | ||
| 1490 | return avc_has_perm(sid, isec->sid, isec->sclass, perms, adp); | 1494 | return avc_has_perm_flags(sid, isec->sid, isec->sclass, perms, adp, flags); |
| 1491 | } | 1495 | } |
| 1492 | 1496 | ||
| 1493 | /* Same as inode_has_perm, but pass explicit audit data containing | 1497 | /* Same as inode_has_perm, but pass explicit audit data containing |
| @@ -1504,7 +1508,7 @@ static inline int dentry_has_perm(const struct cred *cred, | |||
| 1504 | COMMON_AUDIT_DATA_INIT(&ad, FS); | 1508 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
| 1505 | ad.u.fs.path.mnt = mnt; | 1509 | ad.u.fs.path.mnt = mnt; |
| 1506 | ad.u.fs.path.dentry = dentry; | 1510 | ad.u.fs.path.dentry = dentry; |
| 1507 | return inode_has_perm(cred, inode, av, &ad); | 1511 | return inode_has_perm(cred, inode, av, &ad, 0); |
| 1508 | } | 1512 | } |
| 1509 | 1513 | ||
| 1510 | /* Check whether a task can use an open file descriptor to | 1514 | /* Check whether a task can use an open file descriptor to |
| @@ -1540,7 +1544,7 @@ static int file_has_perm(const struct cred *cred, | |||
| 1540 | /* av is zero if only checking access to the descriptor. */ | 1544 | /* av is zero if only checking access to the descriptor. */ |
| 1541 | rc = 0; | 1545 | rc = 0; |
| 1542 | if (av) | 1546 | if (av) |
| 1543 | rc = inode_has_perm(cred, inode, av, &ad); | 1547 | rc = inode_has_perm(cred, inode, av, &ad, 0); |
| 1544 | 1548 | ||
| 1545 | out: | 1549 | out: |
| 1546 | return rc; | 1550 | return rc; |
| @@ -2103,7 +2107,7 @@ static inline void flush_unauthorized_files(const struct cred *cred, | |||
| 2103 | file = file_priv->file; | 2107 | file = file_priv->file; |
| 2104 | inode = file->f_path.dentry->d_inode; | 2108 | inode = file->f_path.dentry->d_inode; |
| 2105 | if (inode_has_perm(cred, inode, | 2109 | if (inode_has_perm(cred, inode, |
| 2106 | FILE__READ | FILE__WRITE, NULL)) { | 2110 | FILE__READ | FILE__WRITE, NULL, 0)) { |
| 2107 | drop_tty = 1; | 2111 | drop_tty = 1; |
| 2108 | } | 2112 | } |
| 2109 | } | 2113 | } |
| @@ -2649,10 +2653,6 @@ static int selinux_inode_permission(struct inode *inode, int mask, unsigned flag | |||
| 2649 | if (!mask) | 2653 | if (!mask) |
| 2650 | return 0; | 2654 | return 0; |
| 2651 | 2655 | ||
| 2652 | /* May be droppable after audit */ | ||
| 2653 | if (flags & IPERM_FLAG_RCU) | ||
| 2654 | return -ECHILD; | ||
| 2655 | |||
| 2656 | COMMON_AUDIT_DATA_INIT(&ad, FS); | 2656 | COMMON_AUDIT_DATA_INIT(&ad, FS); |
| 2657 | ad.u.fs.inode = inode; | 2657 | ad.u.fs.inode = inode; |
| 2658 | 2658 | ||
| @@ -2661,7 +2661,7 @@ static int selinux_inode_permission(struct inode *inode, int mask, unsigned flag | |||
| 2661 | 2661 | ||
| 2662 | perms = file_mask_to_av(inode->i_mode, mask); | 2662 | perms = file_mask_to_av(inode->i_mode, mask); |
| 2663 | 2663 | ||
| 2664 | return inode_has_perm(cred, inode, perms, &ad); | 2664 | return inode_has_perm(cred, inode, perms, &ad, flags); |
| 2665 | } | 2665 | } |
| 2666 | 2666 | ||
| 2667 | static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr) | 2667 | static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr) |
| @@ -3209,7 +3209,7 @@ static int selinux_dentry_open(struct file *file, const struct cred *cred) | |||
| 3209 | * new inode label or new policy. | 3209 | * new inode label or new policy. |
| 3210 | * This check is not redundant - do not remove. | 3210 | * This check is not redundant - do not remove. |
| 3211 | */ | 3211 | */ |
| 3212 | return inode_has_perm(cred, inode, open_file_to_av(file), NULL); | 3212 | return inode_has_perm(cred, inode, open_file_to_av(file), NULL, 0); |
| 3213 | } | 3213 | } |
| 3214 | 3214 | ||
| 3215 | /* task security operations */ | 3215 | /* task security operations */ |
diff --git a/security/selinux/include/avc.h b/security/selinux/include/avc.h index 5615081b73ec..e77b2ac2908b 100644 --- a/security/selinux/include/avc.h +++ b/security/selinux/include/avc.h | |||
| @@ -54,11 +54,11 @@ struct avc_cache_stats { | |||
| 54 | 54 | ||
| 55 | void __init avc_init(void); | 55 | void __init avc_init(void); |
| 56 | 56 | ||
| 57 | void avc_audit(u32 ssid, u32 tsid, | 57 | int avc_audit(u32 ssid, u32 tsid, |
| 58 | u16 tclass, u32 requested, | 58 | u16 tclass, u32 requested, |
| 59 | struct av_decision *avd, | 59 | struct av_decision *avd, |
| 60 | int result, | 60 | int result, |
| 61 | struct common_audit_data *a); | 61 | struct common_audit_data *a, unsigned flags); |
| 62 | 62 | ||
| 63 | #define AVC_STRICT 1 /* Ignore permissive mode. */ | 63 | #define AVC_STRICT 1 /* Ignore permissive mode. */ |
| 64 | int avc_has_perm_noaudit(u32 ssid, u32 tsid, | 64 | int avc_has_perm_noaudit(u32 ssid, u32 tsid, |
| @@ -66,9 +66,17 @@ int avc_has_perm_noaudit(u32 ssid, u32 tsid, | |||
| 66 | unsigned flags, | 66 | unsigned flags, |
| 67 | struct av_decision *avd); | 67 | struct av_decision *avd); |
| 68 | 68 | ||
| 69 | int avc_has_perm(u32 ssid, u32 tsid, | 69 | int avc_has_perm_flags(u32 ssid, u32 tsid, |
| 70 | u16 tclass, u32 requested, | 70 | u16 tclass, u32 requested, |
| 71 | struct common_audit_data *auditdata); | 71 | struct common_audit_data *auditdata, |
| 72 | unsigned); | ||
| 73 | |||
| 74 | static inline int avc_has_perm(u32 ssid, u32 tsid, | ||
| 75 | u16 tclass, u32 requested, | ||
| 76 | struct common_audit_data *auditdata) | ||
| 77 | { | ||
| 78 | return avc_has_perm_flags(ssid, tsid, tclass, requested, auditdata, 0); | ||
| 79 | } | ||
| 72 | 80 | ||
| 73 | u32 avc_policy_seqno(void); | 81 | u32 avc_policy_seqno(void); |
| 74 | 82 | ||
