blob: 3b7a584378a65613164b9f155ce192564ce9eeff [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "fuchsia/engine/browser/frame_impl.h"
#include <zircon/syscalls.h>
#include <string>
#include "base/bind_helpers.h"
#include "base/fuchsia/fuchsia_logging.h"
#include "base/logging.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/threading/thread_task_runner_handle.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/message_port_provider.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/renderer_preferences_util.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/was_activated_option.h"
#include "fuchsia/base/mem_buffer_util.h"
#include "fuchsia/engine/browser/context_impl.h"
#include "fuchsia/engine/browser/message_port_impl.h"
#include "mojo/public/cpp/system/platform_handle.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "ui/aura/layout_manager.h"
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host_platform.h"
#include "ui/base/ime/input_method_base.h"
#include "ui/platform_window/platform_window_init_properties.h"
#include "ui/wm/core/base_focus_rules.h"
#include "url/gurl.h"
namespace {
// Layout manager that allows only one child window and stretches it to fill the
// parent.
class LayoutManagerImpl : public aura::LayoutManager {
public:
LayoutManagerImpl() = default;
~LayoutManagerImpl() override = default;
// aura::LayoutManager.
void OnWindowResized() override {
// Resize the child to match the size of the parent
if (child_) {
SetChildBoundsDirect(child_,
gfx::Rect(child_->parent()->bounds().size()));
}
}
void OnWindowAddedToLayout(aura::Window* child) override {
DCHECK(!child_);
child_ = child;
SetChildBoundsDirect(child_, gfx::Rect(child_->parent()->bounds().size()));
}
void OnWillRemoveWindowFromLayout(aura::Window* child) override {
DCHECK_EQ(child, child_);
child_ = nullptr;
}
void OnWindowRemovedFromLayout(aura::Window* child) override {}
void OnChildWindowVisibilityChanged(aura::Window* child,
bool visible) override {}
void SetChildBounds(aura::Window* child,
const gfx::Rect& requested_bounds) override {}
private:
aura::Window* child_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(LayoutManagerImpl);
};
chromium::web::NavigationEntry ConvertContentNavigationEntry(
content::NavigationEntry* entry) {
DCHECK(entry);
chromium::web::NavigationEntry converted;
converted.title = base::UTF16ToUTF8(entry->GetTitleForDisplay());
converted.url = entry->GetURL().spec();
converted.is_error =
entry->GetPageType() == content::PageType::PAGE_TYPE_ERROR;
return converted;
}
// Computes the observable differences between |entry_1| and |entry_2|.
// Returns true if they are different, |false| if their observable fields are
// identical.
bool ComputeNavigationEvent(const chromium::web::NavigationEntry& old_entry,
const chromium::web::NavigationEntry& new_entry,
chromium::web::NavigationEvent* computed_event) {
DCHECK(computed_event);
bool is_changed = false;
if (old_entry.title != new_entry.title) {
is_changed = true;
computed_event->title = new_entry.title;
}
if (old_entry.url != new_entry.url) {
is_changed = true;
computed_event->url = new_entry.url;
}
computed_event->is_error = new_entry.is_error;
if (old_entry.is_error != new_entry.is_error)
is_changed = true;
return is_changed;
}
class FrameFocusRules : public wm::BaseFocusRules {
public:
FrameFocusRules() = default;
~FrameFocusRules() override = default;
// wm::BaseFocusRules implementation.
bool SupportsChildActivation(const aura::Window*) const override;
private:
DISALLOW_COPY_AND_ASSIGN(FrameFocusRules);
};
bool FrameFocusRules::SupportsChildActivation(const aura::Window*) const {
// TODO(crbug.com/878439): Return a result based on window properties such as
// visibility.
return true;
}
bool IsOriginWhitelisted(const GURL& url,
const std::vector<std::string>& allowed_origins) {
constexpr const char kWildcard[] = "*";
for (const std::string& origin : allowed_origins) {
if (origin == kWildcard)
return true;
GURL origin_url(origin);
if (!origin_url.is_valid()) {
DLOG(WARNING) << "Ignored invalid origin spec for whitelisting: "
<< origin;
continue;
}
if (origin_url != url.GetOrigin())
continue;
// TODO(crbug.com/893236): Add handling for nonstandard origins
// (e.g. data: URIs).
return true;
}
return false;
}
class ScenicWindowTreeHost : public aura::WindowTreeHostPlatform {
public:
explicit ScenicWindowTreeHost(ui::PlatformWindowInitProperties properties)
: aura::WindowTreeHostPlatform(std::move(properties)) {}
~ScenicWindowTreeHost() override = default;
// Route focus & blur events to the window's focus observer and its
// InputMethod.
void OnActivationChanged(bool active) override {
if (active) {
aura::client::GetFocusClient(window())->FocusWindow(window());
GetInputMethod()->OnFocus();
} else {
aura::client::GetFocusClient(window())->FocusWindow(nullptr);
GetInputMethod()->OnBlur();
}
}
private:
DISALLOW_COPY_AND_ASSIGN(ScenicWindowTreeHost);
};
} // namespace
FrameImpl::FrameImpl(std::unique_ptr<content::WebContents> web_contents,
ContextImpl* context,
fidl::InterfaceRequest<chromium::web::Frame> frame_request)
: web_contents_(std::move(web_contents)),
context_(context),
binding_(this, std::move(frame_request)),
weak_factory_(this) {
web_contents_->SetDelegate(this);
Observe(web_contents_.get());
binding_.set_error_handler([this](zx_status_t status) {
ZX_LOG_IF(ERROR, status != ZX_ERR_PEER_CLOSED, status)
<< " Frame disconnected.";
context_->DestroyFrame(this);
});
content::UpdateFontRendererPreferencesFromSystemSettings(
web_contents_->GetMutableRendererPrefs());
}
FrameImpl::~FrameImpl() {
TearDownView();
}
zx::unowned_channel FrameImpl::GetBindingChannelForTest() const {
return zx::unowned_channel(binding_.channel());
}
bool FrameImpl::ShouldCreateWebContents(
content::WebContents* web_contents,
content::RenderFrameHost* opener,
content::SiteInstance* source_site_instance,
int32_t route_id,
int32_t main_frame_route_id,
int32_t main_frame_widget_route_id,
content::mojom::WindowContainerType window_container_type,
const GURL& opener_url,
const std::string& frame_name,
const GURL& target_url,
const std::string& partition_id,
content::SessionStorageNamespace* session_storage_namespace) {
DCHECK_EQ(web_contents, web_contents_.get());
// Prevent any child WebContents (popup windows, tabs, etc.) from spawning.
// TODO(crbug.com/888131): Implement support for popup windows.
NOTIMPLEMENTED() << "Ignored popup window request for URL: "
<< target_url.spec();
return false;
}
void FrameImpl::CreateView(fuchsia::ui::views::ViewToken view_token) {
// If a View to this Frame is already active then disconnect it.
TearDownView();
ui::PlatformWindowInitProperties properties;
properties.view_token = std::move(view_token);
window_tree_host_ =
std::make_unique<ScenicWindowTreeHost>(std::move(properties));
window_tree_host_->InitHost();
window_tree_host_->window()->GetHost()->AddEventRewriter(
&discarding_event_filter_);
focus_controller_ =
std::make_unique<wm::FocusController>(new FrameFocusRules);
aura::client::SetFocusClient(root_window(), focus_controller_.get());
wm::SetActivationClient(root_window(), focus_controller_.get());
// Add hooks which automatically set the focus state when input events are
// received.
root_window()->AddPreTargetHandler(focus_controller_.get());
// Track child windows for enforcement of window management policies and
// propagate window manager events to them (e.g. window resizing).
root_window()->SetLayoutManager(new LayoutManagerImpl());
root_window()->AddChild(web_contents_->GetNativeView());
web_contents_->GetNativeView()->Show();
window_tree_host_->Show();
}
void FrameImpl::CreateView2(
zx::eventpair view_token_value,
fidl::InterfaceRequest<fuchsia::sys::ServiceProvider> incoming_services,
fidl::InterfaceHandle<fuchsia::sys::ServiceProvider> outgoing_services) {
fuchsia::ui::views::ViewToken view_token;
view_token.value = std::move(view_token_value);
CreateView(std::move(view_token));
}
void FrameImpl::GetNavigationController(
fidl::InterfaceRequest<chromium::web::NavigationController> controller) {
controller_bindings_.AddBinding(this, std::move(controller));
}
void FrameImpl::SetJavaScriptLogLevel(chromium::web::LogLevel level) {
log_level_ = level;
}
void FrameImpl::SetNavigationEventObserver(
fidl::InterfaceHandle<chromium::web::NavigationEventObserver> observer) {
// Reset the event buffer state.
waiting_for_navigation_event_ack_ = false;
cached_navigation_state_ = {};
pending_navigation_event_ = {};
pending_navigation_event_is_dirty_ = false;
if (observer) {
navigation_observer_.Bind(std::move(observer));
navigation_observer_.set_error_handler(
[this](zx_status_t status) { SetNavigationEventObserver(nullptr); });
} else {
navigation_observer_.Unbind();
}
}
void FrameImpl::ExecuteJavaScript(std::vector<std::string> origins,
fuchsia::mem::Buffer script,
chromium::web::ExecuteMode mode,
ExecuteJavaScriptCallback callback) {
if (mode == chromium::web::ExecuteMode::ON_PAGE_LOAD) {
// TODO(https://crbug.com/946235): Remove this.
AddJavaScriptBindings(next_transitional_bindings_id_++, std::move(origins),
std::move(script), std::move(callback));
return;
} else if (mode != chromium::web::ExecuteMode::IMMEDIATE_ONCE) {
// Unknown mode, ignored.
callback(false);
return;
}
if (!context_->IsJavaScriptInjectionAllowed()) {
callback(false);
return;
}
if (!IsOriginWhitelisted(web_contents_->GetLastCommittedURL(), origins)) {
callback(false);
return;
}
base::string16 script_utf16;
if (!cr_fuchsia::ReadUTF8FromVMOAsUTF16(script, &script_utf16)) {
LOG(WARNING) << "Script is not valid UTF8.";
callback(false);
return;
}
web_contents_->GetMainFrame()->ExecuteJavaScript(script_utf16,
base::NullCallback());
callback(true);
}
void FrameImpl::AddJavaScriptBindings(uint64_t id,
std::vector<std::string> origins,
fuchsia::mem::Buffer script,
AddJavaScriptBindingsCallback callback) {
if (!context_->IsJavaScriptInjectionAllowed()) {
callback(false);
return;
}
// Convert the script to UTF8 and store it as a shared memory buffer, so that
// it can be efficiently shared with multiple renderer processes.
base::string16 script_utf16;
if (!cr_fuchsia::ReadUTF8FromVMOAsUTF16(script, &script_utf16)) {
callback(false);
return;
}
// Create a read-only VMO from |script|.
fuchsia::mem::Buffer script_buffer =
cr_fuchsia::MemBufferFromString16(script_utf16);
if (!script_buffer.vmo) {
LOG(WARNING) << "Couldn't read script contents from VMO.";
callback(false);
return;
}
// Wrap the VMO into a read-only shared-memory container that Mojo can work
// with.
base::subtle::PlatformSharedMemoryRegion script_region =
base::subtle::PlatformSharedMemoryRegion::Take(
std::move(script_buffer.vmo),
base::subtle::PlatformSharedMemoryRegion::Mode::kWritable,
script_buffer.size, base::UnguessableToken::Create());
script_region.ConvertToReadOnly();
auto script_region_mojo =
base::ReadOnlySharedMemoryRegion::Deserialize(std::move(script_region));
// If there is no script with the identifier |id|, then create a place for it
// at the end of the injection sequence.
if (before_load_scripts_.find(id) == before_load_scripts_.end())
before_load_scripts_order_.push_back(id);
before_load_scripts_[id] =
OriginScopedScript(origins, std::move(script_region_mojo));
callback(true);
}
void FrameImpl::RemoveJavaScriptBindings(
uint64_t id,
RemoveJavaScriptBindingsCallback callback) {
before_load_scripts_.erase(id);
for (auto script_id_iter = before_load_scripts_order_.begin();
script_id_iter != before_load_scripts_order_.end(); ++script_id_iter) {
if (*script_id_iter == id) {
before_load_scripts_order_.erase(script_id_iter);
callback(true);
return;
}
}
callback(false);
}
void FrameImpl::PostMessage(chromium::web::WebMessage message,
std::string target_origin,
PostMessageCallback callback) {
constexpr char kWildcardOrigin[] = "*";
if (target_origin.empty()) {
callback(false);
return;
}
base::Optional<base::string16> target_origin_utf16;
if (target_origin != kWildcardOrigin)
target_origin_utf16 = base::UTF8ToUTF16(target_origin);
base::string16 data_utf16;
if (!cr_fuchsia::ReadUTF8FromVMOAsUTF16(message.data, &data_utf16)) {
DLOG(WARNING) << "PostMessage() rejected non-UTF8 |message.data|.";
callback(false);
return;
}
// Include outgoing MessagePorts in the message.
std::vector<mojo::ScopedMessagePipeHandle> message_ports;
if (message.outgoing_transfer) {
if (!message.outgoing_transfer->is_message_port()) {
DLOG(WARNING) << "|outgoing_transfer| is not a MessagePort.";
callback(false);
return;
}
mojo::ScopedMessagePipeHandle port = MessagePortImpl::FromFidl(
std::move(message.outgoing_transfer->message_port()));
if (!port) {
callback(false);
return;
}
message_ports.push_back(std::move(port));
}
content::MessagePortProvider::PostMessageToFrame(
web_contents_.get(), base::string16(), target_origin_utf16,
std::move(data_utf16), std::move(message_ports));
callback(true);
}
FrameImpl::OriginScopedScript::OriginScopedScript() = default;
FrameImpl::OriginScopedScript::OriginScopedScript(
std::vector<std::string> origins,
base::ReadOnlySharedMemoryRegion script)
: origins_(std::move(origins)), script_(std::move(script)) {}
FrameImpl::OriginScopedScript& FrameImpl::OriginScopedScript::operator=(
FrameImpl::OriginScopedScript&& other) {
origins_ = std::move(other.origins_);
script_ = std::move(other.script_);
return *this;
}
FrameImpl::OriginScopedScript::~OriginScopedScript() = default;
void FrameImpl::TearDownView() {
if (window_tree_host_) {
aura::client::SetFocusClient(root_window(), nullptr);
wm::SetActivationClient(root_window(), nullptr);
root_window()->RemovePreTargetHandler(focus_controller_.get());
web_contents_->GetNativeView()->Hide();
window_tree_host_->Hide();
window_tree_host_->compositor()->SetVisible(false);
window_tree_host_ = nullptr;
// Allows posted focus events to process before the FocusController is torn
// down.
content::BrowserThread::DeleteSoon(content::BrowserThread::UI, FROM_HERE,
std::move(focus_controller_));
}
}
void FrameImpl::OnNavigationEntryChanged(content::NavigationEntry* entry) {
chromium::web::NavigationEntry entry_converted =
ConvertContentNavigationEntry(entry);
pending_navigation_event_is_dirty_ |= ComputeNavigationEvent(
cached_navigation_state_, entry_converted, &pending_navigation_event_);
cached_navigation_state_ = std::move(entry_converted);
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(&FrameImpl::MaybeSendNavigationEvent,
weak_factory_.GetWeakPtr()));
}
void FrameImpl::MaybeSendNavigationEvent() {
if (!navigation_observer_)
return;
if (!pending_navigation_event_is_dirty_ ||
waiting_for_navigation_event_ack_) {
return;
}
pending_navigation_event_is_dirty_ = false;
waiting_for_navigation_event_ack_ = true;
// Send the event to the observer and, upon acknowledgement, revisit this
// function to send another update.
navigation_observer_->OnNavigationStateChanged(
std::move(pending_navigation_event_), [this]() {
waiting_for_navigation_event_ack_ = false;
MaybeSendNavigationEvent();
});
pending_navigation_event_ = {};
}
void FrameImpl::LoadUrl(std::string url, chromium::web::LoadUrlParams params) {
GURL validated_url(url);
if (!validated_url.is_valid()) {
// TODO(crbug.com/934539): Add type epitaph.
DLOG(WARNING) << "Invalid URL: " << url;
return;
}
content::NavigationController::LoadURLParams params_converted(validated_url);
if (params.has_headers()) {
std::vector<base::StringPiece> extra_headers;
extra_headers.reserve(params.headers().size());
for (const auto& header : params.headers()) {
extra_headers.push_back(base::StringPiece(
reinterpret_cast<const char*>(header.data()), header.size()));
}
params_converted.extra_headers = base::JoinString(extra_headers, "\n");
}
if (validated_url.scheme() == url::kDataScheme)
params_converted.load_type = content::NavigationController::LOAD_TYPE_DATA;
params_converted.transition_type = ui::PageTransitionFromInt(
ui::PAGE_TRANSITION_TYPED | ui::PAGE_TRANSITION_FROM_ADDRESS_BAR);
if (params.has_was_user_activated() && params.was_user_activated()) {
params_converted.was_activated = content::WasActivatedOption::kYes;
} else {
params_converted.was_activated = content::WasActivatedOption::kNo;
}
web_contents_->GetController().LoadURLWithParams(params_converted);
}
void FrameImpl::GoBack() {
if (web_contents_->GetController().CanGoBack())
web_contents_->GetController().GoBack();
}
void FrameImpl::GoForward() {
if (web_contents_->GetController().CanGoForward())
web_contents_->GetController().GoForward();
}
void FrameImpl::Stop() {
web_contents_->Stop();
}
void FrameImpl::Reload(chromium::web::ReloadType type) {
content::ReloadType internal_reload_type;
switch (type) {
case chromium::web::ReloadType::PARTIAL_CACHE:
internal_reload_type = content::ReloadType::NORMAL;
break;
case chromium::web::ReloadType::NO_CACHE:
internal_reload_type = content::ReloadType::BYPASSING_CACHE;
break;
}
web_contents_->GetController().Reload(internal_reload_type, false);
}
void FrameImpl::GetVisibleEntry(GetVisibleEntryCallback callback) {
content::NavigationEntry* entry =
web_contents_->GetController().GetVisibleEntry();
if (!entry) {
callback(nullptr);
return;
}
chromium::web::NavigationEntry output = ConvertContentNavigationEntry(entry);
callback(std::make_unique<chromium::web::NavigationEntry>(std::move(output)));
}
void FrameImpl::DidFinishLoad(content::RenderFrameHost* render_frame_host,
const GURL& validated_url) {
if (web_contents_->GetMainFrame() != render_frame_host) {
return;
}
OnNavigationEntryChanged(web_contents_->GetController().GetVisibleEntry());
}
void FrameImpl::ReadyToCommitNavigation(
content::NavigationHandle* navigation_handle) {
if (before_load_scripts_.empty())
return;
if (!navigation_handle->IsInMainFrame() ||
navigation_handle->IsSameDocument() || navigation_handle->IsErrorPage())
return;
mojom::OnLoadScriptInjectorAssociatedPtr before_load_script_injector;
navigation_handle->GetRenderFrameHost()
->GetRemoteAssociatedInterfaces()
->GetInterface(&before_load_script_injector);
// Provision the renderer's ScriptInjector with the scripts scoped to this
// page's origin.
before_load_script_injector->ClearOnLoadScripts();
for (uint64_t script_id : before_load_scripts_order_) {
const OriginScopedScript& script = before_load_scripts_[script_id];
if (IsOriginWhitelisted(navigation_handle->GetURL(), script.origins())) {
before_load_script_injector->AddOnLoadScript(
mojo::WrapReadOnlySharedMemoryRegion(script.script().Duplicate()));
}
}
}
void FrameImpl::TitleWasSet(content::NavigationEntry* entry) {
OnNavigationEntryChanged(entry);
}
bool FrameImpl::DidAddMessageToConsole(content::WebContents* source,
int32_t level,
const base::string16& message,
int32_t line_no,
const base::string16& source_id) {
if (static_cast<std::underlying_type<chromium::web::LogLevel>::type>(
log_level_) > level) {
return false;
}
std::string formatted_message =
base::StringPrintf("%s:%d : %s", base::UTF16ToUTF8(source_id).data(),
line_no, base::UTF16ToUTF8(message).data());
switch (level) {
case static_cast<std::underlying_type<chromium::web::LogLevel>::type>(
chromium::web::LogLevel::DEBUG):
LOG(INFO) << "debug:" << formatted_message;
break;
case static_cast<std::underlying_type<chromium::web::LogLevel>::type>(
chromium::web::LogLevel::INFO):
LOG(INFO) << "info:" << formatted_message;
break;
case static_cast<std::underlying_type<chromium::web::LogLevel>::type>(
chromium::web::LogLevel::WARN):
LOG(WARNING) << "warn:" << formatted_message;
break;
case static_cast<std::underlying_type<chromium::web::LogLevel>::type>(
chromium::web::LogLevel::ERROR):
LOG(ERROR) << "error:" << formatted_message;
break;
default:
DLOG(WARNING) << "Unknown log level: " << level;
return false;
}
if (console_log_message_hook_)
console_log_message_hook_.Run(formatted_message);
return true;
}
void FrameImpl::SetEnableInput(bool enable_input) {
discarding_event_filter_.set_discard_events(!enable_input);
}