fix: cleantemp cron doesn't remove tempnam()-created inventory temp files - #25100
Open
TarekRemo wants to merge 2 commits into
Open
fix: cleantemp cron doesn't remove tempnam()-created inventory temp files#25100TarekRemo wants to merge 2 commits into
TarekRemo wants to merge 2 commits into
Conversation
Rom1-B
reviewed
Aug 6, 2026
| $temp_files = glob(GLPI_INVENTORY_DIR . '/*.{' . implode(',', $conf->knownInventoryExtensions()) . '}', GLOB_BRACE); | ||
|
|
||
| // Files created by `tempnam()` while an inventory is being processed (see `Inventory::setData()`). | ||
| $temp_files = array_merge($temp_files, glob(GLPI_INVENTORY_DIR . '/{xml_,json_}*', GLOB_BRACE)); |
Contributor
There was a problem hiding this comment.
Can you add a test creating an old tempnam()-style file and asserting cronCleantemp() removes it?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Checklist before requesting a review
Please delete options that are not relevant.
Description
Inventory::setData()writes the raw inventory payload withtempnam(GLPI_INVENTORY_DIR, 'xml_'|'json_'), producing extension-less filenames (xml_XXXXXXXX, json_XXXXXXXX) under_inventories/. ThecleantempCronTask (Inventory::cronCleantemp()) was never updated to match this new naming, so these files are silently never cleaned, even when the task is enabled.tempnam()naming pattern alongside the legacy one, and guards the removal withis_file().