From: Yang Shi <yang.shi@linux.alibaba.com>
To: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: Matthew Wilcox <willy@infradead.org>,
adobriyan@gmail.com, mhocko@kernel.org, mguzik@redhat.com,
akpm@linux-foundation.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [v2 PATCH] mm: introduce arg_lock to protect arg_start|end and env_start|end in mm_struct
Date: Tue, 27 Mar 2018 14:44:09 -0400 [thread overview]
Message-ID: <73559b36-b55b-429a-285f-c05b45129b51@linux.alibaba.com> (raw)
In-Reply-To: <20180327073212.GG2236@uranus>
On 3/27/18 3:32 AM, Cyrill Gorcunov wrote:
> On Mon, Mar 26, 2018 at 05:59:49PM -0400, Yang Shi wrote:
>>> Say we've two syscalls running prctl_set_mm_map in parallel, and imagine
>>> one have @start_brk = 20 @brk = 10 and second caller has @start_brk = 30
>>> and @brk = 20. Since now the call is guarded by _read_ the both calls
>>> unlocked and due to OO engine it may happen then when both finish
>>> we have @start_brk = 30 and @brk = 10. In turn "write" semaphore
>>> has been take to have consistent data on exit, either you have [20;10]
>>> or [30;20] assigned not something mixed.
>>>
>>> That said I think using read-lock here would be a bug.
>> Yes it sounds so. However, it was down_read before
>> ddf1d398e517e660207e2c807f76a90df543a217 ("prctl: take mmap sem for writing
>> to protect against others"). And, that commit is for fixing the concurrent
>> writing to arg_* and env_*. I just checked that commit, but omitted the brk
>> part. The potential issue mentioned by you should exist before that commit,
>> but might be just not discovered or very rare to hit.
>>
>> I will change it back to down_write.
> down_read before was a bug ;) And it was not discovered earlier simply
> because not that many users of this interface exist, namely only criu
> as far as I know by now.
Thanks for confirming this. I assumed so :-)
next prev parent reply other threads:[~2018-03-27 18:44 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-26 18:20 [v2 PATCH] mm: introduce arg_lock to protect arg_start|end and env_start|end in mm_struct Yang Shi
2018-03-26 18:37 ` Matthew Wilcox
2018-03-26 19:21 ` Cyrill Gorcunov
2018-03-26 21:10 ` Tetsuo Handa
2018-03-26 21:20 ` Yang Shi
2018-03-26 21:29 ` Cyrill Gorcunov
2018-03-26 22:00 ` Tetsuo Handa
2018-03-26 22:12 ` Yang Shi
2018-03-27 7:38 ` Cyrill Gorcunov
2018-03-27 7:37 ` Cyrill Gorcunov
2018-03-26 21:59 ` Yang Shi
2018-03-27 7:32 ` Cyrill Gorcunov
2018-03-27 18:44 ` Yang Shi [this message]
2018-03-26 19:42 ` Mateusz Guzik
2018-03-26 21:10 ` Yang Shi
2018-03-27 6:29 ` Michal Hocko
2018-03-27 14:31 ` Mateusz Guzik
2018-03-27 14:43 ` Michal Hocko
2018-03-27 18:38 ` Yang Shi
2018-03-27 18:52 ` Cyrill Gorcunov
2018-03-28 13:10 ` Michal Hocko
2018-04-02 1:58 ` Yang Shi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=73559b36-b55b-429a-285f-c05b45129b51@linux.alibaba.com \
--to=yang.shi@linux.alibaba.com \
--cc=adobriyan@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=gorcunov@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mguzik@redhat.com \
--cc=mhocko@kernel.org \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).