2 * Copyright (c) 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * This code contributed by Atanu Ghosh (atanu@cs.ucl.ac.uk),
22 * University College London, and subsequently modified by
23 * Guy Harris (guy@alum.mit.edu), Mark Pizzolato
24 * <List-tcpdump-workers@subscriptions.pizzolato.net>,
25 * Mark C. Brown (mbrown@hp.com), and Sagun Shakya <Sagun.Shakya@Sun.COM>.
29 * Packet capture routine for DLPI under SunOS 5, HP-UX 9/10/11, and AIX.
33 * - The DLIOCRAW ioctl() is specific to SunOS.
35 * - There is a bug in bufmod(7) such that setting the snapshot
36 * length results in data being left of the front of the packet.
38 * - It might be desirable to use pfmod(7) to filter packets in the
39 * kernel when possible.
41 * - An older version of the HP-UX DLPI Programmer's Guide, which
42 * I think was advertised as the 10.20 version, used to be available
45 * http://docs.hp.com/hpux/onlinedocs/B2355-90093/B2355-90093.html
47 * but is no longer available; it can still be found at
49 * http://h21007.www2.hp.com/dspp/files/unprotected/Drivers/Docs/Refs/B2355-90093.pdf
53 * - The HP-UX 10.x, 11.0, and 11i v1.6 version of the HP-UX DLPI
54 * Programmer's Guide, which I think was once advertised as the
55 * 11.00 version is available at
57 * http://docs.hp.com/en/B2355-90139/index.html
59 * - The HP-UX 11i v2 version of the HP-UX DLPI Programmer's Guide
62 * http://docs.hp.com/en/B2355-90871/index.html
64 * - All of the HP documents describe raw-mode services, which are
65 * what we use if DL_HP_RAWDLS is defined. XXX - we use __hpux
66 * in some places to test for HP-UX, but use DL_HP_RAWDLS in
67 * other places; do we support any versions of HP-UX without
75 #include <sys/types.h>
77 #ifdef HAVE_SYS_BUFMOD_H
78 #include <sys/bufmod.h>
81 #ifdef HAVE_SYS_DLPI_EXT_H
82 #include <sys/dlpi_ext.h>
85 #include <sys/socket.h>
90 #include <sys/stream.h>
91 #if defined(HAVE_SOLARIS) && defined(HAVE_SYS_BUFMOD_H)
92 #include <sys/systeminfo.h>
112 #include "pcap-int.h"
113 #include "dlpisubs.h"
115 #ifdef HAVE_OS_PROTO_H
116 #include "os-proto.h"
121 * HP-UX has a /dev/dlpi device; you open it and set the PPA of the actual
122 * network device you want.
124 #define HAVE_DEV_DLPI
127 * AIX has a /dev/dlpi directory, with devices named after the interfaces
130 #define PCAP_DEV_PREFIX "/dev/dlpi"
131 #elif defined(HAVE_SOLARIS)
133 * Solaris has devices named after the interfaces underneath /dev.
135 #define PCAP_DEV_PREFIX "/dev"
138 #define MAXDLBUF 8192
141 static char *split_dname(char *, u_int
*, char *);
142 static int dl_doattach(int, int, char *);
144 static int dl_dohpuxbind(int, char *);
146 static int dlpromiscon(pcap_t
*, bpf_u_int32
);
147 static int dlbindreq(int, bpf_u_int32
, char *);
148 static int dlbindack(int, char *, char *, int *);
149 static int dlokack(int, const char *, char *, char *);
150 static int dlinforeq(int, char *);
151 static int dlinfoack(int, char *, char *);
153 #ifdef HAVE_DL_PASSIVE_REQ_T
154 static void dlpassive(int, char *);
158 static int dlrawdatareq(int, const u_char
*, int);
160 static int recv_ack(int, int, const char *, char *, char *, int *);
161 static char *dlstrerror(char *, size_t, bpf_u_int32
);
162 static char *dlprim(char *, size_t, bpf_u_int32
);
163 #if defined(HAVE_SOLARIS) && defined(HAVE_SYS_BUFMOD_H)
164 #define GET_RELEASE_BUFSIZE 32
165 static void get_release(char *, size_t, bpf_u_int32
*, bpf_u_int32
*,
168 static int send_request(int, char *, int, char *, char *);
170 static int dlpi_kread(int, off_t
, void *, u_int
, char *);
173 static int get_dlpi_ppa(int, const char *, u_int
, u_int
*, char *);
177 * Cast a buffer to "union DL_primitives" without provoking warnings
180 #define MAKE_DL_PRIMITIVES(ptr) ((union DL_primitives *)(void *)(ptr))
183 pcap_read_dlpi(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
188 bpf_u_int32 ctlbuf
[MAXDLBUF
];
189 struct strbuf ctl
= {
199 data
.buf
= (char *)p
->buffer
+ p
->offset
;
200 data
.maxlen
= p
->bufsize
;
204 * Has "pcap_breakloop()" been called?
208 * Yes - clear the flag that indicates
209 * that it has, and return -2 to
210 * indicate that we were told to
211 * break out of the loop.
217 * XXX - check for the DLPI primitive, which
218 * would be DL_HP_RAWDATA_IND on HP-UX
219 * if we're in raw mode?
221 ctl
.buf
= (char *)ctlbuf
;
222 ctl
.maxlen
= MAXDLBUF
;
224 if (getmsg(p
->fd
, &ctl
, &data
, &flags
) < 0) {
225 /* Don't choke when we get ptraced */
235 pcap_fmt_errmsg_for_errno(p
->errbuf
,
236 sizeof(p
->errbuf
), errno
, "getmsg");
241 bp
= (u_char
*)p
->buffer
+ p
->offset
;
245 return (pcap_process_pkts(p
, callback
, user
, cnt
, bp
, cc
));
249 pcap_inject_dlpi(pcap_t
*p
, const void *buf
, int size
)
252 struct pcap_dlpi
*pd
= p
->priv
;
256 #if defined(DLIOCRAW)
257 ret
= write(p
->fd
, buf
, size
);
259 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
263 #elif defined(DL_HP_RAWDLS)
264 if (pd
->send_fd
< 0) {
265 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
266 "send: Output FD couldn't be opened");
269 ret
= dlrawdatareq(pd
->send_fd
, buf
, size
);
271 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
276 * putmsg() returns either 0 or -1; it doesn't indicate how
277 * many bytes were written (presumably they were all written
278 * or none of them were written). OpenBSD's pcap_inject()
279 * returns the number of bytes written, so, for API compatibility,
280 * we return the number of bytes we were told to write.
283 #else /* no raw mode */
285 * XXX - this is a pain, because you might have to extract
286 * the address from the packet and use it in a DL_UNITDATA_REQ
287 * request. That would be dependent on the link-layer type.
289 * I also don't know what SAP you'd have to bind the descriptor
290 * to, or whether you'd need separate "receive" and "send" FDs,
291 * nor do I know whether you'd need different bindings for
292 * D/I/X Ethernet and 802.3, or for {FDDI,Token Ring} plus
293 * 802.2 and {FDDI,Token Ring} plus 802.2 plus SNAP.
295 * So, for now, we just return a "you can't send" indication,
296 * and leave it up to somebody with a DLPI-based system lacking
297 * both DLIOCRAW and DL_HP_RAWDLS to supply code to implement
298 * packet transmission on that system. If they do, they should
299 * send it to us - but should not send us code that assumes
300 * Ethernet; if the code doesn't work on non-Ethernet interfaces,
301 * it should check "p->linktype" and reject the send request if
302 * it's anything other than DLT_EN10MB.
304 pcap_strlcpy(p
->errbuf
, "send: Not supported on this version of this OS",
307 #endif /* raw mode */
312 #define DL_IPATM 0x12 /* ATM Classical IP interface */
320 #define A_GET_UNITS (('A'<<8)|118)
321 #endif /* A_GET_UNITS */
322 #ifndef A_PROMISCON_REQ
323 #define A_PROMISCON_REQ (('A'<<8)|121)
324 #endif /* A_PROMISCON_REQ */
325 #endif /* HAVE_SOLARIS */
328 pcap_cleanup_dlpi(pcap_t
*p
)
331 struct pcap_dlpi
*pd
= p
->priv
;
333 if (pd
->send_fd
>= 0) {
338 pcap_cleanup_live_common(p
);
342 open_dlpi_device(const char *name
, u_int
*ppa
, char *errbuf
)
356 ** Remove any "/dev/" on the front of the device.
358 cp
= strrchr(name
, '/');
360 pcap_strlcpy(dname
, name
, sizeof(dname
));
362 pcap_strlcpy(dname
, cp
+ 1, sizeof(dname
));
365 * Split the device name into a device type name and a unit number;
366 * chop off the unit number, so "dname" is just a device type name.
368 cp
= split_dname(dname
, &unit
, errbuf
);
370 return (PCAP_ERROR_NO_SUCH_DEVICE
);
374 * Use "/dev/dlpi" as the device.
376 * XXX - HP's DLPI Programmer's Guide for HP-UX 11.00 says that
377 * the "dl_mjr_num" field is for the "major number of interface
378 * driver"; that's the major of "/dev/dlpi" on the system on
379 * which I tried this, but there may be DLPI devices that
380 * use a different driver, in which case we may need to
381 * search "/dev" for the appropriate device with that major
382 * device number, rather than hardwiring "/dev/dlpi".
385 if ((fd
= open(cp
, O_RDWR
)) < 0) {
386 if (errno
== EPERM
|| errno
== EACCES
)
387 status
= PCAP_ERROR_PERM_DENIED
;
390 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
396 * Get a table of all PPAs for that device, and search that
397 * table for the specified device type name and unit number.
399 status
= get_dlpi_ppa(fd
, dname
, unit
, ppa
, errbuf
);
406 * If the device name begins with "/", assume it begins with
407 * the pathname of the directory containing the device to open;
408 * otherwise, concatenate the device directory name and the
412 pcap_strlcpy(dname
, name
, sizeof(dname
));
414 snprintf(dname
, sizeof(dname
), "%s/%s", PCAP_DEV_PREFIX
,
418 * Get the unit number, and a pointer to the end of the device
421 cp
= split_dname(dname
, ppa
, errbuf
);
423 return (PCAP_ERROR_NO_SUCH_DEVICE
);
426 * Make a copy of the device pathname, and then remove the unit
427 * number from the device pathname.
429 pcap_strlcpy(dname2
, dname
, sizeof(dname
));
432 /* Try device without unit number */
433 if ((fd
= open(dname
, O_RDWR
)) < 0) {
434 if (errno
!= ENOENT
) {
435 if (errno
== EPERM
|| errno
== EACCES
)
436 status
= PCAP_ERROR_PERM_DENIED
;
439 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
444 /* Try again with unit number */
445 if ((fd
= open(dname2
, O_RDWR
)) < 0) {
446 if (errno
== ENOENT
) {
447 status
= PCAP_ERROR_NO_SUCH_DEVICE
;
450 * We provide an error message even
451 * for this error, for diagnostic
452 * purposes (so that, for example,
453 * the app can show the message if the
456 * In it, we just report "No DLPI device
457 * found" with the device name, so people
458 * don't get confused and think, for example,
459 * that if they can't capture on "lo0"
460 * on Solaris prior to Solaris 11 the fix
461 * is to change libpcap (or the application
462 * that uses it) to look for something other
463 * than "/dev/lo0", as the fix is to use
464 * Solaris 11 or some operating system
465 * other than Solaris - you just *can't*
466 * capture on a loopback interface
467 * on Solaris prior to Solaris 11, the lack
468 * of a DLPI device for the loopback
469 * interface is just a symptom of that
472 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
473 "%s: No DLPI device found", name
);
475 if (errno
== EPERM
|| errno
== EACCES
)
476 status
= PCAP_ERROR_PERM_DENIED
;
479 pcap_fmt_errmsg_for_errno(errbuf
,
480 PCAP_ERRBUF_SIZE
, errno
, "%s", dname2
);
484 /* XXX Assume unit zero */
492 pcap_activate_dlpi(pcap_t
*p
)
495 struct pcap_dlpi
*pd
= p
->priv
;
503 register dl_info_ack_t
*infop
;
504 #ifdef HAVE_SYS_BUFMOD_H
507 char release
[GET_RELEASE_BUFSIZE
];
508 bpf_u_int32 osmajor
, osminor
, osmicro
;
511 bpf_u_int32 buf
[MAXDLBUF
];
513 p
->fd
= open_dlpi_device(p
->opt
.device
, &ppa
, p
->errbuf
);
521 * XXX - HP-UX 10.20 and 11.xx don't appear to support sending and
522 * receiving packets on the same descriptor - you need separate
523 * descriptors for sending and receiving, bound to different SAPs.
525 * If the open fails, we just leave -1 in "pd->send_fd" and reject
526 * attempts to send packets, just as if, in pcap-bpf.c, we fail
527 * to open the BPF device for reading and writing, we just try
528 * to open it for reading only and, if that succeeds, just let
529 * the send attempts fail.
531 pd
->send_fd
= open("/dev/dlpi", O_RDWR
);
535 ** Attach if "style 2" provider
537 if (dlinforeq(p
->fd
, p
->errbuf
) < 0 ||
538 dlinfoack(p
->fd
, (char *)buf
, p
->errbuf
) < 0) {
542 infop
= &(MAKE_DL_PRIMITIVES(buf
))->info_ack
;
544 if (infop
->dl_mac_type
== DL_IPATM
)
547 if (infop
->dl_provider_style
== DL_STYLE2
) {
548 retv
= dl_doattach(p
->fd
, ppa
, p
->errbuf
);
554 if (pd
->send_fd
>= 0) {
555 retv
= dl_doattach(pd
->send_fd
, ppa
, p
->errbuf
);
566 * This device exists, but we don't support monitor mode
567 * any platforms that support DLPI.
569 status
= PCAP_ERROR_RFMON_NOTSUP
;
573 #ifdef HAVE_DL_PASSIVE_REQ_T
575 * Enable Passive mode to be able to capture on aggregated link.
576 * Not supported in all Solaris versions.
578 dlpassive(p
->fd
, p
->errbuf
);
581 ** Bind (defer if using HP-UX 9 or HP-UX 10.20 or later, totally
582 ** skip if using SINIX)
584 #if !defined(HAVE_HPUX9) && !defined(HAVE_HPUX10_20_OR_LATER) && !defined(sinix)
588 ** According to IBM's AIX Support Line, the dl_sap value
589 ** should not be less than 0x600 (1536) for standard Ethernet.
590 ** However, we seem to get DL_BADADDR - "DLSAP addr in improper
591 ** format or invalid" - errors if we use 1537 on the "tr0"
592 ** device, which, given that its name starts with "tr" and that
593 ** it's IBM, probably means a Token Ring device. (Perhaps we
594 ** need to use 1537 on "/dev/dlpi/en" because that device is for
595 ** D/I/X Ethernet, the "SAP" is actually an Ethernet type, and
596 ** it rejects invalid Ethernet types.)
598 ** So if 1537 fails, we try 2, as Hyung Sik Yoon of IBM Korea
599 ** says that works on Token Ring (he says that 0 does *not*
600 ** work; perhaps that's considered an invalid LLC SAP value - I
601 ** assume the SAP value in a DLPI bind is an LLC SAP for network
602 ** types that use 802.2 LLC).
604 if ((dlbindreq(p
->fd
, 1537, p
->errbuf
) < 0 &&
605 dlbindreq(p
->fd
, 2, p
->errbuf
) < 0) ||
606 dlbindack(p
->fd
, (char *)buf
, p
->errbuf
, NULL
) < 0) {
610 #elif defined(DL_HP_RAWDLS)
612 ** HP-UX 10.0x and 10.1x.
614 if (dl_dohpuxbind(p
->fd
, p
->errbuf
) < 0) {
618 if (pd
->send_fd
>= 0) {
620 ** XXX - if this fails, just close send_fd and
621 ** set it to -1, so that you can't send but can
624 if (dl_dohpuxbind(pd
->send_fd
, p
->errbuf
) < 0) {
629 #else /* neither AIX nor HP-UX */
631 ** Not Sinix, and neither AIX nor HP-UX - Solaris, and any other
634 if (dlbindreq(p
->fd
, 0, p
->errbuf
) < 0 ||
635 dlbindack(p
->fd
, (char *)buf
, p
->errbuf
, NULL
) < 0) {
639 #endif /* AIX vs. HP-UX vs. other */
640 #endif /* !HP-UX 9 and !HP-UX 10.20 or later and !SINIX */
643 * Turn a negative snapshot value (invalid), a snapshot value of
644 * 0 (unspecified), or a value bigger than the normal maximum
645 * value, into the maximum allowed value.
647 * If some application really *needs* a bigger snapshot
648 * length, we should just increase MAXIMUM_SNAPLEN.
650 if (p
->snapshot
<= 0 || p
->snapshot
> MAXIMUM_SNAPLEN
)
651 p
->snapshot
= MAXIMUM_SNAPLEN
;
656 ** Have to turn on some special ATM promiscuous mode
658 ** Do *NOT* turn regular promiscuous mode on; it doesn't
659 ** help, and may break things.
661 if (strioctl(p
->fd
, A_PROMISCON_REQ
, 0, NULL
) < 0) {
663 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
664 errno
, "A_PROMISCON_REQ");
669 if (p
->opt
.promisc
) {
671 ** Enable promiscuous (not necessary on send FD)
673 retv
= dlpromiscon(p
, DL_PROMISC_PHYS
);
675 if (retv
== PCAP_ERROR_PERM_DENIED
)
676 status
= PCAP_ERROR_PROMISC_PERM_DENIED
;
683 ** Try to enable multicast (you would have thought
684 ** promiscuous would be sufficient). (Skip if using
685 ** HP-UX or SINIX) (Not necessary on send FD)
687 #if !defined(__hpux) && !defined(sinix)
688 retv
= dlpromiscon(p
, DL_PROMISC_MULTI
);
690 status
= PCAP_WARNING
;
694 ** Try to enable SAP promiscuity (when not in promiscuous mode
695 ** when using HP-UX, when not doing SunATM on Solaris, and never
696 ** under SINIX) (Not necessary on send FD)
700 /* HP-UX - only do this when not in promiscuous mode */
701 if (!p
->opt
.promisc
) {
702 #elif defined(HAVE_SOLARIS)
703 /* Solaris - don't do this on SunATM devices */
706 /* Everything else (except for SINIX) - always do this */
709 retv
= dlpromiscon(p
, DL_PROMISC_SAP
);
711 if (p
->opt
.promisc
) {
713 * Not fatal, since the DL_PROMISC_PHYS mode
716 * Report it as a warning, however.
718 status
= PCAP_WARNING
;
731 ** HP-UX 9, and HP-UX 10.20 or later, must bind after setting
732 ** promiscuous options.
734 #if defined(HAVE_HPUX9) || defined(HAVE_HPUX10_20_OR_LATER)
735 if (dl_dohpuxbind(p
->fd
, p
->errbuf
) < 0) {
740 ** We don't set promiscuous mode on the send FD, but we'll defer
741 ** binding it anyway, just to keep the HP-UX 9/10.20 or later
744 if (pd
->send_fd
>= 0) {
746 ** XXX - if this fails, just close send_fd and
747 ** set it to -1, so that you can't send but can
750 if (dl_dohpuxbind(pd
->send_fd
, p
->errbuf
) < 0) {
758 ** Determine link type
759 ** XXX - get SAP length and address length as well, for use
760 ** when sending packets.
762 if (dlinforeq(p
->fd
, p
->errbuf
) < 0 ||
763 dlinfoack(p
->fd
, (char *)buf
, p
->errbuf
) < 0) {
768 infop
= &(MAKE_DL_PRIMITIVES(buf
))->info_ack
;
769 if (pcap_process_mactype(p
, infop
->dl_mac_type
) != 0) {
776 ** This is a non standard SunOS hack to get the full raw link-layer
779 if (strioctl(p
->fd
, DLIOCRAW
, 0, NULL
) < 0) {
781 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
787 #ifdef HAVE_SYS_BUFMOD_H
791 ** There is a bug in bufmod(7). When dealing with messages of
792 ** less than snaplen size it strips data from the beginning not
795 ** This bug is fixed in 5.3.2. Also, there is a patch available.
796 ** Ask for bugid 1149065.
799 get_release(release
, sizeof (release
), &osmajor
, &osminor
, &osmicro
);
800 if (osmajor
== 5 && (osminor
<= 2 || (osminor
== 3 && osmicro
< 2)) &&
801 getenv("BUFMOD_FIXED") == NULL
) {
802 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
803 "WARNING: bufmod is broken in SunOS %s; ignoring snaplen.",
806 status
= PCAP_WARNING
;
810 /* Push and configure bufmod. */
811 if (pcap_conf_bufmod(p
, ss
) != 0) {
818 ** As the last operation flush the read side.
820 if (ioctl(p
->fd
, I_FLUSH
, FLUSHR
) != 0) {
822 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
827 /* Allocate data buffer. */
828 if (pcap_alloc_databuf(p
) != 0) {
836 * "p->fd" is an FD for a STREAMS device, so "select()" and
837 * "poll()" should work on it.
839 p
->selectable_fd
= p
->fd
;
841 p
->read_op
= pcap_read_dlpi
;
842 p
->inject_op
= pcap_inject_dlpi
;
843 p
->setfilter_op
= install_bpf_program
; /* no kernel filtering */
844 p
->setdirection_op
= NULL
; /* Not implemented.*/
845 p
->set_datalink_op
= NULL
; /* can't change data link type */
846 p
->getnonblock_op
= pcap_getnonblock_fd
;
847 p
->setnonblock_op
= pcap_setnonblock_fd
;
848 p
->stats_op
= pcap_stats_dlpi
;
849 p
->cleanup_op
= pcap_cleanup_dlpi
;
853 pcap_cleanup_dlpi(p
);
858 * Split a device name into a device type name and a unit number;
859 * return the a pointer to the beginning of the unit number, which
860 * is the end of the device type name, and set "*unitp" to the unit
863 * Returns NULL on error, and fills "ebuf" with an error message.
866 split_dname(char *device
, u_int
*unitp
, char *ebuf
)
873 * Look for a number at the end of the device name string.
875 cp
= device
+ strlen(device
) - 1;
876 if (*cp
< '0' || *cp
> '9') {
877 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "%s missing unit number",
882 /* Digits at end of string are unit number */
883 while (cp
-1 >= device
&& *(cp
-1) >= '0' && *(cp
-1) <= '9')
887 unit
= strtol(cp
, &eos
, 10);
889 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "%s bad unit number", device
);
892 if (errno
== ERANGE
|| unit
> INT_MAX
) {
893 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "%s unit number too large",
898 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "%s unit number is negative",
902 *unitp
= (u_int
)unit
;
907 dl_doattach(int fd
, int ppa
, char *ebuf
)
910 bpf_u_int32 buf
[MAXDLBUF
];
913 req
.dl_primitive
= DL_ATTACH_REQ
;
915 if (send_request(fd
, (char *)&req
, sizeof(req
), "attach", ebuf
) < 0)
918 err
= dlokack(fd
, "attach", (char *)buf
, ebuf
);
926 dl_dohpuxbind(int fd
, char *ebuf
)
930 bpf_u_int32 buf
[MAXDLBUF
];
933 * XXX - we start at 22 because we used to use only 22, but
934 * that was just because that was the value used in some
935 * sample code from HP. With what value *should* we start?
936 * Does it matter, given that we're enabling SAP promiscuity
941 if (dlbindreq(fd
, hpsap
, ebuf
) < 0)
943 if (dlbindack(fd
, (char *)buf
, ebuf
, &uerror
) >= 0)
946 * For any error other than a UNIX EBUSY, give up.
948 if (uerror
!= EBUSY
) {
950 * dlbindack() has already filled in ebuf for
957 * For EBUSY, try the next SAP value; that means that
958 * somebody else is using that SAP. Clear ebuf so
959 * that application doesn't report the "Device busy"
960 * error as a warning.
966 "All SAPs from 22 through 100 are in use",
975 #define STRINGIFY(n) #n
978 dlpromiscon(pcap_t
*p
, bpf_u_int32 level
)
980 dl_promiscon_req_t req
;
981 bpf_u_int32 buf
[MAXDLBUF
];
984 req
.dl_primitive
= DL_PROMISCON_REQ
;
985 req
.dl_level
= level
;
986 if (send_request(p
->fd
, (char *)&req
, sizeof(req
), "promiscon",
989 err
= dlokack(p
->fd
, "promiscon" STRINGIFY(level
), (char *)buf
,
997 * Not all interfaces are DLPI interfaces, and thus not all interfaces
998 * can be opened with DLPI (for example, the loopback interface is not
999 * a DLPI interface on Solaris prior to Solaris 11), so try to open
1000 * the specified interface; return 0 if we fail with PCAP_ERROR_NO_SUCH_DEVICE
1004 is_dlpi_interface(const char *name
)
1008 char errbuf
[PCAP_ERRBUF_SIZE
];
1010 fd
= open_dlpi_device(name
, &ppa
, errbuf
);
1013 * Error - was it PCAP_ERROR_NO_SUCH_DEVICE?
1015 if (fd
== PCAP_ERROR_NO_SUCH_DEVICE
) {
1017 * Yes, so we can't open this because it's
1018 * not a DLPI interface.
1023 * No, so, in the case where there's a single DLPI
1024 * device for all interfaces of this type ("style
1025 * 2" providers?), we don't know whether it's a DLPI
1026 * interface or not, as we didn't try an attach.
1027 * Say it is a DLPI device, so that the user can at
1028 * least try to open it and report the error (which
1029 * is probably "you don't have permission to open that
1030 * DLPI device"; reporting those interfaces means
1031 * users will ask "why am I getting a permissions error
1032 * when I try to capture" rather than "why am I not
1033 * seeing any interfaces", making the underlying problem
1047 get_if_flags(const char *name _U_
, bpf_u_int32
*flags _U_
, char *errbuf _U_
)
1050 * Nothing we can do other than mark loopback devices as "the
1051 * connected/disconnected status doesn't apply".
1053 * XXX - on Solaris, can we do what the dladm command does,
1054 * i.e. get a connected/disconnected indication from a kstat?
1055 * (Note that you can also get the link speed, and possibly
1056 * other information, from a kstat as well.)
1058 if (*flags
& PCAP_IF_LOOPBACK
) {
1060 * Loopback devices aren't wireless, and "connected"/
1061 * "disconnected" doesn't apply to them.
1063 *flags
|= PCAP_IF_CONNECTION_STATUS_NOT_APPLICABLE
;
1070 pcap_platform_finddevs(pcap_if_list_t
*devlistp
, char *errbuf
)
1076 char pad
[516]; /* XXX - must be at least 513; is 516
1084 * Get the list of regular interfaces first.
1086 if (pcap_findalldevs_interfaces(devlistp
, errbuf
, is_dlpi_interface
,
1087 get_if_flags
) == -1)
1088 return (-1); /* failure */
1092 * We may have to do special magic to get ATM devices.
1094 if ((fd
= open("/dev/ba", O_RDWR
)) < 0) {
1096 * We couldn't open the "ba" device.
1097 * For now, just give up; perhaps we should
1098 * return an error if the problem is neither
1099 * a "that device doesn't exist" error (ENOENT,
1100 * ENXIO, etc.) or a "you're not allowed to do
1101 * that" error (EPERM, EACCES).
1106 if (strioctl(fd
, A_GET_UNITS
, sizeof(buf
), (char *)&buf
) < 0) {
1107 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
1108 errno
, "A_GET_UNITS");
1111 for (i
= 0; i
< buf
.nunits
; i
++) {
1112 snprintf(baname
, sizeof baname
, "ba%u", i
);
1114 * XXX - is there a notion of "up" and "running"?
1115 * And is there a way to determine whether the
1116 * interface is plugged into a network?
1118 if (add_dev(devlistp
, baname
, 0, NULL
, errbuf
) == NULL
)
1127 send_request(int fd
, char *ptr
, int len
, char *what
, char *ebuf
)
1137 if (putmsg(fd
, &ctl
, (struct strbuf
*) NULL
, flags
) < 0) {
1138 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1139 errno
, "send_request: putmsg \"%s\"", what
);
1146 recv_ack(int fd
, int size
, const char *what
, char *bufp
, char *ebuf
, int *uerror
)
1148 union DL_primitives
*dlp
;
1151 char errmsgbuf
[PCAP_ERRBUF_SIZE
];
1155 * Clear out "*uerror", so it's only set for DL_ERROR_ACK/DL_SYSERR,
1156 * making that the only place where EBUSY is treated specially.
1161 ctl
.maxlen
= MAXDLBUF
;
1166 if (getmsg(fd
, &ctl
, (struct strbuf
*)NULL
, &flags
) < 0) {
1167 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1168 errno
, "recv_ack: %s getmsg", what
);
1169 return (PCAP_ERROR
);
1172 dlp
= MAKE_DL_PRIMITIVES(ctl
.buf
);
1173 switch (dlp
->dl_primitive
) {
1178 #ifdef DL_HP_PPA_ACK
1185 switch (dlp
->error_ack
.dl_errno
) {
1189 *uerror
= dlp
->error_ack
.dl_unix_errno
;
1190 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1191 dlp
->error_ack
.dl_unix_errno
,
1192 "recv_ack: %s: UNIX error", what
);
1193 if (dlp
->error_ack
.dl_unix_errno
== EPERM
||
1194 dlp
->error_ack
.dl_unix_errno
== EACCES
)
1195 return (PCAP_ERROR_PERM_DENIED
);
1199 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1200 "recv_ack: %s: %s", what
,
1201 dlstrerror(errmsgbuf
, sizeof (errmsgbuf
), dlp
->error_ack
.dl_errno
));
1202 if (dlp
->error_ack
.dl_errno
== DL_BADPPA
)
1203 return (PCAP_ERROR_NO_SUCH_DEVICE
);
1204 else if (dlp
->error_ack
.dl_errno
== DL_ACCESS
)
1205 return (PCAP_ERROR_PERM_DENIED
);
1208 return (PCAP_ERROR
);
1211 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1212 "recv_ack: %s: Unexpected primitive ack %s",
1213 what
, dlprim(dlprimbuf
, sizeof (dlprimbuf
), dlp
->dl_primitive
));
1214 return (PCAP_ERROR
);
1217 if (ctl
.len
< size
) {
1218 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1219 "recv_ack: %s: Ack too small (%d < %d)",
1220 what
, ctl
.len
, size
);
1221 return (PCAP_ERROR
);
1227 dlstrerror(char *errbuf
, size_t errbufsize
, bpf_u_int32 dl_errno
)
1232 return ("Improper permissions for request");
1235 return ("DLSAP addr in improper format or invalid");
1238 return ("Seq number not from outstand DL_CONN_IND");
1241 return ("User data exceeded provider limit");
1244 #ifdef HAVE_DEV_DLPI
1246 * With a single "/dev/dlpi" device used for all
1247 * DLPI providers, PPAs have nothing to do with
1250 return ("Specified PPA was invalid");
1253 * We have separate devices for separate devices;
1254 * the PPA is just the unit number.
1256 return ("Specified PPA (device unit) was invalid");
1260 return ("Primitive received not known by provider");
1262 case DL_BADQOSPARAM
:
1263 return ("QOS parameters contained invalid values");
1266 return ("QOS structure type is unknown/unsupported");
1269 return ("Bad LSAP selector");
1272 return ("Token used not an active stream");
1275 return ("Attempted second bind with dl_max_conind");
1278 return ("Physical link initialization failed");
1281 return ("Provider couldn't allocate alternate address");
1284 return ("Physical link not initialized");
1287 return ("Primitive issued in improper state");
1290 return ("UNIX system error occurred");
1292 case DL_UNSUPPORTED
:
1293 return ("Requested service not supplied by provider");
1295 case DL_UNDELIVERABLE
:
1296 return ("Previous data unit could not be delivered");
1298 case DL_NOTSUPPORTED
:
1299 return ("Primitive is known but not supported");
1302 return ("Limit exceeded");
1305 return ("Promiscuous mode not enabled");
1308 return ("Other streams for PPA in post-attached");
1311 return ("Automatic handling XID&TEST not supported");
1314 return ("Automatic handling of XID not supported");
1317 return ("Automatic handling of TEST not supported");
1320 return ("Automatic handling of XID response");
1323 return ("Automatic handling of TEST response");
1326 return ("Pending outstanding connect indications");
1329 snprintf(errbuf
, errbufsize
, "Error %02x", dl_errno
);
1335 dlprim(char *primbuf
, size_t primbufsize
, bpf_u_int32 prim
)
1340 return ("DL_INFO_REQ");
1343 return ("DL_INFO_ACK");
1346 return ("DL_ATTACH_REQ");
1349 return ("DL_DETACH_REQ");
1352 return ("DL_BIND_REQ");
1355 return ("DL_BIND_ACK");
1358 return ("DL_UNBIND_REQ");
1361 return ("DL_OK_ACK");
1364 return ("DL_ERROR_ACK");
1366 case DL_SUBS_BIND_REQ
:
1367 return ("DL_SUBS_BIND_REQ");
1369 case DL_SUBS_BIND_ACK
:
1370 return ("DL_SUBS_BIND_ACK");
1372 case DL_UNITDATA_REQ
:
1373 return ("DL_UNITDATA_REQ");
1375 case DL_UNITDATA_IND
:
1376 return ("DL_UNITDATA_IND");
1378 case DL_UDERROR_IND
:
1379 return ("DL_UDERROR_IND");
1382 return ("DL_UDQOS_REQ");
1384 case DL_CONNECT_REQ
:
1385 return ("DL_CONNECT_REQ");
1387 case DL_CONNECT_IND
:
1388 return ("DL_CONNECT_IND");
1390 case DL_CONNECT_RES
:
1391 return ("DL_CONNECT_RES");
1393 case DL_CONNECT_CON
:
1394 return ("DL_CONNECT_CON");
1397 return ("DL_TOKEN_REQ");
1400 return ("DL_TOKEN_ACK");
1402 case DL_DISCONNECT_REQ
:
1403 return ("DL_DISCONNECT_REQ");
1405 case DL_DISCONNECT_IND
:
1406 return ("DL_DISCONNECT_IND");
1409 return ("DL_RESET_REQ");
1412 return ("DL_RESET_IND");
1415 return ("DL_RESET_RES");
1418 return ("DL_RESET_CON");
1421 snprintf(primbuf
, primbufsize
, "unknown primitive 0x%x",
1428 dlbindreq(int fd
, bpf_u_int32 sap
, char *ebuf
)
1433 memset((char *)&req
, 0, sizeof(req
));
1434 req
.dl_primitive
= DL_BIND_REQ
;
1435 /* XXX - what if neither of these are defined? */
1436 #if defined(DL_HP_RAWDLS)
1437 req
.dl_max_conind
= 1; /* XXX magic number */
1438 req
.dl_service_mode
= DL_HP_RAWDLS
;
1439 #elif defined(DL_CLDLS)
1440 req
.dl_service_mode
= DL_CLDLS
;
1444 return (send_request(fd
, (char *)&req
, sizeof(req
), "bind", ebuf
));
1448 dlbindack(int fd
, char *bufp
, char *ebuf
, int *uerror
)
1451 return (recv_ack(fd
, DL_BIND_ACK_SIZE
, "bind", bufp
, ebuf
, uerror
));
1455 dlokack(int fd
, const char *what
, char *bufp
, char *ebuf
)
1458 return (recv_ack(fd
, DL_OK_ACK_SIZE
, what
, bufp
, ebuf
, NULL
));
1463 dlinforeq(int fd
, char *ebuf
)
1467 req
.dl_primitive
= DL_INFO_REQ
;
1469 return (send_request(fd
, (char *)&req
, sizeof(req
), "info", ebuf
));
1473 dlinfoack(int fd
, char *bufp
, char *ebuf
)
1476 return (recv_ack(fd
, DL_INFO_ACK_SIZE
, "info", bufp
, ebuf
, NULL
));
1479 #ifdef HAVE_DL_PASSIVE_REQ_T
1481 * Enable DLPI passive mode. We do not care if this request fails, as this
1482 * indicates the underlying DLPI device does not support link aggregation.
1485 dlpassive(int fd
, char *ebuf
)
1487 dl_passive_req_t req
;
1488 bpf_u_int32 buf
[MAXDLBUF
];
1490 req
.dl_primitive
= DL_PASSIVE_REQ
;
1492 if (send_request(fd
, (char *)&req
, sizeof(req
), "dlpassive", ebuf
) == 0)
1493 (void) dlokack(fd
, "dlpassive", (char *)buf
, ebuf
);
1499 * There's an ack *if* there's an error.
1502 dlrawdatareq(int fd
, const u_char
*datap
, int datalen
)
1504 struct strbuf ctl
, data
;
1505 long buf
[MAXDLBUF
]; /* XXX - char? */
1506 union DL_primitives
*dlp
;
1509 dlp
= MAKE_DL_PRIMITIVES(buf
);
1511 dlp
->dl_primitive
= DL_HP_RAWDATA_REQ
;
1512 dlen
= DL_HP_RAWDATA_REQ_SIZE
;
1515 * HP's documentation doesn't appear to show us supplying any
1516 * address pointed to by the control part of the message.
1517 * I think that's what raw mode means - you just send the raw
1518 * packet, you don't specify where to send it to, as that's
1519 * implied by the destination address.
1523 ctl
.buf
= (void *)buf
;
1527 data
.buf
= (void *)datap
;
1529 return (putmsg(fd
, &ctl
, &data
, 0));
1531 #endif /* DL_HP_RAWDLS */
1533 #if defined(HAVE_SOLARIS) && defined(HAVE_SYS_BUFMOD_H)
1535 get_release(char *buf
, size_t bufsize
, bpf_u_int32
*majorp
,
1536 bpf_u_int32
*minorp
, bpf_u_int32
*microp
)
1543 if (sysinfo(SI_RELEASE
, buf
, bufsize
) < 0) {
1544 pcap_strlcpy(buf
, "?", bufsize
);
1548 if (!PCAP_ISDIGIT((unsigned char)*cp
))
1550 *majorp
= strtol(cp
, &cp
, 10);
1553 *minorp
= strtol(cp
, &cp
, 10);
1556 *microp
= strtol(cp
, &cp
, 10);
1560 #ifdef DL_HP_PPA_REQ
1562 * Under HP-UX 10 and HP-UX 11, we can ask for the ppa
1567 * Determine ppa number that specifies ifname.
1569 * If the "dl_hp_ppa_info_t" doesn't have a "dl_module_id_1" member,
1570 * the code that's used here is the old code for HP-UX 10.x.
1572 * However, HP-UX 10.20, at least, appears to have such a member
1573 * in its "dl_hp_ppa_info_t" structure, so the new code is used.
1574 * The new code didn't work on an old 10.20 system on which Rick
1575 * Jones of HP tried it, but with later patches installed, it
1576 * worked - it appears that the older system had those members but
1577 * didn't put anything in them, so, if the search by name fails, we
1578 * do the old search.
1580 * Rick suggests that making sure your system is "up on the latest
1581 * lancommon/DLPI/driver patches" is probably a good idea; it'd fix
1582 * that problem, as well as allowing libpcap to see packets sent
1583 * from the system on which the libpcap application is being run.
1584 * (On 10.20, in addition to getting the latest patches, you need
1585 * to turn the kernel "lanc_outbound_promisc_flag" flag on with ADB;
1586 * a posting to "comp.sys.hp.hpux" at
1588 * http://www.deja.com/[ST_rn=ps]/getdoc.xp?AN=558092266
1590 * says that, to see the machine's outgoing traffic, you'd need to
1591 * apply the right patches to your system, and also set that variable
1594 echo 'lanc_outbound_promisc_flag/W1' | /usr/bin/adb -w /stand/vmunix /dev/kmem
1596 * which could be put in, for example, "/sbin/init.d/lan".
1598 * Setting the variable is not necessary on HP-UX 11.x.
1601 get_dlpi_ppa(register int fd
, register const char *device
, register u_int unit
,
1602 u_int
*ppa
, register char *ebuf
)
1604 register dl_hp_ppa_ack_t
*ap
;
1605 register dl_hp_ppa_info_t
*ipstart
, *ip
;
1608 register u_long majdev
;
1609 struct stat statbuf
;
1610 dl_hp_ppa_req_t req
;
1613 dl_hp_ppa_ack_t
*dlp
;
1617 memset((char *)&req
, 0, sizeof(req
));
1618 req
.dl_primitive
= DL_HP_PPA_REQ
;
1620 memset((char *)buf
, 0, sizeof(buf
));
1621 if (send_request(fd
, (char *)&req
, sizeof(req
), "hpppa", ebuf
) < 0)
1622 return (PCAP_ERROR
);
1624 ctl
.maxlen
= DL_HP_PPA_ACK_SIZE
;
1626 ctl
.buf
= (char *)buf
;
1630 * DLPI may return a big chunk of data for a DL_HP_PPA_REQ. The normal
1631 * recv_ack will fail because it set the maxlen to MAXDLBUF (8192)
1632 * which is NOT big enough for a DL_HP_PPA_REQ.
1634 * This causes libpcap applications to fail on a system with HP-APA
1637 * To figure out how big the returned data is, we first call getmsg
1638 * to get the small head and peek at the head to get the actual data
1639 * length, and then issue another getmsg to get the actual PPA data.
1641 /* get the head first */
1642 if (getmsg(fd
, &ctl
, (struct strbuf
*)NULL
, &flags
) < 0) {
1643 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1644 errno
, "get_dlpi_ppa: hpppa getmsg");
1645 return (PCAP_ERROR
);
1647 if (ctl
.len
== -1) {
1648 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1649 "get_dlpi_ppa: hpppa getmsg: control buffer has no data");
1650 return (PCAP_ERROR
);
1653 dlp
= (dl_hp_ppa_ack_t
*)ctl
.buf
;
1654 if (dlp
->dl_primitive
!= DL_HP_PPA_ACK
) {
1655 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1656 "get_dlpi_ppa: hpppa unexpected primitive ack 0x%x",
1657 (bpf_u_int32
)dlp
->dl_primitive
);
1658 return (PCAP_ERROR
);
1661 if ((size_t)ctl
.len
< DL_HP_PPA_ACK_SIZE
) {
1662 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1663 "get_dlpi_ppa: hpppa ack too small (%d < %lu)",
1664 ctl
.len
, (unsigned long)DL_HP_PPA_ACK_SIZE
);
1665 return (PCAP_ERROR
);
1668 /* allocate buffer */
1669 if ((ppa_data_buf
= (char *)malloc(dlp
->dl_length
)) == NULL
) {
1670 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1671 errno
, "get_dlpi_ppa: hpppa malloc");
1672 return (PCAP_ERROR
);
1674 ctl
.maxlen
= dlp
->dl_length
;
1676 ctl
.buf
= (char *)ppa_data_buf
;
1678 if (getmsg(fd
, &ctl
, (struct strbuf
*)NULL
, &flags
) < 0) {
1679 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1680 errno
, "get_dlpi_ppa: hpppa getmsg");
1682 return (PCAP_ERROR
);
1684 if (ctl
.len
== -1) {
1685 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1686 "get_dlpi_ppa: hpppa getmsg: control buffer has no data");
1687 return (PCAP_ERROR
);
1689 if ((u_int
)ctl
.len
< dlp
->dl_length
) {
1690 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1691 "get_dlpi_ppa: hpppa ack too small (%d < %lu)",
1692 ctl
.len
, (unsigned long)dlp
->dl_length
);
1694 return (PCAP_ERROR
);
1697 ap
= (dl_hp_ppa_ack_t
*)buf
;
1698 ipstart
= (dl_hp_ppa_info_t
*)ppa_data_buf
;
1701 #ifdef HAVE_DL_HP_PPA_INFO_T_DL_MODULE_ID_1
1703 * The "dl_hp_ppa_info_t" structure has a "dl_module_id_1"
1704 * member that should, in theory, contain the part of the
1705 * name for the device that comes before the unit number,
1706 * and should also have a "dl_module_id_2" member that may
1707 * contain an alternate name (e.g., I think Ethernet devices
1708 * have both "lan", for "lanN", and "snap", for "snapN", with
1709 * the former being for Ethernet packets and the latter being
1710 * for 802.3/802.2 packets).
1712 * Search for the device that has the specified name and
1715 for (i
= 0; i
< ap
->dl_count
; i
++) {
1716 if ((strcmp((const char *)ip
->dl_module_id_1
, device
) == 0 ||
1717 strcmp((const char *)ip
->dl_module_id_2
, device
) == 0) &&
1718 ip
->dl_instance_num
== unit
)
1721 ip
= (dl_hp_ppa_info_t
*)((u_char
*)ipstart
+ ip
->dl_next_offset
);
1725 * We don't have that member, so the search is impossible; make it
1726 * look as if the search failed.
1731 if (i
== ap
->dl_count
) {
1733 * Well, we didn't, or can't, find the device by name.
1735 * HP-UX 10.20, whilst it has "dl_module_id_1" and
1736 * "dl_module_id_2" fields in the "dl_hp_ppa_info_t",
1737 * doesn't seem to fill them in unless the system is
1738 * at a reasonably up-to-date patch level.
1740 * Older HP-UX 10.x systems might not have those fields
1743 * Therefore, we'll search for the entry with the major
1744 * device number of a device with the name "/dev/<dev><unit>",
1745 * if such a device exists, as the old code did.
1747 snprintf(dname
, sizeof(dname
), "/dev/%s%u", device
, unit
);
1748 if (stat(dname
, &statbuf
) < 0) {
1749 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1750 errno
, "stat: %s", dname
);
1751 return (PCAP_ERROR
);
1753 majdev
= major(statbuf
.st_rdev
);
1757 for (i
= 0; i
< ap
->dl_count
; i
++) {
1758 if (ip
->dl_mjr_num
== majdev
&&
1759 ip
->dl_instance_num
== unit
)
1762 ip
= (dl_hp_ppa_info_t
*)((u_char
*)ipstart
+ ip
->dl_next_offset
);
1765 if (i
== ap
->dl_count
) {
1766 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1767 "can't find /dev/dlpi PPA for %s%u", device
, unit
);
1768 return (PCAP_ERROR_NO_SUCH_DEVICE
);
1770 if (ip
->dl_hdw_state
== HDW_DEAD
) {
1771 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1772 "%s%d: hardware state: DOWN\n", device
, unit
);
1774 return (PCAP_ERROR
);
1784 * Under HP-UX 9, there is no good way to determine the ppa.
1785 * So punt and read it from /dev/kmem.
1787 static struct nlist nl
[] = {
1793 static char path_vmunix
[] = "/hp-ux";
1795 /* Determine ppa number that specifies ifname */
1797 get_dlpi_ppa(register int fd
, register const char *ifname
, register u_int unit
,
1798 u_int
*ppa
, register char *ebuf
)
1800 register const char *cp
;
1804 char if_name
[sizeof(ifnet
.if_name
) + 1];
1806 cp
= strrchr(ifname
, '/');
1809 if (nlist(path_vmunix
, &nl
) < 0) {
1810 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "nlist %s failed",
1812 return (PCAP_ERROR
);
1814 if (nl
[NL_IFNET
].n_value
== 0) {
1815 snprintf(ebuf
, PCAP_ERRBUF_SIZE
,
1816 "could't find %s kernel symbol",
1817 nl
[NL_IFNET
].n_name
);
1818 return (PCAP_ERROR
);
1820 kd
= open("/dev/kmem", O_RDONLY
);
1822 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1823 errno
, "kmem open");
1824 return (PCAP_ERROR
);
1826 if (dlpi_kread(kd
, nl
[NL_IFNET
].n_value
,
1827 &addr
, sizeof(addr
), ebuf
) < 0) {
1829 return (PCAP_ERROR
);
1831 for (; addr
!= NULL
; addr
= ifnet
.if_next
) {
1832 if (dlpi_kread(kd
, (off_t
)addr
,
1833 &ifnet
, sizeof(ifnet
), ebuf
) < 0 ||
1834 dlpi_kread(kd
, (off_t
)ifnet
.if_name
,
1835 if_name
, sizeof(ifnet
.if_name
), ebuf
) < 0) {
1837 return (PCAP_ERROR
);
1839 if_name
[sizeof(ifnet
.if_name
)] = '\0';
1840 if (strcmp(if_name
, ifname
) == 0 && ifnet
.if_unit
== unit
) {
1841 *ppa
= ifnet
.if_index
;
1846 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "Can't find %s", ifname
);
1847 return (PCAP_ERROR_NO_SUCH_DEVICE
);
1851 dlpi_kread(register int fd
, register off_t addr
,
1852 register void *buf
, register u_int len
, register char *ebuf
)
1856 if (lseek(fd
, addr
, SEEK_SET
) < 0) {
1857 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1861 cc
= read(fd
, buf
, len
);
1863 pcap_fmt_errmsg_for_errno(ebuf
, PCAP_ERRBUF_SIZE
,
1866 } else if (cc
!= len
) {
1867 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "short read (%d != %d)", cc
,
1876 pcap_create_interface(const char *device _U_
, char *ebuf
)
1880 struct pcap_dlpi
*pd
;
1883 p
= pcap_create_common(ebuf
, sizeof (struct pcap_dlpi
));
1889 pd
->send_fd
= -1; /* it hasn't been opened yet */
1892 p
->activate_op
= pcap_activate_dlpi
;
1897 * Libpcap version string.
1900 pcap_lib_version(void)
1902 return (PCAP_VERSION_STRING
);