Fix how password hashes are stored and retrieved in DbUserBackend

This commit is contained in:
Johannes Meyer 2014-11-04 15:52:09 +01:00
parent 0db658b7f3
commit 7569c55796
1 changed files with 24 additions and 21 deletions

View File

@ -4,6 +4,7 @@
namespace Icinga\Authentication\Backend; namespace Icinga\Authentication\Backend;
use PDO;
use Icinga\Authentication\UserBackend; use Icinga\Authentication\UserBackend;
use Icinga\Data\Db\DbConnection; use Icinga\Data\Db\DbConnection;
use Icinga\User; use Icinga\User;
@ -49,7 +50,7 @@ class DbUserBackend extends UserBackend
*/ */
public function hasUser(User $user) public function hasUser(User $user)
{ {
$select = new Zend_Db_Select($this->conn->getConnection()); $select = new Zend_Db_Select($this->conn->getDbAdapter());
$row = $select->from('icingaweb_user', array(new Zend_Db_Expr(1))) $row = $select->from('icingaweb_user', array(new Zend_Db_Expr(1)))
->where('name = ?', $user->getUsername()) ->where('name = ?', $user->getUsername())
->query()->fetchObject(); ->query()->fetchObject();
@ -66,28 +67,33 @@ class DbUserBackend extends UserBackend
*/ */
public function addUser($username, $password, $active = true) public function addUser($username, $password, $active = true)
{ {
$passwordHash = $this->hashPassword($password);
$stmt = $this->conn->getDbAdapter()->prepare( $stmt = $this->conn->getDbAdapter()->prepare(
'INSERT INTO icingaweb_user VALUES (:name, :active, :password_hash, now(), DEFAULT);' 'INSERT INTO icingaweb_user VALUES (:name, :active, :password_hash, now(), DEFAULT);'
); );
$stmt->execute(array( $stmt->bindParam(':name', $username, PDO::PARAM_STR);
':name' => $username, $stmt->bindParam(':active', $active, PDO::PARAM_INT);
':active' => (int) $active, $stmt->bindParam(':password_hash', $passwordHash, PDO::PARAM_LOB);
':password_hash' => $this->hashPassword($password) $stmt->execute();
));
} }
/** /**
* Fetch the row for the given user from the database * Fetch the hashed password for the given user
* *
* @param string $username The name of the user to fetch * @param string $username The name of the user
* *
* @return stdClass|null NULL in case the user does not exist * @return string
*/ */
public function getUser($username) protected function getPasswordHash($username)
{ {
$select = new Zend_Db_Select($this->conn->getConnection()); $stmt = $this->conn->getDbAdapter()->prepare(
$row = $select->from('icingaweb_user')->where('name = ?', $username)->query()->fetchObject(); 'SELECT password_hash FROM icingaweb_user WHERE name = :name AND active = 1'
return $row === false ? null : $row; );
$stmt->execute(array(':name' => $username));
$stmt->bindColumn(1, $lob, PDO::PARAM_LOB);
$stmt->fetch(PDO::FETCH_BOUND);
return is_resource($lob) ? stream_get_contents($lob) : $lob;
} }
/** /**
@ -103,13 +109,10 @@ class DbUserBackend extends UserBackend
public function authenticate(User $user, $password) public function authenticate(User $user, $password)
{ {
try { try {
$userData = $this->getUser($user->getUsername()); $passwordHash = $this->getPasswordHash($user->getUsername());
if ($userData === null || ! $userData->active) { $passwordSalt = $this->getSalt($passwordHash);
return false; $hashToCompare = $this->hashPassword($password, $passwordSalt);
} return $hashToCompare === $passwordHash;
$hashToCompare = $this->hashPassword($password, $this->getSalt($userData->password_hash));
return $hashToCompare === $userData->password_hash;
} catch (Exception $e) { } catch (Exception $e) {
throw new AuthenticationException( throw new AuthenticationException(
'Failed to authenticate user "%s" against backend "%s". An exception was thrown:', 'Failed to authenticate user "%s" against backend "%s". An exception was thrown:',
@ -164,7 +167,7 @@ class DbUserBackend extends UserBackend
*/ */
public function count() public function count()
{ {
$select = new Zend_Db_Select($this->conn->getConnection()); $select = new Zend_Db_Select($this->conn->getDbAdapter());
$row = $select->from( $row = $select->from(
'icingaweb_user', 'icingaweb_user',
array('count' => 'COUNT(*)') array('count' => 'COUNT(*)')