WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 228923
Blob URL changes after loading it
https://bugs.webkit.org/show_bug.cgi?id=228923
Summary
Blob URL changes after loading it
Chris Dumez
Reported
2021-08-09 13:55:45 PDT
Blob URL changes after loading it. This is because we use URLWithBlobURLLifetimeExtension to extend the lifetime of the Blob URL during the load and URLWithBlobURLLifetimeExtension ends up creating a new public Blob URL. This is Web-observable so we need a way to extend the lifetime of a Blob URL without actually generating a new Blob URL.
Attachments
Patch
(53.62 KB, patch)
2021-08-09 14:01 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(53.74 KB, patch)
2021-08-09 14:22 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(53.55 KB, patch)
2021-08-09 15:25 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(54.97 KB, patch)
2021-08-09 15:59 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(58.94 KB, patch)
2021-08-09 18:54 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
Chris Dumez
Comment 1
2021-08-09 14:01:00 PDT
Created
attachment 435210
[details]
Patch
Geoffrey Garen
Comment 2
2021-08-09 14:14:06 PDT
Comment on
attachment 435210
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=435210&action=review
r=me
> Source/WebCore/fileapi/ThreadableBlobRegistry.cpp:175 > + if (isMainThread()) { > + blobRegistry().registerBlobURLHandle(url); > + return; > + } > + callOnMainThread([url = url.isolatedCopy()] { > + blobRegistry().registerBlobURLHandle(url); > + });
Can we use ensureOnMainThread here?
> Source/WebCore/fileapi/ThreadableBlobRegistry.cpp:186 > + if (isMainThread()) { > + blobRegistry().unregisterBlobURLHandle(url); > + return; > + } > + callOnMainThread([url = url.isolatedCopy()] { > + blobRegistry().unregisterBlobURLHandle(url); > + });
Ditto
Chris Dumez
Comment 3
2021-08-09 14:17:20 PDT
(In reply to Geoffrey Garen from
comment #2
)
> Comment on
attachment 435210
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=435210&action=review
> > r=me > > > Source/WebCore/fileapi/ThreadableBlobRegistry.cpp:175 > > + if (isMainThread()) { > > + blobRegistry().registerBlobURLHandle(url); > > + return; > > + } > > + callOnMainThread([url = url.isolatedCopy()] { > > + blobRegistry().registerBlobURLHandle(url); > > + }); > > Can we use ensureOnMainThread here? > > > Source/WebCore/fileapi/ThreadableBlobRegistry.cpp:186 > > + if (isMainThread()) { > > + blobRegistry().unregisterBlobURLHandle(url); > > + return; > > + } > > + callOnMainThread([url = url.isolatedCopy()] { > > + blobRegistry().unregisterBlobURLHandle(url); > > + }); > > Ditto
I considered it. The code would become more concise but then we would do an extra isolatedCopy() in the common case where we're already on the main thread. What do you think? Still worth it?
Chris Dumez
Comment 4
2021-08-09 14:22:43 PDT
Created
attachment 435212
[details]
Patch
Chris Dumez
Comment 5
2021-08-09 15:25:50 PDT
Created
attachment 435215
[details]
Patch
Geoffrey Garen
Comment 6
2021-08-09 15:50:30 PDT
> I considered it. The code would become more concise but then we would do an > extra isolatedCopy() in the common case where we're already on the main > thread. > > What do you think? Still worth it?
Interesting! Probably not optimizable, even if we inlined the ensureOnMainThread, since isolatedCopy() has side effects. Almost makes me want to use a macro. But macros are bad. :( I guess it's a tradeoff with no obvious winner; I'll leave it up to you.
Chris Dumez
Comment 7
2021-08-09 15:59:49 PDT
Created
attachment 435220
[details]
Patch
Chris Dumez
Comment 8
2021-08-09 18:54:06 PDT
Created
attachment 435231
[details]
Patch
EWS
Comment 9
2021-08-09 20:33:12 PDT
Committed
r280824
(
240387@main
): <
https://commits.webkit.org/240387@main
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 435231
[details]
.
Radar WebKit Bug Importer
Comment 10
2021-08-09 20:40:34 PDT
<
rdar://problem/81725874
>
Antoine Quint
Comment 11
2022-03-22 02:49:36 PDT
This caused a regression in
bug 236069
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug