DHCPv4 it would not be written to the new lease file.
[ISC-Bugs #37791]
+- When parsing dates for leases convert dates past 2038 to "never".
+ This avoids problems with integer overflows in the date and time
+ handling code for people that decide to use very large lease times
+ or add a lease entry with a date far in the future.
+ [ISC-Bugs #33056]
+
Changes since 4.1-ESV-R11rc2
- None
Common parser code for dhcpd and dhclient. */
/*
- * Copyright (c) 2004-2014 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2015 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this software for any
return((TIME)0);
}
+ /* If the year is 2038 or greater return the max time to avoid
+ * overflow issues. We could try and be more precise but there
+ * doesn't seem to be a good reason to worry about it and waste
+ * the cpu looking at the rest of the date. */
+ if (year >= 138)
+ return(MAX_TIME);
+
/* Guess the time value... */
guess = ((((((365 * (year - 70) + /* Days in years since '70 */
(year - 69) / 4 + /* Leap days since '70 */