Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exceptions to render the Account Creation page
ClosedPublic

Authored by aklapper on Apr 27 2023, 07:51.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 01:53
Unknown Object (File)
Thu, Apr 11, 00:39
Unknown Object (File)
Mon, Apr 8, 21:38
Unknown Object (File)
Mon, Apr 8, 21:27
Unknown Object (File)
Mon, Apr 8, 09:54
Unknown Object (File)
Mon, Apr 8, 04:30
Unknown Object (File)
Wed, Apr 3, 16:20
Unknown Object (File)
Mon, Apr 1, 23:46

Details

Summary

Fix numerous PHP 8.1 "strlen(null)" exceptions which block rendering the initial Account
Creation page in a fresh Phorge installation.

The strlen() was used in Phabricator to check if a generic value was a non-empty string.
For this reason, Phorge adopts phutil_nonempty_string() that checks that.

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

Closes T15279

Test Plan

After these code changes the account creation page got displayed (though without CSS and JS).

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Note that this has some inevitable overlap with D25132.

src/applications/auth/controller/PhabricatorAuthRegisterController.php
21

✅ The input value is probably safe to be assumed as string or NULL since it comes from $request->getURIData('akey')

src/applications/base/controller/PhabricatorController.php
77

✅ The input value is probably safe to be assumed as string or NULL

src/applications/config/check/PhabricatorDaemonsSetupCheck.php
56 ↗(On Diff #534)

✅ The input value is safe to be assumed as string or NULL

src/view/page/PhabricatorStandardPageView.php
183 ↗(On Diff #534)

This returns a string

191 ↗(On Diff #534)

✅ The input value is probably safe to be assumed as string or NULL

src/view/page/menu/PhabricatorMainMenuView.php
336 ↗(On Diff #534)

✅ The input value is safe to be assumed as string or NULL

./src/applications/config/custom/PhabricatorCustomLogoConfigType.php
public static function getLogoWordmark() {
  $logo = PhabricatorEnv::getEnvConfig('ui.logo'); // this can return NULL or an array
  return idx($logo, 'wordmarkText'); // this can return a string or NULL
}
valerio.bozzolan added inline comments.
src/view/form/control/AphrontFormControl.php
175

The problem with if($error) is that it discards errors message like "0" and Evan is sad.

Probably this is a good example for phutil_nonempty_scalar() since it accepts booleans and other stuff. But we need to merge this before:

D25117: phutil_nonempty_scalar(): don't throw when receiving a boolean scalar

@avivey what do you think about?

Thanks. I have a very small concern on AphrontFormControl.php:50 but really anything important. A simple if is probably just elegant in that case since the string "0" or the number 0 are not useful error messages that should be shown to a frontend.

I start accepting this as O1 since such a severe crash in PHP8.1 doesn't justify not trying to manage it as best we can, and you did it.

sgtm

src/applications/auth/controller/PhabricatorAuthRegisterController.php
247

✅ It's OK to assume a username as string or as NULL (default). Alien values will be reported and this is OK.

249

✅ It's really OK to assume a username as string or as NULL (default). Alien values will be reported and this is OK.

src/view/form/control/AphrontFormControl.php
190

✅ The input value is probably safe to be assumed as string or NULL. Alien values will be reported and that is OK.

I checked 30+ usages and the label is probably always a raw string containing HTML for example and I have not noticed objects with toString() methods.

Average usage example:

->setLabel(pht('Subscribers'))
206

✅ The input value is probably safe to be assumed as string or NULL. Alien values will be reported and that is OK.

I checked 30+ usages and the caption is always a raw string containing HTML for example and I have not noticed objects with toString() methods.

Average usage example:

->setCaption(
  pht('Example: %s', phutil_tag('tt', array(), 'JIS-3, JIS-9'))))
This revision is now accepted and ready to land.Apr 29 2023, 08:52
This revision was landed with ongoing or failed builds.Apr 29 2023, 19:55
This revision was automatically updated to reflect the committed changes.