From: Tom de Vries <tdevries@suse.de>
To: Andrew Burgess <aburgess@redhat.com>, gdb-patches@sourceware.org
Cc: Benjamin Berg <benjamin@sipsolutions.net>
Subject: Re: [PATCHv3] gdb: linux-namespaces: enter user namespace when appropriate
Date: Wed, 25 Jun 2025 11:48:47 +0200 [thread overview]
Message-ID: <68c9f369-bd11-48dd-90c8-8c7a61771de7@suse.de> (raw)
In-Reply-To: <87qzzak1ct.fsf@redhat.com>
On 6/23/25 15:56, Andrew Burgess wrote:
> Andrew Burgess <aburgess@redhat.com> writes:
>
>> From: Benjamin Berg <benjamin@sipsolutions.net>
>>
>> In v2:
>>
>> - Update the test to ignore a warning seen when running the test on
>> a machine with libc debug information installed, but without the
>> libc source being available, e.g.:
>>
>> warning: 46 ../sysdeps/unix/sysv/linux/arm/libc-do-syscall.S: No such file or directory
>>
>> This was causing some CI failures to be reported from Linaro.
>>
>> - Rebased to current upstream/master.
>>
>> In v3:
>>
>> - Same as V2, but fix the test pattern correctly this time.
>>
>> --
>>
>> The use of user namespaces is required for normal users to use mount
>> namespaces. Consider trying this as an unprivileged user:
>>
>> $ unshare --mount /bin/true
>> unshare: unshare failed: Operation not permitted
>>
>> The problem here is that an unprivileged user doesn't have the
>> required permissions to create a new mount namespace. If, instead, we
>> do this:
>>
>> $ unshare --mount --map-root-user /bin/true
>>
>> then this will succeed. The new option causes unshare to create a
>> user namespace in which the unprivileged user is mapped to UID/GID 0,
>> and so gains all privileges (inside the namespace), the user is then
>> able to create the mount namespace as required.
>>
>> So, how does this relate to GDB?
>>
>> When a user attaches to a process running in a separate mount
>> namespace, GDB makes use of a separate helper process (see
>> linux_mntns_get_helper in nat/linux-namespaces.c), which will then use
>> the `setns` function to enter (or try to enter) the mount namespace of
>> the process GDB is attaching too. The helper process will then handle
>> file I/O requests received from GDB, and return the results back to
>> GDB, this allows GDB to access files within the mount namespace.
>>
>> The problem here is that, switching to a mount namespace requires that
>> a process hold CAP_SYS_CHROOT and CAP_SYS_ADMIN capabilities within
>> its user namespace (actually it's a little more complex, see 'man 2
>> setns'). Assuming GDB is running as an unprivileged user, then GDB
>> will not have the required permissions.
>>
>> However, if GDB enters the user namespace that the `unshare` process
>> created, then the current user will be mapped to UID/GID 0, and will
>> have the required permissions.
>>
>> And so, this patch extends linux_mntns_access_fs (in
>> nat/linux-namespace.c) to first try and switch to the user namespace
>> of the inferior before trying to switch to the mount namespace. If
>> the inferior does have a user namespace, and does have elevated
>> privileges within that namespace, then this first switch by GDB will
>> mean that the second step, into the mount namespace, will succeed.
>>
>> If there is no user namespace, or the inferior doesn't have elevated
>> privileges within the user namespace, then the switch into the mount
>> namespace will fail, just as it currently does, and the user will need
>> to give elevated privileges to GDB via some other mechanism (e.g. run
>> as root).
>>
>> This work was originally posted here:
>>
>> https://inbox.sourceware.org/gdb-patches/20230321120126.1418012-1-benjamin@sipsolutions.net
>>
>> I (Andrew Burgess) have made some cleanups to the code to comply with
>> GDB's coding standard, and the test is entirely mine. This commit
>> message is also entirely mine -- the original message was very terse
>> and required the reader to understand how the various namespaces
>> work and interact. The above is my attempt to document what I now
>> understand about the problem being fixed.
>>
>> I've left the original author in place as the core of the GDB change
>> itself is largely as originally presented, but any inaccuracies in the
>> commit message, or problems with the test, are all mine.
>>
>> Co-Authored-by: Andrew Burgess <aburgess@redhat.com>
>
> I've pushed this patch.
>
The new test-case fails on arm32 (Linaro CI reported this, and I was
able to reproduce) due to insufficient permissions:
...
(gdb) attach 184732
Attaching to process 184732
warning: process 184732 is a zombie - the process has already terminated
ptrace: Operation not permitted.
(gdb) FAIL: gdb.base/user-namespace-attach.exp: flags=--mount
--map-root-user: attach to inferior
...
In essence, the test-case assumes:
...
$ unshare --mount --map-root-user /bin/true; echo $?
0
...
but we get instead:
...
$ unshare --mount --map-root-user /bin/true; echo $?
unshare: unshare failed: Operation not permitted
1
...
Filed here ( https://sourceware.org/bugzilla/show_bug.cgi?id=33108 ).
Thanks,
- Tom
> The GDB changes have been on the list for a couple of years now, and
> (except for some comments and formating) are mostly unchanged in my
> version.
>
> My contributions to this work are the test and the commit message.
>
> Thanks,
> Andrew
>
next prev parent reply other threads:[~2025-06-25 9:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-10 16:57 [PATCH] " Andrew Burgess
2025-06-12 15:25 ` [PATCHv2] " Andrew Burgess
2025-06-13 9:17 ` [PATCHv3] " Andrew Burgess
2025-06-23 13:56 ` Andrew Burgess
2025-06-25 9:48 ` Tom de Vries [this message]
2025-06-25 10:34 ` Andrew Burgess
2025-06-25 11:01 ` Tom de Vries
2025-06-25 14:15 ` Andrew Burgess
2025-06-25 14:43 ` Tom de Vries
2025-06-26 12:40 ` Andrew Burgess
2025-06-25 14:43 ` Tom de Vries
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=68c9f369-bd11-48dd-90c8-8c7a61771de7@suse.de \
--to=tdevries@suse.de \
--cc=aburgess@redhat.com \
--cc=benjamin@sipsolutions.net \
--cc=gdb-patches@sourceware.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