From: Eric Dumazet <eric.dumazet@gmail.com>
To: Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
Cc: davem@davemloft.net, netdev@vger.kernel.org
Subject: Re: Possible bugfix for AF_UNIX, SOCK_SEQPACKET sockets
Date: Wed, 15 Feb 2012 07:25:09 +0100 [thread overview]
Message-ID: <1329287109.2555.44.camel@edumazet-laptop> (raw)
In-Reply-To: <CAFJW8X86fGhK4cwH0=dQrK8TSJdmPB51TgLjcK=wdOBQzNeF-A@mail.gmail.com>
Le mardi 14 février 2012 à 23:05 +0100, Piergiorgio Beruto a écrit :
> Hello,
> I would like to have your opinion regarding what I think could be a
> misbehaviour of the SIOCINQ ioctl on AF_UNIX domain sockets.
>
> I was implementing an IPC user-space library which makes use of a
> variety of sockets for sending data all around.
> When dealing with datagram sockets (i.e. SOCK_DGRAM, SOCK_RDM and
> SOCK_SEQPACKET) I used to implement the following paradigm:
>
> 1) issue the SIOCINQ (aka FIONREAD) ioctl and get the "size of the
> first queued datagram"
> 2) allocate memory of that size and fill it reading out data from the socket
>
> This works very fine for UDP and TIPC (including SOCK_SEQPACKET)
> sockets but when using AF_UNIX (SEQPACKET) sockets the same ioctl
> returns instead the number of bytes queued (sum of all pending
> datagrams) .
>
> In short, there is no way (as far as I know) to work out how much
> memory to allocate in userspace before reading out the datagram.
> The workaround for this is to use a fixed swap buffer of the max
> possible size of your packets (assuming you know / can retrieve it
> somehow) and make a copy of your data (which is bad for performance
> anyway).
>
I dont understand.... SIOCINQ returns an upper limit to you.
So your app can malloc() a big enough buffer.
Yes, SEQPACKET preserves message boundaries so your recvmsg() can fill
part of the application buffer.
> Looking at the kernel code I've found this in the
> linux/net/unix/af_unix.c file (my comment with ////)
>
> case SIOCINQ:
> {
> struct sk_buff *skb;
>
> if (sk->sk_state == TCP_LISTEN) {
> err = -EINVAL;
> break;
> }
>
> spin_lock(&sk->sk_receive_queue.lock);
> if (sk->sk_type == SOCK_STREAM ||
> sk->sk_type == SOCK_SEQPACKET) { //// <--------
> treats SEQPACKET as SOCK_STREAM
> skb_queue_walk(&sk->sk_receive_queue, skb)
> amount += skb->len;
> } else {
> skb = skb_peek(&sk->sk_receive_queue);
> if (skb)
> amount = skb->len;
> }
> spin_unlock(&sk->sk_receive_queue.lock);
> err = put_user(amount, (int __user *)arg);
> break;
> }
>
> In my opinion SOCK_SEQPACKETS are similar to SOCK_STREAM because they
> are "connection oriented" sockets but from the I/O point of view are
> more similar to datagram ones.
>
> My proposal is to remove the above condition from the test and let the
> function process SOCK_SEQPACKETS as if they were SOCK_DGRAM for this
> particular ioctl.
>
This behavior is undocumented in "man unix", so it is "implementation
dependant"
This change could break some applications.
next prev parent reply other threads:[~2012-02-15 6:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-14 22:05 Possible bugfix for AF_UNIX, SOCK_SEQPACKET sockets Piergiorgio Beruto
2012-02-15 6:25 ` Eric Dumazet [this message]
2012-02-15 10:43 ` Piergiorgio Beruto
2012-02-15 12:42 ` Eric Dumazet
2012-02-15 17:36 ` Piergiorgio Beruto
2012-02-15 18:16 ` Eric Dumazet
2012-02-15 19:55 ` David Miller
2012-02-18 21:23 ` Piergiorgio Beruto
2012-02-22 9:24 ` [PATCH net-next] af_unix: MSG_TRUNC support for dgram sockets Eric Dumazet
2012-02-22 19:50 ` David Miller
2012-12-20 16:50 ` Michael Kerrisk (man-pages)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1329287109.2555.44.camel@edumazet-laptop \
--to=eric.dumazet@gmail.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=piergiorgio.beruto@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox