\Symfony\Component\HttpFoundation\Session\Storage\HandlerPdoSessionHandler

Session handler using a PDO connection to read and write data.

It works with MySQL, PostgreSQL, Oracle, SQL Server and SQLite and implements different locking strategies to handle concurrent access to the same session. Locking is necessary to prevent loss of data due to race conditions and to keep the session data consistent between read() and write(). With locking, requests for the same session will wait until the other one finished writing. For this reason it's best practice to close a session as early as possible to improve concurrency. PHPs internal files session handler also implements locking.

Attention: Since SQLite does not support row level locks but locks the whole database, it means only one session can be accessed at a time. Even different sessions would wait for another to finish. So saving session in SQLite should only be considered for development or prototypes.

Session data is a binary string that can contain non-printable characters like the null byte. For this reason it must be saved in a binary column in the database like BLOB in MySQL. Saving it in a character column could corrupt the data. You can use createTable() to initialize a correctly defined table.

Summary

Methods
Properties
Constants
__construct()
createTable()
isSessionExpired()
open()
read()
gc()
destroy()
write()
close()
No public properties found
LOCK_NONE
LOCK_ADVISORY
LOCK_TRANSACTIONAL
getConnection()
No protected properties found
N/A
connect()
beginTransaction()
commit()
rollback()
doRead()
doAdvisoryLock()
convertStringToInt()
getSelectSql()
getMergeStatement()
$pdo
$dsn
$driver
$table
$idCol
$dataCol
$lifetimeCol
$timeCol
$username
$password
$connectionOptions
$lockMode
$unlockStatements
$sessionExpired
$inTransaction
$gcCalled
N/A

Constants

LOCK_NONE

LOCK_NONE = 0

No locking is done. This means sessions are prone to loss of data due to race conditions of concurrent requests to the same session. The last session write will win in this case. It might be useful when you implement your own logic to deal with this like an optimistic approach.

LOCK_ADVISORY

LOCK_ADVISORY = 1

Creates an application-level lock on a session. The disadvantage is that the lock is not enforced by the database and thus other, unaware parts of the application could still concurrently modify the session. The advantage is it does not require a transaction.

This mode is not available for SQLite and not yet implemented for oci and sqlsrv.

LOCK_TRANSACTIONAL

LOCK_TRANSACTIONAL = 2

Issues a real row lock. Since it uses a transaction between opening and closing a session, you have to be careful when you use same database connection that you also use for your application logic. This mode is the default because it's the only reliable solution across DBMSs.

Properties

$pdo

$pdo : \PDO|null

Type

\PDO|null — PDO instance or null when not connected yet

$dsn

$dsn : string|null|false

Type

string|null|false — DSN string or null for session.save_path or false when lazy connection disabled

$driver

$driver : string

Type

string — Database driver

$table

$table : string

Type

string — Table name

$idCol

$idCol : string

Type

string — Column for session id

$dataCol

$dataCol : string

Type

string — Column for session data

$lifetimeCol

$lifetimeCol : string

Type

string — Column for lifetime

$timeCol

$timeCol : string

Type

string — Column for timestamp

$username

$username : string

Type

string — Username when lazy-connect

$password

$password : string

Type

string — Password when lazy-connect

$connectionOptions

$connectionOptions : array

Type

array — Connection options when lazy-connect

$lockMode

$lockMode : integer

Type

integer — The strategy for locking, see constants

$unlockStatements

$unlockStatements : array<mixed,\PDOStatement>

It's an array to support multiple reads before closing which is manual, non-standard usage.

Type

array<mixed,\PDOStatement> — An array of statements to release advisory locks

$sessionExpired

$sessionExpired : boolean

Type

boolean — True when the current session exists but expired according to session.gc_maxlifetime

$inTransaction

$inTransaction : boolean

Type

boolean — Whether a transaction is active

$gcCalled

$gcCalled : boolean

Type

boolean — Whether gc() has been called

Methods

__construct()

__construct(\PDO|string|null  $pdoOrDsn = null, array  $options = array()) 

You can either pass an existing database connection as PDO instance or pass a DSN string that will be used to lazy-connect to the database when the session is actually used. Furthermore it's possible to pass null which will then use the session.save_path ini setting as PDO DSN parameter.

