RESOLVED FIXED 129081
ASSERT in FrameLoader::shouldInterruptLoadForXFrameOptions
https://bugs.webkit.org/show_bug.cgi?id=129081
Summary ASSERT in FrameLoader::shouldInterruptLoadForXFrameOptions
Pratik Solanki
Reported 2014-02-19 21:36:58 PST
Malformed servers that don't pass a value in X-Frame-Options can trigger this assert. e.g. on <http://mweb.cbssports.com/ncaab/eye-on-college-basketball/24436548/night-court-marcus-foster-stars-xavier-and-iowa-get-key-wins> there's a load of <https://vine.co/v/MWmZ7L31emm/card> in an iframe. The headers for that URL are $ curl -I https://vine.co/v/MWmZ7L31emm/card HTTP/1.1 200 OK Cache-Control: max-age=1800 Content-Type: text/html; charset=utf-8 Date: Thu, 20 Feb 2014 05:36:30 GMT Strict-Transport-Security: max-age=631138519 X-Content-Type-Options: nosniff X-Frame-Options: X-XSS-Protection: 1; mode=block Connection: keep-alive The empty X-Frame-Options triggers the assert.
Attachments
Patch (1.61 KB, patch)
2014-02-19 21:41 PST, Pratik Solanki
ap: review+
ap: commit-queue-
Pratik Solanki
Comment 1 2014-02-19 21:37:15 PST
Pratik Solanki
Comment 2 2014-02-19 21:41:13 PST
Alexey Proskuryakov
Comment 3 2014-02-19 23:03:57 PST
Comment on attachment 224705 [details] Patch This breaks gcc build. I think that we need an ASSERT_NOT_REACHED() and return at the end. /mnt/eflews/webkit/WebKit/Source/WebCore/loader/FrameLoader.cpp: In member function 'bool WebCore::FrameLoader::shouldInterruptLoadForXFrameOptions(const WTF::String&, const WebCore::URL&, long unsigned int)': /mnt/eflews/webkit/WebKit/Source/WebCore/loader/FrameLoader.cpp:3074:1: error: control reaches end of non-void function [-Werror=return-type] cc1plus: all warnings being treated as errors
Pratik Solanki
Comment 4 2014-02-20 10:16:47 PST
(In reply to comment #3) > (From update of attachment 224705 [details]) > This breaks gcc build. I think that we need an ASSERT_NOT_REACHED() and return at the end. Ok. Will add that and land the patch. Thanks for the review.
Pratik Solanki
Comment 5 2014-02-20 10:18:38 PST
Note You need to log in before you can comment on or make changes to this bug.