Accept -- still confused.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

I've been trying to implement queuing and 'accept' in my protocol for few
weeks.
The way 'accept' should work is still not clear for me:
We have a socket s and we do the following in the server:
1. listen(s) -- thus s->sk_state = TCP_LISTEN.
2. accept(s) -- put a process into sleep.
...
3. receiving function gets an 'init' packet and looks for a socket which
matches packet's destination. The lookup returns s (!).
4. I put s on a queue (sk->tp_pinfo.af_tcp.accept_queue) and wake up the
process (why to put s itself on it's own queue?).
5. accept resumes, grabs first socket from the queue (s) and changes its'
state to TCP_ESTABLISHED and returns it to inet_accpet. (but this is the
same socket we've been listening on:( ).
6. inet_accept grafts s into a new socket(ok), but s is now in
TCP_ESTABLISHED state, instead of TCP_LISTEN, which ruins next connection.

How to keep the listening state and return the valid socket to
inet_accept, without messing with inet_accept itself?
My problem is the socket I am listening on and to which the 'init' packet
is destinated are the same.

Thanks for anything.
-marek


-
: send the line "unsubscribe linux-net" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Netdev]     [Ethernet Bridging]     [Linux 802.1Q VLAN]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Git]     [Bugtraq]     [Yosemite News and Information]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux PCI]     [Linux Admin]     [Samba]

  Powered by Linux