aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exec.c
diff options
context:
space:
mode:
authorKentaro Takeda <takedakn@nttdata.co.jp>2009-02-05 03:18:11 -0500
committerJames Morris <jmorris@namei.org>2009-02-11 23:15:03 -0500
commitf9ce1f1cda8b73a36f47e424975a9dfa78b7840c (patch)
tree66138b33dbf627f99f5ec67e0e39ce15ab830080 /fs/exec.c
parent523979adfa0b79d4e3aa053220c37a9233294206 (diff)
Add in_execve flag into task_struct.
This patch allows LSM modules to determine whether current process is in an execve operation or not so that they can behave differently while an execve operation is in progress. This patch is needed by TOMOYO. Please see another patch titled "LSM adapter functions." for backgrounds. Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r--fs/exec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/exec.c b/fs/exec.c
index febfd8ed6ad1..9881dc3bb488 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -1278,6 +1278,7 @@ int do_execve(char * filename,
1278 retval = mutex_lock_interruptible(&current->cred_exec_mutex); 1278 retval = mutex_lock_interruptible(&current->cred_exec_mutex);
1279 if (retval < 0) 1279 if (retval < 0)
1280 goto out_free; 1280 goto out_free;
1281 current->in_execve = 1;
1281 1282
1282 retval = -ENOMEM; 1283 retval = -ENOMEM;
1283 bprm->cred = prepare_exec_creds(); 1284 bprm->cred = prepare_exec_creds();
@@ -1331,6 +1332,7 @@ int do_execve(char * filename,
1331 goto out; 1332 goto out;
1332 1333
1333 /* execve succeeded */ 1334 /* execve succeeded */
1335 current->in_execve = 0;
1334 mutex_unlock(&current->cred_exec_mutex); 1336 mutex_unlock(&current->cred_exec_mutex);
1335 acct_update_integrals(current); 1337 acct_update_integrals(current);
1336 free_bprm(bprm); 1338 free_bprm(bprm);
@@ -1349,6 +1351,7 @@ out_file:
1349 } 1351 }
1350 1352
1351out_unlock: 1353out_unlock:
1354 current->in_execve = 0;
1352 mutex_unlock(&current->cred_exec_mutex); 1355 mutex_unlock(&current->cred_exec_mutex);
1353 1356
1354out_free: 1357out_free: