]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet/in_bootp.c
2 * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1988-1999 Apple Computer, Inc. All Rights Reserved
28 * - be a BOOTP client over a particular interface to retrieve
29 * the IP address, netmask, and router
33 * Modification History
35 * February 19, 1999 Dieter Siegmund (dieter@apple.com)
36 * - completely rewritten
39 #include <sys/param.h>
40 #include <sys/types.h>
41 #include <mach/boolean.h>
42 #include <sys/kernel.h>
43 #include <sys/errno.h>
46 #include <sys/ioctl.h>
49 #include <sys/vnode.h>
50 #include <sys/socket.h>
51 #include <sys/socketvar.h>
52 #include <sys/uio_internal.h>
54 #include <net/if_dl.h>
55 #include <net/if_types.h>
56 #include <net/route.h>
57 #include <netinet/in.h>
58 #include <netinet/in_systm.h>
59 #include <netinet/if_ether.h>
60 #include <netinet/ip.h>
61 #include <netinet/ip_var.h>
62 #include <netinet/udp.h>
63 #include <netinet/udp_var.h>
64 #include <netinet/ip_icmp.h>
65 #include <netinet/bootp.h>
66 #include <sys/systm.h>
67 #include <sys/malloc.h>
68 #include <netinet/dhcp_options.h>
70 #include <kern/kern_types.h>
71 #include <kern/kalloc.h>
74 #define dprintf(x) printf x;
75 #else /* !BOOTP_DEBUG */
77 #endif /* BOOTP_DEBUG */
79 int bootp(struct ifnet
* ifp
, struct in_addr
* iaddr_p
, int max_try
,
80 struct in_addr
* netmask_p
, struct in_addr
* router_p
,
82 struct mbuf
* ip_pkt_to_mbuf(caddr_t pkt
, int pktsize
);
83 int receive_packet(struct socket
* so
, caddr_t pp
, int psize
, int * actual_size
);
86 /* ip address formatting macros */
87 #define IP_FORMAT "%d.%d.%d.%d"
88 #define IP_CH(ip) ((u_char *)ip)
89 #define IP_LIST(ip) IP_CH(ip)[0],IP_CH(ip)[1],IP_CH(ip)[2],IP_CH(ip)[3]
91 static __inline__
struct sockaddr_in
94 struct sockaddr_in blank
= { sizeof(struct sockaddr_in
), AF_INET
};
98 static __inline__
void
99 print_reply(struct bootp
*bp
, __unused
int bp_len
)
104 if (bp
->bp_op
== BOOTREQUEST
) printf("BOOTREQUEST\n");
105 else if (bp
->bp_op
== BOOTREPLY
) printf("BOOTREPLY\n");
113 printf("bp_htype = %d\n", i
);
116 printf("bp_hlen = %d\n", len
);
119 printf("bp_hops = %d\n", i
);
121 printf("bp_xid = %lu\n", bp
->bp_xid
);
123 printf("bp_secs = %u\n", bp
->bp_secs
);
125 printf("bp_ciaddr = " IP_FORMAT
"\n", IP_LIST(&bp
->bp_ciaddr
));
126 printf("bp_yiaddr = " IP_FORMAT
"\n", IP_LIST(&bp
->bp_yiaddr
));
127 printf("bp_siaddr = " IP_FORMAT
"\n", IP_LIST(&bp
->bp_siaddr
));
128 printf("bp_giaddr = " IP_FORMAT
"\n", IP_LIST(&bp
->bp_giaddr
));
130 printf("bp_chaddr = ");
131 for (j
= 0; j
< len
; j
++)
133 i
= bp
->bp_chaddr
[j
];
135 if (j
< (len
- 1)) printf(":");
139 printf("bp_sname = %s\n", bp
->bp_sname
);
140 printf("bp_file = %s\n", bp
->bp_file
);
143 static __inline__
void
144 print_reply_short(struct bootp
*bp
, __unused
int bp_len
)
146 printf("bp_yiaddr = " IP_FORMAT
"\n", IP_LIST(&bp
->bp_yiaddr
));
147 printf("bp_sname = %s\n", bp
->bp_sname
);
151 static __inline__
long
152 random_range(long bottom
, long top
)
154 long number
= top
- bottom
+ 1;
155 long range_size
= LONG_MAX
/ number
;
156 return (((long)random()) / range_size
+ bottom
);
160 * Function: make_bootp_request
162 * Create a "blank" bootp packet.
165 make_bootp_request(struct bootp_packet
* pkt
,
166 u_char
* hwaddr
, u_char hwtype
, u_char hwlen
)
168 char rfc_magic
[4] = RFC_OPTIONS_MAGIC
;
170 bzero(pkt
, sizeof (*pkt
));
171 pkt
->bp_ip
.ip_v
= IPVERSION
;
172 pkt
->bp_ip
.ip_hl
= sizeof (struct ip
) >> 2;
174 pkt
->bp_ip
.ip_id
= ip_randomid();
176 pkt
->bp_ip
.ip_id
= htons(ip_id
++);
178 pkt
->bp_ip
.ip_ttl
= MAXTTL
;
179 pkt
->bp_ip
.ip_p
= IPPROTO_UDP
;
180 pkt
->bp_ip
.ip_src
.s_addr
= 0;
181 pkt
->bp_ip
.ip_dst
.s_addr
= htonl(INADDR_BROADCAST
);
182 pkt
->bp_udp
.uh_sport
= htons(IPPORT_BOOTPC
);
183 pkt
->bp_udp
.uh_dport
= htons(IPPORT_BOOTPS
);
184 pkt
->bp_udp
.uh_sum
= 0;
185 pkt
->bp_bootp
.bp_op
= BOOTREQUEST
;
186 pkt
->bp_bootp
.bp_htype
= hwtype
;
187 pkt
->bp_bootp
.bp_hlen
= hwlen
;
188 pkt
->bp_bootp
.bp_ciaddr
.s_addr
= 0;
189 bcopy(hwaddr
, pkt
->bp_bootp
.bp_chaddr
, hwlen
);
190 bcopy(rfc_magic
, pkt
->bp_bootp
.bp_vend
, sizeof(rfc_magic
));
191 pkt
->bp_bootp
.bp_vend
[4] = dhcptag_end_e
;
192 pkt
->bp_udp
.uh_ulen
= htons(sizeof(pkt
->bp_udp
) + sizeof(pkt
->bp_bootp
));
193 pkt
->bp_ip
.ip_len
= htons(sizeof(struct ip
) + ntohs(pkt
->bp_udp
.uh_ulen
));
194 pkt
->bp_ip
.ip_sum
= 0;
199 * Function: ip_pkt_to_mbuf
201 * Put the given IP packet into an mbuf, calculate the
205 ip_pkt_to_mbuf(caddr_t pkt
, int pktsize
)
210 m
= (struct mbuf
*)m_devget(pkt
, pktsize
, 0, 0, 0);
212 printf("bootp: ip_pkt_to_mbuf: m_devget failed\n");
215 m
->m_flags
|= M_BCAST
;
216 /* Compute the checksum */
217 ip
= mtod(m
, struct ip
*);
219 ip
->ip_sum
= in_cksum(m
, sizeof (struct ip
));
223 static __inline__ u_char
*
224 link_address(struct sockaddr_dl
* dl_p
)
226 return (dl_p
->sdl_data
+ dl_p
->sdl_nlen
);
229 static __inline__
void
230 link_print(struct sockaddr_dl
* dl_p
)
235 printf("len %d index %d family %d type 0x%x nlen %d alen %d"
236 " slen %d addr ", dl_p
->sdl_len
,
237 dl_p
->sdl_index
, dl_p
->sdl_family
, dl_p
->sdl_type
,
238 dl_p
->sdl_nlen
, dl_p
->sdl_alen
, dl_p
->sdl_slen
);
240 for (i
= 0; i
< dl_p
->sdl_alen
; i
++)
241 printf("%s%x", i
? ":" : "",
242 (link_address(dl_p
))[i
]);
247 static struct sockaddr_dl
*
248 link_from_ifnet(struct ifnet
* ifp
)
250 struct ifaddr
* addr
;
252 /* for (addr = ifp->if_addrlist; addr; addr = addr->ifa_next) */
254 ifnet_lock_shared(ifp
);
255 TAILQ_FOREACH(addr
, &ifp
->if_addrhead
, ifa_link
) {
256 if (addr
->ifa_addr
->sa_family
== AF_LINK
) {
257 struct sockaddr_dl
* dl_p
= (struct sockaddr_dl
*)(addr
->ifa_addr
);
259 ifnet_lock_done(ifp
);
263 ifnet_lock_done(ifp
);
268 * Function: send_bootp_request
270 * Send the request by calling the interface's output routine
271 * bypassing routing code.
274 send_bootp_request(struct ifnet
* ifp
, __unused
struct socket
* so
,
275 struct bootp_packet
* pkt
)
278 struct sockaddr_in sin
;
280 /* Address to send to */
282 sin
.sin_port
= htons(IPPORT_BOOTPS
);
283 sin
.sin_addr
.s_addr
= INADDR_BROADCAST
;
285 m
= ip_pkt_to_mbuf((caddr_t
)pkt
, sizeof(*pkt
));
286 return dlil_output(ifp
, PF_INET
, m
, 0, (struct sockaddr
*)&sin
, 0);
290 * Function: receive_packet
292 * Return a received packet or an error if none available.
295 receive_packet(struct socket
* so
, caddr_t pp
, int psize
, int * actual_size
)
300 char uio_buf
[ UIO_SIZEOF(1) ];
302 auio
= uio_createwithbuffer(1, 0, UIO_SYSSPACE
, UIO_READ
,
303 &uio_buf
[0], sizeof(uio_buf
));
304 uio_addiov(auio
, CAST_USER_ADDR_T(pp
), psize
);
305 rcvflg
= MSG_WAITALL
;
307 error
= soreceive(so
, (struct sockaddr
**) 0, auio
, 0, 0, &rcvflg
);
308 *actual_size
= psize
- uio_resid(auio
);
313 * Function: bootp_timeout
315 * Wakeup the process waiting for something on a socket.
318 bootp_timeout(void * arg
)
320 struct socket
* * socketflag
= (struct socket
* *)arg
;
321 struct socket
* so
= *socketflag
;
323 dprintf(("bootp: timeout\n"));
327 sowakeup(so
, &so
->so_rcv
);
328 socket_unlock(so
, 1);
333 * Function: rate_packet
335 * Return an integer point rating value for the given bootp packet.
336 * If yiaddr non-zero, the packet gets a rating of 1.
337 * Another point is given if the packet contains the subnet mask,
338 * and another if the router is present.
340 #define GOOD_RATING 3
341 static __inline__
int
342 rate_packet(__unused
struct bootp
* pkt
, __unused
int pkt_size
, dhcpol_t
* options_p
)
347 if (dhcpol_find(options_p
, dhcptag_subnet_mask_e
, &len
, NULL
) != NULL
) {
350 if (dhcpol_find(options_p
, dhcptag_router_e
, &len
, NULL
) != NULL
) {
356 #define INITIAL_WAIT_SECS 4
357 #define MAX_WAIT_SECS 64
358 #define GATHER_TIME_SECS 2
359 #define RAND_TICKS (hz) /* one second */
362 * Function: bootp_loop
364 * Do the actual BOOTP protocol.
365 * The algorithm sends out a packet, waits for a response.
366 * We try max_try times, waiting in an exponentially increasing
367 * amount of time. Once we receive a good response, we start
368 * a new time period called the "gather time", during which we
369 * either find the perfect packet (one that has ip, mask and router)
370 * or we continue to gather responses. At the end of the gather period,
371 * we use the best response gathered.
374 bootp_loop(struct socket
* so
, struct ifnet
* ifp
, int max_try
,
375 struct in_addr
* iaddr_p
, struct in_addr
* netmask_p
,
376 struct in_addr
* router_p
)
378 struct timeval current_time
;
379 struct sockaddr_dl
* dl_p
;
384 struct bootp_packet
* request
= NULL
;
385 struct bootp
* reply
= NULL
;
386 int reply_size
= DHCP_PACKET_MIN
;
387 struct timeval start_time
;
390 struct socket
* timeflag
;
391 int wait_ticks
= INITIAL_WAIT_SECS
* hz
;
393 /* get the hardware address from the interface */
394 dl_p
= link_from_ifnet(ifp
);
396 printf("bootp: can't get link address\n");
400 printf("bootp: h/w addr ");
403 hwaddr
= link_address(dl_p
);
404 hwlen
= dl_p
->sdl_alen
;
405 switch (dl_p
->sdl_type
) {
407 hwtype
= ARPHRD_ETHER
;
410 printf("bootp: hardware type %d not supported\n",
412 panic("bootp: hardware type not supported");
416 /* set transaction id and remember the start time */
417 microtime(&start_time
);
418 current_time
= start_time
;
421 /* make a request/reply packet */
422 request
= (struct bootp_packet
*)kalloc(sizeof(*request
));
423 make_bootp_request(request
, hwaddr
, hwtype
, hwlen
);
424 reply
= (struct bootp
*)kalloc(reply_size
);
426 printf("bootp: sending request");
427 for (retry
= 0; retry
< max_try
; retry
++) {
428 int gather_count
= 0;
431 /* Send the request */
433 request
->bp_bootp
.bp_secs
= htons((u_short
)(current_time
.tv_sec
434 - start_time
.tv_sec
));
435 request
->bp_bootp
.bp_xid
= htonl(xid
);
436 error
= send_bootp_request(ifp
, so
, request
);
441 wait_ticks
+= random_range(-RAND_TICKS
, RAND_TICKS
);
442 dprintf(("bootp: waiting %d ticks\n", wait_ticks
));
443 timeout((timeout_fcn_t
)bootp_timeout
, &timeflag
, wait_ticks
);
448 error
= receive_packet(so
, (caddr_t
)reply
, reply_size
, &n
);
450 dprintf(("\nbootp: received packet\n"));
451 if (ntohl(reply
->bp_xid
) == xid
452 && reply
->bp_yiaddr
.s_addr
453 && bcmp(reply
->bp_chaddr
, hwaddr
, hwlen
) == 0) {
458 print_reply_short(reply
, n
);
459 #endif /* BOOTP_DEBUG */
460 (void)dhcpol_parse_packet(&options
, (struct dhcp
*)reply
,
462 rating
= rate_packet(reply
, n
, &options
);
463 if (rating
> last_rating
) {
467 *iaddr_p
= reply
->bp_yiaddr
;
468 ip
= (struct in_addr
*)
469 dhcpol_find(&options
,
470 dhcptag_subnet_mask_e
, &len
, NULL
);
474 ip
= (struct in_addr
*)
475 dhcpol_find(&options
, dhcptag_router_e
, &len
, NULL
);
479 printf("%sbootp: got "
480 "response from %s (" IP_FORMAT
")\n",
481 last_rating
== 0 ? "\n" : "",
483 IP_LIST(&reply
->bp_siaddr
));
485 dhcpol_free(&options
);
486 if (rating
>= GOOD_RATING
) {
487 untimeout((timeout_fcn_t
)bootp_timeout
, &timeflag
);
490 if (gather_count
== 0) {
491 untimeout((timeout_fcn_t
)bootp_timeout
, &timeflag
);
493 timeout((timeout_fcn_t
)bootp_timeout
, &timeflag
,
494 hz
* GATHER_TIME_SECS
);
499 dprintf(("bootp: packet ignored\n"));
502 else if ((error
!= EWOULDBLOCK
)) {
505 else if (timeflag
== NULL
) { /* timed out */
507 dprintf(("bootp: gathering time has expired"));
508 goto done
; /* we have a packet */
514 error
= sbwait(&so
->so_rcv
);
515 socket_unlock(so
, 1);
518 if (error
&& (error
!= EWOULDBLOCK
)) {
519 dprintf(("bootp: failed to receive packets: %d\n", error
));
520 untimeout((timeout_fcn_t
)bootp_timeout
, &timeflag
);
524 if (wait_ticks
> (MAX_WAIT_SECS
* hz
))
525 wait_ticks
= MAX_WAIT_SECS
* hz
;
527 microtime(¤t_time
);
537 kfree(request
, sizeof (*request
));
539 kfree(reply
, reply_size
);
546 * Use the BOOTP protocol to resolve what our IP address should be
547 * on a particular interface.
549 int bootp(struct ifnet
* ifp
, struct in_addr
* iaddr_p
, int max_try
,
550 struct in_addr
* netmask_p
, struct in_addr
* router_p
,
553 boolean_t addr_set
= FALSE
;
556 struct socket
* so
= NULL
;
559 error
= socreate(AF_INET
, &so
, SOCK_DGRAM
, 0);
561 dprintf(("bootp: socreate failed %d\n", error
));
565 /* assign the all-zeroes address */
566 bzero(&ifr
, sizeof(ifr
));
567 sprintf(ifr
.ifr_name
, "%s%d", ifp
->if_name
, ifp
->if_unit
);
568 *((struct sockaddr_in
*)&ifr
.ifr_addr
) = blank_sin();
569 error
= ifioctl(so
, SIOCSIFADDR
, (caddr_t
)&ifr
, procp
);
571 dprintf(("bootp: SIOCSIFADDR all-zeroes IP failed: %d\n",
575 dprintf(("bootp: all-zeroes IP address assigned\n"));
578 { /* bind the socket */
579 struct sockaddr_in
* sin
;
581 sin
= _MALLOC(sizeof(struct sockaddr_in
), M_IFADDR
, M_WAIT
);
586 sin
->sin_len
= sizeof(struct sockaddr_in
);
587 sin
->sin_family
= AF_INET
;
588 sin
->sin_port
= htons(IPPORT_BOOTPC
);
589 sin
->sin_addr
.s_addr
= INADDR_ANY
;
590 error
= sobind(so
, (struct sockaddr
*) sin
);
594 dprintf(("bootp: sobind failed, %d\n", error
));
598 so
->so_state
|= SS_NBIO
;
599 socket_unlock(so
, 1);
601 /* do the protocol */
602 error
= bootp_loop(so
, ifp
, max_try
, iaddr_p
, netmask_p
, router_p
);
607 (void) ifioctl(so
, SIOCDIFADDR
, (caddr_t
) &ifr
, procp
);