From: Rao Shoaib <rao.shoaib@xxxxxxxxxx> TCP sockets allow SIGURG to be sent to the process holding the other end of the socket. Extend Unix sockets to have the same ability but only if the data length is zero. The API is the same in that the sender uses sendmsg() with MSG_OOB to raise SIGURG. Unix sockets behave in the same way as TCP sockets with SO_OOBINLINE set. SIGURG is ignored by default, so applications which do not know about this feature will be unaffected. In addition to installing a SIGURG handler, the receiving application must call F_SETOWN or F_SETOWN_EX to indicate which process or thread should receive the signal. Signed-off-by: Rao Shoaib <rao.shoaib@xxxxxxxxxx> Signed-off-by: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx> --- net/unix/af_unix.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 92784e5..65f6179 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -1840,7 +1840,8 @@ static int unix_stream_sendmsg(struct socket *sock, struct msghdr *msg, return err; err = -EOPNOTSUPP; - if (msg->msg_flags&MSG_OOB) + + if (len && (msg->msg_flags & MSG_OOB)) goto out_err; if (msg->msg_namelen) { @@ -1856,6 +1857,9 @@ static int unix_stream_sendmsg(struct socket *sock, struct msghdr *msg, if (sk->sk_shutdown & SEND_SHUTDOWN) goto pipe_err; + if (msg->msg_flags & MSG_OOB) + sk_send_sigurg(other); + while (sent < len) { size = len - sent; -- 1.8.3.1