[PATCH] Abstract address UNIX sockets not binding properly (by capnbry@gmail.com...
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 16 Dec 2011 02:10:37 +0000 (02:10 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 16 Dec 2011 02:10:37 +0000 (02:10 +0000)
commitca7bc48ebc0b1f655088eaae89bd358556dc8824
treecad031002a5c06e2372a9e920c3aa6baff3210a2
parent5c1ef9a0a60240a949be9ce1839c049471d7c5a1
[PATCH] Abstract address UNIX sockets not binding properly (by capnbry@gmail.com, #366)
In #274, I stated abstract namespace and autobound abstract namespace datagram UNIX domain sockets work perfectly with nixio. However, I may have jumped the gun on that conclusion. Turns out they work perfectly for only one
concurrent connection.

The problem is that when binding to an abstract address socket, which begins with a NULL byte, nixio strncpy's the name into the sockaddr_un structure, which effectively copies nothing. It then binds to an address of 180 NULLs,
which is completely legal, but obviously you run into problems when a second client tries to bind to the same address.

The rules are as follows ( http://linux.die.net/man/7/unix) for the names:

  * If the name is blank, bind() should pass that the addrlen of sizeof(sa_family_t) and Linux will autobind a name that begins with null and is followed by 5 digits.
  * If the first character of the name is non-null, the name is a pathname and is null-terminated. addrlen should be sizeof(sockaddr_un), but the length can also be the pathname len + sizeof(sa_family_t) as the value will be
null-terminated by the kernel unix socket driver
  * If the first character is null, the address is abstract and the value should not be null-terminated and addrlen is pathname + sizeof(sa_family_t)

The attached patch fixes bind/connect/sendto by shortening the addrlen passed to be pathname len + sizeof(sa_family_t), which generates the correct socket names for all 3 cases above.
It also fixes the address returned by recvfrom, which currently returns a blank string for any abstract address socket (as they begin with a null).
libs/nixio/src/bind.c
libs/nixio/src/io.c