home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / misc / tcpipsrc / sockuser.c < prev    next >
C/C++ Source or Header  |  1991-01-26  |  11KB  |  533 lines

  1. /* Higher level user subroutines built on top of the socket primitives
  2.  * Copyright 1991 Phil Karn, KA9Q
  3.  */
  4. #include "global.h"
  5. #ifdef    ANSIPROTO
  6. #include <stdarg.h>
  7. #endif
  8. #include "mbuf.h"
  9. #include "proc.h"
  10. #include "socket.h"
  11. #include "usock.h"
  12. #include "session.h"
  13. #include "nr4.h"
  14.  
  15.  
  16. /* Higher-level receive routine, intended for connection-oriented sockets.
  17.  * Can be used with datagram sockets, although the sender id is lost.
  18.  */
  19. int
  20. recv(s,buf,len,flags)
  21. int s;        /* Socket index */
  22. char *buf;    /* User buffer */
  23. int len;    /* Max length to receive */
  24. int flags;    /* Unused; will eventually select oob data, etc */
  25. {
  26.     struct mbuf *bp;
  27.     int cnt;
  28.  
  29.     if(len == 0)
  30.         return 0;    /* Otherwise would be interp as "all" */
  31.  
  32.     cnt = recv_mbuf(s,&bp,flags,NULLCHAR,(int *)NULL);
  33.     if(cnt > 0){
  34.         cnt = min(cnt,len);
  35.         pullup(&bp,buf,(int16)cnt);
  36.         free_p(bp);
  37.     }
  38.     return cnt;
  39. }
  40. /* Higher level receive routine, intended for datagram sockets. Can also
  41.  * be used for connection-oriented sockets, although from and fromlen are
  42.  * ignored.
  43.  */
  44. int
  45. recvfrom(s,buf,len,flags,from,fromlen)
  46. int s;        /* Socket index */
  47. char *buf;    /* User buffer */
  48. int len;    /* Maximum length */
  49. int flags;    /* Unused; will eventually select oob data, etc */
  50. char *from;    /* Source address, only for datagrams */
  51. int *fromlen;    /* Length of source address */
  52. {
  53.     struct mbuf *bp;
  54.     register int cnt;
  55.  
  56.     cnt = recv_mbuf(s,&bp,flags,from,fromlen);
  57.     if(cnt > 0){
  58.         cnt = min(cnt,len);
  59.         pullup(&bp,buf,(int16)cnt);
  60.         free_p(bp);
  61.     }
  62.     return cnt;
  63. }
  64. /* High level send routine */
  65. int
  66. send(s,buf,len,flags)
  67. int s;        /* Socket index */
  68. char *buf;    /* User buffer */
  69. int len;    /* Length of buffer */
  70. int flags;    /* Unused; will eventually select oob data, etc */
  71. {
  72.     register struct mbuf *bp;
  73.     char sock[MAXSOCKSIZE];
  74.     int i = MAXSOCKSIZE;
  75.  
  76.     if(getpeername(s,sock,&i) == -1)
  77.         return -1;
  78.     bp = qdata(buf,(int16)len);
  79.     return send_mbuf(s,bp,flags,sock,i);
  80. }
  81. /* High level send routine, intended for datagram sockets. Can be used on
  82.  * connection-oriented sockets, but "to" and "tolen" are ignored.
  83.  */
  84. int
  85. sendto(s,buf,len,flags,to,tolen)
  86. int s;        /* Socket index */
  87. char *buf;    /* User buffer */
  88. int len;    /* Length of buffer */
  89. int flags;    /* Unused; will eventually select oob data, etc */
  90. char *to;    /* Destination, only for datagrams */
  91. int tolen;    /* Length of destination */
  92. {
  93.     register struct mbuf *bp;
  94.  
  95.     bp = qdata(buf,(int16)len);
  96.     return send_mbuf(s,bp,flags,to,tolen);
  97. }
  98. /* Receive a newline-terminated line from a socket, returning # chars read.
  99.  * The end-of-line sequence is recognized and translated into a single '\n'.
  100.  */
  101. int
  102. recvline(s,buf,len)
  103. int s;        /* Socket index */
  104. char *buf;    /* User buffer */
  105. unsigned len;    /* Length of buffer */
  106. {
  107.     int c;
  108.     int cnt = 0;
  109.  
  110.     while(len-- > 1){
  111.         if((c = recvchar(s)) == EOF){
  112.             cnt = -1;
  113.             break;
  114.         }
  115.         if(buf != NULLCHAR)
  116.             *buf++ = c;
  117.         cnt++;
  118.         if(uchar(c) == '\n')
  119.             break;
  120.     }
  121.     if(buf != NULLCHAR)
  122.         *buf = '\0';
  123.     return cnt;
  124. }
  125. #if    defined(ANSIPROTO)
  126. /* Do printf on a user socket */
  127. int
  128. usprintf(int s,char *fmt,...)
  129. {
  130.     va_list args;
  131.     int len;
  132.  
  133.     va_start(args,fmt);
  134.     len = usvprintf(s,fmt,args);
  135.     va_end(args);
  136.     return len;
  137. }
  138. /* Printf on standard output socket */
  139. int
  140. tprintf(char *fmt,...)
  141. {
  142.     va_list args;
  143.     int len;
  144.  
  145.     va_start(args,fmt);
  146.     len = usvprintf(Curproc->output,fmt,args);
  147.     va_end(args);
  148.     return len;
  149. }
  150. /* The guts of printf, uses variable arg version of sprintf */
  151. int
  152. usvprintf(int s,char *fmt, va_list args)
  153. {
  154.     int len,withargs;
  155.     char *buf;
  156.  
  157.     if(strchr(fmt,'%') == NULLCHAR){
  158.         /* Common case optimization: no args, so we don't
  159.          * need vsprintf()
  160.          */
  161.         withargs = 0;
  162.         buf = fmt;
  163.         len = strlen(fmt);
  164.     } else {
  165.         /* Use a default value that is hopefully longer than the
  166.          * biggest output string we'll ever print (!)
  167.          */
  168.         withargs = 1;
  169.         buf = mallocw(SOBUF);
  170.         vsprintf(buf,fmt,args);
  171.         len = strlen(buf);
  172.     }
  173.     if(usputs(s,buf) == EOF)
  174.         len = -1;
  175.     if(withargs)
  176.         free(buf);
  177.     return len;
  178. }
  179. #else
  180. /*VARARGS*/
  181. /* Printf to standard output socket */
  182. int
  183. tprintf(fmt,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12)
  184. char *fmt;        /* Message format */
  185. int arg1,arg2,arg3;    /* Arguments */
  186. int arg4,arg5,arg6;
  187. int arg7,arg8,arg9;
  188. int arg10,arg11,arg12;
  189. {
  190.     return usprintf(Curproc->output,fmt,arg1,arg2,arg3,arg4,arg5,arg6
  191.         arg7,arg8,arg9,arg10,arg11,arg12);
  192. }
  193. /* Printf to socket. Doesn't use ANSI vsprintf */
  194. int
  195. usprintf(s,fmt,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12)
  196. int s;            /* Socket index */
  197. char *fmt;        /* Message format */
  198. int arg1,arg2,arg3;    /* Arguments */
  199. int arg4,arg5,arg6;
  200. int arg7,arg8,arg9;
  201. int arg10,arg11,arg12;
  202. {
  203.     int len,withargs;
  204.     char *buf;
  205.  
  206.     if(strchr(fmt,'%') == NULLCHAR){
  207.         /* No args, so we don't need vsprintf() */
  208.         withargs = 0;
  209.         buf = fmt;
  210.         len = strlen(fmt);
  211.     } else {
  212.         /* Use a default value that is hopefully longer than the
  213.          * biggest output string we'll ever print (!)
  214.          */
  215.         withargs = 1;
  216.         buf = mallocw(SOBUF);
  217.         sprintf(buf,fmt,arg1,arg2,arg3,arg4,arg5,arg6,arg7
  218.          arg8,arg9,arg10,arg11,arg12);
  219.         len = strlen(buf);
  220.     }
  221.     if(usputs(s,buf) == EOF)
  222.         len = -1;
  223.  
  224.     if(withargs)
  225.         free(buf);
  226.     return len;
  227. }
  228. #endif
  229. /* Buffered putchar to a socket */
  230. int
  231. usputc(s,c)
  232. int s;
  233. char c;
  234. {
  235.     struct usock *up;
  236.     register struct mbuf *bp;
  237.     char *cp;
  238.  
  239.     if((up = itop(s)) == NULLUSOCK){
  240.         errno = EBADF;
  241.         return -1;
  242.     }
  243.     if(up->obuf == NULLBUF){
  244.         /* Allocate a buffer of appropriate size */
  245.         switch(up->type){
  246.         case TYPE_NETROML4:
  247.             up->obuf = ambufw(NR4MAXINFO);
  248.             break;
  249.         default:
  250.             up->obuf = ambufw(BUFSIZ);
  251.             break;
  252.         }
  253.     }
  254.     bp = up->obuf;
  255.     if(c == '\n' && (up->flag & SOCK_ASCII)){
  256.         /* Translate into appropriate end-of-line sequence */
  257.         for(cp = up->eol;*cp != '\0';cp++)
  258.             bp->data[bp->cnt++] = *cp;
  259.     } else {
  260.         bp->data[bp->cnt++] = c;
  261.     }
  262.     /* Always leave enough room for an eol sequence in the next call */
  263.     if((c == up->flush && up->flush != -1) || bp->cnt >= bp->size-2)
  264.         if(usflush(s) == -1)
  265.             return -1;
  266.  
  267.     return (int)uchar(c);
  268. }
  269. /* Put a character to standard output socket */
  270. int
  271. tputc(c)
  272. char c;
  273. {
  274.     return usputc(Curproc->output,c);
  275. }
  276. #ifndef    oldusputs
  277. /* Buffered puts to a socket */
  278. int
  279. usputs(s,buf)
  280. int s;
  281. char *buf;
  282. {
  283.     register struct usock *up;
  284.     register struct mbuf *bp;
  285.     char *cp,*wp;
  286.     int16 len,clen;
  287.     int doflush;
  288.     int eol_len;
  289.     int newline;
  290.  
  291.     if((up = itop(s)) == NULLUSOCK){
  292.         errno = EBADF;
  293.         return EOF;
  294.     }
  295.     if(up->flag & SOCK_ASCII)
  296.         eol_len = strlen(up->eol);
  297.     doflush = (up->flush != -1) && (strchr(buf,up->flush) != NULLCHAR);
  298.     len = strlen(buf);
  299.  
  300.     while(len != 0){
  301.         if(up->obuf == NULLBUF){
  302.             /* Allocate a buffer of appropriate size */
  303.             switch(up->type){
  304.             case TYPE_NETROML4:
  305.                 clen = NR4MAXINFO;
  306.                 break;
  307.             default:
  308.                 clen = BUFSIZ;
  309.                 break;
  310.             }
  311.             up->obuf = ambufw(clen);
  312.         }
  313.         bp = up->obuf;
  314.         wp = &bp->data[bp->cnt];
  315.         if((up->flag && SOCK_ASCII)
  316.          && (cp = strchr(buf,'\n')) != NULLCHAR){
  317.             newline = 1;
  318.  
  319.             /* Ensure space for the eol sequence */
  320.             if(bp->cnt + eol_len >= bp->size){
  321.                 /* Not enough room; flush and
  322.                  * go back for another buffer
  323.                  */
  324.                 if(usflush(s) == -1)
  325.                     return EOF;
  326.                 continue;
  327.             }
  328.             /* Copy only up to newline, allowing space for eol */
  329.             clen = cp - buf;
  330.             clen  = min(clen,bp->size - bp->cnt - eol_len);
  331.         } else {
  332.             newline = 0;
  333.             clen = min(len,bp->size - bp->cnt);
  334.         }
  335.         /* Copy as much data as possible to mbuf */
  336.         if(clen != 0){
  337.             memcpy(wp,buf,clen);
  338.             wp += clen;
  339.             bp->cnt += clen;
  340.             buf += clen;
  341.             len -= clen;
  342.         }
  343.         if(newline){
  344.             /* Translate into appropriate end-of-line sequence */
  345.             strncpy(wp,up->eol,eol_len);
  346.             wp += eol_len;
  347.             bp->cnt += eol_len;
  348.             buf++;    /* Skip newline in buffer */
  349.             len--;
  350.         }
  351.         if((bp->cnt >= bp->size) && usflush(s) == -1)
  352.             return EOF;
  353.     }    
  354.     if(doflush && usflush(s) == -1)
  355.         return EOF;
  356.  
  357.     return 0;
  358. }
  359.  
  360. #else
  361.  
  362. int
  363. usputs(s,x)
  364. int s;
  365. register char *x;
  366. {
  367.     while(*x != '\0')
  368.         if(usputc(s,*x++) == EOF)
  369.             return EOF;
  370.     return 0;
  371. }
  372. #endif
  373.  
  374. /* Put a string to standard output socket */
  375. int
  376. tputs(s)
  377. char *s;
  378. {
  379.     return usputs(Curproc->output,s);
  380. }
  381.  
  382. /* Read a raw character from a socket with stream buffering. */
  383. int
  384. rrecvchar(s)
  385. int s;            /* Socket index */
  386. {
  387.     register struct usock *up;
  388.  
  389.     if((up = itop(s)) == NULLUSOCK){
  390.         return EOF;
  391.     }
  392.     /* Replenish if necessary */
  393.     if(up->ibuf == NULLBUF && recv_mbuf(s,&up->ibuf,0,NULLCHAR,0) <= 0)
  394.         return EOF;
  395.  
  396.     return PULLCHAR(&up->ibuf);    /* Returns -1 if eof */
  397. }
  398. /* This function recognizes the end-of-line sequence for the stream
  399.  * and translates it into a single '\n'.
  400.  */
  401. int
  402. recvchar(s)
  403. int s;            /* Socket index */
  404. {
  405.     int c;
  406.     register struct usock *up;
  407.  
  408.     if((up = itop(s)) == NULLUSOCK)
  409.         return EOF;
  410.  
  411.     c = rrecvchar(s);
  412.  
  413.     if(c != up->eol[0] || !(up->flag & SOCK_ASCII))
  414.         return c;
  415.  
  416.     /* This is the first char of a eol sequence. If the eol sequence is
  417.      * more than one char long, eat the next character in the input stream.
  418.      */
  419.     if(up->eol[1] != '\0'){
  420.         (void)rrecvchar(s);
  421.     }
  422.     return '\n';
  423. }
  424. /* Flush output on a socket stream */
  425. int
  426. usflush(s)
  427. int s;
  428. {
  429.     register struct usock *up;
  430.     struct mbuf *bp;
  431.  
  432.     if((up = itop(s)) == NULLUSOCK)
  433.         return -1;
  434.  
  435.     if(up->obuf != NULLBUF){
  436.         bp = up->obuf;
  437.         up->obuf = NULLBUF;
  438.         return send_mbuf(s,bp,0,NULLCHAR,0);
  439.     }
  440.     return 0;
  441. }
  442. /* Flush output socket */
  443. void
  444. tflush()
  445. {
  446.     usflush(Current->output);
  447. }
  448.  
  449. /* Print prompt and read one character */
  450. int
  451. keywait(prompt,flush)
  452. char *prompt;    /* Optional prompt */
  453. int flush;    /* Flush queued input? */
  454. {
  455.     int c;
  456.     int i;
  457.  
  458.     if(flush && socklen(Curproc->input,1) != 0)
  459.         recv_mbuf(Curproc->input,NULLBUFP,0,NULLCHAR,0); /* flush */
  460.     if(prompt == NULLCHAR)
  461.         prompt = "Hit enter to continue"; 
  462.     tprintf(prompt);
  463.     tflush();
  464.     c = recvchar(Curproc->input);
  465.     /* Get rid of the prompt */
  466.     for(i=strlen(prompt);i != 0;i--)
  467.         tputc('\b');
  468.     for(i=strlen(prompt);i != 0;i--)
  469.         tputc(' ');
  470.     for(i=strlen(prompt);i != 0;i--)
  471.         tputc('\b');
  472.     tflush();
  473.     return (int)c;
  474. }
  475.  
  476. /* Set the end-of-line sequence on a socket */
  477. int
  478. seteol(s,seq)
  479. int s;
  480. char *seq;
  481. {
  482.     register struct usock *up;
  483.  
  484.     if((up = itop(s)) == NULLUSOCK)
  485.         return -1;
  486.  
  487.     if(seq != NULLCHAR)
  488.         strncpy(up->eol,seq,sizeof(up->eol));
  489.     else
  490.         *up->eol = '\0';
  491.     return 0;
  492. }
  493. /* Enable/disable eol translation, return previous state */
  494. int
  495. sockmode(s,mode)
  496. int s,mode;
  497. {
  498.     struct usock *up;
  499.     int prev;
  500.  
  501.     if((up = itop(s)) == NULLUSOCK)
  502.         return -1;
  503.     usflush(s);
  504.     prev = up->flag;
  505.     switch(mode){
  506.     case SOCK_BINARY:
  507.     case SOCK_ASCII:
  508.         up->flag = mode;
  509.         break;
  510.     default:
  511.         break;
  512.     }
  513.     return prev;
  514. }
  515. /* Specify the character to trigger automatic output buffer
  516.  * flushing, or -1 to disable it. Return the previous setting.
  517.  */
  518. int
  519. setflush(s,c)
  520. int s;
  521. int c;
  522. {
  523.     register struct usock *up;
  524.     int old;
  525.  
  526.     if((up = itop(s)) == NULLUSOCK)
  527.         return -1;
  528.  
  529.     old = up->flush;
  530.     up->flush = c;
  531.     return old;
  532. }
  533.