Bug 228923

Summary: Blob URL changes after loading it
Product: WebKit Reporter: Chris Dumez <cdumez>
Component: Page LoadingAssignee: Chris Dumez <cdumez>
Status: RESOLVED FIXED    
Severity: Normal CC: achristensen, alecflett, annulen, beidson, ews-watchlist, ggaren, graouts, gyuyoung.kim, japhet, jsbell, ryuan.choi, sergio, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
See Also: https://bugs.webkit.org/show_bug.cgi?id=228168
https://bugs.webkit.org/show_bug.cgi?id=227821
https://bugs.webkit.org/show_bug.cgi?id=212279
https://bugs.webkit.org/show_bug.cgi?id=236069
Bug Depends on:    
Bug Blocks: 228924    
Attachments:
Description Flags
Patch
none
Patch
none
Patch
none
Patch
none
Patch none

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
Patch (53.74 KB, patch)
2021-08-09 14:22 PDT, Chris Dumez
no flags
Patch (53.55 KB, patch)
2021-08-09 15:25 PDT, Chris Dumez
no flags
Patch (54.97 KB, patch)
2021-08-09 15:59 PDT, Chris Dumez
no flags
Patch (58.94 KB, patch)
2021-08-09 18:54 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2021-08-09 14:01:00 PDT
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
Chris Dumez
Comment 5 2021-08-09 15:25:50 PDT
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
Chris Dumez
Comment 8 2021-08-09 18:54:06 PDT
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
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.