2 * This file is part of DOS-libpcap
3 * Ported to DOS/DOSX by G. Vanem <giva@bgnett.no>
5 * pcap-dos.c: Interface to PKTDRVR, NDIS2 and 32-bit pmode
8 * @(#) $Header: /pub/NetBSD/misc/repositories/cvsroot/src/dist/libpcap/pcap-dos.c,v 1.1.1.1 2006/02/27 15:45:48 drochner Exp $ (LBL)
19 #if defined(USE_32BIT_DRIVERS)
20 #include "msdos/pm_drvr/pmdrvr.h"
21 #include "msdos/pm_drvr/pci.h"
22 #include "msdos/pm_drvr/bios32.h"
23 #include "msdos/pm_drvr/module.h"
24 #include "msdos/pm_drvr/3c501.h"
25 #include "msdos/pm_drvr/3c503.h"
26 #include "msdos/pm_drvr/3c509.h"
27 #include "msdos/pm_drvr/3c59x.h"
28 #include "msdos/pm_drvr/3c515.h"
29 #include "msdos/pm_drvr/3c90x.h"
30 #include "msdos/pm_drvr/3c575_cb.h"
31 #include "msdos/pm_drvr/ne.h"
32 #include "msdos/pm_drvr/wd.h"
33 #include "msdos/pm_drvr/accton.h"
34 #include "msdos/pm_drvr/cs89x0.h"
35 #include "msdos/pm_drvr/rtl8139.h"
36 #include "msdos/pm_drvr/ne2k-pci.h"
42 #include "msdos/pktdrvr.h"
45 #include "msdos/ndis2.h"
48 #include <arpa/inet.h>
50 #include <net/if_arp.h>
51 #include <net/if_ether.h>
52 #include <net/if_packe.h>
55 #if defined(USE_32BIT_DRIVERS)
56 #define FLUSHK() do { _printk_safe = 1; _printk_flush(); } while (0)
57 #define NDIS_NEXT_DEV &rtl8139_dev
59 static char *rx_pool
= NULL
;
60 static void init_32bit (void);
62 static int pktq_init (struct rx_ringbuf
*q
, int size
, int num
, char *pool
);
63 static int pktq_check (struct rx_ringbuf
*q
);
64 static int pktq_inc_out (struct rx_ringbuf
*q
);
65 static int pktq_in_index (struct rx_ringbuf
*q
) LOCKED_FUNC
;
66 static void pktq_clear (struct rx_ringbuf
*q
) LOCKED_FUNC
;
68 static struct rx_elem
*pktq_in_elem (struct rx_ringbuf
*q
) LOCKED_FUNC
;
69 static struct rx_elem
*pktq_out_elem (struct rx_ringbuf
*q
);
72 #define FLUSHK() ((void)0)
73 #define NDIS_NEXT_DEV NULL
77 * Internal variables/functions in Watt-32
79 extern WORD _pktdevclass
;
80 extern BOOL _eth_is_init
;
81 extern int _w32_dynamic_host
;
82 extern int _watt_do_exit
;
83 extern int _watt_is_init
;
84 extern int _w32__bootp_on
, _w32__dhcp_on
, _w32__rarp_on
, _w32__do_mask_req
;
85 extern void (*_w32_usr_post_init
) (void);
86 extern void (*_w32_print_hook
)();
88 extern void dbug_write (const char *); /* Watt-32 lib, pcdbug.c */
89 extern int pkt_get_mtu (void);
91 static int ref_count
= 0;
93 static u_long mac_count
= 0;
94 static u_long filter_count
= 0;
96 static volatile BOOL exc_occured
= 0;
98 static struct device
*handle_to_device
[20];
100 static int pcap_read_dos (pcap_t
*p
, int cnt
, pcap_handler callback
,
102 static void pcap_close_dos (pcap_t
*p
);
103 static int pcap_stats_dos (pcap_t
*p
, struct pcap_stat
*ps
);
104 static int pcap_sendpacket_dos (pcap_t
*p
, const void *buf
, size_t len
);
105 static int pcap_setfilter_dos (pcap_t
*p
, struct bpf_program
*fp
);
107 static int ndis_probe (struct device
*dev
);
108 static int pkt_probe (struct device
*dev
);
110 static void close_driver (void);
111 static int init_watt32 (struct pcap
*pcap
, const char *dev_name
, char *err_buf
);
112 static int first_init (const char *name
, char *ebuf
, int promisc
);
114 static void watt32_recv_hook (u_char
*dummy
, const struct pcap_pkthdr
*pcap
,
118 * These are the device we always support
120 static struct device ndis_dev
= {
125 NDIS_NEXT_DEV
, /* NULL or a 32-bit device */
129 static struct device pkt_dev
= {
138 static struct device
*get_device (int fd
)
140 if (fd
<= 0 || fd
>= sizeof(handle_to_device
)/sizeof(handle_to_device
[0]))
142 return handle_to_device
[fd
-1];
146 * Open MAC-driver with name 'device_name' for live capture of
149 pcap_t
*pcap_open_live (const char *device_name
, int snaplen
, int promisc
,
150 int timeout_ms
, char *errbuf
)
154 if (snaplen
< ETH_MIN
)
157 if (snaplen
> ETH_MAX
) /* silently accept and truncate large MTUs */
160 pcap
= calloc (sizeof(*pcap
), 1);
163 strcpy (errbuf
, "Not enough memory (pcap)");
167 pcap
->snapshot
= max (ETH_MIN
+8, snaplen
);
168 pcap
->linktype
= DLT_EN10MB
; /* !! */
169 pcap
->inter_packet_wait
= timeout_ms
;
170 pcap
->close_op
= pcap_close_dos
;
171 pcap
->read_op
= pcap_read_dos
;
172 pcap
->stats_op
= pcap_stats_dos
;
173 pcap
->inject_op
= pcap_sendpacket_dos
;
174 pcap
->setfilter_op
= pcap_setfilter_dos
;
175 pcap
->setdirection_op
= NULL
; /* Not implemented.*/
176 pcap
->fd
= ++ref_count
;
178 if (pcap
->fd
== 1) /* first time we're called */
180 if (!init_watt32(pcap
, device_name
, errbuf
) ||
181 !first_init(device_name
, errbuf
, promisc
))
186 atexit (close_driver
);
188 else if (stricmp(active_dev
->name
,device_name
))
190 snprintf (errbuf
, PCAP_ERRBUF_SIZE
,
191 "Cannot use different devices simultaneously "
192 "(`%s' vs. `%s')", active_dev
->name
, device_name
);
196 handle_to_device
[pcap
->fd
-1] = active_dev
;
201 * Poll the receiver queue and call the pcap callback-handler
205 pcap_read_one (pcap_t
*p
, pcap_handler callback
, u_char
*data
)
207 struct pcap_pkthdr pcap
;
208 struct bpf_insn
*fcode
= p
->fcode
.bf_insns
;
209 struct timeval now
, expiry
;
213 if (p
->inter_packet_wait
> 0)
215 gettimeofday2 (&now
, NULL
);
216 expiry
.tv_usec
= now
.tv_usec
+ 1000UL * p
->inter_packet_wait
;
217 expiry
.tv_sec
= now
.tv_sec
;
218 while (expiry
.tv_usec
>= 1000000L)
220 expiry
.tv_usec
-= 1000000L;
227 volatile struct device
*dev
; /* might be reset by sig_handler */
229 dev
= get_device (p
->fd
);
233 PCAP_ASSERT (dev
->copy_rx_buf
|| dev
->peek_rx_buf
);
236 /* If driver has a zero-copy receive facility, peek at the queue,
237 * filter it, do the callback and release the buffer.
239 if (dev
->peek_rx_buf
)
241 PCAP_ASSERT (dev
->release_rx_buf
);
242 rx_len
= (*dev
->peek_rx_buf
) (&rx_buf
);
246 BYTE buf
[ETH_MAX
+100]; /* add some margin */
247 rx_len
= (*dev
->copy_rx_buf
) (buf
, p
->snapshot
);
251 if (rx_len
> 0) /* got a packet */
257 pcap
.caplen
= min (rx_len
, p
->snapshot
);
261 (!fcode
|| bpf_filter(fcode
, rx_buf
, pcap
.len
, pcap
.caplen
)))
265 /* Fix-me!! Should be time of arrival. Not time of
268 gettimeofday2 (&pcap
.ts
, NULL
);
269 (*callback
) (data
, &pcap
, rx_buf
);
272 if (dev
->release_rx_buf
)
273 (*dev
->release_rx_buf
) (rx_buf
);
275 if (pcap_pkt_debug
> 0)
277 if (callback
== watt32_recv_hook
)
278 dbug_write ("pcap_recv_hook\n");
279 else dbug_write ("pcap_read_op\n");
285 /* If not to wait for a packet or pcap_close() called from
286 * e.g. SIGINT handler, exit loop now.
288 if (p
->inter_packet_wait
<= 0 || (volatile int)p
->fd
<= 0)
291 gettimeofday2 (&now
, NULL
);
293 if (timercmp(&now
, &expiry
, >))
297 kbhit(); /* a real CPU hog */
301 (*p
->wait_proc
)(); /* call yield func */
304 if (rx_len
< 0) /* receive error */
306 p
->md
.stat
.ps_drop
++;
307 #ifdef USE_32BIT_DRIVERS
308 if (pcap_pkt_debug
> 1)
309 printk ("pkt-err %s\n", pktInfo
.error
);
317 pcap_read_dos (pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*data
)
321 while (num
<= cnt
|| (cnt
< 0))
325 rc
= pcap_read_one (p
, callback
, data
);
330 _w32_os_yield(); /* allow SIGINT generation, yield to Win95/NT */
336 * Return network statistics
338 static int pcap_stats_dos (pcap_t
*p
, struct pcap_stat
*ps
)
340 struct net_device_stats
*stats
;
341 struct device
*dev
= p
? get_device(p
->fd
) : NULL
;
345 strcpy (p
->errbuf
, "illegal pcap handle");
349 if (!dev
->get_stats
|| (stats
= (*dev
->get_stats
)(dev
)) == NULL
)
351 strcpy (p
->errbuf
, "device statistics not available");
357 p
->md
.stat
.ps_recv
= stats
->rx_packets
;
358 p
->md
.stat
.ps_drop
+= stats
->rx_missed_errors
;
359 p
->md
.stat
.ps_ifdrop
= stats
->rx_dropped
+ /* queue full */
360 stats
->rx_errors
; /* HW errors */
368 * Return detailed network/device statistics.
369 * May be called after 'dev->close' is called.
371 int pcap_stats_ex (pcap_t
*p
, struct pcap_stat_ex
*se
)
373 struct device
*dev
= p
? get_device (p
->fd
) : NULL
;
375 if (!dev
|| !dev
->get_stats
)
377 strlcpy (p
->errbuf
, "detailed device statistics not available",
382 if (!strnicmp(dev
->name
,"pkt",3))
384 strlcpy (p
->errbuf
, "pktdrvr doesn't have detailed statistics",
388 memcpy (se
, (*dev
->get_stats
)(dev
), sizeof(*se
));
393 * Simply store the filter-code for the pcap_read_dos() callback
394 * Some day the filter-code could be handed down to the active
395 * device (pkt_rx1.s or 32-bit device interrupt handler).
397 static int pcap_setfilter_dos (pcap_t
*p
, struct bpf_program
*fp
)
406 * Return # of packets received in pcap_read_dos()
408 u_long
pcap_mac_packets (void)
414 * Return # of packets passed through filter in pcap_read_dos()
416 u_long
pcap_filter_packets (void)
418 return (filter_count
);
422 * Close pcap device. Not called for offline captures.
424 static void pcap_close_dos (pcap_t
*p
)
426 if (p
&& !exc_occured
)
428 if (pcap_stats(p
,NULL
) < 0)
429 p
->md
.stat
.ps_drop
= 0;
430 if (!get_device(p
->fd
))
433 handle_to_device
[p
->fd
-1] = NULL
;
444 * Return the name of the 1st network interface,
445 * or NULL if none can be found.
447 char *pcap_lookupdev (char *ebuf
)
451 #ifdef USE_32BIT_DRIVERS
455 for (dev
= (struct device
*)dev_base
; dev
; dev
= dev
->next
)
457 PCAP_ASSERT (dev
->probe
);
459 if ((*dev
->probe
)(dev
))
462 probed_dev
= (struct device
*) dev
; /* remember last probed device */
463 return (char*) dev
->name
;
468 strcpy (ebuf
, "No driver found");
473 * Gets localnet & netmask from Watt-32.
475 int pcap_lookupnet (const char *device
, bpf_u_int32
*localnet
,
476 bpf_u_int32
*netmask
, char *errbuf
)
480 strcpy (errbuf
, "pcap_open_offline() or pcap_open_live() must be "
485 *netmask
= _w32_sin_mask
;
486 *localnet
= my_ip_addr
& *netmask
;
489 if (IN_CLASSA(*netmask
))
490 *localnet
= IN_CLASSA_NET
;
491 else if (IN_CLASSB(*netmask
))
492 *localnet
= IN_CLASSB_NET
;
493 else if (IN_CLASSC(*netmask
))
494 *localnet
= IN_CLASSC_NET
;
497 sprintf (errbuf
, "inet class for 0x%lx unknown", *netmask
);
506 * Get a list of all interfaces that are present and that we probe okay.
507 * Returns -1 on error, 0 otherwise.
508 * The list, as returned through "alldevsp", may be null if no interfaces
509 * were up and could be opened.
511 int pcap_findalldevs (pcap_if_t
**alldevsp
, char *errbuf
)
514 struct sockaddr_ll sa_ll_1
, sa_ll_2
;
515 struct sockaddr
*addr
, *netmask
, *broadaddr
, *dstaddr
;
516 pcap_if_t
*devlist
= NULL
;
518 size_t addr_size
= sizeof(struct sockaddr_ll
);
520 for (dev
= (struct device
*)dev_base
; dev
; dev
= dev
->next
)
522 PCAP_ASSERT (dev
->probe
);
524 if (!(*dev
->probe
)(dev
))
527 PCAP_ASSERT (dev
->close
); /* set by probe routine */
531 memset (&sa_ll_1
, 0, sizeof(sa_ll_1
));
532 memset (&sa_ll_2
, 0, sizeof(sa_ll_2
));
533 sa_ll_1
.sll_family
= AF_PACKET
;
534 sa_ll_2
.sll_family
= AF_PACKET
;
536 addr
= (struct sockaddr
*) &sa_ll_1
;
537 netmask
= (struct sockaddr
*) &sa_ll_1
;
538 dstaddr
= (struct sockaddr
*) &sa_ll_1
;
539 broadaddr
= (struct sockaddr
*) &sa_ll_2
;
540 memset (&sa_ll_2
.sll_addr
, 0xFF, sizeof(sa_ll_2
.sll_addr
));
542 if (pcap_add_if(&devlist
, dev
->name
, dev
->flags
,
543 dev
->long_name
, errbuf
) < 0)
548 if (add_addr_to_iflist(&devlist
,dev
->name
, dev
->flags
, addr
, addr_size
,
549 netmask
, addr_size
, broadaddr
, addr_size
,
550 dstaddr
, addr_size
, errbuf
) < 0)
557 if (devlist
&& ret
< 0)
559 pcap_freealldevs (devlist
);
564 strcpy (errbuf
, "No drivers found");
571 * pcap_assert() is mainly used for debugging
573 void pcap_assert (const char *what
, const char *file
, unsigned line
)
576 fprintf (stderr
, "%s (%u): Assertion \"%s\" failed\n",
583 * For pcap_offline_read(): wait and yield between printing packets
584 * to simulate the pace packets where actually recorded.
586 void pcap_set_wait (pcap_t
*p
, void (*yield
)(void), int wait
)
590 p
->wait_proc
= yield
;
591 p
->inter_packet_wait
= wait
;
596 * Initialise a named network device.
598 static struct device
*
599 open_driver (const char *dev_name
, char *ebuf
, int promisc
)
603 for (dev
= (struct device
*)dev_base
; dev
; dev
= dev
->next
)
605 PCAP_ASSERT (dev
->name
);
607 if (strcmp (dev_name
,dev
->name
))
610 if (!probed_dev
) /* user didn't call pcap_lookupdev() first */
612 PCAP_ASSERT (dev
->probe
);
614 if (!(*dev
->probe
)(dev
)) /* call the xx_probe() function */
616 sprintf (ebuf
, "failed to detect device `%s'", dev_name
);
619 probed_dev
= dev
; /* device is probed okay and may be used */
621 else if (dev
!= probed_dev
)
628 /* Select what traffic to receive
631 dev
->flags
|= (IFF_ALLMULTI
| IFF_PROMISC
);
632 else dev
->flags
&= ~(IFF_ALLMULTI
| IFF_PROMISC
);
634 PCAP_ASSERT (dev
->open
);
636 if (!(*dev
->open
)(dev
))
638 sprintf (ebuf
, "failed to activate device `%s'", dev_name
);
639 if (pktInfo
.error
&& !strncmp(dev
->name
,"pkt",3))
642 strcat (ebuf
, pktInfo
.error
);
647 /* Some devices need this to operate in promiscous mode
649 if (promisc
&& dev
->set_multicast_list
)
650 (*dev
->set_multicast_list
) (dev
);
652 active_dev
= dev
; /* remember our active device */
656 /* 'dev_name' not matched in 'dev_base' list.
660 sprintf (ebuf
, "device `%s' not supported", dev_name
);
667 sprintf (ebuf
, "device `%s' not probed", dev_name
);
674 * Deinitialise MAC driver.
675 * Set receive mode back to default mode.
677 static void close_driver (void)
679 /* !!todo: loop over all 'handle_to_device[]' ? */
680 struct device
*dev
= active_dev
;
682 if (dev
&& dev
->close
)
690 #ifdef USE_32BIT_DRIVERS
703 static void setup_signals (void (*handler
)(int))
705 signal (SIGSEGV
,handler
);
706 signal (SIGILL
, handler
);
707 signal (SIGFPE
, handler
);
710 static void exc_handler (int sig
)
712 #ifdef USE_32BIT_DRIVERS
713 if (active_dev
->irq
> 0) /* excludes IRQ 0 */
715 disable_irq (active_dev
->irq
);
716 irq_eoi_cmd (active_dev
->irq
);
724 fputs ("Catching SIGSEGV.\n", stderr
);
727 fputs ("Catching SIGILL.\n", stderr
);
731 fputs ("Catching SIGFPE.\n", stderr
);
734 fprintf (stderr
, "Catching signal %d.\n", sig
);
737 pcap_close_dos (NULL
);
739 #endif /* __DJGPP__ */
743 * Open the pcap device for the first client calling pcap_open_live()
745 static int first_init (const char *name
, char *ebuf
, int promisc
)
749 #ifdef USE_32BIT_DRIVERS
750 rx_pool
= k_calloc (RECEIVE_BUF_SIZE
, RECEIVE_QUEUE_SIZE
);
753 strcpy (ebuf
, "Not enough memory (Rx pool)");
759 setup_signals (exc_handler
);
762 #ifdef USE_32BIT_DRIVERS
766 dev
= open_driver (name
, ebuf
, promisc
);
769 #ifdef USE_32BIT_DRIVERS
775 setup_signals (SIG_DFL
);
780 #ifdef USE_32BIT_DRIVERS
782 * If driver is NOT a 16-bit "pkt/ndis" driver (having a 'copy_rx_buf'
783 * set in it's probe handler), initialise near-memory ring-buffer for
786 if (dev
->copy_rx_buf
== NULL
)
788 dev
->get_rx_buf
= get_rxbuf
;
789 dev
->peek_rx_buf
= peek_rxbuf
;
790 dev
->release_rx_buf
= release_rxbuf
;
791 pktq_init (&dev
->queue
, RECEIVE_BUF_SIZE
, RECEIVE_QUEUE_SIZE
, rx_pool
);
797 #ifdef USE_32BIT_DRIVERS
798 static void init_32bit (void)
800 static int init_pci
= 0;
803 _printk_init (64*1024, NULL
); /* calls atexit(printk_exit) */
806 (void)pci_init(); /* init BIOS32+PCI interface */
813 * Hook functions for using Watt-32 together with pcap
815 static char rxbuf
[ETH_MAX
+100]; /* rx-buffer with some margin */
817 static pcap_t pcap_save
;
819 static void watt32_recv_hook (u_char
*dummy
, const struct pcap_pkthdr
*pcap
,
822 /* Fix me: assumes Ethernet II only */
823 struct ether_header
*ep
= (struct ether_header
*) buf
;
825 memcpy (rxbuf
, buf
, pcap
->caplen
);
826 etype
= ep
->ether_type
;
830 #if (WATTCP_VER >= 0x0224)
832 * This function is used by Watt-32 to poll for a packet.
833 * i.e. it's set to bypass _eth_arrived()
835 static void *pcap_recv_hook (WORD
*type
)
837 int len
= pcap_read_dos (&pcap_save
, 1, watt32_recv_hook
, NULL
);
843 return (void*) &rxbuf
;
847 * This function is called by Watt-32 (via _eth_xmit_hook).
848 * If dbug_init() was called, we should trace packets sent.
850 static int pcap_xmit_hook (const void *buf
, unsigned len
)
854 if (pcap_pkt_debug
> 0)
855 dbug_write ("pcap_xmit_hook: ");
857 if (active_dev
&& active_dev
->xmit
)
858 if ((*active_dev
->xmit
) (active_dev
, buf
, len
) > 0)
861 if (pcap_pkt_debug
> 0)
862 dbug_write (rc
? "ok\n" : "fail\n");
867 static int pcap_sendpacket_dos (pcap_t
*p
, const void *buf
, size_t len
)
869 struct device
*dev
= p
? get_device(p
->fd
) : NULL
;
871 if (!dev
|| !dev
->xmit
)
873 return (*dev
->xmit
) (dev
, buf
, len
);
877 * This function is called by Watt-32 in tcp_post_init().
878 * We should prevent Watt-32 from using BOOTP/DHCP/RARP etc.
880 static void (*prev_post_hook
) (void);
882 static void pcap_init_hook (void)
884 _w32__bootp_on
= _w32__dhcp_on
= _w32__rarp_on
= 0;
885 _w32__do_mask_req
= 0;
886 _w32_dynamic_host
= 0;
892 * Supress PRINT message from Watt-32's sock_init()
894 static void null_print (void) {}
897 * To use features of Watt-32 (netdb functions and socket etc.)
898 * we must call sock_init(). But we set various hooks to prevent
899 * using normal PKTDRVR functions in pcpkt.c. This should hopefully
900 * make Watt-32 and pcap co-operate.
902 static int init_watt32 (struct pcap
*pcap
, const char *dev_name
, char *err_buf
)
905 int rc
, MTU
, has_ip_addr
;
906 int using_pktdrv
= 1;
908 /* If user called sock_init() first, we need to reinit in
909 * order to open debug/trace-file properly
914 env
= getenv ("PCAP_DEBUG");
915 if (env
&& atoi(env
) > 0 &&
916 pcap_pkt_debug
< 0) /* if not already set */
919 pcap_pkt_debug
= atoi (env
);
922 _watt_do_exit
= 0; /* prevent sock_init() calling exit() */
923 prev_post_hook
= _w32_usr_post_init
;
924 _w32_usr_post_init
= pcap_init_hook
;
925 _w32_print_hook
= null_print
;
927 if (dev_name
&& strncmp(dev_name
,"pkt",3))
928 using_pktdrv
= FALSE
;
931 has_ip_addr
= (rc
!= 8); /* IP-address assignment failed */
933 /* if pcap is using a 32-bit driver w/o a pktdrvr loaded, we
934 * just pretend Watt-32 is initialised okay.
936 * !! fix-me: The Watt-32 config isn't done if no pktdrvr
937 * was found. In that case my_ip_addr + sin_mask
938 * have default values. Should be taken from another
939 * ini-file/environment in any case (ref. tcpdump.ini)
943 if (!using_pktdrv
|| !has_ip_addr
) /* for now .... */
945 static const char myip
[] = "192.168.0.1";
946 static const char mask
[] = "255.255.255.0";
948 printf ("Just guessing, using IP %s and netmask %s\n", myip
, mask
);
949 my_ip_addr
= aton (myip
);
950 _w32_sin_mask
= aton (mask
);
952 else if (rc
&& using_pktdrv
)
954 sprintf (err_buf
, "sock_init() failed, code %d", rc
);
958 /* Set recv-hook for peeking in _eth_arrived().
960 #if (WATTCP_VER >= 0x0224)
961 _eth_recv_hook
= pcap_recv_hook
;
962 _eth_xmit_hook
= pcap_xmit_hook
;
965 /* Free the pkt-drvr handle allocated in pkt_init().
966 * The above hooks should thus use the handle reopened in open_driver()
971 /* _eth_is_init = 1; */ /* hack to get Rx/Tx-hooks in Watt-32 working */
974 memcpy (&pcap_save
, pcap
, sizeof(pcap_save
));
976 pcap_save
.fcode
.bf_insns
= NULL
;
977 pcap_save
.linktype
= _eth_get_hwtype (NULL
, NULL
);
978 pcap_save
.snapshot
= MTU
> 0 ? MTU
: ETH_MAX
; /* assume 1514 */
981 /* prevent use of resolve() and resolve_ip()
988 int EISA_bus
= 0; /* Where is natural place for this? */
991 * Application config hooks to set various driver parameters.
994 static struct config_table debug_tab
[] = {
995 { "PKT.DEBUG", ARG_ATOI
, &pcap_pkt_debug
},
996 { "PKT.VECTOR", ARG_ATOX_W
, NULL
},
997 { "NDIS.DEBUG", ARG_ATOI
, NULL
},
998 #ifdef USE_32BIT_DRIVERS
999 { "3C503.DEBUG", ARG_ATOI
, &ei_debug
},
1000 { "3C503.IO_BASE", ARG_ATOX_W
, &el2_dev
.base_addr
},
1001 { "3C503.MEMORY", ARG_ATOX_W
, &el2_dev
.mem_start
},
1002 { "3C503.IRQ", ARG_ATOI
, &el2_dev
.irq
},
1003 { "3C505.DEBUG", ARG_ATOI
, NULL
},
1004 { "3C505.BASE", ARG_ATOX_W
, NULL
},
1005 { "3C507.DEBUG", ARG_ATOI
, NULL
},
1006 { "3C509.DEBUG", ARG_ATOI
, &el3_debug
},
1007 { "3C509.ILOOP", ARG_ATOI
, &el3_max_loop
},
1008 { "3C529.DEBUG", ARG_ATOI
, NULL
},
1009 { "3C575.DEBUG", ARG_ATOI
, &debug_3c575
},
1010 { "3C59X.DEBUG", ARG_ATOI
, &vortex_debug
},
1011 { "3C59X.IFACE0", ARG_ATOI
, &vortex_options
[0] },
1012 { "3C59X.IFACE1", ARG_ATOI
, &vortex_options
[1] },
1013 { "3C59X.IFACE2", ARG_ATOI
, &vortex_options
[2] },
1014 { "3C59X.IFACE3", ARG_ATOI
, &vortex_options
[3] },
1015 { "3C90X.DEBUG", ARG_ATOX_W
, &tc90xbc_debug
},
1016 { "ACCT.DEBUG", ARG_ATOI
, ðpk_debug
},
1017 { "CS89.DEBUG", ARG_ATOI
, &cs89_debug
},
1018 { "RTL8139.DEBUG", ARG_ATOI
, &rtl8139_debug
},
1019 /* { "RTL8139.FDUPLEX", ARG_ATOI, &rtl8139_options }, */
1020 { "SMC.DEBUG", ARG_ATOI
, &ei_debug
},
1021 /* { "E100.DEBUG", ARG_ATOI, &e100_debug }, */
1022 { "PCI.DEBUG", ARG_ATOI
, &pci_debug
},
1023 { "BIOS32.DEBUG", ARG_ATOI
, &bios32_debug
},
1024 { "IRQ.DEBUG", ARG_ATOI
, &irq_debug
},
1025 { "TIMER.IRQ", ARG_ATOI
, &timer_irq
},
1031 * pcap_config_hook() is an extension to application's config
1032 * handling. Uses Watt-32's config-table function.
1034 int pcap_config_hook (const char *name
, const char *value
)
1036 return parse_config_table (debug_tab
, NULL
, name
, value
);
1040 * Linked list of supported devices
1042 struct device
*active_dev
= NULL
; /* the device we have opened */
1043 struct device
*probed_dev
= NULL
; /* the device we have probed */
1044 const struct device
*dev_base
= &pkt_dev
; /* list of network devices */
1047 * PKTDRVR device functions
1049 int pcap_pkt_debug
= -1;
1051 static void pkt_close (struct device
*dev
)
1053 BOOL okay
= PktExitDriver();
1055 if (pcap_pkt_debug
> 1)
1056 fprintf (stderr
, "pkt_close(): %d\n", okay
);
1063 static int pkt_open (struct device
*dev
)
1067 if (dev
->flags
& IFF_PROMISC
)
1068 mode
= PDRX_ALL_PACKETS
;
1069 else mode
= PDRX_BROADCAST
;
1071 if (!PktInitDriver(mode
))
1074 PktResetStatistics (pktInfo
.handle
);
1075 PktQueueBusy (FALSE
);
1079 static int pkt_xmit (struct device
*dev
, const void *buf
, int len
)
1081 struct net_device_stats
*stats
= (struct net_device_stats
*) dev
->priv
;
1083 if (pcap_pkt_debug
> 0)
1084 dbug_write ("pcap_xmit\n");
1086 if (!PktTransmit(buf
,len
))
1094 static void *pkt_stats (struct device
*dev
)
1096 struct net_device_stats
*stats
= (struct net_device_stats
*) dev
->priv
;
1098 if (!stats
|| !PktSessStatistics(pktInfo
.handle
))
1101 stats
->rx_packets
= pktStat
.inPackets
;
1102 stats
->rx_errors
= pktStat
.lost
;
1103 stats
->rx_missed_errors
= PktRxDropped();
1107 static int pkt_probe (struct device
*dev
)
1109 if (!PktSearchDriver())
1112 dev
->open
= pkt_open
;
1113 dev
->xmit
= pkt_xmit
;
1114 dev
->close
= pkt_close
;
1115 dev
->get_stats
= pkt_stats
;
1116 dev
->copy_rx_buf
= PktReceive
; /* farmem peek and copy routine */
1117 dev
->get_rx_buf
= NULL
;
1118 dev
->peek_rx_buf
= NULL
;
1119 dev
->release_rx_buf
= NULL
;
1120 dev
->priv
= calloc (sizeof(struct net_device_stats
), 1);
1127 * NDIS device functions
1129 static void ndis_close (struct device
*dev
)
1137 static int ndis_open (struct device
*dev
)
1139 int promis
= (dev
->flags
& IFF_PROMISC
);
1142 if (!NdisInit(promis
))
1151 static void *ndis_stats (struct device
*dev
)
1153 static struct net_device_stats stats
;
1160 static int ndis_probe (struct device
*dev
)
1167 dev
->open
= ndis_open
;
1169 dev
->close
= ndis_close
;
1170 dev
->get_stats
= ndis_stats
;
1171 dev
->copy_rx_buf
= NULL
; /* to-do */
1172 dev
->get_rx_buf
= NULL
; /* upcall is from rmode driver */
1173 dev
->peek_rx_buf
= NULL
;
1174 dev
->release_rx_buf
= NULL
;
1179 * Search & probe for supported 32-bit (pmode) pcap devices
1181 #if defined(USE_32BIT_DRIVERS)
1183 struct device el2_dev LOCKED_VAR
= {
1192 struct device el3_dev LOCKED_VAR
= {
1201 struct device tc515_dev LOCKED_VAR
= {
1210 struct device tc59_dev LOCKED_VAR
= {
1219 struct device tc90xbc_dev LOCKED_VAR
= {
1228 struct device wd_dev LOCKED_VAR
= {
1237 struct device ne_dev LOCKED_VAR
= {
1246 struct device acct_dev LOCKED_VAR
= {
1248 "Accton EtherPocket",
1255 struct device cs89_dev LOCKED_VAR
= {
1257 "Crystal Semiconductor",
1264 struct device rtl8139_dev LOCKED_VAR
= {
1270 rtl8139_probe
/* dev->probe routine */
1274 * Dequeue routine is called by polling.
1275 * NOTE: the queue-element is not copied, only a pointer is
1276 * returned at '*buf'
1278 int peek_rxbuf (BYTE
**buf
)
1280 struct rx_elem
*tail
, *head
;
1282 PCAP_ASSERT (pktq_check (&active_dev
->queue
));
1285 tail
= pktq_out_elem (&active_dev
->queue
);
1286 head
= pktq_in_elem (&active_dev
->queue
);
1291 PCAP_ASSERT (tail
->size
< active_dev
->queue
.elem_size
-4-2);
1293 *buf
= &tail
->data
[0];
1294 return (tail
->size
);
1301 * Release buffer we peeked at above.
1303 int release_rxbuf (BYTE
*buf
)
1306 struct rx_elem
*tail
= pktq_out_elem (&active_dev
->queue
);
1308 PCAP_ASSERT (&tail
->data
[0] == buf
);
1312 pktq_inc_out (&active_dev
->queue
);
1317 * get_rxbuf() routine (in locked code) is called from IRQ handler
1318 * to request a buffer. Interrupts are disabled and we have a 32kB stack.
1320 BYTE
*get_rxbuf (int len
)
1324 if (len
< ETH_MIN
|| len
> ETH_MAX
)
1327 idx
= pktq_in_index (&active_dev
->queue
);
1331 static int fan_idx LOCKED_VAR
= 0;
1332 writew ("-\\|/"[fan_idx
++] | (15 << 8), /* white on black colour */
1333 0xB8000 + 2*79); /* upper-right corner, 80-col colour screen */
1336 /* writew (idx + '0' + 0x0F00, 0xB8000 + 2*78); */
1339 if (idx
!= active_dev
->queue
.out_index
)
1341 struct rx_elem
*head
= pktq_in_elem (&active_dev
->queue
);
1344 active_dev
->queue
.in_index
= idx
;
1345 return (&head
->data
[0]);
1348 /* !!to-do: drop 25% of the oldest element
1350 pktq_clear (&active_dev
->queue
);
1355 * Simple ring-buffer queue handler for reception of packets
1356 * from network driver.
1358 #define PKTQ_MARKER 0xDEADBEEF
1360 static int pktq_check (struct rx_ringbuf
*q
)
1367 if (!q
|| !q
->num_elem
|| !q
->buf_start
)
1373 for (i
= 0; i
< q
->num_elem
; i
++)
1375 buf
+= q
->elem_size
;
1376 if (*(DWORD
*)(buf
- sizeof(DWORD
)) != PKTQ_MARKER
)
1383 static int pktq_init (struct rx_ringbuf
*q
, int size
, int num
, char *pool
)
1387 q
->elem_size
= size
;
1389 q
->buf_start
= pool
;
1393 PCAP_ASSERT (size
>= sizeof(struct rx_elem
) + sizeof(DWORD
));
1397 for (i
= 0; i
< num
; i
++)
1400 struct rx_elem
*elem
= (struct rx_elem
*) pool
;
1402 /* assert dword aligned elements
1404 PCAP_ASSERT (((unsigned)(&elem
->data
[0]) & 3) == 0);
1407 *(DWORD
*) (pool
- sizeof(DWORD
)) = PKTQ_MARKER
;
1413 * Increment the queue 'out_index' (tail).
1416 static int pktq_inc_out (struct rx_ringbuf
*q
)
1419 if (q
->out_index
>= q
->num_elem
)
1421 return (q
->out_index
);
1425 * Return the queue's next 'in_index' (head).
1428 static int pktq_in_index (struct rx_ringbuf
*q
)
1430 volatile int index
= q
->in_index
+ 1;
1432 if (index
>= q
->num_elem
)
1438 * Return the queue's head-buffer.
1440 static struct rx_elem
*pktq_in_elem (struct rx_ringbuf
*q
)
1442 return (struct rx_elem
*) (q
->buf_start
+ (q
->elem_size
* q
->in_index
));
1446 * Return the queue's tail-buffer.
1448 static struct rx_elem
*pktq_out_elem (struct rx_ringbuf
*q
)
1450 return (struct rx_elem
*) (q
->buf_start
+ (q
->elem_size
* q
->out_index
));
1454 * Clear the queue ring-buffer by setting head=tail.
1456 static void pktq_clear (struct rx_ringbuf
*q
)
1458 q
->in_index
= q
->out_index
;
1462 * Symbols that must be linkable for "gcc -O0"
1470 #include "msdos/pm_drvr/ioport.h"
1471 #include "msdos/pm_drvr/dma.h"
1473 #endif /* USE_32BIT_DRIVERS */