-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
integrity-checker.js
454 lines (374 loc) · 13.2 KB
/
integrity-checker.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
/* @flow */
import type Config from './config.js';
import type {LockManifest} from './lockfile';
import * as constants from './constants.js';
import * as fs from './util/fs.js';
import {sortAlpha, compareSortedArrays} from './util/misc.js';
import {getSystemParams} from './util/package-name-utils.js';
import type {InstallArtifacts} from './package-install-scripts.js';
import WorkspaceLayout from './workspace-layout.js';
const invariant = require('invariant');
const path = require('path');
export const integrityErrors = {
EXPECTED_IS_NOT_A_JSON: 'integrityFailedExpectedIsNotAJSON',
FILES_MISSING: 'integrityFailedFilesMissing',
LOCKFILE_DONT_MATCH: 'integrityLockfilesDontMatch',
FLAGS_DONT_MATCH: 'integrityFlagsDontMatch',
LINKED_MODULES_DONT_MATCH: 'integrityCheckLinkedModulesDontMatch',
PATTERNS_DONT_MATCH: 'integrityPatternsDontMatch',
MODULES_FOLDERS_MISSING: 'integrityModulesFoldersMissing',
SYSTEM_PARAMS_DONT_MATCH: 'integritySystemParamsDontMatch',
};
type IntegrityError = $Keys<typeof integrityErrors>;
export type IntegrityCheckResult = {
integrityFileMissing: boolean,
integrityMatches?: boolean,
integrityError?: IntegrityError,
missingPatterns: Array<string>,
};
type IntegrityHashLocation = {
locationFolder: string,
locationPath: string,
exists: boolean,
};
type IntegrityFile = {
systemParams: string,
flags: Array<string>,
modulesFolders: Array<string>,
linkedModules: Array<string>,
topLevelPatterns: Array<string>,
lockfileEntries: {
[key: string]: string,
},
files: Array<string>,
artifacts: ?InstallArtifacts,
};
type IntegrityFlags = {
flat: boolean,
checkFiles: boolean,
};
const INTEGRITY_FILE_DEFAULTS = () => ({
systemParams: getSystemParams(),
modulesFolders: [],
flags: [],
linkedModules: [],
topLevelPatterns: [],
lockfileEntries: {},
files: [],
});
/**
*
*/
export default class InstallationIntegrityChecker {
constructor(config: Config) {
this.config = config;
}
config: Config;
/**
* Get the common ancestor of every node_modules - it may be a node_modules directory itself, but isn't required to.
*/
_getModulesRootFolder(): string {
if (this.config.modulesFolder) {
return this.config.modulesFolder;
} else if (this.config.workspaceRootFolder) {
return this.config.workspaceRootFolder;
} else {
return path.join(this.config.lockfileFolder, constants.NODE_MODULES_FOLDER);
}
}
/**
* Get the directory in which the yarn-integrity file should be written.
*/
_getIntegrityFileFolder(): string {
if (this.config.modulesFolder) {
return this.config.modulesFolder;
} else if (this.config.enableMetaFolder) {
return path.join(this.config.lockfileFolder, constants.META_FOLDER);
} else {
return path.join(this.config.lockfileFolder, constants.NODE_MODULES_FOLDER);
}
}
/**
* Get the full path of the yarn-integrity file.
*/
async _getIntegrityFileLocation(): Promise<IntegrityHashLocation> {
const locationFolder = this._getIntegrityFileFolder();
const locationPath = path.join(locationFolder, constants.INTEGRITY_FILENAME);
const exists = await fs.exists(locationPath);
return {
locationFolder,
locationPath,
exists,
};
}
/**
* Get the list of the directories that contain our modules (there might be multiple such folders b/c of workspaces).
*/
_getModulesFolders({workspaceLayout}: {workspaceLayout: ?WorkspaceLayout} = {}): Array<string> {
const locations = [];
if (this.config.modulesFolder) {
locations.push(this.config.modulesFolder);
} else {
locations.push(path.join(this.config.lockfileFolder, constants.NODE_MODULES_FOLDER));
}
if (workspaceLayout) {
for (const workspaceName of Object.keys(workspaceLayout.workspaces)) {
const loc = workspaceLayout.workspaces[workspaceName].loc;
if (loc) {
locations.push(path.join(loc, constants.NODE_MODULES_FOLDER));
}
}
}
return locations.sort(sortAlpha);
}
/**
* Get a list of the files that are located inside our module folders.
*/
async _getIntegrityListing({workspaceLayout}: {workspaceLayout: ?WorkspaceLayout} = {}): Promise<Array<string>> {
const files = [];
const recurse = async dir => {
for (const file of await fs.readdir(dir)) {
const entry = path.join(dir, file);
const stat = await fs.lstat(entry);
if (stat.isDirectory()) {
await recurse(entry);
} else {
files.push(entry);
}
}
};
for (const modulesFolder of this._getModulesFolders({workspaceLayout})) {
if (await fs.exists(modulesFolder)) {
await recurse(modulesFolder);
}
}
return files;
}
/**
* Generate integrity hash of input lockfile.
*/
async _generateIntegrityFile(
lockfile: {[key: string]: LockManifest},
patterns: Array<string>,
flags: IntegrityFlags,
workspaceLayout: ?WorkspaceLayout,
artifacts?: InstallArtifacts,
): Promise<IntegrityFile> {
const result: IntegrityFile = {
...INTEGRITY_FILE_DEFAULTS(),
artifacts,
};
result.topLevelPatterns = patterns;
// If using workspaces, we also need to add the workspaces patterns to the top-level, so that we'll know if a
// dependency is added or removed into one of them. We must take care not to read the aggregator (if !loc).
//
// Also note that we can't use of workspaceLayout.workspaces[].manifest._reference.patterns, because when
// doing a "yarn check", the _reference property hasn't yet been properly initialized.
if (workspaceLayout) {
result.topLevelPatterns = result.topLevelPatterns.filter(p => {
// $FlowFixMe
return !workspaceLayout.getManifestByPattern(p);
});
for (const name of Object.keys(workspaceLayout.workspaces)) {
if (!workspaceLayout.workspaces[name].loc) {
continue;
}
const manifest = workspaceLayout.workspaces[name].manifest;
if (manifest) {
for (const dependencyType of constants.DEPENDENCY_TYPES) {
const dependencies = manifest[dependencyType];
if (!dependencies) {
continue;
}
for (const dep of Object.keys(dependencies)) {
result.topLevelPatterns.push(`${dep}@${dependencies[dep]}`);
}
}
}
}
}
result.topLevelPatterns.sort(sortAlpha);
if (flags.checkFiles) {
result.flags.push('checkFiles');
}
if (flags.flat) {
result.flags.push('flat');
}
if (this.config.ignoreScripts) {
result.flags.push('ignoreScripts');
}
if (this.config.focus) {
result.flags.push('focus: ' + this.config.focusedWorkspaceName);
}
if (this.config.production) {
result.flags.push('production');
}
if (this.config.plugnplayEnabled) {
result.flags.push('plugnplay');
}
const linkedModules = this.config.linkedModules;
if (linkedModules.length) {
result.linkedModules = linkedModules.sort(sortAlpha);
}
for (const key of Object.keys(lockfile)) {
result.lockfileEntries[key] = lockfile[key].resolved || '';
}
for (const modulesFolder of this._getModulesFolders({workspaceLayout})) {
if (await fs.exists(modulesFolder)) {
result.modulesFolders.push(path.relative(this.config.lockfileFolder, modulesFolder));
}
}
if (flags.checkFiles) {
const modulesRoot = this._getModulesRootFolder();
result.files = (await this._getIntegrityListing({workspaceLayout}))
.map(entry => path.relative(modulesRoot, entry))
.sort(sortAlpha);
}
return result;
}
async _getIntegrityFile(locationPath: string): Promise<?IntegrityFile> {
const expectedRaw = await fs.readFile(locationPath);
try {
return {
...INTEGRITY_FILE_DEFAULTS(),
...JSON.parse(expectedRaw),
};
} catch (e) {
// ignore JSON parsing for legacy text integrity files compatibility
}
return null;
}
_compareIntegrityFiles(
actual: IntegrityFile,
expected: ?IntegrityFile,
checkFiles: boolean,
workspaceLayout: ?WorkspaceLayout,
): 'OK' | IntegrityError {
if (!expected) {
return 'EXPECTED_IS_NOT_A_JSON';
}
if (!compareSortedArrays(actual.linkedModules, expected.linkedModules)) {
return 'LINKED_MODULES_DONT_MATCH';
}
if (actual.systemParams !== expected.systemParams) {
return 'SYSTEM_PARAMS_DONT_MATCH';
}
let relevantExpectedFlags = expected.flags.slice();
// If we run "yarn" after "yarn --check-files", we shouldn't fail the less strict validation
if (actual.flags.indexOf('checkFiles') === -1) {
relevantExpectedFlags = relevantExpectedFlags.filter(flag => flag !== 'checkFiles');
}
if (!compareSortedArrays(actual.flags, relevantExpectedFlags)) {
return 'FLAGS_DONT_MATCH';
}
if (!compareSortedArrays(actual.topLevelPatterns, expected.topLevelPatterns || [])) {
return 'PATTERNS_DONT_MATCH';
}
for (const key of Object.keys(actual.lockfileEntries)) {
if (actual.lockfileEntries[key] !== expected.lockfileEntries[key]) {
return 'LOCKFILE_DONT_MATCH';
}
}
for (const key of Object.keys(expected.lockfileEntries)) {
if (actual.lockfileEntries[key] !== expected.lockfileEntries[key]) {
return 'LOCKFILE_DONT_MATCH';
}
}
if (checkFiles) {
// Early bailout if we expect more files than what we have
if (expected.files.length > actual.files.length) {
return 'FILES_MISSING';
}
// Since we know the "files" array is sorted (alphabetically), we can optimize the thing
// Instead of storing the files in a Set, we can just iterate both arrays at once. O(n)!
for (let u = 0, v = 0; u < expected.files.length; ++u) {
// Index that, if reached, means that we won't have enough food to match the remaining expected entries anyway
const max = v + (actual.files.length - v) - (expected.files.length - u) + 1;
// Skip over files that have been added (ie not present in 'expected')
while (v < max && actual.files[v] !== expected.files[u]) {
v += 1;
}
// If we've reached the index defined above, the file is either missing or we can early exit
if (v === max) {
return 'FILES_MISSING';
}
}
}
return 'OK';
}
async check(
patterns: Array<string>,
lockfile: {[key: string]: LockManifest},
flags: IntegrityFlags,
workspaceLayout: ?WorkspaceLayout,
): Promise<IntegrityCheckResult> {
// check if patterns exist in lockfile
const missingPatterns = patterns.filter(
p => !lockfile[p] && (!workspaceLayout || !workspaceLayout.getManifestByPattern(p)),
);
const loc = await this._getIntegrityFileLocation();
if (missingPatterns.length || !loc.exists) {
return {
integrityFileMissing: !loc.exists,
missingPatterns,
};
}
const actual = await this._generateIntegrityFile(lockfile, patterns, flags, workspaceLayout);
const expected = await this._getIntegrityFile(loc.locationPath);
let integrityMatches = this._compareIntegrityFiles(actual, expected, flags.checkFiles, workspaceLayout);
if (integrityMatches === 'OK') {
invariant(expected, "The integrity shouldn't pass without integrity file");
for (const modulesFolder of expected.modulesFolders) {
if (!await fs.exists(path.join(this.config.lockfileFolder, modulesFolder))) {
integrityMatches = 'MODULES_FOLDERS_MISSING';
}
}
}
return {
integrityFileMissing: false,
integrityMatches: integrityMatches === 'OK',
integrityError: integrityMatches === 'OK' ? undefined : integrityMatches,
missingPatterns,
hardRefreshRequired: integrityMatches === 'SYSTEM_PARAMS_DONT_MATCH',
};
}
/**
* Get artifacts from integrity file if it exists.
*/
async getArtifacts(): Promise<?InstallArtifacts> {
const loc = await this._getIntegrityFileLocation();
if (!loc.exists) {
return null;
}
const expectedRaw = await fs.readFile(loc.locationPath);
let expected: ?IntegrityFile;
try {
expected = JSON.parse(expectedRaw);
} catch (e) {
// ignore JSON parsing for legacy text integrity files compatibility
}
return expected ? expected.artifacts : null;
}
/**
* Write the integrity hash of the current install to disk.
*/
async save(
patterns: Array<string>,
lockfile: {[key: string]: LockManifest},
flags: IntegrityFlags,
workspaceLayout: ?WorkspaceLayout,
artifacts: InstallArtifacts,
): Promise<void> {
const integrityFile = await this._generateIntegrityFile(lockfile, patterns, flags, workspaceLayout, artifacts);
const loc = await this._getIntegrityFileLocation();
invariant(loc.locationPath, 'expected integrity hash location');
await fs.mkdirp(path.dirname(loc.locationPath));
await fs.writeFile(loc.locationPath, JSON.stringify(integrityFile, null, 2));
}
async removeIntegrityFile(): Promise<void> {
const loc = await this._getIntegrityFileLocation();
if (loc.exists) {
await fs.unlink(loc.locationPath);
}
}
}