From: Lennart Poettering Date: Tue, 4 Dec 2018 17:21:25 +0000 (+0100) Subject: socket-util: Let's trick out ubsan when it validate struct sockaddr_un.sun_path[] X-Git-Tag: v240~137^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11051%2Fhead;p=thirdparty%2Fsystemd.git socket-util: Let's trick out ubsan when it validate struct sockaddr_un.sun_path[] Linux is stupid and sometimes returns a "struct sockaddr_un" that is longer than its fields, as it NUL terminates .sun_path[] even if it has full length. ubsan detects this, rightfully. Since this is a Linux misdesign let's trick out ubsan a bit. Fixes: #11024 --- diff --git a/src/basic/socket-util.c b/src/basic/socket-util.c index 9e70cc8c366..91bf801cdf2 100644 --- a/src/basic/socket-util.c +++ b/src/basic/socket-util.c @@ -661,9 +661,14 @@ int sockaddr_pretty( /* The name must have at least one character (and the leading NUL does not count) */ p = strdup(""); else { + /* Note that we calculate the path pointer here through the .un_buffer[] field, in order to + * outtrick bounds checking tools such as ubsan, which are too smart for their own good: on + * Linux the kernel may return sun_path[] data one byte longer than the declared size of the + * field. */ + char *path = (char*) sa->un_buffer + offsetof(struct sockaddr_un, sun_path); size_t path_len = salen - offsetof(struct sockaddr_un, sun_path); - if (sa->un.sun_path[0] == 0) { + if (path[0] == 0) { /* Abstract socket. When parsing address information from, we * explicitly reject overly long paths and paths with embedded NULs. * But we might get such a socket from the outside. Let's return @@ -671,17 +676,17 @@ int sockaddr_pretty( _cleanup_free_ char *e = NULL; - e = cescape_length(sa->un.sun_path + 1, path_len - 1); + e = cescape_length(path + 1, path_len - 1); if (!e) return -ENOMEM; p = strjoin("@", e); } else { - if (sa->un.sun_path[path_len - 1] == '\0') + if (path[path_len - 1] == '\0') /* We expect a terminating NUL and don't print it */ path_len --; - p = cescape_length(sa->un.sun_path, path_len); + p = cescape_length(path, path_len); } } if (!p)