blob: cfd95191d772b0c3df559a445e474cffd75bc38c [file] [log] [blame]
The Android Open Source Project478ab6c2009-03-03 19:30:05 -08001/*
2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
3 * The Regents of the University of California. All rights reserved.
4 *
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
16 * written permission.
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.
20 */
The Android Open Source Project478ab6c2009-03-03 19:30:05 -080021
22#ifdef HAVE_CONFIG_H
Haibo Huang165065a2018-07-23 17:26:52 -070023#include <config.h>
The Android Open Source Project478ab6c2009-03-03 19:30:05 -080024#endif
25
26#include <sys/types.h>
27#include <sys/time.h>
28#include <sys/timeb.h>
29#include <sys/file.h>
30#include <sys/ioctl.h>
31#include <sys/socket.h>
32
33#include <net/if.h>
34#include <net/nit.h>
35
36#include <netinet/in.h>
37#include <netinet/in_systm.h>
38#include <netinet/ip.h>
39#include <netinet/if_ether.h>
40#include <netinet/ip_var.h>
41#include <netinet/udp.h>
42#include <netinet/udp_var.h>
43#include <netinet/tcp.h>
44#include <netinet/tcpip.h>
45
The Android Open Source Project478ab6c2009-03-03 19:30:05 -080046#include <errno.h>
47#include <stdio.h>
48
49#include "pcap-int.h"
50
51#ifdef HAVE_OS_PROTO_H
52#include "os-proto.h"
53#endif
54
55/*
56 * The chunk size for NIT. This is the amount of buffering
57 * done for read calls.
58 */
59#define CHUNKSIZE (2*1024)
60
61/*
62 * The total buffer space used by NIT.
63 */
64#define BUFSPACE (4*CHUNKSIZE)
65
66/* Forwards */
67static int nit_setflags(int, int, int, char *);
68
JP Abgrall511eca32014-02-12 13:46:45 -080069/*
70 * Private data for capturing on NIT devices.
71 */
72struct pcap_nit {
73 struct pcap_stat stat;
74};
75
The Android Open Source Project478ab6c2009-03-03 19:30:05 -080076static int
77pcap_stats_nit(pcap_t *p, struct pcap_stat *ps)
78{
JP Abgrall511eca32014-02-12 13:46:45 -080079 struct pcap_nit *pn = p->priv;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -080080
81 /*
82 * "ps_recv" counts packets handed to the filter, not packets
83 * that passed the filter. As filtering is done in userland,
84 * this does not include packets dropped because we ran out
85 * of buffer space.
86 *
87 * "ps_drop" presumably counts packets dropped by the socket
88 * because of flow control requirements or resource exhaustion;
89 * it doesn't count packets dropped by the interface driver.
90 * As filtering is done in userland, it counts packets regardless
91 * of whether they would've passed the filter.
92 *
93 * These statistics don't include packets not yet read from the
94 * kernel by libpcap or packets not yet read from libpcap by the
95 * application.
96 */
JP Abgrall511eca32014-02-12 13:46:45 -080097 *ps = pn->stat;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -080098 return (0);
99}
100
101static int
102pcap_read_nit(pcap_t *p, int cnt, pcap_handler callback, u_char *user)
103{
JP Abgrall511eca32014-02-12 13:46:45 -0800104 struct pcap_nit *pn = p->priv;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800105 register int cc, n;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800106 register u_char *bp, *cp, *ep;
107 register struct nit_hdr *nh;
108 register int caplen;
109
110 cc = p->cc;
111 if (cc == 0) {
112 cc = read(p->fd, (char *)p->buffer, p->bufsize);
113 if (cc < 0) {
114 if (errno == EWOULDBLOCK)
115 return (0);
Haibo Huang165065a2018-07-23 17:26:52 -0700116 pcap_fmt_errmsg_for_errno(p->errbuf, sizeof(p->errbuf),
117 errno, "pcap_read");
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800118 return (-1);
119 }
Elliott Hughes965a4b52017-05-15 10:37:39 -0700120 bp = (u_char *)p->buffer;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800121 } else
122 bp = p->bp;
123
124 /*
125 * Loop through each packet. The increment expression
126 * rounds up to the next int boundary past the end of
127 * the previous packet.
128 */
129 n = 0;
130 ep = bp + cc;
131 while (bp < ep) {
132 /*
133 * Has "pcap_breakloop()" been called?
134 * If so, return immediately - if we haven't read any
135 * packets, clear the flag and return -2 to indicate
136 * that we were told to break out of the loop, otherwise
137 * leave the flag set, so that the *next* call will break
138 * out of the loop without having read any packets, and
139 * return the number of packets we've processed so far.
140 */
141 if (p->break_loop) {
142 if (n == 0) {
143 p->break_loop = 0;
144 return (-2);
145 } else {
146 p->cc = ep - bp;
147 p->bp = bp;
148 return (n);
149 }
150 }
151
152 nh = (struct nit_hdr *)bp;
153 cp = bp + sizeof(*nh);
154
155 switch (nh->nh_state) {
156
157 case NIT_CATCH:
158 break;
159
160 case NIT_NOMBUF:
161 case NIT_NOCLUSTER:
162 case NIT_NOSPACE:
JP Abgrall511eca32014-02-12 13:46:45 -0800163 pn->stat.ps_drop = nh->nh_dropped;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800164 continue;
165
166 case NIT_SEQNO:
167 continue;
168
169 default:
Haibo Huangee759ce2021-01-05 21:34:29 -0800170 snprintf(p->errbuf, sizeof(p->errbuf),
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800171 "bad nit state %d", nh->nh_state);
172 return (-1);
173 }
JP Abgrall511eca32014-02-12 13:46:45 -0800174 ++pn->stat.ps_recv;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800175 bp += ((sizeof(struct nit_hdr) + nh->nh_datalen +
176 sizeof(int) - 1) & ~(sizeof(int) - 1));
177
178 caplen = nh->nh_wirelen;
179 if (caplen > p->snapshot)
180 caplen = p->snapshot;
Haibo Huangee759ce2021-01-05 21:34:29 -0800181 if (pcap_filter(p->fcode.bf_insns, cp, nh->nh_wirelen, caplen)) {
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800182 struct pcap_pkthdr h;
183 h.ts = nh->nh_timestamp;
184 h.len = nh->nh_wirelen;
185 h.caplen = caplen;
186 (*callback)(user, &h, cp);
JP Abgrall511eca32014-02-12 13:46:45 -0800187 if (++n >= cnt && !PACKET_COUNT_IS_UNLIMITED(cnt)) {
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800188 p->cc = ep - bp;
189 p->bp = bp;
190 return (n);
191 }
192 }
193 }
194 p->cc = 0;
195 return (n);
196}
197
198static int
Haibo Huangee759ce2021-01-05 21:34:29 -0800199pcap_inject_nit(pcap_t *p, const void *buf, int size)
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800200{
201 struct sockaddr sa;
202 int ret;
203
204 memset(&sa, 0, sizeof(sa));
205 strncpy(sa.sa_data, device, sizeof(sa.sa_data));
206 ret = sendto(p->fd, buf, size, 0, &sa, sizeof(sa));
207 if (ret == -1) {
Haibo Huang165065a2018-07-23 17:26:52 -0700208 pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
209 errno, "send");
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800210 return (-1);
211 }
212 return (ret);
Elliott Hughesd8845d72015-10-19 18:07:04 -0700213}
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800214
215static int
JP Abgrall511eca32014-02-12 13:46:45 -0800216nit_setflags(pcap_t *p)
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800217{
218 struct nit_ioc nioc;
219
220 memset(&nioc, 0, sizeof(nioc));
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800221 nioc.nioc_typetomatch = NT_ALLTYPES;
222 nioc.nioc_snaplen = p->snapshot;
223 nioc.nioc_bufalign = sizeof(int);
224 nioc.nioc_bufoffset = 0;
225
JP Abgrall511eca32014-02-12 13:46:45 -0800226 if (p->opt.buffer_size != 0)
227 nioc.nioc_bufspace = p->opt.buffer_size;
228 else {
229 /* Default buffer size */
230 nioc.nioc_bufspace = BUFSPACE;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800231 }
JP Abgrall511eca32014-02-12 13:46:45 -0800232
233 if (p->opt.immediate) {
234 /*
235 * XXX - will this cause packets to be delivered immediately?
236 * XXX - given that this is for SunOS prior to 4.0, do
237 * we care?
238 */
239 nioc.nioc_chunksize = 0;
240 } else
241 nioc.nioc_chunksize = CHUNKSIZE;
242 if (p->opt.timeout != 0) {
243 nioc.nioc_flags |= NF_TIMEOUT;
244 nioc.nioc_timeout.tv_sec = p->opt.timeout / 1000;
245 nioc.nioc_timeout.tv_usec = (p->opt.timeout * 1000) % 1000000;
246 }
247 if (p->opt.promisc)
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800248 nioc.nioc_flags |= NF_PROMISC;
249
JP Abgrall511eca32014-02-12 13:46:45 -0800250 if (ioctl(p->fd, SIOCSNIT, &nioc) < 0) {
Haibo Huang165065a2018-07-23 17:26:52 -0700251 pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
252 errno, "SIOCSNIT");
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800253 return (-1);
254 }
255 return (0);
256}
257
JP Abgrall511eca32014-02-12 13:46:45 -0800258static int
259pcap_activate_nit(pcap_t *p)
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800260{
261 int fd;
262 struct sockaddr_nit snit;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800263
JP Abgrall511eca32014-02-12 13:46:45 -0800264 if (p->opt.rfmon) {
265 /*
266 * No monitor mode on SunOS 3.x or earlier (no
267 * Wi-Fi *devices* for the hardware that supported
268 * them!).
269 */
270 return (PCAP_ERROR_RFMON_NOTSUP);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800271 }
272
Haibo Huang165065a2018-07-23 17:26:52 -0700273 /*
274 * Turn a negative snapshot value (invalid), a snapshot value of
275 * 0 (unspecified), or a value bigger than the normal maximum
276 * value, into the maximum allowed value.
277 *
278 * If some application really *needs* a bigger snapshot
279 * length, we should just increase MAXIMUM_SNAPLEN.
280 */
281 if (p->snapshot <= 0 || p->snapshot > MAXIMUM_SNAPLEN)
282 p->snapshot = MAXIMUM_SNAPLEN;
283
JP Abgrall511eca32014-02-12 13:46:45 -0800284 if (p->snapshot < 96)
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800285 /*
286 * NIT requires a snapshot length of at least 96.
287 */
JP Abgrall511eca32014-02-12 13:46:45 -0800288 p->snapshot = 96;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800289
290 memset(p, 0, sizeof(*p));
291 p->fd = fd = socket(AF_NIT, SOCK_RAW, NITPROTO_RAW);
292 if (fd < 0) {
Haibo Huang165065a2018-07-23 17:26:52 -0700293 pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
294 errno, "socket");
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800295 goto bad;
296 }
297 snit.snit_family = AF_NIT;
Elliott Hughes965a4b52017-05-15 10:37:39 -0700298 (void)strncpy(snit.snit_ifname, p->opt.device, NITIFSIZ);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800299
300 if (bind(fd, (struct sockaddr *)&snit, sizeof(snit))) {
Elliott Hughes965a4b52017-05-15 10:37:39 -0700301 /*
302 * XXX - there's probably a particular bind error that
303 * means "there's no such device" and a particular bind
304 * error that means "that device doesn't support NIT";
305 * they might be the same error, if they both end up
306 * meaning "NIT doesn't know about that device".
307 */
Haibo Huang165065a2018-07-23 17:26:52 -0700308 pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
309 errno, "bind: %s", snit.snit_ifname);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800310 goto bad;
311 }
JP Abgrall511eca32014-02-12 13:46:45 -0800312 if (nit_setflags(p) < 0)
313 goto bad;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800314
315 /*
316 * NIT supports only ethernets.
317 */
318 p->linktype = DLT_EN10MB;
319
320 p->bufsize = BUFSPACE;
Elliott Hughes965a4b52017-05-15 10:37:39 -0700321 p->buffer = malloc(p->bufsize);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800322 if (p->buffer == NULL) {
Haibo Huang165065a2018-07-23 17:26:52 -0700323 pcap_fmt_errmsg_for_errno(p->errbuf, PCAP_ERRBUF_SIZE,
324 errno, "malloc");
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800325 goto bad;
326 }
327
328 /*
329 * "p->fd" is a socket, so "select()" should work on it.
330 */
331 p->selectable_fd = p->fd;
332
333 /*
334 * This is (presumably) a real Ethernet capture; give it a
335 * link-layer-type list with DLT_EN10MB and DLT_DOCSIS, so
336 * that an application can let you choose it, in case you're
337 * capturing DOCSIS traffic that a Cisco Cable Modem
338 * Termination System is putting out onto an Ethernet (it
339 * doesn't put an Ethernet header onto the wire, it puts raw
340 * DOCSIS frames out on the wire inside the low-level
341 * Ethernet framing).
342 */
343 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
344 /*
345 * If that fails, just leave the list empty.
346 */
347 if (p->dlt_list != NULL) {
348 p->dlt_list[0] = DLT_EN10MB;
349 p->dlt_list[1] = DLT_DOCSIS;
350 p->dlt_count = 2;
351 }
352
353 p->read_op = pcap_read_nit;
354 p->inject_op = pcap_inject_nit;
355 p->setfilter_op = install_bpf_program; /* no kernel filtering */
356 p->setdirection_op = NULL; /* Not implemented. */
357 p->set_datalink_op = NULL; /* can't change data link type */
358 p->getnonblock_op = pcap_getnonblock_fd;
359 p->setnonblock_op = pcap_setnonblock_fd;
360 p->stats_op = pcap_stats_nit;
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800361
JP Abgrall511eca32014-02-12 13:46:45 -0800362 return (0);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800363 bad:
JP Abgrall511eca32014-02-12 13:46:45 -0800364 pcap_cleanup_live_common(p);
365 return (PCAP_ERROR);
366}
367
368pcap_t *
Elliott Hughes965a4b52017-05-15 10:37:39 -0700369pcap_create_interface(const char *device _U_, char *ebuf)
JP Abgrall511eca32014-02-12 13:46:45 -0800370{
371 pcap_t *p;
372
Haibo Huangee759ce2021-01-05 21:34:29 -0800373 p = PCAP_CREATE_COMMON(ebuf, struct pcap_nit);
JP Abgrall511eca32014-02-12 13:46:45 -0800374 if (p == NULL)
375 return (NULL);
376
377 p->activate_op = pcap_activate_nit;
378 return (p);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800379}
380
Elliott Hughes965a4b52017-05-15 10:37:39 -0700381/*
382 * XXX - there's probably a particular bind error that means "that device
383 * doesn't support NIT"; if so, we should try a bind and use that.
384 */
385static int
386can_be_bound(const char *name _U_)
387{
388 return (1);
389}
390
Haibo Huang165065a2018-07-23 17:26:52 -0700391static int
392get_if_flags(const char *name _U_, bpf_u_int32 *flags _U_, char *errbuf _U_)
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800393{
Haibo Huang165065a2018-07-23 17:26:52 -0700394 /*
395 * Nothing we can do.
396 * XXX - is there a way to find out whether an adapter has
397 * something plugged into it?
398 */
399 return (0);
400}
401
402int
403pcap_platform_finddevs(pcap_if_list_t *devlistp, char *errbuf)
404{
405 return (pcap_findalldevs_interfaces(devlistp, errbuf, can_be_bound,
406 get_if_flags));
407}
408
409/*
410 * Libpcap version string.
411 */
412const char *
413pcap_lib_version(void)
414{
415 return (PCAP_VERSION_STRING);
The Android Open Source Project478ab6c2009-03-03 19:30:05 -0800416}