2 * Copyright (c) 1997, 2001 Hellmuth Michaelis. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 *---------------------------------------------------------------------------
27 * i4b_ipr.c - isdn4bsd IP over raw HDLC ISDN network driver
28 * ---------------------------------------------------------
30 * $FreeBSD: src/sys/i4b/driver/i4b_ipr.c,v 1.8.2.3 2001/10/27 15:48:17 hm Exp $
31 * $DragonFly: src/sys/net/i4b/driver/i4b_ipr.c,v 1.22 2008/05/14 11:59:23 sephe Exp $
33 * last edit-date: [Fri Oct 26 19:32:38 2001]
35 *---------------------------------------------------------------------------*
37 * statistics counter usage (interface lifetime):
38 * ----------------------------------------------
39 * sc->sc_if.if_ipackets # of received packets
40 * sc->sc_if.if_ierrors # of error packets not going to upper layers
41 * sc->sc_if.if_opackets # of transmitted packets
42 * sc->sc_if.if_oerrors # of error packets not being transmitted
43 * sc->sc_if.if_collisions # of invalid ip packets after VJ decompression
44 * sc->sc_if.if_ibytes # of bytes coming in from the line (before VJ)
45 * sc->sc_if.if_obytes # of bytes going out to the line (after VJ)
46 * sc->sc_if.if_imcasts (currently unused)
47 * sc->sc_if.if_omcasts # of frames sent out of the fastqueue
48 * sc->sc_if.if_iqdrops # of frames dropped on input because queue full
49 * sc->sc_if.if_noproto # of frames dropped on output because !AF_INET
51 * statistics counter usage (connection lifetime):
52 * -----------------------------------------------
53 * sc->sc_iinb # of ISDN incoming bytes from HSCX
54 * sc->sc_ioutb # of ISDN outgoing bytes from HSCX
55 * sc->sc_inb # of incoming bytes after decompression
56 * sc->sc_outb # of outgoing bytes before compression
58 *---------------------------------------------------------------------------*/
60 #include "use_i4bipr.h"
66 #include <sys/param.h>
67 #include <sys/systm.h>
69 #include <sys/socket.h>
70 #include <sys/errno.h>
72 #include <sys/sockio.h>
74 #include <sys/malloc.h>
77 #include <sys/kernel.h>
78 #include <sys/thread2.h>
81 #include <net/if_types.h>
82 #include <net/netisr.h>
84 #include <netinet/in.h>
85 #include <netinet/in_systm.h>
86 #include <netinet/in_var.h>
87 #include <netinet/ip.h>
90 #include <net/slcompress.h>
91 #define IPR_COMPRESS IFF_LINK0 /* compress TCP traffic */
92 #define IPR_AUTOCOMP IFF_LINK1 /* auto-enable TCP compression */
94 /*---------------------------------------------------------------------------
95 * NOTICE: using NO separate buffer relies on the assumption, that the HSCX
96 * IRQ handler _always_ allocates a single, continuous mbuf cluster large
97 * enough to hold the maximum MTU size if the ipr interface !
99 * CAUTION: i have re-defined IPR_VJ_USEBUFFER because it makes problems
100 * with 2 i4b's back to back running cvs over ssh, cvs simply
101 * aborts because it gets bad data. Everything else (telnet/ftp?etc)
103 *---------------------------------------------------------------------------*/
104 #define IPR_VJ_USEBUFFER /* define to use an allocated separate buffer*/
105 /* undef to uncompress in the mbuf itself */
110 #if NBPFILTER > 0 || NBPF > 0
111 #include <sys/time.h>
115 #include <net/i4b/include/machine/i4b_debug.h>
116 #include <net/i4b/include/machine/i4b_ioctl.h>
118 #include "../include/i4b_global.h"
119 #include "../include/i4b_l3l4.h"
121 #include "../layer4/i4b_l4.h"
123 #define IPR_FMT "%s: "
124 #define IPR_ARG(sc) ((sc)->sc_if.if_xname)
125 #define PDEVSTATIC /* not static */
127 #define I4BIPRMTU 1500 /* regular MTU */
128 #define I4BIPRMAXMTU 2000 /* max MTU */
129 #define I4BIPRMINMTU 500 /* min MTU */
131 #define I4BIPRMAXQLEN 50 /* max queue length */
133 #define I4BIPRACCT 1 /* enable accounting messages */
134 #define I4BIPRACCTINTVL 2 /* accounting msg interval in secs */
135 #define I4BIPRADJFRXP 1 /* adjust 1st rxd packet */
137 /* initialized by L4 */
139 static drvr_link_t ipr_drvr_linktab[NI4BIPR];
140 static isdn_link_t *isdn_linktab[NI4BIPR];
143 struct ifnet sc_if; /* network-visible interface */
144 int sc_state; /* state of the interface */
145 int sc_unit; /* unit number */
146 call_desc_t *sc_cdp; /* ptr to call descriptor */
147 int sc_updown; /* soft state of interface */
148 struct ifqueue sc_fastq; /* interactive traffic */
149 int sc_dialresp; /* dialresponse */
150 int sc_lastdialresp;/* last dialresponse */
153 int sc_iinb; /* isdn driver # of inbytes */
154 int sc_ioutb; /* isdn driver # of outbytes */
155 int sc_inb; /* # of bytes rx'd */
156 int sc_outb; /* # of bytes tx'd */
157 int sc_linb; /* last # of bytes rx'd */
158 int sc_loutb; /* last # of bytes tx'd */
159 int sc_fn; /* flag, first null acct */
162 struct callout sc_timeout;
165 int sc_first_pkt; /* flag, first rxd packet */
168 int sc_log_first; /* log first n packets */
172 struct slcompress sc_compr; /* tcp compression data */
173 #ifdef IPR_VJ_USEBUFFER
174 u_char *sc_cbuf; /* tcp decompression buffer */
178 } ipr_softc[NI4BIPR];
181 ST_IDLE, /* initialized, ready, idle */
182 ST_DIALING, /* dialling out to remote */
183 ST_CONNECTED_W, /* connected to remote */
184 ST_CONNECTED_A, /* connected to remote */
187 #define THE_UNIT sc->sc_unit
189 # define IOCTL_CMD_T u_long
191 PDEVSTATIC void i4biprattach(void *);
192 PSEUDO_SET(i4biprattach, i4b_ipr);
193 static int i4biprioctl(struct ifnet *ifp, IOCTL_CMD_T cmd, caddr_t data,
195 static void iprwatchdog(struct ifnet *ifp);
196 static void ipr_init_linktab(int unit);
197 static void ipr_tx_queue_empty(int unit);
198 static int i4biproutput(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst, struct rtentry *rtp);
199 static void iprclearqueues(struct ipr_softc *sc);
201 /*===========================================================================*
202 * DEVICE DRIVER ROUTINES
203 *===========================================================================*/
205 /*---------------------------------------------------------------------------*
206 * interface attach routine at kernel boot time
207 *---------------------------------------------------------------------------*/
209 i4biprattach(void *dummy)
211 struct ipr_softc *sc = ipr_softc;
215 kprintf("i4bipr: %d IP over raw HDLC ISDN device(s) attached (VJ header compression)\n", NI4BIPR);
217 kprintf("i4bipr: %d IP over raw HDLC ISDN device(s) attached\n", NI4BIPR);
220 for(i=0; i < NI4BIPR; sc++, i++)
224 NDBGL4(L4_DIALST, "setting dial state to ST_IDLE");
226 sc->sc_state = ST_IDLE;
228 if_initname(&(sc->sc_if), "ipr", i);
231 sc->sc_if.if_flags = IFF_POINTOPOINT | IFF_SIMPLEX | IPR_AUTOCOMP;
233 sc->sc_if.if_flags = IFF_POINTOPOINT | IFF_SIMPLEX;
236 callout_init(&sc->sc_timeout);
238 sc->sc_if.if_mtu = I4BIPRMTU;
239 sc->sc_if.if_type = IFT_ISDNBASIC;
240 sc->sc_if.if_ioctl = i4biprioctl;
241 sc->sc_if.if_output = i4biproutput;
243 sc->sc_if.if_snd.ifq_maxlen = I4BIPRMAXQLEN;
244 sc->sc_fastq.ifq_maxlen = I4BIPRMAXQLEN;
246 sc->sc_if.if_ipackets = 0;
247 sc->sc_if.if_ierrors = 0;
248 sc->sc_if.if_opackets = 0;
249 sc->sc_if.if_oerrors = 0;
250 sc->sc_if.if_collisions = 0;
251 sc->sc_if.if_ibytes = 0;
252 sc->sc_if.if_obytes = 0;
253 sc->sc_if.if_imcasts = 0;
254 sc->sc_if.if_omcasts = 0;
255 sc->sc_if.if_iqdrops = 0;
256 sc->sc_if.if_noproto = 0;
259 sc->sc_if.if_timer = 0;
260 sc->sc_if.if_watchdog = iprwatchdog;
270 sc->sc_log_first = IPR_LOG;
274 sl_compress_init(&sc->sc_compr, -1);
276 #ifdef IPR_VJ_USEBUFFER
277 sc->sc_cbuf = (u_char *)kmalloc(I4BIPRMAXMTU+128, M_DEVBUF,
281 sc->sc_updown = SOFT_ENA; /* soft enabled */
282 sc->sc_dialresp = DSTAT_NONE; /* no response */
283 sc->sc_lastdialresp = DSTAT_NONE;
285 if_attach(&sc->sc_if, NULL);
286 bpfattach(&sc->sc_if, DLT_NULL, sizeof(u_int));
290 /*---------------------------------------------------------------------------*
291 * output a packet to the ISDN B-channel
292 *---------------------------------------------------------------------------*/
294 i4biproutput_serialized(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
297 struct ipr_softc *sc;
308 if(dst->sa_family != AF_INET)
310 kprintf(IPR_FMT "af%d not supported\n", IPR_ARG(sc), dst->sa_family);
313 sc->sc_if.if_noproto++;
314 sc->sc_if.if_oerrors++;
315 return(EAFNOSUPPORT);
318 /* check interface state = UP */
320 if(!(ifp->if_flags & IFF_UP))
322 NDBGL4(L4_IPRDBG, "ipr%d: interface is DOWN!", unit);
325 sc->sc_if.if_oerrors++;
329 /* dial if necessary */
331 if(sc->sc_state == ST_IDLE || sc->sc_state == ST_DIALING)
335 switch(sc->sc_dialresp)
337 case DSTAT_TFAIL: /* transient failure */
338 NDBGL4(L4_IPRDBG, "ipr%d: transient dial failure!", unit);
341 sc->sc_dialresp = DSTAT_NONE;
343 sc->sc_if.if_oerrors++;
347 case DSTAT_PFAIL: /* permanent failure */
348 NDBGL4(L4_IPRDBG, "ipr%d: permanent dial failure!", unit);
351 sc->sc_dialresp = DSTAT_NONE;
353 sc->sc_if.if_oerrors++;
354 return(EHOSTUNREACH);
357 case DSTAT_INONLY: /* no dialout allowed*/
358 NDBGL4(L4_IPRDBG, "ipr%d: dialout not allowed failure!", unit);
361 sc->sc_dialresp = DSTAT_NONE;
363 sc->sc_if.if_oerrors++;
364 return(EHOSTUNREACH);
369 NDBGL4(L4_IPRDBG, "ipr%d: send dial request message!", unit);
370 NDBGL4(L4_DIALST, "ipr%d: setting dial state to ST_DIALING", unit);
371 i4b_l4_dialout(BDRV_IPR, unit);
372 sc->sc_state = ST_DIALING;
376 if(sc->sc_log_first > 0)
378 --(sc->sc_log_first);
379 i4b_l4_packet_ind(BDRV_IPR, unit, 1, m );
383 /* update access time */
385 microtime(&sc->sc_if.if_lastchange);
388 * check, if type of service indicates interactive, i.e. telnet,
389 * traffic. in case it is interactive, put it into the fast queue,
390 * else (i.e. ftp traffic) put it into the "normal" queue
393 ip = mtod(m, struct ip *); /* get ptr to ip header */
395 /* check for space in choosen send queue */
397 if (netisr_queue(NETISR_IP, m))
399 NDBGL4(L4_IPRDBG, "ipr%d: send queue full!", unit);
401 sc->sc_if.if_oerrors++;
405 NDBGL4(L4_IPRDBG, "ipr%d: add packet to send queue!", unit);
407 ipr_tx_queue_empty(unit);
415 i4biproutput(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
420 ifnet_serialize_tx(ifp);
421 error = i4biproutput_serialized(ifp, m, dst, rtp);
422 ifnet_deserialize_tx(ifp);
427 /*---------------------------------------------------------------------------*
429 *---------------------------------------------------------------------------*/
431 i4biprioctl(struct ifnet *ifp, IOCTL_CMD_T cmd, caddr_t data, struct ucred *cr)
433 struct ipr_softc *sc = ifp->if_softc;
435 struct ifreq *ifr = (struct ifreq *)data;
436 struct ifaddr *ifa = (struct ifaddr *)data;
443 case SIOCAIFADDR: /* add interface address */
444 case SIOCSIFADDR: /* set interface address */
445 case SIOCSIFDSTADDR: /* set interface destination address */
446 if(ifa->ifa_addr->sa_family != AF_INET)
447 error = EAFNOSUPPORT;
449 sc->sc_if.if_flags |= IFF_UP;
450 microtime(&sc->sc_if.if_lastchange);
453 case SIOCSIFFLAGS: /* set interface flags */
454 if(!(ifr->ifr_flags & IFF_UP))
456 if(sc->sc_if.if_flags & IFF_RUNNING)
458 /* disconnect ISDN line */
459 i4b_l4_drvrdisc(BDRV_IPR, sc->sc_unit);
460 sc->sc_if.if_flags &= ~IFF_RUNNING;
463 sc->sc_state = ST_IDLE;
470 if(ifr->ifr_flags & IFF_DEBUG)
472 /* enable debug messages */
475 microtime(&sc->sc_if.if_lastchange);
478 case SIOCSIFMTU: /* set interface MTU */
479 if(ifr->ifr_mtu > I4BIPRMAXMTU)
481 else if(ifr->ifr_mtu < I4BIPRMINMTU)
485 ifp->if_mtu = ifr->ifr_mtu;
486 microtime(&sc->sc_if.if_lastchange);
491 /* not needed for FreeBSD, done in sl_compress_init() (-hm) */
493 /* need to add an ioctl: set VJ max slot ID
494 * #define IPRIOCSMAXCID _IOW('I', XXX, int)
499 struct thread *td = curthread; /* XXX */
501 if ((error = priv_check(td, PRIV_ROOT)) != 0)
503 sl_compress_setup(sc->sc_compr, *(int *)data);
518 /*---------------------------------------------------------------------------*
519 * clear the interface's send queues
520 *---------------------------------------------------------------------------*/
522 iprclearqueues(struct ipr_softc *sc)
529 IF_DEQUEUE(&sc->sc_fastq, m);
540 IF_DEQUEUE(&sc->sc_if.if_snd, m);
550 /*---------------------------------------------------------------------------*
552 *---------------------------------------------------------------------------*/
554 iprwatchdog(struct ifnet *ifp)
556 struct ipr_softc *sc = ifp->if_softc;
557 int unit = sc->sc_unit;
558 bchan_statistics_t bs;
560 /* get # of bytes in and out from the HSCX driver */
562 (*isdn_linktab[unit]->bch_stat)
563 (isdn_linktab[unit]->unit, isdn_linktab[unit]->channel, &bs);
565 sc->sc_ioutb += bs.outbytes;
566 sc->sc_iinb += bs.inbytes;
568 if((sc->sc_iinb != sc->sc_linb) || (sc->sc_ioutb != sc->sc_loutb) || sc->sc_fn)
570 int ri = (sc->sc_iinb - sc->sc_linb)/I4BIPRACCTINTVL;
571 int ro = (sc->sc_ioutb - sc->sc_loutb)/I4BIPRACCTINTVL;
573 if((sc->sc_iinb == sc->sc_linb) && (sc->sc_ioutb == sc->sc_loutb))
578 sc->sc_linb = sc->sc_iinb;
579 sc->sc_loutb = sc->sc_ioutb;
581 i4b_l4_accounting(BDRV_IPR, unit, ACCT_DURING,
582 sc->sc_ioutb, sc->sc_iinb, ro, ri, sc->sc_outb, sc->sc_inb);
584 sc->sc_if.if_timer = I4BIPRACCTINTVL;
586 #endif /* I4BIPRACCT */
588 /*===========================================================================*
589 * ISDN INTERFACE ROUTINES
590 *===========================================================================*/
592 /*---------------------------------------------------------------------------*
593 * start transmitting after connect
594 *---------------------------------------------------------------------------*/
596 i4bipr_connect_startio(struct ipr_softc *sc)
600 if(sc->sc_state == ST_CONNECTED_W)
602 sc->sc_state = ST_CONNECTED_A;
603 ipr_tx_queue_empty(THE_UNIT);
609 /*---------------------------------------------------------------------------*
610 * this routine is called from L4 handler at connect time
611 *---------------------------------------------------------------------------*/
613 ipr_connect(int unit, void *cdp)
615 struct ipr_softc *sc = &ipr_softc[unit];
617 sc->sc_cdp = (call_desc_t *)cdp;
621 NDBGL4(L4_DIALST, "ipr%d: setting dial state to ST_CONNECTED", unit);
623 sc->sc_if.if_flags |= IFF_RUNNING;
624 sc->sc_state = ST_CONNECTED_W;
626 sc->sc_dialresp = DSTAT_NONE;
627 sc->sc_lastdialresp = DSTAT_NONE;
636 sc->sc_if.if_timer = I4BIPRACCTINTVL;
640 sc->sc_first_pkt = 1;
644 * Sometimes ISDN B-channels are switched thru asymmetic. This
645 * means that under such circumstances B-channel data (the first
646 * three packets of a TCP connection in my case) may get lost,
647 * causing a large delay until the connection is started.
648 * When the sending of the very first packet of a TCP connection
649 * is delayed for a to be empirically determined delay (close
650 * to a second in my case) those packets go thru and the TCP
651 * connection comes up "almost" immediately (-hm).
654 if(sc->sc_cdp->isdntxdelay > 0)
659 delay = sc->sc_cdp->isdntxdelay; /* avoid any rounding */
661 delay = sc->sc_cdp->isdntxdelay*hz;
665 callout_reset(&sc->sc_timeout, delay,
666 (TIMEOUT_FUNC_T)i4bipr_connect_startio, sc);
670 sc->sc_state = ST_CONNECTED_A;
671 ipr_tx_queue_empty(unit);
676 /* we don't need any negotiation - pass event back right now */
677 i4b_l4_negcomplete(sc->sc_cdp);
680 /*---------------------------------------------------------------------------*
681 * this routine is called from L4 handler at disconnect time
682 *---------------------------------------------------------------------------*/
684 ipr_disconnect(int unit, void *cdp)
686 call_desc_t *cd = (call_desc_t *)cdp;
687 struct ipr_softc *sc = &ipr_softc[unit];
689 /* new stuff to check that the active channel is being closed */
691 if (cd != sc->sc_cdp)
693 NDBGL4(L4_IPRDBG, "ipr%d: channel %d not active",
694 cd->driver_unit, cd->channelid);
699 sc->sc_if.if_timer = 0;
702 /* show next IPR_LOG packets again */
703 sc->sc_log_first = IPR_LOG;
706 i4b_l4_accounting(BDRV_IPR, cd->driver_unit, ACCT_FINAL,
707 sc->sc_ioutb, sc->sc_iinb, 0, 0, sc->sc_outb, sc->sc_inb);
711 NDBGL4(L4_DIALST, "setting dial state to ST_IDLE");
713 sc->sc_dialresp = DSTAT_NONE;
714 sc->sc_lastdialresp = DSTAT_NONE;
716 sc->sc_if.if_flags &= ~IFF_RUNNING;
717 sc->sc_state = ST_IDLE;
720 /*---------------------------------------------------------------------------*
721 * this routine is used to give a feedback from userland daemon
722 * in case of dial problems
723 *---------------------------------------------------------------------------*/
725 ipr_dialresponse(int unit, int status, cause_t cause)
727 struct ipr_softc *sc = &ipr_softc[unit];
728 sc->sc_dialresp = status;
730 NDBGL4(L4_IPRDBG, "ipr%d: last=%d, this=%d",
731 unit, sc->sc_lastdialresp, sc->sc_dialresp);
733 if(status != DSTAT_NONE)
735 NDBGL4(L4_IPRDBG, "ipr%d: clearing queues", unit);
740 /*---------------------------------------------------------------------------*
741 * interface soft up/down
742 *---------------------------------------------------------------------------*/
744 ipr_updown(int unit, int updown)
746 struct ipr_softc *sc = &ipr_softc[unit];
747 sc->sc_updown = updown;
750 /*---------------------------------------------------------------------------*
751 * this routine is called from the HSCX interrupt handler
752 * when a new frame (mbuf) has been received and was put on
753 * the rx queue. It is assumed that this routines runs in
754 * a critical section ! Keep it short !
755 *---------------------------------------------------------------------------*/
757 ipr_rx_data_rdy(int unit)
759 struct ipr_softc *sc = &ipr_softc[unit];
762 #ifdef IPR_VJ_USEBUFFER
763 u_char *cp = sc->sc_cbuf;
767 static const uint32_t af = AF_INET;
769 if((m = *isdn_linktab[unit]->rx_mbuf) == NULL)
772 m->m_pkthdr.rcvif = &sc->sc_if;
774 m->m_pkthdr.len = m->m_len;
776 microtime(&sc->sc_if.if_lastchange);
781 * The very first packet after the B channel is switched thru
782 * has very often several bytes of random data prepended. This
783 * routine looks where the IP header starts and removes the
789 unsigned char *mp = m->m_data;
792 sc->sc_first_pkt = 0;
794 for(i = 0; i < m->m_len; i++, mp++)
796 if( ((*mp & 0xf0) == 0x40) &&
797 ((*mp & 0x0f) >= 0x05) )
800 m->m_pkthdr.len -= i;
807 sc->sc_if.if_ipackets++;
808 sc->sc_if.if_ibytes += m->m_pkthdr.len;
811 if((c = (*(mtod(m, u_char *)) & 0xf0)) != (IPVERSION << 4))
813 /* copy data to buffer */
817 #ifdef IPR_VJ_USEBUFFER
818 /* XXX */ m_copydata(m, 0, len, cp);
823 c = TYPE_COMPRESSED_TCP;
825 else if(c == TYPE_UNCOMPRESSED_TCP)
827 #ifdef IPR_VJ_USEBUFFER
828 *cp &= 0x4f; /* XXX */
830 *(mtod(m, u_char *)) &= 0x4f;
835 * We've got something that's not an IP packet.
836 * If compression is enabled, try to decompress it.
837 * Otherwise, if `auto-enable' compression is on and
838 * it's a reasonable packet, decompress it and then
839 * enable compression. Otherwise, drop it.
841 if(sc->sc_if.if_flags & IPR_COMPRESS)
843 #ifdef IPR_VJ_USEBUFFER
844 len = sl_uncompress_tcp(&cp,len,(u_int)c,&sc->sc_compr);
846 len = sl_uncompress_tcp((u_char **)&m->m_data, len,
847 (u_int)c, &sc->sc_compr);
853 kprintf("i4b_ipr, ipr_rx_data_rdy: len <= 0 IPR_COMPRESS!\n");
858 else if((sc->sc_if.if_flags & IPR_AUTOCOMP) &&
859 (c == TYPE_UNCOMPRESSED_TCP) && (len >= 40))
861 #ifdef IPR_VJ_USEBUFFER
862 len = sl_uncompress_tcp(&cp,len,(u_int)c,&sc->sc_compr);
864 len = sl_uncompress_tcp((u_char **)&m->m_data, len,
865 (u_int)c, &sc->sc_compr);
871 kprintf("i4b_ipr, ipr_rx_data_rdy: len <= 0 IPR_AUTOCOMP!\n");
876 sc->sc_if.if_flags |= IPR_COMPRESS;
881 kprintf("i4b_ipr, ipr_input: invalid ip packet!\n");
885 sc->sc_if.if_ierrors++;
886 sc->sc_if.if_collisions++;
890 #ifdef IPR_VJ_USEBUFFER
891 /* XXX */ m_copyback(m, 0, len, cp);
893 m->m_len = m->m_pkthdr.len = len;
899 /* NB. do the accounting after decompression! */
900 sc->sc_inb += m->m_pkthdr.len;
903 if(sc->sc_log_first > 0)
905 --(sc->sc_log_first);
906 i4b_l4_packet_ind(BDRV_IPR, unit, 0, m );
910 if (sc->sc_if.if_bpf)
911 bpf_ptap(sc->sc_if.if_bpf, m, &af, sizeof(af));
913 if (netisr_queue(NETISR_IP, m)) {
914 NDBGL4(L4_IPRDBG, "ipr%d: ipintrq full!", unit);
915 sc->sc_if.if_ierrors++;
916 sc->sc_if.if_iqdrops++;
920 /*---------------------------------------------------------------------------*
921 * this routine is called from the HSCX interrupt handler
922 * when the last frame has been sent out and there is no
923 * further frame (mbuf) in the tx queue.
924 *---------------------------------------------------------------------------*/
926 ipr_tx_queue_empty(int unit)
928 static const uint32_t af = AF_INET;
929 struct ipr_softc *sc = &ipr_softc[unit];
936 if(sc->sc_state != ST_CONNECTED_A)
941 IF_DEQUEUE(&sc->sc_fastq, m);
944 sc->sc_if.if_omcasts++;
948 IF_DEQUEUE(&sc->sc_if.if_snd, m);
953 microtime(&sc->sc_if.if_lastchange);
955 if (sc->sc_if.if_bpf)
956 bpf_ptap(sc->sc_if.if_bpf, m, &af, sizeof(af));
959 sc->sc_outb += m->m_pkthdr.len; /* size before compression */
963 if((ip = mtod(m, struct ip *))->ip_p == IPPROTO_TCP)
965 if(sc->sc_if.if_flags & IPR_COMPRESS)
967 *mtod(m, u_char *) |= sl_compress_tcp(m, ip,
974 if(IF_QFULL(isdn_linktab[unit]->tx_queue))
976 NDBGL4(L4_IPRDBG, "ipr%d: tx queue full!", unit);
981 sc->sc_if.if_obytes += m->m_pkthdr.len;
983 sc->sc_if.if_opackets++;
985 IF_ENQUEUE(isdn_linktab[unit]->tx_queue, m);
991 (*isdn_linktab[unit]->bch_tx_start)(isdn_linktab[unit]->unit, isdn_linktab[unit]->channel);
994 /*---------------------------------------------------------------------------*
995 * this routine is called from the HSCX interrupt handler
996 * each time a packet is received or transmitted. It should
997 * be used to implement an activity timeout mechanism.
998 *---------------------------------------------------------------------------*/
1000 ipr_activity(int unit, int rxtx)
1002 ipr_softc[unit].sc_cdp->last_active_time = SECOND;
1005 /*---------------------------------------------------------------------------*
1006 * return this drivers linktab address
1007 *---------------------------------------------------------------------------*/
1009 ipr_ret_linktab(int unit)
1011 return(&ipr_drvr_linktab[unit]);
1014 /*---------------------------------------------------------------------------*
1015 * setup the isdn_linktab for this driver
1016 *---------------------------------------------------------------------------*/
1018 ipr_set_linktab(int unit, isdn_link_t *ilt)
1020 isdn_linktab[unit] = ilt;
1023 /*---------------------------------------------------------------------------*
1024 * initialize this drivers linktab
1025 *---------------------------------------------------------------------------*/
1027 ipr_init_linktab(int unit)
1029 ipr_drvr_linktab[unit].unit = unit;
1030 ipr_drvr_linktab[unit].bch_rx_data_ready = ipr_rx_data_rdy;
1031 ipr_drvr_linktab[unit].bch_tx_queue_empty = ipr_tx_queue_empty;
1032 ipr_drvr_linktab[unit].bch_activity = ipr_activity;
1033 ipr_drvr_linktab[unit].line_connected = ipr_connect;
1034 ipr_drvr_linktab[unit].line_disconnected = ipr_disconnect;
1035 ipr_drvr_linktab[unit].dial_response = ipr_dialresponse;
1036 ipr_drvr_linktab[unit].updown_ind = ipr_updown;
1039 /*===========================================================================*/
1041 #endif /* NI4BIPR > 0 */