Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13985456
D12756.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D12756.id.diff
View Options
diff --git a/src/applications/phid/query/PhabricatorObjectQuery.php b/src/applications/phid/query/PhabricatorObjectQuery.php
--- a/src/applications/phid/query/PhabricatorObjectQuery.php
+++ b/src/applications/phid/query/PhabricatorObjectQuery.php
@@ -104,6 +104,16 @@
}
private function loadObjectsByPHID(array $types, array $phids) {
+ // Don't try to load PHIDs which are already "in flight"; this prevents us
+ // from recursing indefinitely if policy checks or edges form a loop. We
+ // will decline to load the corresponding objects.
+ $in_flight = $this->getPHIDsInFlight();
+ foreach ($phids as $key => $phid) {
+ if (isset($in_flight[$phid])) {
+ unset($phids[$key]);
+ }
+ }
+
$results = array();
$workspace = $this->getObjectsFromWorkspace($phids);
@@ -119,6 +129,8 @@
return $results;
}
+ $this->putPHIDsInFlight($phids);
+
$groups = array();
foreach ($phids as $phid) {
$type = phid_get_type($phid);
diff --git a/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php b/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php
--- a/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php
+++ b/src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php
@@ -33,6 +33,7 @@
private $rawResultLimit;
private $capabilities;
private $workspace = array();
+ private $inFlightPHIDs = array();
private $policyFilteredPHIDs = array();
private $canUseApplication;
@@ -468,6 +469,39 @@
}
+ /**
+ * Mark PHIDs as in flight.
+ *
+ * PHIDs which are "in flight" are actively being queried for. Using this
+ * list can prevent infinite query loops by aborting queries which cycle.
+ *
+ * @param list<phid> List of PHIDs which are now in flight.
+ * @return this
+ */
+ public function putPHIDsInFlight(array $phids) {
+ foreach ($phids as $phid) {
+ $this->inFlightPHIDs[$phid] = $phid;
+ }
+ return $this;
+ }
+
+
+ /**
+ * Get PHIDs which are currently in flight.
+ *
+ * PHIDs which are "in flight" are actively being queried for.
+ *
+ * @return map<phid, phid> PHIDs currently in flight.
+ */
+ public function getPHIDsInFlight() {
+ $results = $this->inFlightPHIDs;
+ if ($this->getParentQuery()) {
+ $results += $this->getParentQuery()->getPHIDsInFlight();
+ }
+ return $results;
+ }
+
+
/* -( Policy Query Implementation )---------------------------------------- */
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Oct 21, 8:38 PM (4 w, 9 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6721024
Default Alt Text
D12756.id.diff (2 KB)
Attached To
Mode
D12756: Prevent Files from requiring infinite policy checks
Attached
Detach File
Event Timeline
Log In to Comment