Request object is null when deserializing a cache

Created on 31 January 2025, 2 months ago

Problem/Motivation

We got a cannot get() on null error.

\Drupal\views\ViewExecutable::__wakeup()

if ($request = \Drupal::request()) {
  $this->setRequest($request);
}
...
$this->initHandlers();

The initHandlers() eventually leads to getHandlers() below, with no additional handling of the Views::$request property.

Drupal\views\Plugin\views\display\DisplayPluginBase::getHandlers()
...
if ($this->view->getRequest()->request->get('form_id') && ...) {

Steps to reproduce

Not sure how to reproduce. Memcache was appearing in the stack trace.

After we applied a patch to skip the $this->view->getRequest()->request->get('form_id') condition noted above, we could no longer reproduce the error.

This was a difficult find.

Check for $request existence before attempting to get form_id.

Proposed resolution

Whether it can be easily reproduced or not, the logic is clearly unsound.

The conditional existence of the request property to then be explicitly required to get('form_id') is unsound.

Remaining tasks

  • Identify a way to reproduce this issue.
  • Provide an appropriate patch.
πŸ› Bug report
Status

Active

Version

10.3 ✨

Component

views.module

Created by

πŸ‡ΊπŸ‡ΈUnited States jcandan

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024