Skip to content
Snippets Groups Projects
Commit 1bb4e43d authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2530936 by webflo: Ensure that the classloader prefix is really unique

parent 24219feb
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -170,7 +170,7 @@ public static function getHashSalt() { ...@@ -170,7 +170,7 @@ public static function getHashSalt() {
*/ */
public static function getApcuPrefix($identifier, $root, $site_path = '') { public static function getApcuPrefix($identifier, $root, $site_path = '') {
if (static::get('apcu_ensure_unique_prefix', TRUE)) { if (static::get('apcu_ensure_unique_prefix', TRUE)) {
return 'drupal.' . $identifier . '.' . hash_hmac('sha256', $identifier, static::get('hash_salt', $root . '/' . $site_path)); return 'drupal.' . $identifier . '.' . hash_hmac('sha256', $identifier, static::get('hash_salt') . '.' . $root . '/' . $site_path);
} }
return 'drupal.' . $identifier . '.' . Crypt::hashBase64($root . '/' . $site_path); return 'drupal.' . $identifier . '.' . Crypt::hashBase64($root . '/' . $site_path);
} }
......
...@@ -118,4 +118,17 @@ public function testSerialize() { ...@@ -118,4 +118,17 @@ public function testSerialize() {
serialize(new Settings([])); serialize(new Settings([]));
} }
/**
* Tests Settings::getApcuPrefix().
*
* @covers ::getApcuPrefix
*/
public function testGetApcuPrefix() {
$settings = new Settings(array('hash_salt' => 123));
$this->assertNotEquals($settings::getApcuPrefix('cache_test', '/test/a'), $settings::getApcuPrefix('cache_test', '/test/b'));
$settings = new Settings(array('hash_salt' => 123, 'apcu_ensure_unique_prefix' => FALSE));
$this->assertNotEquals($settings::getApcuPrefix('cache_test', '/test/a'), $settings::getApcuPrefix('cache_test', '/test/b'));
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment