2 * QEMU BOOTP/DHCP server
4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu/osdep.h"
28 /* Windows ntohl() returns an u_long value.
29 * Add a type cast to match the format strings. */
30 # define ntohl(n) ((uint32_t)ntohl(n))
33 /* XXX: only DHCP is supported */
35 #define LEASE_TIME (24 * 3600)
37 static const uint8_t rfc1533_cookie
[] = { RFC1533_COOKIE
};
40 #define DPRINTF(fmt, ...) \
41 do if (slirp_debug & DBG_CALL) { fprintf(dfd, fmt, ## __VA_ARGS__); fflush(dfd); } while (0)
43 #define DPRINTF(fmt, ...) do{}while(0)
46 static BOOTPClient
*get_new_addr(Slirp
*slirp
, struct in_addr
*paddr
,
47 const uint8_t *macaddr
)
52 for(i
= 0; i
< NB_BOOTP_CLIENTS
; i
++) {
53 bc
= &slirp
->bootp_clients
[i
];
54 if (!bc
->allocated
|| !memcmp(macaddr
, bc
->macaddr
, 6))
59 bc
= &slirp
->bootp_clients
[i
];
61 paddr
->s_addr
= slirp
->vdhcp_startaddr
.s_addr
+ htonl(i
);
65 static BOOTPClient
*request_addr(Slirp
*slirp
, const struct in_addr
*paddr
,
66 const uint8_t *macaddr
)
68 uint32_t req_addr
= ntohl(paddr
->s_addr
);
69 uint32_t dhcp_addr
= ntohl(slirp
->vdhcp_startaddr
.s_addr
);
72 if (req_addr
>= dhcp_addr
&&
73 req_addr
< (dhcp_addr
+ NB_BOOTP_CLIENTS
)) {
74 bc
= &slirp
->bootp_clients
[req_addr
- dhcp_addr
];
75 if (!bc
->allocated
|| !memcmp(macaddr
, bc
->macaddr
, 6)) {
83 static BOOTPClient
*find_addr(Slirp
*slirp
, struct in_addr
*paddr
,
84 const uint8_t *macaddr
)
89 for(i
= 0; i
< NB_BOOTP_CLIENTS
; i
++) {
90 if (!memcmp(macaddr
, slirp
->bootp_clients
[i
].macaddr
, 6))
95 bc
= &slirp
->bootp_clients
[i
];
97 paddr
->s_addr
= slirp
->vdhcp_startaddr
.s_addr
+ htonl(i
);
101 static void dhcp_decode(const struct bootp_t
*bp
, int *pmsg_type
,
102 struct in_addr
*preq_addr
)
104 const uint8_t *p
, *p_end
;
108 preq_addr
->s_addr
= htonl(0L);
111 p_end
= p
+ DHCP_OPT_LEN
;
112 if (memcmp(p
, rfc1533_cookie
, 4) != 0)
117 if (tag
== RFC1533_PAD
) {
119 } else if (tag
== RFC1533_END
) {
126 DPRINTF("dhcp: tag=%d len=%d\n", tag
, len
);
129 case RFC2132_MSG_TYPE
:
133 case RFC2132_REQ_ADDR
:
135 memcpy(&(preq_addr
->s_addr
), p
, 4);
144 if (*pmsg_type
== DHCPREQUEST
&& preq_addr
->s_addr
== htonl(0L) &&
145 bp
->bp_ciaddr
.s_addr
) {
146 memcpy(&(preq_addr
->s_addr
), &bp
->bp_ciaddr
, 4);
150 static void bootp_reply(Slirp
*slirp
, const struct bootp_t
*bp
)
152 BOOTPClient
*bc
= NULL
;
155 struct sockaddr_in saddr
, daddr
;
156 struct in_addr preq_addr
;
157 int dhcp_msg_type
, val
;
159 uint8_t client_ethaddr
[ETH_ALEN
];
161 /* extract exact DHCP msg type */
162 dhcp_decode(bp
, &dhcp_msg_type
, &preq_addr
);
163 DPRINTF("bootp packet op=%d msgtype=%d", bp
->bp_op
, dhcp_msg_type
);
164 if (preq_addr
.s_addr
!= htonl(0L))
165 DPRINTF(" req_addr=%08" PRIx32
"\n", ntohl(preq_addr
.s_addr
));
169 if (dhcp_msg_type
== 0)
170 dhcp_msg_type
= DHCPREQUEST
; /* Force reply for old BOOTP clients */
172 if (dhcp_msg_type
!= DHCPDISCOVER
&&
173 dhcp_msg_type
!= DHCPREQUEST
)
176 /* Get client's hardware address from bootp request */
177 memcpy(client_ethaddr
, bp
->bp_hwaddr
, ETH_ALEN
);
183 m
->m_data
+= IF_MAXLINKHDR
;
184 rbp
= (struct bootp_t
*)m
->m_data
;
185 m
->m_data
+= sizeof(struct udpiphdr
);
186 memset(rbp
, 0, sizeof(struct bootp_t
));
188 if (dhcp_msg_type
== DHCPDISCOVER
) {
189 if (preq_addr
.s_addr
!= htonl(0L)) {
190 bc
= request_addr(slirp
, &preq_addr
, client_ethaddr
);
192 daddr
.sin_addr
= preq_addr
;
197 bc
= get_new_addr(slirp
, &daddr
.sin_addr
, client_ethaddr
);
199 DPRINTF("no address left\n");
203 memcpy(bc
->macaddr
, client_ethaddr
, ETH_ALEN
);
204 } else if (preq_addr
.s_addr
!= htonl(0L)) {
205 bc
= request_addr(slirp
, &preq_addr
, client_ethaddr
);
207 daddr
.sin_addr
= preq_addr
;
208 memcpy(bc
->macaddr
, client_ethaddr
, ETH_ALEN
);
210 /* DHCPNAKs should be sent to broadcast */
211 daddr
.sin_addr
.s_addr
= 0xffffffff;
214 bc
= find_addr(slirp
, &daddr
.sin_addr
, bp
->bp_hwaddr
);
216 /* if never assigned, behaves as if it was already
217 assigned (windows fix because it remembers its address) */
222 /* Update ARP table for this IP address */
223 arp_table_add(slirp
, daddr
.sin_addr
.s_addr
, client_ethaddr
);
225 saddr
.sin_addr
= slirp
->vhost_addr
;
226 saddr
.sin_port
= htons(BOOTP_SERVER
);
228 daddr
.sin_port
= htons(BOOTP_CLIENT
);
230 rbp
->bp_op
= BOOTP_REPLY
;
231 rbp
->bp_xid
= bp
->bp_xid
;
234 memcpy(rbp
->bp_hwaddr
, bp
->bp_hwaddr
, ETH_ALEN
);
236 rbp
->bp_yiaddr
= daddr
.sin_addr
; /* Client IP address */
237 rbp
->bp_siaddr
= saddr
.sin_addr
; /* Server IP address */
240 memcpy(q
, rfc1533_cookie
, 4);
244 DPRINTF("%s addr=%08" PRIx32
"\n",
245 (dhcp_msg_type
== DHCPDISCOVER
) ? "offered" : "ack'ed",
246 ntohl(daddr
.sin_addr
.s_addr
));
248 if (dhcp_msg_type
== DHCPDISCOVER
) {
249 *q
++ = RFC2132_MSG_TYPE
;
252 } else /* DHCPREQUEST */ {
253 *q
++ = RFC2132_MSG_TYPE
;
258 if (slirp
->bootp_filename
)
259 snprintf((char *)rbp
->bp_file
, sizeof(rbp
->bp_file
), "%s",
260 slirp
->bootp_filename
);
262 *q
++ = RFC2132_SRV_ID
;
264 memcpy(q
, &saddr
.sin_addr
, 4);
267 *q
++ = RFC1533_NETMASK
;
269 memcpy(q
, &slirp
->vnetwork_mask
, 4);
272 if (!slirp
->restricted
) {
273 *q
++ = RFC1533_GATEWAY
;
275 memcpy(q
, &saddr
.sin_addr
, 4);
280 memcpy(q
, &slirp
->vnameserver_addr
, 4);
284 *q
++ = RFC2132_LEASE_TIME
;
286 val
= htonl(LEASE_TIME
);
290 if (*slirp
->client_hostname
) {
291 val
= strlen(slirp
->client_hostname
);
292 *q
++ = RFC1533_HOSTNAME
;
294 memcpy(q
, slirp
->client_hostname
, val
);
298 if (slirp
->vdnssearch
) {
299 size_t spaceleft
= sizeof(rbp
->bp_vend
) - (q
- rbp
->bp_vend
);
300 val
= slirp
->vdnssearch_len
;
301 if (val
+ 1 > spaceleft
) {
302 g_warning("DHCP packet size exceeded, "
303 "omitting domain-search option.");
305 memcpy(q
, slirp
->vdnssearch
, val
);
310 static const char nak_msg
[] = "requested address not available";
312 DPRINTF("nak'ed addr=%08" PRIx32
"\n", ntohl(preq_addr
.s_addr
));
314 *q
++ = RFC2132_MSG_TYPE
;
318 *q
++ = RFC2132_MESSAGE
;
319 *q
++ = sizeof(nak_msg
) - 1;
320 memcpy(q
, nak_msg
, sizeof(nak_msg
) - 1);
321 q
+= sizeof(nak_msg
) - 1;
325 daddr
.sin_addr
.s_addr
= 0xffffffffu
;
327 m
->m_len
= sizeof(struct bootp_t
) -
328 sizeof(struct ip
) - sizeof(struct udphdr
);
329 udp_output(NULL
, m
, &saddr
, &daddr
, IPTOS_LOWDELAY
);
332 void bootp_input(struct mbuf
*m
)
334 struct bootp_t
*bp
= mtod(m
, struct bootp_t
*);
336 if (bp
->bp_op
== BOOTP_REQUEST
) {
337 bootp_reply(m
->slirp
, bp
);