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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
ash / webui / camera_app_ui / camera_app_ui.cc [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "ash/webui/camera_app_ui/camera_app_ui.h"
#include "ash/components/arc/intent_helper/arc_intent_helper_bridge.h"
#include "ash/public/cpp/window_properties.h"
#include "ash/system/camera/camera_app_prefs.h"
#include "ash/webui/camera_app_ui/camera_app_helper_impl.h"
#include "ash/webui/camera_app_ui/resources.h"
#include "ash/webui/camera_app_ui/url_constants.h"
#include "ash/webui/common/trusted_types_util.h"
#include "ash/webui/grit/ash_camera_app_resources_map.h"
#include "base/feature_list.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/memory/ref_counted_memory.h"
#include "base/strings/string_util.h"
#include "base/task/thread_pool.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/media_device_salt/media_device_salt_service.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/devtools_agent_host.h"
#include "content/public/browser/media_device_id.h"
#include "content/public/browser/video_capture_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/common/url_constants.h"
#include "media/capture/video/chromeos/camera_app_device_provider_impl.h"
#include "media/capture/video/chromeos/mojom/camera_app.mojom.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "services/network/public/mojom/content_security_policy.mojom.h"
#include "services/video_capture/public/mojom/video_capture_service.mojom.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "ui/aura/window.h"
#include "ui/webui/color_change_listener/color_change_handler.h"
#include "ui/webui/webui_allowlist.h"
namespace ash {
namespace {
BASE_FEATURE(kCCALocalOverride,
"CCALocalOverride",
base::FEATURE_DISABLED_BY_DEFAULT);
const base::FilePath::CharType kCCALocalOverrideDirectoryPath[] =
FILE_PATH_LITERAL("/etc/camera/cca");
void HandleLocalOverrideRequest(
const std::string& url,
content::WebUIDataSource::GotDataCallback callback) {
base::ThreadPool::CreateSequencedTaskRunner(
{base::TaskPriority::USER_BLOCKING,
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN, base::MayBlock()})
->PostTask(FROM_HERE,
base::BindOnce(
[](const std::string& url,
content::WebUIDataSource::GotDataCallback callback) {
// The url passed in only contain path and query part.
auto parsed_url = GURL(kChromeUICameraAppURL + url);
// parsed_url.path() includes the leading "/" but
// FilePath::Append only allows relative path.
base::FilePath file_path =
base::FilePath(kCCALocalOverrideDirectoryPath)
.Append(base::TrimString(
parsed_url.path_piece(), "/",
base::TrimPositions::TRIM_LEADING));
std::string result;
if (base::ReadFileToString(file_path, &result)) {
std::move(callback).Run(
base::MakeRefCounted<base::RefCountedString>(
std::move(result)));
} else {
std::move(callback).Run(nullptr);
}
},
url, std::move(callback)));
}
void CreateAndAddCameraAppUIHTMLSource(content::BrowserContext* browser_context,
CameraAppUIDelegate* delegate) {
content::WebUIDataSource* source = content::WebUIDataSource::CreateAndAdd(
browser_context, kChromeUICameraAppHost);
ash::EnableTrustedTypesCSP(source);
// Add all settings resources.
source->AddResourcePaths(kAshCameraAppResources);
delegate->PopulateLoadTimeData(source);
for (const auto& str : kStringResourceMap) {
source->AddLocalizedString(str.name, str.id);
}
source->UseStringsJs();
if (base::FeatureList::IsEnabled(kCCALocalOverride)) {
source->SetRequestFilter(
base::BindRepeating(CameraAppUIShouldEnableLocalOverride),
base::BindRepeating(HandleLocalOverrideRequest));
}
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::WorkerSrc,
std::string("worker-src 'self';"));
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::FrameAncestors,
std::string("frame-ancestors 'self';"));
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::ChildSrc,
std::string("frame-src 'self' ") + kChromeUIUntrustedCameraAppURL + ";");
source->OverrideContentSecurityPolicy(
network::mojom::CSPDirectiveName::ObjectSrc,
std::string("object-src 'self';"));
// Makes camera app cross-origin-isolated to measure memory usage.
source->OverrideCrossOriginOpenerPolicy("same-origin");
source->OverrideCrossOriginEmbedderPolicy("require-corp");
}
void GotSalt(
const url::Origin& origin,
const std::string& source_id,
base::OnceCallback<void(const std::optional<std::string>&)> callback,
const std::string& salt) {
auto callback_on_io_thread = base::BindOnce(
[](const std::string& salt, const url::Origin& origin,
const std::string& source_id,
base::OnceCallback<void(const std::optional<std::string>&)> callback) {
content::GetMediaDeviceIDForHMAC(
blink::mojom::MediaStreamType::DEVICE_VIDEO_CAPTURE, salt,
std::move(origin), source_id, content::GetIOThreadTaskRunner({}),
std::move(callback));
},
salt, std::move(origin), source_id, std::move(callback));
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE, std::move(callback_on_io_thread));
}
// Translates the renderer-side source ID to video device id.
void TranslateVideoDeviceId(
content::BrowserContext* browser_context,
media_device_salt::MediaDeviceSaltService* salt_service,
const url::Origin& origin,
const std::string& source_id,
base::OnceCallback<void(const std::optional<std::string>&)> callback) {
if (salt_service) {
salt_service->GetSalt(
blink::StorageKey::CreateFirstParty(origin),
base::BindOnce(&GotSalt, origin, source_id, std::move(callback)));
} else {
// If the embedder does not provide a salt service, use the browser
// context's unique ID as salt.
GotSalt(origin, source_id, std::move(callback),
browser_context->UniqueId());
}
}
void HandleCameraResult(
content::BrowserContext* context,
uint32_t intent_id,
arc::mojom::CameraIntentAction action,
const std::vector<uint8_t>& data,
camera_app::mojom::CameraAppHelper::HandleCameraResultCallback callback) {
auto* intent_helper =
arc::ArcIntentHelperBridge::GetForBrowserContext(context);
intent_helper->HandleCameraResult(intent_id, action, data,
std::move(callback));
}
void SendNewCaptureBroadcast(content::BrowserContext* context,
bool is_video,
std::string file_path) {
auto* intent_helper =
arc::ArcIntentHelperBridge::GetForBrowserContext(context);
intent_helper->SendNewCaptureBroadcast(is_video, file_path);
}
std::unique_ptr<media::CameraAppDeviceProviderImpl>
CreateCameraAppDeviceProvider(
content::BrowserContext* browser_context,
media_device_salt::MediaDeviceSaltService* salt_service,
const url::Origin& security_origin) {
auto connect_to_bridge_callback = base::BindRepeating(
[](mojo::PendingReceiver<cros::mojom::CameraAppDeviceBridge>
device_bridge_receiver) {
// Connects to CameraAppDeviceBridge from video_capture service.
content::GetVideoCaptureService().ConnectToCameraAppDeviceBridge(
std::move(device_bridge_receiver));
});
auto mapping_callback =
base::BindRepeating(&TranslateVideoDeviceId, browser_context,
salt_service, std::move(security_origin));
return std::make_unique<media::CameraAppDeviceProviderImpl>(
std::move(connect_to_bridge_callback), std::move(mapping_callback));
}
std::unique_ptr<CameraAppHelperImpl> CreateCameraAppHelper(
CameraAppUI* camera_app_ui,
content::BrowserContext* browser_context,
aura::Window* window) {
DCHECK_NE(window, nullptr);
auto handle_result_callback =
base::BindRepeating(&HandleCameraResult, browser_context);
auto send_broadcast_callback =
base::BindRepeating(&SendNewCaptureBroadcast, browser_context);
return std::make_unique<CameraAppHelperImpl>(
camera_app_ui, std::move(handle_result_callback),
std::move(send_broadcast_callback), window);
}
} // namespace
bool CameraAppUIShouldEnableLocalOverride(const std::string& url) {
// Only override files that are copied locally with cca.py deploy.
if (!(base::StartsWith(url, "js/") || base::StartsWith(url, "css/") ||
base::StartsWith(url, "images/") || base::StartsWith(url, "views/") ||
base::StartsWith(url, "sounds/"))) {
return false;
}
// This file is written by `cca.py deploy` and contains version
// information of deployed file.
base::FilePath version_path = base::FilePath(kCCALocalOverrideDirectoryPath)
.Append("js/deployed_version.js");
base::ScopedAllowBlocking allow_blocking;
if (!base::PathExists(version_path)) {
return false;
}
return true;
}
///////////////////////////////////////////////////////////////////////////////
//
// CameraAppUI
//
///////////////////////////////////////////////////////////////////////////////
CameraAppUI::CameraAppUI(content::WebUI* web_ui,
std::unique_ptr<CameraAppUIDelegate> delegate)
: ui::MojoWebUIController(web_ui), delegate_(std::move(delegate)) {
content::BrowserContext* browser_context =
web_ui->GetWebContents()->GetBrowserContext();
// Register auto-granted permissions.
auto* allowlist = WebUIAllowlist::GetOrCreate(browser_context);
const url::Origin host_origin =
url::Origin::Create(GURL(kChromeUICameraAppURL));
allowlist->RegisterAutoGrantedPermission(
host_origin, ContentSettingsType::MEDIASTREAM_MIC);
allowlist->RegisterAutoGrantedPermission(
host_origin, ContentSettingsType::MEDIASTREAM_CAMERA);
allowlist->RegisterAutoGrantedPermission(
host_origin, ContentSettingsType::CAMERA_PAN_TILT_ZOOM);
allowlist->RegisterAutoGrantedPermission(
host_origin, ContentSettingsType::FILE_SYSTEM_READ_GUARD);
allowlist->RegisterAutoGrantedPermission(
host_origin, ContentSettingsType::FILE_SYSTEM_WRITE_GUARD);
allowlist->RegisterAutoGrantedPermission(host_origin,
ContentSettingsType::COOKIES);
allowlist->RegisterAutoGrantedPermission(host_origin,
ContentSettingsType::IDLE_DETECTION);
window()->SetProperty(kMinimizeOnBackKey, false);
// Set up the data source.
CreateAndAddCameraAppUIHTMLSource(browser_context, delegate_.get());
// Add ability to request chrome-untrusted: URLs
web_ui->AddRequestableScheme(content::kChromeUIUntrustedScheme);
if (camera_app_prefs::ShouldDevToolsOpen()) {
delegate_->OpenDevToolsWindow(web_ui->GetWebContents());
}
content::DevToolsAgentHost::AddObserver(this);
}
CameraAppUI::~CameraAppUI() {
content::DevToolsAgentHost::RemoveObserver(this);
}
void CameraAppUI::BindInterface(
mojo::PendingReceiver<cros::mojom::CameraAppDeviceProvider> receiver) {
content::BrowserContext* browser_context =
web_ui()->GetWebContents()->GetBrowserContext();
provider_ = CreateCameraAppDeviceProvider(
browser_context, delegate_->GetMediaDeviceSaltService(browser_context),
url::Origin::Create(GURL(kChromeUICameraAppURL)));
provider_->Bind(std::move(receiver));
}
void CameraAppUI::BindInterface(
mojo::PendingReceiver<camera_app::mojom::CameraAppHelper> receiver) {
helper_ = CreateCameraAppHelper(
this, web_ui()->GetWebContents()->GetBrowserContext(), window());
helper_->Bind(std::move(receiver));
}
void CameraAppUI::BindInterface(
mojo::PendingReceiver<color_change_listener::mojom::PageHandler> receiver) {
views::Widget* widget = views::Widget::GetWidgetForNativeWindow(window());
if (widget) {
// Camera app is always dark.
widget->SetColorModeOverride(ui::ColorProviderKey::ColorMode::kDark);
} else {
LOG(ERROR) << "Can't find widget for CCA window.";
}
color_provider_handler_ = std::make_unique<ui::ColorChangeHandler>(
web_ui()->GetWebContents(), std::move(receiver));
}
aura::Window* CameraAppUI::window() {
return web_ui()->GetWebContents()->GetTopLevelNativeWindow();
}
const GURL& CameraAppUI::url() {
return web_ui()->GetWebContents()->GetLastCommittedURL();
}
void CameraAppUI::DevToolsAgentHostAttached(
content::DevToolsAgentHost* agent_host) {
if (agent_host->GetWebContents() == nullptr ||
!base::StartsWith(
agent_host->GetWebContents()->GetLastCommittedURL().spec(),
kChromeUICameraAppMainURL)) {
return;
}
camera_app_prefs::SetDevToolsOpenState(true);
}
void CameraAppUI::DevToolsAgentHostDetached(
content::DevToolsAgentHost* agent_host) {
if (agent_host->GetWebContents() == nullptr ||
!base::StartsWith(
agent_host->GetWebContents()->GetLastCommittedURL().spec(),
kChromeUICameraAppMainURL)) {
return;
}
camera_app_prefs::SetDevToolsOpenState(false);
}
bool CameraAppUI::IsJavascriptErrorReportingEnabled() {
// Since we proactively call CrashReportPrivate.reportError() in CCA now.
return false;
}
WEB_UI_CONTROLLER_TYPE_IMPL(CameraAppUI)
} // namespace ash