PdoSessionHandler.php 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
  11. /**
  12. * Session handler using a PDO connection to read and write data.
  13. *
  14. * It works with MySQL, PostgreSQL, Oracle, SQL Server and SQLite and implements
  15. * different locking strategies to handle concurrent access to the same session.
  16. * Locking is necessary to prevent loss of data due to race conditions and to keep
  17. * the session data consistent between read() and write(). With locking, requests
  18. * for the same session will wait until the other one finished writing. For this
  19. * reason it's best practice to close a session as early as possible to improve
  20. * concurrency. PHPs internal files session handler also implements locking.
  21. *
  22. * Attention: Since SQLite does not support row level locks but locks the whole database,
  23. * it means only one session can be accessed at a time. Even different sessions would wait
  24. * for another to finish. So saving session in SQLite should only be considered for
  25. * development or prototypes.
  26. *
  27. * Session data is a binary string that can contain non-printable characters like the null byte.
  28. * For this reason it must be saved in a binary column in the database like BLOB in MySQL.
  29. * Saving it in a character column could corrupt the data. You can use createTable()
  30. * to initialize a correctly defined table.
  31. *
  32. * @see https://php.net/sessionhandlerinterface
  33. *
  34. * @author Fabien Potencier <fabien@symfony.com>
  35. * @author Michael Williams <michael.williams@funsational.com>
  36. * @author Tobias Schultze <http://tobion.de>
  37. */
  38. class PdoSessionHandler extends AbstractSessionHandler
  39. {
  40. /**
  41. * No locking is done. This means sessions are prone to loss of data due to
  42. * race conditions of concurrent requests to the same session. The last session
  43. * write will win in this case. It might be useful when you implement your own
  44. * logic to deal with this like an optimistic approach.
  45. */
  46. public const LOCK_NONE = 0;
  47. /**
  48. * Creates an application-level lock on a session. The disadvantage is that the
  49. * lock is not enforced by the database and thus other, unaware parts of the
  50. * application could still concurrently modify the session. The advantage is it
  51. * does not require a transaction.
  52. * This mode is not available for SQLite and not yet implemented for oci and sqlsrv.
  53. */
  54. public const LOCK_ADVISORY = 1;
  55. /**
  56. * Issues a real row lock. Since it uses a transaction between opening and
  57. * closing a session, you have to be careful when you use same database connection
  58. * that you also use for your application logic. This mode is the default because
  59. * it's the only reliable solution across DBMSs.
  60. */
  61. public const LOCK_TRANSACTIONAL = 2;
  62. private const MAX_LIFETIME = 315576000;
  63. /**
  64. * @var \PDO|null PDO instance or null when not connected yet
  65. */
  66. private $pdo;
  67. /**
  68. * DSN string or null for session.save_path or false when lazy connection disabled.
  69. *
  70. * @var string|false|null
  71. */
  72. private $dsn = false;
  73. /**
  74. * @var string|null
  75. */
  76. private $driver;
  77. /**
  78. * @var string
  79. */
  80. private $table = 'sessions';
  81. /**
  82. * @var string
  83. */
  84. private $idCol = 'sess_id';
  85. /**
  86. * @var string
  87. */
  88. private $dataCol = 'sess_data';
  89. /**
  90. * @var string
  91. */
  92. private $lifetimeCol = 'sess_lifetime';
  93. /**
  94. * @var string
  95. */
  96. private $timeCol = 'sess_time';
  97. /**
  98. * Username when lazy-connect.
  99. *
  100. * @var string
  101. */
  102. private $username = '';
  103. /**
  104. * Password when lazy-connect.
  105. *
  106. * @var string
  107. */
  108. private $password = '';
  109. /**
  110. * Connection options when lazy-connect.
  111. *
  112. * @var array
  113. */
  114. private $connectionOptions = [];
  115. /**
  116. * The strategy for locking, see constants.
  117. *
  118. * @var int
  119. */
  120. private $lockMode = self::LOCK_TRANSACTIONAL;
  121. /**
  122. * It's an array to support multiple reads before closing which is manual, non-standard usage.
  123. *
  124. * @var \PDOStatement[] An array of statements to release advisory locks
  125. */
  126. private $unlockStatements = [];
  127. /**
  128. * True when the current session exists but expired according to session.gc_maxlifetime.
  129. *
  130. * @var bool
  131. */
  132. private $sessionExpired = false;
  133. /**
  134. * Whether a transaction is active.
  135. *
  136. * @var bool
  137. */
  138. private $inTransaction = false;
  139. /**
  140. * Whether gc() has been called.
  141. *
  142. * @var bool
  143. */
  144. private $gcCalled = false;
  145. /**
  146. * You can either pass an existing database connection as PDO instance or
  147. * pass a DSN string that will be used to lazy-connect to the database
  148. * when the session is actually used. Furthermore it's possible to pass null
  149. * which will then use the session.save_path ini setting as PDO DSN parameter.
  150. *
  151. * List of available options:
  152. * * db_table: The name of the table [default: sessions]
  153. * * db_id_col: The column where to store the session id [default: sess_id]
  154. * * db_data_col: The column where to store the session data [default: sess_data]
  155. * * db_lifetime_col: The column where to store the lifetime [default: sess_lifetime]
  156. * * db_time_col: The column where to store the timestamp [default: sess_time]
  157. * * db_username: The username when lazy-connect [default: '']
  158. * * db_password: The password when lazy-connect [default: '']
  159. * * db_connection_options: An array of driver-specific connection options [default: []]
  160. * * lock_mode: The strategy for locking, see constants [default: LOCK_TRANSACTIONAL]
  161. *
  162. * @param \PDO|string|null $pdoOrDsn A \PDO instance or DSN string or URL string or null
  163. *
  164. * @throws \InvalidArgumentException When PDO error mode is not PDO::ERRMODE_EXCEPTION
  165. */
  166. public function __construct($pdoOrDsn = null, array $options = [])
  167. {
  168. if ($pdoOrDsn instanceof \PDO) {
  169. if (\PDO::ERRMODE_EXCEPTION !== $pdoOrDsn->getAttribute(\PDO::ATTR_ERRMODE)) {
  170. throw new \InvalidArgumentException(sprintf('"%s" requires PDO error mode attribute be set to throw Exceptions (i.e. $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION)).', __CLASS__));
  171. }
  172. $this->pdo = $pdoOrDsn;
  173. $this->driver = $this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
  174. } elseif (\is_string($pdoOrDsn) && str_contains($pdoOrDsn, '://')) {
  175. $this->dsn = $this->buildDsnFromUrl($pdoOrDsn);
  176. } else {
  177. $this->dsn = $pdoOrDsn;
  178. }
  179. $this->table = $options['db_table'] ?? $this->table;
  180. $this->idCol = $options['db_id_col'] ?? $this->idCol;
  181. $this->dataCol = $options['db_data_col'] ?? $this->dataCol;
  182. $this->lifetimeCol = $options['db_lifetime_col'] ?? $this->lifetimeCol;
  183. $this->timeCol = $options['db_time_col'] ?? $this->timeCol;
  184. $this->username = $options['db_username'] ?? $this->username;
  185. $this->password = $options['db_password'] ?? $this->password;
  186. $this->connectionOptions = $options['db_connection_options'] ?? $this->connectionOptions;
  187. $this->lockMode = $options['lock_mode'] ?? $this->lockMode;
  188. }
  189. /**
  190. * Creates the table to store sessions which can be called once for setup.
  191. *
  192. * Session ID is saved in a column of maximum length 128 because that is enough even
  193. * for a 512 bit configured session.hash_function like Whirlpool. Session data is
  194. * saved in a BLOB. One could also use a shorter inlined varbinary column
  195. * if one was sure the data fits into it.
  196. *
  197. * @throws \PDOException When the table already exists
  198. * @throws \DomainException When an unsupported PDO driver is used
  199. */
  200. public function createTable()
  201. {
  202. // connect if we are not yet
  203. $this->getConnection();
  204. switch ($this->driver) {
  205. case 'mysql':
  206. // We use varbinary for the ID column because it prevents unwanted conversions:
  207. // - character set conversions between server and client
  208. // - trailing space removal
  209. // - case-insensitivity
  210. // - language processing like é == e
  211. $sql = "CREATE TABLE $this->table ($this->idCol VARBINARY(128) NOT NULL PRIMARY KEY, $this->dataCol BLOB NOT NULL, $this->lifetimeCol INTEGER UNSIGNED NOT NULL, $this->timeCol INTEGER UNSIGNED NOT NULL) COLLATE utf8mb4_bin, ENGINE = InnoDB";
  212. break;
  213. case 'sqlite':
  214. $sql = "CREATE TABLE $this->table ($this->idCol TEXT NOT NULL PRIMARY KEY, $this->dataCol BLOB NOT NULL, $this->lifetimeCol INTEGER NOT NULL, $this->timeCol INTEGER NOT NULL)";
  215. break;
  216. case 'pgsql':
  217. $sql = "CREATE TABLE $this->table ($this->idCol VARCHAR(128) NOT NULL PRIMARY KEY, $this->dataCol BYTEA NOT NULL, $this->lifetimeCol INTEGER NOT NULL, $this->timeCol INTEGER NOT NULL)";
  218. break;
  219. case 'oci':
  220. $sql = "CREATE TABLE $this->table ($this->idCol VARCHAR2(128) NOT NULL PRIMARY KEY, $this->dataCol BLOB NOT NULL, $this->lifetimeCol INTEGER NOT NULL, $this->timeCol INTEGER NOT NULL)";
  221. break;
  222. case 'sqlsrv':
  223. $sql = "CREATE TABLE $this->table ($this->idCol VARCHAR(128) NOT NULL PRIMARY KEY, $this->dataCol VARBINARY(MAX) NOT NULL, $this->lifetimeCol INTEGER NOT NULL, $this->timeCol INTEGER NOT NULL)";
  224. break;
  225. default:
  226. throw new \DomainException(sprintf('Creating the session table is currently not implemented for PDO driver "%s".', $this->driver));
  227. }
  228. try {
  229. $this->pdo->exec($sql);
  230. $this->pdo->exec("CREATE INDEX EXPIRY ON $this->table ($this->lifetimeCol)");
  231. } catch (\PDOException $e) {
  232. $this->rollback();
  233. throw $e;
  234. }
  235. }
  236. /**
  237. * Returns true when the current session exists but expired according to session.gc_maxlifetime.
  238. *
  239. * Can be used to distinguish between a new session and one that expired due to inactivity.
  240. *
  241. * @return bool
  242. */
  243. public function isSessionExpired()
  244. {
  245. return $this->sessionExpired;
  246. }
  247. /**
  248. * @return bool
  249. */
  250. #[\ReturnTypeWillChange]
  251. public function open($savePath, $sessionName)
  252. {
  253. $this->sessionExpired = false;
  254. if (null === $this->pdo) {
  255. $this->connect($this->dsn ?: $savePath);
  256. }
  257. return parent::open($savePath, $sessionName);
  258. }
  259. /**
  260. * @return string
  261. */
  262. #[\ReturnTypeWillChange]
  263. public function read($sessionId)
  264. {
  265. try {
  266. return parent::read($sessionId);
  267. } catch (\PDOException $e) {
  268. $this->rollback();
  269. throw $e;
  270. }
  271. }
  272. /**
  273. * @return int|false
  274. */
  275. #[\ReturnTypeWillChange]
  276. public function gc($maxlifetime)
  277. {
  278. // We delay gc() to close() so that it is executed outside the transactional and blocking read-write process.
  279. // This way, pruning expired sessions does not block them from being started while the current session is used.
  280. $this->gcCalled = true;
  281. return 0;
  282. }
  283. /**
  284. * {@inheritdoc}
  285. */
  286. protected function doDestroy(string $sessionId)
  287. {
  288. // delete the record associated with this id
  289. $sql = "DELETE FROM $this->table WHERE $this->idCol = :id";
  290. try {
  291. $stmt = $this->pdo->prepare($sql);
  292. $stmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
  293. $stmt->execute();
  294. } catch (\PDOException $e) {
  295. $this->rollback();
  296. throw $e;
  297. }
  298. return true;
  299. }
  300. /**
  301. * {@inheritdoc}
  302. */
  303. protected function doWrite(string $sessionId, string $data)
  304. {
  305. $maxlifetime = (int) ini_get('session.gc_maxlifetime');
  306. try {
  307. // We use a single MERGE SQL query when supported by the database.
  308. $mergeStmt = $this->getMergeStatement($sessionId, $data, $maxlifetime);
  309. if (null !== $mergeStmt) {
  310. $mergeStmt->execute();
  311. return true;
  312. }
  313. $updateStmt = $this->getUpdateStatement($sessionId, $data, $maxlifetime);
  314. $updateStmt->execute();
  315. // When MERGE is not supported, like in Postgres < 9.5, we have to use this approach that can result in
  316. // duplicate key errors when the same session is written simultaneously (given the LOCK_NONE behavior).
  317. // We can just catch such an error and re-execute the update. This is similar to a serializable
  318. // transaction with retry logic on serialization failures but without the overhead and without possible
  319. // false positives due to longer gap locking.
  320. if (!$updateStmt->rowCount()) {
  321. try {
  322. $insertStmt = $this->getInsertStatement($sessionId, $data, $maxlifetime);
  323. $insertStmt->execute();
  324. } catch (\PDOException $e) {
  325. // Handle integrity violation SQLSTATE 23000 (or a subclass like 23505 in Postgres) for duplicate keys
  326. if (str_starts_with($e->getCode(), '23')) {
  327. $updateStmt->execute();
  328. } else {
  329. throw $e;
  330. }
  331. }
  332. }
  333. } catch (\PDOException $e) {
  334. $this->rollback();
  335. throw $e;
  336. }
  337. return true;
  338. }
  339. /**
  340. * @return bool
  341. */
  342. #[\ReturnTypeWillChange]
  343. public function updateTimestamp($sessionId, $data)
  344. {
  345. $expiry = time() + (int) ini_get('session.gc_maxlifetime');
  346. try {
  347. $updateStmt = $this->pdo->prepare(
  348. "UPDATE $this->table SET $this->lifetimeCol = :expiry, $this->timeCol = :time WHERE $this->idCol = :id"
  349. );
  350. $updateStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
  351. $updateStmt->bindParam(':expiry', $expiry, \PDO::PARAM_INT);
  352. $updateStmt->bindValue(':time', time(), \PDO::PARAM_INT);
  353. $updateStmt->execute();
  354. } catch (\PDOException $e) {
  355. $this->rollback();
  356. throw $e;
  357. }
  358. return true;
  359. }
  360. /**
  361. * @return bool
  362. */
  363. #[\ReturnTypeWillChange]
  364. public function close()
  365. {
  366. $this->commit();
  367. while ($unlockStmt = array_shift($this->unlockStatements)) {
  368. $unlockStmt->execute();
  369. }
  370. if ($this->gcCalled) {
  371. $this->gcCalled = false;
  372. // delete the session records that have expired
  373. $sql = "DELETE FROM $this->table WHERE $this->lifetimeCol < :time AND $this->lifetimeCol > :min";
  374. $stmt = $this->pdo->prepare($sql);
  375. $stmt->bindValue(':time', time(), \PDO::PARAM_INT);
  376. $stmt->bindValue(':min', self::MAX_LIFETIME, \PDO::PARAM_INT);
  377. $stmt->execute();
  378. // to be removed in 6.0
  379. if ('mysql' === $this->driver) {
  380. $legacySql = "DELETE FROM $this->table WHERE $this->lifetimeCol <= :min AND $this->lifetimeCol + $this->timeCol < :time";
  381. } else {
  382. $legacySql = "DELETE FROM $this->table WHERE $this->lifetimeCol <= :min AND $this->lifetimeCol < :time - $this->timeCol";
  383. }
  384. $stmt = $this->pdo->prepare($legacySql);
  385. $stmt->bindValue(':time', time(), \PDO::PARAM_INT);
  386. $stmt->bindValue(':min', self::MAX_LIFETIME, \PDO::PARAM_INT);
  387. $stmt->execute();
  388. }
  389. if (false !== $this->dsn) {
  390. $this->pdo = null; // only close lazy-connection
  391. $this->driver = null;
  392. }
  393. return true;
  394. }
  395. /**
  396. * Lazy-connects to the database.
  397. */
  398. private function connect(string $dsn): void
  399. {
  400. $this->pdo = new \PDO($dsn, $this->username, $this->password, $this->connectionOptions);
  401. $this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
  402. $this->driver = $this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
  403. }
  404. /**
  405. * Builds a PDO DSN from a URL-like connection string.
  406. *
  407. * @todo implement missing support for oci DSN (which look totally different from other PDO ones)
  408. */
  409. private function buildDsnFromUrl(string $dsnOrUrl): string
  410. {
  411. // (pdo_)?sqlite3?:///... => (pdo_)?sqlite3?://localhost/... or else the URL will be invalid
  412. $url = preg_replace('#^((?:pdo_)?sqlite3?):///#', '$1://localhost/', $dsnOrUrl);
  413. $params = parse_url($url);
  414. if (false === $params) {
  415. return $dsnOrUrl; // If the URL is not valid, let's assume it might be a DSN already.
  416. }
  417. $params = array_map('rawurldecode', $params);
  418. // Override the default username and password. Values passed through options will still win over these in the constructor.
  419. if (isset($params['user'])) {
  420. $this->username = $params['user'];
  421. }
  422. if (isset($params['pass'])) {
  423. $this->password = $params['pass'];
  424. }
  425. if (!isset($params['scheme'])) {
  426. throw new \InvalidArgumentException('URLs without scheme are not supported to configure the PdoSessionHandler.');
  427. }
  428. $driverAliasMap = [
  429. 'mssql' => 'sqlsrv',
  430. 'mysql2' => 'mysql', // Amazon RDS, for some weird reason
  431. 'postgres' => 'pgsql',
  432. 'postgresql' => 'pgsql',
  433. 'sqlite3' => 'sqlite',
  434. ];
  435. $driver = $driverAliasMap[$params['scheme']] ?? $params['scheme'];
  436. // Doctrine DBAL supports passing its internal pdo_* driver names directly too (allowing both dashes and underscores). This allows supporting the same here.
  437. if (str_starts_with($driver, 'pdo_') || str_starts_with($driver, 'pdo-')) {
  438. $driver = substr($driver, 4);
  439. }
  440. $dsn = null;
  441. switch ($driver) {
  442. case 'mysql':
  443. $dsn = 'mysql:';
  444. if ('' !== ($params['query'] ?? '')) {
  445. $queryParams = [];
  446. parse_str($params['query'], $queryParams);
  447. if ('' !== ($queryParams['charset'] ?? '')) {
  448. $dsn .= 'charset='.$queryParams['charset'].';';
  449. }
  450. if ('' !== ($queryParams['unix_socket'] ?? '')) {
  451. $dsn .= 'unix_socket='.$queryParams['unix_socket'].';';
  452. if (isset($params['path'])) {
  453. $dbName = substr($params['path'], 1); // Remove the leading slash
  454. $dsn .= 'dbname='.$dbName.';';
  455. }
  456. return $dsn;
  457. }
  458. }
  459. // If "unix_socket" is not in the query, we continue with the same process as pgsql
  460. // no break
  461. case 'pgsql':
  462. $dsn ?? $dsn = 'pgsql:';
  463. if (isset($params['host']) && '' !== $params['host']) {
  464. $dsn .= 'host='.$params['host'].';';
  465. }
  466. if (isset($params['port']) && '' !== $params['port']) {
  467. $dsn .= 'port='.$params['port'].';';
  468. }
  469. if (isset($params['path'])) {
  470. $dbName = substr($params['path'], 1); // Remove the leading slash
  471. $dsn .= 'dbname='.$dbName.';';
  472. }
  473. return $dsn;
  474. case 'sqlite':
  475. return 'sqlite:'.substr($params['path'], 1);
  476. case 'sqlsrv':
  477. $dsn = 'sqlsrv:server=';
  478. if (isset($params['host'])) {
  479. $dsn .= $params['host'];
  480. }
  481. if (isset($params['port']) && '' !== $params['port']) {
  482. $dsn .= ','.$params['port'];
  483. }
  484. if (isset($params['path'])) {
  485. $dbName = substr($params['path'], 1); // Remove the leading slash
  486. $dsn .= ';Database='.$dbName;
  487. }
  488. return $dsn;
  489. default:
  490. throw new \InvalidArgumentException(sprintf('The scheme "%s" is not supported by the PdoSessionHandler URL configuration. Pass a PDO DSN directly.', $params['scheme']));
  491. }
  492. }
  493. /**
  494. * Helper method to begin a transaction.
  495. *
  496. * Since SQLite does not support row level locks, we have to acquire a reserved lock
  497. * on the database immediately. Because of https://bugs.php.net/42766 we have to create
  498. * such a transaction manually which also means we cannot use PDO::commit or
  499. * PDO::rollback or PDO::inTransaction for SQLite.
  500. *
  501. * Also MySQLs default isolation, REPEATABLE READ, causes deadlock for different sessions
  502. * due to https://percona.com/blog/2013/12/12/one-more-innodb-gap-lock-to-avoid/ .
  503. * So we change it to READ COMMITTED.
  504. */
  505. private function beginTransaction(): void
  506. {
  507. if (!$this->inTransaction) {
  508. if ('sqlite' === $this->driver) {
  509. $this->pdo->exec('BEGIN IMMEDIATE TRANSACTION');
  510. } else {
  511. if ('mysql' === $this->driver) {
  512. $this->pdo->exec('SET TRANSACTION ISOLATION LEVEL READ COMMITTED');
  513. }
  514. $this->pdo->beginTransaction();
  515. }
  516. $this->inTransaction = true;
  517. }
  518. }
  519. /**
  520. * Helper method to commit a transaction.
  521. */
  522. private function commit(): void
  523. {
  524. if ($this->inTransaction) {
  525. try {
  526. // commit read-write transaction which also releases the lock
  527. if ('sqlite' === $this->driver) {
  528. $this->pdo->exec('COMMIT');
  529. } else {
  530. $this->pdo->commit();
  531. }
  532. $this->inTransaction = false;
  533. } catch (\PDOException $e) {
  534. $this->rollback();
  535. throw $e;
  536. }
  537. }
  538. }
  539. /**
  540. * Helper method to rollback a transaction.
  541. */
  542. private function rollback(): void
  543. {
  544. // We only need to rollback if we are in a transaction. Otherwise the resulting
  545. // error would hide the real problem why rollback was called. We might not be
  546. // in a transaction when not using the transactional locking behavior or when
  547. // two callbacks (e.g. destroy and write) are invoked that both fail.
  548. if ($this->inTransaction) {
  549. if ('sqlite' === $this->driver) {
  550. $this->pdo->exec('ROLLBACK');
  551. } else {
  552. $this->pdo->rollBack();
  553. }
  554. $this->inTransaction = false;
  555. }
  556. }
  557. /**
  558. * Reads the session data in respect to the different locking strategies.
  559. *
  560. * We need to make sure we do not return session data that is already considered garbage according
  561. * to the session.gc_maxlifetime setting because gc() is called after read() and only sometimes.
  562. *
  563. * @return string
  564. */
  565. protected function doRead(string $sessionId)
  566. {
  567. if (self::LOCK_ADVISORY === $this->lockMode) {
  568. $this->unlockStatements[] = $this->doAdvisoryLock($sessionId);
  569. }
  570. $selectSql = $this->getSelectSql();
  571. $selectStmt = $this->pdo->prepare($selectSql);
  572. $selectStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
  573. $insertStmt = null;
  574. do {
  575. $selectStmt->execute();
  576. $sessionRows = $selectStmt->fetchAll(\PDO::FETCH_NUM);
  577. if ($sessionRows) {
  578. $expiry = (int) $sessionRows[0][1];
  579. if ($expiry <= self::MAX_LIFETIME) {
  580. $expiry += $sessionRows[0][2];
  581. }
  582. if ($expiry < time()) {
  583. $this->sessionExpired = true;
  584. return '';
  585. }
  586. return \is_resource($sessionRows[0][0]) ? stream_get_contents($sessionRows[0][0]) : $sessionRows[0][0];
  587. }
  588. if (null !== $insertStmt) {
  589. $this->rollback();
  590. throw new \RuntimeException('Failed to read session: INSERT reported a duplicate id but next SELECT did not return any data.');
  591. }
  592. if (!filter_var(ini_get('session.use_strict_mode'), \FILTER_VALIDATE_BOOLEAN) && self::LOCK_TRANSACTIONAL === $this->lockMode && 'sqlite' !== $this->driver) {
  593. // In strict mode, session fixation is not possible: new sessions always start with a unique
  594. // random id, so that concurrency is not possible and this code path can be skipped.
  595. // Exclusive-reading of non-existent rows does not block, so we need to do an insert to block
  596. // until other connections to the session are committed.
  597. try {
  598. $insertStmt = $this->getInsertStatement($sessionId, '', 0);
  599. $insertStmt->execute();
  600. } catch (\PDOException $e) {
  601. // Catch duplicate key error because other connection created the session already.
  602. // It would only not be the case when the other connection destroyed the session.
  603. if (str_starts_with($e->getCode(), '23')) {
  604. // Retrieve finished session data written by concurrent connection by restarting the loop.
  605. // We have to start a new transaction as a failed query will mark the current transaction as
  606. // aborted in PostgreSQL and disallow further queries within it.
  607. $this->rollback();
  608. $this->beginTransaction();
  609. continue;
  610. }
  611. throw $e;
  612. }
  613. }
  614. return '';
  615. } while (true);
  616. }
  617. /**
  618. * Executes an application-level lock on the database.
  619. *
  620. * @return \PDOStatement The statement that needs to be executed later to release the lock
  621. *
  622. * @throws \DomainException When an unsupported PDO driver is used
  623. *
  624. * @todo implement missing advisory locks
  625. * - for oci using DBMS_LOCK.REQUEST
  626. * - for sqlsrv using sp_getapplock with LockOwner = Session
  627. */
  628. private function doAdvisoryLock(string $sessionId): \PDOStatement
  629. {
  630. switch ($this->driver) {
  631. case 'mysql':
  632. // MySQL 5.7.5 and later enforces a maximum length on lock names of 64 characters. Previously, no limit was enforced.
  633. $lockId = substr($sessionId, 0, 64);
  634. // should we handle the return value? 0 on timeout, null on error
  635. // we use a timeout of 50 seconds which is also the default for innodb_lock_wait_timeout
  636. $stmt = $this->pdo->prepare('SELECT GET_LOCK(:key, 50)');
  637. $stmt->bindValue(':key', $lockId, \PDO::PARAM_STR);
  638. $stmt->execute();
  639. $releaseStmt = $this->pdo->prepare('DO RELEASE_LOCK(:key)');
  640. $releaseStmt->bindValue(':key', $lockId, \PDO::PARAM_STR);
  641. return $releaseStmt;
  642. case 'pgsql':
  643. // Obtaining an exclusive session level advisory lock requires an integer key.
  644. // When session.sid_bits_per_character > 4, the session id can contain non-hex-characters.
  645. // So we cannot just use hexdec().
  646. if (4 === \PHP_INT_SIZE) {
  647. $sessionInt1 = $this->convertStringToInt($sessionId);
  648. $sessionInt2 = $this->convertStringToInt(substr($sessionId, 4, 4));
  649. $stmt = $this->pdo->prepare('SELECT pg_advisory_lock(:key1, :key2)');
  650. $stmt->bindValue(':key1', $sessionInt1, \PDO::PARAM_INT);
  651. $stmt->bindValue(':key2', $sessionInt2, \PDO::PARAM_INT);
  652. $stmt->execute();
  653. $releaseStmt = $this->pdo->prepare('SELECT pg_advisory_unlock(:key1, :key2)');
  654. $releaseStmt->bindValue(':key1', $sessionInt1, \PDO::PARAM_INT);
  655. $releaseStmt->bindValue(':key2', $sessionInt2, \PDO::PARAM_INT);
  656. } else {
  657. $sessionBigInt = $this->convertStringToInt($sessionId);
  658. $stmt = $this->pdo->prepare('SELECT pg_advisory_lock(:key)');
  659. $stmt->bindValue(':key', $sessionBigInt, \PDO::PARAM_INT);
  660. $stmt->execute();
  661. $releaseStmt = $this->pdo->prepare('SELECT pg_advisory_unlock(:key)');
  662. $releaseStmt->bindValue(':key', $sessionBigInt, \PDO::PARAM_INT);
  663. }
  664. return $releaseStmt;
  665. case 'sqlite':
  666. throw new \DomainException('SQLite does not support advisory locks.');
  667. default:
  668. throw new \DomainException(sprintf('Advisory locks are currently not implemented for PDO driver "%s".', $this->driver));
  669. }
  670. }
  671. /**
  672. * Encodes the first 4 (when PHP_INT_SIZE == 4) or 8 characters of the string as an integer.
  673. *
  674. * Keep in mind, PHP integers are signed.
  675. */
  676. private function convertStringToInt(string $string): int
  677. {
  678. if (4 === \PHP_INT_SIZE) {
  679. return (\ord($string[3]) << 24) + (\ord($string[2]) << 16) + (\ord($string[1]) << 8) + \ord($string[0]);
  680. }
  681. $int1 = (\ord($string[7]) << 24) + (\ord($string[6]) << 16) + (\ord($string[5]) << 8) + \ord($string[4]);
  682. $int2 = (\ord($string[3]) << 24) + (\ord($string[2]) << 16) + (\ord($string[1]) << 8) + \ord($string[0]);
  683. return $int2 + ($int1 << 32);
  684. }
  685. /**
  686. * Return a locking or nonlocking SQL query to read session information.
  687. *
  688. * @throws \DomainException When an unsupported PDO driver is used
  689. */
  690. private function getSelectSql(): string
  691. {
  692. if (self::LOCK_TRANSACTIONAL === $this->lockMode) {
  693. $this->beginTransaction();
  694. // selecting the time column should be removed in 6.0
  695. switch ($this->driver) {
  696. case 'mysql':
  697. case 'oci':
  698. case 'pgsql':
  699. return "SELECT $this->dataCol, $this->lifetimeCol, $this->timeCol FROM $this->table WHERE $this->idCol = :id FOR UPDATE";
  700. case 'sqlsrv':
  701. return "SELECT $this->dataCol, $this->lifetimeCol, $this->timeCol FROM $this->table WITH (UPDLOCK, ROWLOCK) WHERE $this->idCol = :id";
  702. case 'sqlite':
  703. // we already locked when starting transaction
  704. break;
  705. default:
  706. throw new \DomainException(sprintf('Transactional locks are currently not implemented for PDO driver "%s".', $this->driver));
  707. }
  708. }
  709. return "SELECT $this->dataCol, $this->lifetimeCol, $this->timeCol FROM $this->table WHERE $this->idCol = :id";
  710. }
  711. /**
  712. * Returns an insert statement supported by the database for writing session data.
  713. */
  714. private function getInsertStatement(string $sessionId, string $sessionData, int $maxlifetime): \PDOStatement
  715. {
  716. switch ($this->driver) {
  717. case 'oci':
  718. $data = fopen('php://memory', 'r+');
  719. fwrite($data, $sessionData);
  720. rewind($data);
  721. $sql = "INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, EMPTY_BLOB(), :expiry, :time) RETURNING $this->dataCol into :data";
  722. break;
  723. default:
  724. $data = $sessionData;
  725. $sql = "INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time)";
  726. break;
  727. }
  728. $stmt = $this->pdo->prepare($sql);
  729. $stmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
  730. $stmt->bindParam(':data', $data, \PDO::PARAM_LOB);
  731. $stmt->bindValue(':expiry', time() + $maxlifetime, \PDO::PARAM_INT);
  732. $stmt->bindValue(':time', time(), \PDO::PARAM_INT);
  733. return $stmt;
  734. }
  735. /**
  736. * Returns an update statement supported by the database for writing session data.
  737. */
  738. private function getUpdateStatement(string $sessionId, string $sessionData, int $maxlifetime): \PDOStatement
  739. {
  740. switch ($this->driver) {
  741. case 'oci':
  742. $data = fopen('php://memory', 'r+');
  743. fwrite($data, $sessionData);
  744. rewind($data);
  745. $sql = "UPDATE $this->table SET $this->dataCol = EMPTY_BLOB(), $this->lifetimeCol = :expiry, $this->timeCol = :time WHERE $this->idCol = :id RETURNING $this->dataCol into :data";
  746. break;
  747. default:
  748. $data = $sessionData;
  749. $sql = "UPDATE $this->table SET $this->dataCol = :data, $this->lifetimeCol = :expiry, $this->timeCol = :time WHERE $this->idCol = :id";
  750. break;
  751. }
  752. $stmt = $this->pdo->prepare($sql);
  753. $stmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
  754. $stmt->bindParam(':data', $data, \PDO::PARAM_LOB);
  755. $stmt->bindValue(':expiry', time() + $maxlifetime, \PDO::PARAM_INT);
  756. $stmt->bindValue(':time', time(), \PDO::PARAM_INT);
  757. return $stmt;
  758. }
  759. /**
  760. * Returns a merge/upsert (i.e. insert or update) statement when supported by the database for writing session data.
  761. */
  762. private function getMergeStatement(string $sessionId, string $data, int $maxlifetime): ?\PDOStatement
  763. {
  764. switch (true) {
  765. case 'mysql' === $this->driver:
  766. $mergeSql = "INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time) ".
  767. "ON DUPLICATE KEY UPDATE $this->dataCol = VALUES($this->dataCol), $this->lifetimeCol = VALUES($this->lifetimeCol), $this->timeCol = VALUES($this->timeCol)";
  768. break;
  769. case 'sqlsrv' === $this->driver && version_compare($this->pdo->getAttribute(\PDO::ATTR_SERVER_VERSION), '10', '>='):
  770. // MERGE is only available since SQL Server 2008 and must be terminated by semicolon
  771. // It also requires HOLDLOCK according to https://weblogs.sqlteam.com/dang/2009/01/31/upsert-race-condition-with-merge/
  772. $mergeSql = "MERGE INTO $this->table WITH (HOLDLOCK) USING (SELECT 1 AS dummy) AS src ON ($this->idCol = ?) ".
  773. "WHEN NOT MATCHED THEN INSERT ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (?, ?, ?, ?) ".
  774. "WHEN MATCHED THEN UPDATE SET $this->dataCol = ?, $this->lifetimeCol = ?, $this->timeCol = ?;";
  775. break;
  776. case 'sqlite' === $this->driver:
  777. $mergeSql = "INSERT OR REPLACE INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time)";
  778. break;
  779. case 'pgsql' === $this->driver && version_compare($this->pdo->getAttribute(\PDO::ATTR_SERVER_VERSION), '9.5', '>='):
  780. $mergeSql = "INSERT INTO $this->table ($this->idCol, $this->dataCol, $this->lifetimeCol, $this->timeCol) VALUES (:id, :data, :expiry, :time) ".
  781. "ON CONFLICT ($this->idCol) DO UPDATE SET ($this->dataCol, $this->lifetimeCol, $this->timeCol) = (EXCLUDED.$this->dataCol, EXCLUDED.$this->lifetimeCol, EXCLUDED.$this->timeCol)";
  782. break;
  783. default:
  784. // MERGE is not supported with LOBs: https://oracle.com/technetwork/articles/fuecks-lobs-095315.html
  785. return null;
  786. }
  787. $mergeStmt = $this->pdo->prepare($mergeSql);
  788. if ('sqlsrv' === $this->driver) {
  789. $mergeStmt->bindParam(1, $sessionId, \PDO::PARAM_STR);
  790. $mergeStmt->bindParam(2, $sessionId, \PDO::PARAM_STR);
  791. $mergeStmt->bindParam(3, $data, \PDO::PARAM_LOB);
  792. $mergeStmt->bindValue(4, time() + $maxlifetime, \PDO::PARAM_INT);
  793. $mergeStmt->bindValue(5, time(), \PDO::PARAM_INT);
  794. $mergeStmt->bindParam(6, $data, \PDO::PARAM_LOB);
  795. $mergeStmt->bindValue(7, time() + $maxlifetime, \PDO::PARAM_INT);
  796. $mergeStmt->bindValue(8, time(), \PDO::PARAM_INT);
  797. } else {
  798. $mergeStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
  799. $mergeStmt->bindParam(':data', $data, \PDO::PARAM_LOB);
  800. $mergeStmt->bindValue(':expiry', time() + $maxlifetime, \PDO::PARAM_INT);
  801. $mergeStmt->bindValue(':time', time(), \PDO::PARAM_INT);
  802. }
  803. return $mergeStmt;
  804. }
  805. /**
  806. * Return a PDO instance.
  807. *
  808. * @return \PDO
  809. */
  810. protected function getConnection()
  811. {
  812. if (null === $this->pdo) {
  813. $this->connect($this->dsn ?: ini_get('session.save_path'));
  814. }
  815. return $this->pdo;
  816. }
  817. }