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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
|
// Copyright (c) 2012 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 "content/browser/gpu/gpu_data_manager_impl.h"
#if defined(OS_MACOSX)
#include <ApplicationServices/ApplicationServices.h>
#endif // OS_MACOSX
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/file_util.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram.h"
#include "base/string_piece.h"
#include "base/stringprintf.h"
#include "base/sys_info.h"
#include "base/values.h"
#include "base/version.h"
#include "content/browser/gpu/gpu_process_host.h"
#include "content/browser/gpu/gpu_util.h"
#include "content/common/gpu/gpu_messages.h"
#include "content/gpu/gpu_info_collector.h"
#include "content/public/browser/gpu_data_manager_observer.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_constants.h"
#include "content/public/common/content_switches.h"
#include "grit/content_resources.h"
#include "ui/base/ui_base_switches.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_switches.h"
#include "ui/gl/gpu_switching_manager.h"
#include "webkit/plugins/plugin_switches.h"
#if defined(OS_WIN)
#include "base/win/windows_version.h"
#endif
namespace content {
namespace {
// Strip out the non-digital info; if after that, we get an empty string,
// return "0".
std::string ProcessVersionString(const std::string& raw_string) {
const std::string valid_set = "0123456789.";
size_t start_pos = raw_string.find_first_of(valid_set);
if (start_pos == std::string::npos)
return "0";
size_t end_pos = raw_string.find_first_not_of(raw_string, start_pos);
std::string version_string = raw_string.substr(
start_pos, end_pos - start_pos);
if (version_string.empty())
return "0";
return version_string;
}
#if defined(OS_MACOSX)
void DisplayReconfigCallback(CGDirectDisplayID display,
CGDisplayChangeSummaryFlags flags,
void* gpu_data_manager) {
if (flags & kCGDisplayAddFlag) {
GpuDataManagerImpl* manager =
reinterpret_cast<GpuDataManagerImpl*>(gpu_data_manager);
DCHECK(manager);
manager->HandleGpuSwitch();
}
}
#endif // OS_MACOSX
// Block all domains' use of 3D APIs for this many milliseconds if
// approaching a threshold where system stability might be compromised.
const int64 kBlockAllDomainsMs = 10000;
const int kNumResetsWithinDuration = 1;
// Enums for UMA histograms.
enum BlockStatusHistogram {
BLOCK_STATUS_NOT_BLOCKED,
BLOCK_STATUS_SPECIFIC_DOMAIN_BLOCKED,
BLOCK_STATUS_ALL_DOMAINS_BLOCKED,
BLOCK_STATUS_MAX
};
} // namespace anonymous
// static
GpuDataManager* GpuDataManager::GetInstance() {
return GpuDataManagerImpl::GetInstance();
}
// static
GpuDataManagerImpl* GpuDataManagerImpl::GetInstance() {
return Singleton<GpuDataManagerImpl>::get();
}
GpuDataManagerImpl::GpuDataManagerImpl()
: complete_gpu_info_already_requested_(false),
blacklisted_features_(GPU_FEATURE_TYPE_UNKNOWN),
preliminary_blacklisted_features_(GPU_FEATURE_TYPE_UNKNOWN),
gpu_switching_(GPU_SWITCHING_OPTION_AUTOMATIC),
observer_list_(new GpuDataManagerObserverList),
software_rendering_(false),
card_blacklisted_(false),
update_histograms_(true),
window_count_(0),
domain_blocking_enabled_(true) {
CommandLine* command_line = CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kDisableAcceleratedCompositing)) {
command_line->AppendSwitch(switches::kDisableAccelerated2dCanvas);
command_line->AppendSwitch(switches::kDisableAcceleratedLayers);
}
if (command_line->HasSwitch(switches::kDisableGpu))
BlacklistCard();
if (command_line->HasSwitch(switches::kGpuSwitching)) {
std::string option_string = command_line->GetSwitchValueASCII(
switches::kGpuSwitching);
GpuSwitchingOption option = StringToGpuSwitchingOption(option_string);
if (option != GPU_SWITCHING_OPTION_UNKNOWN)
gpu_switching_ = option;
}
#if defined(OS_MACOSX)
CGDisplayRegisterReconfigurationCallback(DisplayReconfigCallback, this);
#endif // OS_MACOSX
}
void GpuDataManagerImpl::Initialize() {
CommandLine* command_line = CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kSkipGpuDataLoading))
return;
GPUInfo gpu_info;
gpu_info_collector::CollectBasicGraphicsInfo(&gpu_info);
#if defined(ARCH_CPU_X86_FAMILY)
if (!gpu_info.gpu.vendor_id || !gpu_info.gpu.device_id)
gpu_info.finalized = true;
#endif
std::string gpu_blacklist_string;
if (!command_line->HasSwitch(switches::kIgnoreGpuBlacklist)) {
const base::StringPiece gpu_blacklist_json =
GetContentClient()->GetDataResource(
IDR_GPU_BLACKLIST, ui::SCALE_FACTOR_NONE);
gpu_blacklist_string = gpu_blacklist_json.as_string();
}
InitializeImpl(gpu_blacklist_string, gpu_info);
}
void GpuDataManagerImpl::InitializeForTesting(
const std::string& gpu_blacklist_json,
const GPUInfo& gpu_info) {
// This function is for testing only, so disable histograms.
update_histograms_ = false;
InitializeImpl(gpu_blacklist_json, gpu_info);
}
void GpuDataManagerImpl::InitializeImpl(
const std::string& gpu_blacklist_json,
const GPUInfo& gpu_info) {
if (!gpu_blacklist_json.empty()) {
std::string browser_version_string = ProcessVersionString(
GetContentClient()->GetProduct());
CHECK(!browser_version_string.empty());
gpu_blacklist_.reset(new GpuBlacklist());
bool succeed = gpu_blacklist_->LoadGpuBlacklist(
browser_version_string,
gpu_blacklist_json,
GpuBlacklist::kCurrentOsOnly);
CHECK(succeed);
}
{
base::AutoLock auto_lock(gpu_info_lock_);
gpu_info_ = gpu_info;
}
UpdateGpuInfo(gpu_info);
UpdateGpuSwitchingManager(gpu_info);
UpdatePreliminaryBlacklistedFeatures();
}
GpuDataManagerImpl::~GpuDataManagerImpl() {
#if defined(OS_MACOSX)
CGDisplayRemoveReconfigurationCallback(DisplayReconfigCallback, this);
#endif
}
void GpuDataManagerImpl::RequestCompleteGpuInfoIfNeeded() {
if (complete_gpu_info_already_requested_ || gpu_info_.finalized)
return;
complete_gpu_info_already_requested_ = true;
GpuProcessHost::SendOnIO(
#if defined(OS_WIN)
GpuProcessHost::GPU_PROCESS_KIND_UNSANDBOXED,
#else
GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
#endif
CAUSE_FOR_GPU_LAUNCH_GPUDATAMANAGER_REQUESTCOMPLETEGPUINFOIFNEEDED,
new GpuMsg_CollectGraphicsInfo());
}
bool GpuDataManagerImpl::IsCompleteGpuInfoAvailable() const {
return gpu_info_.finalized;
}
void GpuDataManagerImpl::UpdateGpuInfo(const GPUInfo& gpu_info) {
// No further update of gpu_info if falling back to software renderer.
if (software_rendering_)
return;
GPUInfo my_gpu_info;
{
base::AutoLock auto_lock(gpu_info_lock_);
gpu_info_collector::MergeGPUInfo(&gpu_info_, gpu_info);
complete_gpu_info_already_requested_ =
complete_gpu_info_already_requested_ || gpu_info_.finalized;
my_gpu_info = gpu_info_;
}
GetContentClient()->SetGpuInfo(my_gpu_info);
if (gpu_blacklist_.get()) {
GpuBlacklist::Decision decision =
gpu_blacklist_->MakeBlacklistDecision(
GpuBlacklist::kOsAny, "", my_gpu_info);
if (update_histograms_)
UpdateStats(gpu_blacklist_.get(), decision.blacklisted_features);
UpdateBlacklistedFeatures(decision.blacklisted_features);
if (decision.gpu_switching != GPU_SWITCHING_OPTION_UNKNOWN) {
// Blacklist decision should not overwrite commandline switch from users.
CommandLine* command_line = CommandLine::ForCurrentProcess();
if (!command_line->HasSwitch(switches::kGpuSwitching))
gpu_switching_ = decision.gpu_switching;
}
}
// We have to update GpuFeatureType before notify all the observers.
NotifyGpuInfoUpdate();
}
GPUInfo GpuDataManagerImpl::GetGPUInfo() const {
GPUInfo gpu_info;
{
base::AutoLock auto_lock(gpu_info_lock_);
gpu_info = gpu_info_;
}
return gpu_info;
}
void GpuDataManagerImpl::GetGpuProcessHandles(
const GetGpuProcessHandlesCallback& callback) const {
GpuProcessHost::GetProcessHandles(callback);
}
void GpuDataManagerImpl::RequestVideoMemoryUsageStatsUpdate() const {
GpuProcessHost::SendOnIO(
GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
new GpuMsg_GetVideoMemoryUsageStats());
}
void GpuDataManagerImpl::AddLogMessage(
int level, const std::string& header, const std::string& message) {
base::AutoLock auto_lock(log_messages_lock_);
DictionaryValue* dict = new DictionaryValue();
dict->SetInteger("level", level);
dict->SetString("header", header);
dict->SetString("message", message);
log_messages_.Append(dict);
}
base::ListValue* GpuDataManagerImpl::GetLogMessages() const {
base::ListValue* value;
{
base::AutoLock auto_lock(log_messages_lock_);
value = log_messages_.DeepCopy();
}
return value;
}
std::string GpuDataManagerImpl::GetBlacklistVersion() const {
if (gpu_blacklist_.get())
return gpu_blacklist_->GetVersion();
return "0";
}
GpuFeatureType GpuDataManagerImpl::GetBlacklistedFeatures() const {
if (software_rendering_) {
GpuFeatureType flags;
// Skia's software rendering is probably more efficient than going through
// software emulation of the GPU, so use that.
flags = GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS;
return flags;
}
return blacklisted_features_;
}
GpuSwitchingOption GpuDataManagerImpl::GetGpuSwitchingOption() const {
if (!ui::GpuSwitchingManager::GetInstance()->SupportsDualGpus())
return GPU_SWITCHING_OPTION_UNKNOWN;
return gpu_switching_;
}
base::ListValue* GpuDataManagerImpl::GetBlacklistReasons() const {
ListValue* reasons = new ListValue();
if (gpu_blacklist_.get())
gpu_blacklist_->GetBlacklistReasons(reasons);
return reasons;
}
bool GpuDataManagerImpl::GpuAccessAllowed() const {
if (software_rendering_)
return true;
if (!gpu_info_.gpu_accessible)
return false;
if (card_blacklisted_)
return false;
// We only need to block GPU process if more features are disallowed other
// than those in the preliminary gpu feature flags because the latter work
// through renderer commandline switches.
uint32 mask = ~(preliminary_blacklisted_features_);
if ((blacklisted_features_ & mask) != 0)
return false;
if (blacklisted_features_ == GPU_FEATURE_TYPE_ALL) {
// On Linux, we use cached GL strings to make blacklist decsions at browser
// startup time. We need to launch the GPU process to validate these
// strings even if all features are blacklisted. If all GPU features are
// disabled, the GPU process will only initialize GL bindings, create a GL
// context, and collect full GPU info.
#if !defined(OS_LINUX)
return false;
#endif
}
return true;
}
void GpuDataManagerImpl::HandleGpuSwitch() {
if (complete_gpu_info_already_requested_) {
complete_gpu_info_already_requested_ = false;
gpu_info_.finalized = false;
RequestCompleteGpuInfoIfNeeded();
}
}
void GpuDataManagerImpl::AddObserver(GpuDataManagerObserver* observer) {
observer_list_->AddObserver(observer);
}
void GpuDataManagerImpl::RemoveObserver(GpuDataManagerObserver* observer) {
observer_list_->RemoveObserver(observer);
}
void GpuDataManagerImpl::SetWindowCount(uint32 count) {
{
base::AutoLock auto_lock(gpu_info_lock_);
window_count_ = count;
}
GpuProcessHost::SendOnIO(
GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
new GpuMsg_SetVideoMemoryWindowCount(count));
}
uint32 GpuDataManagerImpl::GetWindowCount() const {
base::AutoLock auto_lock(gpu_info_lock_);
return window_count_;
}
void GpuDataManagerImpl::UnblockDomainFrom3DAPIs(const GURL& url) {
// This method must do two things:
//
// 1. If the specific domain is blocked, then unblock it.
//
// 2. Reset our notion of how many GPU resets have occurred recently.
// This is necessary even if the specific domain was blocked.
// Otherwise, if we call Are3DAPIsBlocked with the same domain right
// after unblocking it, it will probably still be blocked because of
// the recent GPU reset caused by that domain.
//
// These policies could be refined, but at a certain point the behavior
// will become difficult to explain.
std::string domain = GetDomainFromURL(url);
base::AutoLock auto_lock(gpu_info_lock_);
blocked_domains_.erase(domain);
timestamps_of_gpu_resets_.clear();
}
void GpuDataManagerImpl::DisableDomainBlockingFor3DAPIsForTesting() {
domain_blocking_enabled_ = false;
}
void GpuDataManagerImpl::DisableGpuWatchdog() {
GpuProcessHost::SendOnIO(
GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
new GpuMsg_DisableWatchdog);
}
void GpuDataManagerImpl::AppendRendererCommandLine(
CommandLine* command_line) const {
DCHECK(command_line);
uint32 flags = GetBlacklistedFeatures();
if ((flags & GPU_FEATURE_TYPE_WEBGL)) {
#if !defined(OS_ANDROID)
if (!command_line->HasSwitch(switches::kDisableExperimentalWebGL))
command_line->AppendSwitch(switches::kDisableExperimentalWebGL);
#endif
if (!command_line->HasSwitch(switches::kDisablePepper3d))
command_line->AppendSwitch(switches::kDisablePepper3d);
}
if ((flags & GPU_FEATURE_TYPE_MULTISAMPLING) &&
!command_line->HasSwitch(switches::kDisableGLMultisampling))
command_line->AppendSwitch(switches::kDisableGLMultisampling);
if ((flags & GPU_FEATURE_TYPE_ACCELERATED_COMPOSITING) &&
!command_line->HasSwitch(switches::kDisableAcceleratedCompositing))
command_line->AppendSwitch(switches::kDisableAcceleratedCompositing);
if ((flags & GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS) &&
!command_line->HasSwitch(switches::kDisableAccelerated2dCanvas))
command_line->AppendSwitch(switches::kDisableAccelerated2dCanvas);
if ((flags & GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE) &&
!command_line->HasSwitch(switches::kDisableAcceleratedVideoDecode))
command_line->AppendSwitch(switches::kDisableAcceleratedVideoDecode);
if (ShouldUseSoftwareRendering())
command_line->AppendSwitch(switches::kDisableFlashFullscreen3d);
}
void GpuDataManagerImpl::AppendGpuCommandLine(
CommandLine* command_line) const {
DCHECK(command_line);
std::string use_gl =
CommandLine::ForCurrentProcess()->GetSwitchValueASCII(switches::kUseGL);
FilePath swiftshader_path =
CommandLine::ForCurrentProcess()->GetSwitchValuePath(
switches::kSwiftShaderPath);
uint32 flags = GetBlacklistedFeatures();
if ((flags & GPU_FEATURE_TYPE_MULTISAMPLING) &&
!command_line->HasSwitch(switches::kDisableGLMultisampling))
command_line->AppendSwitch(switches::kDisableGLMultisampling);
if (flags & GPU_FEATURE_TYPE_TEXTURE_SHARING)
command_line->AppendSwitch(switches::kDisableImageTransportSurface);
if (software_rendering_) {
command_line->AppendSwitchASCII(switches::kUseGL, "swiftshader");
if (swiftshader_path.empty())
swiftshader_path = swiftshader_path_;
} else if ((flags & (GPU_FEATURE_TYPE_WEBGL |
GPU_FEATURE_TYPE_ACCELERATED_COMPOSITING |
GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS)) &&
(use_gl == "any")) {
command_line->AppendSwitchASCII(
switches::kUseGL, gfx::kGLImplementationOSMesaName);
} else if (!use_gl.empty()) {
command_line->AppendSwitchASCII(switches::kUseGL, use_gl);
}
if (ui::GpuSwitchingManager::GetInstance()->SupportsDualGpus()) {
command_line->AppendSwitchASCII(switches::kSupportsDualGpus, "true");
switch (gpu_switching_) {
case GPU_SWITCHING_OPTION_FORCE_DISCRETE:
command_line->AppendSwitchASCII(switches::kGpuSwitching,
switches::kGpuSwitchingOptionNameForceDiscrete);
break;
case GPU_SWITCHING_OPTION_FORCE_INTEGRATED:
command_line->AppendSwitchASCII(switches::kGpuSwitching,
switches::kGpuSwitchingOptionNameForceIntegrated);
break;
case GPU_SWITCHING_OPTION_AUTOMATIC:
case GPU_SWITCHING_OPTION_UNKNOWN:
break;
}
} else {
command_line->AppendSwitchASCII(switches::kSupportsDualGpus, "false");
}
if (!swiftshader_path.empty())
command_line->AppendSwitchPath(switches::kSwiftShaderPath,
swiftshader_path);
{
base::AutoLock auto_lock(gpu_info_lock_);
if (gpu_info_.optimus)
command_line->AppendSwitch(switches::kReduceGpuSandbox);
if (gpu_info_.amd_switchable) {
// The image transport surface currently doesn't work with AMD Dynamic
// Switchable graphics.
command_line->AppendSwitch(switches::kReduceGpuSandbox);
command_line->AppendSwitch(switches::kDisableImageTransportSurface);
}
// Pass GPU and driver information to GPU process. We try to avoid full GPU
// info collection at GPU process startup, but we need gpu vendor_id,
// device_id, driver_vendor, driver_version for deciding whether we need to
// collect full info (on Linux) and for crash reporting purpose.
command_line->AppendSwitchASCII(switches::kGpuVendorID,
base::StringPrintf("0x%04x", gpu_info_.gpu.vendor_id));
command_line->AppendSwitchASCII(switches::kGpuDeviceID,
base::StringPrintf("0x%04x", gpu_info_.gpu.device_id));
command_line->AppendSwitchASCII(switches::kGpuDriverVendor,
gpu_info_.driver_vendor);
command_line->AppendSwitchASCII(switches::kGpuDriverVersion,
gpu_info_.driver_version);
}
}
#if defined(OS_WIN)
bool GpuDataManagerImpl::IsUsingAcceleratedSurface() const {
if (base::win::GetVersion() < base::win::VERSION_VISTA)
return false;
if (gpu_info_.amd_switchable)
return false;
if (software_rendering_)
return false;
CommandLine* command_line = CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kDisableImageTransportSurface))
return false;
uint32 flags = GetBlacklistedFeatures();
if (flags & GPU_FEATURE_TYPE_TEXTURE_SHARING)
return false;
return true;
}
#endif
void GpuDataManagerImpl::BlockDomainFrom3DAPIs(
const GURL& url, DomainGuilt guilt) {
BlockDomainFrom3DAPIsAtTime(url, guilt, base::Time::Now());
}
GpuDataManagerImpl::DomainBlockStatus
GpuDataManagerImpl::Are3DAPIsBlocked(const GURL& url) const {
return Are3DAPIsBlockedAtTime(url, base::Time::Now());
}
void GpuDataManagerImpl::AppendPluginCommandLine(
CommandLine* command_line) const {
DCHECK(command_line);
#if defined(OS_MACOSX)
uint32 flags = GetBlacklistedFeatures();
// TODO(jbauman): Add proper blacklist support for core animation plugins so
// special-casing this video card won't be necessary. See
// http://crbug.com/134015
if ((flags & GPU_FEATURE_TYPE_ACCELERATED_COMPOSITING) ||
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableAcceleratedCompositing)) {
if (!command_line->HasSwitch(
switches::kDisableCoreAnimationPlugins))
command_line->AppendSwitch(
switches::kDisableCoreAnimationPlugins);
}
#endif
}
void GpuDataManagerImpl::UpdatePreliminaryBlacklistedFeatures() {
preliminary_blacklisted_features_ = blacklisted_features_;
}
void GpuDataManagerImpl::NotifyGpuInfoUpdate() {
observer_list_->Notify(&GpuDataManagerObserver::OnGpuInfoUpdate);
}
void GpuDataManagerImpl::UpdateVideoMemoryUsageStats(
const GPUVideoMemoryUsageStats& video_memory_usage_stats) {
observer_list_->Notify(&GpuDataManagerObserver::OnVideoMemoryUsageStatsUpdate,
video_memory_usage_stats);
}
void GpuDataManagerImpl::UpdateBlacklistedFeatures(
GpuFeatureType features) {
CommandLine* command_line = CommandLine::ForCurrentProcess();
int flags = features;
// Force disable using the GPU for these features, even if they would
// otherwise be allowed.
if (card_blacklisted_ ||
command_line->HasSwitch(switches::kBlacklistAcceleratedCompositing)) {
flags |= GPU_FEATURE_TYPE_ACCELERATED_COMPOSITING;
}
if (card_blacklisted_ ||
command_line->HasSwitch(switches::kBlacklistWebGL)) {
flags |= GPU_FEATURE_TYPE_WEBGL;
}
blacklisted_features_ = static_cast<GpuFeatureType>(flags);
EnableSoftwareRenderingIfNecessary();
}
void GpuDataManagerImpl::UpdateGpuSwitchingManager(const GPUInfo& gpu_info) {
ui::GpuSwitchingManager::GetInstance()->SetGpuCount(
gpu_info.secondary_gpus.size() + 1);
if (ui::GpuSwitchingManager::GetInstance()->SupportsDualGpus()) {
switch (gpu_switching_) {
case GPU_SWITCHING_OPTION_FORCE_DISCRETE:
ui::GpuSwitchingManager::GetInstance()->ForceUseOfDiscreteGpu();
break;
case GPU_SWITCHING_OPTION_FORCE_INTEGRATED:
ui::GpuSwitchingManager::GetInstance()->ForceUseOfIntegratedGpu();
break;
case GPU_SWITCHING_OPTION_AUTOMATIC:
case GPU_SWITCHING_OPTION_UNKNOWN:
break;
}
}
}
void GpuDataManagerImpl::RegisterSwiftShaderPath(const FilePath& path) {
swiftshader_path_ = path;
EnableSoftwareRenderingIfNecessary();
}
void GpuDataManagerImpl::EnableSoftwareRenderingIfNecessary() {
if (!GpuAccessAllowed() ||
(blacklisted_features_ & GPU_FEATURE_TYPE_WEBGL)) {
if (!swiftshader_path_.empty() &&
!CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableSoftwareRasterizer))
software_rendering_ = true;
}
}
bool GpuDataManagerImpl::ShouldUseSoftwareRendering() const {
return software_rendering_;
}
void GpuDataManagerImpl::BlacklistCard() {
card_blacklisted_ = true;
blacklisted_features_ = GPU_FEATURE_TYPE_ALL;
EnableSoftwareRenderingIfNecessary();
NotifyGpuInfoUpdate();
}
std::string GpuDataManagerImpl::GetDomainFromURL(const GURL& url) const {
// For the moment, we just use the host, or its IP address, as the
// entry in the set, rather than trying to figure out the top-level
// domain. This does mean that a.foo.com and b.foo.com will be
// treated independently in the blocking of a given domain, but it
// would require a third-party library to reliably figure out the
// top-level domain from a URL.
if (!url.has_host()) {
return std::string();
}
return url.host();
}
void GpuDataManagerImpl::BlockDomainFrom3DAPIsAtTime(
const GURL& url, DomainGuilt guilt, base::Time at_time) {
if (!domain_blocking_enabled_)
return;
std::string domain = GetDomainFromURL(url);
base::AutoLock auto_lock(gpu_info_lock_);
DomainBlockEntry& entry = blocked_domains_[domain];
entry.last_guilt = guilt;
timestamps_of_gpu_resets_.push_back(at_time);
}
GpuDataManagerImpl::DomainBlockStatus
GpuDataManagerImpl::Are3DAPIsBlockedAtTime(
const GURL& url, base::Time at_time) const {
if (!domain_blocking_enabled_)
return DOMAIN_BLOCK_STATUS_NOT_BLOCKED;
// Note: adjusting the policies in this code will almost certainly
// require adjusting the associated unit tests.
std::string domain = GetDomainFromURL(url);
base::AutoLock auto_lock(gpu_info_lock_);
{
DomainBlockMap::const_iterator iter = blocked_domains_.find(domain);
if (iter != blocked_domains_.end()) {
// Err on the side of caution, and assume that if a particular
// domain shows up in the block map, it's there for a good
// reason and don't let its presence there automatically expire.
UMA_HISTOGRAM_ENUMERATION("GPU.BlockStatusForClient3DAPIs",
BLOCK_STATUS_SPECIFIC_DOMAIN_BLOCKED,
BLOCK_STATUS_MAX);
return DOMAIN_BLOCK_STATUS_BLOCKED;
}
}
// Look at the timestamps of the recent GPU resets to see if there are
// enough within the threshold which would cause us to blacklist all
// domains. This doesn't need to be overly precise -- if time goes
// backward due to a system clock adjustment, that's fine.
//
// TODO(kbr): make this pay attention to the TDR thresholds in the
// Windows registry, but make sure it continues to be testable.
std::list<base::Time>::iterator iter = timestamps_of_gpu_resets_.begin();
int num_resets_within_timeframe = 0;
while (iter != timestamps_of_gpu_resets_.end()) {
base::Time time = *iter;
base::TimeDelta delta_t = at_time - time;
// If this entry has "expired", just remove it.
if (delta_t.InMilliseconds() > kBlockAllDomainsMs) {
iter = timestamps_of_gpu_resets_.erase(iter);
continue;
}
++num_resets_within_timeframe;
++iter;
}
if (num_resets_within_timeframe >= kNumResetsWithinDuration) {
UMA_HISTOGRAM_ENUMERATION("GPU.BlockStatusForClient3DAPIs",
BLOCK_STATUS_ALL_DOMAINS_BLOCKED,
BLOCK_STATUS_MAX);
return DOMAIN_BLOCK_STATUS_ALL_DOMAINS_BLOCKED;
}
UMA_HISTOGRAM_ENUMERATION("GPU.BlockStatusForClient3DAPIs",
BLOCK_STATUS_NOT_BLOCKED,
BLOCK_STATUS_MAX);
return DOMAIN_BLOCK_STATUS_NOT_BLOCKED;
}
int64 GpuDataManagerImpl::GetBlockAllDomainsDurationInMs() const {
return kBlockAllDomainsMs;
}
void GpuDataManagerImpl::GetGLStrings(std::string* gl_vendor,
std::string* gl_renderer,
std::string* gl_version) {
DCHECK(gl_vendor && gl_renderer && gl_version);
base::AutoLock auto_lock(gpu_info_lock_);
*gl_vendor = gpu_info_.gl_vendor;
*gl_renderer = gpu_info_.gl_renderer;
*gl_version = gpu_info_.gl_version_string;
}
void GpuDataManagerImpl::SetGLStrings(const std::string& gl_vendor,
const std::string& gl_renderer,
const std::string& gl_version) {
if (gl_vendor.empty() && gl_renderer.empty() && gl_version.empty())
return;
GPUInfo gpu_info;
{
base::AutoLock auto_lock(gpu_info_lock_);
// If GPUInfo already got GL strings, do nothing. This is for the rare
// situation where GPU process collected GL strings before this call.
if (!gpu_info_.gl_vendor.empty() ||
!gpu_info_.gl_renderer.empty() ||
!gpu_info_.gl_version_string.empty())
return;
gpu_info = gpu_info_;
}
gpu_info.gl_vendor = gl_vendor;
gpu_info.gl_renderer = gl_renderer;
gpu_info.gl_version_string = gl_version;
gpu_info_collector::CollectDriverInfoGL(&gpu_info);
UpdateGpuInfo(gpu_info);
UpdateGpuSwitchingManager(gpu_info);
UpdatePreliminaryBlacklistedFeatures();
}
} // namespace content
|