There is an issue with how the UNIX socket abstract path is constructed. As it is, the abstract path is just a sequence of \0. It is supposed to just start with \0 and have a meaningful name after.
You can check this by running caladan and then executing the following command:
sudo lsof -U | grep @
You will see some that are just @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@. Which is a string of \0.
There is an issue with how the UNIX socket abstract path is constructed. As it is, the abstract path is just a sequence of
\0
. It is supposed to just start with\0
and have a meaningful name after.You can check this by running caladan and then executing the following command:
You will see some that are just
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
. Which is a string of\0
.