xref: /freebsd/libexec/rbootd/bpf.c (revision a6fe717c2a876105123214c05176cd74106fb94b)
1*8a16b7a1SPedro F. Giffuni /*-
2*8a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*8a16b7a1SPedro F. Giffuni  *
4ea022d16SRodney W. Grimes  * Copyright (c) 1988, 1992 The University of Utah and the Center
5ea022d16SRodney W. Grimes  *	for Software Science (CSS).
6ea022d16SRodney W. Grimes  * Copyright (c) 1992, 1993
7ea022d16SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
8ea022d16SRodney W. Grimes  *
9ea022d16SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
10ea022d16SRodney W. Grimes  * the Center for Software Science of the University of Utah Computer
11ea022d16SRodney W. Grimes  * Science Department.  CSS requests users of this software to return
12ea022d16SRodney W. Grimes  * to css-dist@cs.utah.edu any improvements that they make and grant
13ea022d16SRodney W. Grimes  * CSS redistribution rights.
14ea022d16SRodney W. Grimes  *
15ea022d16SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
16ea022d16SRodney W. Grimes  * modification, are permitted provided that the following conditions
17ea022d16SRodney W. Grimes  * are met:
18ea022d16SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
19ea022d16SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
20ea022d16SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
21ea022d16SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
22ea022d16SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
235efaea4cSChristian Brueffer  * 3. Neither the name of the University nor the names of its contributors
24ea022d16SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
25ea022d16SRodney W. Grimes  *    without specific prior written permission.
26ea022d16SRodney W. Grimes  *
27ea022d16SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28ea022d16SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29ea022d16SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30ea022d16SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31ea022d16SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32ea022d16SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33ea022d16SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34ea022d16SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35ea022d16SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36ea022d16SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37ea022d16SRodney W. Grimes  * SUCH DAMAGE.
38ea022d16SRodney W. Grimes  *
395c8709fdSSteve Price  * From: Utah Hdr: bpf.c 3.1 92/07/06
40ea022d16SRodney W. Grimes  * Author: Jeff Forys, University of Utah CSS
41ea022d16SRodney W. Grimes  */
42ea022d16SRodney W. Grimes 
43ea022d16SRodney W. Grimes #include <sys/param.h>
44ea022d16SRodney W. Grimes #include <sys/ioctl.h>
45ea022d16SRodney W. Grimes #include <sys/socket.h>
46628d2ac1SGarrett Wollman #include <sys/time.h>
47ea022d16SRodney W. Grimes 
48ea022d16SRodney W. Grimes #include <net/if.h>
49ea022d16SRodney W. Grimes #include <net/bpf.h>
50ea022d16SRodney W. Grimes 
51ea022d16SRodney W. Grimes #include <ctype.h>
52ea022d16SRodney W. Grimes #include <errno.h>
53ea022d16SRodney W. Grimes #include <fcntl.h>
54ea022d16SRodney W. Grimes #include <stdio.h>
55ea022d16SRodney W. Grimes #include <stdlib.h>
56ea022d16SRodney W. Grimes #include <string.h>
57ea022d16SRodney W. Grimes #include <syslog.h>
58ea022d16SRodney W. Grimes #include <unistd.h>
59ea022d16SRodney W. Grimes #include "defs.h"
60ea022d16SRodney W. Grimes #include "pathnames.h"
61ea022d16SRodney W. Grimes 
62ea022d16SRodney W. Grimes static int BpfFd = -1;
63ea022d16SRodney W. Grimes static unsigned BpfLen = 0;
645c8709fdSSteve Price static u_int8_t *BpfPkt = NULL;
65ea022d16SRodney W. Grimes 
66ea022d16SRodney W. Grimes /*
67ea022d16SRodney W. Grimes **  BpfOpen -- Open and initialize a BPF device.
68ea022d16SRodney W. Grimes **
69ea022d16SRodney W. Grimes **	Parameters:
70ea022d16SRodney W. Grimes **		None.
71ea022d16SRodney W. Grimes **
72ea022d16SRodney W. Grimes **	Returns:
73ea022d16SRodney W. Grimes **		File descriptor of opened BPF device (for select() etc).
74ea022d16SRodney W. Grimes **
75ea022d16SRodney W. Grimes **	Side Effects:
76ea022d16SRodney W. Grimes **		If an error is encountered, the program terminates here.
77ea022d16SRodney W. Grimes */
78ea022d16SRodney W. Grimes int
BpfOpen(void)79266ebcd3SWarner Losh BpfOpen(void)
80ea022d16SRodney W. Grimes {
81ea022d16SRodney W. Grimes 	struct ifreq ifr;
82ea022d16SRodney W. Grimes 	char bpfdev[32];
83ea022d16SRodney W. Grimes 	int n = 0;
84ea022d16SRodney W. Grimes 
85ea022d16SRodney W. Grimes 	/*
86ea022d16SRodney W. Grimes 	 *  Open the first available BPF device.
87ea022d16SRodney W. Grimes 	 */
88ea022d16SRodney W. Grimes 	do {
89ea022d16SRodney W. Grimes 		(void) sprintf(bpfdev, _PATH_BPF, n++);
90ea022d16SRodney W. Grimes 		BpfFd = open(bpfdev, O_RDWR);
91ea022d16SRodney W. Grimes 	} while (BpfFd < 0 && (errno == EBUSY || errno == EPERM));
92ea022d16SRodney W. Grimes 
93ea022d16SRodney W. Grimes 	if (BpfFd < 0) {
94ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: no available devices: %m");
95ea022d16SRodney W. Grimes 		Exit(0);
96ea022d16SRodney W. Grimes 	}
97ea022d16SRodney W. Grimes 
98ea022d16SRodney W. Grimes 	/*
99ea022d16SRodney W. Grimes 	 *  Set interface name for bpf device, get data link layer
100ea022d16SRodney W. Grimes 	 *  type and make sure it's type Ethernet.
101ea022d16SRodney W. Grimes 	 */
102ea022d16SRodney W. Grimes 	(void) strncpy(ifr.ifr_name, IntfName, sizeof(ifr.ifr_name));
103ea022d16SRodney W. Grimes 	if (ioctl(BpfFd, BIOCSETIF, (caddr_t)&ifr) < 0) {
104ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: ioctl(BIOCSETIF,%s): %m", IntfName);
105ea022d16SRodney W. Grimes 		Exit(0);
106ea022d16SRodney W. Grimes 	}
107ea022d16SRodney W. Grimes 
108ea022d16SRodney W. Grimes 	/*
109ea022d16SRodney W. Grimes 	 *  Make sure we are dealing with an Ethernet device.
110ea022d16SRodney W. Grimes 	 */
111ea022d16SRodney W. Grimes 	if (ioctl(BpfFd, BIOCGDLT, (caddr_t)&n) < 0) {
112ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: ioctl(BIOCGDLT): %m");
113ea022d16SRodney W. Grimes 		Exit(0);
114ea022d16SRodney W. Grimes 	}
115ea022d16SRodney W. Grimes 	if (n != DLT_EN10MB) {
116ea022d16SRodney W. Grimes 		syslog(LOG_ERR,"bpf: %s: data-link type %d unsupported",
117ea022d16SRodney W. Grimes 		       IntfName, n);
118ea022d16SRodney W. Grimes 		Exit(0);
119ea022d16SRodney W. Grimes 	}
120ea022d16SRodney W. Grimes 
121ea022d16SRodney W. Grimes 	/*
122ea022d16SRodney W. Grimes 	 *  On read(), return packets immediately (do not buffer them).
123ea022d16SRodney W. Grimes 	 */
124ea022d16SRodney W. Grimes 	n = 1;
125ea022d16SRodney W. Grimes 	if (ioctl(BpfFd, BIOCIMMEDIATE, (caddr_t)&n) < 0) {
126ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: ioctl(BIOCIMMEDIATE): %m");
127ea022d16SRodney W. Grimes 		Exit(0);
128ea022d16SRodney W. Grimes 	}
129ea022d16SRodney W. Grimes 
130ea022d16SRodney W. Grimes 	/*
131ea022d16SRodney W. Grimes 	 *  Try to enable the chip/driver's multicast address filter to
132ea022d16SRodney W. Grimes 	 *  grab our RMP address.  If this fails, try promiscuous mode.
133ea022d16SRodney W. Grimes 	 *  If this fails, there's no way we are going to get any RMP
134ea022d16SRodney W. Grimes 	 *  packets so just exit here.
135ea022d16SRodney W. Grimes 	 */
136ea022d16SRodney W. Grimes #ifdef MSG_EOR
137ea022d16SRodney W. Grimes 	ifr.ifr_addr.sa_len = RMP_ADDRLEN + 2;
138ea022d16SRodney W. Grimes #endif
139ea022d16SRodney W. Grimes 	ifr.ifr_addr.sa_family = AF_UNSPEC;
14011fe7d5eSSteve Price 	memmove((char *)&ifr.ifr_addr.sa_data[0], &RmpMcastAddr[0], RMP_ADDRLEN);
141ea022d16SRodney W. Grimes 	if (ioctl(BpfFd, BIOCPROMISC, (caddr_t)0) < 0) {
142ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: can't set promiscuous mode: %m");
143ea022d16SRodney W. Grimes 		Exit(0);
144ea022d16SRodney W. Grimes 	}
145ea022d16SRodney W. Grimes 
146ea022d16SRodney W. Grimes 	/*
147ea022d16SRodney W. Grimes 	 *  Ask BPF how much buffer space it requires and allocate one.
148ea022d16SRodney W. Grimes 	 */
149ea022d16SRodney W. Grimes 	if (ioctl(BpfFd, BIOCGBLEN, (caddr_t)&BpfLen) < 0) {
150ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: ioctl(BIOCGBLEN): %m");
151ea022d16SRodney W. Grimes 		Exit(0);
152ea022d16SRodney W. Grimes 	}
153ea022d16SRodney W. Grimes 	if (BpfPkt == NULL)
1545c8709fdSSteve Price 		BpfPkt = (u_int8_t *)malloc(BpfLen);
155ea022d16SRodney W. Grimes 
156ea022d16SRodney W. Grimes 	if (BpfPkt == NULL) {
157ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "bpf: out of memory (%u bytes for bpfpkt)",
158ea022d16SRodney W. Grimes 		       BpfLen);
159ea022d16SRodney W. Grimes 		Exit(0);
160ea022d16SRodney W. Grimes 	}
161ea022d16SRodney W. Grimes 
162ea022d16SRodney W. Grimes 	/*
163ea022d16SRodney W. Grimes 	 *  Write a little program to snarf RMP Boot packets and stuff
164ea022d16SRodney W. Grimes 	 *  it down BPF's throat (i.e. set up the packet filter).
165ea022d16SRodney W. Grimes 	 */
166ea022d16SRodney W. Grimes 	{
167ea022d16SRodney W. Grimes #define	RMP	((struct rmp_packet *)0)
168ea022d16SRodney W. Grimes 		static struct bpf_insn bpf_insn[] = {
169ea022d16SRodney W. Grimes 		    { BPF_LD|BPF_B|BPF_ABS,  0, 0, (long)&RMP->hp_llc.dsap },
170ea022d16SRodney W. Grimes 		    { BPF_JMP|BPF_JEQ|BPF_K, 0, 5, IEEE_DSAP_HP },
171ea022d16SRodney W. Grimes 		    { BPF_LD|BPF_H|BPF_ABS,  0, 0, (long)&RMP->hp_llc.cntrl },
172ea022d16SRodney W. Grimes 		    { BPF_JMP|BPF_JEQ|BPF_K, 0, 3, IEEE_CNTL_HP },
173ea022d16SRodney W. Grimes 		    { BPF_LD|BPF_H|BPF_ABS,  0, 0, (long)&RMP->hp_llc.dxsap },
174ea022d16SRodney W. Grimes 		    { BPF_JMP|BPF_JEQ|BPF_K, 0, 1, HPEXT_DXSAP },
175ea022d16SRodney W. Grimes 		    { BPF_RET|BPF_K,         0, 0, RMP_MAX_PACKET },
176ea022d16SRodney W. Grimes 		    { BPF_RET|BPF_K,         0, 0, 0x0 }
177ea022d16SRodney W. Grimes 		};
178ea022d16SRodney W. Grimes #undef	RMP
179ea022d16SRodney W. Grimes 		static struct bpf_program bpf_pgm = {
180ea022d16SRodney W. Grimes 		    sizeof(bpf_insn)/sizeof(bpf_insn[0]), bpf_insn
181ea022d16SRodney W. Grimes 		};
182ea022d16SRodney W. Grimes 
183ea022d16SRodney W. Grimes 		if (ioctl(BpfFd, BIOCSETF, (caddr_t)&bpf_pgm) < 0) {
184ea022d16SRodney W. Grimes 			syslog(LOG_ERR, "bpf: ioctl(BIOCSETF): %m");
185ea022d16SRodney W. Grimes 			Exit(0);
186ea022d16SRodney W. Grimes 		}
187ea022d16SRodney W. Grimes 	}
188ea022d16SRodney W. Grimes 
189ea022d16SRodney W. Grimes 	return(BpfFd);
190ea022d16SRodney W. Grimes }
191ea022d16SRodney W. Grimes 
192ea022d16SRodney W. Grimes /*
193ea022d16SRodney W. Grimes **  BPF GetIntfName -- Return the name of a network interface attached to
194ea022d16SRodney W. Grimes **		the system, or 0 if none can be found.  The interface
195ea022d16SRodney W. Grimes **		must be configured up; the lowest unit number is
196ea022d16SRodney W. Grimes **		preferred; loopback is ignored.
197ea022d16SRodney W. Grimes **
198ea022d16SRodney W. Grimes **	Parameters:
199ea022d16SRodney W. Grimes **		errmsg - if no network interface found, *errmsg explains why.
200ea022d16SRodney W. Grimes **
201ea022d16SRodney W. Grimes **	Returns:
202ea022d16SRodney W. Grimes **		A (static) pointer to interface name, or NULL on error.
203ea022d16SRodney W. Grimes **
204ea022d16SRodney W. Grimes **	Side Effects:
205ea022d16SRodney W. Grimes **		None.
206ea022d16SRodney W. Grimes */
207ea022d16SRodney W. Grimes char *
BpfGetIntfName(char ** errmsg)208266ebcd3SWarner Losh BpfGetIntfName(char **errmsg)
209ea022d16SRodney W. Grimes {
210ea022d16SRodney W. Grimes 	struct ifreq ibuf[8], *ifrp, *ifend, *mp;
211ea022d16SRodney W. Grimes 	struct ifconf ifc;
212ea022d16SRodney W. Grimes 	int fd;
213ea022d16SRodney W. Grimes 	int minunit, n;
214ea022d16SRodney W. Grimes 	char *cp;
215ea022d16SRodney W. Grimes 	static char device[sizeof(ifrp->ifr_name)];
216ea022d16SRodney W. Grimes 	static char errbuf[128] = "No Error!";
217ea022d16SRodney W. Grimes 
218ea022d16SRodney W. Grimes 	if (errmsg != NULL)
219ea022d16SRodney W. Grimes 		*errmsg = errbuf;
220ea022d16SRodney W. Grimes 
221ea022d16SRodney W. Grimes 	if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
222ea022d16SRodney W. Grimes 		(void) strcpy(errbuf, "bpf: socket: %m");
223ea022d16SRodney W. Grimes 		return(NULL);
224ea022d16SRodney W. Grimes 	}
225ea022d16SRodney W. Grimes 	ifc.ifc_len = sizeof ibuf;
226ea022d16SRodney W. Grimes 	ifc.ifc_buf = (caddr_t)ibuf;
227ea022d16SRodney W. Grimes 
228ea022d16SRodney W. Grimes 	if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0 ||
229ea022d16SRodney W. Grimes 	    ifc.ifc_len < sizeof(struct ifreq)) {
230ea022d16SRodney W. Grimes 		(void) strcpy(errbuf, "bpf: ioctl(SIOCGIFCONF): %m");
231ea022d16SRodney W. Grimes 		return(NULL);
232ea022d16SRodney W. Grimes 	}
233ea022d16SRodney W. Grimes 	ifrp = ibuf;
234ea022d16SRodney W. Grimes 	ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len);
235ea022d16SRodney W. Grimes 
23646266845SPedro F. Giffuni 	mp = NULL;
237ea022d16SRodney W. Grimes 	minunit = 666;
238ea022d16SRodney W. Grimes 	for (; ifrp < ifend; ++ifrp) {
239ea022d16SRodney W. Grimes 		if (ioctl(fd, SIOCGIFFLAGS, (char *)ifrp) < 0) {
240ea022d16SRodney W. Grimes 			(void) strcpy(errbuf, "bpf: ioctl(SIOCGIFFLAGS): %m");
241ea022d16SRodney W. Grimes 			return(NULL);
242ea022d16SRodney W. Grimes 		}
243ea022d16SRodney W. Grimes 
244ea022d16SRodney W. Grimes 		/*
245ea022d16SRodney W. Grimes 		 *  If interface is down or this is the loopback interface,
246ea022d16SRodney W. Grimes 		 *  ignore it.
247ea022d16SRodney W. Grimes 		 */
248ea022d16SRodney W. Grimes 		if ((ifrp->ifr_flags & IFF_UP) == 0 ||
249ea022d16SRodney W. Grimes #ifdef IFF_LOOPBACK
250ea022d16SRodney W. Grimes 		    (ifrp->ifr_flags & IFF_LOOPBACK))
251ea022d16SRodney W. Grimes #else
252ea022d16SRodney W. Grimes 		    (strcmp(ifrp->ifr_name, "lo0") == 0))
253ea022d16SRodney W. Grimes #endif
254ea022d16SRodney W. Grimes 			continue;
255ea022d16SRodney W. Grimes 
256ea022d16SRodney W. Grimes 		for (cp = ifrp->ifr_name; !isdigit(*cp); ++cp)
257ea022d16SRodney W. Grimes 			;
258ea022d16SRodney W. Grimes 		n = atoi(cp);
259ea022d16SRodney W. Grimes 		if (n < minunit) {
260ea022d16SRodney W. Grimes 			minunit = n;
261ea022d16SRodney W. Grimes 			mp = ifrp;
262ea022d16SRodney W. Grimes 		}
263ea022d16SRodney W. Grimes 	}
264ea022d16SRodney W. Grimes 
265ea022d16SRodney W. Grimes 	(void) close(fd);
26646266845SPedro F. Giffuni 	if (mp == NULL) {
267ea022d16SRodney W. Grimes 		(void) strcpy(errbuf, "bpf: no interfaces found");
268ea022d16SRodney W. Grimes 		return(NULL);
269ea022d16SRodney W. Grimes 	}
270ea022d16SRodney W. Grimes 
271ea022d16SRodney W. Grimes 	(void) strcpy(device, mp->ifr_name);
272ea022d16SRodney W. Grimes 	return(device);
273ea022d16SRodney W. Grimes }
274ea022d16SRodney W. Grimes 
275ea022d16SRodney W. Grimes /*
276ea022d16SRodney W. Grimes **  BpfRead -- Read packets from a BPF device and fill in `rconn'.
277ea022d16SRodney W. Grimes **
278ea022d16SRodney W. Grimes **	Parameters:
279ea022d16SRodney W. Grimes **		rconn - filled in with next packet.
280ea022d16SRodney W. Grimes **		doread - is True if we can issue a read() syscall.
281ea022d16SRodney W. Grimes **
282ea022d16SRodney W. Grimes **	Returns:
283ea022d16SRodney W. Grimes **		True if `rconn' contains a new packet, False otherwise.
284ea022d16SRodney W. Grimes **
285ea022d16SRodney W. Grimes **	Side Effects:
286ea022d16SRodney W. Grimes **		None.
287ea022d16SRodney W. Grimes */
288ea022d16SRodney W. Grimes int
BpfRead(RMPCONN * rconn,int doread)289266ebcd3SWarner Losh BpfRead(RMPCONN *rconn, int doread)
290ea022d16SRodney W. Grimes {
29111fe7d5eSSteve Price 	int datlen, caplen, hdrlen;
2925c8709fdSSteve Price 	static u_int8_t *bp = NULL, *ep = NULL;
293ea022d16SRodney W. Grimes 	int cc;
294ea022d16SRodney W. Grimes 
295ea022d16SRodney W. Grimes 	/*
296ea022d16SRodney W. Grimes 	 *  The read() may block, or it may return one or more packets.
297ea022d16SRodney W. Grimes 	 *  We let the caller decide whether or not we can issue a read().
298ea022d16SRodney W. Grimes 	 */
299ea022d16SRodney W. Grimes 	if (doread) {
300ea022d16SRodney W. Grimes 		if ((cc = read(BpfFd, (char *)BpfPkt, (int)BpfLen)) < 0) {
301ea022d16SRodney W. Grimes 			syslog(LOG_ERR, "bpf: read: %m");
302ea022d16SRodney W. Grimes 			return(0);
303ea022d16SRodney W. Grimes 		} else {
304ea022d16SRodney W. Grimes 			bp = BpfPkt;
305ea022d16SRodney W. Grimes 			ep = BpfPkt + cc;
306ea022d16SRodney W. Grimes 		}
307ea022d16SRodney W. Grimes 	}
308ea022d16SRodney W. Grimes 
309ea022d16SRodney W. Grimes #define bhp ((struct bpf_hdr *)bp)
310ea022d16SRodney W. Grimes 	/*
311ea022d16SRodney W. Grimes 	 *  If there is a new packet in the buffer, stuff it into `rconn'
312ea022d16SRodney W. Grimes 	 *  and return a success indication.
313ea022d16SRodney W. Grimes 	 */
314ea022d16SRodney W. Grimes 	if (bp < ep) {
315ea022d16SRodney W. Grimes 		datlen = bhp->bh_datalen;
316ea022d16SRodney W. Grimes 		caplen = bhp->bh_caplen;
317ea022d16SRodney W. Grimes 		hdrlen = bhp->bh_hdrlen;
318ea022d16SRodney W. Grimes 
319ea022d16SRodney W. Grimes 		if (caplen != datlen)
320ea022d16SRodney W. Grimes 			syslog(LOG_ERR,
321ea022d16SRodney W. Grimes 			       "bpf: short packet dropped (%d of %d bytes)",
322ea022d16SRodney W. Grimes 			       caplen, datlen);
323ea022d16SRodney W. Grimes 		else if (caplen > sizeof(struct rmp_packet))
324ea022d16SRodney W. Grimes 			syslog(LOG_ERR, "bpf: large packet dropped (%d bytes)",
325ea022d16SRodney W. Grimes 			       caplen);
326ea022d16SRodney W. Grimes 		else {
327ea022d16SRodney W. Grimes 			rconn->rmplen = caplen;
32811fe7d5eSSteve Price 			memmove((char *)&rconn->tstamp, (char *)&bhp->bh_tstamp,
329ea022d16SRodney W. Grimes 			      sizeof(struct timeval));
33011fe7d5eSSteve Price 			memmove((char *)&rconn->rmp, (char *)bp + hdrlen, caplen);
331ea022d16SRodney W. Grimes 		}
332ea022d16SRodney W. Grimes 		bp += BPF_WORDALIGN(caplen + hdrlen);
333ea022d16SRodney W. Grimes 		return(1);
334ea022d16SRodney W. Grimes 	}
335ea022d16SRodney W. Grimes #undef bhp
336ea022d16SRodney W. Grimes 
337ea022d16SRodney W. Grimes 	return(0);
338ea022d16SRodney W. Grimes }
339ea022d16SRodney W. Grimes 
340ea022d16SRodney W. Grimes /*
341ea022d16SRodney W. Grimes **  BpfWrite -- Write packet to BPF device.
342ea022d16SRodney W. Grimes **
343ea022d16SRodney W. Grimes **	Parameters:
344ea022d16SRodney W. Grimes **		rconn - packet to send.
345ea022d16SRodney W. Grimes **
346ea022d16SRodney W. Grimes **	Returns:
347ea022d16SRodney W. Grimes **		True if write succeeded, False otherwise.
348ea022d16SRodney W. Grimes **
349ea022d16SRodney W. Grimes **	Side Effects:
350ea022d16SRodney W. Grimes **		None.
351ea022d16SRodney W. Grimes */
352ea022d16SRodney W. Grimes int
BpfWrite(RMPCONN * rconn)353266ebcd3SWarner Losh BpfWrite(RMPCONN *rconn)
354ea022d16SRodney W. Grimes {
355ea022d16SRodney W. Grimes 	if (write(BpfFd, (char *)&rconn->rmp, rconn->rmplen) < 0) {
356ea022d16SRodney W. Grimes 		syslog(LOG_ERR, "write: %s: %m", EnetStr(rconn));
357ea022d16SRodney W. Grimes 		return(0);
358ea022d16SRodney W. Grimes 	}
359ea022d16SRodney W. Grimes 
360ea022d16SRodney W. Grimes 	return(1);
361ea022d16SRodney W. Grimes }
362ea022d16SRodney W. Grimes 
363ea022d16SRodney W. Grimes /*
364ea022d16SRodney W. Grimes **  BpfClose -- Close a BPF device.
365ea022d16SRodney W. Grimes **
366ea022d16SRodney W. Grimes **	Parameters:
367ea022d16SRodney W. Grimes **		None.
368ea022d16SRodney W. Grimes **
369ea022d16SRodney W. Grimes **	Returns:
370ea022d16SRodney W. Grimes **		Nothing.
371ea022d16SRodney W. Grimes **
372ea022d16SRodney W. Grimes **	Side Effects:
373ea022d16SRodney W. Grimes **		None.
374ea022d16SRodney W. Grimes */
375ea022d16SRodney W. Grimes void
BpfClose(void)376266ebcd3SWarner Losh BpfClose(void)
377ea022d16SRodney W. Grimes {
378ea022d16SRodney W. Grimes 	struct ifreq ifr;
379ea022d16SRodney W. Grimes 
380ea022d16SRodney W. Grimes 	if (BpfPkt != NULL) {
381ea022d16SRodney W. Grimes 		free((char *)BpfPkt);
382ea022d16SRodney W. Grimes 		BpfPkt = NULL;
383ea022d16SRodney W. Grimes 	}
384ea022d16SRodney W. Grimes 
385ea022d16SRodney W. Grimes 	if (BpfFd == -1)
386ea022d16SRodney W. Grimes 		return;
387ea022d16SRodney W. Grimes 
388ea022d16SRodney W. Grimes #ifdef MSG_EOR
389ea022d16SRodney W. Grimes 	ifr.ifr_addr.sa_len = RMP_ADDRLEN + 2;
390ea022d16SRodney W. Grimes #endif
391ea022d16SRodney W. Grimes 	ifr.ifr_addr.sa_family = AF_UNSPEC;
39211fe7d5eSSteve Price 	memmove((char *)&ifr.ifr_addr.sa_data[0], &RmpMcastAddr[0], RMP_ADDRLEN);
393ea022d16SRodney W. Grimes 	if (ioctl(BpfFd, SIOCDELMULTI, (caddr_t)&ifr) < 0)
394ea022d16SRodney W. Grimes 		(void) ioctl(BpfFd, BIOCPROMISC, (caddr_t)0);
395ea022d16SRodney W. Grimes 
396ea022d16SRodney W. Grimes 	(void) close(BpfFd);
397ea022d16SRodney W. Grimes 	BpfFd = -1;
398ea022d16SRodney W. Grimes }
399