PageRenderTime 44ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php

https://gitlab.com/madwanz64/laravel
PHP | 470 lines | 238 code | 63 blank | 169 comment | 41 complexity | aa7e80f6aa7a7c6631664227b9690429 MD5 | raw file
  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. // ok to try and start the session
  137. if (!session_start()) {
  138. throw new \RuntimeException('Failed to start the session.');
  139. }
  140. if (null !== $this->emulateSameSite) {
  141. $originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
  142. if (null !== $originalCookie) {
  143. header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite), false);
  144. }
  145. }
  146. $this->loadSession();
  147. return true;
  148. }
  149. /**
  150. * {@inheritdoc}
  151. */
  152. public function getId()
  153. {
  154. return $this->saveHandler->getId();
  155. }
  156. /**
  157. * {@inheritdoc}
  158. */
  159. public function setId($id)
  160. {
  161. $this->saveHandler->setId($id);
  162. }
  163. /**
  164. * {@inheritdoc}
  165. */
  166. public function getName()
  167. {
  168. return $this->saveHandler->getName();
  169. }
  170. /**
  171. * {@inheritdoc}
  172. */
  173. public function setName($name)
  174. {
  175. $this->saveHandler->setName($name);
  176. }
  177. /**
  178. * {@inheritdoc}
  179. */
  180. public function regenerate($destroy = false, $lifetime = null)
  181. {
  182. // Cannot regenerate the session ID for non-active sessions.
  183. if (\PHP_SESSION_ACTIVE !== session_status()) {
  184. return false;
  185. }
  186. if (headers_sent()) {
  187. return false;
  188. }
  189. if (null !== $lifetime && $lifetime != ini_get('session.cookie_lifetime')) {
  190. $this->save();
  191. ini_set('session.cookie_lifetime', $lifetime);
  192. $this->start();
  193. }
  194. if ($destroy) {
  195. $this->metadataBag->stampNew();
  196. }
  197. $isRegenerated = session_regenerate_id($destroy);
  198. if (null !== $this->emulateSameSite) {
  199. $originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
  200. if (null !== $originalCookie) {
  201. header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite), false);
  202. }
  203. }
  204. return $isRegenerated;
  205. }
  206. /**
  207. * {@inheritdoc}
  208. */
  209. public function save()
  210. {
  211. // Store a copy so we can restore the bags in case the session was not left empty
  212. $session = $_SESSION;
  213. foreach ($this->bags as $bag) {
  214. if (empty($_SESSION[$key = $bag->getStorageKey()])) {
  215. unset($_SESSION[$key]);
  216. }
  217. }
  218. if ([$key = $this->metadataBag->getStorageKey()] === array_keys($_SESSION)) {
  219. unset($_SESSION[$key]);
  220. }
  221. // Register error handler to add information about the current save handler
  222. $previousHandler = set_error_handler(function ($type, $msg, $file, $line) use (&$previousHandler) {
  223. if (\E_WARNING === $type && str_starts_with($msg, 'session_write_close():')) {
  224. $handler = $this->saveHandler instanceof SessionHandlerProxy ? $this->saveHandler->getHandler() : $this->saveHandler;
  225. $msg = sprintf('session_write_close(): Failed to write session data with "%s" handler', \get_class($handler));
  226. }
  227. return $previousHandler ? $previousHandler($type, $msg, $file, $line) : false;
  228. });
  229. try {
  230. session_write_close();
  231. } finally {
  232. restore_error_handler();
  233. // Restore only if not empty
  234. if ($_SESSION) {
  235. $_SESSION = $session;
  236. }
  237. }
  238. $this->closed = true;
  239. $this->started = false;
  240. }
  241. /**
  242. * {@inheritdoc}
  243. */
  244. public function clear()
  245. {
  246. // clear out the bags
  247. foreach ($this->bags as $bag) {
  248. $bag->clear();
  249. }
  250. // clear out the session
  251. $_SESSION = [];
  252. // reconnect the bags to the session
  253. $this->loadSession();
  254. }
  255. /**
  256. * {@inheritdoc}
  257. */
  258. public function registerBag(SessionBagInterface $bag)
  259. {
  260. if ($this->started) {
  261. throw new \LogicException('Cannot register a bag when the session is already started.');
  262. }
  263. $this->bags[$bag->getName()] = $bag;
  264. }
  265. /**
  266. * {@inheritdoc}
  267. */
  268. public function getBag($name)
  269. {
  270. if (!isset($this->bags[$name])) {
  271. throw new \InvalidArgumentException(sprintf('The SessionBagInterface "%s" is not registered.', $name));
  272. }
  273. if (!$this->started && $this->saveHandler->isActive()) {
  274. $this->loadSession();
  275. } elseif (!$this->started) {
  276. $this->start();
  277. }
  278. return $this->bags[$name];
  279. }
  280. public function setMetadataBag(MetadataBag $metaBag = null)
  281. {
  282. if (null === $metaBag) {
  283. $metaBag = new MetadataBag();
  284. }
  285. $this->metadataBag = $metaBag;
  286. }
  287. /**
  288. * Gets the MetadataBag.
  289. *
  290. * @return MetadataBag
  291. */
  292. public function getMetadataBag()
  293. {
  294. return $this->metadataBag;
  295. }
  296. /**
  297. * {@inheritdoc}
  298. */
  299. public function isStarted()
  300. {
  301. return $this->started;
  302. }
  303. /**
  304. * Sets session.* ini variables.
  305. *
  306. * For convenience we omit 'session.' from the beginning of the keys.
  307. * Explicitly ignores other ini keys.
  308. *
  309. * @param array $options Session ini directives [key => value]
  310. *
  311. * @see https://php.net/session.configuration
  312. */
  313. public function setOptions(array $options)
  314. {
  315. if (headers_sent() || \PHP_SESSION_ACTIVE === session_status()) {
  316. return;
  317. }
  318. $validOptions = array_flip([
  319. 'cache_expire', 'cache_limiter', 'cookie_domain', 'cookie_httponly',
  320. 'cookie_lifetime', 'cookie_path', 'cookie_secure', 'cookie_samesite',
  321. 'gc_divisor', 'gc_maxlifetime', 'gc_probability',
  322. '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. if ('cookie_secure' === $key && 'auto' === $value) {
  338. continue;
  339. }
  340. ini_set('url_rewriter.tags' !== $key ? 'session.'.$key : $key, $value);
  341. }
  342. }
  343. }
  344. /**
  345. * Registers session save handler as a PHP session handler.
  346. *
  347. * To use internal PHP session save handlers, override this method using ini_set with
  348. * session.save_handler and session.save_path e.g.
  349. *
  350. * ini_set('session.save_handler', 'files');
  351. * ini_set('session.save_path', '/tmp');
  352. *
  353. * or pass in a \SessionHandler instance which configures session.save_handler in the
  354. * constructor, for a template see NativeFileSessionHandler.
  355. *
  356. * @see https://php.net/session-set-save-handler
  357. * @see https://php.net/sessionhandlerinterface
  358. * @see https://php.net/sessionhandler
  359. *
  360. * @param AbstractProxy|\SessionHandlerInterface|null $saveHandler
  361. *
  362. * @throws \InvalidArgumentException
  363. */
  364. public function setSaveHandler($saveHandler = null)
  365. {
  366. if (!$saveHandler instanceof AbstractProxy &&
  367. !$saveHandler instanceof \SessionHandlerInterface &&
  368. null !== $saveHandler) {
  369. throw new \InvalidArgumentException('Must be instance of AbstractProxy; implement \SessionHandlerInterface; or be null.');
  370. }
  371. // Wrap $saveHandler in proxy and prevent double wrapping of proxy
  372. if (!$saveHandler instanceof AbstractProxy && $saveHandler instanceof \SessionHandlerInterface) {
  373. $saveHandler = new SessionHandlerProxy($saveHandler);
  374. } elseif (!$saveHandler instanceof AbstractProxy) {
  375. $saveHandler = new SessionHandlerProxy(new StrictSessionHandler(new \SessionHandler()));
  376. }
  377. $this->saveHandler = $saveHandler;
  378. if (headers_sent() || \PHP_SESSION_ACTIVE === session_status()) {
  379. return;
  380. }
  381. if ($this->saveHandler instanceof SessionHandlerProxy) {
  382. session_set_save_handler($this->saveHandler, false);
  383. }
  384. }
  385. /**
  386. * Load the session with attributes.
  387. *
  388. * After starting the session, PHP retrieves the session from whatever handlers
  389. * are set to (either PHP's internal, or a custom save handler set with session_set_save_handler()).
  390. * PHP takes the return value from the read() handler, unserializes it
  391. * and populates $_SESSION with the result automatically.
  392. */
  393. protected function loadSession(array &$session = null)
  394. {
  395. if (null === $session) {
  396. $session = &$_SESSION;
  397. }
  398. $bags = array_merge($this->bags, [$this->metadataBag]);
  399. foreach ($bags as $bag) {
  400. $key = $bag->getStorageKey();
  401. $session[$key] = isset($session[$key]) && \is_array($session[$key]) ? $session[$key] : [];
  402. $bag->initialize($session[$key]);
  403. }
  404. $this->started = true;
  405. $this->closed = false;
  406. }
  407. }