home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / hamradio / s920603.zip / QTSO.C < prev    next >
C/C++ Source or Header  |  1992-05-15  |  10KB  |  377 lines

  1. /*
  2.  * Data interface with a QTSO vocoder selector card
  3.  */
  4. #include "global.h"
  5. #include "mbuf.h"
  6. #include "proc.h"
  7. #include "iface.h"
  8. #include "internet.h"
  9. #include "ip.h"
  10. #include "slhc.h"
  11. #include "n8250.h"
  12. #include "asy.h"
  13. #include "pktdrvr.h"
  14. #include "socket.h"
  15. #include "devparam.h"
  16. #include "qtso.h"
  17. #include "trace.h"
  18.  
  19. struct qtso *Qtso;
  20.  
  21. /* Routines local to this file */
  22.  
  23. /*
  24.  * FCS lookup table as generated by fcsgen.c
  25.  */
  26. static int16 fcstab[256] = {
  27.     0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
  28.     0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
  29.     0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
  30.     0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
  31.     0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
  32.     0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,
  33.     0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c,
  34.     0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974,
  35.     0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb,
  36.     0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3,
  37.     0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a,
  38.     0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72,
  39.     0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9,
  40.     0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1,
  41.     0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738,
  42.     0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70,
  43.     0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7,
  44.     0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff,
  45.     0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036,
  46.     0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e,
  47.     0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5,
  48.     0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd,
  49.     0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134,
  50.     0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c,
  51.     0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3,
  52.     0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb,
  53.     0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232,
  54.     0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a,
  55.     0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1,
  56.     0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9,
  57.     0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330,
  58.     0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78
  59. };
  60.  
  61. #define pppfcs(fcs, c)        ((fcs >> 8) ^ fcstab[(fcs ^ c) & 0x00ff])
  62. #define SP_CHAR            0x20
  63.  
  64.  
  65. /* Send IP datagram to QTSO */
  66. int
  67. qtso_send(bp,ifp,gateway,tos)
  68. struct mbuf *bp;    /* Buffer to send */
  69. struct iface *ifp;    /* Pointer to interface control block */
  70. int32 gateway;        /* Ignored (PPP is point-to-point) */
  71. int tos;
  72. {
  73.     return (*ifp->output)(ifp,NULLCHAR,NULLCHAR,0,bp);
  74. }
  75.  
  76.  
  77. /* Send a packet to QTSO */
  78. int
  79. qtso_output(ifp,dest,source,protocol,data)
  80. struct iface *ifp;    /* Pointer to interface control block */
  81. char *dest;        /* Dest addr (ignored; point-to-point) */
  82. char *source;        /* Source addr (ignored; point-to-point) */
  83. int16 protocol;        /* Protocol Type field */
  84. struct mbuf *data;    /* Actual data to be sent */
  85. {
  86.     return (*ifp->raw)(ifp,data);
  87. }
  88.  
  89.  
  90. /* Encode a raw packet in PPP framing, put on link output queue */
  91. static int
  92. qtso_raw(ifp,bp)
  93. struct iface *ifp;
  94. struct mbuf *bp;
  95. {
  96.     int16 calc_fcs = HDLC_FCS_START;
  97.     struct mbuf *vbp;
  98.     register char *cp;
  99.     register int c;
  100.     int accm = 0;
  101.     struct qtso *qp;
  102.  
  103.     qp = ifp->edv;
  104.     qp->sendframes++;
  105.  
  106.     dump(ifp,IF_TRACE_OUT,bp);
  107.     ifp->rawsndcnt++;
  108.     ifp->lastsent = secclock();
  109.  
  110.     /* Allocate output mbuf that's twice as long as the packet.
  111.      * This is a worst-case guess (consider a packet full of HDLC_FLAGs!)
  112.      */
  113.     if ((vbp = alloc_mbuf((int16)(2*len_p(bp)))) == NULLBUF) {
  114.         return -1;
  115.     }
  116.     cp = vbp->data;
  117.  
  118.     /* Flush out any line garbage */
  119.     *cp++ = HDLC_FLAG;
  120.  
  121.     /* Copy input to output, escaping special characters */
  122.     while ((c = PULLCHAR(&bp)) != -1) {
  123.         /* Fold char value into FCS calculated so far */
  124.         calc_fcs = pppfcs(calc_fcs, c);
  125.  
  126.         if ( ((c < SP_CHAR) && (accm & (1L << c)))
  127.             || (c == HDLC_ESC_ASYNC)
  128.             || (c == HDLC_FLAG)) {
  129.             *cp++ = HDLC_ESC_ASYNC;
  130.             *cp++ = (c ^ HDLC_ESC_COMPL);
  131.         } else {
  132.             *cp++ = c;
  133.         }
  134.     }
  135.  
  136.     /* Final FCS calculation */
  137.     calc_fcs ^= 0xffff;
  138.     c = (calc_fcs & 0x00ff);    /* Least significant byte first */
  139.     if ( ((c < SP_CHAR) && (accm & (1L << c)))
  140.          ||(c == HDLC_ESC_ASYNC)
  141.          ||(c == HDLC_FLAG)) {
  142.         *cp++ = HDLC_ESC_ASYNC;
  143.         *cp++ = (c ^ HDLC_ESC_COMPL);
  144.     } else {
  145.         *cp++ = c;
  146.     }
  147.     c = (calc_fcs >> 8);        /* Most significant byte next */
  148.     if ( ((c < SP_CHAR) && (accm & (1L << c)))
  149.          ||(c == HDLC_ESC_ASYNC)
  150.          ||(c == HDLC_FLAG)) {
  151.         *cp++ = HDLC_ESC_ASYNC;
  152.         *cp++ = (c ^ HDLC_ESC_COMPL);
  153.     } else {
  154.         *cp++ = c;
  155.     }
  156.  
  157.     /* Tie off the packet */
  158.     *cp++ = HDLC_FLAG;
  159.     vbp->cnt = cp - vbp->data;
  160.  
  161.     if (ifp->trace & IF_TRACE_RAW)
  162.         raw_dump(ifp,IF_TRACE_OUT,vbp);
  163.     return asy_send(ifp->dev,vbp);
  164. }
  165.  
  166. /* Packetize QTSO input from device */
  167. void
  168. qtso_recv(dev,p1,p2)
  169. int dev;
  170. void *p1;
  171. void *p2;
  172. {
  173.     struct iface *ifp = p1;
  174.     int16 calc_fcs = HDLC_FCS_START;
  175.     struct mbuf *raw_bp = NULLBUF;
  176.     struct mbuf *head_bp = NULLBUF;
  177.     register struct mbuf *tail_bp = NULLBUF;
  178.     char *cp;            /* next byte in tail mbuf */
  179.     register int mode = FALSE;
  180.     register int c;
  181.     int accm = 0;
  182.     struct qtso *qp;
  183.  
  184.     qp = ifp->edv;
  185.     while((c = get_asy(dev)) != -1){
  186. #ifdef    notdef
  187.         if (ifp->trace & IF_TRACE_RAW) {
  188.             if ( raw_bp != NULLBUF
  189.               || (raw_bp = alloc_mbuf( LCP_MRU_HI * 2 )) != NULLBUF ) {
  190.                 *raw_bp->data++ = c;
  191.                 raw_bp->cnt++;
  192.                 if ( raw_bp->cnt != 1 && c == HDLC_FLAG ) {
  193.                     raw_bp->data = (char *)(raw_bp + 1);
  194.                     raw_dump( ifp, IF_TRACE_IN, raw_bp );
  195.                     raw_bp->cnt = 0;
  196.                 }
  197.             }
  198.         }
  199. #endif
  200.         if(c == HDLC_FLAG){
  201.             if(mode & PPP_ESCAPED){
  202.                 /* Frame abort */
  203.                 qp->aborts++;
  204.             } else if(mode & PPP_TOSS){
  205.                 /* We're ignoring this frame */
  206.                 free_p(head_bp);
  207.             } else if(head_bp != NULLBUF) {
  208.                 if(calc_fcs != HDLC_FCS_FINAL){
  209.                     /* CRC error */
  210.                     qp->crcerrs++;
  211.                 } else {
  212.                     /* trim off FCS bytes */
  213.                     trim_mbuf(&head_bp, len_p(head_bp)-2);
  214.  
  215.                     net_route(ifp,head_bp);
  216.                     qp->goodframes++;
  217.                     /* Especially on slow machines, serial I/O can be quite
  218.                      * compute intensive, so release the machine before we
  219.                      * do the next packet.  This will allow this packet to
  220.                      * go on toward its ultimate destination. [Karn]
  221.                      */
  222.                     pwait(NULL);
  223.                 }
  224.             } else {
  225.                 /* Flag on idle link */
  226.             }
  227.             /* setup for next buffer */
  228.             mode = FALSE;
  229.             head_bp = tail_bp = NULLBUF;
  230.             calc_fcs = HDLC_FCS_START;
  231.             accm = 0;
  232.  
  233.             if(!(ifp->trace & IF_TRACE_RAW)){
  234.                 if(raw_bp != NULLBUF){
  235.                     free_p(raw_bp);
  236.                     raw_bp = NULLBUF;
  237.                 }
  238.             }
  239.             continue;
  240.         }
  241.         /* We reach here for every byte inside a frame.
  242.          * (The order of the following tests is important.)
  243.          * Discard spurious control characters.
  244.          * Check for escape sequence.
  245.          * (Allow escaped escape.)
  246.          */
  247.         if(c < SP_CHAR && (accm & (1L << c))){
  248.             continue;
  249.         } else if(mode & PPP_ESCAPED){
  250.             mode &= ~PPP_ESCAPED;
  251.             c ^= HDLC_ESC_COMPL;
  252.         } else if(c == HDLC_ESC_ASYNC){
  253.             mode |= PPP_ESCAPED;
  254.             continue;
  255.         }
  256.         /* We reach here with a byte for the buffer.
  257.          * Make sure there is room for it.
  258.          */
  259.         if(tail_bp == NULLBUF){
  260.             if ((tail_bp = alloc_mbuf(PPP_ALLOC)) == NULLBUF) {
  261.                 mode |= PPP_TOSS;
  262.                 continue;
  263.             }
  264.             head_bp = tail_bp;
  265.             cp = tail_bp->data;
  266.         } else if(tail_bp->cnt >= tail_bp->size){
  267.             /* Current mbuf is full */
  268.             if((tail_bp->next = alloc_mbuf(PPP_ALLOC)) == NULLBUF){
  269.                 /* No memory, drop the whole packet */
  270.                 head_bp = NULLBUF;
  271.                 mode |= PPP_TOSS;
  272.                 continue;
  273.             }
  274.             tail_bp = tail_bp->next;
  275.             cp = tail_bp->data;
  276.         }
  277.  
  278.         /* Store the byte, increment counts */
  279.         *cp++ = c;
  280.         tail_bp->cnt++;
  281.         calc_fcs = pppfcs(calc_fcs, c);
  282.     }
  283.     /* clean up afterward */
  284.     free_p(raw_bp);
  285.     free_p(head_bp);
  286.     ifp->rxproc = NULLPROC;
  287. }
  288.  
  289. #pragma option -G-
  290.  
  291. /* Process incoming QTSO packets */
  292. /* (called from network task) */
  293. void
  294. qtso_proc(ifp,bp)
  295. struct iface *ifp;
  296. struct mbuf *bp;
  297. {
  298.     if ( ifp == NULLIF ) {
  299.         return;
  300.     }
  301.     if ( bp == NULLBUF ) {
  302.         return;
  303.     }
  304. /*    ip_route(ifp,bp,0); */
  305.     qtso_raw(ifp,bp);    
  306. /*    tputc('.'); */
  307. }
  308.  
  309. #pragma option -G
  310.  
  311. /* Initialize QTSO control structures for a Point-to-Point interface */
  312. int
  313. qtso_init(ifp,vj)
  314. struct iface *ifp;
  315. int vj;
  316. {
  317.     char *ifn;
  318.     struct qtso *qp;
  319.     struct mbuf *bp;
  320.     char imsg[] = { 0x01, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  321.         0,0,0,0,0,0 };
  322.  
  323.     qp = (struct qtso *)calloc(1,sizeof(struct qtso));
  324.     ifp->edv = qp;
  325.     qp->iface = ifp;
  326.     setencap(ifp,"QTSO");
  327.     ifp->ioctl = asy_ioctl;
  328.     ifp->flags = FALSE;
  329.     ifp->raw = qtso_raw;
  330.  
  331.     ifp->rxproc = newproc( ifn = if_name( ifp, " receive" ),
  332.             320, qtso_recv, ifp->dev, ifp, NULL, 0);
  333.     free(ifn);
  334.     bp = qdata(imsg,sizeof(imsg));
  335.     qtso_raw(ifp,bp);
  336.  
  337.     return 0;
  338. }
  339. int
  340. qtso_free(ifp)
  341. struct iface *ifp;
  342. {
  343.     struct qtso *qp,*qp1;
  344.     
  345.     qp = (struct qtso *)ifp->edv;
  346.     if(qp == Qtso){
  347.         Qtso = qp->next;
  348.     } else {
  349.         for(qp1 = Qtso;qp1 != NULLQTSO;qp1 = qp1->next)
  350.             if(qp1->next == qp)
  351.                 break;
  352.         if(qp1->next == qp){
  353.             qp1->next = qp->next;
  354.         }
  355.     }
  356.     return 0;
  357. }
  358. int
  359. doqtso(argc,argv,p)
  360. int argc;
  361. char *argv[];
  362. void *p;
  363. {
  364.     struct iface *ifp;
  365.     struct qtso *qp;
  366.  
  367.     if((ifp = if_lookup(argv[1])) == NULLIF){
  368.         printf("Interface %s unknown\n",argv[1]);
  369.         return 1;
  370.     }
  371.     qp = ifp->edv;
  372.     printf("TX Frames %lu, Good rx frames %lu, CRC errs %lu, aborts %lu\n",
  373.         qp->sendframes,qp->goodframes,qp->crcerrs,qp->aborts);
  374.     return 0;
  375. }
  376.  
  377.