Does TCP/IP prevent multiple copies of the same packet from reaching the destination? Or is it up to the endpoint to layer idempotency logic above it?
Please reference specific paragraphs from the TCP/IP specification if possible.
|
1
|
|||||
|
|
|
It's the TCP stack's job to recover from duplicate packets:
-- RFC 793 - Transmission Control Protocol, Section 1.5 However, if they're the same packets with new sequence numbers, then no. |
||||||
|
|
|
You don't fully understand the problem. See this link: http://en.wikipedia.org/wiki/Transmission_Control_Protocol On this page is write: "TCP timestamps, defined in RFC 1323, help TCP compute the round-trip time between the sender and receiver. Timestamp options include a 4-byte timestamp value, where the sender inserts its current value of its timestamp clock, and a 4-byte echo reply timestamp value, where the receiver generally inserts the most recent timestamp value that it has received. The sender uses the echo reply timestamp in an acknowledgment to compute the total elapsed time since the acknowledged segment was sent.[2] TCP timestamps are also used to help in the case where TCP sequence numbers encounter their 2^32 bound and "wrap around" the sequence number space. This scheme is known as Protect Against Wrapped Sequence numbers, or PAWS (see RFC 1323 for details)." Regards, Joint (Poland) |
||
|
|
|
|
It really depends on how you are receiving your data - although technically the protocol should not give you duplicates (i.e. packets with the same tcp checksum), other factors could cause you to see duplicates - for example, the network hardware you are using; also if you are using sniffers to look at tcp streams, rather than just reading an open socket in your application, it's possible to get dup packets from the sniffers even if the actual tcp streams they were monitoring did not have dup packets. To give a real world example - At the moment I'm working on some tcp analysis of internal networks for a major stock exchange, and the data I'm looking at is coming in from multiple sniffers and being spliced back together. So in pulling in the data, I've found that I need to do a number of pre-processing steps, including finding and removing duplicates. For example, in a stream I just read in, of approx 60,000 data packets, I have located and removed 95 duplicate packets. The strategy I take here is to keep a rolling window of the 10 most recent tcp checksums, and to ignore packets that match those checksums. Note this works well for PSH packets, but not so well for ACK packets - but I'm less concerned with those anyways. I've written a special collection for the purpose of tracking this rolling window of tcp checksums, which might be helpful to others:
|
||
|
|
|
|
Yes, the TCP layer prevents duplicate packets. The IP layer below it does not. Details in RFC 1122. |
||
|
|
|
|
TCP uses sequence numbers to detect duplication in the case of retransmission, which will also prevent trivial replay attacks. From RFC 793, Section 3.3 - Sequence Numbers:
The duplicate detection will ensure that the same packet cannot be trivially retransmitted. Sequence numbers will also ensure that insertion (rather than replacement) of data in the data stream will be noticed, as further legitimate packets following forged packets will have duplicate sequence numbers, which will disrupt the data flow. This will likely cause those packets to be dropped as duplicates, which will likely break the protocol being used. More information about the original (1981) TCP/IP specification can be found in RFC 793, and the many other RFCs involving extensions or modifications to the TCP/IP protocol. |
||
|
|
|
|
Layers below TCP can experience multiple packets or dropped packets. Layers above TCP do not experience repetition or dropped packets. |
||
|
|
|
|
I don't know about packet repitition, but I've never encountered it using TCP/IP and I know that it does guarantee that the packets all arrive and in the correct order, so I can't understand why it wouldn't. |
||
|
|