diff options
| author | David S. Miller <davem@davemloft.net> | 2009-06-15 06:02:23 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2009-06-15 06:02:23 -0400 |
| commit | 9cbc1cb8cd46ce1f7645b9de249b2ce8460129bb (patch) | |
| tree | 8d104ec2a459346b99413b0b77421ca7b9936c1a /security/selinux/hooks.c | |
| parent | ca44d6e60f9de26281fda203f58b570e1748c015 (diff) | |
| parent | 45e3e1935e2857c54783291107d33323b3ef33c8 (diff) | |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
Documentation/feature-removal-schedule.txt
drivers/scsi/fcoe/fcoe.c
net/core/drop_monitor.c
net/core/net-traces.c
Diffstat (limited to 'security/selinux/hooks.c')
| -rw-r--r-- | security/selinux/hooks.c | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 4bfc6153ad4f..15c2a08a66f1 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
| @@ -1980,10 +1980,6 @@ static int selinux_sysctl(ctl_table *table, int op) | |||
| 1980 | u32 tsid, sid; | 1980 | u32 tsid, sid; |
| 1981 | int rc; | 1981 | int rc; |
| 1982 | 1982 | ||
| 1983 | rc = secondary_ops->sysctl(table, op); | ||
| 1984 | if (rc) | ||
| 1985 | return rc; | ||
| 1986 | |||
| 1987 | sid = current_sid(); | 1983 | sid = current_sid(); |
| 1988 | 1984 | ||
| 1989 | rc = selinux_sysctl_get_sid(table, (op == 0001) ? | 1985 | rc = selinux_sysctl_get_sid(table, (op == 0001) ? |
| @@ -2375,10 +2371,8 @@ static void selinux_bprm_committed_creds(struct linux_binprm *bprm) | |||
| 2375 | { | 2371 | { |
| 2376 | const struct task_security_struct *tsec = current_security(); | 2372 | const struct task_security_struct *tsec = current_security(); |
| 2377 | struct itimerval itimer; | 2373 | struct itimerval itimer; |
| 2378 | struct sighand_struct *psig; | ||
| 2379 | u32 osid, sid; | 2374 | u32 osid, sid; |
| 2380 | int rc, i; | 2375 | int rc, i; |
| 2381 | unsigned long flags; | ||
| 2382 | 2376 | ||
| 2383 | osid = tsec->osid; | 2377 | osid = tsec->osid; |
| 2384 | sid = tsec->sid; | 2378 | sid = tsec->sid; |
| @@ -2398,22 +2392,20 @@ static void selinux_bprm_committed_creds(struct linux_binprm *bprm) | |||
| 2398 | memset(&itimer, 0, sizeof itimer); | 2392 | memset(&itimer, 0, sizeof itimer); |
| 2399 | for (i = 0; i < 3; i++) | 2393 | for (i = 0; i < 3; i++) |
| 2400 | do_setitimer(i, &itimer, NULL); | 2394 | do_setitimer(i, &itimer, NULL); |
| 2401 | flush_signals(current); | ||
| 2402 | spin_lock_irq(¤t->sighand->siglock); | 2395 | spin_lock_irq(¤t->sighand->siglock); |
| 2403 | flush_signal_handlers(current, 1); | 2396 | if (!(current->signal->flags & SIGNAL_GROUP_EXIT)) { |
| 2404 | sigemptyset(¤t->blocked); | 2397 | __flush_signals(current); |
| 2405 | recalc_sigpending(); | 2398 | flush_signal_handlers(current, 1); |
| 2399 | sigemptyset(¤t->blocked); | ||
| 2400 | } | ||
| 2406 | spin_unlock_irq(¤t->sighand->siglock); | 2401 | spin_unlock_irq(¤t->sighand->siglock); |
| 2407 | } | 2402 | } |
| 2408 | 2403 | ||
| 2409 | /* Wake up the parent if it is waiting so that it can recheck | 2404 | /* Wake up the parent if it is waiting so that it can recheck |
| 2410 | * wait permission to the new task SID. */ | 2405 | * wait permission to the new task SID. */ |
| 2411 | read_lock_irq(&tasklist_lock); | 2406 | read_lock(&tasklist_lock); |
| 2412 | psig = current->parent->sighand; | 2407 | wake_up_interruptible(¤t->real_parent->signal->wait_chldexit); |
| 2413 | spin_lock_irqsave(&psig->siglock, flags); | 2408 | read_unlock(&tasklist_lock); |
| 2414 | wake_up_interruptible(¤t->parent->signal->wait_chldexit); | ||
| 2415 | spin_unlock_irqrestore(&psig->siglock, flags); | ||
| 2416 | read_unlock_irq(&tasklist_lock); | ||
| 2417 | } | 2409 | } |
| 2418 | 2410 | ||
| 2419 | /* superblock security operations */ | 2411 | /* superblock security operations */ |
