diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-19 12:49:47 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-20 01:43:10 -0400 |
commit | 1b5d783c94c328d406e801566f161adcfb018dda (patch) | |
tree | e7d27b987e0670099af28db0d6bfcdac33236046 /fs/exec.c | |
parent | 78f32a9b479e9b9f1ce2bf620a7602c1cdbc4c8e (diff) |
consolidate BINPRM_FLAGS_ENFORCE_NONDUMP handling
new helper: would_dump(bprm, file). Checks if we are allowed to
read the file and if we are not - sets ENFORCE_NODUMP. Exported,
used in places that previously open-coded the same logics.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1105,6 +1105,13 @@ out: | |||
1105 | } | 1105 | } |
1106 | EXPORT_SYMBOL(flush_old_exec); | 1106 | EXPORT_SYMBOL(flush_old_exec); |
1107 | 1107 | ||
1108 | void would_dump(struct linux_binprm *bprm, struct file *file) | ||
1109 | { | ||
1110 | if (inode_permission(file->f_path.dentry->d_inode, MAY_READ) < 0) | ||
1111 | bprm->interp_flags |= BINPRM_FLAGS_ENFORCE_NONDUMP; | ||
1112 | } | ||
1113 | EXPORT_SYMBOL(would_dump); | ||
1114 | |||
1108 | void setup_new_exec(struct linux_binprm * bprm) | 1115 | void setup_new_exec(struct linux_binprm * bprm) |
1109 | { | 1116 | { |
1110 | int i, ch; | 1117 | int i, ch; |
@@ -1144,9 +1151,10 @@ void setup_new_exec(struct linux_binprm * bprm) | |||
1144 | if (bprm->cred->uid != current_euid() || | 1151 | if (bprm->cred->uid != current_euid() || |
1145 | bprm->cred->gid != current_egid()) { | 1152 | bprm->cred->gid != current_egid()) { |
1146 | current->pdeath_signal = 0; | 1153 | current->pdeath_signal = 0; |
1147 | } else if (file_permission(bprm->file, MAY_READ) || | 1154 | } else { |
1148 | bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) { | 1155 | would_dump(bprm, bprm->file); |
1149 | set_dumpable(current->mm, suid_dumpable); | 1156 | if (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) |
1157 | set_dumpable(current->mm, suid_dumpable); | ||
1150 | } | 1158 | } |
1151 | 1159 | ||
1152 | /* | 1160 | /* |