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 if (p
+ len
> p_end
) {
129 DPRINTF("dhcp: tag=%d len=%d\n", tag
, len
);
132 case RFC2132_MSG_TYPE
:
136 case RFC2132_REQ_ADDR
:
138 memcpy(&(preq_addr
->s_addr
), p
, 4);
147 if (*pmsg_type
== DHCPREQUEST
&& preq_addr
->s_addr
== htonl(0L) &&
148 bp
->bp_ciaddr
.s_addr
) {
149 memcpy(&(preq_addr
->s_addr
), &bp
->bp_ciaddr
, 4);
153 static void bootp_reply(Slirp
*slirp
, const struct bootp_t
*bp
)
155 BOOTPClient
*bc
= NULL
;
158 struct sockaddr_in saddr
, daddr
;
159 struct in_addr preq_addr
;
160 int dhcp_msg_type
, val
;
162 uint8_t client_ethaddr
[ETH_ALEN
];
164 /* extract exact DHCP msg type */
165 dhcp_decode(bp
, &dhcp_msg_type
, &preq_addr
);
166 DPRINTF("bootp packet op=%d msgtype=%d", bp
->bp_op
, dhcp_msg_type
);
167 if (preq_addr
.s_addr
!= htonl(0L))
168 DPRINTF(" req_addr=%08" PRIx32
"\n", ntohl(preq_addr
.s_addr
));
172 if (dhcp_msg_type
== 0)
173 dhcp_msg_type
= DHCPREQUEST
; /* Force reply for old BOOTP clients */
175 if (dhcp_msg_type
!= DHCPDISCOVER
&&
176 dhcp_msg_type
!= DHCPREQUEST
)
179 /* Get client's hardware address from bootp request */
180 memcpy(client_ethaddr
, bp
->bp_hwaddr
, ETH_ALEN
);
186 m
->m_data
+= IF_MAXLINKHDR
;
187 rbp
= (struct bootp_t
*)m
->m_data
;
188 m
->m_data
+= sizeof(struct udpiphdr
);
189 memset(rbp
, 0, sizeof(struct bootp_t
));
191 if (dhcp_msg_type
== DHCPDISCOVER
) {
192 if (preq_addr
.s_addr
!= htonl(0L)) {
193 bc
= request_addr(slirp
, &preq_addr
, client_ethaddr
);
195 daddr
.sin_addr
= preq_addr
;
200 bc
= get_new_addr(slirp
, &daddr
.sin_addr
, client_ethaddr
);
202 DPRINTF("no address left\n");
206 memcpy(bc
->macaddr
, client_ethaddr
, ETH_ALEN
);
207 } else if (preq_addr
.s_addr
!= htonl(0L)) {
208 bc
= request_addr(slirp
, &preq_addr
, client_ethaddr
);
210 daddr
.sin_addr
= preq_addr
;
211 memcpy(bc
->macaddr
, client_ethaddr
, ETH_ALEN
);
213 /* DHCPNAKs should be sent to broadcast */
214 daddr
.sin_addr
.s_addr
= 0xffffffff;
217 bc
= find_addr(slirp
, &daddr
.sin_addr
, bp
->bp_hwaddr
);
219 /* if never assigned, behaves as if it was already
220 assigned (windows fix because it remembers its address) */
225 /* Update ARP table for this IP address */
226 arp_table_add(slirp
, daddr
.sin_addr
.s_addr
, client_ethaddr
);
228 saddr
.sin_addr
= slirp
->vhost_addr
;
229 saddr
.sin_port
= htons(BOOTP_SERVER
);
231 daddr
.sin_port
= htons(BOOTP_CLIENT
);
233 rbp
->bp_op
= BOOTP_REPLY
;
234 rbp
->bp_xid
= bp
->bp_xid
;
237 memcpy(rbp
->bp_hwaddr
, bp
->bp_hwaddr
, ETH_ALEN
);
239 rbp
->bp_yiaddr
= daddr
.sin_addr
; /* Client IP address */
240 rbp
->bp_siaddr
= saddr
.sin_addr
; /* Server IP address */
243 memcpy(q
, rfc1533_cookie
, 4);
247 DPRINTF("%s addr=%08" PRIx32
"\n",
248 (dhcp_msg_type
== DHCPDISCOVER
) ? "offered" : "ack'ed",
249 ntohl(daddr
.sin_addr
.s_addr
));
251 if (dhcp_msg_type
== DHCPDISCOVER
) {
252 *q
++ = RFC2132_MSG_TYPE
;
255 } else /* DHCPREQUEST */ {
256 *q
++ = RFC2132_MSG_TYPE
;
261 if (slirp
->bootp_filename
)
262 snprintf((char *)rbp
->bp_file
, sizeof(rbp
->bp_file
), "%s",
263 slirp
->bootp_filename
);
265 *q
++ = RFC2132_SRV_ID
;
267 memcpy(q
, &saddr
.sin_addr
, 4);
270 *q
++ = RFC1533_NETMASK
;
272 memcpy(q
, &slirp
->vnetwork_mask
, 4);
275 if (!slirp
->restricted
) {
276 *q
++ = RFC1533_GATEWAY
;
278 memcpy(q
, &saddr
.sin_addr
, 4);
283 memcpy(q
, &slirp
->vnameserver_addr
, 4);
287 *q
++ = RFC2132_LEASE_TIME
;
289 val
= htonl(LEASE_TIME
);
293 if (*slirp
->client_hostname
) {
294 val
= strlen(slirp
->client_hostname
);
295 *q
++ = RFC1533_HOSTNAME
;
297 memcpy(q
, slirp
->client_hostname
, val
);
301 if (slirp
->vdnssearch
) {
302 size_t spaceleft
= sizeof(rbp
->bp_vend
) - (q
- rbp
->bp_vend
);
303 val
= slirp
->vdnssearch_len
;
304 if (val
+ 1 > spaceleft
) {
305 g_warning("DHCP packet size exceeded, "
306 "omitting domain-search option.");
308 memcpy(q
, slirp
->vdnssearch
, val
);
313 static const char nak_msg
[] = "requested address not available";
315 DPRINTF("nak'ed addr=%08" PRIx32
"\n", ntohl(preq_addr
.s_addr
));
317 *q
++ = RFC2132_MSG_TYPE
;
321 *q
++ = RFC2132_MESSAGE
;
322 *q
++ = sizeof(nak_msg
) - 1;
323 memcpy(q
, nak_msg
, sizeof(nak_msg
) - 1);
324 q
+= sizeof(nak_msg
) - 1;
328 daddr
.sin_addr
.s_addr
= 0xffffffffu
;
330 m
->m_len
= sizeof(struct bootp_t
) -
331 sizeof(struct ip
) - sizeof(struct udphdr
);
332 udp_output(NULL
, m
, &saddr
, &daddr
, IPTOS_LOWDELAY
);
335 void bootp_input(struct mbuf
*m
)
337 struct bootp_t
*bp
= mtod(m
, struct bootp_t
*);
339 if (bp
->bp_op
== BOOTP_REQUEST
) {
340 bootp_reply(m
->slirp
, bp
);