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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/font_unique_name_lookup/font_unique_name_lookup_android.h"
#include <set>
#include <vector>
#include "base/android/build_info.h"
#include "base/check.h"
#include "base/containers/span_rust.h"
#include "base/files/file.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_util.h"
#include "base/files/memory_mapped_file.h"
#include "base/metrics/histogram_macros.h"
#include "base/no_destructor.h"
#include "base/path_service.h"
#include "base/strings/cstring_view.h"
#include "base/strings/string_view_rust.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "content/browser/font_unique_name_lookup/name_table_ffi.rs.h"
#include "content/common/features.h"
#include "third_party/blink/public/common/font_unique_name_lookup/font_table_matcher.h"
#include "third_party/blink/public/common/font_unique_name_lookup/font_table_persistence.h"
#include "third_party/blink/public/common/font_unique_name_lookup/font_unique_name_table.pb.h"
#include "third_party/blink/public/common/font_unique_name_lookup/icu_fold_case_util.h"
#include "third_party/icu/source/common/unicode/unistr.h"
#include "third_party/rust/cxx/v1/cxx.h"
static_assert(BUILDFLAG(IS_ANDROID), "This implementation only works safely "
"on Android due to the way it assumes font files to be "
"read-only and unmodifiable.");
namespace {
// Increment this suffix when changes are needed to the cache structure, e.g.
// counting up after the dash "-1", "-2", etc.
const char kFingerprintSuffixForceUpdateCache[] = "-2";
const char kProtobufFilename[] = "font_unique_name_table.pb";
// These directories contain read-only font files stored in ROM.
// Memory-mapping these files avoids large RAM allocations.
// DO NOT add directories here unless the files are guaranteed read-only.
// Modifying these files typically requires a firmware or system update.
static const char* const kAndroidFontPaths[] = {
"/system/fonts", "/vendor/fonts", "/product/fonts"};
void IndexFile(blink::FontUniqueNameTable& font_table,
std::string_view font_file_path,
const rust::Slice<const uint8_t>& mapped_bytes,
uint32_t ttc_index) {
rust::Vec<rust::String> english_unique_font_names =
name_table_access::english_unique_font_names(mapped_bytes, ttc_index);
if (english_unique_font_names.empty()) {
return;
}
blink::FontUniqueNameTable_UniqueFont* added_unique_font =
font_table.add_fonts();
added_unique_font->set_file_path(std::string(font_file_path));
added_unique_font->set_ttc_index(ttc_index);
int added_font_index = font_table.fonts_size() - 1;
for (const rust::String& entry : english_unique_font_names) {
blink::FontUniqueNameTable_UniqueNameToFontMapping* name_mapping =
font_table.add_name_map();
name_mapping->set_font_name(blink::IcuFoldCase(std::string(entry)));
name_mapping->set_font_index(added_font_index);
}
}
void IndexFiles(base::span<base::FilePath> fonts_to_index,
blink::FontUniqueNameTable& font_table) {
for (const auto& font_file_path : fonts_to_index) {
base::MemoryMappedFile mapped_font_file;
// Files from kAndroidFontPaths are read-only, protected files on Android,
// only modified by means of a firmware update. At Chrome's lifetime,
// these files are not modifiable, which makes them safe to memory-map.
// For details, see discussion in
// https://crrev.com/c/5677302
if (!mapped_font_file.Initialize(font_file_path)) {
continue;
}
rust::Slice<const uint8_t> mapped_bytes(
base::SpanToRustSlice(mapped_font_file.bytes()));
int32_t number_of_faces =
name_table_access::indexable_num_fonts(mapped_bytes);
for (int32_t ttc_index = 0; ttc_index < number_of_faces; ++ttc_index) {
TRACE_EVENT0("fonts", "FontUniqueNameLookup::UpdateTable - IndexFile");
IndexFile(font_table, font_file_path.value(), mapped_bytes, ttc_index);
}
}
}
} // namespace
namespace content {
class PlatformFontUniqueNameLookup : public FontUniqueNameLookup {
public:
PlatformFontUniqueNameLookup() : FontUniqueNameLookup(GetCacheDirectory()) {
ScheduleLoadOrUpdateTable();
}
private:
static base::FilePath GetCacheDirectory() {
base::FilePath cache_directory;
base::PathService::Get(base::DIR_CACHE, &cache_directory);
return cache_directory;
}
};
FontUniqueNameLookup& FontUniqueNameLookup::GetInstance() {
static base::NoDestructor<PlatformFontUniqueNameLookup> sInstance;
return *sInstance.get();
}
FontUniqueNameLookup::FontUniqueNameLookup(
const base::FilePath& cache_directory)
: cache_directory_(cache_directory) {
if (!DirectoryExists(cache_directory_) ||
!base::PathIsWritable(cache_directory_)) {
DCHECK(false) << "Error accessing cache directory for writing: "
<< cache_directory_.value();
cache_directory_ = base::FilePath();
}
}
FontUniqueNameLookup::~FontUniqueNameLookup() = default;
base::ReadOnlySharedMemoryRegion FontUniqueNameLookup::DuplicateMemoryRegion() {
DCHECK(proto_storage_.IsValid() && proto_storage_.mapping.size());
return proto_storage_.region.Duplicate();
}
void FontUniqueNameLookup::QueueShareMemoryRegionWhenReady(
scoped_refptr<base::SequencedTaskRunner> task_runner,
blink::mojom::FontUniqueNameLookup::GetUniqueNameLookupTableCallback
callback) {
pending_callbacks_.emplace_back(std::move(task_runner), std::move(callback));
}
bool FontUniqueNameLookup::IsValid() {
return proto_storage_ready_.IsSignaled() && proto_storage_.IsValid() &&
proto_storage_.mapping.size();
}
bool FontUniqueNameLookup::UpdateTableIfNeeded() {
TRACE_EVENT0("fonts", "FontUniqueNameLookup::UpdateTableIfNeeded");
if (proto_storage_.IsValid() && proto_storage_.mapping.size()) {
blink::FontUniqueNameTable font_table;
base::span<const uint8_t> mem(proto_storage_.mapping);
if (font_table.ParseFromArray(mem.data(), mem.size())) {
if (font_table.stored_for_platform_version_identifier() ==
GetAndroidBuildFingerprint()) {
return false;
}
}
}
UpdateTable();
return true;
}
bool FontUniqueNameLookup::UpdateTable() {
TRACE_EVENT0("fonts", "FontUniqueNameLookup::UpdateTable");
std::vector<base::FilePath> font_files_to_index = GetFontFilePaths();
blink::FontUniqueNameTable font_table;
font_table.set_stored_for_platform_version_identifier(
GetAndroidBuildFingerprint());
IndexFiles(font_files_to_index, font_table);
blink::FontTableMatcher::SortUniqueNameTableForSearch(&font_table);
proto_storage_ =
base::ReadOnlySharedMemoryRegion::Create(font_table.ByteSizeLong());
if (!proto_storage_.IsValid() || !proto_storage_.mapping.size())
return false;
base::span<uint8_t> mem(proto_storage_.mapping);
if (!font_table.SerializeToArray(mem.data(), mem.size())) {
proto_storage_ = base::MappedReadOnlyRegion();
return false;
}
return true;
}
bool FontUniqueNameLookup::LoadFromFile() {
TRACE_EVENT0("fonts", "FontUniqueNameLookup::LoadFromFile");
return blink::font_table_persistence::LoadFromFile(TableCacheFilePath(),
&proto_storage_);
}
bool FontUniqueNameLookup::PersistToFile() {
TRACE_EVENT0("fonts", "FontUniqueNameLookup::PersistToFile");
return blink::font_table_persistence::PersistToFile(proto_storage_,
TableCacheFilePath());
}
void FontUniqueNameLookup::ScheduleLoadOrUpdateTable() {
base::ThreadPool::PostTask(
FROM_HERE,
{base::MayBlock(), base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::BindOnce(
[](FontUniqueNameLookup* instance) {
// Error from LoadFromFile() is ignored:
// Loading the cache file could be recovered
// from by rebuilding the font table.
// UpdateTableIfNeeded() checks whether the
// internal base::MappedReadOnlyRegion has a
// size, which it doesn't if the LoadFromFile()
// failed. If it doesn't have a size, the table
// is rebuild by calling UpdateTable().
instance->LoadFromFile();
if (instance->UpdateTableIfNeeded()) {
instance->PersistToFile();
}
instance->proto_storage_ready_.Signal();
instance->PostCallbacks();
},
base::Unretained(this)));
}
base::FilePath FontUniqueNameLookup::TableCacheFilePath() {
return base::FilePath(
cache_directory_.Append(base::FilePath(kProtobufFilename)));
}
std::string FontUniqueNameLookup::GetAndroidBuildFingerprint() const {
return android_build_fingerprint_for_testing_.size()
? android_build_fingerprint_for_testing_
: std::string(base::android::BuildInfo::GetInstance()
->android_build_fp()) +
std::string(kFingerprintSuffixForceUpdateCache);
}
std::vector<base::FilePath> FontUniqueNameLookup::GetFontFilePaths() const {
if (font_file_paths_for_testing_.size())
return font_file_paths_for_testing_;
std::vector<base::FilePath> font_files;
for (const char* font_dir_path : kAndroidFontPaths) {
base::FileEnumerator files_enumerator(
base::MakeAbsoluteFilePath(base::FilePath(font_dir_path)), true,
base::FileEnumerator::FILES);
for (base::FilePath name = files_enumerator.Next(); !name.empty();
name = files_enumerator.Next()) {
if (name.Extension() == ".ttf" || name.Extension() == ".ttc" ||
name.Extension() == ".otf") {
font_files.push_back(name);
}
}
}
return font_files;
}
FontUniqueNameLookup::CallbackOnTaskRunner::CallbackOnTaskRunner(
scoped_refptr<base::SequencedTaskRunner> runner,
blink::mojom::FontUniqueNameLookup::GetUniqueNameLookupTableCallback
callback)
: task_runner(std::move(runner)), mojo_callback(std::move(callback)) {}
FontUniqueNameLookup::CallbackOnTaskRunner::CallbackOnTaskRunner(
CallbackOnTaskRunner&& other) {
task_runner = std::move(other.task_runner);
mojo_callback = std::move(other.mojo_callback);
other.task_runner = nullptr;
other.mojo_callback =
blink::mojom::FontUniqueNameLookup::GetUniqueNameLookupTableCallback();
}
FontUniqueNameLookup::CallbackOnTaskRunner::~CallbackOnTaskRunner() = default;
void FontUniqueNameLookup::PostCallbacks() {
for (auto& pending_callback : pending_callbacks_) {
pending_callback.task_runner->PostTask(
FROM_HERE, base::BindOnce(std::move(pending_callback.mojo_callback),
DuplicateMemoryRegion()));
}
pending_callbacks_.clear();
}
} // namespace content
|