Description[ServiceWorker] Check is_uninstalled in ServiceWorkerRegisterJob::ContinueWithRegistration()
In the following situations the registration may be already uninstalled.
So existing_registration->GetNewestVersion() could return NULL and crash in ContinueWithRegistration().
- register the ServiceWorker
- open the page in the ServiceWorker scope
- unregister the ServiceWorker
- register the ServiceWorker to the same scope and close the page quickly.
ServiceWorkerRegisterJob::Start() is called to register the ServiceWorker.
next_step is set to ContinueWithRegistration.
GetUninstallingRegistration() returns the uninstalling registration.
RunSoon() calls PostTask(next_step)
ServiceWorkerRegistration::Clear() is called because there is no controllee.
ContinueWithRegistration() is executed.
But at this moment the registration is already uninstalled.
And crashed while calling existing_registration->GetNewestVersion()->script_url().
https://codereview.chromium.org/506043002/ is reverted because of this crash.
So I created the revert of revert cl.
https://codereview.chromium.org/547743003
BUG=398355, 408048
TEST=http/tests/serviceworker/unregister-then-register-new-script.html http/tests/serviceworker/register-same-scope-different-script-url.html in https://codereview.chromium.org/547743003
Committed: https://crrev.com/fa444bb81a6489cf52730d3aaa0bcd34367d2685
Cr-Commit-Position: refs/heads/master@{#294540}
Patch Set 1 #
Total comments: 4
Patch Set 2 : move is_uninstalled_ = true; #
Created: 6 years, 3 months ago
Messages
Total messages: 14 (3 generated)
|