2 * bootpgw.c - BOOTP GateWay
3 * This program forwards BOOTP Request packets to a BOOTP server.
6 /************************************************************************
7 Copyright 1988, 1991 by Carnegie Mellon University
11 Permission to use, copy, modify, and distribute this software and its
12 documentation for any purpose and without fee is hereby granted, provided
13 that the above copyright notice appear in all copies and that both that
14 copyright notice and this permission notice appear in supporting
15 documentation, and that the name of Carnegie Mellon University not be used
16 in advertising or publicity pertaining to distribution of the software
17 without specific, written prior permission.
19 CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
20 SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
21 IN NO EVENT SHALL CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
22 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
23 PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
24 ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
26 ************************************************************************/
28 /* $FreeBSD: src/libexec/bootpd/bootpgw/bootpgw.c,v 1.6 2003/02/05 13:45:25 charnier Exp $ */
31 * BOOTPGW is typically used to forward BOOTP client requests from
32 * one subnet to a BOOTP server on a different subnet.
35 #include <sys/types.h>
36 #include <sys/param.h>
37 #include <sys/socket.h>
38 #include <sys/ioctl.h>
42 #include <sys/utsname.h>
45 #include <netinet/in.h>
46 #include <arpa/inet.h> /* inet_ntoa */
65 # include <fcntl.h> /* for O_RDONLY, etc */
70 /* Yes, memcpy is OK here (no overlapped copies). */
71 # define bcopy(a,b,c) memcpy(b,a,c)
72 # define bzero(p,l) memset(p,0,l)
73 # define bcmp(a,b,c) memcmp(a,b,c)
80 #include "patchlevel.h"
82 /* Local definitions: */
83 #define MAX_MSG_SIZE (3*512) /* Maximum packet size */
86 #define get_network_errmsg get_errmsg
91 * Externals, forward declarations, and global variables
94 static void usage(void);
95 static void handle_reply(void);
96 static void handle_request(void);
99 * IP port numbers for client and server obtained from /etc/services
102 u_short bootps_port
, bootpc_port
;
106 * Internet socket and interface config structures
109 struct sockaddr_in bind_addr
; /* Listening */
110 struct sockaddr_in recv_addr
; /* Packet source */
111 struct sockaddr_in send_addr
; /* destination */
117 int debug
= 0; /* Debugging flag (level) */
118 struct timeval actualtimeout
=
119 { /* fifteen minutes */
120 15 * 60L, /* tv_sec */
123 u_char maxhops
= 4; /* Number of hops allowed for requests. */
124 u_int minwait
= 3; /* Number of seconds client must wait before
125 its bootrequest packets are forwarded. */
131 int s
; /* Socket file descriptor */
132 char *pktbuf
; /* Receive packet buffer */
136 int32 server_ipa
; /* Real server IP address, network order. */
138 struct in_addr my_ip_addr
;
140 struct utsname my_uname
;
148 * Initialization such as command-line processing is done and then the
149 * main server loop is started.
153 main(int argc
, char **argv
)
155 struct timeval
*timeout
;
157 struct servent
*servp
;
160 int n
, ba_len
, ra_len
;
164 progname
= strrchr(argv
[0], '/');
165 if (progname
) progname
++;
166 else progname
= argv
[0];
169 * Initialize logging.
171 report_init(0); /* uses progname */
176 report(LOG_INFO
, "version %s.%d", VERSION
, PATCHLEVEL
);
178 /* Debugging for compilers with struct padding. */
179 assert(sizeof(struct bootp
) == BP_MINPKTSZ
);
181 /* Get space for receiving packets and composing replies. */
182 pktbuf
= malloc(MAX_MSG_SIZE
);
184 report(LOG_ERR
, "malloc failed");
187 bp
= (struct bootp
*) pktbuf
;
190 * Check to see if a socket was passed to us from inetd.
192 * Use getsockname() to determine if descriptor 0 is indeed a socket
193 * (and thus we are probably a child of inetd) or if it is instead
194 * something else and we are running standalone.
197 ba_len
= sizeof(bind_addr
);
198 bzero((char *) &bind_addr
, ba_len
);
201 if (getsockname(s
, (struct sockaddr
*) &bind_addr
, &ba_len
) == 0) {
203 * Descriptor 0 is a socket. Assume we are a child of inetd.
205 if (bind_addr
.sin_family
== AF_INET
) {
207 bootps_port
= ntohs(bind_addr
.sin_port
);
209 /* Some other type of socket? */
210 report(LOG_INFO
, "getsockname: not an INET socket");
214 * Set defaults that might be changed by option switches.
217 timeout
= &actualtimeout
;
219 if (uname(&my_uname
) < 0)
220 errx(1, "can't get hostname");
221 hostname
= my_uname
.nodename
;
223 hep
= gethostbyname(hostname
);
225 printf("Can not get my IP address\n");
228 bcopy(hep
->h_addr
, (char *)&my_ip_addr
, sizeof(my_ip_addr
));
233 for (argc
--, argv
++; argc
> 0; argc
--, argv
++) {
234 if (argv
[0][0] != '-')
236 switch (argv
[0][1]) {
238 case 'd': /* debug level */
240 stmp
= &(argv
[0][2]);
241 } else if (argv
[1] && argv
[1][0] == '-') {
243 * Backwards-compatible behavior:
244 * no parameter, so just increment the debug flag.
253 if (!stmp
|| (sscanf(stmp
, "%d", &n
) != 1) || (n
< 0)) {
254 warnx("invalid debug level");
260 case 'h': /* hop count limit */
262 stmp
= &(argv
[0][2]);
268 if (!stmp
|| (sscanf(stmp
, "%d", &n
) != 1) ||
271 warnx("invalid hop count limit");
277 case 'i': /* inetd mode */
281 case 's': /* standalone mode */
285 case 't': /* timeout */
287 stmp
= &(argv
[0][2]);
293 if (!stmp
|| (sscanf(stmp
, "%d", &n
) != 1) || (n
< 0)) {
294 warnx("invalid timeout specification");
297 actualtimeout
.tv_sec
= (int32
) (60 * n
);
299 * If the actual timeout is zero, pass a NULL pointer
300 * to select so it blocks indefinitely, otherwise,
301 * point to the actual timeout value.
303 timeout
= (n
> 0) ? &actualtimeout
: NULL
;
306 case 'w': /* wait time */
308 stmp
= &(argv
[0][2]);
314 if (!stmp
|| (sscanf(stmp
, "%d", &n
) != 1) ||
317 warnx("invalid wait time");
324 warnx("unknown switch: -%c", argv
[0][1]);
331 /* Make sure server name argument is suplied. */
332 servername
= argv
[0];
334 warnx("missing server name");
338 * Get address of real bootp server.
340 if (isdigit(servername
[0]))
341 server_ipa
= inet_addr(servername
);
343 hep
= gethostbyname(servername
);
345 errx(1, "can't get addr for %s", servername
);
346 bcopy(hep
->h_addr
, (char *)&server_ipa
, sizeof(server_ipa
));
351 * Go into background and disassociate from controlling terminal.
352 * XXX - This is not the POSIX way (Should use setsid). -gwr
360 n
= open(_PATH_TTY
, O_RDWR
);
362 ioctl(n
, TIOCNOTTY
, NULL
);
365 #endif /* TIOCNOTTY */
372 * Nuke any timeout value
377 * Here, bootpd would do:
387 if ((s
= socket(AF_INET
, SOCK_DGRAM
, 0)) < 0) {
388 report(LOG_ERR
, "socket: %s", get_network_errmsg());
392 * Get server's listening port number
394 servp
= getservbyname("bootps", "udp");
396 bootps_port
= ntohs((u_short
) servp
->s_port
);
398 bootps_port
= (u_short
) IPPORT_BOOTPS
;
400 "bootps/udp: unknown service -- using port %d",
405 * Bind socket to BOOTPS port.
407 bind_addr
.sin_family
= AF_INET
;
408 bind_addr
.sin_port
= htons(bootps_port
);
409 bind_addr
.sin_addr
.s_addr
= INADDR_ANY
;
410 if (bind(s
, (struct sockaddr
*) &bind_addr
,
411 sizeof(bind_addr
)) < 0)
413 report(LOG_ERR
, "bind: %s", get_network_errmsg());
416 } /* if standalone */
418 * Get destination port number so we can reply to client
420 servp
= getservbyname("bootpc", "udp");
422 bootpc_port
= ntohs(servp
->s_port
);
425 "bootpc/udp: unknown service -- using port %d",
427 bootpc_port
= (u_short
) IPPORT_BOOTPC
;
430 /* no signal catchers */
433 * Process incoming requests.
442 nfound
= select(s
+ 1, (fd_set
*)&readfds
, NULL
, NULL
,
443 (timeout
) ? &tv
: NULL
);
445 if (errno
!= EINTR
) {
446 report(LOG_ERR
, "select: %s", get_errmsg());
450 if (!(readfds
& (1 << s
))) {
451 report(LOG_INFO
, "exiting after %ld minutes of inactivity",
452 actualtimeout
.tv_sec
/ 60);
455 ra_len
= sizeof(recv_addr
);
456 n
= recvfrom(s
, pktbuf
, MAX_MSG_SIZE
, 0,
457 (struct sockaddr
*) &recv_addr
, &ra_len
);
462 report(LOG_INFO
, "recvd pkt from IP addr %s",
463 inet_ntoa(recv_addr
.sin_addr
));
465 if (n
< sizeof(struct bootp
)) {
467 report(LOG_INFO
, "received short packet");
489 * Print "usage" message and exit
496 "usage: bootpgw [-d level] [-i] [-s] [-t timeout] server\n");
497 fprintf(stderr
, "\t -d n\tset debug level\n");
498 fprintf(stderr
, "\t -h n\tset max hop count\n");
499 fprintf(stderr
, "\t -i\tforce inetd mode (run as child of inetd)\n");
500 fprintf(stderr
, "\t -s\tforce standalone mode (run without inetd)\n");
501 fprintf(stderr
, "\t -t n\tset inetd exit timeout to n minutes\n");
502 fprintf(stderr
, "\t -w n\tset min wait time (secs)\n");
509 * Process BOOTREQUEST packet.
511 * Note, this just forwards the request to a real server.
516 struct bootp
*bp
= (struct bootp
*) pktbuf
;
520 /* XXX - SLIP init: Set bp_ciaddr = recv_addr here? */
523 report(LOG_INFO
, "request from %s",
524 inet_ntoa(recv_addr
.sin_addr
));
526 /* Has the client been waiting long enough? */
527 secs
= ntohs(bp
->bp_secs
);
531 /* Has this packet hopped too many times? */
533 if (++hops
> maxhops
) {
534 report(LOG_NOTICE
, "reqest from %s reached hop limit",
535 inet_ntoa(recv_addr
.sin_addr
));
541 * Here one might discard a request from the same subnet as the
542 * real server, but we can assume that the real server will send
543 * a reply to the client before it waits for minwait seconds.
546 /* If gateway address is not set, put in local interface addr. */
547 if (bp
->bp_giaddr
.s_addr
== 0) {
549 struct sockaddr_in
*sip
;
552 * XXX - This picks the wrong interface when the receive addr
553 * is the broadcast address. There is no portable way to
554 * find out which interface a broadcast was received on. -gwr
555 * (Thanks to <walker@zk3.dec.com> for finding this bug!)
557 ifr
= getif(s
, &recv_addr
.sin_addr
);
559 report(LOG_NOTICE
, "no interface for request from %s",
560 inet_ntoa(recv_addr
.sin_addr
));
563 sip
= (struct sockaddr_in
*) &(ifr
->ifr_addr
);
564 bp
->bp_giaddr
= sip
->sin_addr
;
567 * XXX - Just set "giaddr" to our "official" IP address.
568 * RFC 1532 says giaddr MUST be set to the address of the
569 * interface on which the request was received. Setting
570 * it to our "default" IP address is not strictly correct,
571 * but is good enough to allow the real BOOTP server to
572 * get the reply back here. Then, before we forward the
573 * reply to the client, the giaddr field is corrected.
574 * (In case the client uses giaddr, which it should not.)
577 bp
->bp_giaddr
= my_ip_addr
;
581 * XXX - DHCP says to insert a subnet mask option into the
582 * options area of the request (if vendor magic == std).
585 /* Set up socket address for send. */
586 send_addr
.sin_family
= AF_INET
;
587 send_addr
.sin_port
= htons(bootps_port
);
588 send_addr
.sin_addr
.s_addr
= server_ipa
;
590 /* Send reply with same size packet as request used. */
591 if (sendto(s
, pktbuf
, pktlen
, 0,
592 (struct sockaddr
*) &send_addr
,
593 sizeof(send_addr
)) < 0)
595 report(LOG_ERR
, "sendto: %s", get_network_errmsg());
602 * Process BOOTREPLY packet.
607 struct bootp
*bp
= (struct bootp
*) pktbuf
;
609 struct sockaddr_in
*sip
;
614 report(LOG_INFO
, " reply for %s",
615 inet_ntoa(bp
->bp_yiaddr
));
617 /* Make sure client is directly accessible. */
618 ifr
= getif(s
, &(bp
->bp_yiaddr
));
620 report(LOG_NOTICE
, "no interface for reply to %s",
621 inet_ntoa(bp
->bp_yiaddr
));
624 #if 1 /* Experimental (see BUG above) */
625 /* #ifdef CATER_TO_OLD_CLIENTS ? */
627 * The giaddr field has been set to our "default" IP address
628 * which might not be on the same interface as the client.
629 * In case the client looks at giaddr, (which it should not)
630 * giaddr is now set to the address of the correct interface.
632 sip
= (struct sockaddr_in
*) &(ifr
->ifr_addr
);
633 bp
->bp_giaddr
= sip
->sin_addr
;
636 /* Set up socket address for send to client. */
637 send_addr
.sin_family
= AF_INET
;
638 send_addr
.sin_addr
= bp
->bp_yiaddr
;
639 send_addr
.sin_port
= htons(bootpc_port
);
641 /* Create an ARP cache entry for the client. */
644 if (len
> MAXHADDRLEN
)
646 haf
= (int) bp
->bp_htype
;
648 haf
= HTYPE_ETHERNET
;
651 report(LOG_INFO
, "setarp %s - %s",
652 inet_ntoa(bp
->bp_yiaddr
), haddrtoa(ha
, len
));
653 setarp(s
, &bp
->bp_yiaddr
, haf
, ha
, len
);
655 /* Send reply with same size packet as request used. */
656 if (sendto(s
, pktbuf
, pktlen
, 0,
657 (struct sockaddr
*) &send_addr
,
658 sizeof(send_addr
)) < 0)
660 report(LOG_ERR
, "sendto: %s", get_network_errmsg());