1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/renderer/renderer_main_platform_delegate.h"
7 #include "base/command_line.h"
8 #include "base/logging.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string16.h"
11 #include "base/win/scoped_comptr.h"
12 #include "base/win/win_util.h"
13 #include "base/win/windows_version.h"
14 #include "content/public/common/content_switches.h"
15 #include "content/public/common/injection_test_win.h"
16 #include "content/public/renderer/render_font_warmup_win.h"
17 #include "content/public/renderer/render_thread.h"
18 #include "content/renderer/render_thread_impl.h"
19 #include "sandbox/win/src/sandbox.h"
20 #include "skia/ext/fontmgr_default_win.h"
21 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
22 #include "third_party/WebKit/public/web/win/WebFontRendering.h"
23 #include "third_party/icu/source/i18n/unicode/timezone.h"
24 #include "third_party/skia/include/ports/SkFontMgr.h"
25 #include "third_party/skia/include/ports/SkTypeface_win.h"
26 #include "ui/gfx/hud_font.h"
27 #include "ui/gfx/win/direct_write.h"
28 #include "ui/gfx/win/dpi.h"
35 // Windows-only skia sandbox support
36 // These are used for GDI-path rendering.
37 void SkiaPreCacheFont(const LOGFONT
& logfont
) {
38 RenderThread
* render_thread
= RenderThread::Get();
40 render_thread
->PreCacheFont(logfont
);
44 void SkiaPreCacheFontCharacters(const LOGFONT
& logfont
,
46 unsigned int text_length
) {
47 RenderThreadImpl
* render_thread_impl
= RenderThreadImpl::current();
48 if (render_thread_impl
) {
49 render_thread_impl
->PreCacheFontCharacters(
51 base::string16(text
, text_length
));
55 void WarmupDirectWrite() {
56 // The objects used here are intentionally not freed as we want the Skia
57 // code to use these objects after warmup.
58 SetDefaultSkiaFactory(GetPreSandboxWarmupFontMgr());
60 // We need to warm up *some* font for DirectWrite. We also need to pass one
61 // down for the CC HUD code, so use the same one here. Note that we don't use
62 // a monospace as would be nice in an attempt to avoid a small startup time
63 // regression, see http://crbug.com/463613.
64 skia::RefPtr
<SkTypeface
> hud_typeface
= skia::AdoptRef(
65 GetPreSandboxWarmupFontMgr()->legacyCreateTypeface("Times New Roman", 0));
66 DoPreSandboxWarmupForTypeface(hud_typeface
.get());
67 gfx::SetHudTypeface(hud_typeface
);
72 RendererMainPlatformDelegate::RendererMainPlatformDelegate(
73 const MainFunctionParams
& parameters
)
74 : parameters_(parameters
),
75 sandbox_test_module_(NULL
) {
78 RendererMainPlatformDelegate::~RendererMainPlatformDelegate() {
81 void RendererMainPlatformDelegate::PlatformInitialize() {
82 const base::CommandLine
& command_line
= parameters_
.command_line
;
84 // Be mindful of what resources you acquire here. They can be used by
85 // malicious code if the renderer gets compromised.
86 bool no_sandbox
= command_line
.HasSwitch(switches::kNoSandbox
);
88 bool use_direct_write
= gfx::win::ShouldUseDirectWrite();
90 // ICU DateFormat class (used in base/time_format.cc) needs to get the
91 // Olson timezone ID by accessing the registry keys under
92 // HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones.
93 // After TimeZone::createDefault is called once here, the timezone ID is
94 // cached and there's no more need to access the registry. If the sandbox
95 // is disabled, we don't have to make this dummy call.
96 scoped_ptr
<icu::TimeZone
> zone(icu::TimeZone::createDefault());
98 if (use_direct_write
) {
101 SkTypeface_SetEnsureLOGFONTAccessibleProc(SkiaPreCacheFont
);
104 blink::WebFontRendering::setUseDirectWrite(use_direct_write
);
105 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale());
108 void RendererMainPlatformDelegate::PlatformUninitialize() {
111 bool RendererMainPlatformDelegate::EnableSandbox() {
112 sandbox::TargetServices
* target_services
=
113 parameters_
.sandbox_info
->target_services
;
115 if (target_services
) {
116 // Cause advapi32 to load before the sandbox is turned on.
117 unsigned int dummy_rand
;
119 // Warm up language subsystems before the sandbox is turned on.
120 ::GetUserDefaultLangID();
121 ::GetUserDefaultLCID();
123 #if defined(ADDRESS_SANITIZER)
124 // Bind and leak dbghelp.dll before the token is lowered, otherwise
125 // AddressSanitizer will crash when trying to symbolize a report.
126 if (!LoadLibraryA("dbghelp.dll"))
130 target_services
->LowerToken();
136 } // namespace content