rarpd.c revision 1.25 1 1.25 mrg /* $NetBSD: rarpd.c,v 1.25 1998/04/23 02:48:33 mrg Exp $ */
2 1.9 thorpej
3 1.1 deraadt /*
4 1.1 deraadt * Copyright (c) 1990 The Regents of the University of California.
5 1.1 deraadt * All rights reserved.
6 1.1 deraadt *
7 1.1 deraadt * Redistribution and use in source and binary forms, with or without
8 1.1 deraadt * modification, are permitted provided that: (1) source code distributions
9 1.1 deraadt * retain the above copyright notice and this paragraph in its entirety, (2)
10 1.1 deraadt * distributions including binary code include the above copyright notice and
11 1.1 deraadt * this paragraph in its entirety in the documentation or other materials
12 1.1 deraadt * provided with the distribution, and (3) all advertising materials mentioning
13 1.1 deraadt * features or use of this software display the following acknowledgement:
14 1.1 deraadt * ``This product includes software developed by the University of California,
15 1.1 deraadt * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
16 1.1 deraadt * the University nor the names of its contributors may be used to endorse
17 1.1 deraadt * or promote products derived from this software without specific prior
18 1.1 deraadt * written permission.
19 1.1 deraadt * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
20 1.1 deraadt * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
21 1.1 deraadt * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 1.1 deraadt */
23 1.19 lukem #include <sys/cdefs.h>
24 1.1 deraadt #ifndef lint
25 1.19 lukem __COPYRIGHT(
26 1.19 lukem "@(#) Copyright (c) 1990 The Regents of the University of California.\n\
27 1.19 lukem All rights reserved.\n");
28 1.19 lukem #endif /* not lint */
29 1.1 deraadt
30 1.1 deraadt #ifndef lint
31 1.25 mrg __RCSID("$NetBSD: rarpd.c,v 1.25 1998/04/23 02:48:33 mrg Exp $");
32 1.1 deraadt #endif
33 1.1 deraadt
34 1.1 deraadt
35 1.1 deraadt /*
36 1.1 deraadt * rarpd - Reverse ARP Daemon
37 1.1 deraadt *
38 1.1 deraadt * Usage: rarpd -a [ -d -f ]
39 1.1 deraadt * rarpd [ -d -f ] interface
40 1.1 deraadt */
41 1.1 deraadt
42 1.1 deraadt #include <sys/types.h>
43 1.21 lukem #include <sys/errno.h>
44 1.21 lukem #include <sys/file.h>
45 1.1 deraadt #include <sys/time.h>
46 1.1 deraadt #include <sys/socket.h>
47 1.1 deraadt #include <sys/ioctl.h>
48 1.21 lukem
49 1.21 lukem #include <net/bpf.h>
50 1.1 deraadt #include <net/if.h>
51 1.7 mycroft #include <net/if_dl.h>
52 1.16 is #ifdef __NetBSD__
53 1.16 is #include <net/if_ether.h>
54 1.16 is #endif
55 1.7 mycroft #include <net/if_types.h>
56 1.1 deraadt #include <netinet/in.h>
57 1.16 is #ifdef __NetBSD__
58 1.16 is #include <netinet/if_inarp.h>
59 1.16 is #else
60 1.1 deraadt #include <netinet/if_ether.h>
61 1.16 is #endif
62 1.21 lukem
63 1.1 deraadt #include <arpa/inet.h>
64 1.21 lukem
65 1.1 deraadt #include <dirent.h>
66 1.21 lukem #include <netdb.h>
67 1.21 lukem #include <stdio.h>
68 1.21 lukem #include <stdlib.h>
69 1.21 lukem #include <string.h>
70 1.21 lukem #include <syslog.h>
71 1.21 lukem #include <unistd.h>
72 1.1 deraadt
73 1.25 mrg #include "pathnames.h"
74 1.25 mrg
75 1.1 deraadt #define FATAL 1 /* fatal error occurred */
76 1.1 deraadt #define NONFATAL 0 /* non fatal error occurred */
77 1.1 deraadt
78 1.1 deraadt /*
79 1.1 deraadt * The structure for each interface.
80 1.1 deraadt */
81 1.1 deraadt struct if_info {
82 1.1 deraadt int ii_fd; /* BPF file descriptor */
83 1.1 deraadt u_char ii_eaddr[6]; /* Ethernet address of this interface */
84 1.1 deraadt u_long ii_ipaddr; /* IP address of this interface */
85 1.1 deraadt u_long ii_netmask; /* subnet or net mask */
86 1.1 deraadt struct if_info *ii_next;
87 1.1 deraadt };
88 1.1 deraadt /*
89 1.1 deraadt * The list of all interfaces that are being listened to. rarp_loop()
90 1.1 deraadt * "selects" on the descriptors in this list.
91 1.1 deraadt */
92 1.1 deraadt struct if_info *iflist;
93 1.1 deraadt
94 1.19 lukem u_int32_t choose_ipaddr __P((u_int32_t **, u_int32_t, u_int32_t));
95 1.19 lukem void debug __P((const char *,...));
96 1.19 lukem void init_all __P((void));
97 1.19 lukem void init_one __P((char *));
98 1.19 lukem u_long ipaddrtonetmask __P((u_long));
99 1.19 lukem void lookup_eaddr __P((char *, u_char *));
100 1.19 lukem void lookup_ipaddr __P((char *, u_long *, u_long *));
101 1.19 lukem int main __P((int, char **));
102 1.19 lukem void rarp_loop __P((void));
103 1.19 lukem int rarp_open __P((char *));
104 1.19 lukem void rarp_process __P((struct if_info *, u_char *));
105 1.24 mrg void rarp_reply __P((struct if_info *, struct ether_header *, u_long,
106 1.24 mrg struct hostent *));
107 1.19 lukem void rarperr __P((int, const char *,...));
108 1.22 is
109 1.22 is #if defined(__NetBSD__)
110 1.22 is #include "mkarp.h"
111 1.22 is #else
112 1.22 is void update_arptab __P((u_char *, u_long));
113 1.22 is #endif
114 1.22 is
115 1.19 lukem void usage __P((void));
116 1.19 lukem
117 1.19 lukem static int bpf_open __P((void));
118 1.19 lukem static int rarp_check __P((u_char *, int));
119 1.1 deraadt
120 1.8 thorpej #ifdef REQUIRE_TFTPBOOT
121 1.19 lukem int rarp_bootable __P((u_long));
122 1.8 thorpej #endif
123 1.8 thorpej
124 1.1 deraadt int aflag = 0; /* listen on "all" interfaces */
125 1.1 deraadt int dflag = 0; /* print debugging messages */
126 1.1 deraadt int fflag = 0; /* don't fork */
127 1.24 mrg int lflag = 0; /* log all replies */
128 1.1 deraadt
129 1.12 jtc int
130 1.1 deraadt main(argc, argv)
131 1.1 deraadt int argc;
132 1.1 deraadt char **argv;
133 1.1 deraadt {
134 1.19 lukem extern char *__progname;
135 1.19 lukem
136 1.1 deraadt int op, pid, devnull, f;
137 1.19 lukem char *ifname, *hostname;
138 1.1 deraadt
139 1.1 deraadt /* All error reporting is done through syslogs. */
140 1.19 lukem openlog(__progname, LOG_PID, LOG_DAEMON);
141 1.1 deraadt
142 1.1 deraadt opterr = 0;
143 1.24 mrg while ((op = getopt(argc, argv, "adfl")) != -1) {
144 1.1 deraadt switch (op) {
145 1.1 deraadt case 'a':
146 1.1 deraadt ++aflag;
147 1.1 deraadt break;
148 1.1 deraadt
149 1.1 deraadt case 'd':
150 1.1 deraadt ++dflag;
151 1.1 deraadt break;
152 1.1 deraadt
153 1.1 deraadt case 'f':
154 1.1 deraadt ++fflag;
155 1.1 deraadt break;
156 1.1 deraadt
157 1.24 mrg case 'l':
158 1.24 mrg ++lflag;
159 1.24 mrg break;
160 1.24 mrg
161 1.1 deraadt default:
162 1.1 deraadt usage();
163 1.1 deraadt /* NOTREACHED */
164 1.1 deraadt }
165 1.1 deraadt }
166 1.1 deraadt ifname = argv[optind++];
167 1.1 deraadt hostname = ifname ? argv[optind] : 0;
168 1.1 deraadt if ((aflag && ifname) || (!aflag && ifname == 0))
169 1.1 deraadt usage();
170 1.1 deraadt
171 1.1 deraadt if (aflag)
172 1.1 deraadt init_all();
173 1.1 deraadt else
174 1.1 deraadt init_one(ifname);
175 1.1 deraadt
176 1.1 deraadt if ((!fflag) && (!dflag)) {
177 1.25 mrg FILE *fp;
178 1.25 mrg
179 1.1 deraadt pid = fork();
180 1.1 deraadt if (pid > 0)
181 1.1 deraadt /* Parent exits, leaving child in background. */
182 1.1 deraadt exit(0);
183 1.1 deraadt else
184 1.1 deraadt if (pid == -1) {
185 1.19 lukem rarperr(FATAL, "cannot fork");
186 1.1 deraadt /* NOTREACHED */
187 1.1 deraadt }
188 1.25 mrg
189 1.25 mrg /* write pid file */
190 1.25 mrg if ((fp = fopen(_PATH_RARPDPID, "w")) != NULL) {
191 1.25 mrg fprintf(fp, "%u\n", getpid());
192 1.25 mrg (void)fclose(fp);
193 1.25 mrg }
194 1.25 mrg
195 1.1 deraadt /* Fade into the background */
196 1.1 deraadt f = open("/dev/tty", O_RDWR);
197 1.1 deraadt if (f >= 0) {
198 1.1 deraadt if (ioctl(f, TIOCNOTTY, 0) < 0) {
199 1.19 lukem rarperr(FATAL,
200 1.19 lukem "TIOCNOTTY: %s", strerror(errno));
201 1.1 deraadt /* NOTREACHED */
202 1.1 deraadt }
203 1.1 deraadt (void) close(f);
204 1.1 deraadt }
205 1.1 deraadt (void) chdir("/");
206 1.1 deraadt (void) setpgrp(0, getpid());
207 1.1 deraadt devnull = open("/dev/null", O_RDWR);
208 1.1 deraadt if (devnull >= 0) {
209 1.1 deraadt (void) dup2(devnull, 0);
210 1.1 deraadt (void) dup2(devnull, 1);
211 1.1 deraadt (void) dup2(devnull, 2);
212 1.1 deraadt if (devnull > 2)
213 1.1 deraadt (void) close(devnull);
214 1.1 deraadt }
215 1.1 deraadt }
216 1.1 deraadt rarp_loop();
217 1.19 lukem /* NOTREACHED */
218 1.19 lukem return (0);
219 1.1 deraadt }
220 1.19 lukem
221 1.1 deraadt /*
222 1.1 deraadt * Add 'ifname' to the interface list. Lookup its IP address and network
223 1.1 deraadt * mask and Ethernet address, and open a BPF file for it.
224 1.1 deraadt */
225 1.1 deraadt void
226 1.1 deraadt init_one(ifname)
227 1.1 deraadt char *ifname;
228 1.1 deraadt {
229 1.1 deraadt struct if_info *p;
230 1.23 fair int fd;
231 1.23 fair
232 1.23 fair fd = rarp_open(ifname);
233 1.23 fair if (fd < 0)
234 1.23 fair return;
235 1.1 deraadt
236 1.7 mycroft p = (struct if_info *)malloc(sizeof(*p));
237 1.1 deraadt if (p == 0) {
238 1.19 lukem rarperr(FATAL, "malloc: %s", strerror(errno));
239 1.1 deraadt /* NOTREACHED */
240 1.1 deraadt }
241 1.1 deraadt p->ii_next = iflist;
242 1.1 deraadt iflist = p;
243 1.1 deraadt
244 1.23 fair p->ii_fd = fd;
245 1.1 deraadt lookup_eaddr(ifname, p->ii_eaddr);
246 1.1 deraadt lookup_ipaddr(ifname, &p->ii_ipaddr, &p->ii_netmask);
247 1.1 deraadt }
248 1.19 lukem
249 1.1 deraadt /*
250 1.1 deraadt * Initialize all "candidate" interfaces that are in the system
251 1.1 deraadt * configuration list. A "candidate" is up, not loopback and not
252 1.1 deraadt * point to point.
253 1.1 deraadt */
254 1.1 deraadt void
255 1.1 deraadt init_all()
256 1.1 deraadt {
257 1.7 mycroft char inbuf[8192];
258 1.1 deraadt struct ifconf ifc;
259 1.10 hpeyerl struct ifreq ifreq, *ifr;
260 1.7 mycroft int fd;
261 1.7 mycroft int i, len;
262 1.1 deraadt
263 1.1 deraadt if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
264 1.19 lukem rarperr(FATAL, "socket: %s", strerror(errno));
265 1.1 deraadt /* NOTREACHED */
266 1.1 deraadt }
267 1.7 mycroft
268 1.7 mycroft ifc.ifc_len = sizeof(inbuf);
269 1.7 mycroft ifc.ifc_buf = inbuf;
270 1.7 mycroft if (ioctl(fd, SIOCGIFCONF, (caddr_t)&ifc) < 0 ||
271 1.1 deraadt ifc.ifc_len < sizeof(struct ifreq)) {
272 1.19 lukem rarperr(FATAL, "init_all: SIOCGIFCONF: %s", strerror(errno));
273 1.1 deraadt /* NOTREACHED */
274 1.1 deraadt }
275 1.7 mycroft ifr = ifc.ifc_req;
276 1.10 hpeyerl ifreq.ifr_name[0] = '\0';
277 1.7 mycroft for (i = 0; i < ifc.ifc_len;
278 1.7 mycroft i += len, ifr = (struct ifreq *)((caddr_t)ifr + len)) {
279 1.7 mycroft len = sizeof(ifr->ifr_name) + ifr->ifr_addr.sa_len;
280 1.10 hpeyerl if (!strncmp(ifreq.ifr_name, ifr->ifr_name, sizeof(ifr->ifr_name)))
281 1.10 hpeyerl continue;
282 1.10 hpeyerl ifreq = *ifr;
283 1.7 mycroft if (ioctl(fd, SIOCGIFFLAGS, (caddr_t)ifr) < 0) {
284 1.19 lukem rarperr(FATAL, "init_all: SIOCGIFFLAGS: %s",
285 1.7 mycroft strerror(errno));
286 1.1 deraadt /* NOTREACHED */
287 1.1 deraadt }
288 1.7 mycroft if ((ifr->ifr_flags &
289 1.7 mycroft (IFF_UP | IFF_LOOPBACK | IFF_POINTOPOINT)) != IFF_UP)
290 1.1 deraadt continue;
291 1.7 mycroft init_one(ifr->ifr_name);
292 1.1 deraadt }
293 1.1 deraadt (void) close(fd);
294 1.1 deraadt }
295 1.1 deraadt
296 1.1 deraadt void
297 1.1 deraadt usage()
298 1.1 deraadt {
299 1.1 deraadt (void) fprintf(stderr, "usage: rarpd -a [ -d -f ]\n");
300 1.1 deraadt (void) fprintf(stderr, " rarpd [ -d -f ] interface\n");
301 1.1 deraadt exit(1);
302 1.1 deraadt }
303 1.1 deraadt
304 1.1 deraadt static int
305 1.1 deraadt bpf_open()
306 1.1 deraadt {
307 1.1 deraadt int fd;
308 1.1 deraadt int n = 0;
309 1.1 deraadt char device[sizeof "/dev/bpf000"];
310 1.1 deraadt
311 1.1 deraadt /* Go through all the minors and find one that isn't in use. */
312 1.1 deraadt do {
313 1.1 deraadt (void) sprintf(device, "/dev/bpf%d", n++);
314 1.1 deraadt fd = open(device, O_RDWR);
315 1.1 deraadt } while (fd < 0 && errno == EBUSY);
316 1.1 deraadt
317 1.1 deraadt if (fd < 0) {
318 1.19 lukem rarperr(FATAL, "%s: %s", device, strerror(errno));
319 1.1 deraadt /* NOTREACHED */
320 1.1 deraadt }
321 1.1 deraadt return fd;
322 1.1 deraadt }
323 1.1 deraadt /*
324 1.1 deraadt * Open a BPF file and attach it to the interface named 'device'.
325 1.1 deraadt * Set immediate mode, and set a filter that accepts only RARP requests.
326 1.1 deraadt */
327 1.1 deraadt int
328 1.1 deraadt rarp_open(device)
329 1.1 deraadt char *device;
330 1.1 deraadt {
331 1.1 deraadt int fd;
332 1.1 deraadt struct ifreq ifr;
333 1.1 deraadt u_int dlt;
334 1.1 deraadt int immediate;
335 1.1 deraadt
336 1.1 deraadt static struct bpf_insn insns[] = {
337 1.1 deraadt BPF_STMT(BPF_LD | BPF_H | BPF_ABS, 12),
338 1.1 deraadt BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, ETHERTYPE_REVARP, 0, 3),
339 1.1 deraadt BPF_STMT(BPF_LD | BPF_H | BPF_ABS, 20),
340 1.6 cgd BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, ARPOP_REVREQUEST, 0, 1),
341 1.16 is BPF_STMT(BPF_RET | BPF_K,
342 1.16 is sizeof(struct arphdr) +
343 1.16 is 2 * ETHER_ADDR_LEN + 2 * sizeof(struct in_addr) +
344 1.1 deraadt sizeof(struct ether_header)),
345 1.1 deraadt BPF_STMT(BPF_RET | BPF_K, 0),
346 1.1 deraadt };
347 1.1 deraadt static struct bpf_program filter = {
348 1.1 deraadt sizeof insns / sizeof(insns[0]),
349 1.1 deraadt insns
350 1.1 deraadt };
351 1.1 deraadt
352 1.1 deraadt fd = bpf_open();
353 1.1 deraadt
354 1.1 deraadt /* Set immediate mode so packets are processed as they arrive. */
355 1.1 deraadt immediate = 1;
356 1.1 deraadt if (ioctl(fd, BIOCIMMEDIATE, &immediate) < 0) {
357 1.19 lukem rarperr(FATAL, "BIOCIMMEDIATE: %s", strerror(errno));
358 1.1 deraadt /* NOTREACHED */
359 1.1 deraadt }
360 1.1 deraadt (void) strncpy(ifr.ifr_name, device, sizeof ifr.ifr_name);
361 1.1 deraadt if (ioctl(fd, BIOCSETIF, (caddr_t) & ifr) < 0) {
362 1.23 fair if (aflag) { /* for -a skip non-ethernet interfaces */
363 1.23 fair close(fd);
364 1.23 fair return(-1);
365 1.23 fair }
366 1.19 lukem rarperr(FATAL, "BIOCSETIF: %s", strerror(errno));
367 1.1 deraadt /* NOTREACHED */
368 1.1 deraadt }
369 1.1 deraadt /* Check that the data link layer is an Ethernet; this code won't work
370 1.1 deraadt * with anything else. */
371 1.1 deraadt if (ioctl(fd, BIOCGDLT, (caddr_t) & dlt) < 0) {
372 1.19 lukem rarperr(FATAL, "BIOCGDLT: %s", strerror(errno));
373 1.1 deraadt /* NOTREACHED */
374 1.1 deraadt }
375 1.1 deraadt if (dlt != DLT_EN10MB) {
376 1.23 fair if (aflag) { /* for -a skip non-ethernet interfaces */
377 1.23 fair close(fd);
378 1.23 fair return(-1);
379 1.23 fair }
380 1.19 lukem rarperr(FATAL, "%s is not an ethernet", device);
381 1.1 deraadt /* NOTREACHED */
382 1.1 deraadt }
383 1.1 deraadt /* Set filter program. */
384 1.1 deraadt if (ioctl(fd, BIOCSETF, (caddr_t) & filter) < 0) {
385 1.19 lukem rarperr(FATAL, "BIOCSETF: %s", strerror(errno));
386 1.1 deraadt /* NOTREACHED */
387 1.1 deraadt }
388 1.1 deraadt return fd;
389 1.1 deraadt }
390 1.1 deraadt /*
391 1.1 deraadt * Perform various sanity checks on the RARP request packet. Return
392 1.1 deraadt * false on failure and log the reason.
393 1.1 deraadt */
394 1.1 deraadt static int
395 1.1 deraadt rarp_check(p, len)
396 1.1 deraadt u_char *p;
397 1.1 deraadt int len;
398 1.1 deraadt {
399 1.1 deraadt struct ether_header *ep = (struct ether_header *) p;
400 1.16 is #ifdef __NetBSD__
401 1.16 is struct arphdr *ap = (struct arphdr *) (p + sizeof(*ep));
402 1.16 is #else
403 1.1 deraadt struct ether_arp *ap = (struct ether_arp *) (p + sizeof(*ep));
404 1.16 is #endif
405 1.1 deraadt
406 1.18 lukem if (dflag)
407 1.18 lukem fprintf(stderr, "got a packet\n");
408 1.1 deraadt
409 1.1 deraadt if (len < sizeof(*ep) + sizeof(*ap)) {
410 1.19 lukem rarperr(NONFATAL, "truncated request");
411 1.1 deraadt return 0;
412 1.1 deraadt }
413 1.16 is #ifdef __NetBSD__
414 1.16 is /* now that we know the fixed part of the ARP hdr is there: */
415 1.16 is if (len < sizeof(*ap) + 2 * ap->ar_hln + 2 * ap->ar_pln) {
416 1.19 lukem rarperr(NONFATAL, "truncated request");
417 1.16 is return 0;
418 1.16 is }
419 1.16 is #endif
420 1.1 deraadt /* XXX This test might be better off broken out... */
421 1.11 mycroft #ifdef __FreeBSD__
422 1.11 mycroft /* BPF (incorrectly) returns this in host order. */
423 1.11 mycroft if (ep->ether_type != ETHERTYPE_REVARP ||
424 1.11 mycroft #else
425 1.1 deraadt if (ntohs (ep->ether_type) != ETHERTYPE_REVARP ||
426 1.11 mycroft #endif
427 1.16 is #ifdef __NetBSD__
428 1.16 is ntohs (ap->ar_hrd) != ARPHRD_ETHER ||
429 1.16 is ntohs (ap->ar_op) != ARPOP_REVREQUEST ||
430 1.16 is ntohs (ap->ar_pro) != ETHERTYPE_IP ||
431 1.16 is ap->ar_hln != 6 || ap->ar_pln != 4) {
432 1.16 is #else
433 1.1 deraadt ntohs (ap->arp_hrd) != ARPHRD_ETHER ||
434 1.6 cgd ntohs (ap->arp_op) != ARPOP_REVREQUEST ||
435 1.1 deraadt ntohs (ap->arp_pro) != ETHERTYPE_IP ||
436 1.1 deraadt ap->arp_hln != 6 || ap->arp_pln != 4) {
437 1.16 is #endif
438 1.19 lukem rarperr(NONFATAL, "request fails sanity check");
439 1.1 deraadt return 0;
440 1.1 deraadt }
441 1.16 is #ifdef __NetBSD__
442 1.21 lukem if (memcmp((char *) &ep->ether_shost, ar_sha(ap), 6) != 0) {
443 1.16 is #else
444 1.21 lukem if (memcmp((char *) &ep->ether_shost, ap->arp_sha, 6) != 0) {
445 1.16 is #endif
446 1.19 lukem rarperr(NONFATAL, "ether/arp sender address mismatch");
447 1.1 deraadt return 0;
448 1.1 deraadt }
449 1.16 is #ifdef __NetBSD__
450 1.21 lukem if (memcmp(ar_sha(ap), ar_tha(ap), 6) != 0) {
451 1.16 is #else
452 1.21 lukem if (memcmp((char *) &ap->arp_sha, (char *) &ap->arp_tha, 6) != 0) {
453 1.16 is #endif
454 1.19 lukem rarperr(NONFATAL, "ether/arp target address mismatch");
455 1.1 deraadt return 0;
456 1.1 deraadt }
457 1.1 deraadt return 1;
458 1.1 deraadt }
459 1.1 deraadt
460 1.1 deraadt /*
461 1.1 deraadt * Loop indefinitely listening for RARP requests on the
462 1.1 deraadt * interfaces in 'iflist'.
463 1.1 deraadt */
464 1.1 deraadt void
465 1.1 deraadt rarp_loop()
466 1.1 deraadt {
467 1.1 deraadt u_char *buf, *bp, *ep;
468 1.1 deraadt int cc, fd;
469 1.1 deraadt fd_set fds, listeners;
470 1.1 deraadt int bufsize, maxfd = 0;
471 1.1 deraadt struct if_info *ii;
472 1.1 deraadt
473 1.1 deraadt if (iflist == 0) {
474 1.19 lukem rarperr(FATAL, "no interfaces");
475 1.1 deraadt /* NOTREACHED */
476 1.1 deraadt }
477 1.1 deraadt if (ioctl(iflist->ii_fd, BIOCGBLEN, (caddr_t) & bufsize) < 0) {
478 1.19 lukem rarperr(FATAL, "BIOCGBLEN: %s", strerror(errno));
479 1.1 deraadt /* NOTREACHED */
480 1.1 deraadt }
481 1.1 deraadt buf = (u_char *) malloc((unsigned) bufsize);
482 1.1 deraadt if (buf == 0) {
483 1.19 lukem rarperr(FATAL, "malloc: %s", strerror(errno));
484 1.1 deraadt /* NOTREACHED */
485 1.1 deraadt }
486 1.1 deraadt /*
487 1.1 deraadt * Find the highest numbered file descriptor for select().
488 1.1 deraadt * Initialize the set of descriptors to listen to.
489 1.1 deraadt */
490 1.1 deraadt FD_ZERO(&fds);
491 1.1 deraadt for (ii = iflist; ii; ii = ii->ii_next) {
492 1.1 deraadt FD_SET(ii->ii_fd, &fds);
493 1.1 deraadt if (ii->ii_fd > maxfd)
494 1.1 deraadt maxfd = ii->ii_fd;
495 1.1 deraadt }
496 1.1 deraadt while (1) {
497 1.1 deraadt listeners = fds;
498 1.1 deraadt if (select(maxfd + 1, &listeners, (struct fd_set *) 0,
499 1.1 deraadt (struct fd_set *) 0, (struct timeval *) 0) < 0) {
500 1.19 lukem rarperr(FATAL, "select: %s", strerror(errno));
501 1.1 deraadt /* NOTREACHED */
502 1.1 deraadt }
503 1.1 deraadt for (ii = iflist; ii; ii = ii->ii_next) {
504 1.1 deraadt fd = ii->ii_fd;
505 1.1 deraadt if (!FD_ISSET(fd, &listeners))
506 1.1 deraadt continue;
507 1.24 mrg again:
508 1.1 deraadt cc = read(fd, (char *) buf, bufsize);
509 1.1 deraadt /* Don't choke when we get ptraced */
510 1.1 deraadt if (cc < 0 && errno == EINTR)
511 1.1 deraadt goto again;
512 1.1 deraadt /* Due to a SunOS bug, after 2^31 bytes, the file
513 1.1 deraadt * offset overflows and read fails with EINVAL. The
514 1.1 deraadt * lseek() to 0 will fix things. */
515 1.1 deraadt if (cc < 0) {
516 1.1 deraadt if (errno == EINVAL &&
517 1.5 cgd (lseek(fd, 0, SEEK_CUR) + bufsize) < 0) {
518 1.1 deraadt (void) lseek(fd, 0, 0);
519 1.1 deraadt goto again;
520 1.1 deraadt }
521 1.19 lukem rarperr(FATAL, "read: %s", strerror(errno));
522 1.1 deraadt /* NOTREACHED */
523 1.1 deraadt }
524 1.1 deraadt /* Loop through the packet(s) */
525 1.1 deraadt #define bhp ((struct bpf_hdr *)bp)
526 1.1 deraadt bp = buf;
527 1.1 deraadt ep = bp + cc;
528 1.1 deraadt while (bp < ep) {
529 1.1 deraadt register int caplen, hdrlen;
530 1.1 deraadt
531 1.1 deraadt caplen = bhp->bh_caplen;
532 1.1 deraadt hdrlen = bhp->bh_hdrlen;
533 1.1 deraadt if (rarp_check(bp + hdrlen, caplen))
534 1.1 deraadt rarp_process(ii, bp + hdrlen);
535 1.1 deraadt bp += BPF_WORDALIGN(hdrlen + caplen);
536 1.1 deraadt }
537 1.1 deraadt }
538 1.1 deraadt }
539 1.1 deraadt }
540 1.8 thorpej
541 1.8 thorpej #ifdef REQUIRE_TFTPBOOT
542 1.8 thorpej
543 1.1 deraadt #ifndef TFTP_DIR
544 1.1 deraadt #define TFTP_DIR "/tftpboot"
545 1.1 deraadt #endif
546 1.1 deraadt
547 1.1 deraadt /*
548 1.1 deraadt * True if this server can boot the host whose IP address is 'addr'.
549 1.1 deraadt * This check is made by looking in the tftp directory for the
550 1.1 deraadt * configuration file.
551 1.1 deraadt */
552 1.1 deraadt int
553 1.1 deraadt rarp_bootable(addr)
554 1.1 deraadt u_long addr;
555 1.1 deraadt {
556 1.1 deraadt register struct dirent *dent;
557 1.1 deraadt register DIR *d;
558 1.1 deraadt char ipname[9];
559 1.1 deraadt static DIR *dd = 0;
560 1.1 deraadt
561 1.1 deraadt (void) sprintf(ipname, "%08X", addr);
562 1.1 deraadt /* If directory is already open, rewind it. Otherwise, open it. */
563 1.1 deraadt if (d = dd)
564 1.1 deraadt rewinddir(d);
565 1.1 deraadt else {
566 1.1 deraadt if (chdir(TFTP_DIR) == -1) {
567 1.19 lukem rarperr(FATAL, "chdir: %s", strerror(errno));
568 1.1 deraadt /* NOTREACHED */
569 1.1 deraadt }
570 1.1 deraadt d = opendir(".");
571 1.1 deraadt if (d == 0) {
572 1.19 lukem rarperr(FATAL, "opendir: %s", strerror(errno));
573 1.1 deraadt /* NOTREACHED */
574 1.1 deraadt }
575 1.1 deraadt dd = d;
576 1.1 deraadt }
577 1.1 deraadt while (dent = readdir(d))
578 1.1 deraadt if (strncmp(dent->d_name, ipname, 8) == 0)
579 1.1 deraadt return 1;
580 1.1 deraadt return 0;
581 1.1 deraadt }
582 1.8 thorpej #endif /* REQUIRE_TFTPBOOT */
583 1.8 thorpej
584 1.1 deraadt /*
585 1.1 deraadt * Given a list of IP addresses, 'alist', return the first address that
586 1.1 deraadt * is on network 'net'; 'netmask' is a mask indicating the network portion
587 1.1 deraadt * of the address.
588 1.1 deraadt */
589 1.17 cgd u_int32_t
590 1.1 deraadt choose_ipaddr(alist, net, netmask)
591 1.17 cgd u_int32_t **alist;
592 1.17 cgd u_int32_t net;
593 1.17 cgd u_int32_t netmask;
594 1.1 deraadt {
595 1.1 deraadt for (; *alist; ++alist) {
596 1.1 deraadt if ((**alist & netmask) == net)
597 1.1 deraadt return **alist;
598 1.1 deraadt }
599 1.1 deraadt return 0;
600 1.1 deraadt }
601 1.1 deraadt /*
602 1.1 deraadt * Answer the RARP request in 'pkt', on the interface 'ii'. 'pkt' has
603 1.1 deraadt * already been checked for validity. The reply is overlaid on the request.
604 1.1 deraadt */
605 1.1 deraadt void
606 1.1 deraadt rarp_process(ii, pkt)
607 1.1 deraadt struct if_info *ii;
608 1.1 deraadt u_char *pkt;
609 1.1 deraadt {
610 1.1 deraadt struct ether_header *ep;
611 1.1 deraadt struct hostent *hp;
612 1.1 deraadt u_long target_ipaddr;
613 1.18 lukem char ename[MAXHOSTNAMELEN + 1];
614 1.2 deraadt struct in_addr in;
615 1.1 deraadt
616 1.1 deraadt ep = (struct ether_header *) pkt;
617 1.1 deraadt
618 1.18 lukem if (ether_ntohost(ename, (struct ether_addr *)&ep->ether_shost) != 0) {
619 1.18 lukem debug("no IP address for %s",
620 1.18 lukem ether_ntoa((struct ether_addr *)&ep->ether_shost));
621 1.1 deraadt return;
622 1.18 lukem }
623 1.18 lukem ename[sizeof(ename)-1] = '\0';
624 1.18 lukem
625 1.18 lukem if ((hp = gethostbyname(ename)) == 0) {
626 1.18 lukem debug("gethostbyname(%s) failed: %s", ename,
627 1.18 lukem hstrerror(h_errno));
628 1.18 lukem return;
629 1.18 lukem }
630 1.1 deraadt
631 1.1 deraadt /* Choose correct address from list. */
632 1.1 deraadt if (hp->h_addrtype != AF_INET) {
633 1.19 lukem rarperr(FATAL, "cannot handle non IP addresses");
634 1.1 deraadt /* NOTREACHED */
635 1.1 deraadt }
636 1.17 cgd target_ipaddr = choose_ipaddr((u_int32_t **) hp->h_addr_list,
637 1.2 deraadt ii->ii_ipaddr & ii->ii_netmask, ii->ii_netmask);
638 1.1 deraadt
639 1.1 deraadt if (target_ipaddr == 0) {
640 1.2 deraadt in.s_addr = ii->ii_ipaddr & ii->ii_netmask;
641 1.19 lukem rarperr(NONFATAL, "cannot find %s on net %s\n",
642 1.2 deraadt ename, inet_ntoa(in));
643 1.1 deraadt return;
644 1.1 deraadt }
645 1.8 thorpej #ifdef REQUIRE_TFTPBOOT
646 1.1 deraadt if (rarp_bootable(htonl(target_ipaddr)))
647 1.8 thorpej #endif
648 1.24 mrg rarp_reply(ii, ep, target_ipaddr, hp);
649 1.18 lukem #ifdef REQUIRE_TFTPBOOT
650 1.18 lukem else
651 1.18 lukem debug("%08X not bootable", htonl(target_ipaddr));
652 1.18 lukem #endif
653 1.1 deraadt }
654 1.1 deraadt /*
655 1.1 deraadt * Lookup the ethernet address of the interface attached to the BPF
656 1.1 deraadt * file descriptor 'fd'; return it in 'eaddr'.
657 1.1 deraadt */
658 1.1 deraadt void
659 1.1 deraadt lookup_eaddr(ifname, eaddr)
660 1.1 deraadt char *ifname;
661 1.1 deraadt u_char *eaddr;
662 1.1 deraadt {
663 1.1 deraadt char inbuf[8192];
664 1.1 deraadt struct ifconf ifc;
665 1.1 deraadt struct ifreq *ifr;
666 1.7 mycroft struct sockaddr_dl *sdl;
667 1.1 deraadt int fd;
668 1.1 deraadt int i, len;
669 1.1 deraadt
670 1.1 deraadt /* We cannot use SIOCGIFADDR on the BPF descriptor.
671 1.1 deraadt We must instead get all the interfaces with SIOCGIFCONF
672 1.1 deraadt and find the right one. */
673 1.1 deraadt
674 1.1 deraadt /* Use datagram socket to get Ethernet address. */
675 1.1 deraadt if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
676 1.19 lukem rarperr(FATAL, "socket: %s", strerror(errno));
677 1.1 deraadt /* NOTREACHED */
678 1.1 deraadt }
679 1.1 deraadt
680 1.7 mycroft ifc.ifc_len = sizeof(inbuf);
681 1.1 deraadt ifc.ifc_buf = inbuf;
682 1.7 mycroft if (ioctl(fd, SIOCGIFCONF, (caddr_t)&ifc) < 0 ||
683 1.7 mycroft ifc.ifc_len < sizeof(struct ifreq)) {
684 1.19 lukem rarperr(FATAL, "lookup_eaddr: SIOGIFCONF: %s", strerror(errno));
685 1.1 deraadt /* NOTREACHED */
686 1.1 deraadt }
687 1.1 deraadt ifr = ifc.ifc_req;
688 1.7 mycroft for (i = 0; i < ifc.ifc_len;
689 1.7 mycroft i += len, ifr = (struct ifreq *)((caddr_t)ifr + len)) {
690 1.7 mycroft len = sizeof(ifr->ifr_name) + ifr->ifr_addr.sa_len;
691 1.7 mycroft sdl = (struct sockaddr_dl *)&ifr->ifr_addr;
692 1.7 mycroft if (sdl->sdl_family != AF_LINK || sdl->sdl_type != IFT_ETHER ||
693 1.7 mycroft sdl->sdl_alen != 6)
694 1.7 mycroft continue;
695 1.7 mycroft if (!strncmp(ifr->ifr_name, ifname, sizeof(ifr->ifr_name))) {
696 1.21 lukem memmove((caddr_t)eaddr, (caddr_t)LLADDR(sdl), 6);
697 1.18 lukem debug("%s: %x:%x:%x:%x:%x:%x",
698 1.18 lukem ifr->ifr_name, eaddr[0], eaddr[1],
699 1.18 lukem eaddr[2], eaddr[3], eaddr[4], eaddr[5]);
700 1.1 deraadt return;
701 1.1 deraadt }
702 1.1 deraadt }
703 1.1 deraadt
704 1.19 lukem rarperr(FATAL, "lookup_eaddr: Never saw interface `%s'!", ifname);
705 1.1 deraadt }
706 1.1 deraadt /*
707 1.1 deraadt * Lookup the IP address and network mask of the interface named 'ifname'.
708 1.1 deraadt */
709 1.1 deraadt void
710 1.1 deraadt lookup_ipaddr(ifname, addrp, netmaskp)
711 1.1 deraadt char *ifname;
712 1.1 deraadt u_long *addrp;
713 1.1 deraadt u_long *netmaskp;
714 1.1 deraadt {
715 1.1 deraadt int fd;
716 1.1 deraadt struct ifreq ifr;
717 1.1 deraadt
718 1.1 deraadt /* Use datagram socket to get IP address. */
719 1.1 deraadt if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
720 1.19 lukem rarperr(FATAL, "socket: %s", strerror(errno));
721 1.1 deraadt /* NOTREACHED */
722 1.1 deraadt }
723 1.1 deraadt (void) strncpy(ifr.ifr_name, ifname, sizeof ifr.ifr_name);
724 1.1 deraadt if (ioctl(fd, SIOCGIFADDR, (char *) &ifr) < 0) {
725 1.19 lukem rarperr(FATAL, "SIOCGIFADDR: %s", strerror(errno));
726 1.1 deraadt /* NOTREACHED */
727 1.1 deraadt }
728 1.1 deraadt *addrp = ((struct sockaddr_in *) & ifr.ifr_addr)->sin_addr.s_addr;
729 1.1 deraadt if (ioctl(fd, SIOCGIFNETMASK, (char *) &ifr) < 0) {
730 1.1 deraadt perror("SIOCGIFNETMASK");
731 1.25 mrg unlink(_PATH_RARPDPID);
732 1.1 deraadt exit(1);
733 1.1 deraadt }
734 1.1 deraadt *netmaskp = ((struct sockaddr_in *) & ifr.ifr_addr)->sin_addr.s_addr;
735 1.1 deraadt /* If SIOCGIFNETMASK didn't work, figure out a mask from the IP
736 1.1 deraadt * address class. */
737 1.1 deraadt if (*netmaskp == 0)
738 1.1 deraadt *netmaskp = ipaddrtonetmask(*addrp);
739 1.1 deraadt
740 1.1 deraadt (void) close(fd);
741 1.1 deraadt }
742 1.1 deraadt /*
743 1.1 deraadt * Poke the kernel arp tables with the ethernet/ip address combinataion
744 1.1 deraadt * given. When processing a reply, we must do this so that the booting
745 1.1 deraadt * host (i.e. the guy running rarpd), won't try to ARP for the hardware
746 1.1 deraadt * address of the guy being booted (he cannot answer the ARP).
747 1.1 deraadt */
748 1.22 is #ifndef __NetBSD__
749 1.1 deraadt void
750 1.1 deraadt update_arptab(ep, ipaddr)
751 1.1 deraadt u_char *ep;
752 1.1 deraadt u_long ipaddr;
753 1.1 deraadt {
754 1.1 deraadt struct arpreq request;
755 1.1 deraadt struct sockaddr_in *sin;
756 1.1 deraadt
757 1.1 deraadt request.arp_flags = 0;
758 1.1 deraadt sin = (struct sockaddr_in *) & request.arp_pa;
759 1.1 deraadt sin->sin_family = AF_INET;
760 1.1 deraadt sin->sin_addr.s_addr = ipaddr;
761 1.1 deraadt request.arp_ha.sa_family = AF_UNSPEC;
762 1.1 deraadt /* This is needed #if defined(COMPAT_43) && BYTE_ORDER != BIG_ENDIAN,
763 1.1 deraadt because AF_UNSPEC is zero and the kernel assumes that a zero
764 1.1 deraadt sa_family means that the real sa_family value is in sa_len. */
765 1.1 deraadt request.arp_ha.sa_len = 16; /* XXX */
766 1.21 lukem memmove((char *) request.arp_ha.sa_data, (char *)ep, 6);
767 1.1 deraadt
768 1.7 mycroft #if 0
769 1.1 deraadt s = socket(AF_INET, SOCK_DGRAM, 0);
770 1.1 deraadt if (ioctl(s, SIOCSARP, (caddr_t) & request) < 0) {
771 1.19 lukem rarperr(NONFATAL, "SIOCSARP: %s", strerror(errno));
772 1.1 deraadt }
773 1.1 deraadt (void) close(s);
774 1.7 mycroft #endif
775 1.1 deraadt }
776 1.22 is #endif
777 1.22 is
778 1.1 deraadt /*
779 1.1 deraadt * Build a reverse ARP packet and sent it out on the interface.
780 1.6 cgd * 'ep' points to a valid ARPOP_REVREQUEST. The ARPOP_REVREPLY is built
781 1.1 deraadt * on top of the request, then written to the network.
782 1.1 deraadt *
783 1.1 deraadt * RFC 903 defines the ether_arp fields as follows. The following comments
784 1.1 deraadt * are taken (more or less) straight from this document.
785 1.1 deraadt *
786 1.6 cgd * ARPOP_REVREQUEST
787 1.1 deraadt *
788 1.1 deraadt * arp_sha is the hardware address of the sender of the packet.
789 1.1 deraadt * arp_spa is undefined.
790 1.1 deraadt * arp_tha is the 'target' hardware address.
791 1.1 deraadt * In the case where the sender wishes to determine his own
792 1.1 deraadt * protocol address, this, like arp_sha, will be the hardware
793 1.1 deraadt * address of the sender.
794 1.1 deraadt * arp_tpa is undefined.
795 1.1 deraadt *
796 1.6 cgd * ARPOP_REVREPLY
797 1.1 deraadt *
798 1.1 deraadt * arp_sha is the hardware address of the responder (the sender of the
799 1.1 deraadt * reply packet).
800 1.1 deraadt * arp_spa is the protocol address of the responder (see the note below).
801 1.1 deraadt * arp_tha is the hardware address of the target, and should be the same as
802 1.1 deraadt * that which was given in the request.
803 1.1 deraadt * arp_tpa is the protocol address of the target, that is, the desired address.
804 1.1 deraadt *
805 1.1 deraadt * Note that the requirement that arp_spa be filled in with the responder's
806 1.1 deraadt * protocol is purely for convenience. For instance, if a system were to use
807 1.1 deraadt * both ARP and RARP, then the inclusion of the valid protocol-hardware
808 1.1 deraadt * address pair (arp_spa, arp_sha) may eliminate the need for a subsequent
809 1.1 deraadt * ARP request.
810 1.1 deraadt */
811 1.1 deraadt void
812 1.24 mrg rarp_reply(ii, ep, ipaddr, hp)
813 1.1 deraadt struct if_info *ii;
814 1.1 deraadt struct ether_header *ep;
815 1.1 deraadt u_long ipaddr;
816 1.24 mrg struct hostent *hp;
817 1.1 deraadt {
818 1.1 deraadt int n;
819 1.16 is #ifdef __NetBSD__
820 1.16 is struct arphdr *ap = (struct arphdr *) (ep + 1);
821 1.16 is #else
822 1.1 deraadt struct ether_arp *ap = (struct ether_arp *) (ep + 1);
823 1.16 is #endif
824 1.16 is
825 1.1 deraadt int len;
826 1.1 deraadt
827 1.16 is #ifdef __NetBSD__
828 1.22 is (void)mkarp(ar_sha(ap), ipaddr);
829 1.16 is #else
830 1.1 deraadt update_arptab((u_char *) & ap->arp_sha, ipaddr);
831 1.16 is #endif
832 1.1 deraadt
833 1.1 deraadt /* Build the rarp reply by modifying the rarp request in place. */
834 1.11 mycroft #ifdef __FreeBSD__
835 1.11 mycroft /* BPF (incorrectly) wants this in host order. */
836 1.11 mycroft ep->ether_type = ETHERTYPE_REVARP;
837 1.11 mycroft #else
838 1.3 deraadt ep->ether_type = htons(ETHERTYPE_REVARP);
839 1.11 mycroft #endif
840 1.16 is #ifdef __NetBSD__
841 1.16 is ap->ar_hrd = htons(ARPHRD_ETHER);
842 1.16 is ap->ar_pro = htons(ETHERTYPE_IP);
843 1.16 is ap->ar_op = htons(ARPOP_REVREPLY);
844 1.16 is
845 1.21 lukem memmove((char *) &ep->ether_dhost, ar_sha(ap), 6);
846 1.21 lukem memmove((char *) &ep->ether_shost, (char *) ii->ii_eaddr, 6);
847 1.21 lukem memmove(ar_sha(ap), (char *) ii->ii_eaddr, 6);
848 1.16 is
849 1.21 lukem memmove(ar_tpa(ap), (char *) &ipaddr, 4);
850 1.16 is /* Target hardware is unchanged. */
851 1.21 lukem memmove(ar_spa(ap), (char *) &ii->ii_ipaddr, 4);
852 1.16 is
853 1.16 is len = sizeof(*ep) + sizeof(*ap) +
854 1.16 is 2 * ap->ar_pln + 2 * ap->ar_hln;
855 1.16 is #else
856 1.4 cgd ap->ea_hdr.ar_hrd = htons(ARPHRD_ETHER);
857 1.4 cgd ap->ea_hdr.ar_pro = htons(ETHERTYPE_IP);
858 1.6 cgd ap->arp_op = htons(ARPOP_REVREPLY);
859 1.1 deraadt
860 1.21 lukem memmove((char *) &ep->ether_dhost, (char *) &ap->arp_sha, 6);
861 1.21 lukem memmove((char *) &ep->ether_shost, (char *) ii->ii_eaddr, 6);
862 1.21 lukem memmove((char *) &ap->arp_sha, (char *) ii->ii_eaddr, 6);
863 1.1 deraadt
864 1.21 lukem memmove((char *) ap->arp_tpa, (char *) &ipaddr, 4);
865 1.1 deraadt /* Target hardware is unchanged. */
866 1.21 lukem memmove((char *) ap->arp_spa, (char *) &ii->ii_ipaddr, 4);
867 1.1 deraadt
868 1.1 deraadt len = sizeof(*ep) + sizeof(*ap);
869 1.16 is #endif
870 1.16 is
871 1.24 mrg if (lflag)
872 1.24 mrg syslog(LOG_INFO, "%s asked; %s replied", hp->h_name,
873 1.24 mrg ether_ntoa((struct ether_addr *)ar_tha(ap)));
874 1.1 deraadt n = write(ii->ii_fd, (char *) ep, len);
875 1.1 deraadt if (n != len) {
876 1.19 lukem rarperr(NONFATAL, "write: only %d of %d bytes written", n, len);
877 1.1 deraadt }
878 1.1 deraadt }
879 1.1 deraadt /*
880 1.1 deraadt * Get the netmask of an IP address. This routine is used if
881 1.1 deraadt * SIOCGIFNETMASK doesn't work.
882 1.1 deraadt */
883 1.1 deraadt u_long
884 1.1 deraadt ipaddrtonetmask(addr)
885 1.1 deraadt u_long addr;
886 1.1 deraadt {
887 1.1 deraadt if (IN_CLASSA(addr))
888 1.1 deraadt return IN_CLASSA_NET;
889 1.1 deraadt if (IN_CLASSB(addr))
890 1.1 deraadt return IN_CLASSB_NET;
891 1.1 deraadt if (IN_CLASSC(addr))
892 1.1 deraadt return IN_CLASSC_NET;
893 1.19 lukem rarperr(FATAL, "unknown IP address class: %08X", addr);
894 1.1 deraadt /* NOTREACHED */
895 1.19 lukem return(-1);
896 1.1 deraadt }
897 1.1 deraadt
898 1.1 deraadt #if __STDC__
899 1.1 deraadt #include <stdarg.h>
900 1.1 deraadt #else
901 1.1 deraadt #include <varargs.h>
902 1.1 deraadt #endif
903 1.1 deraadt
904 1.1 deraadt void
905 1.1 deraadt #if __STDC__
906 1.19 lukem rarperr(int fatal, const char *fmt,...)
907 1.1 deraadt #else
908 1.19 lukem rarperr(fmt, va_alist)
909 1.1 deraadt int fatal;
910 1.1 deraadt char *fmt;
911 1.1 deraadt va_dcl
912 1.1 deraadt #endif
913 1.1 deraadt {
914 1.1 deraadt va_list ap;
915 1.1 deraadt #if __STDC__
916 1.1 deraadt va_start(ap, fmt);
917 1.1 deraadt #else
918 1.1 deraadt va_start(ap);
919 1.1 deraadt #endif
920 1.1 deraadt if (dflag) {
921 1.1 deraadt if (fatal)
922 1.1 deraadt (void) fprintf(stderr, "rarpd: error: ");
923 1.1 deraadt else
924 1.1 deraadt (void) fprintf(stderr, "rarpd: warning: ");
925 1.1 deraadt (void) vfprintf(stderr, fmt, ap);
926 1.1 deraadt (void) fprintf(stderr, "\n");
927 1.1 deraadt }
928 1.1 deraadt vsyslog(LOG_ERR, fmt, ap);
929 1.1 deraadt va_end(ap);
930 1.25 mrg if (fatal) {
931 1.25 mrg unlink(_PATH_RARPDPID);
932 1.1 deraadt exit(1);
933 1.25 mrg }
934 1.1 deraadt /* NOTREACHED */
935 1.1 deraadt }
936 1.1 deraadt
937 1.1 deraadt void
938 1.1 deraadt #if __STDC__
939 1.1 deraadt debug(const char *fmt,...)
940 1.1 deraadt #else
941 1.1 deraadt debug(fmt, va_alist)
942 1.1 deraadt char *fmt;
943 1.1 deraadt va_dcl
944 1.1 deraadt #endif
945 1.1 deraadt {
946 1.1 deraadt va_list ap;
947 1.1 deraadt
948 1.1 deraadt #if __STDC__
949 1.18 lukem va_start(ap, fmt);
950 1.1 deraadt #else
951 1.18 lukem va_start(ap);
952 1.1 deraadt #endif
953 1.18 lukem if (dflag) {
954 1.1 deraadt (void) fprintf(stderr, "rarpd: ");
955 1.1 deraadt (void) vfprintf(stderr, fmt, ap);
956 1.1 deraadt (void) fprintf(stderr, "\n");
957 1.1 deraadt }
958 1.18 lukem vsyslog(LOG_WARNING, fmt, ap);
959 1.18 lukem va_end(ap);
960 1.1 deraadt }
961