Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between push and urgent flags in TCP

Tags:

tcp

I'm trying to understand the difference between a TCP segment with the flag PSH and with the flag URG. I read the RFC but still couldn't get it, does one of them buffer the data before it sends it to the process and the other doesn't ?

like image 476
whitefox Avatar asked Feb 05 '12 22:02

whitefox


People also ask

What is urgent flag in TCP?

Urgent (URG) –Data inside a segment with URG = 1 flag is forwarded to application layer immediately even if there are more data to be given to application layer. It is used to notify the receiver to process the urgent packets before processing all other packets.

What are FIN URG and PSH flags?

FIN (finish): Indicate that the connection is being torn down. Both the sender and receiver send the FIN packets to gracefully terminate the connection. PSH (push): Indicate that the incoming data should be passed on directly to the application instead of getting buffered.

Why is PSH flag used?

Again, the PSH flag is used to inform the receiver that the sender has no further data to transmit (for now). As mentioned, the PSH flag is also used to facilitate real-time communication via TCP.


3 Answers

They are two vastly different mechanisms.

###PSH and the PUSH function

When you send data, your TCP buffers it. So if you send a character it won't send it immediately but wait to see if you've got more. But maybe you want it to go straight on the wire: this is where the PUSH function comes in. If you PUSH data your TCP will immediately create a segment (or a few segments) and push them.

But the story doesn't stop here. When the peer TCP receives the data, it will naturally buffer them it won't disturb the application for each and every byte. Here's where the PSH flag kicks in. If a receiving TCP sees the PSH flag it will immediately push the data to the application.

There's no API to set the PSH flag. Typically it is set by the kernel when it empties the buffer. From TCP/IP Illustrated:

This flag is conventionally used to indicate that the buffer at the side sending the packet has been emptied in conjunction with sending the packet. In other words, when the packet with the PSH bit field set left the sender, the sender had no more data to send.

But be aware Stevens also says:

Push (the receiver should pass this data to the application as soon as possible—not reliably implemented or used)

###URG and OOB data

TCP is a stream-oriented protocol. So if you push 64K bytes on one side, you'll eventually get 64k bytes on the other. So imagine you push a lot of data and then have some message that says "Hey, you know all that data I just sent ? Yeah, throw that away". The gist of the matter is that once you push data on a connection you have to wait for the receiver to get all of it before it gets to the new data.

This is where the URG flag kicks in. When you send urgent data, your TCP creates a special segment in which it sets the URG flag and also the urgent pointer field. This causes the receiving TCP to forward the urgent data on a separate channel to the application (for instance on Unix your process gets a SIGURG). This allows the application to process the data out of band¹.


As a side note, it's important to be aware that urgent data is rarely used today and not very well implemented. It's far easier to use a separate channel or a different approach altogether.


¹: RFC 6093 disagrees with this use of "out of band" and states:

The TCP urgent mechanism is NOT a mechanism for sending "out-of-band" data: the so-called "urgent data" should be delivered "in-line" to the TCP user.

But then it goes on to admit:

By default, the last byte of "urgent data" is delivered "out of band" to the application. That is, it is not delivered as part of the normal data stream.

An application has to go out of its way and specify e.g. SO_OOBINLINE to get standards-conforming urgent semantics.

If all this sounds complicated just don't use urgent data.

like image 113
cnicutar Avatar answered Oct 05 '22 18:10

cnicutar


Adding some more information to the already answered one.

  • The URG bit, if set prioritizes the data, meaning thereby instead of waiting for the entire byte stream to be transmitted which is ahead of the "Urgent" data, the urgent data will be sent on urgent basis and will not wait for the entire byte stream to be transmitted which is ahead of it.

  • When the URG bit is set the Urgent Pointer is also set (in the TCP header Options field: 16 bit).

  • The URG pointer tell how many bytes of the data is urgent in the segment that has arrived. (Example if the data size is 100 bytes and only first 50 bytes is urgent, the urgent pointer will have a value of 50).

  • Now coming to the PSH bit. The purpose of the PSH bit is to tell TCP that do not wait for the buffer to become full and send the data immediately. Similarly when the receiver receives the segment with PSH flag set, should send the data immediately to the upper layer without waiting for the receive buffer to become full. The practical example of this is the telnet application where the application sends data in the form of few keystrokes. The telnet will become unusable if it waits for the buffer to become full and then transits the data to the receiver.

like image 37
Sumit Trehan Avatar answered Oct 05 '22 18:10

Sumit Trehan


I wouldn't accept everything in an RFC too rigidly, it seems there is some ambiguity about the implementation of these flags. URG concerns the sending of packets before filling buffers while PSH controls moving data up the stack at the receiving end.

like image 45
John Avatar answered Oct 05 '22 17:10

John