]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[PATCH] Fix a severe bug
authorAlexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Mon, 27 Feb 2006 08:28:32 +0000 (00:28 -0800)
committerChris Wright <chrisw@sous-sol.org>
Wed, 1 Mar 2006 22:36:37 +0000 (14:36 -0800)
commit9809ee9916825087a8729af4713ae9b555917ad5
treefe3858a2ec0b00f53209d0c90ab5dffd2491da2d
parent5a62d3406ddd87a26d706d0b3019f4a1872713da
[PATCH] Fix a severe bug

netlink overrun was broken while improvement of netlink.
Destination socket is used in the place where it was meant to be source socket,
so that now overrun is never sent to user netlink sockets, when it should be,
and it even can be set on kernel socket, which results in complete deadlock
of rtnetlink.

Suggested fix is to restore status quo passing source socket as additional
argument to netlink_attachskb().

A little explanation: overrun is set on a socket, when it failed
to receive some message and sender of this messages does not or even
have no way to handle this error. This happens in two cases:
1. when kernel sends something. Kernel never retransmits and cannot
   wait for buffer space.
2. when user sends a broadcast and the message was not delivered
   to some recipients.

Signed-off-by: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
include/linux/netlink.h
ipc/mqueue.c
net/netlink/af_netlink.c