summary refs log tree commit diff stats
path: root/slirp/bootp.c
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@web.de>2009-05-21 22:43:39 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-05-22 10:50:34 -0500
commit0928a95ffe91862938cee997c9e30602fa7884ab (patch)
treec8c9a26db198d6311fe1e2e7659d17978a5f9dfc /slirp/bootp.c
parentf8d926e9cd96e52ebcfd9ffdeab83c0d5e6b9622 (diff)
downloadfocaccia-qemu-0928a95ffe91862938cee997c9e30602fa7884ab.tar.gz
focaccia-qemu-0928a95ffe91862938cee997c9e30602fa7884ab.zip
slirp: Reassign same address to same DHCP client
In case a client restarts a DHCP recovery without releasing its old
address, reassign the same address to prevent consuming free addresses
and moving away from the standard client address.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Diffstat (limited to 'slirp/bootp.c')
-rw-r--r--slirp/bootp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/slirp/bootp.c b/slirp/bootp.c
index ae71e460b6..4e0082d2ca 100644
--- a/slirp/bootp.c
+++ b/slirp/bootp.c
@@ -49,13 +49,15 @@ if (slirp_debug & DBG_CALL) { fprintf(dfd, fmt, ##  __VA_ARGS__); fflush(dfd); }
 #define dprintf(fmt, ...)
 #endif
 
-static BOOTPClient *get_new_addr(struct in_addr *paddr)
+static BOOTPClient *get_new_addr(struct in_addr *paddr,
+                                 const uint8_t *macaddr)
 {
     BOOTPClient *bc;
     int i;
 
     for(i = 0; i < NB_ADDR; i++) {
-        if (!bootp_clients[i].allocated)
+        bc = &bootp_clients[i];
+        if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
             goto found;
     }
     return NULL;
@@ -192,7 +194,7 @@ static void bootp_reply(const struct bootp_t *bp)
         }
         if (!bc) {
          new_addr:
-            bc = get_new_addr(&daddr.sin_addr);
+            bc = get_new_addr(&daddr.sin_addr, client_ethaddr);
             if (!bc) {
                 dprintf("no address left\n");
                 return;