Chromium Code Reviews

Issue 556003006: [ServiceWorker] Check is_uninstalled in ServiceWorkerRegisterJob::ContinueWithRegistration() (Closed)

Created:
6 years, 3 months ago by horo
Modified:
6 years, 3 months ago
Reviewers:
michaeln, nhiroki
CC:
chromium-reviews, michaeln, jsbell+serviceworker_chromium.org, tzik, serviceworker-reviews, jam, kinuko+serviceworker, darin-cc_chromium.org, horo+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

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; #

Unified diffs Side-by-side diffs Stats (+6 lines, -1 line)
M content/browser/service_worker/service_worker_register_job.cc View 1 chunk +2 lines, -1 line 0 comments
M content/browser/service_worker/service_worker_registration.h View 2 chunks +2 lines, -0 lines 0 comments
M content/browser/service_worker/service_worker_registration.cc View 2 chunks +2 lines, -0 lines 0 comments

Messages

Total messages: 14 (3 generated)
horo
nhiroki@
6 years, 3 months ago (2014-09-11 12:34:21 UTC) #2
horo
nhiroki@ Could you please review?
6 years, 3 months ago (2014-09-11 12:34:44 UTC) #3
nhiroki
Let me add michaeln@ as a reviewer for double check...
6 years, 3 months ago (2014-09-11 12:53:31 UTC) #5
nhiroki
https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.h File content/browser/service_worker/service_worker_registration.h (right): https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.h#newcode142 content/browser/service_worker/service_worker_registration.h:142: bool is_deleted_; I wonder if we can use |is_deleted| ...
6 years, 3 months ago (2014-09-11 13:05:38 UTC) #6
horo
https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.h File content/browser/service_worker/service_worker_registration.h (right): https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.h#newcode142 content/browser/service_worker/service_worker_registration.h:142: bool is_deleted_; On 2014/09/11 13:05:38, nhiroki wrote: > I ...
6 years, 3 months ago (2014-09-11 17:50:14 UTC) #7
michaeln
lgtm, nice bug fix! https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.cc File content/browser/service_worker/service_worker_registration.cc (right): https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.cc#newcode319 content/browser/service_worker/service_worker_registration.cc:319: is_uninstalled_ = true; Would it ...
6 years, 3 months ago (2014-09-11 19:31:41 UTC) #8
horo
https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.cc File content/browser/service_worker/service_worker_registration.cc (right): https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.cc#newcode319 content/browser/service_worker/service_worker_registration.cc:319: is_uninstalled_ = true; On 2014/09/11 19:31:40, michaeln wrote: > ...
6 years, 3 months ago (2014-09-12 01:09:26 UTC) #9
nhiroki
On 2014/09/11 17:50:14, horo wrote: > https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.h > File content/browser/service_worker/service_worker_registration.h (right): > > https://codereview.chromium.org/556003006/diff/1/content/browser/service_worker/service_worker_registration.h#newcode142 > ...
6 years, 3 months ago (2014-09-12 02:08:11 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/556003006/20001
6 years, 3 months ago (2014-09-12 02:52:08 UTC) #12
commit-bot: I haz the power
Committed patchset #2 (id:20001) as 43eccb0a9ba938522307f4ecdb18147ccbaaf996
6 years, 3 months ago (2014-09-12 03:57:19 UTC) #13
commit-bot: I haz the power
6 years, 3 months ago (2014-09-12 04:00:28 UTC) #14
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/fa444bb81a6489cf52730d3aaa0bcd34367d2685
Cr-Commit-Position: refs/heads/master@{#294540}

Powered by Google App Engine