tcp_ami.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:20k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Amiga TCP/IP routines
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 1 August 1988
  13.  * Last Edited: 14 June 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made available
  24.  * "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. #undef write /* don't use redefined write() */
  36.  
  37. static tcptimeout_t tmoh = NIL; /* TCP timeout handler routine */
  38. static long ttmo_open = 0; /* TCP timeouts, in seconds */
  39. static long ttmo_read = 0;
  40. static long ttmo_write = 0;
  41. static long allowreversedns = /* allow reverse DNS lookup */
  42. #ifdef DISABLE_REVERSE_DNS_LOOKUP
  43.   NIL /* Not recommended, especially if using Kerberos authentication */
  44. #else
  45.   T
  46. #endif
  47.   ;
  48. /* Local function prototypes */
  49. int tcp_socket_open (struct sockaddr_in *sin,char *tmp,int *ctr,char *hst,
  50.      unsigned long port);
  51. long tcp_abort (TCPSTREAM *stream);
  52. char *tcp_name (struct sockaddr_in *sin,long flag);
  53. /* TCP/IP manipulate parameters
  54.  * Accepts: function code
  55.  *     function-dependent value
  56.  * Returns: function-dependent return value
  57.  */
  58. void *tcp_parameters (long function,void *value)
  59. {
  60.   switch ((int) function) {
  61.   case SET_TIMEOUT:
  62.     tmoh = (tcptimeout_t) value;
  63.     break;
  64.   case GET_TIMEOUT:
  65.     value = (void *) tmoh;
  66.     break;
  67.   case SET_OPENTIMEOUT:
  68.     ttmo_open = (long) value;
  69.     break;
  70.   case GET_OPENTIMEOUT:
  71.     value = (void *) ttmo_open;
  72.     break;
  73.   case SET_READTIMEOUT:
  74.     ttmo_read = (long) value;
  75.     break;
  76.   case GET_READTIMEOUT:
  77.     value = (void *) ttmo_read;
  78.     break;
  79.   case SET_WRITETIMEOUT:
  80.     ttmo_write = (long) value;
  81.     break;
  82.   case GET_WRITETIMEOUT:
  83.     value = (void *) ttmo_write;
  84.     break;
  85.   case SET_ALLOWREVERSEDNS:
  86.     allowreversedns = (long) value;
  87.     break;
  88.   case GET_ALLOWREVERSEDNS:
  89.     value = (void *) allowreversedns;
  90.     break;
  91.   default:
  92.     value = NIL; /* error case */
  93.     break;
  94.   }
  95.   return value;
  96. }
  97. /* TCP/IP open
  98.  * Accepts: host name
  99.  *     contact service name
  100.  *     contact port number and optional silent flag
  101.  * Returns: TCP/IP stream if success else NIL
  102.  */
  103. TCPSTREAM *tcp_open (char *host,char *service,unsigned long port)
  104. {
  105.   TCPSTREAM *stream = NIL;
  106.   int i,sock;
  107.   int ctr = 0;
  108.   int silent = (port & 0x80000000) ? T : NIL;
  109.   int *ctrp = &ctr;
  110.   char *s;
  111.   struct sockaddr_in sin;
  112.   struct hostent *he;
  113.   char hostname[MAILTMPLEN];
  114.   char tmp[MAILTMPLEN];
  115.   struct servent *sv = NIL;
  116.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  117.   void *data;
  118.   port &= 0x7fffffff; /* erase silent flag */
  119.   if (service) { /* service specified? */
  120.     if (*service == '*') { /* yes, special alt driver kludge? */
  121.       ctrp = NIL; /* yes, don't do open timeout */
  122.       sv = getservbyname (service + 1,"tcp");
  123.     }
  124.     else sv = getservbyname (service,"tcp");
  125.   }
  126. /* user service name port */
  127.   if (sv) port = ntohs (sin.sin_port = sv->s_port);
  128.   /* copy port number in network format */
  129.   else sin.sin_port = htons (port);
  130.   /* The domain literal form is used (rather than simply the dotted decimal
  131.      as with other Amiga programs) because it has to be a valid "host name"
  132.      in mailsystem terminology. */
  133. /* look like domain literal? */
  134.   if (host[0] == '[' && host[(strlen (host))-1] == ']') {
  135.     strcpy (hostname,host+1); /* yes, copy number part */
  136.     hostname[(strlen (hostname))-1] = '';
  137.     if ((sin.sin_addr.s_addr = inet_addr (hostname)) != -1) {
  138.       sin.sin_family = AF_INET; /* family is always Internet */
  139.       strcpy (hostname,host); /* hostname is user's argument */
  140. /* get an open socket for this system */
  141.       sock = tcp_socket_open (&sin,tmp,ctrp,hostname,port);
  142.     }
  143.     else {
  144.       sprintf (tmp,"Bad format domain-literal: %.80s",host);
  145.       mm_log (tmp,ERROR);
  146.       return NIL;
  147.     }
  148.   }
  149.   else { /* lookup host name */
  150.     (*bn) (BLOCK_DNSLOOKUP,NIL);
  151.     data = (*bn) (BLOCK_SENSITIVE,NIL);
  152. /* quell alarms */
  153.     if (he = gethostbyname (lcase (strcpy (hostname,host)))) {
  154.       (*bn) (BLOCK_NONSENSITIVE,data);
  155.       (*bn) (BLOCK_NONE,NIL);
  156. /* copy address type */
  157.       sin.sin_family = he->h_addrtype;
  158. /* copy host name */
  159.       strcpy (hostname,he->h_name);
  160. #ifdef HOST_NOT_FOUND /* muliple addresses only on DNS systems */
  161.       for (sock = -1,i = 0; (sock < 0) && (s = he->h_addr_list[i]); i++) {
  162. if (i && !silent) mm_log (tmp,WARN);
  163. memcpy (&sin.sin_addr,s,he->h_length);
  164. (*bn) (BLOCK_TCPOPEN,NIL);
  165. sock = tcp_socket_open (&sin,tmp,ctrp,hostname,port);
  166. (*bn) (BLOCK_NONE,NIL);
  167.       }
  168. #else /* the one true address then */
  169.       memcpy (&sin.sin_addr,he->h_addr,he->h_length);
  170.       (*bn) (BLOCK_DNSLOOKUP,NIL);
  171.       sock = tcp_socket_open (&sin,tmp,ctrp,hostname,port);
  172.       (*bn) (BLOCK_NONE,NIL);
  173. #endif
  174.     }
  175.     else {
  176.       (*bn) (BLOCK_NONSENSITIVE,data);
  177.       (*bn) (BLOCK_NONE,NIL);
  178.       sprintf (tmp,"No such host as %.80s",host);
  179.       mm_log (tmp,ERROR);
  180.       return NIL;
  181.     }
  182.   }
  183.   if (sock >= 0)  { /* won */
  184.     stream = (TCPSTREAM *) memset (fs_get (sizeof (TCPSTREAM)),0,
  185.    sizeof (TCPSTREAM));
  186.     stream->port = port; /* port number */
  187. /* init sockets */
  188.     stream->tcpsi = stream->tcpso = sock;
  189. /* stash in the snuck-in byte */
  190.     if (stream->ictr = ctr) *(stream->iptr = stream->ibuf) = tmp[0];
  191. /* copy official host name */
  192.     stream->host = cpystr (hostname);
  193.   }
  194.   else if (!silent) mm_log (tmp,ERROR);
  195.   return stream; /* return success */
  196. }
  197. /* Open a TCP socket
  198.  * Accepts: Internet socket address block
  199.  *     scratch buffer
  200.  *     pointer to "first byte read in" storage or NIL
  201.  *     host name for error message
  202.  *     port number for error message
  203.  * Returns: socket if success, else -1 with error string in scratch buffer
  204.  */
  205. int tcp_socket_open (struct sockaddr_in *sin,char *tmp,int *ctr,char *hst,
  206.      unsigned long port)
  207. {
  208.   int i,sock,flgs;
  209.   struct protoent *pt = getprotobyname ("ip");
  210.   fd_set fds,efds;
  211.   struct timeval tmo;
  212.   sprintf (tmp,"Trying IP address [%s]",inet_ntoa (sin->sin_addr));
  213.   mm_log (tmp,NIL);
  214. /* make a socket */
  215.   if ((sock = socket (sin->sin_family,SOCK_STREAM,pt ? pt->p_proto : 0)) < 0) {
  216.     sprintf (tmp,"Unable to create TCP socket: %s",strerror (errno));
  217.     return -1;
  218.   }
  219.   if (!ctr) { /* no open timeout wanted */
  220. /* open connection */
  221.     while ((i = connect (sock,(struct sockaddr *) sin,
  222.  sizeof (struct sockaddr_in))) < 0 && errno == EINTR);
  223.     if (i < 0) { /* failed? */
  224.       sprintf (tmp,"Can't connect to %.80s,%lu: %s",hst,port,strerror (errno));
  225.       close (sock); /* flush socket */
  226.       return -1;
  227.     }
  228.   }
  229.   else { /*  want open timeout */
  230. /* get current socket flags */
  231.     flgs = fcntl (sock,F_GETFL,0);
  232. /* set non-blocking */
  233.     fcntl (sock,F_SETFL,flgs | FNDELAY);
  234. /* open connection */
  235.     while ((i = connect (sock,(struct sockaddr *) sin,
  236.        sizeof (struct sockaddr_in))) < 0 && errno == EINTR);
  237.     if (i < 0) switch (errno) { /* failed? */
  238.     case EAGAIN: /* DG brain damage */
  239.     case EINPROGRESS: /* what we expect to happen */
  240.     case EISCONN: /* restart after interrupt? */
  241.     case EADDRINUSE: /* restart after interrupt? */
  242.       break; /* well, not really, it was interrupted */
  243.     default:
  244.       sprintf (tmp,"Can't connect to %.80s,%lu: %s",hst,port,strerror (errno));
  245.       close (sock); /* flush socket */
  246.       return -1;
  247.     }
  248.     tmo.tv_sec = ttmo_open; /* open timeout */
  249.     tmo.tv_usec = 0;
  250.     FD_ZERO (&fds); /* initialize selection vector */
  251.     FD_ZERO (&efds); /* handle errors too */
  252.     FD_SET (sock,&fds); /* block for error or writeable */
  253.     FD_SET (sock,&efds);
  254. /* block under timeout */
  255.     while (((i = select (sock+1,0,&fds,&efds,ttmo_open ? &tmo : 0)) < 0) &&
  256.    (errno == EINTR));
  257.     if (i > 0) { /* success, make sure really connected */
  258.       fcntl (sock,F_SETFL,flgs);/* restore blocking status */
  259.       /* This used to be a zero-byte read(), but that crashes Solaris */
  260. /* get socket status */
  261.       while (((i = *ctr = read (sock,tmp,1)) < 0) && (errno == EINTR));
  262.     }
  263.     if (i <= 0) { /* timeout or error? */
  264.       i = i ? errno : ETIMEDOUT;/* determine error code */
  265.       close (sock); /* flush socket */
  266.       errno = i; /* return error code */
  267.       sprintf (tmp,"Connection failed to %.80s,%lu: %s",hst,port,
  268.        strerror (errno));
  269.       return -1;
  270.     }
  271.   }
  272.   return sock; /* return the socket */
  273. }
  274.   
  275. /* TCP/IP authenticated open
  276.  * Accepts: host name
  277.  *     service name
  278.  *     returned user name buffer
  279.  * Returns: TCP/IP stream if success else NIL
  280.  */
  281. #define MAXARGV 10
  282. TCPSTREAM *tcp_aopen (NETMBX *mb,char *service,char *usrbuf)
  283. {
  284.   return NIL; /* disabled */
  285. }
  286. /* TCP/IP receive line
  287.  * Accepts: TCP/IP stream
  288.  * Returns: text line string or NIL if failure
  289.  */
  290. char *tcp_getline (TCPSTREAM *stream)
  291. {
  292.   int n,m;
  293.   char *st,*ret,*stp;
  294.   char c = '';
  295.   char d;
  296. /* make sure have data */
  297.   if (!tcp_getdata (stream)) return NIL;
  298.   st = stream->iptr; /* save start of string */
  299.   n = 0; /* init string count */
  300.   while (stream->ictr--) { /* look for end of line */
  301.     d = *stream->iptr++; /* slurp another character */
  302.     if ((c == '15') && (d == '12')) {
  303.       ret = (char *) fs_get (n--);
  304.       memcpy (ret,st,n); /* copy into a free storage string */
  305.       ret[n] = ''; /* tie off string with null */
  306.       return ret;
  307.     }
  308.     n++; /* count another character searched */
  309.     c = d; /* remember previous character */
  310.   }
  311. /* copy partial string from buffer */
  312.   memcpy ((ret = stp = (char *) fs_get (n)),st,n);
  313. /* get more data from the net */
  314.   if (!tcp_getdata (stream)) fs_give ((void **) &ret);
  315. /* special case of newline broken by buffer */
  316.   else if ((c == '15') && (*stream->iptr == '12')) {
  317.     stream->iptr++; /* eat the line feed */
  318.     stream->ictr--;
  319.     ret[n - 1] = ''; /* tie off string with null */
  320.   }
  321. /* else recurse to get remainder */
  322.   else if (st = tcp_getline (stream)) {
  323.     ret = (char *) fs_get (n + 1 + (m = strlen (st)));
  324.     memcpy (ret,stp,n); /* copy first part */
  325.     memcpy (ret + n,st,m); /* and second part */
  326.     fs_give ((void **) &stp); /* flush first part */
  327.     fs_give ((void **) &st); /* flush second part */
  328.     ret[n + m] = ''; /* tie off string with null */
  329.   }
  330.   return ret;
  331. }
  332. /* TCP/IP receive buffer
  333.  * Accepts: TCP/IP stream
  334.  *     size in bytes
  335.  *     buffer to read into
  336.  * Returns: T if success, NIL otherwise
  337.  */
  338. long tcp_getbuffer (TCPSTREAM *stream,unsigned long size,char *buffer)
  339. {
  340.   unsigned long n;
  341.   char *bufptr = buffer;
  342.   while (size > 0) { /* until request satisfied */
  343.     if (!tcp_getdata (stream)) return NIL;
  344.     n = min (size,stream->ictr);/* number of bytes to transfer */
  345. /* do the copy */
  346.     memcpy (bufptr,stream->iptr,n);
  347.     bufptr += n; /* update pointer */
  348.     stream->iptr +=n;
  349.     size -= n; /* update # of bytes to do */
  350.     stream->ictr -=n;
  351.   }
  352.   bufptr[0] = ''; /* tie off string */
  353.   return T;
  354. }
  355. /* TCP/IP receive data
  356.  * Accepts: TCP/IP stream
  357.  * Returns: T if success, NIL otherwise
  358.  */
  359. long tcp_getdata (TCPSTREAM *stream)
  360. {
  361.   int i;
  362.   fd_set fds,efds;
  363.   struct timeval tmo;
  364.   time_t t = time (0);
  365.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  366.   if (stream->tcpsi < 0) return NIL;
  367.   (*bn) (BLOCK_TCPREAD,NIL);
  368.   while (stream->ictr < 1) { /* if nothing in the buffer */
  369.     time_t tl = time (0); /* start of request */
  370.     tmo.tv_sec = ttmo_read; /* read timeout */
  371.     tmo.tv_usec = 0;
  372.     FD_ZERO (&fds); /* initialize selection vector */
  373.     FD_ZERO (&efds); /* handle errors too */
  374.     FD_SET (stream->tcpsi,&fds);/* set bit in selection vector */
  375.     FD_SET(stream->tcpsi,&efds);/* set bit in error selection vector */
  376.     errno = NIL; /* block and read */
  377.     while (((i = select (stream->tcpsi+1,&fds,0,&efds,ttmo_read ? &tmo : 0))<0)
  378.    && (errno == EINTR));
  379.     if (!i) { /* timeout? */
  380.       time_t tc = time (0);
  381.       if (tmoh && ((*tmoh) (tc - t,tc - tl))) continue;
  382.       else return tcp_abort (stream);
  383.     }
  384.     else if (i < 0) return tcp_abort (stream);
  385.     while (((i = read (stream->tcpsi,stream->ibuf,BUFLEN)) < 0) &&
  386.    (errno == EINTR));
  387.     if (i < 1) return tcp_abort (stream);
  388.     stream->iptr = stream->ibuf;/* point at TCP buffer */
  389.     stream->ictr = i; /* set new byte count */
  390.   }
  391.   (*bn) (BLOCK_NONE,NIL);
  392.   return T;
  393. }
  394. /* TCP/IP send string as record
  395.  * Accepts: TCP/IP stream
  396.  *     string pointer
  397.  * Returns: T if success else NIL
  398.  */
  399. long tcp_soutr (TCPSTREAM *stream,char *string)
  400. {
  401.   return tcp_sout (stream,string,(unsigned long) strlen (string));
  402. }
  403. /* TCP/IP send string
  404.  * Accepts: TCP/IP stream
  405.  *     string pointer
  406.  *     byte count
  407.  * Returns: T if success else NIL
  408.  */
  409. long tcp_sout (TCPSTREAM *stream,char *string,unsigned long size)
  410. {
  411.   int i;
  412.   fd_set fds;
  413.   struct timeval tmo;
  414.   time_t t = time (0);
  415.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  416.   if (stream->tcpso < 0) return NIL;
  417.   (*bn) (BLOCK_TCPWRITE,NIL);
  418.   while (size > 0) { /* until request satisfied */
  419.     time_t tl = time (0); /* start of request */
  420.     tmo.tv_sec = ttmo_write; /* write timeout */
  421.     tmo.tv_usec = 0;
  422.     FD_ZERO (&fds); /* initialize selection vector */
  423.     FD_SET (stream->tcpso,&fds);/* set bit in selection vector */
  424.     errno = NIL; /* block and write */
  425.     while (((i = select (stream->tcpso+1,0,&fds,0,ttmo_write ? &tmo : 0)) < 0)
  426.    && (errno == EINTR));
  427.     if (!i) { /* timeout? */
  428.       time_t tc = time (0);
  429.       if (tmoh && ((*tmoh) (tc - t,tc - tl))) continue;
  430.       else return tcp_abort (stream);
  431.     }
  432.     else if (i < 0) return tcp_abort (stream);
  433.     while (((i = write (stream->tcpso,string,size)) < 0) && (errno == EINTR));
  434.     if (i < 0) return tcp_abort (stream);
  435.     size -= i; /* how much we sent */
  436.     string += i;
  437.   }
  438.   (*bn) (BLOCK_NONE,NIL);
  439.   return T; /* all done */
  440. }
  441. /* TCP/IP close
  442.  * Accepts: TCP/IP stream
  443.  */
  444. void tcp_close (TCPSTREAM *stream)
  445. {
  446.   tcp_abort (stream); /* nuke the stream */
  447. /* flush host names */
  448.   if (stream->host) fs_give ((void **) &stream->host);
  449.   if (stream->remotehost) fs_give ((void **) &stream->remotehost);
  450.   if (stream->localhost) fs_give ((void **) &stream->localhost);
  451.   fs_give ((void **) &stream); /* flush the stream */
  452. }
  453. /* TCP/IP abort stream
  454.  * Accepts: TCP/IP stream
  455.  * Returns: NIL always
  456.  */
  457. long tcp_abort (TCPSTREAM *stream)
  458. {
  459.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  460.   if (stream->tcpsi >= 0) { /* no-op if no socket */
  461.     (*bn) (BLOCK_TCPCLOSE,NIL);
  462.     close (stream->tcpsi); /* nuke the socket */
  463.     if (stream->tcpsi != stream->tcpso) close (stream->tcpso);
  464.     stream->tcpsi = stream->tcpso = -1;
  465.   }
  466.   (*bn) (BLOCK_NONE,NIL);
  467.   return NIL;
  468. }
  469. /* TCP/IP get host name
  470.  * Accepts: TCP/IP stream
  471.  * Returns: host name for this stream
  472.  */
  473. char *tcp_host (TCPSTREAM *stream)
  474. {
  475.   return stream->host; /* use tcp_remotehost() if want guarantees */
  476. }
  477. /* TCP/IP get remote host name
  478.  * Accepts: TCP/IP stream
  479.  * Returns: host name for this stream
  480.  */
  481. char *tcp_remotehost (TCPSTREAM *stream)
  482. {
  483.   if (!stream->remotehost) {
  484.     struct sockaddr_in sin;
  485.     int sinlen = sizeof (struct sockaddr_in);
  486.     stream->remotehost = /* get socket's peer name */
  487.       getpeername (stream->tcpsi,(struct sockaddr *) &sin,(void *) &sinlen) ?
  488. cpystr (stream->host) : tcp_name (&sin,NIL);
  489.   }
  490.   return stream->remotehost;
  491. }
  492. /* TCP/IP return port for this stream
  493.  * Accepts: TCP/IP stream
  494.  * Returns: port number for this stream
  495.  */
  496. unsigned long tcp_port (TCPSTREAM *stream)
  497. {
  498.   return stream->port; /* return port number */
  499. }
  500. /* TCP/IP get local host name
  501.  * Accepts: TCP/IP stream
  502.  * Returns: local host name
  503.  */
  504. char *tcp_localhost (TCPSTREAM *stream)
  505. {
  506.   if (!stream->localhost) {
  507.     struct sockaddr_in sin;
  508.     int sinlen = sizeof (struct sockaddr_in);
  509.     stream->localhost = /* get socket's name */
  510.       ((stream->port & 0xffff000) ||
  511.        getsockname (stream->tcpsi,(struct sockaddr *) &sin,(void *) &sinlen)) ?
  512.  cpystr (mylocalhost ()) : tcp_name (&sin,NIL);
  513.   }
  514.   return stream->localhost; /* return local host name */
  515. }
  516. /* TCP/IP get client host name (server calls only)
  517.  * Returns: client host name
  518.  */
  519. static char *myClientHost = NIL;
  520. char *tcp_clienthost ()
  521. {
  522.   if (!myClientHost) {
  523.     struct sockaddr_in sin;
  524.     int sinlen = sizeof (struct sockaddr_in);
  525. /* get stdin's peer name */
  526.     myClientHost = getpeername (0,(struct sockaddr *) &sin,(void *) &sinlen) ?
  527.       cpystr ("UNKNOWN") : tcp_name (&sin,T);
  528.   }
  529.   return myClientHost;
  530. }
  531. /* TCP/IP get server host name (server calls only)
  532.  * Returns: server host name
  533.  */
  534. static char *myServerHost = NIL;
  535. static long myServerPort = -1;
  536. char *tcp_serverhost ()
  537. {
  538.   if (!myServerHost) {
  539.     struct sockaddr_in sin;
  540.     int sinlen = sizeof (struct sockaddr_in);
  541. /* get stdin's name */
  542.     if (getsockname (0,(struct sockaddr *) &sin,(void *) &sinlen))
  543.       myServerHost = cpystr (mylocalhost ());
  544.     else {
  545.       myServerHost = tcp_name (&sin,NIL);
  546.       myServerPort = ntohs (sin.sin_port);
  547.     }
  548.   }
  549.   return myServerHost;
  550. }
  551. /* TCP/IP get server port number (server calls only)
  552.  * Returns: server port number
  553.  */
  554. long tcp_serverport ()
  555. {
  556.   if (!myServerHost) tcp_serverhost ();
  557.   return myServerPort;
  558. }
  559. /* TCP/IP return canonical form of host name
  560.  * Accepts: host name
  561.  * Returns: canonical form of host name
  562.  */
  563. char *tcp_canonical (char *name)
  564. {
  565.   char *ret,host[MAILTMPLEN];
  566.   struct hostent *he;
  567.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  568.   void *data;
  569. /* look like domain literal? */
  570.   if (name[0] == '[' && name[strlen (name) - 1] == ']') return name;
  571.   (*bn) (BLOCK_DNSLOOKUP,NIL);
  572.   data = (*bn) (BLOCK_SENSITIVE,NIL);
  573. /* note that Amiga requires lowercase! */
  574.   ret = (he = gethostbyname (lcase (strcpy (host,name)))) ? he->h_name : name;
  575.   (*bn) (BLOCK_NONSENSITIVE,data);
  576.   (*bn) (BLOCK_NONE,NIL);
  577.   return ret;
  578. }
  579. /* TCP/IP return name from socket
  580.  * Accepts: socket
  581.  *     verbose flag
  582.  * Returns: cpystr name
  583.  */
  584. char *tcp_name (struct sockaddr_in *sin,long flag)
  585. {
  586.   char *s,tmp[MAILTMPLEN];
  587.   if (allowreversedns) {
  588.     struct hostent *he;
  589.     blocknotify_t bn = (blocknotify_t)mail_parameters(NIL,GET_BLOCKNOTIFY,NIL);
  590.     void *data;
  591.     (*bn) (BLOCK_DNSLOOKUP,NIL);
  592.     data = (*bn) (BLOCK_SENSITIVE,NIL);
  593. /* translate address to name */
  594.     if (!(he = gethostbyaddr ((char *) &sin->sin_addr,
  595.       sizeof (struct in_addr),sin->sin_family)))
  596.       sprintf (s = tmp,"[%s]",inet_ntoa (sin->sin_addr));
  597.     else if (flag) sprintf (s = tmp,"%s [%s]",he->h_name,
  598.     inet_ntoa (sin->sin_addr));
  599.     else s = he->h_name;
  600.     (*bn) (BLOCK_NONSENSITIVE,data);
  601.     (*bn) (BLOCK_NONE,NIL);
  602.   }
  603.   else sprintf (s = tmp,"[%s]",inet_ntoa (sin->sin_addr));
  604.   return cpystr (s);
  605. }