NativeSessionStorage.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  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;
  11. use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
  12. use Symfony\Component\HttpFoundation\Session\SessionUtils;
  13. use Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler;
  14. use Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy;
  15. use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy;
  16. // Help opcache.preload discover always-needed symbols
  17. class_exists(MetadataBag::class);
  18. class_exists(StrictSessionHandler::class);
  19. class_exists(SessionHandlerProxy::class);
  20. /**
  21. * This provides a base class for session attribute storage.
  22. *
  23. * @author Drak <drak@zikula.org>
  24. */
  25. class NativeSessionStorage implements SessionStorageInterface
  26. {
  27. /**
  28. * @var SessionBagInterface[]
  29. */
  30. protected $bags = [];
  31. /**
  32. * @var bool
  33. */
  34. protected $started = false;
  35. /**
  36. * @var bool
  37. */
  38. protected $closed = false;
  39. /**
  40. * @var AbstractProxy|\SessionHandlerInterface
  41. */
  42. protected $saveHandler;
  43. /**
  44. * @var MetadataBag
  45. */
  46. protected $metadataBag;
  47. /**
  48. * @var string|null
  49. */
  50. private $emulateSameSite;
  51. /**
  52. * Depending on how you want the storage driver to behave you probably
  53. * want to override this constructor entirely.
  54. *
  55. * List of options for $options array with their defaults.
  56. *
  57. * @see https://php.net/session.configuration for options
  58. * but we omit 'session.' from the beginning of the keys for convenience.
  59. *
  60. * ("auto_start", is not supported as it tells PHP to start a session before
  61. * PHP starts to execute user-land code. Setting during runtime has no effect).
  62. *
  63. * cache_limiter, "" (use "0" to prevent headers from being sent entirely).
  64. * cache_expire, "0"
  65. * cookie_domain, ""
  66. * cookie_httponly, ""
  67. * cookie_lifetime, "0"
  68. * cookie_path, "/"
  69. * cookie_secure, ""
  70. * cookie_samesite, null
  71. * gc_divisor, "100"
  72. * gc_maxlifetime, "1440"
  73. * gc_probability, "1"
  74. * lazy_write, "1"
  75. * name, "PHPSESSID"
  76. * referer_check, ""
  77. * serialize_handler, "php"
  78. * use_strict_mode, "1"
  79. * use_cookies, "1"
  80. * use_only_cookies, "1"
  81. * use_trans_sid, "0"
  82. * upload_progress.enabled, "1"
  83. * upload_progress.cleanup, "1"
  84. * upload_progress.prefix, "upload_progress_"
  85. * upload_progress.name, "PHP_SESSION_UPLOAD_PROGRESS"
  86. * upload_progress.freq, "1%"
  87. * upload_progress.min-freq, "1"
  88. * url_rewriter.tags, "a=href,area=href,frame=src,form=,fieldset="
  89. * sid_length, "32"
  90. * sid_bits_per_character, "5"
  91. * trans_sid_hosts, $_SERVER['HTTP_HOST']
  92. * trans_sid_tags, "a=href,area=href,frame=src,form="
  93. *
  94. * @param AbstractProxy|\SessionHandlerInterface|null $handler
  95. */
  96. public function __construct(array $options = [], $handler = null, MetadataBag $metaBag = null)
  97. {
  98. if (!\extension_loaded('session')) {
  99. throw new \LogicException('PHP extension "session" is required.');
  100. }
  101. $options += [
  102. 'cache_limiter' => '',
  103. 'cache_expire' => 0,
  104. 'use_cookies' => 1,
  105. 'lazy_write' => 1,
  106. 'use_strict_mode' => 1,
  107. ];
  108. session_register_shutdown();
  109. $this->setMetadataBag($metaBag);
  110. $this->setOptions($options);
  111. $this->setSaveHandler($handler);
  112. }
  113. /**
  114. * Gets the save handler instance.
  115. *
  116. * @return AbstractProxy|\SessionHandlerInterface
  117. */
  118. public function getSaveHandler()
  119. {
  120. return $this->saveHandler;
  121. }
  122. /**
  123. * {@inheritdoc}
  124. */
  125. public function start()
  126. {
  127. if ($this->started) {
  128. return true;
  129. }
  130. if (\PHP_SESSION_ACTIVE === session_status()) {
  131. throw new \RuntimeException('Failed to start the session: already started by PHP.');
  132. }
  133. if (filter_var(ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOLEAN) && headers_sent($file, $line)) {
  134. throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line));
  135. }
  136. $sessionId = $_COOKIE[session_name()] ?? null;
  137. if ($sessionId && !preg_match('/^[a-zA-Z0-9,-]{22,}$/', $sessionId)) {
  138. // the session ID in the header is invalid, create a new one
  139. session_id(session_create_id());
  140. }
  141. // ok to try and start the session
  142. if (!session_start()) {
  143. throw new \RuntimeException('Failed to start the session.');
  144. }
  145. if (null !== $this->emulateSameSite) {
  146. $originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
  147. if (null !== $originalCookie) {
  148. header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite), false);
  149. }
  150. }
  151. $this->loadSession();
  152. return true;
  153. }
  154. /**
  155. * {@inheritdoc}
  156. */
  157. public function getId()
  158. {
  159. return $this->saveHandler->getId();
  160. }
  161. /**
  162. * {@inheritdoc}
  163. */
  164. public function setId($id)
  165. {
  166. $this->saveHandler->setId($id);
  167. }
  168. /**
  169. * {@inheritdoc}
  170. */
  171. public function getName()
  172. {
  173. return $this->saveHandler->getName();
  174. }
  175. /**
  176. * {@inheritdoc}
  177. */
  178. public function setName($name)
  179. {
  180. $this->saveHandler->setName($name);
  181. }
  182. /**
  183. * {@inheritdoc}
  184. */
  185. public function regenerate($destroy = false, $lifetime = null)
  186. {
  187. // Cannot regenerate the session ID for non-active sessions.
  188. if (\PHP_SESSION_ACTIVE !== session_status()) {
  189. return false;
  190. }
  191. if (headers_sent()) {
  192. return false;
  193. }
  194. if (null !== $lifetime && $lifetime != ini_get('session.cookie_lifetime')) {
  195. $this->save();
  196. ini_set('session.cookie_lifetime', $lifetime);
  197. $this->start();
  198. }
  199. if ($destroy) {
  200. $this->metadataBag->stampNew();
  201. }
  202. $isRegenerated = session_regenerate_id($destroy);
  203. if (null !== $this->emulateSameSite) {
  204. $originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
  205. if (null !== $originalCookie) {
  206. header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite), false);
  207. }
  208. }
  209. return $isRegenerated;
  210. }
  211. /**
  212. * {@inheritdoc}
  213. */
  214. public function save()
  215. {
  216. // Store a copy so we can restore the bags in case the session was not left empty
  217. $session = $_SESSION;
  218. foreach ($this->bags as $bag) {
  219. if (empty($_SESSION[$key = $bag->getStorageKey()])) {
  220. unset($_SESSION[$key]);
  221. }
  222. }
  223. if ([$key = $this->metadataBag->getStorageKey()] === array_keys($_SESSION)) {
  224. unset($_SESSION[$key]);
  225. }
  226. // Register error handler to add information about the current save handler
  227. $previousHandler = set_error_handler(function ($type, $msg, $file, $line) use (&$previousHandler) {
  228. if (\E_WARNING === $type && str_starts_with($msg, 'session_write_close():')) {
  229. $handler = $this->saveHandler instanceof SessionHandlerProxy ? $this->saveHandler->getHandler() : $this->saveHandler;
  230. $msg = sprintf('session_write_close(): Failed to write session data with "%s" handler', \get_class($handler));
  231. }
  232. return $previousHandler ? $previousHandler($type, $msg, $file, $line) : false;
  233. });
  234. try {
  235. session_write_close();
  236. } finally {
  237. restore_error_handler();
  238. // Restore only if not empty
  239. if ($_SESSION) {
  240. $_SESSION = $session;
  241. }
  242. }
  243. $this->closed = true;
  244. $this->started = false;
  245. }
  246. /**
  247. * {@inheritdoc}
  248. */
  249. public function clear()
  250. {
  251. // clear out the bags
  252. foreach ($this->bags as $bag) {
  253. $bag->clear();
  254. }
  255. // clear out the session
  256. $_SESSION = [];
  257. // reconnect the bags to the session
  258. $this->loadSession();
  259. }
  260. /**
  261. * {@inheritdoc}
  262. */
  263. public function registerBag(SessionBagInterface $bag)
  264. {
  265. if ($this->started) {
  266. throw new \LogicException('Cannot register a bag when the session is already started.');
  267. }
  268. $this->bags[$bag->getName()] = $bag;
  269. }
  270. /**
  271. * {@inheritdoc}
  272. */
  273. public function getBag($name)
  274. {
  275. if (!isset($this->bags[$name])) {
  276. throw new \InvalidArgumentException(sprintf('The SessionBagInterface "%s" is not registered.', $name));
  277. }
  278. if (!$this->started && $this->saveHandler->isActive()) {
  279. $this->loadSession();
  280. } elseif (!$this->started) {
  281. $this->start();
  282. }
  283. return $this->bags[$name];
  284. }
  285. public function setMetadataBag(MetadataBag $metaBag = null)
  286. {
  287. if (null === $metaBag) {
  288. $metaBag = new MetadataBag();
  289. }
  290. $this->metadataBag = $metaBag;
  291. }
  292. /**
  293. * Gets the MetadataBag.
  294. *
  295. * @return MetadataBag
  296. */
  297. public function getMetadataBag()
  298. {
  299. return $this->metadataBag;
  300. }
  301. /**
  302. * {@inheritdoc}
  303. */
  304. public function isStarted()
  305. {
  306. return $this->started;
  307. }
  308. /**
  309. * Sets session.* ini variables.
  310. *
  311. * For convenience we omit 'session.' from the beginning of the keys.
  312. * Explicitly ignores other ini keys.
  313. *
  314. * @param array $options Session ini directives [key => value]
  315. *
  316. * @see https://php.net/session.configuration
  317. */
  318. public function setOptions(array $options)
  319. {
  320. if (headers_sent() || \PHP_SESSION_ACTIVE === session_status()) {
  321. return;
  322. }
  323. $validOptions = array_flip([
  324. 'cache_expire', 'cache_limiter', 'cookie_domain', 'cookie_httponly',
  325. 'cookie_lifetime', 'cookie_path', 'cookie_secure', 'cookie_samesite',
  326. 'gc_divisor', 'gc_maxlifetime', 'gc_probability',
  327. 'lazy_write', 'name', 'referer_check',
  328. 'serialize_handler', 'use_strict_mode', 'use_cookies',
  329. 'use_only_cookies', 'use_trans_sid', 'upload_progress.enabled',
  330. 'upload_progress.cleanup', 'upload_progress.prefix', 'upload_progress.name',
  331. 'upload_progress.freq', 'upload_progress.min_freq', 'url_rewriter.tags',
  332. 'sid_length', 'sid_bits_per_character', 'trans_sid_hosts', 'trans_sid_tags',
  333. ]);
  334. foreach ($options as $key => $value) {
  335. if (isset($validOptions[$key])) {
  336. if ('cookie_samesite' === $key && \PHP_VERSION_ID < 70300) {
  337. // PHP < 7.3 does not support same_site cookies. We will emulate it in
  338. // the start() method instead.
  339. $this->emulateSameSite = $value;
  340. continue;
  341. }
  342. if ('cookie_secure' === $key && 'auto' === $value) {
  343. continue;
  344. }
  345. ini_set('url_rewriter.tags' !== $key ? 'session.'.$key : $key, $value);
  346. }
  347. }
  348. }
  349. /**
  350. * Registers session save handler as a PHP session handler.
  351. *
  352. * To use internal PHP session save handlers, override this method using ini_set with
  353. * session.save_handler and session.save_path e.g.
  354. *
  355. * ini_set('session.save_handler', 'files');
  356. * ini_set('session.save_path', '/tmp');
  357. *
  358. * or pass in a \SessionHandler instance which configures session.save_handler in the
  359. * constructor, for a template see NativeFileSessionHandler.
  360. *
  361. * @see https://php.net/session-set-save-handler
  362. * @see https://php.net/sessionhandlerinterface
  363. * @see https://php.net/sessionhandler
  364. *
  365. * @param AbstractProxy|\SessionHandlerInterface|null $saveHandler
  366. *
  367. * @throws \InvalidArgumentException
  368. */
  369. public function setSaveHandler($saveHandler = null)
  370. {
  371. if (!$saveHandler instanceof AbstractProxy &&
  372. !$saveHandler instanceof \SessionHandlerInterface &&
  373. null !== $saveHandler) {
  374. throw new \InvalidArgumentException('Must be instance of AbstractProxy; implement \SessionHandlerInterface; or be null.');
  375. }
  376. // Wrap $saveHandler in proxy and prevent double wrapping of proxy
  377. if (!$saveHandler instanceof AbstractProxy && $saveHandler instanceof \SessionHandlerInterface) {
  378. $saveHandler = new SessionHandlerProxy($saveHandler);
  379. } elseif (!$saveHandler instanceof AbstractProxy) {
  380. $saveHandler = new SessionHandlerProxy(new StrictSessionHandler(new \SessionHandler()));
  381. }
  382. $this->saveHandler = $saveHandler;
  383. if (headers_sent() || \PHP_SESSION_ACTIVE === session_status()) {
  384. return;
  385. }
  386. if ($this->saveHandler instanceof SessionHandlerProxy) {
  387. session_set_save_handler($this->saveHandler, false);
  388. }
  389. }
  390. /**
  391. * Load the session with attributes.
  392. *
  393. * After starting the session, PHP retrieves the session from whatever handlers
  394. * are set to (either PHP's internal, or a custom save handler set with session_set_save_handler()).
  395. * PHP takes the return value from the read() handler, unserializes it
  396. * and populates $_SESSION with the result automatically.
  397. */
  398. protected function loadSession(array &$session = null)
  399. {
  400. if (null === $session) {
  401. $session = &$_SESSION;
  402. }
  403. $bags = array_merge($this->bags, [$this->metadataBag]);
  404. foreach ($bags as $bag) {
  405. $key = $bag->getStorageKey();
  406. $session[$key] = isset($session[$key]) && \is_array($session[$key]) ? $session[$key] : [];
  407. $bag->initialize($session[$key]);
  408. }
  409. $this->started = true;
  410. $this->closed = false;
  411. }
  412. }