]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Fix copying of sockaddr_un addresses 4283/head
authorTimo Rothenpieler <timo@rothenpieler.org>
Sun, 25 Sep 2022 22:36:24 +0000 (00:36 +0200)
committerTimo Rothenpieler <timo@rothenpieler.org>
Mon, 26 Sep 2022 12:59:49 +0000 (14:59 +0200)
They can be very tiny (hence the adjustment of the size assert)
and the path can contain intermittent null bytes, so the only choice
is to trust the input slen and copy the whole struct.

An autobound unix socket uses an abstract address, which starts with a
null byte, hence this change is neccesary for such an address getting
copied properly.

src/libutil/addr.c

index 4c3de70cfdf49e8f9c4b4155d4ff292e63c4140c..71879e357ddd49de3db7f2b2ce8ffa672375ee37 100644 (file)
@@ -1680,7 +1680,8 @@ rspamd_inet_address_from_sa (const struct sockaddr *sa, socklen_t slen)
        rspamd_inet_addr_t *addr;
 
        g_assert (sa != NULL);
-       g_assert (slen >= sizeof (struct sockaddr));
+       /* Address of an AF_UNIX socket can be tiny */
+       g_assert (slen >= sizeof (sa_family_t) + 1);
 
        addr = rspamd_inet_addr_create (sa->sa_family, NULL);
 
@@ -1689,12 +1690,13 @@ rspamd_inet_address_from_sa (const struct sockaddr *sa, socklen_t slen)
                const struct sockaddr_un *un = (const struct sockaddr_un *)sa;
 
                g_assert (slen >= SUN_LEN (un));
+               g_assert (slen <= sizeof (addr->u.un->addr));
 
-               rspamd_strlcpy (addr->u.un->addr.sun_path, un->sun_path,
-                               sizeof (addr->u.un->addr.sun_path));
-#if defined(FREEBSD) || defined(__APPLE__)
-               addr->u.un->addr.sun_len = un->sun_len;
-#endif
+               /* sun_path can legally contain intermittent NULL bytes */
+               memcpy (&addr->u.un->addr, un, slen);
+
+               /* length of AF_UNIX addresses is variable */
+               addr->slen = slen;
        }
        else if (sa->sa_family == AF_INET) {
                g_assert (slen >= sizeof (struct sockaddr_in));