summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2020-09-01 13:46:43 -0400
committerThomas Markwalder <tmark@isc.org>2022-01-12 08:35:26 -0500
commit2e914d00dd9db8d7c4d0a3dd42d8ce68bb030d3b (patch)
tree9bb2c08e4e329cf55018743f0e8956b5b7eaafd7
parent33e517615f8467a005de2ca2633f52bad323ec2b (diff)
downloadisc-dhcp-2e914d00dd9db8d7c4d0a3dd42d8ce68bb030d3b.tar.gz
[#92] Max startup lease size now only checked on 32-bit OSes92-isc-dhcp-service-may-not-start-due-dhcp-lease-file-bigger-than-2-gb
modified: RELNOTES server/confpars.c
-rw-r--r--RELNOTES4
-rw-r--r--server/confpars.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/RELNOTES b/RELNOTES
index bbf81570..2a681989 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -119,6 +119,10 @@ and the client Linux script sample was updated.
client script exits abnormally (i.e. crashes).
[Gitlab #123]
+- The limit on the size of lease file that can be loaded at start up
+ is now only enforced on 32-bit systems.
+ [Gitlab #64]
+
Changes since 4.4.2b1 (Bug Fixes)
- Added a clarification on DHCPINFORMs and server authority to
diff --git a/server/confpars.c b/server/confpars.c
index 4f0b58ee..e2216685 100644
--- a/server/confpars.c
+++ b/server/confpars.c
@@ -3,7 +3,7 @@
Parser for dhcpd config file... */
/*
- * Copyright (c) 2004-2019 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2020 by Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* This Source Code Form is subject to the terms of the Mozilla Public
@@ -142,7 +142,7 @@ isc_result_t read_conf_file (const char *filename, struct group *group,
if (lseek (file, (off_t)0, SEEK_SET) < 0)
goto boom;
/* Can't handle files greater than 2^31-1. */
- if (flen > 0x7FFFFFFFUL)
+ if ((sizeof(void*) < 8) && flen > 0x7FFFFFFFUL)
log_fatal ("%s: file is too long to buffer.", filename);
ulen = flen;