1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/page_capture/page_capture_api.h"
#include <limits>
#include <utility>
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/numerics/safe_conversions.h"
#include "base/task/thread_pool.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/extensions/extension_tab_util.h"
#include "components/sessions/content/session_tab_helper.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/child_process_security_policy.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/mhtml_generation_params.h"
#include "extensions/browser/extension_api_frame_id_map.h"
#include "extensions/browser/extension_util.h"
#include "extensions/common/permissions/permissions_data.h"
#include "url/origin.h"
using content::BrowserThread;
using content::ChildProcessSecurityPolicy;
using content::WebContents;
using extensions::PageCaptureSaveAsMHTMLFunction;
using storage::ShareableFileReference;
namespace SaveAsMHTML = extensions::api::page_capture::SaveAsMHTML;
namespace {
const char kFileTooBigError[] = "The MHTML file generated is too big.";
const char kMHTMLGenerationFailedError[] = "Failed to generate MHTML.";
const char kTemporaryFileError[] = "Failed to create a temporary file.";
const char kTabClosedError[] = "Cannot find the tab for this request.";
const char kTabNavigatedError[] =
"Tab navigated before capture could complete.";
const char kPageCaptureNotAllowed[] =
"Don't have permissions required to capture this page.";
constexpr base::TaskTraits kCreateTemporaryFileTaskTraits = {
// Requires IO.
base::MayBlock(),
// TaskPriority: Inherit.
// TaskShutdownBehavior: TemporaryFileCreated*() called from
// CreateTemporaryFile() might access global variable, so use
// SKIP_ON_SHUTDOWN. See ShareableFileReference::GetOrCreate().
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN};
void ClearFileReferenceOnIOThread(
scoped_refptr<storage::ShareableFileReference>) {}
} // namespace
static PageCaptureSaveAsMHTMLFunction::TestDelegate* test_delegate_ = nullptr;
PageCaptureSaveAsMHTMLFunction::PageCaptureSaveAsMHTMLFunction() = default;
PageCaptureSaveAsMHTMLFunction::~PageCaptureSaveAsMHTMLFunction() {
if (mhtml_file_.get()) {
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&ClearFileReferenceOnIOThread, std::move(mhtml_file_)));
}
}
void PageCaptureSaveAsMHTMLFunction::SetTestDelegate(TestDelegate* delegate) {
test_delegate_ = delegate;
}
ExtensionFunction::ResponseAction PageCaptureSaveAsMHTMLFunction::Run() {
params_ = SaveAsMHTML::Params::Create(args());
EXTENSION_FUNCTION_VALIDATE(params_);
WebContents* web_contents = GetWebContents();
if (!web_contents) {
return RespondNow(Error(kTabClosedError));
}
std::string error;
if (!CanCaptureCurrentPage(*web_contents, &error)) {
return RespondNow(Error(std::move(error)));
}
// Store the document ID for the WebContents to check it hasn't changed by the
// time we do the capture.
document_id_ = ExtensionApiFrameIdMap::GetDocumentId(
web_contents->GetPrimaryMainFrame());
base::ThreadPool::PostTask(
FROM_HERE, kCreateTemporaryFileTaskTraits,
base::BindOnce(&PageCaptureSaveAsMHTMLFunction::CreateTemporaryFile,
this)); // Callback increments refcount.
return RespondLater();
}
bool PageCaptureSaveAsMHTMLFunction::CanCaptureCurrentPage(
WebContents& web_contents,
std::string* error) {
const url::Origin& origin =
web_contents.GetPrimaryMainFrame()->GetLastCommittedOrigin();
bool can_capture_page = false;
if (origin.scheme() == url::kFileScheme) {
// We special case file schemes, since we don't check for URL permissions
// in CanCaptureVisiblePage() with the pageCapture API. This ensures
// file:// URLs are only capturable with the proper permission.
can_capture_page = extensions::util::AllowFileAccess(
extension()->id(), web_contents.GetBrowserContext());
} else {
std::string unused_error;
// TODO(tjudkins): We should change CanCaptureVisiblePage to take the
// url::Origin directly, as it converts the GURL to an origin itself anyway.
can_capture_page = extension()->permissions_data()->CanCaptureVisiblePage(
origin.GetURL(),
sessions::SessionTabHelper::IdForTab(&web_contents).id(), &unused_error,
extensions::CaptureRequirement::kPageCapture);
}
if (!can_capture_page) {
*error = kPageCaptureNotAllowed;
}
return can_capture_page;
}
void PageCaptureSaveAsMHTMLFunction::OnResponseAck() {
// The extension process has processed the response and has created a
// reference to the blob, it is safe for us to go away.
// This instance may be deleted after this call, so no code goes after
// this!!!
Release(); // Balanced in Run()
}
void PageCaptureSaveAsMHTMLFunction::CreateTemporaryFile() {
bool success = base::CreateTemporaryFile(&mhtml_path_);
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&PageCaptureSaveAsMHTMLFunction::TemporaryFileCreatedOnIO,
this, success));
}
void PageCaptureSaveAsMHTMLFunction::TemporaryFileCreatedOnIO(bool success) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
if (success) {
// Setup a ShareableFileReference so the temporary file gets deleted
// once it is no longer used.
mhtml_file_ = ShareableFileReference::GetOrCreate(
mhtml_path_, ShareableFileReference::DELETE_ON_FINAL_RELEASE,
base::ThreadPool::CreateSequencedTaskRunner(
{// Requires IO.
base::MayBlock(),
// TaskPriority: Inherit.
// Because we are using DELETE_ON_FINAL_RELEASE here, the
// storage::ScopedFile inside ShareableFileReference requires
// a shutdown blocking task runner to ensure that its deletion
// task runs.
base::TaskShutdownBehavior::BLOCK_SHUTDOWN})
.get());
}
// Let the delegate know the reference has been created.
if (test_delegate_)
test_delegate_->OnTemporaryFileCreated(mhtml_file_);
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(&PageCaptureSaveAsMHTMLFunction::TemporaryFileCreatedOnUI,
this, success));
}
void PageCaptureSaveAsMHTMLFunction::TemporaryFileCreatedOnUI(bool success) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!success) {
ReturnFailure(kTemporaryFileError);
return;
}
WebContents* web_contents = GetWebContents();
if (!web_contents) {
ReturnFailure(kTabClosedError);
return;
}
if (document_id_ != ExtensionApiFrameIdMap::GetDocumentId(
web_contents->GetPrimaryMainFrame())) {
ReturnFailure(kTabNavigatedError);
return;
}
web_contents->GenerateMHTML(
content::MHTMLGenerationParams(mhtml_path_),
base::BindOnce(&PageCaptureSaveAsMHTMLFunction::MHTMLGenerated, this));
}
void PageCaptureSaveAsMHTMLFunction::MHTMLGenerated(int64_t mhtml_file_size) {
if (mhtml_file_size <= 0) {
ReturnFailure(kMHTMLGenerationFailedError);
return;
}
if (mhtml_file_size > std::numeric_limits<int>::max()) {
ReturnFailure(kFileTooBigError);
return;
}
ReturnSuccess(mhtml_file_size);
}
void PageCaptureSaveAsMHTMLFunction::ReturnFailure(const std::string& error) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
Respond(Error(error));
}
void PageCaptureSaveAsMHTMLFunction::ReturnSuccess(int file_size) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
WebContents* web_contents = GetWebContents();
if (!web_contents) {
ReturnFailure(kTabClosedError);
return;
}
ChildProcessSecurityPolicy::GetInstance()->GrantReadFile(source_process_id(),
mhtml_path_);
base::Value::Dict response;
response.Set("mhtmlFilePath", mhtml_path_.AsUTF8Unsafe());
response.Set("mhtmlFileLength", file_size);
response.Set("requestId", request_uuid().AsLowercaseString());
// Add a reference, extending the lifespan of this extension function until
// the response has been received by the renderer. This function generates a
// blob which contains a reference scoped to this object. In order for the
// blob to remain alive, we have to stick around until a reference has
// been obtained by the renderer. The response ack is the signal that the
// renderer has it's reference, so we can release ours.
// TODO(crbug.com/40673405): Potential memory leak here.
AddRef(); // Balanced in either OnMessageReceived()
AddResponseTarget();
Respond(WithArguments(std::move(response)));
}
WebContents* PageCaptureSaveAsMHTMLFunction::GetWebContents() {
content::WebContents* web_contents = nullptr;
if (!ExtensionTabUtil::GetTabById(params_->details.tab_id, browser_context(),
include_incognito_information(),
&web_contents)) {
return nullptr;
}
return web_contents;
}
|