[ticket/12574] Stop using passwords manager in apache provider

PHPBB3-12574
This commit is contained in:
Marc Alexander 2019-11-01 14:30:27 +01:00
parent 0d668fee36
commit 9e0c3fc81e
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
3 changed files with 55 additions and 61 deletions

View file

@ -29,9 +29,9 @@ services:
auth.provider.apache: auth.provider.apache:
class: phpbb\auth\provider\apache class: phpbb\auth\provider\apache
arguments: arguments:
- '@dbal.conn'
- '@config' - '@config'
- '@passwords.manager' - '@dbal.conn'
- '@language'
- '@request' - '@request'
- '@user' - '@user'
- '%core.root_path%' - '%core.root_path%'

View file

@ -13,34 +13,55 @@
namespace phpbb\auth\provider; namespace phpbb\auth\provider;
use phpbb\config\config;
use phpbb\db\driver\driver_interface;
use phpbb\language\language;
use phpbb\request\request_interface;
use phpbb\request\type_cast_helper;
use phpbb\user;
/** /**
* Apache authentication provider for phpBB3 * Apache authentication provider for phpBB3
*/ */
class apache extends \phpbb\auth\provider\base class apache extends base
{ {
/** /** @var config phpBB config */
* phpBB passwords manager protected $config;
*
* @var \phpbb\passwords\manager /** @var driver_interface Database object */
*/ protected $db;
protected $passwords_manager;
/** @var language Language object */
protected $language;
/** @var request_interface Request object */
protected $request;
/** @var user User object */
protected $user;
/** @var string Relative path to phpBB root */
protected $phpbb_root_path;
/** @var string PHP file extension */
protected $php_ext;
/** /**
* Apache Authentication Constructor * Apache Authentication Constructor
* *
* @param \phpbb\db\driver\driver_interface $db Database object * @param config $config Config object
* @param \phpbb\config\config $config Config object * @param driver_interface $db Database object
* @param \phpbb\passwords\manager $passwords_manager Passwords Manager object * @param language $language Language object
* @param \phpbb\request\request $request Request object * @param request_interface $request Request object
* @param \phpbb\user $user User object * @param user $user User object
* @param string $phpbb_root_path Relative path to phpBB root * @param string $phpbb_root_path Relative path to phpBB root
* @param string $php_ext PHP file extension * @param string $php_ext PHP file extension
*/ */
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \phpbb\request\request $request, \phpbb\user $user, $phpbb_root_path, $php_ext) public function __construct(config $config, driver_interface $db, language $language, request_interface $request, user $user, $phpbb_root_path, $php_ext)
{ {
$this->db = $db;
$this->config = $config; $this->config = $config;
$this->passwords_manager = $passwords_manager; $this->db = $db;
$this->language = $language;
$this->request = $request; $this->request = $request;
$this->user = $user; $this->user = $user;
$this->phpbb_root_path = $phpbb_root_path; $this->phpbb_root_path = $phpbb_root_path;
@ -52,9 +73,9 @@ class apache extends \phpbb\auth\provider\base
*/ */
public function init() public function init()
{ {
if (!$this->request->is_set('PHP_AUTH_USER', \phpbb\request\request_interface::SERVER) || $this->user->data['username'] !== htmlspecialchars_decode($this->request->server('PHP_AUTH_USER'))) if (!$this->request->is_set('PHP_AUTH_USER', request_interface::SERVER) || $this->user->data['username'] !== htmlspecialchars_decode($this->request->server('PHP_AUTH_USER')))
{ {
return $this->user->lang['APACHE_SETUP_BEFORE_USE']; return $this->language->lang('APACHE_SETUP_BEFORE_USE');
} }
return false; return false;
} }
@ -83,7 +104,7 @@ class apache extends \phpbb\auth\provider\base
); );
} }
if (!$this->request->is_set('PHP_AUTH_USER', \phpbb\request\request_interface::SERVER)) if (!$this->request->is_set('PHP_AUTH_USER', request_interface::SERVER))
{ {
return array( return array(
'status' => LOGIN_ERROR_EXTERNAL_AUTH, 'status' => LOGIN_ERROR_EXTERNAL_AUTH,
@ -137,7 +158,7 @@ class apache extends \phpbb\auth\provider\base
return array( return array(
'status' => LOGIN_SUCCESS_CREATE_PROFILE, 'status' => LOGIN_SUCCESS_CREATE_PROFILE,
'error_msg' => false, 'error_msg' => false,
'user_row' => $this->user_row($php_auth_user, $php_auth_pw), 'user_row' => $this->user_row($php_auth_user),
); );
} }
@ -154,7 +175,7 @@ class apache extends \phpbb\auth\provider\base
*/ */
public function autologin() public function autologin()
{ {
if (!$this->request->is_set('PHP_AUTH_USER', \phpbb\request\request_interface::SERVER)) if (!$this->request->is_set('PHP_AUTH_USER', request_interface::SERVER))
{ {
return array(); return array();
} }
@ -164,8 +185,8 @@ class apache extends \phpbb\auth\provider\base
if (!empty($php_auth_user) && !empty($php_auth_pw)) if (!empty($php_auth_user) && !empty($php_auth_pw))
{ {
set_var($php_auth_user, $php_auth_user, 'string', true); $type_cast_helper = new type_cast_helper();
set_var($php_auth_pw, $php_auth_pw, 'string', true); $type_cast_helper->set_var($php_auth_user, $php_auth_user, 'string', true);
$sql = 'SELECT * $sql = 'SELECT *
FROM ' . USERS_TABLE . " FROM ' . USERS_TABLE . "
@ -185,7 +206,7 @@ class apache extends \phpbb\auth\provider\base
} }
// create the user if he does not exist yet // create the user if he does not exist yet
user_add($this->user_row($php_auth_user, $php_auth_pw)); user_add($this->user_row($php_auth_user));
$sql = 'SELECT * $sql = 'SELECT *
FROM ' . USERS_TABLE . " FROM ' . USERS_TABLE . "
@ -208,11 +229,11 @@ class apache extends \phpbb\auth\provider\base
* function in order to create a user * function in order to create a user
* *
* @param string $username The username of the new user. * @param string $username The username of the new user.
* @param string $password The password of the new user. *
* @return array Contains data that can be passed directly to * @return array Contains data that can be passed directly to
* the user_add function. * the user_add function.
*/ */
private function user_row($username, $password) private function user_row($username)
{ {
// first retrieve default group id // first retrieve default group id
$sql = 'SELECT group_id $sql = 'SELECT group_id
@ -231,7 +252,7 @@ class apache extends \phpbb\auth\provider\base
// generate user account data // generate user account data
return array( return array(
'username' => $username, 'username' => $username,
'user_password' => $this->passwords_manager->hash($password), 'user_password' => '',
'user_email' => '', 'user_email' => '',
'group_id' => (int) $row['group_id'], 'group_id' => (int) $row['group_id'],
'user_type' => USER_NORMAL, 'user_type' => USER_NORMAL,
@ -246,7 +267,7 @@ class apache extends \phpbb\auth\provider\base
public function validate_session($user) public function validate_session($user)
{ {
// Check if PHP_AUTH_USER is set and handle this case // Check if PHP_AUTH_USER is set and handle this case
if ($this->request->is_set('PHP_AUTH_USER', \phpbb\request\request_interface::SERVER)) if ($this->request->is_set('PHP_AUTH_USER', request_interface::SERVER))
{ {
$php_auth_user = $this->request->server('PHP_AUTH_USER'); $php_auth_user = $this->request->server('PHP_AUTH_USER');

View file

@ -28,41 +28,14 @@ class phpbb_auth_provider_apache_test extends phpbb_database_test_case
$lang_loader = new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx); $lang_loader = new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx);
$lang = new \phpbb\language\language($lang_loader); $lang = new \phpbb\language\language($lang_loader);
$this->request = $this->createMock('\phpbb\request\request'); $this->request = $this->createMock('\phpbb\request\request');
$this->user = new \phpbb\user($lang, '\phpbb\datetime'); $this->user = new \phpbb\user($lang, '\phpbb\datetime');;
$driver_helper = new \phpbb\passwords\driver\helper($config);
$passwords_drivers = array(
'passwords.driver.bcrypt_2y' => new \phpbb\passwords\driver\bcrypt_2y($config, $driver_helper),
'passwords.driver.bcrypt' => new \phpbb\passwords\driver\bcrypt($config, $driver_helper),
'passwords.driver.salted_md5' => new \phpbb\passwords\driver\salted_md5($config, $driver_helper),
'passwords.driver.phpass' => new \phpbb\passwords\driver\phpass($config, $driver_helper),
);
$passwords_helper = new \phpbb\passwords\helper; $this->provider = new \phpbb\auth\provider\apache($config, $db, $lang, $this->request, $this->user, $phpbb_root_path, $phpEx);
// Set up passwords manager
$passwords_manager = new \phpbb\passwords\manager($config, $passwords_drivers, $passwords_helper, array_keys($passwords_drivers));
if (version_compare(PHP_VERSION, '5.3.7', '<'))
{
$this->password_hash = '$2a$10$e01Syh9PbJjUkio66eFuUu4FhCE2nRgG7QPc1JACalsPXcIuG2bbi';
}
else
{
$this->password_hash = '$2y$10$4RmpyVu2y8Yf/lP3.yQBquKvE54TCUuEDEBJYY6FDDFN3LcbCGz9i';
}
$this->provider = new \phpbb\auth\provider\apache($db, $config, $passwords_manager, $this->request, $this->user, $phpbb_root_path, $phpEx);
} }
public function getDataSet() public function getDataSet()
{ {
if ((version_compare(PHP_VERSION, '5.3.7', '<'))) return $this->createXMLDataSet(dirname(__FILE__).'/fixtures/user.xml');
{
return $this->createXMLDataSet(dirname(__FILE__).'/fixtures/user_533.xml');
}
else
{
return $this->createXMLDataSet(dirname(__FILE__).'/fixtures/user.xml');
}
} }
/** /**
@ -109,7 +82,7 @@ class phpbb_auth_provider_apache_test extends phpbb_database_test_case
'user_row' => array( 'user_row' => array(
'user_id' => '1', 'user_id' => '1',
'username' => 'foobar', 'username' => 'foobar',
'user_password' => $this->password_hash, 'user_password' => '$2y$10$4RmpyVu2y8Yf/lP3.yQBquKvE54TCUuEDEBJYY6FDDFN3LcbCGz9i',
'user_passchg' => '0', 'user_passchg' => '0',
'user_email' => 'example@example.com', 'user_email' => 'example@example.com',
'user_type' => '0', 'user_type' => '0',
@ -145,7 +118,7 @@ class phpbb_auth_provider_apache_test extends phpbb_database_test_case
'user_regdate' => '0', 'user_regdate' => '0',
'username' => 'foobar', 'username' => 'foobar',
'username_clean' => 'foobar', 'username_clean' => 'foobar',
'user_password' => $this->password_hash, 'user_password' => '$2y$10$4RmpyVu2y8Yf/lP3.yQBquKvE54TCUuEDEBJYY6FDDFN3LcbCGz9i',
'user_passchg' => '0', 'user_passchg' => '0',
'user_email' => 'example@example.com', 'user_email' => 'example@example.com',
'user_email_hash' => '0', 'user_email_hash' => '0',