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
|
// Copyright 2013 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 "chrome/browser/extensions/error_console/error_console.h"
#include <list>
#include <vector>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/lazy_instance.h"
#include "base/prefs/pref_service.h"
#include "base/stl_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "extensions/browser/extension_system.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_set.h"
#include "extensions/common/feature_switch.h"
namespace extensions {
namespace {
// The key into the Extension prefs for an Extension's specific reporting
// settings.
const char kStoreExtensionErrorsPref[] = "store_extension_errors";
// The default mask (for the time being) is to report everything.
const int32 kDefaultMask = (1 << ExtensionError::MANIFEST_ERROR) |
(1 << ExtensionError::RUNTIME_ERROR);
}
void ErrorConsole::Observer::OnErrorConsoleDestroyed() {
}
ErrorConsole::ErrorConsole(Profile* profile,
ExtensionService* extension_service)
: enabled_(false), default_mask_(kDefaultMask), profile_(profile) {
// TODO(rdevlin.cronin): Remove once crbug.com/159265 is fixed.
#if !defined(ENABLE_EXTENSIONS)
return;
#endif
// If we don't have the necessary FeatureSwitch enabled, then return
// immediately. Since we never register for any notifications, this ensures
// the ErrorConsole will never be enabled.
if (!FeatureSwitch::error_console()->IsEnabled())
return;
pref_registrar_.Init(profile_->GetPrefs());
pref_registrar_.Add(prefs::kExtensionsUIDeveloperMode,
base::Bind(&ErrorConsole::OnPrefChanged,
base::Unretained(this)));
if (profile_->GetPrefs()->GetBoolean(prefs::kExtensionsUIDeveloperMode))
Enable(extension_service);
}
ErrorConsole::~ErrorConsole() {
FOR_EACH_OBSERVER(Observer, observers_, OnErrorConsoleDestroyed());
}
// static
ErrorConsole* ErrorConsole::Get(Profile* profile) {
return ExtensionSystem::Get(profile)->error_console();
}
void ErrorConsole::SetReportingForExtension(const std::string& extension_id,
ExtensionError::Type type,
bool enabled) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!enabled_ || !Extension::IdIsValid(extension_id))
return;
ErrorPreferenceMap::iterator pref = pref_map_.find(extension_id);
if (pref == pref_map_.end()) {
pref = pref_map_.insert(
std::pair<std::string, int32>(extension_id, default_mask_)).first;
}
pref->second =
enabled ? pref->second | (1 << type) : pref->second &~(1 << type);
ExtensionPrefs::Get(profile_)->UpdateExtensionPref(
extension_id,
kStoreExtensionErrorsPref,
base::Value::CreateIntegerValue(pref->second));
}
void ErrorConsole::UseDefaultReportingForExtension(
const std::string& extension_id) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!enabled_ || !Extension::IdIsValid(extension_id))
return;
pref_map_.erase(extension_id);
ExtensionPrefs::Get(profile_)->UpdateExtensionPref(
extension_id,
kStoreExtensionErrorsPref,
NULL);
}
void ErrorConsole::ReportError(scoped_ptr<ExtensionError> error) {
DCHECK(thread_checker_.CalledOnValidThread());
if (!enabled_ || !Extension::IdIsValid(error->extension_id()))
return;
ErrorPreferenceMap::const_iterator pref =
pref_map_.find(error->extension_id());
// Check the mask to see if we report the error. If we don't have a specific
// entry, use the default mask.
if ((pref == pref_map_.end() &&
((default_mask_ & (1 << error->type())) == 0)) ||
(pref != pref_map_.end() && (pref->second & (1 << error->type())) == 0)) {
return;
}
const ExtensionError* weak_error = errors_.AddError(error.Pass());
FOR_EACH_OBSERVER(Observer, observers_, OnErrorAdded(weak_error));
}
const ErrorList& ErrorConsole::GetErrorsForExtension(
const std::string& extension_id) const {
return errors_.GetErrorsForExtension(extension_id);
}
void ErrorConsole::AddObserver(Observer* observer) {
DCHECK(thread_checker_.CalledOnValidThread());
observers_.AddObserver(observer);
}
void ErrorConsole::RemoveObserver(Observer* observer) {
DCHECK(thread_checker_.CalledOnValidThread());
observers_.RemoveObserver(observer);
}
void ErrorConsole::OnPrefChanged() {
bool developer_mode =
profile_->GetPrefs()->GetBoolean(prefs::kExtensionsUIDeveloperMode);
if (developer_mode && !enabled_)
Enable(ExtensionSystem::Get(profile_)->extension_service());
else if (!developer_mode && enabled_)
Disable();
}
void ErrorConsole::Enable(ExtensionService* extension_service) {
enabled_ = true;
notification_registrar_.Add(
this,
chrome::NOTIFICATION_PROFILE_DESTROYED,
content::NotificationService::AllBrowserContextsAndSources());
notification_registrar_.Add(
this,
chrome::NOTIFICATION_EXTENSION_UNINSTALLED,
content::Source<Profile>(profile_));
notification_registrar_.Add(
this,
chrome::NOTIFICATION_EXTENSION_INSTALLED,
content::Source<Profile>(profile_));
if (extension_service) {
const ExtensionSet* extensions = extension_service->extensions();
ExtensionPrefs* prefs = ExtensionPrefs::Get(profile_);
for (ExtensionSet::const_iterator iter = extensions->begin();
iter != extensions->end(); ++iter) {
int mask = 0;
if (prefs->ReadPrefAsInteger(iter->get()->id(),
kStoreExtensionErrorsPref,
&mask)) {
pref_map_[iter->get()->id()] = mask;
}
AddManifestErrorsForExtension(iter->get());
}
}
}
void ErrorConsole::Disable() {
notification_registrar_.RemoveAll();
errors_.RemoveAllErrors();
enabled_ = false;
}
void ErrorConsole::AddManifestErrorsForExtension(const Extension* extension) {
const std::vector<InstallWarning>& warnings =
extension->install_warnings();
for (std::vector<InstallWarning>::const_iterator iter = warnings.begin();
iter != warnings.end(); ++iter) {
ReportError(scoped_ptr<ExtensionError>(new ManifestError(
extension->id(),
base::UTF8ToUTF16(iter->message),
base::UTF8ToUTF16(iter->key),
base::UTF8ToUTF16(iter->specific))));
}
}
void ErrorConsole::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
case chrome::NOTIFICATION_PROFILE_DESTROYED: {
Profile* profile = content::Source<Profile>(source).ptr();
// If incognito profile which we are associated with is destroyed, also
// destroy all incognito errors.
if (profile->IsOffTheRecord() && profile_->IsSameProfile(profile))
errors_.RemoveIncognitoErrors();
break;
}
case chrome::NOTIFICATION_EXTENSION_UNINSTALLED:
// No need to check the profile here, since we registered to only receive
// notifications from our own.
errors_.Remove(content::Details<Extension>(details).ptr()->id());
break;
case chrome::NOTIFICATION_EXTENSION_INSTALLED: {
const InstalledExtensionInfo* info =
content::Details<InstalledExtensionInfo>(details).ptr();
// We don't want to have manifest errors from previous installs. We want
// to keep runtime errors, though, because extensions are reloaded on a
// refresh of chrome:extensions, and we don't want to wipe our history
// whenever that happens.
errors_.RemoveErrorsForExtensionOfType(info->extension->id(),
ExtensionError::MANIFEST_ERROR);
AddManifestErrorsForExtension(info->extension);
break;
}
default:
NOTREACHED();
}
}
} // namespace extensions
|