Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception on LDAP login without password
ClosedPublic

Authored by aklapper on Jul 26 2024, 14:46.
Tags
None
Referenced Files
F3347332: D25748.1743717135.diff
Wed, Apr 2, 21:52
F3339698: D25748.1743624338.diff
Tue, Apr 1, 20:05
F3334500: D25748.1743550076.diff
Mon, Mar 31, 23:27
F3332262: D25748.1743522148.diff
Mon, Mar 31, 15:42
F3329453: D25748.1743475320.diff
Mon, Mar 31, 02:42
F3325258: D25748.1743411235.diff
Sun, Mar 30, 08:53
F3324188: D25748.1743396513.diff
Sun, Mar 30, 04:48
F3320343: D25748.1743328077.diff
Sat, Mar 29, 09:47

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.

Note: This patch also corrects two further strlen() occurrences with the same pattern.

ERROR 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [/var/www/html/phorge/phorge/src/applications/auth/provider/PhabricatorLDAPAuthProvider.php:145]

Closes T15893

Test Plan

Create an LDAP user without setting their password; try to log into Phabricator with that user via the LDAP auth provider.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Thaaaanks. I wonder why $has_password has a dedicated variable, and instead $has_username has not 🤔

Feel free to introduce $has_username if your moon isn't full right now 👍 both for readability and micro-optimization.

This revision is now accepted and ready to land.Jul 26 2024, 16:09

The $password variable is not a string anymore in the line after. I guess it's not much more expensive to check if the string $username is nonempty versus comparing to a boolean value