CSCI 373 Computer Networking — Chapter 5 comments

The PowerPoint

Slide 2

What do we know from looking at the socket interface for TCP?

Slide 3

We have ignored UDP, which rules the world of real-time entertainment!

Slide 5

The stream socket interface doesn’t really support messages. That’s why we need a good presentation layer. Also, flow-control has to be built into the application protocol.

Slide 6

The datagram socket interface accepts all of these limitations.

UDP socket interface

Python UDP socket methods

Dealing with unreliability

Because UDP packets can be lost, duplicated and reordered, the application protocol often needs to tag datagrams with sequence numbers in order to match requests with responses. In the ONC RPC this tag is called the xid or transmission id. In the ONC RPC the package also indicates if it is a call (request) or reply

It gets worse. Usually the requester must set timers so that it can retransmit a lost request. This significantly complicates the programming of the UDP client.

But it gets even worse. If the request isn’t idempotent, the server should not perform it more than once. Think about what this means for common file operations and for REST applications.

ONC RPC supports three call semantics related to guarantees of response to requests.

In at least once, the requester keeps transmitting into a reply is received. In at most once, the server must cache responses. In maybe, it usually happens.

Another look at “connections”

The BSD socket interface does allow calling connect on a datagram socket. This sets a default destination for sent sockets and allows the use of send and write rather than sendto. It also allows the use of recv and read, which will only return packets sent from the “connected” socket. The Python socket module also supports this silliness for a connection-less protocol.

In some UDP connection-like protocols, the well-known part is used only for the initial message. The reply for the initial message is made from with newly allocated UDP port number. Subsequent messages use the new UDP port.

Examples of UDP servers

This server enumerates and echoes line. Notice how easy it is to maintain multiple clients. Also, notice the absence of "\r\n".

Here’s a connection-oriented server using a Python dictionary to keep up with information about each client. The server returns the line count of both the client and all clients.

Slide 9

The UDP specification was published in 1980. Notice that the checksum is “the 16-bit one's complement of the one's complement sum of a pseudo header”. This is one place where assembly language is likely to be used.

Slide 10

This is done by the operating system. Take a look at 2500 lines of real operating system code.

Slide 12

TCP is designed to keep the whole network happy.

Slide 13

Going across the Internet is less predictable than going across the campus network.

Slide 17

Compare the sizes of the TCP and UDP modules in the Linux kernel to see how much more code is devoted to TCP. TCP Vegas is a congestion avoidance algorithm.

Slide 18

See the TCP specification.

Slide 23

The three-way handshake is very important. The sequence numbers need to unpredictable to avoid ancient IP spoofing attacks.

Take a look at the TCP Connection State Diagram, Figure 6 of RFC 793 or better yet, consult this diagram:
TCP state-transitions diagram

Let’s review the “three things” mentioned on page 406 of the textbook.

Slide 25

These diagrams explain it all. However, pay attention: Each end of a TCP connection is both a sender and receiver. The sender on one end transmits data to the receive on the other. It’s easier to understand as two independent one-way connections. Also, the pointers out of the applications, LastByteWritten and LastByteRead, are often the responsibly the operating system file interface.

Slides 26 & 27

We need to look at all of these constraints.

Slide 29

MSL is maximum segment lifetime.

We will see more solutions later.

Slide 30

We are talking about bandwidth between applications, aren’t we?

Slide 34

The usual MTU, maximum transmission unit, for our computers is 1500. The lower levels can fake it.

[…]$ ip

Slide 35

Concern is that the silly window continues between the two ends and never gets a full load.

Picking up on Thursday

Also, take a look at a sliding window demo.

Slide 37

Nagle’s algorithm is described in RFC 896.

Slide 40

The paper Improving Round-Trip Time Estimates in Reliable Transport Protocols presents the Karn algorithm.

Slide 42

The Karn & Partridge algorithm was attempts to address the problem of congestion occuring within a growing internet. Chapter 6 presents more recent work.

Interesting things in the book but not the slides

Some application programmers are using PSH and URG to indicate data boundaries. The Java socket class has an method sendUrgentData to send an urgent byte. Python allows programmer’s to send out-of-band using C-like calls.

TCP has several options for extending performance. These include timestamps, window scaling factors and selective acknowledgment.

Use the source

TCP show

tcp and udp performance tuning in Linux

tcpdump

[…]$ sudo tcpdump host not connectinghost
[…]$ sudo tcpdump -n host not connectinghost
[…]$ sudo tcpdump -n tcp and host not connectinghost
[…]$ sudo tcpdump -n udp and host not connectinghost
[…]$ sudo tcpdump -n net not network