Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception on History page of Diffusion repo after renaming default branch
ClosedPublic

Authored by aklapper on May 30 2023, 18:16.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 8, 07:27
Unknown Object (File)
Tue, Apr 2, 14:13
Unknown Object (File)
Mon, Apr 1, 01:55
Unknown Object (File)
Sun, Mar 31, 03:10
Unknown Object (File)
Sat, Mar 30, 00:58
Unknown Object (File)
Fri, Mar 29, 00:35
Unknown Object (File)
Wed, Mar 27, 17:01
Unknown Object (File)
Mar 21 2024, 13:01

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.

EXCEPTION: (RuntimeException) strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [<arcanist>/src/error/PhutilErrorHandler.php:261]
arcanist(head=arcpatch-D25250, ref.master=18554ea76ceb, ref.arcpatch-D25250=fade4603a799), phorge(head=master, ref.master=e11c5486c92b)
  #0 <#2> PhutilErrorHandler::handleError(integer, string, string, integer) called at [<phorge>/src/applications/repository/xaction/PhabricatorRepositoryDefaultBranchTransaction.php:25]

Closes T15434

Test Plan

After applying this change, after changing the name of the (previously empty) default branch of a Diffusion repository, and then going to the repository History at /diffusion/<someID>/manage/history/, the page renders correctly in the web browser instead of showing an exception.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

src/applications/repository/xaction/PhabricatorRepositoryDefaultBranchTransaction.php
20–25

Please update both conditions here as I think $new can also be null

speck requested changes to this revision.Jun 8 2023, 00:33
This revision now requires changes to proceed.Jun 8 2023, 00:33

Also pass $new to phutil_nonempty_string() and not only $old.
I'm not convinced that we should check $new and $old for === null here instead of using phutil_nonempty_string(). But of course you make the final decision.

These are likely fine. The reason for preferring null check instead is if there’s uncertainty that the values could ever be anything besides null or string. The nonemepty string check might reject something that was previously accepted, where an object that overrides __toString would have strlen and friends operate on the toString function but the object itself is still used/passed. In this case I think it’s likely fine.

This revision is now accepted and ready to land.Jun 8 2023, 11:08