]> git.ipfire.org Git - thirdparty/systemd.git/commit
basic/unit-name: do not use strdupa() on a path v239-41.3
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 23 Jun 2021 09:46:41 +0000 (11:46 +0200)
committerJan Macku <jamacku@redhat.com>
Wed, 28 Jul 2021 11:57:56 +0000 (13:57 +0200)
commit0cec8d8d799aa52d7614ed01d8d752a265b8b725
treeb8be7ab6223cf9471ca82bc494b17a99866f0a90
parentbf1b76b47629a7f0eacce4f26d01f3eea46e7bd6
basic/unit-name: do not use strdupa() on a path

The path may have unbounded length, for example through a fuse mount.

CVE-2021-33910: attacked controlled alloca() leads to crash in systemd and
ultimately a kernel panic. Systemd parses the content of /proc/self/mountinfo
and each mountpoint is passed to mount_setup_unit(), which calls
unit_name_path_escape() underneath. A local attacker who is able to mount a
filesystem with a very long path can crash systemd and the whole system.

https://bugzilla.redhat.com/show_bug.cgi?id=1970887

The resulting string length is bounded by UNIT_NAME_MAX, which is 256. But we
can't easily check the length after simplification before doing the
simplification, which in turns uses a copy of the string we can write to.
So we can't reject paths that are too long before doing the duplication.
Hence the most obvious solution is to switch back to strdup(), as before
7410616cd9dbbec97cf98d75324da5cda2b2f7a2.

Resolves: #1974698

(cherry picked from commit 441e0115646d54f080e5c3bb0ba477c892861ab9)
src/basic/unit-name.c