mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* AF_UNIX sockets: strange behaviour
@ 2004-11-17 15:29 Catalin Drula
  2004-11-17 16:09 ` linux-os
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Catalin Drula @ 2004-11-17 15:29 UTC (permalink / raw)
  To: linux-kernel

Hi,

I have a small application that communicates over Bluetooth. I use
connection-oriented UNIX domain sockets (AF_UNIX, SOCK_STREAM) to
communicate between the applications's threads. When reading from
one of these sockets, I get a strange behaviour: if I read all the
bytes that are available (13, in this case) all at once, it's fine;
however, if I try to read in two smaller batches (say, first time
6, and second time 7), the first read returns (with the 6 bytes), but
the second read never returns.

As far as I know, this is not expected behaviour for SOCK_STREAM sockets.
I tried looking into the problem so I instrumented net/unix/af_unix.c to
see what is going on. More specifically, I was focusing on the function
unix_stream_recvmsg. Here is what I noticed:

  - there is a skb in the sk_receive_queue with a len of 13
  - 6 bytes are read from it
  - a skb with the remaining 7 bytes is requeued in sk_receive_queue
  - on the next call to unix_stream_recvmsg, the sk_receive_queue is
empty (!)

Thus, this confirms the behaviour observed from userspace. Is this a bug?
Who could be removing the skb from the receive_queue?

Thanks for any ideas/suggestions,

Catalin

ps Please cc: your replies to me.


^ permalink raw reply	[flat|nested] 7+ messages in thread
* Re: AF_UNIX sockets: strange behaviour
@ 2004-11-17 16:23 Catalin Drula
  2004-11-17 16:41 ` linux-os
  0 siblings, 1 reply; 7+ messages in thread
From: Catalin Drula @ 2004-11-17 16:23 UTC (permalink / raw)
  To: linux-kernel

> Dick Johnson wrote:
>
> > Catalin Drula wrote:
> >
> > - there is a skb in the sk_receive_queue with a len of 13
> > - 6 bytes are read from it
> > - a skb with the remaining 7 bytes is requeued in sk_receive_queue
> > - on the next call to unix_stream_recvmsg, the sk_receive_queue is
> >  empty (!)
> >
> > Thus, this confirms the behaviour observed from userspace. Is this a
> > bug? Who could be removing the skb from the receive_queue?
>
> If you need STREAM behavior I think you need to use recv(),
> recvfrom(),or read().
>
> If you use recvmsg(), the "message" will be removed even it you
> haven't read it all. Note in the 'man' page description:
> "If the a message is too long to fit in the supplied buffer, excess
> bytes may be discarded depending upon the type of socket the message
> is being received from...

At first I used read() and then I tried recv() as well.

Catalin


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-11-18 13:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-17 15:29 AF_UNIX sockets: strange behaviour Catalin Drula
2004-11-17 16:09 ` linux-os
2004-11-17 18:11 ` Stephen Hemminger
2004-11-17 22:42 ` Alex Riesen
2004-11-18 13:24   ` Catalin Drula
2004-11-17 16:23 Catalin Drula
2004-11-17 16:41 ` linux-os

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome