vote up 0 vote down star

Can please someone one explain how to deal with out-of-order packets. I'm using raw socket to capture packets, and parse them as they come, but some of them come in wrong order, for example:

  1. Id...........Flags
  2. 16390 : (PSH, ACK)
  3. 16535 : (PSH, ACK)
  4. 16638 : (ACK)
  5. 16640 : (PSH, ACK)
  6. 16639 : (ACK)
  7. 16695 : (PSH, ACK)

Packets with IDs: 16390, 16535, 16695 are separate packets and can be processed freely Packets with IDs: 16638, 16640, 16639 are a sequence of packets and should be put in ascending order before parsing.

To make it worse packets with Push flag sometimes come first so I just pass them along to parser, and then packet that preceds it comes and parser just discards it as corrupted.

Is there any way to deal with it?

flag
1  
Please clarify exactly what you're doing so we are more able to answer your question. – d03boy Apr 18 at 3:01
Don't use a raw socket. – Jason Coco Apr 18 at 3:07
This is sad, I told you how to handle raw packets, and I only got 3 votes, while the accepted answer has 8 votes and basically didn't answer the question... – Unknown Apr 18 at 6:47
That's because the right question wasn't asked in the first place. – d03boy Apr 23 at 20:57

3 Answers

vote up 4 vote down check

TCP guarantees order. So I will just assume you are talking about IP.

One thing you could try is putting the packets in a min-heap and then waiting until the next packet ID number you want is available.

As for the push packets, those are supposed to be received as soon as possible without a restriction on ordering, so its up to you to decide how long you want to wait to see if you'll receive an earlier push packet.

link|flag
vote up 4 vote down

Why don't you use the normal tcp socket so they come in order?

link|flag
He is sniffing packets which means he isn't the server/client he is in the middle listening to the conversation and that is only possible with raw sockets. – Hasan Khan Apr 18 at 6:17
vote up 8 vote down

TCP segments will not be out of order because the next one will not be sent until you ACK the previous one.

TCP numbers the segments that it sends to a particular destination port sequentially, so that if they arrive out of order, the TCP entity can reorder them.

This happens on a transport layer below TCP so any TCP connections would never "see" this happen. In terms of TCP they are always in order. So if you see them out of order then you are not working on the TCP transport layer, you're at a lower level.

Also, FYI...

  • TCP data is a "segment"
  • IP data is a "datagram"
  • Network-level is a packet"

Edit: The link you provided will provide you with a stream of IP datagrams so you would have to handle the TCP stream on your own. I'm not going to pretend like it's easy and try to explain that here.

link|flag
1  
I just sniff packets between client and server using raw socket, so I do not ACK anything. Here is the code that was initially used: codeproject.com/KB/IP/… Sorry for the messing up terms, I'm realtively new to networks terms. – Vitalis Apr 18 at 3:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.