Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: third_party/WebKit/Source/core/frame/History.cpp

Issue 2972073002: Mitigate the pushState IPC storm DoS. (Closed)
Patch Set: Add a LayoutTest; give the bikeshed a bit o' wainscoting Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 } 109 }
110 110
111 HistoryScrollRestorationType History::ScrollRestorationInternal() const { 111 HistoryScrollRestorationType History::ScrollRestorationInternal() const {
112 HistoryItem* history_item = 112 HistoryItem* history_item =
113 GetFrame() ? GetFrame()->Loader().GetDocumentLoader()->GetHistoryItem() 113 GetFrame() ? GetFrame()->Loader().GetDocumentLoader()->GetHistoryItem()
114 : nullptr; 114 : nullptr;
115 return history_item ? history_item->ScrollRestorationType() 115 return history_item ? history_item->ScrollRestorationType()
116 : kScrollRestorationAuto; 116 : kScrollRestorationAuto;
117 } 117 }
118 118
119 // TODO(crbug.com/394296): This is not the long-term fix to IPC flooding that we
120 // need. However, it does somewhat mitigate the immediate concern of |pushState|
121 // and |replaceState| DoS (assuming the renderer has not been compromised).
122 bool History::ShouldThrottleStateObjectChanges() {
123 const int kStateUpdateLimit = 50;
124
125 if (state_flood_guard.count > kStateUpdateLimit) {
126 static constexpr auto kStateUpdateLimitResetInterval =
127 TimeDelta::FromSeconds(10);
128 const auto now = TimeTicks::Now();
129 if (now - state_flood_guard.last_updated > kStateUpdateLimitResetInterval) {
130 state_flood_guard.count = 0;
131 state_flood_guard.last_updated = now;
132 return false;
133 }
134 return true;
135 }
136
137 state_flood_guard.count++;
138 return false;
139 }
140
119 bool History::stateChanged() const { 141 bool History::stateChanged() const {
120 return last_state_object_requested_ != StateInternal(); 142 return last_state_object_requested_ != StateInternal();
121 } 143 }
122 144
123 bool History::IsSameAsCurrentState(SerializedScriptValue* state) const { 145 bool History::IsSameAsCurrentState(SerializedScriptValue* state) const {
124 return state == StateInternal(); 146 return state == StateInternal();
125 } 147 }
126 148
127 void History::back(ScriptState* script_state) { 149 void History::back(ScriptState* script_state) {
128 go(script_state, -1); 150 go(script_state, -1);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 void History::StateObjectAdded(PassRefPtr<SerializedScriptValue> data, 231 void History::StateObjectAdded(PassRefPtr<SerializedScriptValue> data,
210 const String& /* title */, 232 const String& /* title */,
211 const String& url_string, 233 const String& url_string,
212 HistoryScrollRestorationType restoration_type, 234 HistoryScrollRestorationType restoration_type,
213 FrameLoadType type, 235 FrameLoadType type,
214 ExceptionState& exception_state) { 236 ExceptionState& exception_state) {
215 if (!GetFrame() || !GetFrame()->GetPage() || 237 if (!GetFrame() || !GetFrame()->GetPage() ||
216 !GetFrame()->Loader().GetDocumentLoader()) 238 !GetFrame()->Loader().GetDocumentLoader())
217 return; 239 return;
218 240
241 if (ShouldThrottleStateObjectChanges()) {
242 return;
243 }
kinuko 2017/07/10 05:10:49 nit: no { } needed Do we want to have this after
palmer 2017/07/10 19:42:25 Done.
244
219 KURL full_url = UrlForState(url_string); 245 KURL full_url = UrlForState(url_string);
220 if (!CanChangeToUrl(full_url, GetFrame()->GetDocument()->GetSecurityOrigin(), 246 if (!CanChangeToUrl(full_url, GetFrame()->GetDocument()->GetSecurityOrigin(),
221 GetFrame()->GetDocument()->Url())) { 247 GetFrame()->GetDocument()->Url())) {
222 // We can safely expose the URL to JavaScript, as a) no redirection takes 248 // We can safely expose the URL to JavaScript, as a) no redirection takes
223 // place: JavaScript already had this URL, b) JavaScript can only access a 249 // place: JavaScript already had this URL, b) JavaScript can only access a
224 // same-origin History object. 250 // same-origin History object.
225 exception_state.ThrowSecurityError( 251 exception_state.ThrowSecurityError(
226 "A history state object with URL '" + full_url.ElidedString() + 252 "A history state object with URL '" + full_url.ElidedString() +
227 "' cannot be created in a document with origin '" + 253 "' cannot be created in a document with origin '" +
228 GetFrame()->GetDocument()->GetSecurityOrigin()->ToString() + 254 GetFrame()->GetDocument()->GetSecurityOrigin()->ToString() +
229 "' and URL '" + GetFrame()->GetDocument()->Url().ElidedString() + "'."); 255 "' and URL '" + GetFrame()->GetDocument()->Url().ElidedString() + "'.");
230 return; 256 return;
231 } 257 }
232 258
233 GetFrame()->Loader().UpdateForSameDocumentNavigation( 259 GetFrame()->Loader().UpdateForSameDocumentNavigation(
234 full_url, kSameDocumentNavigationHistoryApi, std::move(data), 260 full_url, kSameDocumentNavigationHistoryApi, std::move(data),
235 restoration_type, type, GetFrame()->GetDocument()); 261 restoration_type, type, GetFrame()->GetDocument());
236 } 262 }
237 263
238 } // namespace blink 264 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698