]> git.baikalelectronics.ru Git - kernel.git/commit
af_unix: return data from multiple SKBs on recv() with MSG_PEEK flag
authorAaron Conole <aconole@bytheb.org>
Sat, 26 Sep 2015 22:50:43 +0000 (18:50 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Sep 2015 20:47:08 +0000 (13:47 -0700)
commitce4db64ef5b212f12c817f0f118da18175e603a9
treeba19241592c69f4336f1429cd9d2a1933722f015
parent133574dfd667eaf3565d9a5b922ec0745429e1c7
af_unix: return data from multiple SKBs on recv() with MSG_PEEK flag

AF_UNIX sockets now return multiple skbs from recv() when MSG_PEEK flag
is set.

This is referenced in kernel bugzilla #12323 @
https://bugzilla.kernel.org/show_bug.cgi?id=12323

As described both in the BZ and lkml thread @
http://lkml.org/lkml/2008/1/8/444 calling recv() with MSG_PEEK on an
AF_UNIX socket only reads a single skb, where the desired effect is
to return as much skb data has been queued, until hitting the recv
buffer size (whichever comes first).

The modified MSG_PEEK path will now move to the next skb in the tree
and jump to the again: label, rather than following the natural loop
structure. This requires duplicating some of the loop head actions.

This was tested using the python socketpair python code attached to
the bugzilla issue.

Signed-off-by: Aaron Conole <aconole@bytheb.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/unix/af_unix.c