home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / Unix / socket < prev    next >
Encoding:
Text File  |  1996-10-22  |  77.8 KB  |  1,828 lines

  1. Newsgroups: comp.unix.programmer,comp.unix.answers,comp.answers,news.answers
  2. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!uunet!in3.uu.net!ott.istar!istar.net!n3ott.istar!infoshare!whome!telly!innuendo.tlug.org!brutus!vic
  3. From: vic@brutus.tlug.org (Vic Metcalfe)
  4. Subject: [comp.unix.programmer] Unix-socket-faq for network programming
  5. Approved: news-answers-request@MIT.EDU
  6. Followup-To: comp.unix.programmer
  7. X-Newsreader: TIN [version 1.2 PL2]
  8. Organization: Zymurgy Systems, Aurora, Ontario, Canada
  9. Message-ID: <1996Oct22.031644.19397@brutus.tlug.org>
  10. Date: Tue, 22 Oct 1996 03:16:44 GMT
  11. Summary: This posting offers answers to frequent questions about network
  12.          programming in the unix environment using sockets.
  13. Lines: 1812
  14. Xref: informatik.tu-muenchen.de comp.unix.programmer:51411 comp.answers:21833 news.answers:84804
  15.  
  16. Archive-name: unix-faq/socket
  17. Posting-Frequency: monthly
  18. Last-modified: 1996/10/21
  19. URL: http://www.auroraonline.com/sock-faq/
  20.  
  21.   Programming UNIX Sockets in C - Frequently Asked Questions
  22.   Created by Vic Metcalfe, Andrew Gierth and other contributers
  23.   August 21, 1996
  24.  
  25.   This is a list of frequently asked questions, with answers about pro-
  26.   gramming TCP/IP applications in unix with the sockets interface.
  27.   ______________________________________________________________________
  28.  
  29.   Table of Contents:
  30.  
  31.   1.      General Information and Concepts
  32.  
  33.   1.1.    About this FAQ
  34.  
  35.   1.2.    Who is this FAQ for?
  36.  
  37.   1.3.    What are Sockets?
  38.  
  39.   1.4.    How do Sockets Work?
  40.  
  41.   1.5.    Where can I get source code for the book [book title]?
  42.  
  43.   1.6.    Where can I get more information?
  44.  
  45.   2.      Questions regarding both Clients and Servers (TCP/SOCK_STREAM)
  46.  
  47.   2.1.    How can I tell when a socket is closed on the other end?
  48.  
  49.   2.2.    What's with the second parameter in bind()?
  50.  
  51.   2.3.    How do I get the port number for a given service?
  52.  
  53.   2.4.    If bind() fails, what should I do with the socket descriptor?
  54.  
  55.   2.5.    How do I properly close a socket?
  56.  
  57.   2.6.    When should I use shutdown()?
  58.  
  59.   2.7.    Please explain the TIME_WAIT state.
  60.  
  61.   2.8.    Why does it take so long to detect that the peer died?
  62.  
  63.   2.9.    What are the pros/cons of select(), non-blocking I/O and
  64.   SIGIO?
  65.  
  66.   2.10.   Why do I get EPROTO from read()?
  67.  
  68.   2.11.   How can I force a socket to send the data in it's buffer?
  69.  
  70.   2.12.   Where can a get a library for programming sockets?
  71.  
  72.   2.13.   How come select says there is data, but read returns zero?
  73.  
  74.   2.14.   Whats the difference between select() and poll()?
  75.  
  76.   2.15.   How do I send [this] over a socket?
  77.  
  78.   2.16.   How do I use TCP_NODELAY?
  79.  
  80.   2.17.   What exactly does the Nagle algorithm do?
  81.  
  82.   2.18.   What is the difference between read() and recv()?
  83.  
  84.   2.19.   I see that send()/write() can generate SIGPIPE. Is there any
  85.   advantage to handling the signal, rather than just ignoring it and
  86.   checking for the EPIPE error? Are there any useful parameters passed
  87.   to the signal catching function?
  88.  
  89.   2.20.   After the chroot(), calls to socket() are failing.  Why?
  90.  
  91.   2.21.   Why do I keep getting EINTR from the socket calls?
  92.  
  93.   2.22.   When will my application receive SIGPIPE?
  94.  
  95.   2.23.   What are socket exceptions?  What is out-of-band data?
  96.  
  97.   2.24.   How can I find the full hostname (FQDN) of the system I'm
  98.   running on?
  99.  
  100.   3.      Writing Client Applications (TCP/SOCK_STREAM)
  101.  
  102.   3.1.    How do I convert a string into an internet address?
  103.  
  104.   3.2.    How can my client work through a firewall/proxy server?
  105.  
  106.   3.3.    Why does connect() succeed even before my server did an
  107.   accept()?
  108.  
  109.   3.4.    Why do I sometimes loose a server's address when using more
  110.   than one server?
  111.  
  112.   3.5.    How can I set the timeout for the connect() system call?
  113.  
  114.   3.6.    Should I bind() a port number in my client program, or let the
  115.   system choose one for me on the connect() call?
  116.  
  117.   3.7.    Why do I get "connection refused" when the server isn't
  118.   running?
  119.  
  120.   3.8.    What does one do when one does not know how much information
  121.   is comming over the socket ? Is there a way to have a dynamic buffer ?
  122.  
  123.   4.      Writing Server Applications (TCP/SOCK_STREAM)
  124.  
  125.   4.1.    How come I get "address already in use" from bind()?
  126.  
  127.   4.2.    Why don't my sockets close?
  128.  
  129.   4.3.    How can I make my server a daemon?
  130.  
  131.   4.4.    How can I listen on more than one port at a time?
  132.  
  133.   4.5.    What exactly does SO_REUSEADDR do?
  134.  
  135.   4.6.    What exactly does SO_LINGER do?
  136.  
  137.   4.7.    What exactly does SO_KEEPALIVE do?
  138.  
  139.   4.8.    How can I bind() to a port number < 1024?
  140.  
  141.   4.9.    How do I get my server to find out the client's address /
  142.   hostname?
  143.  
  144.   4.10.   How do I use the gethostbyaddr() function?
  145.  
  146.   4.11.   How should I choose a port number for my server?
  147.  
  148.   4.12.   What is the difference between SO_REUSEADDR and SO_REUSEPORT?
  149.  
  150.   4.13.   How can I write a multi-homed server?
  151.  
  152.   4.14.   How can I read only one character at a time?
  153.  
  154.   5.      Writing UDP/SOCK_DGRAM applications
  155.  
  156.   5.1.    When should I use UDP instead of TCP?
  157.  
  158.   5.2.    What is the difference between "connected" and "unconnected"
  159.   sockets?
  160.  
  161.   5.3.    Does doing a connect() call affect the receive behaviour of
  162.   the socket?
  163.  
  164.   5.4.    How can I read ICMP errors from "connected" UDP sockets?
  165.  
  166.   5.5.    How can I be sure that a UDP message is received?
  167.  
  168.   5.6.    How can I be sure that UDP messages are received in order?
  169.  
  170.   5.7.    How often should I re-transmit un-acknowleged messages?
  171.  
  172.   5.8.    How come only the first part of my datagram is getting
  173.   through?
  174.  
  175.   6.      Sample Source Code
  176.   ______________________________________________________________________
  177.  
  178.   1.  General Information and Concepts
  179.  
  180.   1.1.  About this FAQ
  181.  
  182.   This FAQ is maintained by Vic Metcalfe (vic@brutus.tlug.org), with
  183.   lots of assistance from Andrew Gierth (andrewg@microlise.co.uk).  I am
  184.   depending on the true wizards to fill in the details, and correct my
  185.   (no doubt) plentiful mistakes.  The code examples in this FAQ are
  186.   written to be easy to follow and understand.  It is up to the reader
  187.   to make them as efficient as required.  I started this faq because
  188.   after reading comp.unix.programmer for a short time, it became evident
  189.   that a FAQ was needed.
  190.  
  191.   The FAQ is available at the following locations:
  192.  
  193.      Usenet: (Posted on the 21st of each month)
  194.         news.answers, comp.answers, comp.unix.answers,
  195.         comp.unix.programmer
  196.  
  197.      FTP:
  198.         ftp://rtfm.mit.edu/pub/usenet/news.answers/unix-faq/socket
  199.  
  200.      WWW:
  201.         http://www.auroraonline.com/sock-faq
  202.         http://kipper.york.ac.uk/~vic/sock-faq
  203.  
  204.   Please email me if you would like to correct or clarify an answer.  I
  205.   would also like to hear from you if you would like me to add a
  206.   question to the list.  I may not be able to answer it, but I can add
  207.   it in the hopes that someone else will submit an answer.  Every hour I
  208.   seem to be getting even busier, so if I am slow to respond to your
  209.   email, please be patient.  If more than a week passes you may want to
  210.   send me another one as I often put messages aside for later and then
  211.   forget about them.  I'll have to work on dealing with my mail better,
  212.   but until then feel free to pester me a little bit.
  213.  
  214.   1.2.  Who is this FAQ for?
  215.  
  216.   This FAQ is for C programmers in the Unix environment.  It is not
  217.   intended for WinSock programmers, or for Perl, Java, etc.  I have
  218.   nothing against Windows or Perl, but I had to limit the scope of the
  219.   FAQ for the first draft.  In the future, I would really like to
  220.   provide examples for Perl, Java, and maybe others.  For now though I
  221.   will concentrate on correctness and completeness for C.
  222.  
  223.   This version of the FAQ will only cover sockets of the AF_INET family,
  224.   since this is their most common use.  Coverage of other types of
  225.   sockets may be added later.
  226.  
  227.   1.3.  What are Sockets?
  228.  
  229.   Sockets are just like "worm holes" in science fiction.  When things go
  230.   into one end, they (should) come out of the other.  Different kinds of
  231.   sockets have different properties.  Sockets are either connection-
  232.   oriented or connectionless.  Connection-oriented sockets allow for
  233.   data to flow back and forth as needed, while connectionless sockets
  234.   (also known as datagram sockets) allow only one message at a time to
  235.   be transmitted, without an open connection.  There are also different
  236.   socket families.  The two most common are AF_INET for internet
  237.   connections, and AF_UNIX for unix IPC (interprocess communication).
  238.   As stated earlier, this FAQ deals only with AF_INET sockets.
  239.  
  240.   1.4.  How do Sockets Work?
  241.  
  242.   The implementation is left up to the vendor of your particular unix,
  243.   but from the point of view of the programmer, connection-oriented
  244.   sockets work a lot like files, or pipes.  The most noticeable
  245.   difference, once you have your file descriptor is that read() or
  246.   write() calls may actually read or write fewer bytes than requested.
  247.   If this happens, then you will have to make a second call for the rest
  248.   of the data.  There are examples of this in the source code that
  249.   accompanies the faq.
  250.  
  251.   1.5.  Where can I get source code for the book [book title]?
  252.  
  253.   Here is a list of the places I know to get source code for network
  254.   programming books.  It is very short, so please mail me with any
  255.   others you know of.
  256.  
  257.   Title: Unix Network Programming
  258.   Author: W. Richard Stevens (rstevens@noao.edu)
  259.   Publisher: Prentice Hall, Inc.
  260.   ISBN: 0-13-949876-1
  261.   URL: http://www.noao.edu/~rstevens
  262.  
  263.   Title: Power Programming with RPC
  264.   Author: John Bloomer
  265.   Publisher: O'Reilly & Associates, Inc.
  266.   ISBN: 0-937175-77-3
  267.   URL: ftp://ftp.uu.net/published/oreilly/nutshell/rpc/rpc.tar.Z
  268.  
  269.   Recommended by: Lokmanm Merican (lokmanm#pop4.jaring.my@199.1.1.88)
  270.   Title: UNIX PROGRAM DEVELOPMENT for IBM PC'S Including OSF/Motif
  271.   Author: Thomas Yager
  272.   Publisher: Addison Wesley, 1991
  273.   ISBN: 0-201-57727-5
  274.  
  275.   1.6.  Where can I get more information?
  276.  
  277.   I keep a copy of the resources I know of on my socks page on the web.
  278.   I don't remember where I got most of these items, but some day I'll
  279.   check out their sources, and provide ftp information here.  For now,
  280.   you can get them at http://www.auroraonline.com/sock-faq.
  281.  
  282.   There is a good TCP/IP FAQ maintained by George Neville-Neil
  283.   (gnn@wrs.com) which can be found at
  284.   http://www.winternet.com/~khayes/tcpipfaq.html
  285.  
  286.   2.  Questions regarding both Clients and Servers (TCP/SOCK_STREAM)
  287.  
  288.   2.1.  How can I tell when a socket is closed on the other end?
  289.  
  290.   From Andrew Gierth (andrewg@microlise.co.uk):
  291.  
  292.   AFAIK:
  293.  
  294.   If the peer calls close() or exits, without having messed with
  295.   SO_LINGER, then our calls to read() should return 0. It is less clear
  296.   what happens to write() calls in this case; I would expect EPIPE, not
  297.   on the next call, but the one after.
  298.  
  299.   If the peer reboots, or sets l_onoff = 1, l_linger = 0 and then
  300.   closes, then we should get ECONNRESET (eventually) from read(), or
  301.   EPIPE from write().
  302.  
  303.   I should also point out that when write() returns EPIPE, it also
  304.   raises the SIGPIPE signal - you never see the EPIPE error unless you
  305.   handle or ignore the signal.
  306.  
  307.   If the peer remains unreachable, we should get some other error.
  308.  
  309.   I don't think that write() can legitimately return 0.  read() should
  310.   return 0 on receipt of a FIN from the peer, and on all following
  311.   calls.
  312.  
  313.   So yes, you must expect read() to return 0.
  314.  
  315.   As an example, suppose you are receiving a file down a TCP link; you
  316.   might handle the return from read() like this:
  317.  
  318.        rc = read(sock,buf,sizeof(buf));
  319.        if (rc > 0)
  320.        {
  321.            write(file,buf,rc);
  322.            /* error checking on file omitted */
  323.        }
  324.        else if (rc == 0)
  325.        {
  326.            close(file);
  327.            close(sock);
  328.            /* file received successfully */
  329.        }
  330.        else /* rc < 0 */
  331.        {
  332.            /* close file and delete it, since data is not complete
  333.               report error, or whatever */
  334.        }
  335.  
  336.   2.2.  What's with the second parameter in bind()?
  337.  
  338.   The man page shows it as "struct sockaddr *my_addr".  The sockaddr
  339.   struct though is just a place holder for the structure it really
  340.   wants.  You have to pass different structures depending on what kind
  341.   of socket you have.  For an AF_INET socket, you need the sockaddr_in
  342.   structure.  It has three fields of interest:
  343.  
  344.      sin_family
  345.         Set this to AF_INET.
  346.  
  347.      sin_port
  348.         The network byte-ordered 16 bit port number
  349.  
  350.      sin_addr
  351.         The host's ip number.  This is a struct in_addr, which contains
  352.         only one field, s_addr which is a u_long.
  353.  
  354.   2.3.  How do I get the port number for a given service?
  355.  
  356.   Use the getservbyname() routine.  This will return a pointer to a
  357.   servent structure.  You are interested in the s_port field, which
  358.   contains the port number, with correct byte ordering (so you don't
  359.   need to call htons() on it).  Here is a sample routine:
  360.  
  361.        /* Take a service name, and a service type, and return a port 
  362.           number.  If the service name is not found, it tries it as a 
  363.           decimal number.  The number returned is byte ordered for the 
  364.           network. */
  365.        int atoport(char *service, char *proto) {
  366.          int port;
  367.          long int lport;
  368.          struct servent *serv;
  369.          char *errpos;
  370.  
  371.          /* First try to read it from /etc/services */
  372.          serv = getservbyname(service, proto);
  373.          if (serv != NULL)
  374.            port = serv->s_port;
  375.          else { /* Not in services, maybe a number? */
  376.            lport = strtol(service,&errpos,0);
  377.            if ( (errpos[0] != 0) || (lport < 1) || (lport > 5000) )
  378.              return -1; /* Invalid port address */
  379.            port = htons(lport);
  380.          }
  381.          return port;
  382.        }
  383.  
  384.   2.4.  If bind() fails, what should I do with the socket descriptor?
  385.  
  386.   If you are exiting, I have been assured by Andrew that all unixes will
  387.   close open file descriptors on exit.  If you are not exiting though,
  388.   you can just close it with a regular close() call.
  389.  
  390.   2.5.  How do I properly close a socket?
  391.  
  392.   This question is usually asked by people who try close(), because they
  393.   have seen that that is what they are supposed to do, and then run
  394.   netstat and see that their socket is still active.  Yes, close() is
  395.   the correct method.  To read about the TIME_WAIT state, and why it is
  396.   important, refer to ``2.7 Please explain the TIME_WAIT state.''.
  397.  
  398.   2.6.  When should I use shutdown()?
  399.  
  400.   From Michael Hunter (mphunter@qnx.com):
  401.  
  402.   shutdown() is useful for deliniating when you are done providing a
  403.   request to a server using TCP.  A typical use is to send a request to
  404.   a server followed by a shutdown().  The server will read your request
  405.   followed by an EOF (read of 0 on most unix implementations).  This
  406.   tells the server that it has your full request.  You then go read
  407.   blocked on the socket.  The server will process your request and send
  408.   the necessary data back to you followed by a close.  When you have
  409.   finished reading all of the response to your request you will read an
  410.   EOF thus signifying that you have the whole response.  It should be
  411.   noted the TTCP (TCP for Transactions -- see R. Steven's home page)
  412.   provides for a better method of tcp transaction management.
  413.  
  414.   2.7.  Please explain the TIME_WAIT state.
  415.  
  416.   Remember that TCP guarantees all data transmitted will be delivered,
  417.   if at all possible.  When you close a socket, the server goes into a
  418.   TIME_WAIT state, just to be really really sure that all the data has
  419.   gone through.  When a socket is closed, both sides agree by sending
  420.   messages to each other that they will send no more data.  This, it
  421.   seemed to me was good enough, and after the handshaking is done, the
  422.   socket should be closed.  The problem is two-fold.  First, there is no
  423.   way to be sure that the last ack was communicated successfully.
  424.   Second, there may be "wandering duplicates" left on the net that must
  425.   be dealt with if they are delivered.
  426.  
  427.   Andrew Gierth (andrewg@microlise.co.uk) helped to explain the closing
  428.   sequence in the following usenet posting:
  429.  
  430.   Assume that a connection is in ESTABLISHED state, and the client is
  431.   about to do an orderly release. The client's sequence no. is Sc, and
  432.   the server's is Ss. The pipe is empty in both directions.
  433.  
  434.       Client                                                   Server
  435.       ======                                                   ======
  436.       ESTABLISHED                                              ESTABLISHED
  437.       (client closes)
  438.       ESTABLISHED                                              ESTABLISHED
  439.                    <CTL=FIN+ACK><SEQ=Sc><ACK=Ss> ------->>
  440.       FIN_WAIT_1
  441.                    <<-------- <CTL=ACK><SEQ=Ss><ACK=Sc+1>
  442.       FIN_WAIT_2                                               CLOSE_WAIT
  443.                    <<-------- <CTL=FIN+ACK><SEQ=Ss><ACK=Sc+1>  (server closes)
  444.                                                                LAST_ACK
  445.                    <CTL=ACK>,<SEQ=Sc+1><ACK=Ss+1> ------->>
  446.       TIME_WAIT                                                CLOSED
  447.       (2*msl elapses...)
  448.       CLOSED
  449.  
  450.   Note: the +1 on the sequence numbers is because the FIN counts as one
  451.   byte of data. (The above diagram is equivalent to fig. 13 from RFC
  452.   793).
  453.   Now consider what happens if the last of those packets is dropped in
  454.   the network. The client has done with the connection; it has no more
  455.   data or control info to send, and never will have. But the server does
  456.   not know whether the client received all the data correctly; that's
  457.   what the last ACK segment is for. Now the server may or may not care
  458.   whether the client got the data, but that is not an issue for TCP; TCP
  459.   is a reliable rotocol, and must distinguish between an orderly
  460.   connection close where all data is transferred, and a connection abort
  461.   where data may or may not have been lost.
  462.  
  463.   So, if that last packet is dropped, the server will retransmit it (it
  464.   is, after all, an unacknowledged segment) and will expect to see a
  465.   suitable ACK segment in reply.  If the client went straight to CLOSED,
  466.   the only possible response to that retransmit would be a RST, which
  467.   would indicate to the server that data had been lost, when in fact it
  468.   had not been.
  469.  
  470.   (Bear in mind that the server's FIN segment may, additionally, contain
  471.   data.)
  472.  
  473.   DISCLAIMER: This is my interpretation of the RFCs (I have read all the
  474.   TCP-related ones I could find), but I have not attempted to examine
  475.   implementation source code or trace actual connections in order to
  476.   verify it. I am satisfied that the logic is correct, though.
  477.  
  478.   More commentarty from Vic:
  479.  
  480.   The second issue was addressed by Richard Stevens (rstevens@noao.edu,
  481.   author of "Unix Network Programming", see ``1.5 Where can I get source
  482.   code for the book [book  title]?'').  I have put together quotes from
  483.   some of his postings and email which explain this.  I have brought
  484.   together paragraphs from different postings, and have made as few
  485.   changes as possible.
  486.  
  487.   From Richard Stevens (rstevens@noao.edu):
  488.  
  489.   If the duration of the TIME_WAIT state were just to handle TCP's full-
  490.   duplex close, then the time would be much smaller, and it would be
  491.   some function of the current RTO (retransmission timeout), not the MSL
  492.   (the packet lifetime).
  493.  
  494.   A couple of points about the TIME_WAIT state.
  495.  
  496.   o  The end that sends the first FIN goes into the TIME_WAIT state,
  497.      because that is the end that sends the final ACK.  If the other
  498.      end's FIN is lost, or if the final ACK is lost, having the end that
  499.      sends the first FIN maintain state about the connection guarantees
  500.      that it has enough information to retransmit the final ACK.
  501.  
  502.   o  Realize that TCP sequence numbers wrap around after 2**32 bytes
  503.      have been transferred.  Assume a connection between A.1500 (host A,
  504.      port 1500) and B.2000.  During the connection one segment is lost
  505.      and retransmitted.  But the segment is not really lost, it is held
  506.      by some intermediate router and then re-injected into the network.
  507.      (This is called a "wandering duplicate".)  But in the time between
  508.      the packet being lost & retransmitted, and then reappearing, the
  509.      connection is closed (without any problems) and then another
  510.      connection is established between the same host, same port (that
  511.      is, A.1500 and B.2000; this is called another "incarnation" of the
  512.      connection).  But the sequence numbers chosen for the new
  513.      incarnation just happen to overlap with the sequence number of the
  514.      wandering duplicate that is about to reappear.  (This is indeed
  515.      possible, given the way sequence numbers are chosen for TCP
  516.      connections.)  Bingo, you are about to deliver the data from the
  517.      wandering duplicate (the previous incarnation of the connection) to
  518.      the new incarnation of the connection.  To avoid this, you do not
  519.      allow the same incarnation of the connection to be reestablished
  520.      until the TIME_WAIT state terminates.
  521.  
  522.      Even the TIME_WAIT state doesn't complete solve the second problem,
  523.      given what is called TIME_WAIT assassination.  RFC 1337 has more
  524.      details.
  525.  
  526.   o  The reason that the duration of the TIME_WAIT state is 2*MSL is
  527.      that the maximum amount of time a packet can wander around a
  528.      network is assumed to be MSL seconds.  The factor of 2 is for the
  529.      round-trip.  The recommended value for MSL is 120 seconds, but
  530.      Berkeley-derived implementations normally use 30 seconds instead.
  531.      This means a TIME_WAIT delay between 1 and 4 minutes.  Solaris 2.x
  532.      does indeed use the recommended MSL of 120 seconds.
  533.  
  534.   A wandering duplicate is a packet that appeared to be lost and was
  535.   retransmitted.  But it wasn't really lost ... some router had
  536.   problems, held on to the packet for a while (order of seconds, could
  537.   be a minute if the TTL is large enough) and then re-injects the packet
  538.   back into the network.  But by the time it reappears, the application
  539.   that sent it originally has already retransmitted the data contained
  540.   in that packet.
  541.  
  542.   Because of these potential problems with TIME_WAIT assassinations, one
  543.   should not avoid the TIME_WAIT state by setting the SO_LINGER option
  544.   to send an RST instead of the normal TCP connection termination
  545.   (FIN/ACK/FIN/ACK).  The TIME_WAIT state is there for a reason; it's
  546.   your friend and it's there to help you :-)
  547.  
  548.   I have a long discussion of just this topic in my just-released
  549.   "TCP/IP Illustrated, Volume 3".  The TIME_WAIT state is indeed, one of
  550.   the most misunderstood features of TCP.
  551.  
  552.   I'm currently rewriting "Unix Network Programming" (see ``1.5 Where
  553.   can I get source code for the book [book  title]?''). and will include
  554.   lots more on this topic, as it is often confusing and misunderstood.
  555.  
  556.   An additional note from Andrew:
  557.  
  558.   Closing a socket: if SO_LINGER has not been called on a socket, then
  559.   close() is not supposed to discard data. This is true on SVR4.2 (and,
  560.   apparently, on all non-SVR4 systems) but apparently not on SVR4; the
  561.   use of either shutdown() or SO_LINGER seems to be required to
  562.   guarantee delivery of all data.
  563.  
  564.   2.8.  Why does it take so long to detect that the peer died?
  565.  
  566.   From Andrew Gierth (andrewg@microlise.co.uk):
  567.  
  568.   Because by default, no packets are sent on the TCP connection unless
  569.   there is data to send or acknowledge.
  570.  
  571.   So, if you are simply waiting for data from the peer, there is no way
  572.   to tell if the peer has silently gone away, or just isn't ready to
  573.   send any more data yet. This can be a problem (especially if the peer
  574.   is a PC, and the user just hits the Big Switch...).
  575.  
  576.   One solution is to use the SO_KEEPALIVE option. This option enables
  577.   periodic probing of the connection to ensure that the peer is still
  578.   present.  BE WARNED: the default timeout for this option is AT LEAST 2
  579.   HOURS.  This timeout can often be altered (in a system-dependent
  580.   fashion) but not normally on a per-connection basis (AFAIK).
  581.  
  582.   RFC1122 specifies that this timeout (if it exists) must be
  583.   configurable.  On the majority of Unix variants, this configuration
  584.   may only be done globally, affecting all TCP connections which have
  585.   keepalive enabled. The method of changing the value, moreover, is
  586.   often difficult and/or poorly documented, and in any case is different
  587.   for just about every version in existence.
  588.  
  589.   If you must change the value, look for something resembling
  590.   tcp_keepidle in your kernel configuration or network options
  591.   configuration.
  592.  
  593.   If you're sending to the peer, though, you have some better
  594.   guarantees; since sending data implies receiving ACKs from the peer,
  595.   then you will know after the retransmit timeout whether the peer is
  596.   still alive. But the retransmit timeout is designed to allow for
  597.   various contingencies, with the intention that TCP connections are not
  598.   dropped simply as a result of minor network upsets. So you should
  599.   still expect a delay of several minutes before getting notification of
  600.   the failure.
  601.  
  602.   The approach taken by most application protocols currently in use on
  603.   the Internet (e.g. FTP, SMTP etc.) is to implement read timeouts on
  604.   the server end; the server simply gives up on the client if no
  605.   requests are received in a given time period (often of the order of 15
  606.   minutes). Protocols where the connection is maintained even if idle
  607.   for long periods have two choices:
  608.  
  609.   1. use SO_KEEPALIVE
  610.  
  611.   2. use a higher-level keepalive mechanism (such as sending a null
  612.      request to the server every so often).
  613.  
  614.   2.9.  What are the pros/cons of select(), non-blocking I/O and SIGIO?
  615.  
  616.   Using non-blocking I/O means that you have to poll sockets to see if
  617.   there is data to be read from them.  Polling should usually be avoided
  618.   since it uses more CPU time than other techniques.
  619.  
  620.   Using SIGIO allows your application to do what it does and have the
  621.   operating system tell it (with a signal) that there is data waiting
  622.   for it on a socket.  The only drawback to this soltion is that it can
  623.   be confusing, and if you are dealing with multiple sockets you will
  624.   have to do a select() anyway to find out which one(s) is ready to be
  625.   read.
  626.  
  627.   Using select() is great if your application has to accept data from
  628.   more than one socket at a time since it will block until any one of a
  629.   number of sockets is ready with data.  One other advantage to select()
  630.   is that you can set a time-out value after which control will be
  631.   returned to you whether any of the sockets have data for you or not.
  632.  
  633.   2.10.  Why do I get EPROTO from read()?
  634.  
  635.   From Steve Rago (sar@plc.com):
  636.  
  637.   EPROTO means that the protocol encountered an unrecoverable error for
  638.   that endpoint.  EPROTO is one of those catch-all error codes used by
  639.   STREAMS-based drivers when a better code isn't available.
  640.  
  641.   2.11.  How can I force a socket to send the data in it's buffer?
  642.  
  643.   From Richard Stevens (rstevens@noao.edu):
  644.  
  645.   You can't force it.  Period.  TCP makes up its own mind as to when it
  646.   can send data.  Now, normally when you call write() on a TCP socket,
  647.   TCP will indeed send a segment, but there's no guarantee and no way to
  648.   force this.  There are lots of reasons why TCP will not send a
  649.   segment: a closed window and the Nagle algorithm are two things to
  650.   come immediately to mind.
  651.  
  652.   (Snipped suggestion from Andrew Gierth to use TCP_NODELAY)
  653.  
  654.   Setting this only disables one of the many tests, the Nagle algorithm.
  655.   But if the original poster's problem is this, then setting this socket
  656.   option will help.
  657.  
  658.   A quick glance at tcp_output() shows around 11 tests TCP has to make
  659.   as to whether to send a segment or not.
  660.  
  661.   Now from Dr. Charles E. Campbell Jr.  (cec@gryphon.gsfc.nasa.gov):
  662.  
  663.   As you've surmised, I've never had any problem with disabling Nagle's
  664.   algorithm.  Its basically a buffering method; there's a fixed overhead
  665.   for all packets, no matter how small.  Hence, Nagle's algorithm
  666.   collects small packets together (no more than .2sec delay) and thereby
  667.   reduces the amount of overhead bytes being transferred.  This approach
  668.   works well for rcp, for example: the .2 second delay isn't humanly
  669.   noticeable, and multiple users have their small packets more
  670.   efficiently transferred.  Helps in university settings where most
  671.   folks using the network are using standard tools such as rcp and ftp,
  672.   and programs such as telnet may use it, too.
  673.  
  674.   However, Nagle's algorithm is pure havoc for real-time control and not
  675.   much better for keystroke interactive applications (control-C,
  676.   anyone?).  It has seemed to me that the types of new programs using
  677.   sockets that people write usually do have problems with small packet
  678.   delays.  One way to bypass Nagle's algorithm selectively is to use
  679.   "out-of-band" messaging, but that is limited in its content and has
  680.   other effects (such as a loss of sequentiality) (by the way, out-of-
  681.   band is often used for that ctrl-C, too).
  682.  
  683.   More from Vic:
  684.  
  685.   So to sum it all up, if you are having trouble and need to flush the
  686.   socket, setting the TCP_NODELAY option will usually solve the problem.
  687.   If it doesn't, you will have to use out-of-band messaging, but
  688.   according to Andrew, "out-of-band data has its own problems, and I
  689.   don't think it works well as a solution to buffering delays (haven't
  690.   tried it though).  It is not 'expedited data' in the sense that exists
  691.   in some other protocols; it is transmitted in-stream, but with a
  692.   pointer to indicate where it is."
  693.  
  694.   I asked Andrew something to the effect of "What promises does TCP make
  695.   about when it will get around to writing data to the network?"  I
  696.   thought his reply should be put under this question:
  697.  
  698.   Not many promises, but some.
  699.  
  700.   I'll try and quote chapter and verse on this:
  701.  
  702.   References:
  703.  
  704.        RFC 1122, "Requirements for Internet Hosts" (also STD 3)
  705.        RFC  793, "Transmission Control Protocol"   (also STD 7)
  706.   1. The socket interface does not provide access to the TCP PUSH flag.
  707.  
  708.   2. RFC1122 says (4.2.2.2):
  709.  
  710.      A TCP MAY implement PUSH flags on SEND calls.  If PUSH flags are
  711.      not implemented, then the sending TCP: (1) must not buffer data
  712.      indefinitely, and (2) MUST set the PSH bit in the last buffered
  713.      segment (i.e., when there is no more queued data to be sent).
  714.  
  715.   3. RFC793 says (2.8):
  716.  
  717.      When a receiving TCP sees the PUSH flag, it must not wait for more
  718.      data from the sending TCP before passing the data to the receiving
  719.      process.
  720.  
  721.      [RFC1122 supports this statement.]
  722.  
  723.   4. Therefore, data passed to a write() call must be delivered to the
  724.      peer within a finite time, unless prevented by protocol
  725.      considerations.
  726.  
  727.   5. There are (according to a post from Stevens quoted in the FAQ
  728.      [earlier in this answer - Vic]) about 11 tests made which could
  729.      delay sending the data. But as I see it, there are only 2 that are
  730.      significant, since things like retransmit backoff are a) not under
  731.      the programmers control and b) must either resolve within a finite
  732.      time or drop the connection.
  733.  
  734.   The first of the interesting cases is "window closed"  (ie. there is
  735.   no buffer space at the receiver; this can delay data indefinitely, but
  736.   only if the receiving process is not actually reading the data that is
  737.   available)
  738.  
  739.   Vic asks:
  740.  
  741.   OK, it makes sense that if the client isn't reading, the data isn't
  742.   going to make it across the connection.  I take it this causes the
  743.   sender to block after the recieve queue is filled?
  744.  
  745.   The sender blocks when the socket send buffer is full, so buffers will
  746.   be full at both ends.
  747.  
  748.   While the window is closed, the sending TCP sends window probe
  749.   packets. This ensures that when the window finally does open again,
  750.   the sending TCP detects the fact. [RFC1122, ss 4.2.2.17]
  751.  
  752.   The second interesting case is "Nagle algorithm" (small segments, e.g.
  753.   keystrokes, are delayed to form larger segments if ACKs are expected
  754.   from the peer; this is what is disabled with TCP_NODELAY)
  755.  
  756.   Vic Asks:
  757.  
  758.   Does this mean that my tcpclient sample should set TCP_NODELAY to
  759.   ensure that the end-of-line code is indeed put out onto the network
  760.   when sent?
  761.  
  762.   No. tcpclient.c is doing the right thing as it stands; trying to write
  763.   as much data as possible in as few calls to write() as is feasible.
  764.   Since the amount of data is likely to be small relative to the socket
  765.   send buffer, then it is likely (since the connection is idle at that
  766.   point) that the entire request will require only one call to write(),
  767.   and that the TCP layer will immediately dispatch the request as a
  768.   single segment (with the PSH flag, see point 2.2 above).
  769.  
  770.   The Nagle algorithm only has an effect when a second write() call is
  771.   made while data is still unacknowledged. In the normal case, this data
  772.   will be left buffered until either: a) there is no unacknowledged
  773.   data; or b) enough data is available to dispatch a full-sized segment.
  774.   The delay cannot be indefinite, since condition (a) must become true
  775.   within the retransmit timeout or the connection dies.
  776.  
  777.   Since this delay has negative consequences for certain applications,
  778.   generally those where a stream of small requests are being sent
  779.   without response, e.g. mouse movements, the standards specify that an
  780.   option must exist to disable it. [RFC1122, ss 4.2.3.4]
  781.  
  782.   Additional note: RFC1122 also says:
  783.  
  784.      [DISCUSSION]:
  785.         When the PUSH flag is not implemented on SEND calls, i.e., when
  786.         the application/TCP interface uses a pure streaming model,
  787.         responsibility for aggregating any tiny data fragments to form
  788.         reasonable sized segments is partially borne by the application
  789.         layer.
  790.  
  791.   So programs should avoid calls to write() with small data lengths
  792.   (small relative to the MSS, that is); it's better to build up a
  793.   request in a buffer and then do one call to sock_write() or
  794.   equivalent.
  795.  
  796.   The other possible sources of delay in the TCP are not really
  797.   controllable by the program, but they can only delay the data
  798.   temporarily.
  799.  
  800.   Vic asks:
  801.  
  802.   By temporarily, you mean that the data will go as soon as it can, and
  803.   I won't get stuck in a position where one side is waiting on a
  804.   response, and the other side hasn't recieved the request?  (Or at
  805.   least I won't get  stuck forever)
  806.  
  807.   You can only deadlock if you somehow manage to fill up all the buffers
  808.   in both directions... not easy.
  809.  
  810.   If it is possible to do this, (can't think of a good example though),
  811.   the solution is to use nonblocking mode, especially for writes. Then
  812.   you can buffer excess data in the program as necessary.
  813.  
  814.   2.12.  Where can a get a library for programming sockets?
  815.  
  816.   There is the Simple Sockets Library by Charles E. Campbell, Jr. PhD.
  817.   and Terry McRoberts.  The file is called ssl.tar.gz, and you can
  818.   download it from this faq's home page.  For c++ there is the Socket++
  819.   library which is supposed to be on ftp://ftp.virginia.edu somewhere.
  820.   There is also C++ Wrappers, but I can't find this package anywhere.
  821.   The file is called C++_wrappers.tar.gz.  I have asked the people where
  822.   it used to be stored where I can find it now, but I never heard back.
  823.   From http://www.cs.wustl.edu/~schmidt you should be able to find the
  824.   ACE toolkit.
  825.  
  826.   I don't have any experience with any of these libraries, so I can't
  827.   recomend one over the other.
  828.  
  829.   2.13.  How come select says there is data, but read returns zero?
  830.  
  831.   The data that causes select to return is the EOF because the other
  832.   side has closed the connection.  This causes read to return zero.  For
  833.   more information see ``2.1 How can I tell when a socket is closed on
  834.   the other end?''
  835.  
  836.   2.14.  Whats the difference between select() and poll()?
  837.  
  838.   From Richard Stevens (rstevens@noao.edu):
  839.  
  840.   The basic difference is that select()'s fd_set is a bit mask and
  841.   therefore has some fixed size.  It would be possible for the kernel to
  842.   not limit this size when the kernel is compiled, allowing the
  843.   application to define FD_SETSIZE to whatever it wants (as the comments
  844.   in the system header imply today) but it takes more work.  4.4BSD's
  845.   kernel and the Solaris library function both have this limit.  But I
  846.   see that BSD/OS 2.1 has now been coded to avoid this limit, so it's
  847.   doable, just a small matter of programming. :-)  Someone should file a
  848.   Solaris bug report on this, and see if it ever gets fixed.
  849.  
  850.   With poll(), however, the user must allocate an array of pollfd
  851.   structures, and pass the number of entries in this array, so there's
  852.   no fundamental limit.  As Casper notes, fewer systems have poll() than
  853.   select, so the latter is more portable.  Also, with original
  854.   implementations (SVR3) you could not set the descriptor to -1 to tell
  855.   the kernel to ignore an entry in the pollfd structure, which made it
  856.   hard to remove entries from the array; SVR4 gets around this.
  857.   Personally, I always use select() and rarely poll(), because I port my
  858.   code to BSD environments too.  Someone could write an implementation
  859.   of poll() that uses select(), for these environments, but I've never
  860.   seen one. Both select() and poll() are being standardized by POSIX
  861.   1003.1g.
  862.  
  863.   2.15.  How do I send [this] over a socket?
  864.  
  865.   Anything other than single bytes of data will probably get mangled
  866.   unless you take care.  For integer values you can use htons() and
  867.   friends, and strings are really just a bunch of single bytes, so those
  868.   should be OK.  Be careful not to send a pointer to a string though,
  869.   since the pointer will be meaningless on another machine.  If you need
  870.   to send a struct, you should write sendthisstruct() and
  871.   readthisstruct() functions for it that do all the work of taking the
  872.   structure apart on one side, and putting it back together on the
  873.   other.  If you need to send floats, you may have a lot of work ahead
  874.   of you.  You should read RFC 1014 which is about portable ways of
  875.   getting data from one machine to another (thanks to Andrew Gabriel for
  876.   pointing this out).
  877.  
  878.   2.16.  How do I use TCP_NODELAY?
  879.  
  880.   First off, be sure you really want to use it in the first place.  It
  881.   will disable the Nagle algorithm (see ``2.11 How can I force a socket
  882.   to send the data in it's buffer?''), which will cause network traffic
  883.   to increase, with smaller than needed packets wasting bandwidth.
  884.   Also, from what I have been able to tell, the speed increase is very
  885.   small, so you should probably do it without TCP_NODELAY first, and
  886.   only turn it on if there is a problem.
  887.  
  888.   Here is a code example, with a warning about using it from Andrew
  889.   Gierth:
  890.  
  891.     int flag = 1;
  892.     int result = setsockopt(sock,            /* socket affected */
  893.                             IPPROTO_TCP,     /* set option at TCP level */
  894.                             TCP_NODELAY,     /* name of option */
  895.                             (char *) &flag,  /* the cast is historical
  896.                                                     cruft */
  897.                             sizeof(int));    /* length of option value */
  898.     if (result < 0)
  899.        ... handle the error ...
  900.  
  901.   TCP_NODELAY is for a specific purpose; to disable the Nagle buffering
  902.   algorithm. It should only be set for applications that send frequent
  903.   small bursts of information without getting an immediate response,
  904.   where timely delivery of data is required (the canonical example is
  905.   mouse movements).
  906.  
  907.   2.17.  What exactly does the Nagle algorithm do?
  908.  
  909.   It groups together as much data as it can between ACK's from the other
  910.   end of the connection.  I found this really confusing until Andrew
  911.   Gierth (andrewg@microlise.co.uk) drew the following diagram, and
  912.   explained:
  913.  
  914.   This diagram is not intended to be complete, just to illustrate the
  915.   point better...
  916.  
  917.   Case 1: client writes 1 byte per write() call. The program on host B
  918.   is tcpserver.c from the FAQ examples.
  919.  
  920.         CLIENT                                  SERVER
  921.   APP             TCP                     TCP             APP
  922.                   [connection setup omitted]
  923.  
  924.    "h" --------->          [1 byte]
  925.                       ------------------>
  926.                                              -----------> "h"
  927.                                      [ack delayed]
  928.    "e" ---------> [Nagle alg.              .
  929.                    now in effect]          .
  930.    "l" ---------> [ditto]                  .
  931.    "l" ---------> [ditto]                  .
  932.    "o" ---------> [ditto]                  .
  933.    "\n"---------> [ditto]                  .
  934.                                            .
  935.                                            .
  936.                          [ack 1 byte]
  937.                       <------------------
  938.                   [send queued
  939.                   data]
  940.                           [5 bytes]
  941.                       ------------------>
  942.                                             ------------> "ello\n"
  943.                                             <------------ "HELLO\n"
  944.                      [6 bytes, ack 5 bytes]
  945.                       <------------------
  946.    "HELLO\n" <----
  947.                 [ack delayed]
  948.                    .
  949.                    .
  950.                    .   [ack 6 bytes]
  951.                       ------------------>
  952.  
  953.   Total segments: 5. (If TCP_NODELAY was set, could have been up to 10.)
  954.   Time for response: 2*RTT, plus ack delay.
  955.  
  956.   Case 2: client writes all data with one write() call.
  957.  
  958.              CLIENT                                  SERVER
  959.        APP             TCP                     TCP             APP
  960.                        [connection setup omitted]
  961.  
  962.         "hello\n" --->          [6 bytes]
  963.                            ------------------>
  964.                                                  ------------> "hello\n"
  965.                                                  <------------ "HELLO\n"
  966.                           [6 bytes, ack 6 bytes]
  967.                            <------------------
  968.         "HELLO\n" <----
  969.                    [ack delayed]
  970.                         .
  971.                         .
  972.                         .   [ack 6 bytes]
  973.                            ------------------>
  974.  
  975.   Total segments: 3.
  976.  
  977.   Time for response = RTT (therefore minimum possible).
  978.  
  979.   Hope this makes things a bit clearer...
  980.  
  981.   Note that in case 2, you don't want the implementation to gratuitously
  982.   delay sending the data, since that would add straight onto the
  983.   response time.
  984.  
  985.   2.18.  What is the difference between read() and recv()?
  986.  
  987.   From Andrew Gierth (andrewg@microlise.co.uk):
  988.  
  989.   read() is equivalent to recv() with a flags parameter of 0.  Other
  990.   values for the flags parameter change the behaviour of recv().
  991.   Similarly, write() is equivalent to send() with flags == 0.
  992.  
  993.   It is unlikely that send()/recv() would be dropped; perhaps someone
  994.   with a copy of the POSIX drafts for socket calls can check...
  995.  
  996.   Portability note: non-unix systems may not allow read()/write() on
  997.   sockets, but recv()/send() are usually ok. This is true on Windows and
  998.   OS/2, for example.
  999.  
  1000.   2.19.  I see that send()/write() can generate SIGPIPE. Is there any
  1001.   advantage to handling the signal, rather than just ignoring it and
  1002.   checking for the EPIPE error? Are there any useful parameters passed
  1003.   to the signal catching function?
  1004.  
  1005.   From Andrew Gierth (andrewg@microlise.co.uk):
  1006.  
  1007.   In general, the only parameter passed to a signal handler is the
  1008.   signal number that caused it to be invoked.  Some systems have
  1009.   optional additional parameters, but they are no use to you in this
  1010.   case.
  1011.  
  1012.   My advice is to just ignore SIGPIPE as you suggest. That's what I do
  1013.   in just about all of my socket code; errno values are easier to handle
  1014.   than signals (in fact, the first revision of the FAQ failed to mention
  1015.   SIGPIPE in that context; I'd got so used to ignoring it...)
  1016.  
  1017.   There is one situation where you should not ignore SIGPIPE; if you are
  1018.   going to exec() another program with stdout redirected to a socket. In
  1019.   this case it is probably wise to set SIGPIPE to SIG_DFL before doing
  1020.   the exec().
  1021.  
  1022.   2.20.  After the chroot(), calls to socket() are failing.  Why?
  1023.  
  1024.   From Andrew Gierth (andrewg@microlise.co.uk):
  1025.  
  1026.   On systems where sockets are implemented on top of Streams (e.g. all
  1027.   SysV-based systems, presumably including Solaris), the socket()
  1028.   function will actually be opening certain special files in /dev. You
  1029.   will need to create a /dev directory under your fake root and populate
  1030.   it with the required device nodes (only).
  1031.  
  1032.   Your system documentation may or may not specify exactly which device
  1033.   nodes are required; I can't help you there (sorry).
  1034.  
  1035.   2.21.  Why do I keep getting EINTR from the socket calls?
  1036.  
  1037.   This isn't really so much an error as an exit condition.  It means
  1038.   that the call was interrupted by a signal.  Any call that might block
  1039.   should be wrapped in a loop that checkes for EINTR, as is done in the
  1040.   example code (See ``6. Sample Source Code'').
  1041.  
  1042.   2.22.  When will my application receive SIGPIPE?
  1043.  
  1044.   From Richard Stevens (rstevens@noao.edu):
  1045.  
  1046.   Very simple: with TCP you get SIGPIPE if your end of the connection
  1047.   has received an RST from the other end.  What this also means is that
  1048.   if you were using select instead of write, the select would have
  1049.   indicated the socket as being readable, since the RST is there for you
  1050.   to read (read will return an error with errno set to ECONNRESET).
  1051.  
  1052.   Basically an RST is TCP's response to some packet that it doesn't
  1053.   expect and has no other way of dealing with.  A common case is when
  1054.   the peer closes the connection (sending you a FIN) but you ignore it
  1055.   because you're writing and not reading.  (You should be using select.)
  1056.   So you write to a connection that has been closed by the other end and
  1057.   the oether end's TCP responds with an RST.
  1058.  
  1059.   2.23.  What are socket exceptions?  What is out-of-band data?
  1060.  
  1061.   Unlike exceptions in C++, socket exceptions do not indicate that an
  1062.   error has occured.  Socket exceptions usually refer to the
  1063.   notification that out-of-band data has arrived.  Out-of-band data
  1064.   (called "urgent data" in TCP) looks to the application like a separate
  1065.   stream of data from the main data stream.  This can be useful for
  1066.   separating two different kinds of data.  Note that just because it is
  1067.   called "urgent data" does not mean that it will be delivered any
  1068.   faster, or with higher priorety than data in the in-band data stream.
  1069.   Also beware that unlike the main data stream, the out-of-bound data
  1070.   may be lost if your application can't keep up with it.
  1071.  
  1072.   2.24.  running on?  How can I find the full hostname (FQDN) of the
  1073.   system I'm
  1074.  
  1075.   From Richard Stevens (rstevens@noao.edu):
  1076.  
  1077.   Some systems set the hostname to the FQDN and others set it to just
  1078.   the unqualified host name.  I know the current BIND FAQ recommends the
  1079.   FQDN, but most Solaris systems, for example, tend to use only the
  1080.   unqualified host name.
  1081.  
  1082.   Regardless, the way around this is to first get the host's name
  1083.   (perhaps an FQDN, perhaps unaualified).  Most systems support the
  1084.   Posix way to do this using uname(), but older BSD systems only provide
  1085.   gethostname().  Call gethostbyname() to find your IP address.  Then
  1086.   take the IP address and call gethostbyaddr().  The h_name member of
  1087.   the hostent{} should then be your FQDN.
  1088.  
  1089.   3.  Writing Client Applications (TCP/SOCK_STREAM)
  1090.  
  1091.   3.1.  How do I convert a string into an internet address?
  1092.  
  1093.   If you are reading a host's address from the command line, you may not
  1094.   know if you have an aaa.bbb.ccc.ddd style address, or a
  1095.   host.domain.com style address.  What I do with these, is first try to
  1096.   use it as a aaa.bbb.ccc.ddd type address, and if that fails, then do a
  1097.   name lookup on it.  Here is an example:
  1098.  
  1099.        /* Converts ascii text to in_addr struct.  NULL is returned if the
  1100.           address can not be found. */
  1101.        struct in_addr *atoaddr(char *address) {
  1102.          struct hostent *host;
  1103.          static struct in_addr saddr;
  1104.  
  1105.          /* First try it as aaa.bbb.ccc.ddd. */
  1106.          saddr.s_addr = inet_addr(address);
  1107.          if (saddr.s_addr != -1) {
  1108.            return &saddr;
  1109.          }
  1110.          host = gethostbyname(address);
  1111.          if (host != NULL) {
  1112.            return (struct in_addr *) *host->h_addr_list;
  1113.          }
  1114.          return NULL;
  1115.        }
  1116.  
  1117.   3.2.  How can my client work through a firewall/proxy server?
  1118.  
  1119.   If you are running through separate proxies for each service, you
  1120.   shouldn't need to do anything.  If you are working through sockd, you
  1121.   will need to "socksify" your application.  Details for doing this can
  1122.   be found in the package itself, which is available at:
  1123.  
  1124.        ftp://ftp.net.com/socks.cstc/socks.cstc.4.2.tar.gz
  1125.  
  1126.   you can get the socks faq at:
  1127.  
  1128.        ftp://coast.cs.purdue.edu/pub/tools/unix/socks/FAQ
  1129.  
  1130.   3.3.  Why does connect() succeed even before my server did an
  1131.   accept()?
  1132.  
  1133.   From Andrew Gierth (andrewg@microlise.co.uk):
  1134.  
  1135.   Once you have done a listen() call on your socket, the kernel is
  1136.   primed to accept connections on it. The usual UNIX implementation of
  1137.   this works by immediately completing the SYN handshake for any
  1138.   incoming valid SYN segments (connection attempts), creating the socket
  1139.   for the new connection, and keeping this new socket on an internal
  1140.   queue ready for the accept() call. So the socket is fully open before
  1141.   the accept is done.
  1142.  
  1143.   The other factor in this is the 'backlog' parameter for listen(); that
  1144.   defines how many of these completed connections can be queued at one
  1145.   time.  If the specified number is exceeded, then new incoming connects
  1146.   are simply ignored (which causes them to be retried).
  1147.  
  1148.   3.4.  Why do I sometimes loose a server's address when using more than
  1149.   one server?
  1150.  
  1151.   From Andrew Gierth (andrewg@microlise.co.uk):
  1152.  
  1153.   Take a careful look at struct hostent. Notice that almost everything
  1154.   in it is a pointer? All these pointers will refer to statically
  1155.   allocated data.
  1156.  
  1157.   For example, if you do:
  1158.  
  1159.            struct hostent *host = gethostbyname(hostname);
  1160.  
  1161.   then (as you should know) a subsequent call to gethostbyname() will
  1162.   overwrite the structure pointed to by 'host'.
  1163.  
  1164.   But if you do:
  1165.  
  1166.            struct hostent myhost;
  1167.            struct hostent *hostptr = gethostbyname(hostname);
  1168.            if (hostptr) myhost = *host;
  1169.  
  1170.   to make a copy of the hostent before it gets overwritten, then it
  1171.   still gets clobbered by a subsequent call to gethostbyname(), since
  1172.   although myhost won't get overwritten, all the data it is pointing to
  1173.   will be.
  1174.  
  1175.   You can get round this by doing a proper 'deep copy' of the hostent
  1176.   structure, but this is tedious. My recommendation would be to extract
  1177.   the needed fields of the hostent and store them in your own way.
  1178.  
  1179.   3.5.  How can I set the timeout for the connect() system call?
  1180.  
  1181.   From Richard Stevens (rstevens@noao.edu):
  1182.  
  1183.   Normally you cannot change this.  Solaris does let you do this, on a
  1184.   per-kernel basis with the ndd tcp_ip_abort_cinterval parameter.
  1185.  
  1186.   The easiest way to shorten the connect time is with an alarm() around
  1187.   the call to connect().  A harder way is to use select(), after setting
  1188.   the socket nonblocking.  Also notice that you can only shorten the
  1189.   connect time, there's normally no way to lengthen it.
  1190.  
  1191.   3.6.  system choose one for me on the connect() call?  Should I bind()
  1192.   a port number in my client program, or let the
  1193.  
  1194.   From Andrew Gierth (andrewg@microlise.co.uk):
  1195.  
  1196.   ** Let the system choose your client's port number **
  1197.  
  1198.   The exception to this, is if the server has been written to be picky
  1199.   about what client ports it will allow connections from. Rlogind and
  1200.   rshd are the classic examples. This is usually part of a Unix-specific
  1201.   (and rather weak) authentication scheme; the intent is that the server
  1202.   allows connections only from processes with root privilege. (The
  1203.   weakness in the scheme is that many O/Ss (e.g. MS-DOS) allow anyone to
  1204.   bind any port.)
  1205.  
  1206.   The rresvport() routine exists to help out clients that are using this
  1207.   scheme. It basically does the equivalent of socket() + bind(),
  1208.   choosing a port number in the range 512..1023.
  1209.   If the server is not fussy about the client's port number, then don't
  1210.   try and assign it yourself in the client, just let connect() pick it
  1211.   for you.
  1212.  
  1213.   If, in a client, you use the naive scheme of starting at a fixed port
  1214.   number and calling bind() on consecutive values until it works, then
  1215.   you buy yourself a whole lot of trouble:
  1216.  
  1217.   The problem is if the server end of your connection does an active
  1218.   close.  (E.G. client sends 'QUIT' command to server, server responds
  1219.   by closing the connection). That leaves the client end of the
  1220.   connection in CLOSED state, and the server end in TIME_WAIT state. So
  1221.   after the client exits, there is no trace of the connection on the
  1222.   client end.
  1223.  
  1224.   Now run the client again. It will pick the same port number, since as
  1225.   far as it can see, it's free. But as soon as it calls connect(), the
  1226.   server finds that you are trying to duplicate an existing connection
  1227.   (although one in TIME_WAIT). It is perfectly entitled to refuse to do
  1228.   this, so you get, I suspect, ECONNREFUSED from connect(). (Some
  1229.   systems may sometimes allow the connection anyway, but you can't rely
  1230.   on it.)
  1231.  
  1232.   This problem is especially dangerous because it doesn't show up unless
  1233.   the client and server are on different machines. (If they are the same
  1234.   machine, then the client won't pick the same port number as before).
  1235.   So you can get bitten well into the development cycle (if you do what
  1236.   I suspect most people do, and test client & server on the same box
  1237.   initially).
  1238.  
  1239.   Even if your protocol has the client closing first, there are still
  1240.   ways to produce this problem (e.g. kill the server).
  1241.  
  1242.   3.7.  Why do I get "connection refused" when the server isn't running?
  1243.  
  1244.   The connect() call will only block while it is waiting to establish a
  1245.   connection.  When there is no server waiting at the other end, it gets
  1246.   notified that the connection can not be established, and gives up with
  1247.   the error message you see.  This is a good thing, since if it were not
  1248.   the case clients might wait for ever for a service which just doesn't
  1249.   exist.  Users would think that they were only waiting for the
  1250.   connection to be established, and then after a while give up,
  1251.   muttering something about crummy software under their breath.
  1252.  
  1253.   3.8.  over the socket ? Is there a way to have a dynamic buffer ?
  1254.   What does one do when one does not know how much information is com-
  1255.   ming
  1256.  
  1257.   This question asked by Niranjan Perera (perera@mindspring.com).
  1258.  
  1259.   When the size of the incoming data is unknown, you can either make the
  1260.   size of the buffer as big as the largest possible (or likely) buffer,
  1261.   or you can re-size the buffer on the fly during your read.  When you
  1262.   malloc() a large buffer, most (if not all) varients of unix will only
  1263.   allocate address space, but not physical pages of ram.  As more and
  1264.   more of the buffer is used, the kernel allocates physical memory.
  1265.   This means that malloc'ing a large buffer will not waste resources
  1266.   unless that memory is used, and so it is perfectly acceptable to ask
  1267.   for a meg of ram when you expect only a few K.
  1268.  
  1269.   On the other hand, a more elegant solution that does not depend on the
  1270.   inner workings of the kernel is to use realloc() to expand the buffer
  1271.   as required in say 4K chunks (since 4K is the size of a page of ram on
  1272.   most systems).  I may add something like this to sockhelp.c in the
  1273.   example code one day.
  1274.  
  1275.   4.  Writing Server Applications (TCP/SOCK_STREAM)
  1276.  
  1277.   4.1.  How come I get "address already in use" from bind()?
  1278.  
  1279.   You get this when the address is already in use.  (Oh, you figured
  1280.   that much out?)  The most common reason for this is that you have
  1281.   stopped your server, and then re-started it right away.  The sockets
  1282.   that were used by the first incarnation of the server are still
  1283.   active.  This is further explained in ``2.7 Please explain the
  1284.   TIME_WAIT state.'', and ``2.5 How do I properly close a socket?''.
  1285.  
  1286.   4.2.  Why don't my sockets close?
  1287.  
  1288.   When you issue the close() system call, you are closing your interface
  1289.   to the socket, not the socket itself.  It is up to the kernel to close
  1290.   the socket.  Sometimes, for really technical reasons, the socket is
  1291.   kept alive for a few minutes after you close it.  It is normal, for
  1292.   example for the socket to go into a TIME_WAIT state, on the server
  1293.   side, for a few minutes.  People have reported ranges from 20 seconds
  1294.   to 4 minutes to me.  The official standard says that it should be 4
  1295.   minutes.  On my Linux system it is about 2 minutes.  This is explained
  1296.   in great detail in ``2.7 Please explain the TIME_WAIT state.''.
  1297.  
  1298.   4.3.  How can I make my server a daemon?
  1299.  
  1300.   There are two approaches you can take here.  The first is to use inetd
  1301.   to do all the hard work for you.  The second is to do all the hard
  1302.   work yourself.
  1303.  
  1304.   If you use inetd, you simply use stdin, stdout, or stderr for your
  1305.   socket.  (These three are all created with dup() from the real socket)
  1306.   You can use these as you would a socket in your code.  The inetd
  1307.   process will even close the socket for you when you are done.
  1308.  
  1309.   If you wish to write your own server, there is a detailed explanation
  1310.   in "Unix Network Programming" by Richard Stevens (see ``1.5 Where can
  1311.   I get source code for the book [book  title]?''). I also picked up
  1312.   this posting from comp.unix.programmer, by Nikhil Nair
  1313.   (nn201@cus.cam.ac.uk):
  1314.  
  1315.   I worked all this lot out from the GNU C Library Manual (on-line
  1316.   documentation).  Here's some code I wrote - you can adapt it as necessary:
  1317.  
  1318.   #include <stdio.h>
  1319.   #include <stdlib.h>
  1320.   #include <ctype.h>
  1321.   #include <unistd.h>
  1322.   #include <fcntl.h>
  1323.   #include <signal.h>
  1324.   #include <sys/wait.h>
  1325.  
  1326.   /* Global variables */
  1327.   volatile sig_atomic_t keep_going = 1; /* controls program termination */
  1328.  
  1329.   /* Function prototypes: */
  1330.   void termination_handler (int signum); /* clean up before termination */
  1331.  
  1332.   int
  1333.   main (void)
  1334.   {
  1335.     ...
  1336.  
  1337.     if (chdir (HOME_DIR))         /* change to directory containing data
  1338.                                       files */
  1339.      {
  1340.        fprintf (stderr, "`%s': ", HOME_DIR);
  1341.        perror (NULL);
  1342.        exit (1);
  1343.      }
  1344.  
  1345.      /* Become a daemon: */
  1346.      switch (fork ())
  1347.        {
  1348.        case -1:                    /* can't fork */
  1349.          perror ("fork()");
  1350.          exit (3);
  1351.        case 0:                     /* child, process becomes a daemon: */
  1352.          close (STDIN_FILENO);
  1353.          close (STDOUT_FILENO);
  1354.          close (STDERR_FILENO);
  1355.          if (setsid () == -1)      /* request a new session (job control) */
  1356.            {
  1357.              exit (4);
  1358.            }
  1359.          break;
  1360.        default:                    /* parent returns to calling process: */
  1361.          return 0;
  1362.        }
  1363.  
  1364.      /* Establish signal handler to clean up before termination: */
  1365.      if (signal (SIGTERM, termination_handler) == SIG_IGN)
  1366.        signal (SIGTERM, SIG_IGN);
  1367.      signal (SIGINT, SIG_IGN);
  1368.      signal (SIGHUP, SIG_IGN);
  1369.  
  1370.      /* Main program loop */
  1371.      while (keep_going)
  1372.        {
  1373.          ...
  1374.        }
  1375.      return 0;
  1376.   }
  1377.  
  1378.   void
  1379.   termination_handler (int signum)
  1380.   {
  1381.     keep_going = 0;
  1382.     signal (signum, termination_handler);
  1383.   }
  1384.  
  1385.   4.4.  How can I listen on more than one port at a time?
  1386.  
  1387.   The best way to do this is with the select() call.  This tells the
  1388.   kernel to let you know when a socket is available for use.  You can
  1389.   have one process do i/o with multiple sockets with this call.  If you
  1390.   want to wait for a connect on sockets 4, 6 and 10 you might execute
  1391.   the following code snippet:
  1392.  
  1393.        fd_set socklist;
  1394.  
  1395.        FD_ZERO(&socklist); /* Always clear the structure first. */
  1396.        FD_SET(4, &socklist);
  1397.        FD_SET(6, &socklist);
  1398.        FD_SET(10, &socklist);
  1399.        if (select(11, NULL, &socklist, NULL, NULL) < 0)
  1400.          perror("select");
  1401.  
  1402.   The kernel will notify us as soon as a file descriptor which is less
  1403.   than 11 (the first parameter to select()), and is a member of our
  1404.   socklist becomes available for writing.  See the man page on select()
  1405.   for more details.
  1406.  
  1407.   4.5.  What exactly does SO_REUSEADDR do?
  1408.  
  1409.   This socket option tells the kernel that even if this port is busy, go
  1410.   ahead and reuse it anyway.  It is useful if your server has been shut
  1411.   down, and then restarted right away while sockets are still active on
  1412.   its port.  You should be aware that if any unexpected data comes in,
  1413.   it may confuse your server, but while this is possible, it is not
  1414.   likely.
  1415.  
  1416.   It has been pointed out that "A socket is a 5 tuple (proto, local
  1417.   addr, local port, remote addr, remote port).  SO_REUSEADDR just says
  1418.   that you can reuse local addresses.  The 5 tuple still must be
  1419.   unique!" by Michael Hunter (mphunter@qnx.com).  This is true, and this
  1420.   is why it is very unlikely that unexpected data will ever be seen by
  1421.   your server.  The danger is that such a 5 tuple is still floating
  1422.   around on the net, and while it is bouncing around, a new connection
  1423.   from the same client, on the same system, happens to get the same
  1424.   remote port.  This is explained by Richard Stevens in ``2.7 Please
  1425.   explain the TIME_WAIT state.''.
  1426.  
  1427.   4.6.  What exactly does SO_LINGER do?
  1428.  
  1429.   On some unixes this does nothing.  On others, it instructs the kernel
  1430.   to abort tcp connections instead of closing them properly.  This can
  1431.   be dangerous.  If you are not clear on this, see ``2.7 Please explain
  1432.   the TIME_WAIT state.''.
  1433.   4.7.  What exactly does SO_KEEPALIVE do?
  1434.  
  1435.   From Andrew Gierth (andrewg@microlise.co.uk):
  1436.  
  1437.   The SO_KEEPALIVE option causes a packet (called a 'keepalive probe')
  1438.   to be sent to the remote system if a long time (by default, more than
  1439.   2 hours) passes with no other data being sent or received. This packet
  1440.   is designed to provoke an ACK response from the peer. This enables
  1441.   detection of a peer which has become unreachable (e.g. powered off or
  1442.   disconnected from the net).  See ``2.8 Why does it take so long to
  1443.   detect that the peer died?''  for further discussion.
  1444.  
  1445.   Note that the figure of 2 hours comes from RFC1122, "Requirements for
  1446.   Internet Hosts". The precise value should be configurable, but I've
  1447.   often found this to be difficult.  The only implementation I know of
  1448.   that allows the keepalive interval to be set per-connection is SVR4.2.
  1449.  
  1450.   4.8.  How can I bind() to a port number < 1024?
  1451.  
  1452.   From Andrew Gierth (andrewg@microlise.co.uk):
  1453.  
  1454.   The restriction on access to ports < 1024 is part of a (fairly weak)
  1455.   security scheme particular to UNIX. The intention is that servers (for
  1456.   example rlogind, rshd) can check the port number of the client, and if
  1457.   it is < 1024, assume the request has been properly authorised at the
  1458.   client end.
  1459.  
  1460.   The practical upshot of this, is that binding a port number < 1024 is
  1461.   reserved to processes having an effective UID == root.
  1462.  
  1463.   This can, occasionally, itself present a security problem, e.g. when a
  1464.   server process needs to bind a well-known port, but does not itself
  1465.   need root access (news servers, for example). This is often solved by
  1466.   creating a small program which simply binds the socket, then restores
  1467.   the real userid and exec()s the real server. This program can then be
  1468.   made setuid root.
  1469.  
  1470.   4.9.  How do I get my server to find out the client's address / host-
  1471.   name?
  1472.  
  1473.   From Andrew Gierth (andrewg@microlise.co.uk):
  1474.  
  1475.   After accept()ing a connection, use getpeername() to get the address
  1476.   of the client.  To get the hostname, see ``4.10 How do I use the
  1477.   gethostbyaddr() function?''.
  1478.  
  1479.   The client's address is of course, also returned on the accept(), but
  1480.   it is essential to initialise the address-length parameter before the
  1481.   accept call for this will work.
  1482.  
  1483.   4.10.  How do I use the gethostbyaddr() function?
  1484.  
  1485.   From Andrew Gierth (andrewg@microlise.co.uk):
  1486.  
  1487.   Many people are confused by the fact that the address parameter to
  1488.   this function is declared as char*. That doesn't mean it's a character
  1489.   string representation of the address!
  1490.  
  1491.   The first parameter should really have been declared as void*, not
  1492.   char*; but the functions probably precede this extension to the C
  1493.   language. If you are using AF_INET addresses, then you should use a
  1494.   struct in_addr *, cast to a char*, as in the following example:
  1495.  
  1496.        struct sockaddr_in addr;
  1497.        struct hostent *host;
  1498.         ...
  1499.        host = gethostbyaddr((char *) &addr.sin_addr, sizeof(addr.sin_addr),
  1500.                             AF_INET);
  1501.  
  1502.   4.11.  How should I choose a port number for my server?
  1503.  
  1504.   The list of registered port assignments can be found in STD 2 or RFC
  1505.   1700.  Choose one that isn't already registered, and isn't in
  1506.   /etc/services on your system.  It is also a good idea to let users
  1507.   customize the port number in case of conflicts with other un-
  1508.   registered port numbers in other servers.  The best way of doing this
  1509.   is hardcoding a service name, and using getservbyname() to lookup the
  1510.   actual port number.  This method allows users to change the port your
  1511.   server binds to by simply editing the /etc/services file.
  1512.  
  1513.   4.12.  What is the difference between SO_REUSEADDR and SO_REUSEPORT?
  1514.  
  1515.   SO_REUSEADDR allows your server to bind to an address which is in a
  1516.   TIME_WAIT state.  It does not allow more than one server to bind to
  1517.   the same address.  It was mentioned that use of this flag can create a
  1518.   security risk because another server can bind to a the same port, by
  1519.   binding to a specific address as opposed to INADDR_ANY.  The
  1520.   SO_REUSEPORT flag allows multiple processes to bind to the same
  1521.   address provided all of them use the SO_REUSEPORT option.
  1522.  
  1523.   From Richard Stevens (rstevens@noao.edu):
  1524.  
  1525.   This is a newer flag that appeared in the 4.4BSD multicasting code
  1526.   (although that code was from elsewhere, so I am not sure just who
  1527.   invented the new SO_REUSEPORT flag).
  1528.  
  1529.   What this flag lets you do is rebind a port that is already in use,
  1530.   but only if all users of the port specify the flag.  I believe the
  1531.   intent is for multicasting apps, since if you're running the same app
  1532.   on a host, all need to bind the same port.  But the flag may have
  1533.   other uses.  For example the following is from a post in February:
  1534.  
  1535.   From Stu Friedberg (stuartf@sequent.com):
  1536.  
  1537.        SO_REUSEPORT is also useful for eliminating the
  1538.        try-10-times-to-bind hack in ftpd's data connection setup
  1539.        routine.  Without SO_REUSEPORT, only one ftpd thread can
  1540.        bind to TCP (lhost, lport, INADDR_ANY, 0) in preparation for
  1541.        connecting back to the client.  Under conditions of heavy
  1542.        load, there are more threads colliding here than the
  1543.        try-10-times hack can accomodate.  With SO_REUSEPORT, things
  1544.        work nicely and the hack becomes unnecessary.
  1545.  
  1546.   I have also heard that DEC OSF supports the flag.  Also note that
  1547.   under 4.4BSD, if you are binding a multicast address, then
  1548.   SO_REUSEADDR is condisered the same as SO_REUSEPORT (p. 731 of "TCP/IP
  1549.   Illustrated, Volume 2").  I think under Solaris you just replace
  1550.   SO_REUSEPORT with SO_REUSEADDR.
  1551.  
  1552.   From a later Stevens posting, with minor editing:
  1553.  
  1554.   Basically SO_REUSEPORT is a BSD'ism that arose when multicasting was
  1555.   added, even thought it was not used in the original Steve Deering
  1556.   code.  I believe some BSD-derived systems may also include it (OSF,
  1557.   now Digital Unix, perhaps?).  SO_REUSEPORT lets you bind the same
  1558.   address *and* port, but only if all the binders have specified it.
  1559.   But when binding a multicast address (its main use), SO_REUSEADDR is
  1560.   considered identical to SO_REUSEPORT (p. 731, "TCP/IP Illustrated,
  1561.   Volume 2").  So for portability of multicasting applications I always
  1562.   use SO_REUSEADDR.
  1563.  
  1564.   4.13.  How can I write a multi-homed server?
  1565.  
  1566.   The original question was actually from Shankar Ramamoorthy
  1567.   (shankar@viman.com):
  1568.  
  1569.        I want to run a server on a multi-homed host. The host is
  1570.        part of two networks and has two ethernet cards. I want to
  1571.        run a server on this machine, binding to a pre-determined
  1572.        port number. I want clients on either subnet to be able to
  1573.        send broadcast packates to the port and have the server
  1574.        receive them.
  1575.  
  1576.   And answered by Andrew Gierth (andrewg@microlise.co.uk):
  1577.  
  1578.   Your first question in this scenario is, do you need to know which
  1579.   subnet the packet came from? I'm not at all sure that this can be
  1580.   reliably determined in all cases.
  1581.  
  1582.   If you don't really care, then all you need is one socket bound to
  1583.   INADDR_ANY. That simplifies things greatly.
  1584.  
  1585.   If you do care, then you have to bind multiple sockets. You are
  1586.   obviously attempting to do this in your code as posted, so I'll assume
  1587.   you do.
  1588.  
  1589.        I was hoping that something like the following would work.
  1590.        Will it?  This is on Sparcs running Solaris 2.4/2.5.
  1591.  
  1592.   I don't have access to Solaris, but I'll comment based on my
  1593.   experience with other Unixes.
  1594.  
  1595.   [Shankar's original code omitted]
  1596.  
  1597.   What you are doing is attempting to bind all the current hosts unicast
  1598.   addresses as listed in hosts/NIS/DNS. This may or may not reflect
  1599.   reality, but much more importantly, neglects the broadcast addresses.
  1600.   It seems to be the case in the majority of implementations that a
  1601.   socket bound to a unicast address will not see incoming packets with
  1602.   broadcast addresses as their destinations.
  1603.  
  1604.   The approach I've taken is to use SIOCGIFCONF to retrieve the list of
  1605.   active network interfaces, and SIOCGIFFLAGS and SIOCGIFBRDADDR to
  1606.   identify broadcastable interfaces and get the broadcast addresses.
  1607.   Then I bind to each unicast address, each broadcast address, and to
  1608.   INADDR_ANY as well. That last is necessary to catch packets that are
  1609.   on the wire with INADDR_BROADCAST in the destination.  (SO_REUSEADDR
  1610.   is necessary to bind INADDR_ANY as well as the specific addresses.)
  1611.  
  1612.   This gives me very nearly what I want. The wrinkles are:
  1613.  
  1614.   o  I don't assume that getting a packet through a particular socket
  1615.      necessarily means that it actually arrived on that interface.
  1616.  
  1617.   o  I can't tell anything about which subnet a packet originated on if
  1618.      it's destination was INADDR_BROADCAST.
  1619.  
  1620.   o  On some stacks, apparently only those with multicast support, I get
  1621.      duplicate incoming messages on the INADDR_ANY socket.
  1622.  
  1623.   4.14.  How can I read only one character at a time?
  1624.  
  1625.   This question is usually asked by people who are testing their server
  1626.   with telnet, and want it to process their keystrokes one character at
  1627.   a time.  The correct technique is to use a psuedo terminal (pty).
  1628.   More on that in a minute.
  1629.  
  1630.   According to Roger Espel Llima (espel@drakkar.ens.fr), you can have
  1631.   your server send a sequence of control characters: 0xff 0xfb 0x01 0xff
  1632.   0xfb 0x03 0xff 0xfd 0x0f3, which translates to IAC WILL ECHO IAC WILL
  1633.   SUPPRESS-GO-AHEAD IAC DO SUPPRESS-GO-AHEAD.  For more information on
  1634.   what this means, check out std8, std28 and std29.  Roger also gave the
  1635.   following tips:
  1636.  
  1637.   o  This code will suppress echo, so you'll have to send the characters
  1638.      the user types back to the client if you want the user to see them.
  1639.  
  1640.   o  Carriage returns will be followed by a null character, so you'll
  1641.      have to expect them.
  1642.  
  1643.   o  If you get a 0xff, it will be followed by two more characters.
  1644.      These are telnet escapes.
  1645.  
  1646.   Use of a pty would also be the correct way to execute a child process
  1647.   and pass the i/o to a socket.
  1648.  
  1649.   I'll add pty stuff to the list of example source I'd like to add to
  1650.   the faq.  If someone has some source they'd like to contribute
  1651.   (without copyright) to the faq which demonstrates use of pty's, please
  1652.   email me!
  1653.  
  1654.   5.  Writing UDP/SOCK_DGRAM applications
  1655.  
  1656.   Warning:  This is the first release of the faq to have a section on
  1657.   UDP.  This means that the answers haven't had time to be read by all
  1658.   the experts in comp.unix.programmer, and corrected if they are wrong.
  1659.  
  1660.   5.1.  When should I use UDP instead of TCP?
  1661.  
  1662.   UDP is good for sending messages from one system to another when the
  1663.   order isn't important and you don't need all of the messages to get to
  1664.   the other machine.  This is why I've only used UDP once to write the
  1665.   example code for the faq.  Usually TCP is a better solution.  It saves
  1666.   you having to write code to ensure that messages make it to the
  1667.   desired destination, or to ensure the message ordering.  Keep in mind
  1668.   that every additional line of code you add to your project in another
  1669.   line that could contain a potentially expensive bug.
  1670.  
  1671.   If you find that TCP is too slow for your needs you may be able to get
  1672.   better performance with UDP so long as you are willing to sacrifice
  1673.   message order and/or reliability.
  1674.  
  1675.   UDP must be used to multicast messages to more than one other machine
  1676.   at the same time.  With TCP an application would have to open separate
  1677.   connections to each of the destination machines and send the message
  1678.   once to each target machine.  This limits your application to only
  1679.   communicate with machines that it already knows about.
  1680.  
  1681.   5.2.  What is the difference between "connected" and "unconnected"
  1682.   sockets?
  1683.  
  1684.   From Andrew Gierth (andrewg@microlise.co.uk):
  1685.  
  1686.   If a UDP socket is unconnected, which is the normal state after a
  1687.   bind() call, then send() or write() are not allowed, since no
  1688.   destination address is available; only sendto() can be used to send
  1689.   data.
  1690.  
  1691.   Calling connect() on the socket simply records the specified address
  1692.   and port number as being the desired communications partner. That
  1693.   means that send() or write() are now allowed; they use the destination
  1694.   address and port given on the connect call as the destination of the
  1695.   packet.
  1696.  
  1697.   5.3.  of the socket?  Does doing a connect() call affect the receive
  1698.   behaviour
  1699.  
  1700.   From Richard Stevens (rstevens@noao.edu):
  1701.  
  1702.   Yes, in two ways.  First, only datagrams from your "connected peer"
  1703.   are returned.  All others arriving at your port are not delivered to
  1704.   you.
  1705.  
  1706.   But most importantly, a UDP socket must be connected to receive ICMP
  1707.   errors.  Pp. 748-749 of "TCP/IP Illustrated, Volume 2" give all the
  1708.   gory details on why this is so.
  1709.  
  1710.   5.4.  How can I read ICMP errors from "connected" UDP sockets?
  1711.  
  1712.   If the target machine discards the message because there is no process
  1713.   reading on the requested port number, it sends an ICMP message to your
  1714.   machine which will cause the next system call on the socket to return
  1715.   ECONNREFUSED.  Since delivery of ICMP messages is not guarenteed you
  1716.   may not recieve this notification on the first transaction.
  1717.  
  1718.   Remember that your socket must be "connected" in order to receive the
  1719.   ICMP errors.  I've been told that Linux will return them on
  1720.   "unconnected" sockets, but I haven't verfied it.  This may cause
  1721.   porting problems if your application isn't ready for it.
  1722.  
  1723.   5.5.  How can I be sure that a UDP message is received?
  1724.  
  1725.   You have to design your protocol to expect a confirmation back from
  1726.   the destination when a message is received.  Of course is the
  1727.   confirmation is sent by UDP, then it too is unreliable and may not
  1728.   make it back to the sender.  If the sender does not get confirmation
  1729.   back by a certain time, it will have to re-transmit the message, maybe
  1730.   more than once.  Now the receiver has a problem because it may have
  1731.   already received the message, so some way of dropping duplicates is
  1732.   required.  Most protocols use a message numbering scheme so that the
  1733.   receiver can tell that it has already processed this message and
  1734.   return another confirmation.  Confirmations will also have to
  1735.   reference the message number so that the sender can tell which message
  1736.   is being confirmed.  Confused?  That's why I stick with TCP.
  1737.   5.6.  How can I be sure that UDP messages are received in order?
  1738.  
  1739.   You can't.  What you can do is make sure that messages are processed
  1740.   in order by using a numbering system as mentioned in ``5.5 How can I
  1741.   be sure that a UDP message is received?''.  If you need your messages
  1742.   to be received and be received in order you should really consider
  1743.   switching to TCP.  It is unlikely that you will be able to do a better
  1744.   job implementing this sort of protocol than the TCP people already
  1745.   have, without a significant investment of time.
  1746.  
  1747.   5.7.  How often should I re-transmit un-acknowleged messages?
  1748.  
  1749.   The simplest thing to do is simply pick a fairly small delay such as
  1750.   one second and stick with it.  The problem is that this can congest
  1751.   your network with useless traffic if there is a problem on the lan or
  1752.   on the other machine, and this added traffic may only serve to make
  1753.   the problem worse.
  1754.  
  1755.   A better technique, described with source code in "UNIX Network
  1756.   Programming" by Richard Stevens (see ``1.5 Where can I get source code
  1757.   for the book [book title]?''), is to use an adaptive timeout with an
  1758.   exponential backoff.  This technique keeps statistical information on
  1759.   the time it is taking messages to reach a host and adjusts timeout
  1760.   values accordingly.  It also doubles the timeout each time it is
  1761.   reached as to not flood the network with useless datagrams.  Richard
  1762.   has been kind enough to post the source code for the book on the web.
  1763.   Check out his home page at http://www.noao.edu/~rstevens.
  1764.  
  1765.   5.8.  How come only the first part of my datagram is getting through?
  1766.  
  1767.   This has to do with the maximum size of a datagram on the two machines
  1768.   involved.  This depends on the sytems involved, and the MTU (Maximum
  1769.   Transmission Unit).  According to "UNIX Network Programming", all
  1770.   TCP/IP implementations must support a minimum IP datagram size of 576
  1771.   bytes, regardless of the MTU.  Assuming a 20 byte IP header, this
  1772.   leaves 556 bytes as a safe maximum size for UDP messages.  The maximum
  1773.   size is 65516 bytes.  Some platforms support IP fragmentation which
  1774.   will allow datagrams to be broken up (because of MTU values) and then
  1775.   re-assembled on the other end, but not all implementations support
  1776.   this.
  1777.  
  1778.   This information is taken from my reading of "UNIX Netowrk
  1779.   Programming" (see ``1.5 Where can I get source code for the book [book
  1780.   title]?'').  I had hoped to test it out myself before releasing this
  1781.   copy of the faq, but as usual the 21st came more quickly than I would
  1782.   like!  I would like to hear from anyone who has information to add to
  1783.   this (or any other) section.
  1784.  
  1785.   6.  Sample Source Code
  1786.  
  1787.   The sample source code is no longer included in the faq.  To get it,
  1788.   please download it from one of the unix-socket-faq www pages:
  1789.  
  1790.        http://www.auroraonline.com/sock-faq
  1791.        http://kipper.york.ac.uk/~vic/sock-faq
  1792.  
  1793.   If you don't have web access, you can ftp it with ftpmail by following
  1794.   the following instructions.  Please do not use the ftp server if you
  1795.   have access to the web, since computain.com is connected only by a
  1796.   28.8 modem, and you'd be amazed how much traffic this faq generates.
  1797.  
  1798.   To get the sample source by mail, send mail to ftpmail@decwrl.dec.com,
  1799.   with no subject line and a body like this:
  1800.  
  1801.          reply <put your email address here>
  1802.          connect ftp.computain.com
  1803.          binary
  1804.          uuencode
  1805.          get pub/sockets/examples.tar.gz
  1806.          quit
  1807.  
  1808.   Save the reply as examples.uu, and type:
  1809.  
  1810.          % uudecode examples.uu
  1811.          % gunzip examples.tar.gz
  1812.          % tar xf examples.tar
  1813.  
  1814.   This will create a directory called socket-faq-examples which contains
  1815.   the sample code from this faq, plus a sample client and server for
  1816.   both tcp and udp.
  1817.  
  1818.   Note that this package requires the gnu unzip program to be installed
  1819.   on your system.  It is very common, but if you don't have it you can
  1820.   get the source for it from:
  1821.  
  1822.        ftp://prep.ai.mit.edu/pub/gnu/gzip-1.2.4.tar
  1823.  
  1824.   If you don't have ftp access, you can obtain it in a way similar to
  1825.   obtaining the sample source.  I'll leave the exact changes to the body
  1826.   of the message as an excersise for the reader.
  1827.  
  1828.