List of available options:

  • db_table: The name of the table [default: sessions]
  • db_id_col: The column where to store the session id [default: sess_id]
  • db_data_col: The column where to store the session data [default: sess_data]
  • db_lifetime_col: The column where to store the lifetime [default: sess_lifetime]
  • db_time_col: The column where to store the timestamp [default: sess_time]
  • db_username: The username when lazy-connect [default: '']
  • db_password: The password when lazy-connect [default: '']
  • db_connection_options: An array of driver-specific connection options [default: array()]
  • lock_mode: The strategy for locking, see constants [default: LOCK_TRANSACTIONAL]

Parameters

\PDO|string|null $pdoOrDsn

A \PDO instance or DSN string or null

array $options

An associative array of options

Throws

\InvalidArgumentException

When PDO error mode is not PDO::ERRMODE_EXCEPTION

createTable()

createTable() 

Creates the table to store sessions which can be called once for setup.

Session ID is saved in a column of maximum length 128 because that is enough even for a 512 bit configured session.hash_function like Whirlpool. Session data is saved in a BLOB. One could also use a shorter inlined varbinary column if one was sure the data fits into it.

Throws

\PDOException

When the table already exists

\DomainException

When an unsupported PDO driver is used

isSessionExpired()

isSessionExpired() : boolean

Returns true when the current session exists but expired according to session.gc_maxlifetime.

Can be used to distinguish between a new session and one that expired due to inactivity.

Returns

boolean —

Whether current session expired

open()

open(  $savePath,   $sessionName) 

{@inheritdoc}

Parameters

$savePath
$sessionName

read()

read(  $sessionId) 

{@inheritdoc}

Parameters

$sessionId

gc()

gc(  $maxlifetime) 

{@inheritdoc}

Parameters

$maxlifetime

destroy()

destroy(  $sessionId) 

{@inheritdoc}

Parameters

$sessionId

write()

write(  $sessionId,   $data) 

{@inheritdoc}

Parameters

$sessionId
$data

close()

close() 

{@inheritdoc}

getConnection()

getConnection() : \PDO

Return a PDO instance.

Returns

\PDO

connect()

connect(string  $dsn) 

Lazy-connects to the database.

Parameters

string $dsn

DSN string

beginTransaction()

beginTransaction() 

Helper method to begin a transaction.

Since SQLite does not support row level locks, we have to acquire a reserved lock on the database immediately. Because of https://bugs.php.net/42766 we have to create such a transaction manually which also means we cannot use PDO::commit or PDO::rollback or PDO::inTransaction for SQLite.

Also MySQLs default isolation, REPEATABLE READ, causes deadlock for different sessions due to http://www.mysqlperformanceblog.com/2013/12/12/one-more-innodb-gap-lock-to-avoid/ . So we change it to READ COMMITTED.

commit()

commit() 

Helper method to commit a transaction.

rollback()

rollback() 

Helper method to rollback a transaction.

doRead()

doRead(string  $sessionId) : string

Reads the session data in respect to the different locking strategies.

We need to make sure we do not return session data that is already considered garbage according to the session.gc_maxlifetime setting because gc() is called after read() and only sometimes.

Parameters

string $sessionId

Session ID

Returns

string —

The session data

doAdvisoryLock()

doAdvisoryLock(string  $sessionId) : \PDOStatement

Executes an application-level lock on the database.

Parameters

string $sessionId

Session ID

Throws

\DomainException

When an unsupported PDO driver is used

Returns

\PDOStatement —

The statement that needs to be executed later to release the lock

convertStringToInt()

convertStringToInt(string  $string) : integer

Encodes the first 4 (when PHP_INT_SIZE == 4) or 8 characters of the string as an integer.

Keep in mind, PHP integers are signed.

Parameters

string $string

Returns

integer

getSelectSql()

getSelectSql() : string

Return a locking or nonlocking SQL query to read session information.

Throws

\DomainException

When an unsupported PDO driver is used

Returns

string —

The SQL string

getMergeStatement()

getMergeStatement(string  $sessionId, string  $data, integer  $maxlifetime) : \PDOStatement|null

Returns a merge/upsert (i.e. insert or update) statement when supported by the database for writing session data.

Parameters

string $sessionId

Session ID

string $data

Encoded session data

integer $maxlifetime

session.gc_maxlifetime

Returns

\PDOStatement|null —

The merge statement or null when not supported