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
|
// Copyright 2014 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/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "extensions/renderer/set_icon_natives.h"
#include <stddef.h>
#include <stdint.h>
#include <limits>
#include <memory>
#include "base/containers/span.h"
#include "base/functional/bind.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/string_number_conversions.h"
#include "extensions/renderer/script_context.h"
#include "gin/data_object_builder.h"
#include "skia/public/mojom/bitmap.mojom.h"
#include "third_party/blink/public/web/web_array_buffer_converter.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "v8/include/v8-context.h"
#include "v8/include/v8-exception.h"
#include "v8/include/v8-function-callback.h"
#include "v8/include/v8-isolate.h"
#include "v8/include/v8-object.h"
#include "v8/include/v8-primitive.h"
// TODO(devlin): Looks like there are lots of opportunities to use gin helpers
// like gin::Dictionary and gin::DataObjectBuilder here.
namespace {
const char kInvalidDimensions[] = "ImageData has invalid dimensions.";
const char kInvalidData[] = "ImageData data length does not match dimensions.";
const char kNoMemory[] = "Chrome was unable to initialize icon.";
void ThrowException(v8::Isolate* isolate, const char* error_message) {
isolate->ThrowException(v8::Exception::Error(
v8::String::NewFromUtf8(isolate, error_message,
v8::NewStringType::kInternalized)
.ToLocalChecked()));
}
int GetIntPropertyFromV8Object(v8::Local<v8::Object> v8_object,
v8::Local<v8::Context> v8_context,
const char* property_name) {
v8::Local<v8::Value> v8_property_value;
if (!v8_object
->Get(v8_context, v8::String::NewFromUtf8(
v8_context->GetIsolate(), property_name,
v8::NewStringType::kInternalized)
.ToLocalChecked())
.ToLocal(&v8_property_value)) {
return 0;
}
return v8_property_value->Int32Value(v8_context).FromMaybe(0);
}
int GetIntPropertyFromV8Object(v8::Local<v8::Object> v8_object,
v8::Local<v8::Context> v8_context,
int index) {
v8::Local<v8::Value> v8_property_value;
if (!v8_object
->Get(v8_context, v8::Integer::New(v8_context->GetIsolate(), index))
.ToLocal(&v8_property_value)) {
return 0;
}
return v8_property_value->Int32Value(v8_context).FromMaybe(0);
}
} // namespace
namespace extensions {
SetIconNatives::SetIconNatives(ScriptContext* context)
: ObjectBackedNativeHandler(context) {}
void SetIconNatives::AddRoutes() {
RouteHandlerFunction("SetIconCommon",
base::BindRepeating(&SetIconNatives::SetIconCommon,
base::Unretained(this)));
}
bool SetIconNatives::ConvertImageDataToBitmapValue(
const v8::Local<v8::Object> image_data,
v8::Local<v8::Value>* image_data_bitmap) {
v8::Local<v8::Context> v8_context = context()->v8_context();
v8::Isolate* isolate = v8_context->GetIsolate();
v8::Local<v8::Value> value;
if (!image_data
->Get(v8_context,
v8::String::NewFromUtf8(isolate, "data",
v8::NewStringType::kInternalized)
.ToLocalChecked())
.ToLocal(&value)) {
ThrowException(isolate, kInvalidData);
return false;
}
v8::Local<v8::Object> data;
if (!value->ToObject(v8_context).ToLocal(&data)) {
ThrowException(isolate, kInvalidData);
return false;
}
int width = GetIntPropertyFromV8Object(image_data, v8_context, "width");
int height = GetIntPropertyFromV8Object(image_data, v8_context, "height");
if (width <= 0 || height <= 0) {
ThrowException(isolate, kInvalidDimensions);
return false;
}
// We need to be able to safely check |data_length| == 4 * width * height
// without overflowing below.
int max_width = (std::numeric_limits<int>::max() / 4) / height;
if (width > max_width) {
ThrowException(isolate, kInvalidDimensions);
return false;
}
int data_length = GetIntPropertyFromV8Object(data, v8_context, "length");
if (data_length != 4 * width * height) {
ThrowException(isolate, kInvalidData);
return false;
}
SkBitmap bitmap;
if (!bitmap.tryAllocN32Pixels(width, height)) {
ThrowException(isolate, kNoMemory);
return false;
}
bitmap.eraseARGB(0, 0, 0, 0);
base::span pixels(bitmap.getAddr32(0, 0),
base::checked_cast<uint32_t>(width * height));
auto image_data_bytes = [&](size_t index) {
return GetIntPropertyFromV8Object(data, v8_context, index) & 0xFF;
};
for (size_t t = 0; t < pixels.size(); ++t) {
// |data| is RGBA, pixels is ARGB.
pixels[t] = SkPreMultiplyColor((image_data_bytes(4 * t + 3) << 24) |
(image_data_bytes(4 * t + 0) << 16) |
(image_data_bytes(4 * t + 1) << 8) |
(image_data_bytes(4 * t + 2) << 0));
}
// Construct the Value object.
std::vector<uint8_t> s = skia::mojom::InlineBitmap::Serialize(&bitmap);
blink::WebArrayBuffer buffer = blink::WebArrayBuffer::Create(s.size(), 1);
memcpy(buffer.Data(), s.data(), s.size());
*image_data_bitmap =
blink::WebArrayBufferConverter::ToV8Value(&buffer, isolate);
return true;
}
bool SetIconNatives::ConvertImageDataSetToBitmapValueSet(
v8::Local<v8::Object>& details,
v8::Local<v8::Object>* bitmap_set_value) {
v8::Local<v8::Context> v8_context = context()->v8_context();
v8::Isolate* isolate = v8_context->GetIsolate();
v8::Local<v8::Value> v8_value;
if (!details
->Get(v8_context,
v8::String::NewFromUtf8(isolate, "imageData",
v8::NewStringType::kInternalized)
.ToLocalChecked())
.ToLocal(&v8_value)) {
return false;
}
v8::Local<v8::Object> image_data_set;
if (!v8_value->ToObject(v8_context).ToLocal(&image_data_set)) {
return false;
}
DCHECK(bitmap_set_value);
v8::Local<v8::Array> property_names(
image_data_set->GetOwnPropertyNames(v8_context)
.FromMaybe(v8::Local<v8::Array>()));
for (size_t i = 0; i < property_names->Length(); ++i) {
v8::Local<v8::Value> key =
property_names->Get(v8_context, i).ToLocalChecked();
v8::String::Utf8Value utf8_key(isolate, key);
int size;
if (!base::StringToInt(std::string(*utf8_key), &size))
continue;
v8::Local<v8::Value> v8_image_value;
if (!image_data_set->Get(v8_context, key).ToLocal(&v8_image_value)) {
return false;
}
v8::Local<v8::Object> image_data;
if (!v8_image_value->ToObject(v8_context).ToLocal(&image_data)) {
return false;
}
v8::Local<v8::Value> image_data_bitmap;
if (!ConvertImageDataToBitmapValue(image_data, &image_data_bitmap))
return false;
(*bitmap_set_value)
->Set(v8_context, key, image_data_bitmap)
.FromMaybe(false);
}
return true;
}
void SetIconNatives::SetIconCommon(
const v8::FunctionCallbackInfo<v8::Value>& args) {
CHECK_EQ(1, args.Length());
CHECK(args[0]->IsObject());
v8::Local<v8::Context> v8_context = context()->v8_context();
v8::Isolate* isolate = args.GetIsolate();
v8::Local<v8::Object> details = args[0].As<v8::Object>();
v8::Local<v8::Object> bitmap_set_value(v8::Object::New(isolate));
auto set_null_prototype = [v8_context, isolate](v8::Local<v8::Object> obj) {
// Avoid any pesky Object.prototype manipulation.
bool succeeded =
obj->SetPrototypeV2(v8_context, v8::Null(isolate)).ToChecked();
CHECK(succeeded);
};
set_null_prototype(bitmap_set_value);
if (!ConvertImageDataSetToBitmapValueSet(details, &bitmap_set_value))
return;
gin::DataObjectBuilder dict_builder(isolate);
dict_builder.Set("imageData", bitmap_set_value);
v8::Local<v8::String> tab_id_key =
v8::String::NewFromUtf8(isolate, "tabId",
v8::NewStringType::kInternalized)
.ToLocalChecked();
bool has_tab_id = false;
if (!details->HasOwnProperty(v8_context, tab_id_key).To(&has_tab_id))
return; // HasOwnProperty() threw - bail.
if (has_tab_id) {
v8::Local<v8::Value> tab_id;
if (!details->Get(v8_context, tab_id_key).ToLocal(&tab_id)) {
return; // Get() threw - bail.
}
dict_builder.Set("tabId", tab_id);
}
v8::Local<v8::Object> dict = dict_builder.Build();
set_null_prototype(dict);
args.GetReturnValue().Set(dict);
}
} // namespace extensions
|