Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137580
b: refs/heads/master
c: e426b64
h: refs/heads/master
v: v3
  • Loading branch information
Hugh Dickins authored and Linus Torvalds committed Mar 29, 2009
1 parent 75d810d commit 67fef68
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 53e9309e01277ec99c38e84e0ca16921287cf470
refs/heads/master: e426b64c412aaa3e9eb3e4b261dc5be0d5a83e78
2 changes: 1 addition & 1 deletion trunk/fs/compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -1441,7 +1441,7 @@ int compat_do_execve(char * filename,
bprm->cred = prepare_exec_creds();
if (!bprm->cred)
goto out_unlock;
check_unsafe_exec(bprm, current->files);
check_unsafe_exec(bprm);

file = open_exec(filename);
retval = PTR_ERR(file);
Expand Down
10 changes: 3 additions & 7 deletions trunk/fs/exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1056,28 +1056,24 @@ EXPORT_SYMBOL(install_exec_creds);
* - the caller must hold current->cred_exec_mutex to protect against
* PTRACE_ATTACH
*/
void check_unsafe_exec(struct linux_binprm *bprm, struct files_struct *files)
void check_unsafe_exec(struct linux_binprm *bprm)
{
struct task_struct *p = current, *t;
unsigned long flags;
unsigned n_fs, n_files, n_sighand;
unsigned n_fs, n_sighand;

bprm->unsafe = tracehook_unsafe_exec(p);

n_fs = 1;
n_files = 1;
n_sighand = 1;
lock_task_sighand(p, &flags);
for (t = next_thread(p); t != p; t = next_thread(t)) {
if (t->fs == p->fs)
n_fs++;
if (t->files == files)
n_files++;
n_sighand++;
}

if (atomic_read(&p->fs->count) > n_fs ||
atomic_read(&p->files->count) > n_files ||
atomic_read(&p->sighand->count) > n_sighand)
bprm->unsafe |= LSM_UNSAFE_SHARE;

Expand Down Expand Up @@ -1300,7 +1296,7 @@ int do_execve(char * filename,
bprm->cred = prepare_exec_creds();
if (!bprm->cred)
goto out_unlock;
check_unsafe_exec(bprm, displaced);
check_unsafe_exec(bprm);

file = open_exec(filename);
retval = PTR_ERR(file);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ extern void __init chrdev_init(void);
/*
* exec.c
*/
extern void check_unsafe_exec(struct linux_binprm *, struct files_struct *);
extern void check_unsafe_exec(struct linux_binprm *);

/*
* namespace.c
Expand Down

0 comments on commit 67fef68

Please sign in to comment.