Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception which blocks rendering Upload SSH Public key settings dialog
ClosedPublic

Authored by aklapper on Apr 30 2023, 18:15.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 27, 20:31
Unknown Object (File)
Thu, Apr 25, 14:37
Unknown Object (File)
Thu, Apr 25, 13:34
Unknown Object (File)
Thu, Apr 25, 13:34
Unknown Object (File)
Thu, Apr 25, 13:12
Unknown Object (File)
Thu, Apr 25, 13:04
Unknown Object (File)
Thu, Apr 11, 10:44
Unknown Object (File)
Thu, Apr 11, 09:56

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.

Closes T15311

Test Plan

Applied this change (on top of D25144, D25145, D25146, D25147, D25151,
D25152, D25153) and Upload SSH Public key dialog rendered in web browser.

Diff Detail

Repository
rP Phorge
Branch
D25161 (branched from master)
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 311
Build 311: arc lint + arc unit

Event Timeline

Thanks

Tested locally creating SSH key with and without a name. No implosions! Yuppie!

yesyes

src/applications/auth/controller/PhabricatorAuthSSHKeyEditController.php
57

✅ I checked $v_name with phlog() to verify that the input domain was null or a string. The phutil_nonempty_string() will report alien values and that is OK.

This revision is now accepted and ready to land.Apr 30 2023, 20:48