Skip to content

Commit 56f0f81

Browse files
committedFeb 3, 2025··
fix: On windows, don't cache system is not 64 bits for the service lifetime
1 parent 6c515f9 commit 56f0f81

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎Changes

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Revision history for GLPI agent
22

33
1.13 not yet released
44

5+
inventory:
6+
* On windows, don't cache system is not 64 bits for the service lifetime as this can
7+
be the result of a failed WMI call at the service start.
8+
59
netdiscovery/netinventory:
610
* PR #836 from @eduardomozart: Enhanced HP wireless printers by reporting wifi ports
711
as wireless

‎lib/GLPI/Agent/Tools/Win32.pm

+9-1
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,18 @@ our @EXPORT = qw(
7676
);
7777

7878
my $_is64bits = undef;
79+
my $_is64bits_expiration;
80+
my $_is64bits_nextcheck = 1;
7981
sub is64bit {
8082
# Cache is64bit() result in a private module variable to avoid a lot of wmi
8183
# calls and as this value won't change during the service/task lifetime
82-
return $_is64bits if defined($_is64bits);
84+
# Anyway we make the cached value expirable if we didn't detected it as 64bits
85+
# and in the case WMI request failed. This guaranty to retry the request and not
86+
# cache a wrong value for the service lifetime in some rare cases.
87+
return $_is64bits if $_is64bits ||
88+
($_is64bits_expiration && time < $_is64bits_expiration);
89+
$_is64bits_expiration = time + $_is64bits_nextcheck;
90+
$_is64bits_nextcheck = $_is64bits_nextcheck >= 2000 ? 3600 : $_is64bits_nextcheck * 2;
8391
return $_is64bits =
8492
any { $_->{AddressWidth} eq 64 }
8593
getWMIObjects(

0 commit comments

Comments
 (0)
Please sign in to comment.