]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[cachedhcp] Retain cached DHCPACK after startup if not already consumed 844/head
authorMichael Brown <mcb30@ipxe.org>
Thu, 22 Dec 2022 15:12:34 +0000 (15:12 +0000)
committerMichael Brown <mcb30@ipxe.org>
Thu, 22 Dec 2022 15:12:34 +0000 (15:12 +0000)
We currently free an unclaimed cached DHCPACK immediately after
startup, in order to free up memory.  This prevents the cached DHCPACK
from being applied to a device that is created after startup, such as
a VLAN device created via the "vcreate" command.

Retain any unclaimed DHCPACK after startup to allow it to be matched
against (and applied to) any device that gets created at runtime.
Free the DHCPACK during shutdown if it still remains unclaimed, in
order to exit with memory cleanly freed.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/core/cachedhcp.c

index ef2146626f2814a24729bec51d56a2fe25cfc1dc..60213f02d182101f64b5509a33e87ba722bdff32 100644 (file)
@@ -246,31 +246,49 @@ int cachedhcp_record ( struct cached_dhcp_packet *cache, unsigned int vlan,
 }
 
 /**
- * Cached DHCPACK startup function
+ * Cached DHCP packet startup function
  *
  */
 static void cachedhcp_startup ( void ) {
 
        /* Apply cached ProxyDHCPOFFER, if any */
        cachedhcp_apply ( &cached_proxydhcp, NULL );
+       cachedhcp_free ( &cached_proxydhcp );
 
        /* Apply cached PXEBSACK, if any */
        cachedhcp_apply ( &cached_pxebs, NULL );
+       cachedhcp_free ( &cached_pxebs );
 
-       /* Free any remaining cached packets */
+       /* Report unclaimed DHCPACK, if any.  Do not free yet, since
+        * it may still be claimed by a dynamically created device
+        * such as a VLAN device.
+        */
        if ( cached_dhcpack.dhcppkt ) {
                DBGC ( colour, "CACHEDHCP %s unclaimed\n",
                       cached_dhcpack.name );
        }
+}
+
+/**
+ * Cached DHCP packet shutdown function
+ *
+ * @v booting          System is shutting down for OS boot
+ */
+static void cachedhcp_shutdown ( int booting __unused ) {
+
+       /* Free cached DHCPACK, if any */
+       if ( cached_dhcpack.dhcppkt ) {
+               DBGC ( colour, "CACHEDHCP %s never claimed\n",
+                      cached_dhcpack.name );
+       }
        cachedhcp_free ( &cached_dhcpack );
-       cachedhcp_free ( &cached_proxydhcp );
-       cachedhcp_free ( &cached_pxebs );
 }
 
 /** Cached DHCPACK startup function */
 struct startup_fn cachedhcp_startup_fn __startup_fn ( STARTUP_LATE ) = {
        .name = "cachedhcp",
        .startup = cachedhcp_startup,
+       .shutdown = cachedhcp_shutdown,
 };
 
 /**