about summary refs log tree commit diff
path: root/sourcecodes/remove_variables.php
diff options
context:
space:
mode:
authorClaude Sonnet 52026-08-17 19:26:43 +0000
committerFrederick Muriuki Muriithi2026-08-17 14:53:08 -0500
commit9cae7ea19c7c744a1ed2bd997571ec1b516a0d32 (patch)
treece73195519a319bb0dc72d75df4d77a8ac584141 /sourcecodes/remove_variables.php
parent4825da8e49c302392fe6018862dfcdd6f91c6192 (diff)
downloadBNW-9cae7ea19c7c744a1ed2bd997571ec1b516a0d32.tar.gz
Guard fopen() results with a false-check before fwrite/fprintf/fclose
On PHP 7.4, calling fwrite()/fprintf()/fclose() with a false handle
(a failed fopen(), e.g. from a bad path, missing directory, or
permissions issue) just emits a warning and no-ops. On PHP 8.0+, these
functions require a resource argument and throw an uncaught TypeError
instead, turning what used to be a silent degradation into a fatal
crash of the whole request.

This patch wraps every fopen()-then-write call site in the codebase
(18 files) with an `if ($handle !== false) { ... }` check, matching
the existing pattern used elsewhere in the codebase. Where the same
$fpvar handle is threaded through shared helper functions
(enter_ban_list/banlist/whitelist, duplicated across
remove_variables_processing.php, remove_variables_processing_default.php,
modify_structure_learning.php and tier_description_processing_gom.php),
the guard was added inside those functions too for consistency, even
though the call sites are currently dead/commented-out in three of the
four files — so the same landmine doesn't reappear if that code is
ever re-enabled.

Verified empirically against PHP 8.3.28: fopen() on an unwritable path
followed by fwrite() on the resulting `false` throws
  TypeError: fwrite(): Argument #1 ($stream) must be of type resource, false given
without the guard; with the guard, the call is skipped instead of
crashing. The normal (successful fopen) path was also re-run through
mat_structure.php's structure_change() and still produces identical
output to before the change.

Reviewed by: Frederick M Muriithi <fredmanglis@gmail.com>
Diffstat (limited to 'sourcecodes/remove_variables.php')
-rw-r--r--sourcecodes/remove_variables.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/sourcecodes/remove_variables.php b/sourcecodes/remove_variables.php
index 0fd30136..0d925050 100644
--- a/sourcecodes/remove_variables.php
+++ b/sourcecodes/remove_variables.php
@@ -69,17 +69,23 @@ $maxplist=$node-1;
 //print default number of parents
 $pfile=$dir.$keyval."parent.txt";
 $parentf=fopen($pfile,"w");
-fwrite($parentf,"$parent_number\n");
+if ($parentf !== false) {
+  fwrite($parentf,"$parent_number\n");
+}
 
 //print default number of k for model averaging
 $kfile=$dir.$keyval."k.txt";
 $kf=fopen($kfile,"w");
-fwrite($kf,"$k_number\n");
+if ($kf !== false) {
+  fwrite($kf,"$k_number\n");
+}
 
 //print model averaging threshold
 $thrfile=$dir.$keyval."thr.txt";
 $kf=fopen($thrfile,"w");
-fwrite($kf,"$structure_thr\n");
+if ($kf !== false) {
+  fwrite($kf,"$structure_thr\n");
+}
 
 //////////////////Check execution time//////////////////////////////////////////////
 $keyval=valid_keyval($keyval);