From: Oscar Salvador <osalvador@suse.de>
To: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-api@vger.kernel.org
Cc: hughd@google.com, viro@zeniv.linux.org.uk, torvalds@linux-foundation.org
Subject: mremap vs sysctl_max_map_count
Date: Mon, 18 Feb 2019 09:33:31 +0100 [thread overview]
Message-ID: <20190218083326.xsnx7cx2lxurbmux@d104.suse.de> (raw)
Hi all,
I would like to bring up a topic that comes from an issue a customer of ours
is facing with the mremap syscall + hitting the max_map_count threshold:
When passing the MREMAP_FIXED flag, mremap() calls mremap_to() which does the
following:
1) it unmaps the region where we want to put the new map:
(new_addr, new_addr + new_len] [1]
2) IFF old_len > new_len, it unmaps the region:
(old_addr + new_len, (old_addr + new_len) + (old_len - new_len)] [2]
Now, having gone through steps 1) and 2), we eventually call move_vma() to do
the actual move.
move_vma() checks if we are at least 4 maps below max_map_count, otherwise
it bails out with -ENOMEM [3].
The problem is that we might have already unmapped the vma's in steps 1) and 2),
so it is not possible for userspace to figure out the state of the vma's after
it gets -ENOMEM.
- Did new_addr got unmaped?
- Did part of the old_addr got unmaped?
Because of that, it gets tricky for userspace to clean up properly on error
path.
While it is true that we can return -ENOMEM for more reasons
(e.g: see vma_to_resize()->may_expand_vm()), I think that we might be able to
pre-compute the number of maps that we are going add/release during the first
two do_munmaps(), and check whether we are 4 maps below the threshold
(as move_vma() does).
Should not be the case, we can bail out early before we unmap anything, so we
make sure the vma's are left untouched in case we are going to be short of maps.
I am not sure if that is realistically doable, or there are limitations
I overlooked, or we simply do not want to do that.
Before investing more time and giving it a shoot, I just wanted to bring
this upstream to get feedback on this matter.
Thanks
[1] https://github.com/torvalds/linux/blob/master/mm/mremap.c#L519
[2] https://github.com/torvalds/linux/blob/master/mm/mremap.c#L523
[3] https://github.com/torvalds/linux/blob/master/mm/mremap.c#L338
--
Oscar Salvador
SUSE L3
next reply other threads:[~2019-02-18 8:33 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-18 8:33 Oscar Salvador [this message]
2019-02-18 9:57 ` Vlastimil Babka
2019-02-18 10:29 ` Mike Rapoport
2019-02-18 11:15 ` Kirill A. Shutemov
2019-02-19 15:53 ` Oscar Salvador
2019-02-20 10:30 ` Vlastimil Babka
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=20190218083326.xsnx7cx2lxurbmux@d104.suse.de \
--to=osalvador@suse.de \
--cc=hughd@google.com \
--cc=linux-api@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=torvalds@linux-foundation.org \
--cc=viro@zeniv.linux.org.uk \
/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