public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
* [PATCH] isolation: keep CAP_SYS_PTRACE when required
@ 2023-06-23  8:25 Paul Holzinger
  2023-06-26  7:22 ` Stefano Brivio
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Holzinger @ 2023-06-23  8:25 UTC (permalink / raw)
  To: passt-dev; +Cc: Paul Holzinger

When pasta is started from an existing userns and tries to join the
netns from another process it fails to open /proc/$pid/ns/net due the
missing CAP_SYS_PTRACE capability in the --netns-only case.

A simple reproducer for this.
First create a userns:
$ unshare -r

Then create a new netns inside it and try to join that netns with pasta.
$ unshare -n sleep inf &
$ pasta --config-net --netns /proc/$!/ns/net

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
---
 isolation.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/isolation.c b/isolation.c
index 19932bf..1866724 100644
--- a/isolation.c
+++ b/isolation.c
@@ -202,9 +202,11 @@ void isolate_initial(void)
 	 * a mapping from UID 0, which only happens with pasta spawning a child
 	 * from a non-init user namespace (pasta can't run as root), we need to
 	 * retain CAP_SETFCAP too.
+	 * We also need to keep CAP_SYS_PTRACE in order to join an existing netns
+	 * path under /proc/$pid/ns/net which was created in the same userns.
 	 */
 	if (!ns_is_init() && !geteuid())
-		keep |= BIT(CAP_SETFCAP);
+		keep |= BIT(CAP_SETFCAP) | BIT(CAP_SYS_PTRACE);
 
 	drop_caps_ep_except(keep);
 }
-- 
@@ -202,9 +202,11 @@ void isolate_initial(void)
 	 * a mapping from UID 0, which only happens with pasta spawning a child
 	 * from a non-init user namespace (pasta can't run as root), we need to
 	 * retain CAP_SETFCAP too.
+	 * We also need to keep CAP_SYS_PTRACE in order to join an existing netns
+	 * path under /proc/$pid/ns/net which was created in the same userns.
 	 */
 	if (!ns_is_init() && !geteuid())
-		keep |= BIT(CAP_SETFCAP);
+		keep |= BIT(CAP_SETFCAP) | BIT(CAP_SYS_PTRACE);
 
 	drop_caps_ep_except(keep);
 }
-- 
2.41.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] isolation: keep CAP_SYS_PTRACE when required
  2023-06-23  8:25 [PATCH] isolation: keep CAP_SYS_PTRACE when required Paul Holzinger
@ 2023-06-26  7:22 ` Stefano Brivio
  0 siblings, 0 replies; 2+ messages in thread
From: Stefano Brivio @ 2023-06-26  7:22 UTC (permalink / raw)
  To: Paul Holzinger; +Cc: passt-dev

On Fri, 23 Jun 2023 10:25:32 +0200
Paul Holzinger <pholzing@redhat.com> wrote:

> When pasta is started from an existing userns and tries to join the
> netns from another process it fails to open /proc/$pid/ns/net due the
> missing CAP_SYS_PTRACE capability in the --netns-only case.
> 
> A simple reproducer for this.
> First create a userns:
> $ unshare -r
> 
> Then create a new netns inside it and try to join that netns with pasta.
> $ unshare -n sleep inf &
> $ pasta --config-net --netns /proc/$!/ns/net
> 
> Signed-off-by: Paul Holzinger <pholzing@redhat.com>

Applied.

-- 
Stefano


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-26  7:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-23  8:25 [PATCH] isolation: keep CAP_SYS_PTRACE when required Paul Holzinger
2023-06-26  7:22 ` Stefano Brivio

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

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 IMAP folder(s).