Bug 53779

Summary: Pump fails with lease-time greater than 9.7 years
Product: [Retired] Red Hat Linux Reporter: Anders Blomdell <anders.blomdell>
Component: pumpAssignee: Eido Inoue <havill>
Status: CLOSED WONTFIX QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 7.1   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2004-08-23 20:33:56 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Anders Blomdell 2001-09-18 14:11:21 UTC
in dhcp.c:

        intf->renewAt = now + (7 * lease / 8);

will overflow if lease > 9.7 years (2^31/(3600*24*365*7)), this bug is
fixed with:

        intf->renewAt = now + lease - (lease >> 3);

Comment 1 Eido Inoue 2004-08-23 20:33:56 UTC
changes in cvs, not pkg.