Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_impl.cc |
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
| index 39e9fc5c4d805792d3c1c0e2739b5b8ac5143f44..c92416ad17ec139ecbcfa41c79e47f2b5e1664ea 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.cc |
| +++ b/content/browser/frame_host/render_frame_host_impl.cc |
| @@ -15,7 +15,6 @@ |
| #include "content/browser/accessibility/ax_tree_id_registry.h" |
| #include "content/browser/accessibility/browser_accessibility_manager.h" |
| #include "content/browser/accessibility/browser_accessibility_state_impl.h" |
| -#include "content/browser/bad_message.h" |
| #include "content/browser/child_process_security_policy_impl.h" |
| #include "content/browser/devtools/render_frame_devtools_agent_host.h" |
| #include "content/browser/frame_host/cross_process_frame_connector.h" |
| @@ -465,6 +464,8 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) { |
| IPC_MESSAGE_HANDLER(FrameHostMsg_DidAssignPageId, OnDidAssignPageId) |
| IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeSandboxFlags, |
| OnDidChangeSandboxFlags) |
| + IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeFrameOwnerProperties, |
| + OnDidChangeFrameOwnerProperties) |
| IPC_MESSAGE_HANDLER(FrameHostMsg_UpdateTitle, OnUpdateTitle) |
| IPC_MESSAGE_HANDLER(FrameHostMsg_UpdateEncoding, OnUpdateEncoding) |
| IPC_MESSAGE_HANDLER(FrameHostMsg_BeginNavigation, |
| @@ -635,6 +636,7 @@ bool RenderFrameHostImpl::CreateRenderFrame(int proxy_routing_id, |
| params.parent_routing_id = parent_routing_id; |
| params.previous_sibling_routing_id = previous_sibling_routing_id; |
| params.replication_state = frame_tree_node()->current_replication_state(); |
| + params.frame_owner_properties = frame_tree_node()->frame_owner_properties(); |
| if (render_widget_host_) { |
| params.widget_params.routing_id = render_widget_host_->GetRoutingID(); |
| @@ -724,7 +726,8 @@ void RenderFrameHostImpl::OnCreateChildFrame( |
| int new_routing_id, |
| blink::WebTreeScopeType scope, |
| const std::string& frame_name, |
| - blink::WebSandboxFlags sandbox_flags) { |
| + blink::WebSandboxFlags sandbox_flags, |
| + const blink::WebFrameOwnerProperties& frame_owner_properties) { |
| // It is possible that while a new RenderFrameHost was committed, the |
| // RenderFrame corresponding to this host sent an IPC message to create a |
| // frame and it is delivered after this host is swapped out. |
| @@ -732,9 +735,9 @@ void RenderFrameHostImpl::OnCreateChildFrame( |
| if (rfh_state_ != RenderFrameHostImpl::STATE_DEFAULT) |
| return; |
| - RenderFrameHostImpl* new_frame = |
| - frame_tree_->AddFrame(frame_tree_node_, GetProcess()->GetID(), |
| - new_routing_id, scope, frame_name, sandbox_flags); |
| + RenderFrameHostImpl* new_frame = frame_tree_->AddFrame( |
| + frame_tree_node_, GetProcess()->GetID(), new_routing_id, scope, |
| + frame_name, sandbox_flags, frame_owner_properties); |
| if (!new_frame) |
| return; |
| @@ -1310,20 +1313,13 @@ void RenderFrameHostImpl::OnDidAssignPageId(int32 page_id) { |
| void RenderFrameHostImpl::OnDidChangeSandboxFlags( |
| int32 frame_routing_id, |
| blink::WebSandboxFlags flags) { |
| - FrameTree* frame_tree = frame_tree_node()->frame_tree(); |
| - FrameTreeNode* child = |
| - frame_tree->FindByRoutingID(GetProcess()->GetID(), frame_routing_id); |
| - if (!child) |
| - return; |
| - |
| // Ensure that a frame can only update sandbox flags for its immediate |
| // children. If this is not the case, the renderer is considered malicious |
| // and is killed. |
| - if (child->parent() != frame_tree_node()) { |
| - bad_message::ReceivedBadMessage(GetProcess(), |
| - bad_message::RFH_SANDBOX_FLAGS); |
| + FrameTreeNode* child = CheckAndGetIfChild( |
| + frame_routing_id, bad_message::RFH_SANDBOX_FLAGS); |
| + if (!child) |
| return; |
| - } |
| child->set_sandbox_flags(flags); |
| @@ -1339,6 +1335,37 @@ void RenderFrameHostImpl::OnDidChangeSandboxFlags( |
| } |
| } |
| +FrameTreeNode* RenderFrameHostImpl::CheckAndGetIfChild( |
|
Charlie Reis
2015/10/14 23:34:17
nit: If we're not going to list this in the order
lazyboy
2015/10/15 02:31:38
Done.
|
| + int32 child_frame_routing_id, |
| + bad_message::BadMessageReason reason) { |
| + FrameTreeNode* child = frame_tree_node()->frame_tree()->FindByRoutingID( |
| + GetProcess()->GetID(), child_frame_routing_id); |
| + if (child && child->parent() != frame_tree_node()) { |
| + bad_message::ReceivedBadMessage(GetProcess(), reason); |
| + return nullptr; |
| + } |
| + return child; |
| +} |
| + |
| +void RenderFrameHostImpl::OnDidChangeFrameOwnerProperties( |
| + int32 frame_routing_id, |
| + const blink::WebFrameOwnerProperties& frame_owner_properties) { |
| + FrameTreeNode* child = CheckAndGetIfChild( |
| + frame_routing_id, bad_message::RFH_OWNER_PROPERTY); |
| + if (!child) |
| + return; |
| + |
| + child->set_frame_owner_properties(frame_owner_properties); |
| + |
| + // Notify the RenderFrame if it lives in a different process from its |
| + // parent. |
|
Charlie Reis
2015/10/14 23:34:17
Also mention why we don't need to tell the proxies
lazyboy
2015/10/15 02:31:38
Done.
|
| + RenderFrameHost* child_rfh = child->current_frame_host(); |
| + if (child_rfh->GetSiteInstance() != GetSiteInstance()) { |
| + child_rfh->Send(new FrameMsg_SetFrameOwnerProperties( |
| + child_rfh->GetRoutingID(), frame_owner_properties)); |
| + } |
| +} |
| + |
| void RenderFrameHostImpl::OnUpdateTitle( |
| const base::string16& title, |
| blink::WebTextDirection title_direction) { |