[s3]winbind: fix smbd hanging on Solaris when winbindd closes socket.
authorMichael Adam <obnox@samba.org>
Mon, 27 Oct 2008 13:28:44 +0000 (14:28 +0100)
committerMichael Adam <obnox@samba.org>
Mon, 27 Oct 2008 13:59:33 +0000 (14:59 +0100)
commitb881d2ee78f685aea7ae8b67b3e0fb3c4f5205ed
treeec38f392e15daf1cdf05ea1d11114486ea8911fd
parent68aa9bd67f9556f608bfb321d593617bd346915f
[s3]winbind: fix smbd hanging on Solaris when winbindd closes socket.

On some versions of Solaris, we observed a strange effect of close(2)
on a socket: After the server (here winbindd) called close, the client fd
was not marked as readable for select. And a write call to the fd did
not produce an error EPIPE but just returned as if successful.

So while winbindd had called remove_client(), the corresponding smbd
still thought that it was connected, but failed to retrieve answers
for its queries.

This patch works around the problem by forcing the client fd to
the readable state: Just write one byte into the socket before
closing.

Michael
source3/winbindd/winbindd.c