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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
|
// Copyright 2015 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/media/webrtc/desktop_capture_access_handler.h"
#include <memory>
#include <string>
#include <vector>
#include "base/check.h"
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/types/expected.h"
#include "build/build_config.h"
#include "chrome/browser/media/webrtc/capture_policy_utils.h"
#include "chrome/browser/media/webrtc/desktop_capture_devices_util.h"
#include "chrome/browser/media/webrtc/desktop_media_picker_controller.h"
#include "chrome/browser/media/webrtc/desktop_media_picker_factory_impl.h"
#include "chrome/browser/media/webrtc/media_capture_devices_dispatcher.h"
#include "chrome/browser/media/webrtc/media_stream_capture_indicator.h"
#include "chrome/browser/media/webrtc/native_desktop_media_list.h"
#include "chrome/browser/media/webrtc/tab_desktop_media_list.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/screen_capture_notification_ui.h"
#include "chrome/browser/ui/simple_message_box.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "components/url_formatter/elide_url.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/desktop_capture.h"
#include "content/public/browser/desktop_streams_registry.h"
#include "content/public/browser/media_stream_request.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_switches.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/app_window/app_window_registry.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/switches.h"
#include "services/network/public/cpp/is_potentially_trustworthy.h"
#include "third_party/blink/public/common/mediastream/media_stream_request.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom-shared.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capture_types.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/native_widget_types.h"
#include "url/origin.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/shell.h"
#include "chrome/browser/chromeos/policy/dlp/dlp_content_manager.h"
#include "ui/base/ui_base_features.h"
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_MAC)
#include "chrome/browser/media/webrtc/system_media_capture_permissions_mac.h"
#endif // BUILDFLAG(IS_MAC)
using ::blink::mojom::MediaStreamRequestResult;
using ::content::BrowserThread;
using ::extensions::mojom::ManifestLocation;
namespace {
// Helper to get title of the calling application shown in the screen capture
// notification.
std::u16string GetApplicationTitle(content::WebContents* web_contents,
const extensions::Extension* extension) {
// Use extension name as title for extensions and host/origin for drive-by
// web.
if (extension)
return base::UTF8ToUTF16(extension->name());
return url_formatter::FormatOriginForSecurityDisplay(
web_contents->GetPrimaryMainFrame()->GetLastCommittedOrigin(),
url_formatter::SchemeDisplay::OMIT_CRYPTOGRAPHIC);
}
// Returns whether an on-screen notification should appear after desktop capture
// is approved for |extension|. Component extensions do not display a
// notification.
bool ShouldDisplayNotification(const extensions::Extension* extension) {
return !(extension &&
(extension->location() == ManifestLocation::kComponent ||
extension->location() == ManifestLocation::kExternalComponent));
}
// Returns true if an on-screen notification should not be displayed after
// desktop capture is taken for the |url|.
bool HasNotificationExemption(const GURL& url) {
return url.spec() == chrome::kChromeUIFeedbackURL;
}
#if !BUILDFLAG(IS_ANDROID)
// Find browser or app window from a given |web_contents|.
gfx::NativeWindow FindParentWindowForWebContents(
content::WebContents* web_contents) {
Browser* browser = chrome::FindBrowserWithTab(web_contents);
if (browser && browser->window())
return browser->window()->GetNativeWindow();
const extensions::AppWindowRegistry::AppWindowList& window_list =
extensions::AppWindowRegistry::Get(web_contents->GetBrowserContext())
->app_windows();
for (extensions::AppWindow* app_window : window_list) {
if (app_window->web_contents() == web_contents)
return app_window->GetNativeWindow();
}
return gfx::NativeWindow();
}
#endif
bool IsMediaTypeAllowed(AllowedScreenCaptureLevel allowed_capture_level,
content::DesktopMediaID::Type media_type) {
switch (media_type) {
case content::DesktopMediaID::TYPE_NONE:
NOTREACHED();
case content::DesktopMediaID::TYPE_SCREEN:
return allowed_capture_level >= AllowedScreenCaptureLevel::kDesktop;
case content::DesktopMediaID::TYPE_WINDOW:
return allowed_capture_level >= AllowedScreenCaptureLevel::kWindow;
case content::DesktopMediaID::TYPE_WEB_CONTENTS:
// SameOrigin is more restrictive than just tabs; so as long as at least
// SameOrigin is allowed, then TYPE_WEB_CONTENTS can be included, and the
// origins will be filtered for the SameOrigin requirement later.
return allowed_capture_level >= AllowedScreenCaptureLevel::kSameOrigin;
}
}
// Checks whether audio should be captured for the given |media_id| and
// |request|.
bool ShouldCaptureAudio(const content::DesktopMediaID& media_id,
const content::MediaStreamRequest& request) {
// This value is essentially from the checkbox on picker window, so it
// corresponds to user permission.
const bool audio_permitted = media_id.audio_share;
// This value is essentially from whether getUserMedia requests audio stream.
const bool audio_requested =
request.audio_type ==
blink::mojom::MediaStreamType::GUM_DESKTOP_AUDIO_CAPTURE;
// This value shows for a given capture type, whether the system or our code
// can support audio sharing. Currently audio is only supported for screen and
// tab/webcontents capture streams.
const bool audio_supported =
(media_id.type == content::DesktopMediaID::TYPE_SCREEN &&
DesktopMediaPickerController::IsSystemAudioCaptureSupported(
DesktopMediaPicker::Params::RequestSource::kExtension)) ||
media_id.type == content::DesktopMediaID::TYPE_WEB_CONTENTS;
return audio_permitted && audio_requested && audio_supported;
}
// Checks whether the request is approved.
// If it is approved, returns MediaStreamRequestResult::OK.
// If not approved, returns the relevant MediaStreamRequestResult error code.
MediaStreamRequestResult CheckIfRequestApproved(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
const extensions::Extension* extension,
bool is_allowlisted_extension) {
// Component extensions and some external extensions are approved by default.
if (extension &&
(extension->location() == ManifestLocation::kComponent ||
extension->location() == ManifestLocation::kExternalComponent ||
is_allowlisted_extension)) {
return MediaStreamRequestResult::OK;
}
// chrome://feedback/ is allowed by default.
// The user can still decide whether the screenshot taken is shared or not.
if (request.security_origin.spec() == chrome::kChromeUIFeedbackURL) {
return MediaStreamRequestResult::OK;
}
#if !BUILDFLAG(IS_ANDROID)
gfx::NativeWindow parent_window =
FindParentWindowForWebContents(web_contents);
#else
gfx::NativeWindow parent_window = gfx::NativeWindow();
#endif
const std::u16string application_name = base::UTF8ToUTF16(
extension ? extension->name() : request.security_origin.spec());
const std::u16string confirmation_text = l10n_util::GetStringFUTF16(
request.audio_type == blink::mojom::MediaStreamType::NO_SERVICE
? IDS_MEDIA_SCREEN_CAPTURE_CONFIRMATION_TEXT
: IDS_MEDIA_SCREEN_AND_AUDIO_CAPTURE_CONFIRMATION_TEXT,
application_name);
const chrome::MessageBoxResult mb_result = chrome::ShowQuestionMessageBoxSync(
parent_window,
l10n_util::GetStringFUTF16(IDS_MEDIA_SCREEN_CAPTURE_CONFIRMATION_TITLE,
application_name),
confirmation_text);
switch (mb_result) {
case chrome::MESSAGE_BOX_RESULT_NO:
return MediaStreamRequestResult::PERMISSION_DENIED_BY_USER;
case chrome::MESSAGE_BOX_RESULT_YES:
return MediaStreamRequestResult::OK;
case chrome::MESSAGE_BOX_RESULT_DEFERRED:
break;
}
NOTREACHED();
}
} // namespace
DesktopCaptureAccessHandler::DesktopCaptureAccessHandler()
: picker_factory_(new DesktopMediaPickerFactoryImpl()),
display_notification_(true),
web_contents_collection_(this) {}
DesktopCaptureAccessHandler::DesktopCaptureAccessHandler(
std::unique_ptr<DesktopMediaPickerFactory> picker_factory)
: picker_factory_(std::move(picker_factory)),
display_notification_(false),
web_contents_collection_(this) {}
DesktopCaptureAccessHandler::~DesktopCaptureAccessHandler() = default;
void DesktopCaptureAccessHandler::ProcessScreenCaptureAccessRequest(
content::WebContents* web_contents,
const extensions::Extension* extension,
std::unique_ptr<PendingAccessRequest> pending_request) {
DCHECK_EQ(pending_request->request.video_type,
blink::mojom::MediaStreamType::GUM_DESKTOP_VIDEO_CAPTURE);
UpdateExtensionTrusted(pending_request->request,
pending_request->is_allowlisted_extension);
const bool screen_capture_enabled =
base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableUserMediaScreenCapturing) ||
pending_request->is_allowlisted_extension ||
IsBuiltInFeedbackUI(pending_request->request.security_origin);
const bool origin_is_secure =
network::IsUrlPotentiallyTrustworthy(
pending_request->request.security_origin) ||
base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kAllowHttpScreenCapture);
if (!screen_capture_enabled || !origin_is_secure) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::INVALID_STATE,
/*ui=*/nullptr);
return;
}
const MediaStreamRequestResult request_result =
CheckIfRequestApproved(web_contents, pending_request->request, extension,
pending_request->is_allowlisted_extension);
if (request_result != MediaStreamRequestResult::OK) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(), request_result,
/*ui=*/nullptr);
return;
}
if (!content::WebContents::FromRenderFrameHost(
content::RenderFrameHost::FromID(
pending_request->request.render_process_id,
pending_request->request.render_frame_id))) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::INVALID_STATE,
/*ui=*/nullptr);
return;
}
const bool capture_audio =
pending_request->request.audio_type ==
blink::mojom::MediaStreamType::GUM_DESKTOP_AUDIO_CAPTURE &&
DesktopMediaPickerController::IsSystemAudioCaptureSupported(
DesktopMediaPicker::Params::RequestSource::kExtension);
#if BUILDFLAG(IS_CHROMEOS)
const content::DesktopMediaID screen_id =
content::DesktopMediaID::RegisterNativeWindow(
content::DesktopMediaID::TYPE_SCREEN,
primary_root_window_for_testing_
? primary_root_window_for_testing_.get()
: ash::Shell::Get()->GetPrimaryRootWindow());
// base::Unretained(this) is safe because DesktopCaptureAccessHandler is owned
// by MediaCaptureDevicesDispatcher, which is a lazy singleton which is
// destroyed when the browser process terminates.
policy::DlpContentManager::Get()->CheckScreenShareRestriction(
screen_id, GetApplicationTitle(web_contents, extension),
base::BindOnce(&DesktopCaptureAccessHandler::OnDlpRestrictionChecked,
base::Unretained(this), web_contents->GetWeakPtr(),
std::move(pending_request), screen_id, capture_audio));
return;
#else // BUILDFLAG(IS_CHROMEOS)
const content::DesktopMediaID screen_id = content::DesktopMediaID(
content::DesktopMediaID::TYPE_SCREEN, webrtc::kFullDesktopScreenId);
AcceptRequest(web_contents, std::move(pending_request), screen_id,
capture_audio);
#endif // !BUILDFLAG(IS_CHROMEOS)
}
bool DesktopCaptureAccessHandler::SupportsStreamType(
content::RenderFrameHost* render_frame_host,
const blink::mojom::MediaStreamType type,
const extensions::Extension* extension) {
return type == blink::mojom::MediaStreamType::GUM_DESKTOP_VIDEO_CAPTURE ||
type == blink::mojom::MediaStreamType::GUM_DESKTOP_AUDIO_CAPTURE;
}
bool DesktopCaptureAccessHandler::CheckMediaAccessPermission(
content::RenderFrameHost* render_frame_host,
const url::Origin& security_origin,
blink::mojom::MediaStreamType type,
const extensions::Extension* extension) {
return false;
}
void DesktopCaptureAccessHandler::HandleRequest(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
content::MediaResponseCallback callback,
const extensions::Extension* extension) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
const bool is_allowlisted_extension =
IsExtensionAllowedForScreenCapture(extension);
const bool should_display_notification =
display_notification_ && ShouldDisplayNotification(extension) &&
!HasNotificationExemption(request.security_origin);
std::unique_ptr<PendingAccessRequest> pending_request =
std::make_unique<PendingAccessRequest>(
/*picker=*/nullptr, request, std::move(callback),
GetApplicationTitle(web_contents, extension),
should_display_notification, is_allowlisted_extension);
if (request.video_type !=
blink::mojom::MediaStreamType::GUM_DESKTOP_VIDEO_CAPTURE) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::INVALID_STATE,
/*ui=*/nullptr);
return;
}
AllowedScreenCaptureLevel allowed_capture_level =
capture_policy::GetAllowedCaptureLevel(request.security_origin,
web_contents);
if (allowed_capture_level == AllowedScreenCaptureLevel::kDisallowed) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::PERMISSION_DENIED,
/*ui=*/nullptr);
return;
}
if (request.request_type == blink::MEDIA_DEVICE_UPDATE) {
ProcessChangeSourceRequest(web_contents, std::move(pending_request));
return;
}
// If the device id wasn't specified then this is a screen capture request
// (i.e. chooseDesktopMedia() API wasn't used to generate device id).
if (request.requested_video_device_ids.empty() ||
request.requested_video_device_ids.front().empty()) {
if (allowed_capture_level < AllowedScreenCaptureLevel::kDesktop) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::PERMISSION_DENIED,
/*ui=*/nullptr);
return;
}
#if BUILDFLAG(IS_MAC)
if (system_media_permissions::ScreenCaptureNeedsSystemLevelPermissions() &&
system_media_permissions::CheckSystemScreenCapturePermission() !=
system_permission_settings::SystemPermission::kAllowed) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::PERMISSION_DENIED_BY_SYSTEM,
/*ui=*/nullptr);
return;
}
#endif
ProcessScreenCaptureAccessRequest(web_contents, extension,
std::move(pending_request));
return;
}
// Resolve DesktopMediaID for the specified device id.
content::DesktopMediaID media_id;
// TODO(http://crbug.com/304341): Replace "main RenderFrame" IDs with the
// request's actual RenderFrame IDs once the desktop capture extension API
// implementation is fixed.
content::WebContents* const web_contents_for_stream =
content::WebContents::FromRenderFrameHost(
content::RenderFrameHost::FromID(request.render_process_id,
request.render_frame_id));
content::RenderFrameHost* const main_frame =
web_contents_for_stream ? web_contents_for_stream->GetPrimaryMainFrame()
: nullptr;
if (main_frame) {
// This function would have already returned if this vector was empty.
CHECK(!request.requested_video_device_ids.empty());
media_id =
content::DesktopStreamsRegistry::GetInstance()->RequestMediaForStreamId(
request.requested_video_device_ids.front(),
main_frame->GetProcess()->GetDeprecatedID(),
main_frame->GetRoutingID(),
url::Origin::Create(request.security_origin),
content::kRegistryStreamTypeDesktop);
}
// Received invalid device id.
if (media_id.type == content::DesktopMediaID::TYPE_NONE) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::INVALID_STATE,
/*ui=*/nullptr);
return;
}
if (!IsMediaTypeAllowed(allowed_capture_level, media_id.type)) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::PERMISSION_DENIED,
/*ui=*/nullptr);
return;
}
#if BUILDFLAG(IS_MAC)
if (media_id.type != content::DesktopMediaID::TYPE_WEB_CONTENTS &&
system_media_permissions::CheckSystemScreenCapturePermission() !=
system_permission_settings::SystemPermission::kAllowed) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::PERMISSION_DENIED_BY_SYSTEM,
/*ui=*/nullptr);
return;
}
#endif
if (media_id.type == content::DesktopMediaID::TYPE_WEB_CONTENTS &&
!content::WebContents::FromRenderFrameHost(
content::RenderFrameHost::FromID(
media_id.web_contents_id.render_process_id,
media_id.web_contents_id.main_render_frame_id))) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::TAB_CAPTURE_FAILURE,
/*ui=*/nullptr);
return;
}
#if BUILDFLAG(IS_CHROMEOS)
const std::u16string application_title = pending_request->application_title;
// base::Unretained(this) is safe because DesktopCaptureAccessHandler is owned
// by MediaCaptureDevicesDispatcher, which is a lazy singleton which is
// destroyed when the browser process terminates.
policy::DlpContentManager::Get()->CheckScreenShareRestriction(
media_id, application_title,
base::BindOnce(&DesktopCaptureAccessHandler::OnDlpRestrictionChecked,
base::Unretained(this), web_contents->GetWeakPtr(),
std::move(pending_request), media_id,
ShouldCaptureAudio(media_id, request)));
#else // BUILDFLAG(IS_CHROMEOS)
AcceptRequest(web_contents, std::move(pending_request), media_id,
ShouldCaptureAudio(media_id, request));
#endif // !BUILDFLAG(IS_CHROMEOS)
}
void DesktopCaptureAccessHandler::ProcessChangeSourceRequest(
content::WebContents* web_contents,
std::unique_ptr<PendingAccessRequest> pending_request) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK_EQ(pending_request->request.video_type,
blink::mojom::MediaStreamType::GUM_DESKTOP_VIDEO_CAPTURE);
if (pending_request->request.requested_video_device_ids.empty() ||
pending_request->request.requested_video_device_ids.front().empty()) {
// Passing nullptr selects the default picker (DesktopMediaPickerImpl).
pending_request->picker = picker_factory_->CreatePicker(nullptr);
if (!pending_request->picker) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::INVALID_STATE,
/*ui=*/nullptr);
return;
}
}
// Ensure we are observing the deletion of |web_contents|.
web_contents_collection_.StartObserving(web_contents);
RequestsQueue& queue = pending_requests_[web_contents];
queue.push_back(std::move(pending_request));
// If this is the only request then pop picker UI.
if (queue.size() == 1)
ProcessQueuedAccessRequest(queue, web_contents);
}
void DesktopCaptureAccessHandler::UpdateMediaRequestState(
int render_process_id,
int render_frame_id,
int page_request_id,
blink::mojom::MediaStreamType stream_type,
content::MediaRequestState state) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (state != content::MEDIA_REQUEST_STATE_DONE &&
state != content::MEDIA_REQUEST_STATE_CLOSING) {
return;
}
if (state == content::MEDIA_REQUEST_STATE_CLOSING) {
DeletePendingAccessRequest(render_process_id, render_frame_id,
page_request_id);
}
CaptureAccessHandlerBase::UpdateMediaRequestState(
render_process_id, render_frame_id, page_request_id, stream_type, state);
// This method only gets called with the above checked states when all
// requests are to be canceled. Therefore, we don't need to process the
// next queued request.
}
void DesktopCaptureAccessHandler::ProcessQueuedAccessRequest(
const RequestsQueue& queue,
content::WebContents* web_contents) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
const PendingAccessRequest& pending_request = *queue.front();
if (!pending_request.picker) {
DCHECK(!pending_request.request.requested_video_device_ids.empty());
content::WebContentsMediaCaptureId web_contents_id;
if (content::WebContentsMediaCaptureId::Parse(
pending_request.request.requested_video_device_ids.front(),
&web_contents_id)) {
content::DesktopMediaID media_id(
content::DesktopMediaID::TYPE_WEB_CONTENTS,
content::DesktopMediaID::kNullId, web_contents_id);
media_id.audio_share = pending_request.request.audio_type !=
blink::mojom::MediaStreamType::NO_SERVICE;
OnPickerDialogResults(web_contents->GetWeakPtr(),
pending_request.application_title, media_id);
return;
}
}
const GURL& request_origin = pending_request.request.security_origin;
AllowedScreenCaptureLevel capture_level =
capture_policy::GetAllowedCaptureLevel(request_origin, web_contents);
auto includable_web_contents_filter =
capture_policy::GetIncludableWebContentsFilter(request_origin,
capture_level);
auto source_lists = picker_factory_->CreateMediaList(
{DesktopMediaList::Type::kWebContents}, web_contents,
std::move(includable_web_contents_filter));
// base::Unretained(this) is safe because DesktopCaptureAccessHandler is owned
// by MediaCaptureDevicesDispatcher, which is a lazy singleton which is
// destroyed when the browser process terminates.
DesktopMediaPicker::DoneCallback done_callback =
base::BindOnce(&DesktopCaptureAccessHandler::OnPickerDialogResults,
base::Unretained(this), web_contents->GetWeakPtr(),
pending_request.application_title);
DesktopMediaPicker::Params picker_params(
DesktopMediaPicker::Params::RequestSource::kExtension);
picker_params.web_contents = web_contents;
gfx::NativeWindow parent_window = web_contents->GetTopLevelNativeWindow();
picker_params.context = parent_window;
picker_params.parent = parent_window;
picker_params.app_name = pending_request.application_title;
picker_params.target_name = picker_params.app_name;
picker_params.request_audio = pending_request.request.audio_type !=
blink::mojom::MediaStreamType::NO_SERVICE;
picker_params.exclude_system_audio =
pending_request.request.exclude_system_audio;
picker_params.restricted_by_policy =
(capture_level != AllowedScreenCaptureLevel::kUnrestricted);
pending_request.picker->Show(picker_params, std::move(source_lists),
std::move(done_callback));
// Focus on the tab with the picker for easy access.
if (auto* delegate = web_contents->GetDelegate())
delegate->ActivateContents(web_contents);
}
void DesktopCaptureAccessHandler::OnPickerDialogResults(
base::WeakPtr<content::WebContents> web_contents,
const std::u16string& application_title,
base::expected<content::DesktopMediaID,
blink::mojom::MediaStreamRequestResult> result) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!web_contents) {
// If `pending_requests_` contained the old value of `pending_requests_`
// before it got nulled out, then WebContentsDestroyed() will be
// called with the value and evict the request from `pending_requests_`.
return;
}
auto it = pending_requests_.find(web_contents.get());
if (it == pending_requests_.end())
return;
RequestsQueue& queue = it->second;
if (queue.empty()) {
// UpdateMediaRequestState() called with MEDIA_REQUEST_STATE_CLOSING. Don't
// need to do anything.
return;
}
std::unique_ptr<PendingAccessRequest> pending_request =
std::move(queue.front());
queue.pop_front();
if (!result.has_value()) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(), result.error(),
/*ui=*/nullptr);
} else {
const content::DesktopMediaID media_id = result.value();
CHECK(!media_id.is_null());
#if BUILDFLAG(IS_CHROMEOS)
// base::Unretained(this) is safe because DesktopCaptureAccessHandler is
// owned by MediaCaptureDevicesDispatcher, which is a lazy singleton which
// is destroyed when the browser process terminates.
policy::DlpContentManager::Get()->CheckScreenShareRestriction(
media_id, application_title,
base::BindOnce(&DesktopCaptureAccessHandler::OnDlpRestrictionChecked,
base::Unretained(this), web_contents,
std::move(pending_request), media_id,
media_id.audio_share));
#else // BUILDFLAG(IS_CHROMEOS)
AcceptRequest(web_contents.get(), std::move(pending_request), media_id,
media_id.audio_share);
#endif // !BUILDFLAG(IS_CHROMEOS)
}
if (!queue.empty()) {
ProcessQueuedAccessRequest(queue, web_contents.get());
}
}
void DesktopCaptureAccessHandler::WebContentsDestroyed(
content::WebContents* web_contents) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
pending_requests_.erase(web_contents);
}
void DesktopCaptureAccessHandler::DeletePendingAccessRequest(
int render_process_id,
int render_frame_id,
int page_request_id) {
for (auto& queue_it : pending_requests_) {
RequestsQueue& queue = queue_it.second;
for (auto it = queue.begin(); it != queue.end(); ++it) {
const PendingAccessRequest& pending_request = **it;
if (pending_request.request.render_process_id == render_process_id &&
pending_request.request.render_frame_id == render_frame_id &&
pending_request.request.page_request_id == page_request_id) {
queue.erase(it);
return;
}
}
}
}
void DesktopCaptureAccessHandler::AcceptRequest(
content::WebContents* web_contents,
std::unique_ptr<PendingAccessRequest> pending_request,
const content::DesktopMediaID& media_id,
bool capture_audio) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(web_contents);
// TODO(crbug.com/40216442): Generalize to multiple streams.
blink::mojom::StreamDevicesSet stream_devices_set;
stream_devices_set.stream_devices.emplace_back(
blink::mojom::StreamDevices::New());
blink::mojom::StreamDevices& stream_devices =
*stream_devices_set.stream_devices[0];
std::unique_ptr<content::MediaStreamUI> ui = GetDevicesForDesktopCapture(
pending_request->request, web_contents, media_id, capture_audio,
pending_request->request.disable_local_echo,
/*suppress_local_audio_playback=*/false, /*restrict_own_audio=*/false,
pending_request->should_display_notification,
pending_request->application_title,
pending_request->request.captured_surface_control_active, stream_devices);
DCHECK(stream_devices.audio_device.has_value() ||
stream_devices.video_device.has_value());
UpdateExtensionTrusted(pending_request->request,
pending_request->is_allowlisted_extension);
std::move(pending_request->callback)
.Run(stream_devices_set, MediaStreamRequestResult::OK, std::move(ui));
}
#if BUILDFLAG(IS_CHROMEOS)
void DesktopCaptureAccessHandler::OnDlpRestrictionChecked(
base::WeakPtr<content::WebContents> web_contents,
std::unique_ptr<PendingAccessRequest> pending_request,
const content::DesktopMediaID& media_id,
bool capture_audio,
bool is_dlp_allowed) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
if (!web_contents) {
// No need to do anything since WebContents is already destroyed by the time
// this is invoked.
return;
}
if (!is_dlp_allowed) {
std::move(pending_request->callback)
.Run(blink::mojom::StreamDevicesSet(),
MediaStreamRequestResult::PERMISSION_DENIED,
/*ui=*/nullptr);
return;
}
AcceptRequest(web_contents.get(), std::move(pending_request), media_id,
capture_audio);
}
#endif // BUILDFLAG(IS_CHROMEOS)
|