-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
Copy pathsetupSentry.js
621 lines (543 loc) · 17.6 KB
/
setupSentry.js
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
import { createModuleLogger, createProjectLogger } from '@metamask/utils';
import * as Sentry from '@sentry/browser';
import { logger } from '@sentry/utils';
import browser from 'webextension-polyfill';
import { isManifestV3 } from '../../../shared/modules/mv3.utils';
import extractEthjsErrorMessage from './extractEthjsErrorMessage';
import { getManifestFlags } from './manifestFlags';
import { filterEvents } from './sentry-filter-events';
const projectLogger = createProjectLogger('sentry');
let installType = 'unknown';
export const log = createModuleLogger(
projectLogger,
globalThis.document ? 'ui' : 'background',
);
const internalLog = createModuleLogger(log, 'internal');
/* eslint-disable prefer-destructuring */
// Destructuring breaks the inlining of the environment variables
const METAMASK_BUILD_TYPE = process.env.METAMASK_BUILD_TYPE;
const METAMASK_DEBUG = process.env.METAMASK_DEBUG;
const METAMASK_ENVIRONMENT = process.env.METAMASK_ENVIRONMENT;
const RELEASE = process.env.METAMASK_VERSION;
const SENTRY_DSN = process.env.SENTRY_DSN;
const SENTRY_DSN_DEV = process.env.SENTRY_DSN_DEV;
const SENTRY_DSN_MMI = process.env.SENTRY_MMI_DSN;
/* eslint-enable prefer-destructuring */
// This is a fake DSN that can be used to test Sentry without sending data to the real Sentry server.
const SENTRY_DSN_FAKE = 'https://fake@sentry.io/0000000';
export const ERROR_URL_ALLOWLIST = {
CRYPTOCOMPARE: 'cryptocompare.com',
COINGECKO: 'coingecko.com',
ETHERSCAN: 'etherscan.io',
CODEFI: 'codefi.network',
SEGMENT: 'segment.io',
};
export default function setupSentry() {
if (!RELEASE) {
throw new Error('Missing release');
}
if (!getSentryTarget()) {
log('Skipped initialization');
return undefined;
}
log('Initializing');
// Normally this would be awaited, but getSelf should be available by the time the report is finalized.
// If it's not, we still get the extensionId, but the installType will default to "unknown"
browser.management
.getSelf()
.then((extensionInfo) => {
if (extensionInfo.installType) {
installType = extensionInfo.installType;
}
})
.catch((error) => {
log('Error getting extension installType', error);
});
integrateLogging();
setSentryClient();
return {
...Sentry,
getMetaMetricsEnabled,
};
}
function getClientOptions() {
const environment = getSentryEnvironment();
const sentryTarget = getSentryTarget();
return {
beforeBreadcrumb: beforeBreadcrumb(),
beforeSend: (report) => rewriteReport(report),
debug: METAMASK_DEBUG,
dist: isManifestV3 ? 'mv3' : 'mv2',
dsn: sentryTarget,
environment,
integrations: [
Sentry.dedupeIntegration(),
Sentry.extraErrorDataIntegration(),
Sentry.browserTracingIntegration(),
filterEvents({ getMetaMetricsEnabled, log }),
],
release: RELEASE,
// Client reports are automatically sent when a page's visibility changes to
// "hidden", but cancelled (with an Error) that gets logged to the console.
// Our test infra sometimes reports these errors as unexpected failures,
// which results in test flakiness. We don't use these client reports, so
// we can safely turn them off by setting the `sendClientReports` option to
// `false`.
sendClientReports: false,
tracesSampleRate: getTracesSampleRate(sentryTarget),
transport: makeTransport,
};
}
/**
* Compute the tracesSampleRate depending on testing condition.
*
* @param {string} sentryTarget
* @returns tracesSampleRate to setup Sentry
*/
function getTracesSampleRate(sentryTarget) {
if (sentryTarget === SENTRY_DSN_FAKE) {
return 1.0;
}
const flags = getManifestFlags();
// Grab the tracesSampleRate that may have come in from a git message
// 0 is a valid value, so must explicitly check for undefined
if (flags.sentry?.tracesSampleRate !== undefined) {
return flags.sentry.tracesSampleRate;
}
if (flags.circleci) {
// Report very frequently on develop branch, and never on other branches
// (Unless you use a `flags = {"sentry": {"tracesSampleRate": x.xx}}` override)
if (flags.circleci.branch === 'develop') {
return 0.015;
}
return 0;
}
if (METAMASK_DEBUG) {
return 1.0;
}
return 0.02;
}
/**
* Get CircleCI tags passed from the test environment, through manifest.json,
* and give them to the Sentry client.
*/
function setCircleCiTags() {
const { circleci } = getManifestFlags();
if (circleci?.enabled) {
Sentry.setTag('circleci.enabled', circleci.enabled);
Sentry.setTag('circleci.branch', circleci.branch);
Sentry.setTag('circleci.buildNum', circleci.buildNum);
Sentry.setTag('circleci.job', circleci.job);
Sentry.setTag('circleci.nodeIndex', circleci.nodeIndex);
Sentry.setTag('circleci.prNumber', circleci.prNumber);
}
}
/**
* Returns whether MetaMetrics is enabled, given the application state.
*
* @param {{ state: unknown} | { persistedState: unknown }} appState - Application state
* @returns `true` if MetaMask's state has been initialized, and MetaMetrics
* is enabled, `false` otherwise.
*/
function getMetaMetricsEnabledFromAppState(appState) {
// during initialization after loading persisted state
if (appState.persistedState) {
return getMetaMetricsEnabledFromPersistedState(appState.persistedState);
// After initialization
} else if (appState.state) {
// UI
if (appState.state.metamask) {
return Boolean(appState.state.metamask.participateInMetaMetrics);
}
// background
return Boolean(
appState.state.MetaMetricsController?.participateInMetaMetrics,
);
}
// during initialization, before first persisted state is read
return false;
}
/**
* Returns whether MetaMetrics is enabled, given the persisted state.
*
* @param {unknown} persistedState - Application state
* @returns `true` if MetaMask's state has been initialized, and MetaMetrics
* is enabled, `false` otherwise.
*/
function getMetaMetricsEnabledFromPersistedState(persistedState) {
return Boolean(
persistedState?.data?.MetaMetricsController?.participateInMetaMetrics,
);
}
/**
* Returns whether onboarding has completed, given the application state.
*
* @param {Record<string, unknown>} appState - Application state
* @returns `true` if onboarding has completed, `false` otherwise.
*/
function getOnboardingCompleteFromAppState(appState) {
// during initialization after loading persisted state
if (appState.persistedState) {
return getOnboardingCompleteFromPersistedState(appState.persistedState);
// After initialization
} else if (appState.state) {
// UI
if (appState.state.metamask) {
return Boolean(appState.state.metamask.completedOnboarding);
}
// background
return Boolean(appState.state.OnboardingController?.completedOnboarding);
}
// during initialization, before first persisted state is read
return false;
}
/**
* Returns whether onboarding has completed, given the persisted state.
*
* @param {Record<string, unknown>} persistedState - Persisted state
* @returns `true` if onboarding has completed, `false` otherwise.
*/
function getOnboardingCompleteFromPersistedState(persistedState) {
return Boolean(
persistedState.data?.OnboardingController?.completedOnboarding,
);
}
function getSentryEnvironment() {
if (METAMASK_BUILD_TYPE === 'main') {
return METAMASK_ENVIRONMENT;
}
return `${METAMASK_ENVIRONMENT}-${METAMASK_BUILD_TYPE}`;
}
function getSentryTarget() {
if (
process.env.IN_TEST &&
(!SENTRY_DSN_DEV || !getManifestFlags().sentry?.forceEnable)
) {
return SENTRY_DSN_FAKE;
}
if (METAMASK_ENVIRONMENT !== 'production') {
return SENTRY_DSN_DEV;
}
if (METAMASK_BUILD_TYPE === 'mmi') {
return SENTRY_DSN_MMI;
}
if (!SENTRY_DSN) {
throw new Error(
`Missing SENTRY_DSN environment variable in production environment`,
);
}
return SENTRY_DSN;
}
/**
* Returns whether MetaMetrics is enabled. If the application hasn't yet
* been initialized, the persisted state will be used (if any).
*
* @returns `true` if MetaMetrics is enabled, `false` otherwise.
*/
async function getMetaMetricsEnabled() {
const flags = getManifestFlags();
if (
METAMASK_BUILD_TYPE === 'mmi' ||
(flags.circleci && flags.sentry.forceEnable)
) {
return true;
}
const appState = getState();
if (appState.state || appState.persistedState) {
return (
getMetaMetricsEnabledFromAppState(appState) &&
getOnboardingCompleteFromAppState(appState)
);
}
// If we reach here, it means the error was thrown before initialization
// completed, and before we loaded the persisted state for the first time.
try {
const persistedState = await globalThis.stateHooks.getPersistedState();
return (
getMetaMetricsEnabledFromPersistedState(persistedState) &&
getOnboardingCompleteFromPersistedState(persistedState)
);
} catch (error) {
log('Error retrieving persisted state', error);
return false;
}
}
function setSentryClient() {
const clientOptions = getClientOptions();
const { dsn, environment, release, tracesSampleRate } = clientOptions;
/**
* Sentry throws on initialization as it wants to avoid polluting the global namespace and
* potentially clashing with a website also using Sentry, but this could only happen in the content script.
* This emulates NW.js which disables these validations.
* https://docs.sentry.io/platforms/javascript/best-practices/shared-environments/
*/
globalThis.nw = {};
/**
* Sentry checks session tracking support by looking for global history object and functions inside it.
* Scuttling sets this property to undefined which breaks Sentry logic and crashes background.
*/
globalThis.history ??= {};
log('Updating client', {
environment,
dsn,
release,
tracesSampleRate,
});
Sentry.registerSpanErrorInstrumentation();
Sentry.init(clientOptions);
setCircleCiTags();
addDebugListeners();
return true;
}
/**
* Receives a string and returns that string if it is a
* regex match for a url with a `chrome-extension` or `moz-extension`
* protocol, and an empty string otherwise.
*
* @param {string} url - The URL to check.
* @returns {string} An empty string if the URL was internal, or the unmodified URL otherwise.
*/
function hideUrlIfNotInternal(url) {
const re = /^(chrome-extension|moz-extension):\/\//u;
if (!url.match(re)) {
return '';
}
return url;
}
/**
* Returns a method that handles the Sentry breadcrumb using a specific method to get the extension state
*
* @returns {(breadcrumb: object) => object} A method that modifies a Sentry breadcrumb object
*/
export function beforeBreadcrumb() {
return (breadcrumb) => {
if (!getState) {
return null;
}
const appState = getState();
if (
!getMetaMetricsEnabledFromAppState(appState) ||
!getOnboardingCompleteFromAppState(appState) ||
breadcrumb?.category === 'ui.input'
) {
return null;
}
const newBreadcrumb = removeUrlsFromBreadCrumb(breadcrumb);
return newBreadcrumb;
};
}
/**
* Receives a Sentry breadcrumb object and potentially removes urls
* from its `data` property, it particular those possibly found at
* data.from, data.to and data.url
*
* @param {object} breadcrumb - A Sentry breadcrumb object: https://develop.sentry.dev/sdk/event-payloads/breadcrumbs/
* @returns {object} A modified Sentry breadcrumb object.
*/
export function removeUrlsFromBreadCrumb(breadcrumb) {
if (breadcrumb?.data?.url) {
breadcrumb.data.url = hideUrlIfNotInternal(breadcrumb.data.url);
}
if (breadcrumb?.data?.to) {
breadcrumb.data.to = hideUrlIfNotInternal(breadcrumb.data.to);
}
if (breadcrumb?.data?.from) {
breadcrumb.data.from = hideUrlIfNotInternal(breadcrumb.data.from);
}
return breadcrumb;
}
/**
* Receives a Sentry event object and modifies it before the
* error is sent to Sentry. Modifications include both sanitization
* of data via helper methods and addition of state data from the
* return value of the second parameter passed to the function.
*
* @param {object} report - A Sentry event object: https://develop.sentry.dev/sdk/event-payloads/
* @returns {object} A modified Sentry event object.
*/
export function rewriteReport(report) {
try {
// simplify certain complex error messages (e.g. Ethjs)
simplifyErrorMessages(report);
// remove urls from error message
sanitizeUrlsFromErrorMessages(report);
// Remove evm addresses from error message.
// Note that this is redundent with data scrubbing we do within our sentry dashboard,
// but putting the code here as well gives public visibility to how we are handling
// privacy with respect to sentry.
sanitizeAddressesFromErrorMessages(report);
// modify report urls
rewriteReportUrls(report);
// append app state
const appState = getState();
if (!report.extra) {
report.extra = {};
}
if (!report.tags) {
report.tags = {};
}
Object.assign(report.extra, {
appState,
installType,
extensionId: browser.runtime?.id,
});
report.tags.installType = installType;
} catch (err) {
log('Error rewriting report', err);
}
return report;
}
/**
* Receives a Sentry event object and modifies it so that urls are removed from any of its
* error messages.
*
* @param {object} report - the report to modify
*/
function sanitizeUrlsFromErrorMessages(report) {
rewriteErrorMessages(report, (errorMessage) => {
let newErrorMessage = errorMessage;
const re = /(([-.+a-zA-Z]+:\/\/)|(www\.))\S+[@:.]\S+/gu;
const urlsInMessage = newErrorMessage.match(re) || [];
urlsInMessage.forEach((url) => {
try {
const urlObj = new URL(url);
const { hostname } = urlObj;
if (
!Object.values(ERROR_URL_ALLOWLIST).some(
(allowedHostname) =>
hostname === allowedHostname ||
hostname.endsWith(`.${allowedHostname}`),
)
) {
newErrorMessage = newErrorMessage.replace(url, '**');
}
} catch (e) {
newErrorMessage = newErrorMessage.replace(url, '**');
}
});
return newErrorMessage;
});
}
/**
* Receives a Sentry event object and modifies it so that ethereum addresses are removed from
* any of its error messages.
*
* @param {object} report - the report to modify
*/
function sanitizeAddressesFromErrorMessages(report) {
rewriteErrorMessages(report, (errorMessage) => {
const newErrorMessage = errorMessage.replace(/0x[A-Fa-f0-9]{40}/u, '0x**');
return newErrorMessage;
});
}
function simplifyErrorMessages(report) {
rewriteErrorMessages(report, (errorMessage) => {
// simplify ethjs error messages
let simplifiedErrorMessage = extractEthjsErrorMessage(errorMessage);
// simplify 'Transaction Failed: known transaction'
if (
simplifiedErrorMessage.indexOf(
'Transaction Failed: known transaction',
) === 0
) {
// cut the hash from the error message
simplifiedErrorMessage = 'Transaction Failed: known transaction';
}
return simplifiedErrorMessage;
});
}
function rewriteErrorMessages(report, rewriteFn) {
// rewrite top level message
if (typeof report.message === 'string') {
report.message = rewriteFn(report.message);
}
// rewrite each exception message
if (report.exception && report.exception.values) {
report.exception.values.forEach((item) => {
if (typeof item.value === 'string') {
item.value = rewriteFn(item.value);
}
});
}
}
function rewriteReportUrls(report) {
if (report.request?.url) {
// update request url
report.request.url = toMetamaskUrl(report.request.url);
}
// update exception stack trace
if (report.exception && report.exception.values) {
report.exception.values.forEach((item) => {
if (item.stacktrace) {
item.stacktrace.frames.forEach((frame) => {
frame.filename = toMetamaskUrl(frame.filename);
});
}
});
}
}
function toMetamaskUrl(origUrl) {
if (!globalThis.location?.origin) {
return origUrl;
}
const filePath = origUrl?.split(globalThis.location.origin)[1];
if (!filePath) {
return origUrl;
}
const metamaskUrl = `/metamask${filePath}`;
return metamaskUrl;
}
function getState() {
return globalThis.stateHooks?.getSentryState?.() || {};
}
function integrateLogging() {
if (!METAMASK_DEBUG) {
return;
}
for (const loggerType of ['log', 'error']) {
logger[loggerType] = (...args) => {
const message = args[0].replace(`Sentry Logger [${loggerType}]: `, '');
internalLog(message, ...args.slice(1));
};
}
log('Integrated logging');
}
function addDebugListeners() {
if (!METAMASK_DEBUG) {
return;
}
const client = Sentry.getClient();
client?.on('beforeEnvelope', (event) => {
if (isCompletedSessionEnvelope(event)) {
log('Completed session', event);
}
});
client?.on('afterSendEvent', (event) => {
const type = getEventType(event);
log(type, event);
});
log('Added debug listeners');
}
function makeTransport(options) {
return Sentry.makeFetchTransport(options, async (...args) => {
const metricsEnabled = await getMetaMetricsEnabled();
if (!metricsEnabled) {
throw new Error('Network request skipped as metrics disabled');
}
return await fetch(...args);
});
}
function isCompletedSessionEnvelope(envelope) {
const type = envelope?.[1]?.[0]?.[0]?.type;
const data = envelope?.[1]?.[0]?.[1] ?? {};
return type === 'session' && data.status === 'exited';
}
function getEventType(event) {
if (event.type === 'transaction') {
return 'Trace';
}
if (event.level === 'error') {
return 'Error';
}
return 'Event';
}