[PATCH 4/4] qemu_passt: Don't let passt fork off

Stefano Brivio sbrivio at redhat.com
Tue Feb 14 16:22:39 UTC 2023


On Tue, 14 Feb 2023 16:30:17 +0100
Michal Prívozník <mprivozn at redhat.com> wrote:

> On 2/14/23 14:02, Stefano Brivio wrote:
> > On Tue, 14 Feb 2023 12:51:22 +0100
> > Michal Privoznik <mprivozn at redhat.com> wrote:
> >   
> >> When passt starts it tries to do some security measures to
> >> restrict itself. For instance, it creates its own namespaces,
> >> umounts basically everything, drops capabilities, forks off to
> >> further restrict itself (the child is where all interesting work
> >> takes place now). This is sound, except it's causing two
> >> problems:
> >>
> >> 1) the PID file FD, which we leak into the passt process, gets
> >>    closed (and thus our virPidFile*() helpers see unlocked PID
> >>    file, which makes them think the process is gone),  
> > 
> > I didn't realise this was the case, but giving passt write (unless I'm
> > missing something) access to a file created by libvirtd doesn't look
> > desirable to me.  
> 
> That's not what's happening here. In fact, the opposite. We let libvirt
> create the file, lock and write it.

Okay, but the outcome is exactly what I'm saying. You're using advisory
locking, what prevents passt from writing (a lot of bytes) to it? I
just followed the path from open() to fcntl(), maybe I'm missing
something.

> Then the file's FD is leaked into
> passt process. This way, we can learn whether the PID file is still
> valid: if we just try to lock it and:
> 
> a) fail, then the file is still locked, i.e. passt is still running,
> b) succeed, then the file is no longer locket by passt, i.e. it's no
> longer running.
> 
> Thing is, passt doesn't even know about the FD (unless it starts closing
> FDs "randomly", e.g. via closefrom(3) or an alternative).

But it can also use it for write(2), as long as the attacker knows
(quite obvious information) that libvirt is starting passt. The number
of that file descriptor is deterministic, too.

> This is the
> reason we can't use passt's --pid, because it writes the PID file
> without any locking dance. Therefore, libvirt can't know whether the PID
> file is still valid. If it did just read the file and killed PID from
> there it might kill a random process that was unfortunate to be assigned
> the same PID.

I don't think that's enough, passt could pass a copy of that file
descriptor to another process (via e.g. SCM_RIGHTS), which then locks
it. It's enough to cover the unfortunate random process, but not
something done intentionally.

That's the reason why pidfd_open(2) and CLONE_PIDFD were introduced.

> BTW, there are two other issues with PID files in passt:
> 1) no locking means, that the file is very easily overwritten:
> 
>  $ passt --pid /tmp/passt.pid 2>/dev/null & \
>    passt --pid /tmp/passt.pid 2>/dev/null; \
>    pgrep passt ; cat /tmp/passt.pid
> [1] 21029
> [1]+  Done                    passt --pid /tmp/passt.pid 2> /dev/null
> 21034
> 21035
> 21035

It can be overwritten even with advisory locking, and mandatory locking
isn't implemented in recent kernels. I'm not aware of any way to
prevent this (and I wouldn't want to give the illusion that this is a
"secure" mechanism, either).

> 2) with --daemonize, only the PID of the parent process is written which
> is pretty much useless, as the parent quits shortly after clone().

No, that's the PID of the child (of course!), see passt's __daemon()
(util.c). It's written by the parent, sure, because the child doesn't
know its own "real" PID.

> Now, libvirt's virPidFile* machinery (src/util/virpidfile.c) ensures
> that case 1) won't happen (yes, we have internal APIs that read pid
> files unlocked, but those are not used from this code we're talking about).
> 
> And this patch tries to fix the case 2) by instructing passt to not
> clone(). If it means that it can't use PID namespace, then so be it.
> It's better to not let processes behind.

Even though 2) is nothing you need to fix, I'd still suggest to *not*
use that option *for this purpose*, because it's prone to races.

> >> 2) the PID file no longer reflects true PID of the process.
> >>
> >> Worse, the child calls setsid() so we can't even kill the whole
> >> process group. I mean, we can but it won't be any good.
> >>
> >> Fortunately, passt has '--foreground' argument, which causes it
> >> to undergo the same security measures but without forking off the
> >> child.  
> > 
> > They're not the same -- unfortunately they can't be, because, on Linux,
> > you can't change the PID of an existing process, so there's no way to
> > enter a new PID namespace without clone().
> > 
> > If passt remains in the same PID namespace, it's still able to see PIDs
> > of other processes, which is not desirable from a security perspective.  
> 
> I understand that, but it's already confined in plenty other ways. It's
> way worse to leave a process running than being able to see other PIDs.

Not if somebody manages to find a creative way to attack other
processes by arbitrary code execution in passt. In any case, there's no
need to leave any process running.

> > Again from a security perspective, this is probably a small impact, so
> > I guess it's fine if there's no other way around it. But I see a lot of
> > ways around it...
> 
> Is there?

Yes, see my email on the other thread, archived at:

  https://listman.redhat.com/archives/libvir-list/2023-February/237741.html

That is: just connect() and close() the socket if qemu doesn't do it.
That's not more or less reliable than expecting passt to do the right
thing when you give --foreground.

> If we have a helper process that fork()-s then the only way we
> can 'track' its PIDs (and kill them) is by placing them into a CGroup.
> Until we do that we have to trust helper processes to behave properly.
> But that's something I'd like to avoid.

By the way, you need in any case to rely on --one-off as qemu
terminates, because passt should run even without libvirtd running, as
long as the guest is connected (for details about this reasoning, see
https://bugzilla.redhat.com/show_bug.cgi?id=1597326).

-- 
Stefano


More information about the libvir-list mailing list