aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/base.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/base.c')
-rw-r--r--fs/proc/base.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c
index f179568b4c76..b6ccb6c57706 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -2535,6 +2535,11 @@ static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2535 rcu_read_unlock(); 2535 rcu_read_unlock();
2536 return -EACCES; 2536 return -EACCES;
2537 } 2537 }
2538 /* Prevent changes to overridden credentials. */
2539 if (current_cred() != current_real_cred()) {
2540 rcu_read_unlock();
2541 return -EBUSY;
2542 }
2538 rcu_read_unlock(); 2543 rcu_read_unlock();
2539 2544
2540 if (count > PAGE_SIZE) 2545 if (count > PAGE_SIZE)