Cyrill Gorcunov wrote:
On Tue, Mar 27, 2018 at 06:10:09AM +0900, Tetsuo Handa wrote:Yes, we need exclusive lock when updating these fields.
On 2018/03/27 4:21, Cyrill Gorcunov wrote:True, but the key moment is that two/three/four system calls can
That said I think using read-lock here would be a bug.If I understand correctly, the caller can't set both fields atomically, for
prctl() does not receive both fields at one call.
prctl(PR_SET_MM, PR_SET_MM_ARG_START xor PR_SET_MM_ARG_END xor PR_SET_MM_ENV_START xor PR_SET_MM_ENV_END, new value, 0, 0);
run simultaneously. And while previously they are ordered by "write",
with read lock they are completely unordered and this is really
worries me.
To be fair I would prefer to drop this old per-fieldBut this is userspace visible API and thus we cannot change.
interface completely. This per-field interface was rather an ugly
solution from my side.
You are not missing my point. What I thought isThen, I wonder whether reading arg_start|end and env_start|end atomically makesTetsuo, let me re-read this code tomorrow, maybe I miss something obvious.
sense. Just retry reading if arg_start > env_end or env_start > env_end is fine?
+retry:
- down_read(&mm->mmap_sem);
arg_start = mm->arg_start;
arg_end = mm->arg_end;
env_start = mm->env_start;
env_end = mm->env_end;
- up_read(&mm->mmap_sem);
- BUG_ON(arg_start > arg_end);
- BUG_ON(env_start > env_end);
+ if (unlikely(arg_start > arg_end || env_start > env_end)) {
+ cond_resched();
+ goto retry;
+ }
for reading these fields.
By the way, /proc/pid/ readers are serving as a canary who tells something
mm_mmap related problem is happening. On the other hand, it is sad that
such canary cannot be terminated by signal due to use of unkillable waits.
I wish we can use killable waits.