NativeSessionStorage.php 14 KB

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