]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
- Rotate the lease file when running in v6 mode.
authorShawn Routhier <sar@isc.org>
Tue, 15 May 2012 21:07:41 +0000 (21:07 +0000)
committerShawn Routhier <sar@isc.org>
Tue, 15 May 2012 21:07:41 +0000 (21:07 +0000)
  [ISC-Bugs #24887]

RELNOTES
includes/dhcpd.h
server/db.c
server/dhcpv6.c
server/mdb6.c

index 5b352e37cdd9e547e2f13d8783e6a378c80ec1e2..18a4ee109b3088f5b5aeb7d6cac1fff5f9108f33 100644 (file)
--- a/RELNOTES
+++ b/RELNOTES
@@ -39,6 +39,13 @@ The system has only been tested on Linux, FreeBSD, and Solaris, and may not
 work on other platforms. Please report any problems and suggested fixes to
 <dhcp-users@isc.org>.
 
+                       Changes since 4.2.4brc1
+
+- Rotate the lease file when running in v6 mode.
+  Thanks to Christoph Moench-Tegeder at Astaro for the
+  report and the first version of the patch.
+  [ISC-Bugs #24887]
+
                        Changes since 4.2.4b1
 
 - None
index f5486483628a04c6bfcac671395f6758eefa28b0..0ba5984a2bdd7f91b730cd023d0d66c677548e1f 100644 (file)
@@ -2779,6 +2779,7 @@ int write_billing_class (struct class *);
 void commit_leases_timeout (void *);
 void commit_leases_readerdry(void *);
 int commit_leases (void);
+int commit_leases_timed (void);
 void db_startup (int);
 int new_lease_file (void);
 int group_writer (struct group_object *);
index d41aa485d45a92728863c86d58625669d849dc28..d32a88ef71d839cd5a7461e1283dab9d18df229f 100644 (file)
@@ -36,6 +36,8 @@
 #include <ctype.h>
 #include <errno.h>
 
+#define LEASE_REWRITE_PERIOD 3600
+
 static isc_result_t write_binding_scope(FILE *db_file, struct binding *bnd,
                                        char *prepend);
 
@@ -1002,7 +1004,7 @@ int commit_leases ()
        /* If we haven't rewritten the lease database in over an
           hour, rewrite it now.  (The length of time should probably
           be configurable. */
-       if (count && cur_time - write_time > 3600) {
+       if (count && cur_time - write_time > LEASE_REWRITE_PERIOD) {
                count = 0;
                write_time = cur_time;
                new_lease_file ();
@@ -1010,6 +1012,21 @@ int commit_leases ()
        return 1;
 }
 
+/*
+ * rewrite the lease file about once an hour
+ * This is meant as a quick patch for ticket 24887.  It allows
+ * us to rotate the v6 lease file without adding too many fsync()
+ * calls.  In the future wes should revisit this area and add
+ * something similar to the delayed ack code for v4.
+ */
+int commit_leases_timed()
+{
+       if ((count != 0) && (cur_time - write_time > LEASE_REWRITE_PERIOD)) {
+               return (commit_leases());
+       }
+       return (1);
+}
+
 void db_startup (testp)
        int testp;
 {
index 70f398115acd60561b0912593023818cadeb0325..afdf3bb50035934ad80c112d0137e48cd97e6cd7 100644 (file)
@@ -1207,6 +1207,10 @@ pick_v6_prefix(struct iasubopt **pref, int plen,
 }
 
 /*
+ *! \file server/dhcpv6.c
+ *
+ * \brief construct a reply containing information about a client's lease
+ *
  * lease_to_client() is called from several messages to construct a
  * reply that contains all that we know about the client's correct lease
  * (or projected lease).
@@ -1228,8 +1232,15 @@ pick_v6_prefix(struct iasubopt **pref, int plen,
  * validate and echo back any contents that can be.  If the client-supplied
  * data does not error out (on renew/rebind as above), but we did not send
  * any addresses, attempt to allocate one.
+ *
+ * At the end of the this function we call commit_leases_timed() to
+ * fsync and rotate the file as necessary.  commit_leases_timed() will
+ * check that we have written at least one lease to the file and that
+ * some time has passed before doing any fsync or file rewrite so we
+ * don't bother tracking if we did a write_ia during this function.
  */
 /* TODO: look at client hints for lease times */
+
 static void
 lease_to_client(struct data_string *reply_ret,
                struct packet *packet, 
@@ -1493,6 +1504,9 @@ lease_to_client(struct data_string *reply_ret,
        memcpy(reply_ret->buffer->data, reply.buf.data, reply.cursor);
        reply_ret->data = reply_ret->buffer->data;
 
+       /* If appropriate commit and rotate the lease file */
+       (void) commit_leases_timed();
+
       exit:
        /* Cleanup. */
        if (reply.shared != NULL)
index e6d0a1adecbfd958ce04ac5edb43a18b57ab4d50..f82e301d37e73c33778adf3f797e6ae34137450a 100644 (file)
@@ -1714,6 +1714,13 @@ lease_timeout_support(void *vpool) {
                iasubopt_dereference(&lease, MDL);
        }
 
+       /*
+        * If appropriate commit and rotate the lease file
+        * As commit_leases_timed() checks to see if we've done any writes
+        * we don't bother tracking if this function called write _ia
+        */
+       (void) commit_leases_timed();
+
        /*
         * Do some cleanup of our expired leases.
         */