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 Sagun Shakya (sagun.shakya@sun.com)
24 * Packet capture routines for DLPI using libdlpi under SunOS 5.11.
31 #include <sys/types.h>
33 #include <sys/bufmod.h>
34 #include <sys/stream.h>
47 static int dlpromiscon(pcap_t
*, bpf_u_int32
);
48 static int pcap_read_libdlpi(pcap_t
*, int, pcap_handler
, u_char
*);
49 static int pcap_inject_libdlpi(pcap_t
*, const void *, int);
50 static void pcap_libdlpi_err(const char *, const char *, int, char *);
51 static void pcap_cleanup_libdlpi(pcap_t
*);
54 * list_interfaces() will list all the network links that are
55 * available on a system.
57 static boolean_t
list_interfaces(const char *, void *);
59 typedef struct linknamelist
{
60 char linkname
[DLPI_LINKNAME_MAX
];
61 struct linknamelist
*lnl_next
;
64 typedef struct linkwalk
{
65 linknamelist_t
*lw_list
;
70 * The caller of this function should free the memory allocated
71 * for each linknamelist_t "entry" allocated.
74 list_interfaces(const char *linkname
, void *arg
)
76 linkwalk_t
*lwp
= arg
;
77 linknamelist_t
*entry
;
79 if ((entry
= calloc(1, sizeof(linknamelist_t
))) == NULL
) {
83 (void) pcap_strlcpy(entry
->linkname
, linkname
, DLPI_LINKNAME_MAX
);
85 if (lwp
->lw_list
== NULL
) {
88 entry
->lnl_next
= lwp
->lw_list
;
96 pcap_activate_libdlpi(pcap_t
*p
)
98 struct pcap_dlpi
*pd
= p
->priv
;
105 * Enable Solaris raw and passive DLPI extensions;
106 * dlpi_open() will not fail if the underlying link does not support
107 * passive mode. See dlpi(7P) for details.
109 retv
= dlpi_open(p
->opt
.device
, &dh
, DLPI_RAW
|DLPI_PASSIVE
);
110 if (retv
!= DLPI_SUCCESS
) {
111 if (retv
== DLPI_ELINKNAMEINVAL
|| retv
== DLPI_ENOLINK
) {
113 * There's nothing more to say, so clear the
116 status
= PCAP_ERROR_NO_SUCH_DEVICE
;
118 } else if (retv
== DL_SYSERR
&&
119 (errno
== EPERM
|| errno
== EACCES
)) {
120 status
= PCAP_ERROR_PERM_DENIED
;
121 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
122 "Attempt to open DLPI device failed with %s - root privilege may be required",
123 (errno
== EPERM
) ? "EPERM" : "EACCES");
126 pcap_libdlpi_err(p
->opt
.device
, "dlpi_open", retv
,
135 * This device exists, but we don't support monitor mode
136 * any platforms that support DLPI.
138 status
= PCAP_ERROR_RFMON_NOTSUP
;
142 /* Bind with DLPI_ANY_SAP. */
143 if ((retv
= dlpi_bind(pd
->dlpi_hd
, DLPI_ANY_SAP
, 0)) != DLPI_SUCCESS
) {
145 pcap_libdlpi_err(p
->opt
.device
, "dlpi_bind", retv
, p
->errbuf
);
150 * Turn a negative snapshot value (invalid), a snapshot value of
151 * 0 (unspecified), or a value bigger than the normal maximum
152 * value, into the maximum allowed value.
154 * If some application really *needs* a bigger snapshot
155 * length, we should just increase MAXIMUM_SNAPLEN.
157 if (p
->snapshot
<= 0 || p
->snapshot
> MAXIMUM_SNAPLEN
)
158 p
->snapshot
= MAXIMUM_SNAPLEN
;
160 /* Enable promiscuous mode. */
161 if (p
->opt
.promisc
) {
162 retv
= dlpromiscon(p
, DL_PROMISC_PHYS
);
165 * "You don't have permission to capture on
166 * this device" and "you don't have permission
167 * to capture in promiscuous mode on this
168 * device" are different; let the user know,
169 * so if they can't get permission to
170 * capture in promiscuous mode, they can at
171 * least try to capture in non-promiscuous
174 * XXX - you might have to capture in
175 * promiscuous mode to see outgoing packets.
177 if (retv
== PCAP_ERROR_PERM_DENIED
)
178 status
= PCAP_ERROR_PROMISC_PERM_DENIED
;
184 /* Try to enable multicast. */
185 retv
= dlpromiscon(p
, DL_PROMISC_MULTI
);
192 /* Try to enable SAP promiscuity. */
193 retv
= dlpromiscon(p
, DL_PROMISC_SAP
);
196 * Not fatal, since the DL_PROMISC_PHYS mode worked.
197 * Report it as a warning, however.
200 status
= PCAP_WARNING
;
207 /* Determine link type. */
208 if ((retv
= dlpi_info(pd
->dlpi_hd
, &dlinfo
, 0)) != DLPI_SUCCESS
) {
210 pcap_libdlpi_err(p
->opt
.device
, "dlpi_info", retv
, p
->errbuf
);
214 if (pcap_process_mactype(p
, dlinfo
.di_mactype
) != 0) {
219 p
->fd
= dlpi_fd(pd
->dlpi_hd
);
221 /* Push and configure bufmod. */
222 if (pcap_conf_bufmod(p
, p
->snapshot
) != 0) {
228 * Flush the read side.
230 if (ioctl(p
->fd
, I_FLUSH
, FLUSHR
) != 0) {
232 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
237 /* Allocate data buffer. */
238 if (pcap_alloc_databuf(p
) != 0) {
244 * "p->fd" is a FD for a STREAMS device, so "select()" and
245 * "poll()" should work on it.
247 p
->selectable_fd
= p
->fd
;
249 p
->read_op
= pcap_read_libdlpi
;
250 p
->inject_op
= pcap_inject_libdlpi
;
251 p
->setfilter_op
= install_bpf_program
; /* No kernel filtering */
252 p
->setdirection_op
= NULL
; /* Not implemented */
253 p
->set_datalink_op
= NULL
; /* Can't change data link type */
254 p
->getnonblock_op
= pcap_getnonblock_fd
;
255 p
->setnonblock_op
= pcap_setnonblock_fd
;
256 p
->stats_op
= pcap_stats_dlpi
;
257 p
->cleanup_op
= pcap_cleanup_libdlpi
;
261 pcap_cleanup_libdlpi(p
);
265 #define STRINGIFY(n) #n
268 dlpromiscon(pcap_t
*p
, bpf_u_int32 level
)
270 struct pcap_dlpi
*pd
= p
->priv
;
274 retv
= dlpi_promiscon(pd
->dlpi_hd
, level
);
275 if (retv
!= DLPI_SUCCESS
) {
276 if (retv
== DL_SYSERR
&&
277 (errno
== EPERM
|| errno
== EACCES
)) {
278 if (level
== DL_PROMISC_PHYS
) {
279 err
= PCAP_ERROR_PROMISC_PERM_DENIED
;
280 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
281 "Attempt to set promiscuous mode failed with %s - root privilege may be required",
282 (errno
== EPERM
) ? "EPERM" : "EACCES");
284 err
= PCAP_ERROR_PERM_DENIED
;
285 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
286 "Attempt to set %s mode failed with %s - root privilege may be required",
287 (level
== DL_PROMISC_MULTI
) ? "multicast" : "SAP promiscuous",
288 (errno
== EPERM
) ? "EPERM" : "EACCES");
292 pcap_libdlpi_err(p
->opt
.device
,
293 "dlpi_promiscon" STRINGIFY(level
),
302 * Presumably everything returned by dlpi_walk() is a DLPI device,
303 * so there's no work to be done here to check whether name refers
307 is_dlpi_interface(const char *name _U_
)
313 get_if_flags(const char *name _U_
, bpf_u_int32
*flags _U_
, char *errbuf _U_
)
316 * Nothing we can do other than mark loopback devices as "the
317 * connected/disconnected status doesn't apply".
319 * XXX - on Solaris, can we do what the dladm command does,
320 * i.e. get a connected/disconnected indication from a kstat?
321 * (Note that you can also get the link speed, and possibly
322 * other information, from a kstat as well.)
324 if (*flags
& PCAP_IF_LOOPBACK
) {
326 * Loopback devices aren't wireless, and "connected"/
327 * "disconnected" doesn't apply to them.
329 *flags
|= PCAP_IF_CONNECTION_STATUS_NOT_APPLICABLE
;
336 * In Solaris, the "standard" mechanism" i.e SIOCGLIFCONF will only find
337 * network links that are plumbed and are up. dlpi_walk(3DLPI) will find
338 * additional network links present in the system.
341 pcap_platform_finddevs(pcap_if_list_t
*devlistp
, char *errbuf
)
345 linknamelist_t
*entry
, *next
;
346 linkwalk_t lw
= {NULL
, 0};
350 * Get the list of regular interfaces first.
352 if (pcap_findalldevs_interfaces(devlistp
, errbuf
,
353 is_dlpi_interface
, get_if_flags
) == -1)
354 return (-1); /* failure */
356 /* dlpi_walk() for loopback will be added here. */
359 * Find all DLPI devices in the current zone.
361 * XXX - will pcap_findalldevs_interfaces() find any devices
362 * outside the current zone? If not, the only reason to call
363 * it would be to get the interface addresses.
365 dlpi_walk(list_interfaces
, &lw
, 0);
367 if (lw
.lw_err
!= 0) {
368 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
,
369 lw
.lw_err
, "dlpi_walk");
374 /* Add linkname if it does not exist on the list. */
375 for (entry
= lw
.lw_list
; entry
!= NULL
; entry
= entry
->lnl_next
) {
377 * If it isn't already in the list of devices, try to
380 if (find_or_add_dev(devlistp
, entry
->linkname
, 0, get_if_flags
,
381 NULL
, errbuf
) == NULL
)
386 for (entry
= lw
.lw_list
; entry
!= NULL
; entry
= next
) {
387 next
= entry
->lnl_next
;
396 * Read data received on DLPI handle. Returns -2 if told to terminate, else
397 * returns the number of packets read.
400 pcap_read_libdlpi(pcap_t
*p
, int count
, pcap_handler callback
, u_char
*user
)
402 struct pcap_dlpi
*pd
= p
->priv
;
414 /* Has "pcap_breakloop()" been called? */
417 * Yes - clear the flag that indicates that it has,
418 * and return -2 to indicate that we were told to
419 * break out of the loop.
426 bufp
= (u_char
*)p
->buffer
+ p
->offset
;
428 retv
= dlpi_recv(pd
->dlpi_hd
, NULL
, NULL
, bufp
,
430 if (retv
!= DLPI_SUCCESS
) {
432 * This is most likely a call to terminate out of the
433 * loop. So, do not return an error message, instead
434 * check if "pcap_breakloop()" has been called above.
436 if (retv
== DL_SYSERR
&& errno
== EINTR
) {
440 pcap_libdlpi_err(dlpi_linkname(pd
->dlpi_hd
),
441 "dlpi_recv", retv
, p
->errbuf
);
448 return (pcap_process_pkts(p
, callback
, user
, count
, bufp
, len
));
452 pcap_inject_libdlpi(pcap_t
*p
, const void *buf
, int size
)
454 struct pcap_dlpi
*pd
= p
->priv
;
457 retv
= dlpi_send(pd
->dlpi_hd
, NULL
, 0, buf
, size
, NULL
);
458 if (retv
!= DLPI_SUCCESS
) {
459 pcap_libdlpi_err(dlpi_linkname(pd
->dlpi_hd
), "dlpi_send", retv
,
464 * dlpi_send(3DLPI) does not provide a way to return the number of
465 * bytes sent on the wire. Based on the fact that DLPI_SUCCESS was
466 * returned we are assuming 'size' bytes were sent.
475 pcap_cleanup_libdlpi(pcap_t
*p
)
477 struct pcap_dlpi
*pd
= p
->priv
;
479 if (pd
->dlpi_hd
!= NULL
) {
480 dlpi_close(pd
->dlpi_hd
);
484 pcap_cleanup_live_common(p
);
488 * Write error message to buffer.
491 pcap_libdlpi_err(const char *linkname
, const char *func
, int err
, char *errbuf
)
493 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "libpcap: %s failed on %s: %s",
494 func
, linkname
, dlpi_strerror(err
));
498 pcap_create_interface(const char *device _U_
, char *ebuf
)
502 p
= PCAP_CREATE_COMMON(ebuf
, struct pcap_dlpi
);
506 p
->activate_op
= pcap_activate_libdlpi
;
511 * Libpcap version string.
514 pcap_lib_version(void)
516 return (PCAP_VERSION_STRING
);