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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: VMS TCP/IP routines for Multinet
  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: 2 August 1994
  13.  * Last Edited: 15 December 1998
  14.  *
  15.  * Copyright 1998 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. static tcptimeout_t tmoh = NIL; /* TCP timeout handler routine */
  36. static long ttmo_read = 0; /* TCP timeouts, in seconds */
  37. static long ttmo_write = 0;
  38. /* TCP/IP manipulate parameters
  39.  * Accepts: function code
  40.  *     function-dependent value
  41.  * Returns: function-dependent return value
  42.  */
  43. void *tcp_parameters (long function,void *value)
  44. {
  45.   switch ((int) function) {
  46.   case SET_TIMEOUT:
  47.     tmoh = (tcptimeout_t) value;
  48.     break;
  49.   case GET_TIMEOUT:
  50.     value = (void *) tmoh;
  51.     break;
  52.   case SET_READTIMEOUT:
  53.     ttmo_read = (long) value;
  54.     break;
  55.   case GET_READTIMEOUT:
  56.     value = (void *) ttmo_read;
  57.     break;
  58.   case SET_WRITETIMEOUT:
  59.     ttmo_write = (long) value;
  60.     break;
  61.   case GET_WRITETIMEOUT:
  62.     value = (void *) ttmo_write;
  63.     break;
  64.   default:
  65.     value = NIL; /* error case */
  66.     break;
  67.   }
  68.   return value;
  69. }
  70.  
  71. /* TCP/IP open
  72.  * Accepts: host name
  73.  *     contact service name
  74.  *     contact port number
  75.  * Returns: TCP/IP stream if success else NIL
  76.  */
  77. TCPSTREAM *tcp_open (char *host,char *service,unsigned long port)
  78. {
  79.   TCPSTREAM *stream = NIL;
  80.   int sock;
  81.   char *s;
  82.   struct sockaddr_in sin;
  83.   struct hostent *host_name;
  84.   char hostname[MAILTMPLEN];
  85.   char tmp[MAILTMPLEN];
  86.   struct protoent *pt = getprotobyname ("ip");
  87.   struct servent *sv = NIL;
  88.   if (service) { /* service specified? */
  89.     if (*service == '*') { /* yes, special alt driver kludge? */
  90.       sv = getservbyname (service + 1,"tcp");
  91.     }
  92.     else sv = getservbyname (service,"tcp");
  93.   }
  94. /* user service name port */
  95.   if (sv) port = ntohs (sin.sin_port = sv->s_port);
  96.   /* copy port number in network format */
  97.   else sin.sin_port = htons (port);
  98.   /* The domain literal form is used (rather than simply the dotted decimal
  99.      as with other Unix programs) because it has to be a valid "host name"
  100.      in mailsystem terminology. */
  101. /* look like domain literal? */
  102.   if (host[0] == '[' && host[(strlen (host))-1] == ']') {
  103.     strcpy (hostname,host+1); /* yes, copy number part */
  104.     hostname[(strlen (hostname))-1] = '';
  105.     if ((sin.sin_addr.s_addr = inet_addr (hostname)) != -1) {
  106.       sin.sin_family = AF_INET; /* family is always Internet */
  107.       strcpy (hostname,host); /* hostname is user's argument */
  108.     }
  109.     else {
  110.       sprintf (tmp,"Bad format domain-literal: %.80s",host);
  111.       mm_log (tmp,ERROR);
  112.       return NIL;
  113.     }
  114.   }
  115.   else { /* lookup host name, note that brain-dead Unix
  116.    requires lowercase! */
  117.     strcpy (hostname,host); /* in case host is in write-protected memory */
  118.     if ((host_name = gethostbyname (lcase (hostname)))) {
  119. /* copy address type */
  120.       sin.sin_family = host_name->h_addrtype;
  121. /* copy host name */
  122.       strcpy (hostname,host_name->h_name);
  123. /* copy host addresses */
  124.       memcpy (&sin.sin_addr,host_name->h_addr,host_name->h_length);
  125.     }
  126.     else {
  127.       sprintf (tmp,"No such host as %.80s",host);
  128.       mm_log (tmp,ERROR);
  129.       return NIL;
  130.     }
  131.   }
  132. /* get a TCP stream */
  133.   if ((sock = socket (sin.sin_family,SOCK_STREAM,pt ? pt->p_proto : 0)) < 0) {
  134.     sprintf (tmp,"Unable to create TCP socket: %s",strerror (errno));
  135.     mm_log (tmp,ERROR);
  136.     return NIL;
  137.   }
  138. /* open connection */
  139.   if (connect (sock,(struct sockaddr *)&sin,sizeof (sin)) < 0) {
  140.     sprintf (tmp,"Can't connect to %.80s,%d: %s",hostname,port,
  141.      strerror (errno));
  142.     mm_log (tmp,ERROR);
  143.     return NIL;
  144.   }
  145. /* create TCP/IP stream */
  146.   stream = (TCPSTREAM *) fs_get (sizeof (TCPSTREAM));
  147. /* copy official host name */
  148.   stream->host = cpystr (hostname);
  149. /* get local name */
  150.   gethostname (tmp,MAILTMPLEN-1);
  151.   stream->localhost = cpystr ((host_name = gethostbyname (tmp)) ?
  152.       host_name->h_name : tmp);
  153. /* init sockets */
  154.   stream->port = port; /* port number */
  155.   stream->tcpsi = stream->tcpso = sock;
  156.   stream->ictr = 0; /* init input counter */
  157.   return stream; /* return success */
  158. }
  159. /* TCP/IP authenticated open
  160.  * Accepts: NETMBX specifier
  161.  *     service name
  162.  *     returned user name buffer
  163.  * Returns: TCP/IP stream if success else NIL
  164.  */
  165. TCPSTREAM *tcp_aopen (NETMBX *mb,char *service,char *usrbuf)
  166. {
  167.   return NIL;
  168. }
  169. /* TCP/IP receive line
  170.  * Accepts: TCP/IP stream
  171.  * Returns: text line string or NIL if failure
  172.  */
  173. char *tcp_getline (TCPSTREAM *stream)
  174. {
  175.   int n,m;
  176.   char *st,*ret,*stp;
  177.   char c = '';
  178.   char d;
  179. /* make sure have data */
  180.   if (!tcp_getdata (stream)) return NIL;
  181.   st = stream->iptr; /* save start of string */
  182.   n = 0; /* init string count */
  183.   while (stream->ictr--) { /* look for end of line */
  184.     d = *stream->iptr++; /* slurp another character */
  185.     if ((c == '15') && (d == '12')) {
  186.       ret = (char *) fs_get (n--);
  187.       memcpy (ret,st,n); /* copy into a free storage string */
  188.       ret[n] = ''; /* tie off string with null */
  189.       return ret;
  190.     }
  191.     n++; /* count another character searched */
  192.     c = d; /* remember previous character */
  193.   }
  194. /* copy partial string from buffer */
  195.   memcpy ((ret = stp = (char *) fs_get (n)),st,n);
  196. /* get more data from the net */
  197.   if (!tcp_getdata (stream)) fs_give ((void **) &ret);
  198. /* special case of newline broken by buffer */
  199.   else if ((c == '15') && (*stream->iptr == '12')) {
  200.     stream->iptr++; /* eat the line feed */
  201.     stream->ictr--;
  202.     ret[n - 1] = ''; /* tie off string with null */
  203.   }
  204. /* else recurse to get remainder */
  205.   else if (st = tcp_getline (stream)) {
  206.     ret = (char *) fs_get (n + 1 + (m = strlen (st)));
  207.     memcpy (ret,stp,n); /* copy first part */
  208.     memcpy (ret + n,st,m); /* and second part */
  209.     fs_give ((void **) &stp); /* flush first part */
  210.     fs_give ((void **) &st); /* flush second part */
  211.     ret[n + m] = ''; /* tie off string with null */
  212.   }
  213.   return ret;
  214. }
  215. /* TCP/IP receive buffer
  216.  * Accepts: TCP/IP stream
  217.  *     size in bytes
  218.  *     buffer to read into
  219.  * Returns: T if success, NIL otherwise
  220.  */
  221. long tcp_getbuffer (TCPSTREAM *stream,unsigned long size,char *buffer)
  222. {
  223.   unsigned long n;
  224.   char *bufptr = buffer;
  225.   while (size > 0) { /* until request satisfied */
  226.     if (!tcp_getdata (stream)) return NIL;
  227.     n = min (size,stream->ictr);/* number of bytes to transfer */
  228. /* do the copy */
  229.     memcpy (bufptr,stream->iptr,n);
  230.     bufptr += n; /* update pointer */
  231.     stream->iptr +=n;
  232.     size -= n; /* update # of bytes to do */
  233.     stream->ictr -=n;
  234.   }
  235.   bufptr[0] = ''; /* tie off string */
  236.   return T;
  237. }
  238. /* TCP/IP receive data
  239.  * Accepts: TCP/IP stream
  240.  * Returns: T if success, NIL otherwise
  241.  */
  242. long tcp_getdata (TCPSTREAM *stream)
  243. {
  244.   int i;
  245.   fd_set fds,efds;
  246.   struct timeval tmo;
  247.   time_t t = time (0);
  248.   if (stream->tcpsi < 0) return NIL;
  249.   while (stream->ictr < 1) { /* if nothing in the buffer */
  250.     time_t tl = time (0); /* start of request */
  251.     tmo.tv_sec = ttmo_read; /* read timeout */
  252.     tmo.tv_usec = 0;
  253.     FD_ZERO (&fds); /* initialize selection vector */
  254.     FD_ZERO (&efds); /* handle errors too */
  255.     FD_SET (stream->tcpsi,&fds);/* set bit in selection vector */
  256.     FD_SET(stream->tcpsi,&efds);/* set bit in error selection vector */
  257.     errno = NIL; /* block and read */
  258.     while (((i = select (getdtablesize (),&fds,0,&efds,ttmo_read ? &tmo:0))<0)
  259.    && (errno == EINTR));
  260.     if (!i) { /* timeout? */
  261.       time_t tc = time (0);
  262.       if (tmoh && ((*tmoh) (tc - t,tc - tl))) continue;
  263.       else return tcp_abort (stream);
  264.     }
  265.     else if (i < 0) return tcp_abort (stream);
  266.     while (((i = socket_read (stream->tcpsi,stream->ibuf,BUFLEN)) < 0) &&
  267.    (errno == EINTR));
  268.     if (i < 1) return tcp_abort (stream);
  269.     stream->iptr = stream->ibuf;/* point at TCP buffer */
  270.     stream->ictr = i; /* set new byte count */
  271.   }
  272.   return T;
  273. }
  274. /* TCP/IP send string as record
  275.  * Accepts: TCP/IP stream
  276.  *     string pointer
  277.  * Returns: T if success else NIL
  278.  */
  279. long tcp_soutr (TCPSTREAM *stream,char *string)
  280. {
  281.   return tcp_sout (stream,string,(unsigned long) strlen (string));
  282. }
  283. /* TCP/IP send string
  284.  * Accepts: TCP/IP stream
  285.  *     string pointer
  286.  *     byte count
  287.  * Returns: T if success else NIL
  288.  */
  289. long tcp_sout (TCPSTREAM *stream,char *string,unsigned long size)
  290. {
  291.   int i;
  292.   fd_set fds;
  293.   struct timeval tmo;
  294.   time_t t = time (0);
  295.   if (stream->tcpso < 0) return NIL;
  296.   while (size > 0) { /* until request satisfied */
  297.     time_t tl = time (0); /* start of request */
  298.     tmo.tv_sec = ttmo_write; /* write timeout */
  299.     tmo.tv_usec = 0;
  300.     FD_ZERO (&fds); /* initialize selection vector */
  301.     FD_SET (stream->tcpso,&fds);/* set bit in selection vector */
  302.     errno = NIL; /* block and write */
  303.     while (((i = select (getdtablesize (),0,&fds,0,ttmo_write ? &tmo : 0)) < 0)
  304.    && (errno == EINTR));
  305.     if (!i) { /* timeout? */
  306.       time_t tc = time (0);
  307.       if (tmoh && ((*tmoh) (tc - t,tc - tl))) continue;
  308.       else return tcp_abort (stream);
  309.     }
  310.     else if (i < 0) return tcp_abort (stream);
  311.     while (((i = socket_write (stream->tcpso,string,size)) < 0) &&
  312.    (errno == EINTR));
  313.     if (i < 0) return tcp_abort (stream);
  314.     size -= i; /* how much we sent */
  315.     string += i;
  316.   }
  317.   return T; /* all done */
  318. }
  319. /* TCP/IP close
  320.  * Accepts: TCP/IP stream
  321.  */
  322. void tcp_close (TCPSTREAM *stream)
  323. {
  324.   tcp_abort (stream); /* nuke the stream */
  325. /* flush host names */
  326.   fs_give ((void **) &stream->host);
  327.   fs_give ((void **) &stream->localhost);
  328.   fs_give ((void **) &stream); /* flush the stream */
  329. }
  330. /* TCP/IP abort stream
  331.  * Accepts: TCP/IP stream
  332.  * Returns: NIL always
  333.  */
  334. long tcp_abort (TCPSTREAM *stream)
  335. {
  336.   int i;
  337.   if (stream->tcpsi >= 0) { /* no-op if no socket */
  338. /* nuke the socket */
  339.     socket_close (stream->tcpsi);
  340.     if (stream->tcpsi != stream->tcpso) socket_close (stream->tcpso);
  341.     stream->tcpsi = stream->tcpso = -1;
  342.   }
  343.   return NIL;
  344. }
  345. /* TCP/IP get host name
  346.  * Accepts: TCP/IP stream
  347.  * Returns: host name for this stream
  348.  */
  349. char *tcp_host (TCPSTREAM *stream)
  350. {
  351.   return stream->host; /* return host name */
  352. }
  353. /* TCP/IP get remote host name
  354.  * Accepts: TCP/IP stream
  355.  * Returns: host name for this stream
  356.  */
  357. char *tcp_remotehost (TCPSTREAM *stream)
  358. {
  359.   return stream->host; /* return host name */
  360. }
  361. /* TCP/IP return port for this stream
  362.  * Accepts: TCP/IP stream
  363.  * Returns: port number for this stream
  364.  */
  365. unsigned long tcp_port (TCPSTREAM *stream)
  366. {
  367.   return stream->port; /* return port number */
  368. }
  369. /* TCP/IP get local host name
  370.  * Accepts: TCP/IP stream
  371.  * Returns: local host name
  372.  */
  373. char *tcp_localhost (TCPSTREAM *stream)
  374. {
  375.   return stream->localhost; /* return local host name */
  376. }
  377. /* Return my local host name
  378.  * Returns: my local host name
  379.  */
  380. char *mylocalhost ()
  381. {
  382.   char tmp[MAILTMPLEN];
  383.   struct hostent *hn;
  384.   if (!myLocalHost) { /* have local host yet? */
  385.     gethostname(tmp,MAILTMPLEN);/* get local host name */
  386.     myLocalHost = cpystr ((hn = gethostbyname (tmp)) ? hn->h_name : tmp);
  387.   }
  388.   return myLocalHost;
  389. }
  390. /* TCP/IP return canonical form of host name
  391.  * Accepts: host name
  392.  * Returns: canonical form of host name
  393.  */
  394. char *tcp_canonical (char *name)
  395. {
  396.   char host[MAILTMPLEN];
  397.   struct hostent *he;
  398. /* look like domain literal? */
  399.   if (name[0] == '[' && name[strlen (name) - 1] == ']') return name;
  400. /* note that Unix requires lowercase! */
  401.   else return (he = gethostbyname (lcase (strcpy (host,name)))) ?
  402.     he->h_name : name;
  403. }
  404. /* TCP/IP get client host name (server calls only)
  405.  * Returns: client host name
  406.  */
  407. char *tcp_clienthost ()
  408. {
  409.   return "UNKNOWN";
  410. }