CVE-2022-41973: High severity opensvc multipath-tools vulnerability
A vulnerability was found in the device-mapper-multipath. The device-mapper-multipath allows local users to obtain root access, in conjunction with CVE-2022-41974. Local users that are able to access /dev/shm can change symlinks in multipathd due to incorrect symlink handling, which may lead to controlled file writes outside of the /dev/shm directory. This could be used indirectly for local privilege escalation to root.
Other sources
multipath-tools 0.7.7 through 0.9.x before 0.9.2 allows local users to obtain root access, as exploited in conjunction with CVE-2022-41974. Local users able to access /dev/shm can change symlinks in multipathd due to incorrect symlink handling, which could lead to controlled file writes outside of the /dev/shm directory. This could be used indirectly for local privilege escalation to root.
Qualys Security Advisory https://www.qualys.com/2022/10/24/leeloo-multipath/leeloo-multipath.txt https://www.openwall.com/lists/oss-security/2022/10/24/2
Authorization bypass and symlink attack in multipathd (CVE-2022-AUTHZ and CVE-2022-SLINK)
======================================================================== Contents ========================================================================
Summary CVE-2022-AUTHZ: Authorization bypass CVE-2022-SLINK: Symlink attack Acknowledgments Timeline
======================================================================== Summary ========================================================================
We discovered two local vulnerabilities (an authorization bypass and a symlink attack) in multipathd, a daemon that is running as root in the default installation of (for example) Ubuntu Server:
https://ubuntu.com/server/docs/device-mapper-multipathing-introduction https://github.com/opensvc/multipath-tools
We combined these two vulnerabilities with a third vulnerability, in another package that is also installed by default on Ubuntu Server, and obtained full root privileges on Ubuntu Server 22.04; other releases are probably also exploitable. We will publish this third vulnerability, and the complete details of this local privilege escalation, in an upcoming advisory.
The authorization bypass (CVE-2022-AUTHZ) was introduced in February 2017 (version 0.7.0) by commit 9acda0c ("Perform socket client uid check on IPC commands"), but earlier versions perform no authorization checks at all: any unprivileged local user can issue any privileged command to multipathd.
The symlink attack (CVE-2022-SLINK) was introduced in May 2018 (version 0.7.7) by commit 65d0a63 ("functions to indicate mapping failure in /dev/shm"); the vulnerable code was hardened significantly in May 2020 (version 0.8.5) by commit 40ee3ea ("simplify failed wwid code"), but it remains exploitable nonetheless.
======================================================================== CVE-2022-AUTHZ: Authorization bypass ========================================================================
The multipathd daemon listens for client connections on an abstract Unix socket (conveniently, the multipathd binary itself can act as a client, if executed with non-option arguments; we use this feature extensively in this advisory to connect and send commands to the multipathd daemon):
------------------------------------------------------------------------ $ ps -ef | grep 'multipath[d]' root 377 1 0 13:55 ? 00:00:00 /sbin/multipathd -d -s
$ ss -l -x | grep 'multipathd' ustr LISTEN 0 4096 @/org/kernel/linux/storage/multipathd 18105 ------------------------------------------------------------------------
The commands sent by a client to multipathd are composed of keywords, and internally, each keyword is identified by a different bit; for example, "list" is 1 (1<<0), "add" is 2 (1<<1), and "path" (which requires a parameter) is 65536 (1<<16):
------------------------------------------------------------------------ 155 loadkeys (void) ... 163 r += addkey(keys, "list", LIST, 0); 164 r += addkey(keys, "show", LIST, 0); 165 r += addkey(keys, "add", ADD, 0); ... 183 r += addkey(keys, "path", PATH, 1); ------------------------------------------------------------------------ 53 #define LIST (1ULL << LIST) 54 #define ADD (1ULL << ADD) .. 69 #define PATH (1ULL << PATH) ------------------------------------------------------------------------ 6 enum { 7 LIST, / 0 / 8 ADD, .. 23 PATH, ------------------------------------------------------------------------
In turn, each command is associated with a handler (a C function) by its fingerprint -- the bitwise OR of its constituent keywords; for example, the command "list path PARAM" is associated with clilistpath() by the fingerprint 65537 (LIST+PATH=1+65536), and the command "add path PARAM" is associated with cliaddpath() by the fingerprint 65538 (ADD+PATH=2+65536):
------------------------------------------------------------------------ 1522 void inithandlercallbacks(void) .... 1527 sethandlercallback(LIST+PATH, clilistpath); .... 1549 sethandlercallback(ADD+PATH, cliaddpath); ------------------------------------------------------------------------ 321 static uint64t 322 fingerprint(const struct vector vec) ... 325 uint64t fp = 0; ... 331 vectorforeachslot(vec, kw, i) 332 fp += kw->code; 333 334 return fp; ------------------------------------------------------------------------ 89 static struct handler 90 findhandler (uint64t fp) .. 95 vectorforeachslot (handlers, h, i) 96 if (h->fingerprint == fp) 97 return h; 98 99 return NULL; ------------------------------------------------------------------------
When multipathd receives a command from a client, it first performs an authentication check and an authorization check (both at line 491):
------------------------------------------------------------------------ 431 static int clientstatemachine(struct client c, struct vectors vecs, ... 485 case CLTPARSE: 486 c->error = parsecmd(c); 487 if (!c->error) { ... 491 if (!c->isroot && kw->code != LIST) { 492 c->error = -EPERM; ... 495 } 496 } 497 if (c->error) ... 501 else 502 setclientstate(c, CLTWORK); ... 522 case CLTWORK: 523 c->error = executehandler(c, vecs); ------------------------------------------------------------------------
- Authentication: if the client's UID (obtained from SOPEERCRED) is 0 (i.e., if isroot is true), then the client is privileged; otherwise, it is unprivileged.
- Authorization: if the client is privileged, it is allowed to execute any commands; otherwise, only unprivileged LIST commands are allowed (i.e., commands whose first keyword is either "list" or "show").
Attentive readers may have noticed that multipathd does not, in fact, calculate the fingerprint of a command by bitwise-ORing its constituent keywords, but by arithmetic-ADDing them (at line 332). While these two operations are equivalent if no keyword is repeated, we (attackers) can send a seemingly unprivileged command (whose first keyword is "list") but whose fingerprint matches a privileged command (by repeating the "list" keyword): we can exploit this flaw to bypass multipathd's authorization check.
For example, we are not allowed to execute "add path PARAM" (whose fingerprint is 2+65536=65538) because the first keyword is not "list", but we are allowed to execute the equivalent "list list path PARAM" (whose fingerprint is also 1+1+65536=65538, instead of 1|1|65536=65537) because the first keyword is "list" (the multipathd daemon below replies "blacklisted" because PARAM is an invalid path, not because the command is denied):
------------------------------------------------------------------------ $ multipathd add path PARAM permission deny: need to be root
$ multipathd list list path PARAM blacklisted ------------------------------------------------------------------------
This authorization bypass greatly enlarges the attack surface of multipathd: 34 privileged command handlers become available to local attackers, in addition to the 23 unprivileged command handlers that are normally available. We audited only a few of these command handlers, because we quickly discovered a low-hanging vulnerability (a symlink attack) in one of them.
======================================================================== CVE-2022-SLINK: Symlink attack ========================================================================
multipathd operates insecurely, as root, in /dev/shm (a sticky, world-writable directory similar to /tmp). The vulnerable code (in markfailedwwid()) may be executed during the normal lifetime of multipathd, but a local attacker can force its execution by exploiting the authorization bypass CVE-2022-AUTHZ; for example, by adding a "whitelisted, unmonitored" device to multipathd:
------------------------------------------------------------------------ $ multipathd list devices | grep 'whitelisted, unmonitored' sda1 devnode whitelisted, unmonitored ...
$ multipathd list list path sda1 fail ------------------------------------------------------------------------
This command, which is equivalent to "add path sda1", results in the following system-call trace (strace) of the multipathd daemon:
------------------------------------------------------------------------ 386 openat(ATFDCWD, "/dev/shm/multipath/failedwwids", ORDONLY|ODIRECTORY) = -1 ENOENT (No such file or directory) 387 mkdir("/dev", 0700) = -1 EEXIST (File exists) 388 mkdir("/dev/shm", 0700) = -1 EEXIST (File exists) 389 mkdir("/dev/shm/multipath", 0700) = 0 390 mkdir("/dev/shm/multipath/failedwwids", 0700) = 0 391 openat(ATFDCWD, "/dev/shm/multipath/failedwwids", ORDONLY|ODIRECTORY) = 12 392 getpid() = 375 393 openat(12, "VBOXHARDDISKVB60265ca5-df119cb6.177", ORDONLY|OCREAT|OEXCL, 0400) = 13 394 close(13) = 0 395 linkat(12, "VBOXHARDDISKVB60265ca5-df119cb6.177", 12, "VBOXHARDDISKVB60265ca5-df119cb6", 0) = 0 396 unlinkat(12, "VBOXHARDDISKVB60265ca5-df119cb6.177", 0) = 0 397 close(12) = 0 ------------------------------------------------------------------------
- at line 389, the directory "/dev/shm/multipath" is created, if it does not exist already;
- at line 390, the directory "/dev/shm/multipath/failedwwids" is created, if it does not exist already;
- at lines 391-397, the empty file "/dev/shm/multipath/failedwwids/VBOXHARDDISKVB60265ca5-df119cb6" is created, if it does not exist already (its name is the "World Wide ID" of the added device).
multipathd is therefore vulnerable to two different symlink attacks:
1/ if we (attackers) create an arbitrary symlink "/dev/shm/multipath", then we can create a directory named "failedwwids" (user root, group root, mode 0700) anywhere in the filesystem;
2/ if we create an arbitrary symlink "/dev/shm/multipath/failedwwids", then we can create a file named "VBOXHARDDISKVB60265ca5-df119cb6" (user root, group root, mode 0400, size 0) anywhere in the filesystem.
These two symlink attacks are very weak, because we do not control the name, user, group, mode, or contents of the directory or file that we create; only its location. Despite these limitations, we were able to combine multipathd's vulnerabilities (authorization bypass and symlink attack) with a third vulnerability (in another package), and obtained full root privileges on Ubuntu Server 22.04; we will publish this third vulnerability in an upcoming advisory.
Side note: initially, we thought that the symlink attack 1/ would fail, because /dev/shm is a sticky world-writable directory, and the kernel's fs.protectedsymlinks is 1 by default; to our great surprise, however, it succeeded. Eventually, we understood that only the final component of a path is protected, not its intermediate components; for example, if /tmp/foo is a symlink, then an access to /tmp/foo itself is protected, but an access to /tmp/foo/bar is not. Interestingly, this weakness was already pointed out in 2017 by Solar Designer, and the original Openwall, grsecurity, and Yama protections are not affected:
https://www.openwall.com/lists/kernel-hardening/2017/06/06/74
======================================================================== Acknowledgments ========================================================================
======================================================================== Timeline
— Red Hat
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
redhat/device-mapper-multipathto a version that resolves this vulnerability.Fixed in 0:0.8.4-37.el8 - Upgrade
Upgrade
redhat/device-mapper-multipathto a version that resolves this vulnerability.Fixed in 0:0.8.7-20.el9 - Upgrade
Upgrade
debian/multipath-toolsto a version that resolves this vulnerability.Fixed in 0.7.9-3+deb10u2Fixed in 0.9.4-1Fixed in 0.8.5-2+deb11u1 - Upgrade
Upgrade
debian/multipath-toolsto a version that resolves this vulnerability.Fixed in 0.7.9-3+deb10u2Fixed in 0.8.5-2+deb11u1Fixed in 0.9.4-3+deb12u1Fixed in 0.9.4-7 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Patch CVE-2022-AUTHZ - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Patch CVE-2022-SLINK
Event History
Parent advisories
This vulnerability appears in the following advisories.
Frequently Asked Questions
What is the vulnerability ID for this vulnerability?
The vulnerability ID for this vulnerability is CVE-2022-41973.
What is the severity of CVE-2022-41973?
CVE-2022-41973 has a severity level of high.
How does CVE-2022-41973 allow local users to obtain root access?
CVE-2022-41973 allows local users to obtain root access in conjunction with CVE-2022-41974.
Which versions of multipath-tools are affected by CVE-2022-41973?
Versions 0.7.7 through 0.9.x before 0.9.2 of multipath-tools are affected by CVE-2022-41973.
Are there any remedies available for CVE-2022-41973 affected software?
Yes, there are specific updated versions available for the affected software packages.