mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
proc: enable writing to /proc/pid/mem
With recent changes there is no longer a security hazard with writing to /proc/pid/mem. Remove the #ifdef. Signed-off-by: Stephen Wilson <wilsons@start.ca> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
8b0db9db19
commit
198214a7ee
@ -854,10 +854,6 @@ out_no_task:
|
||||
return ret;
|
||||
}
|
||||
|
||||
#define mem_write NULL
|
||||
|
||||
#ifndef mem_write
|
||||
/* This is a security hazard */
|
||||
static ssize_t mem_write(struct file * file, const char __user *buf,
|
||||
size_t count, loff_t *ppos)
|
||||
{
|
||||
@ -914,7 +910,6 @@ out_task:
|
||||
out_no_task:
|
||||
return copied;
|
||||
}
|
||||
#endif
|
||||
|
||||
loff_t mem_lseek(struct file *file, loff_t offset, int orig)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user