vote up 1 vote down star

Hi,

The UDP header struct defined at /usr/include/netinet/udp.h is as follows

struct udphdr
{
  u_int16_t source;
  u_int16_t dest;
  u_int16_t len;
  u_int16_t check;
};

What value is stored in the check field of the header? How to verify if the checksum is correct? I meant on what data is the checksum computed? (Is it just the udp header or udp header plus the payload that follows it?)

Thanks.

flag

38% accept rate

1 Answer

vote up 5 vote down check

The UDP checksum is performed over the entire payload and the other fields in the header and some fields from the IP header. A pseudo-header is constructed from the IP header in order to perform the calculation (which is done over this pseudo-header, the UDP header and the payload). The reason the pseudo-header is included is to catch packets that have been routed to the wrong IP address.

Basically, at the receiving end, all the 16-bit words of the headers plus data area are added together and the result is checked against 0xffff. On the sending side, it's also simple. All the one's complements (i.e., invert all bits) of the 16-bit words of the headers (where the UDP checksum is zero) are added and the one's complement of that is what gets put into the checksum field. That will cause the calculation in the previous paragraph to produce 0xffff.

It's worth noting that the payload is always padded to ensure there's an integral number of 16-bit words. If it was padded, the length field tells you the actual length.

RFC768 is the specification which details this.

link|flag
Thanks for that. I was a bit confused about the Pseudo-Header part..but then the RFC cleared the air. – Deepak Konidena Sep 26 at 7:03
"All the 16-bit words of the headers (where the UDP checksum is zero) are added and the one's complement (i.e., invert all bits) is what gets put into the checksum field." No, what the RFC says would lead to "All the one's complements (i.e., invert all bits) of the 16-bit words of the headers (where the UDP checksum is zero) are added and the one's complement of that is what gets put into the checksum field." Otherwise perfect answer +1. – Joren Sep 26 at 7:17
Right you are, @Joren, adjusted, and thanks. – paxdiablo Sep 26 at 11:56

Your Answer

Get an OpenID
or

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