Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception for "/bin/auth cache-pkcs8" without parameter
ClosedPublic

Authored by aklapper on Apr 16 2024, 08:50.
Tags
None
Referenced Files
F2976249: D25587.1739586807.diff
Fri, Feb 14, 02:33
F2962764: D25587.1739181915.diff
Sun, Feb 9, 10:05
F2962763: D25587.1739181911.diff
Sun, Feb 9, 10:05
F2962762: D25587.1739181908.diff
Sun, Feb 9, 10:05
F2950074: D25587.1738711379.diff
Mon, Feb 3, 23:22
F2944587: D25587.1738273112.diff
Wed, Jan 29, 21:38
F2937027: D25587.1737945339.diff
Sun, Jan 26, 02:35
F2917339: D25587.1737505571.diff
Jan 21 2025, 00:26

Details

Summary

strlen() was used in Phabricator to check if a generic value is a non-empty string.
This behavior is deprecated since PHP 8.1. Phorge adopts phutil_nonempty_string() as a replacement.

Note: this may highlight other absurd input values that might be worth correcting
instead of just ignoring. If phutil_nonempty_string() throws an exception in your
instance, report it to Phorge to evaluate and fix that specific corner case.

This patch also fixes another similar strlen() occurrence in the same source file.

ERROR 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [/var/www/html/phorge/phorge/src/applications/auth/management/PhabricatorAuthManagementCachePKCS8Workflow.php:35]
Test Plan

Run ../phorge/bin/auth cache-pkcs8: Get no strlen() error anymore but only expected output Usage Exception: You must specify the path to a public keyfile with --public.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable