Page MenuHomePhabricator

Fix an error in the PolicyFilter algorithm
ClosedPublic

Authored by epriestley on Dec 5 2013, 10:59 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 23, 7:37 AM
Unknown Object (File)
Fri, Apr 19, 12:04 PM
Unknown Object (File)
Wed, Apr 10, 7:10 AM
Unknown Object (File)
Thu, Apr 4, 11:04 AM
Unknown Object (File)
Tue, Apr 2, 7:31 AM
Unknown Object (File)
Sun, Mar 31, 2:03 AM
Unknown Object (File)
Feb 1 2024, 8:01 AM
Unknown Object (File)
Dec 28 2023, 1:40 PM
Subscribers
Tokens
"Grey Medal" token, awarded by btrahan.

Details

Reviewers
btrahan
Commits
Restricted Diffusion Commit
rPfaaaff0b6f60: Fix an error in the PolicyFilter algorithm
Summary

PhabricatorPolicyFilter has a bug right now where it lets through objects incorrectly if:

  • the query requests two or more policies;
  • the object satisfies at least one of those policies; and
  • policy exceptions are not enabled.

This would be bad, but there's only one call in the codebase which satisfies all of these conditions, in the Maniphest batch editor. And it's moot anyway because edit operations get another policy check slightly later. So there is no policy/security impact from this flaw.

(The next diff relies on this behavior, which is how I caught it.)

Test Plan
  • Added a failing unit test and made it pass.
  • Grepped the codebase for requireCapabilities() and verified that there is no security impact. Basically, 99% of callsites use executeOne(), which throws anyway and moots the filtering.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped