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
|
// 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.
#include "components/feedback/feedback_common.h"
#include <algorithm>
#include <utility>
#include "base/files/file_path.h"
#include "base/json/json_reader.h"
#include "base/memory/ptr_util.h"
#include "base/strings/to_string.h"
#include "base/values.h"
#include "components/feedback/feedback_constants.h"
#include "components/feedback/feedback_report.h"
#include "components/feedback/feedback_util.h"
#include "components/feedback/proto/common.pb.h"
#include "components/feedback/proto/dom.pb.h"
#include "components/feedback/proto/extension.pb.h"
#include "components/feedback/proto/math.pb.h"
#include "google_apis/gaia/gaia_auth_util.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/constants/ash_features.h"
#endif
namespace {
// The below thresholds were chosen arbitrarily to conveniently show small data
// as part of the report itself without having to look into the system_logs.zip
// file.
constexpr size_t kFeedbackMaxLength = 1024;
constexpr size_t kFeedbackMaxLineCount = 10;
constexpr base::FilePath::CharType kLogsFilename[] =
FILE_PATH_LITERAL("system_logs.txt");
constexpr char kLogsAttachmentName[] = "system_logs.zip";
constexpr char kZipExt[] = ".zip";
constexpr char kPngMimeType[] = "image/png";
constexpr char kArbitraryMimeType[] = "application/octet-stream";
#if BUILDFLAG(IS_CHROMEOS)
// Keep in sync with
// google3/java/com/google/wireless/android/tools/betterbug/protos/uploadfeedbackreport.proto.
constexpr char kIsCrossDeviceIssueKey[] = "is_cross_device_issue";
constexpr char kIsCrossDeviceIssueTrueValue[] = "true";
constexpr char kTargetDeviceIdKey[] = "target_device_id";
constexpr char kTargetDeviceIdTypeKey[] = "target_device_id_type";
constexpr char kInitiatingDeviceName[] = "initiating_device_name";
// Enum value for MAC_ADDRESS type.
constexpr char kTargetDeviceIdTypeMacAddressValue[] = "1";
constexpr char kInitiatingDeviceNameValue[] = "Chromebook";
#endif // BUILDFLAG(IS_CHROMEOS)
constexpr char kIsOffensiveOrUnsafeKey[] = "is_offensive_or_unsafe";
// Determine if the given feedback value is small enough to not need to
// be compressed.
bool BelowCompressionThreshold(const std::string& content) {
if (content.length() > kFeedbackMaxLength)
return false;
const size_t line_count = std::ranges::count(content, '\n');
if (line_count > kFeedbackMaxLineCount)
return false;
return true;
}
void AddFeedbackData(userfeedback::ExtensionSubmit* feedback_data,
const std::string& key,
const std::string& value) {
// Don't bother with empty keys or values.
if (key.empty() || value.empty())
return;
// Create log_value object and add it to the web_data object.
userfeedback::ProductSpecificData log_value;
log_value.set_key(key);
log_value.set_value(value);
userfeedback::WebData* web_data = feedback_data->mutable_web_data();
*(web_data->add_product_specific_data()) = log_value;
}
// Adds data as an attachment to feedback_data if the data is non-empty.
void AddAttachment(userfeedback::ExtensionSubmit* feedback_data,
const char* name,
const std::string& data) {
if (data.empty())
return;
userfeedback::ProductSpecificBinaryData* attachment =
feedback_data->add_product_specific_binary_data();
attachment->set_mime_type(kArbitraryMimeType);
attachment->set_name(name);
attachment->set_data(data);
}
} // namespace
////////////////////////////////////////////////////////////////////////////////
// FeedbackCommon::AttachedFile::
////////////////////////////////////////////////////////////////////////////////
FeedbackCommon::AttachedFile::AttachedFile(const std::string& filename,
std::string data)
: name(filename), data(std::move(data)) {}
FeedbackCommon::AttachedFile::~AttachedFile() = default;
////////////////////////////////////////////////////////////////////////////////
// FeedbackCommon::
////////////////////////////////////////////////////////////////////////////////
FeedbackCommon::FeedbackCommon() : product_id_(-1) {}
void FeedbackCommon::AddFile(const std::string& filename, std::string data) {
base::AutoLock lock(attachments_lock_);
attachments_.emplace_back(filename, std::move(data));
}
void FeedbackCommon::AddLog(std::string name, std::string value) {
logs_[std::move(name)] = std::move(value);
}
void FeedbackCommon::AddLogs(SystemLogsMap logs) {
// The empty logs_ case is just an optimization.
if (logs_.empty())
logs_ = std::move(logs);
else
logs.insert(logs.begin(), logs.end());
}
bool FeedbackCommon::RemoveLog(std::string name) {
return logs_.erase(name) == 1;
}
void FeedbackCommon::PrepareReport(
userfeedback::ExtensionSubmit* feedback_data) const {
// Unused field, needs to be 0 though.
feedback_data->set_type_id(0);
// Set whether we're reporting from ChromeOS or Chrome on another platform.
userfeedback::ChromeData chrome_data;
#if BUILDFLAG(IS_CHROMEOS)
const userfeedback::ChromeData_ChromePlatform chrome_platform =
userfeedback::ChromeData_ChromePlatform_CHROME_OS;
const int default_product_id = feedback::kChromeOSProductId;
userfeedback::ChromeOsData chrome_os_data;
chrome_os_data.set_category(
userfeedback::ChromeOsData_ChromeOsCategory_OTHER);
*(chrome_data.mutable_chrome_os_data()) = chrome_os_data;
#else
const userfeedback::ChromeData_ChromePlatform chrome_platform =
userfeedback::ChromeData_ChromePlatform_CHROME_BROWSER;
const int default_product_id = feedback::kChromeBrowserProductId;
userfeedback::ChromeBrowserData chrome_browser_data;
chrome_browser_data.set_category(
userfeedback::ChromeBrowserData_ChromeBrowserCategory_OTHER);
*(chrome_data.mutable_chrome_browser_data()) = chrome_browser_data;
#endif // BUILDFLAG(IS_CHROMEOS)
chrome_data.set_chrome_platform(chrome_platform);
// TODO(b/301518187): Investigate if this line is needed in order for custom
// product IDs to work. Remove `include_chrome_platform_` if it's not needed.
if (include_chrome_platform_) {
*(feedback_data->mutable_chrome_data()) = chrome_data;
}
feedback_data->set_product_id(HasProductId() ? product_id_
: default_product_id);
userfeedback::CommonData* common_data = feedback_data->mutable_common_data();
// We're not using gaia ids, we're using the e-mail field instead.
common_data->set_gaia_id(0);
common_data->set_user_email(user_email());
common_data->set_description(description());
common_data->set_source_description_language(locale());
userfeedback::WebData* web_data = feedback_data->mutable_web_data();
if (!page_url().empty()) {
web_data->set_url(page_url());
}
web_data->mutable_navigator()->set_user_agent(user_agent());
AddFilesAndLogsToReport(feedback_data);
if (image().size()) {
userfeedback::PostedScreenshot screenshot;
if (image_mime_type().empty()) {
screenshot.set_mime_type(kPngMimeType);
} else {
screenshot.set_mime_type(image_mime_type());
}
// Set that we 'have' dimensions of the screenshot. These dimensions are
// ignored by the server but are a 'required' field in the protobuf.
userfeedback::Dimensions dimensions;
dimensions.set_width(0.0);
dimensions.set_height(0.0);
*(screenshot.mutable_dimensions()) = dimensions;
screenshot.set_binary_content(image());
*(feedback_data->mutable_screenshot()) = screenshot;
}
if (category_tag().size())
feedback_data->set_bucket(category_tag());
#if BUILDFLAG(IS_CHROMEOS)
if (ash::features::IsLinkCrossDeviceDogfoodFeedbackEnabled() &&
gaia::IsGoogleInternalAccountEmail(user_email()) &&
mac_address_.has_value()) {
AddFeedbackData(feedback_data, kIsCrossDeviceIssueKey,
kIsCrossDeviceIssueTrueValue);
AddFeedbackData(feedback_data, kTargetDeviceIdKey, mac_address_.value());
AddFeedbackData(feedback_data, kTargetDeviceIdTypeKey,
kTargetDeviceIdTypeMacAddressValue);
AddFeedbackData(feedback_data, kInitiatingDeviceName,
kInitiatingDeviceNameValue);
}
#endif // BUILDFLAG(IS_CHROMEOS)
if (is_offensive_or_unsafe_.has_value()) {
AddFeedbackData(feedback_data, kIsOffensiveOrUnsafeKey,
base::ToString(is_offensive_or_unsafe_.value()));
}
if (!ai_metadata_.empty()) {
// Add feedback data for each key/value pair.
std::optional<base::Value::Dict> dict =
base::JSONReader::ReadDict(ai_metadata_);
CHECK(dict);
for (auto pair : dict.value()) {
AddFeedbackData(feedback_data, pair.first, pair.second.GetString());
}
}
}
void FeedbackCommon::RedactDescription(redaction::RedactionTool& redactor) {
description_ = redactor.Redact(description_);
}
// static
bool FeedbackCommon::IncludeInSystemLogs(const std::string& key,
bool is_google_email) {
return is_google_email ||
key != feedback::FeedbackReport::kAllCrashReportIdsKey;
}
// static
int FeedbackCommon::GetChromeBrowserProductId() {
return feedback::kChromeBrowserProductId;
}
// static
int FeedbackCommon::GetMahiProductId() {
return feedback::kMahiFeedbackProductId;
}
#if BUILDFLAG(IS_CHROMEOS)
// static
int FeedbackCommon::GetChromeOSProductId() {
return feedback::kChromeOSProductId;
}
#endif // BUILDFLAG(IS_CHROMEOS)
FeedbackCommon::~FeedbackCommon() = default;
void FeedbackCommon::CompressFile(const base::FilePath& filename,
const std::string& zipname,
std::string data_to_be_compressed) {
std::optional<std::string> compressed_data =
feedback_util::ZipString(filename, data_to_be_compressed);
if (!compressed_data.has_value()) {
return;
}
std::string attachment_file_name = zipname;
if (attachment_file_name.empty()) {
// We need to use the UTF8Unsafe methods here to accommodate Windows,
// which uses wide strings to store file paths.
attachment_file_name = filename.BaseName().AsUTF8Unsafe().append(kZipExt);
}
AddFile(attachment_file_name, std::move(compressed_data.value()));
}
void FeedbackCommon::CompressLogs() {
// Convert the system logs into a string that we can compress and send with
// the report.
std::string logs = feedback_util::LogsToString(logs_);
if (!logs.empty()) {
CompressFile(base::FilePath(kLogsFilename), kLogsAttachmentName,
std::move(logs));
}
}
void FeedbackCommon::AddFilesAndLogsToReport(
userfeedback::ExtensionSubmit* feedback_data) const {
for (size_t i = 0; i < attachments(); ++i) {
const AttachedFile* file = attachment(i);
AddAttachment(feedback_data, file->name.c_str(), file->data);
}
const bool is_google_email = gaia::IsGoogleInternalAccountEmail(user_email());
for (const auto& iter : logs_) {
if (BelowCompressionThreshold(iter.second)) {
// We only send the list of all the crash report IDs if the user has a
// @google.com email. We do this also in feedback_private_api, but not all
// code paths go through that so we need to check again here.
if (FeedbackCommon::IncludeInSystemLogs(iter.first, is_google_email)) {
// Small enough logs should end up in the report data itself. However,
// they're still added as part of the system_logs.zip file.
AddFeedbackData(feedback_data, iter.first, iter.second);
}
}
}
}
|