forked from cdnjs/cdnjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto-update.js
executable file
·284 lines (252 loc) · 9.32 KB
/
auto-update.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
#!/usr/bin/env node
var path = require("path"),
assert = require("assert"),
fs = require("fs-extra"),
glob = require("glob"),
_ = require('lodash'),
request = require("superagent"),
async = require("async"),
tarball = require('tarball-extract'),
colors = require('colors')
colors.setTheme({
prompt: 'cyan',
info: 'grey',
success: 'green',
warn: 'yellow',
error: 'red'
});
var newVersionCount = 0;
var parse = function (json_file, ignore_missing, ignore_parse_fail) {
var content;
try {
content = fs.readFileSync(json_file, 'utf8');
} catch (err1) {
if (!ignore_missing) {
assert.ok(0, json_file + " doesn't exist!");
}
return null;
}
try {
return JSON.parse(content);
} catch (err2) {
if (!ignore_parse_fail) {
//assert.ok(0, json_file + " failed to parse");
}
return null;
}
}
var reEscape = function(s){
return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
}
/**
* Check if an npmFileMap object contains any path which are not normalized, and thus could allow access to parent dirs
* @param pkg
* @returns {*}
*/
var isValidFileMap = function(pkg){
var isValidPath = function(p){
if(p !== null){ //don't allow parent dir access, or tricky paths
p = p.replace(/\/+/g, '/'); //dont penalize for consequtive path seperators
return p === path.normalize(p);
}
return false
};
if(pkg && pkg.npmFileMap){
return _.every(pkg.npmFileMap, function(fileSpec){
if(isValidPath(fileSpec.basePath || "/")){
return _.every(fileSpec.files, isValidPath);
}
return false;
});
}
return false
};
var error = function(msg, name){
var err = new Error(msg);
err.name = name;
console.log(msg.error);
return err;
}
error.PKG_NAME = 'BadPackageName'
error.FILE_PATH = 'BadFilePath'
/**
* returns a fucntion that takes N args, where each arg is a path that must not outside of libPath.
* returns true if all paths are within libPath, else false
*/
var isAllowedPathFn = function(libPath){ //is path within the lib dir? if not, they shouldnt be writing/reading there
libPath = path.normalize(libPath || "/");
return function(){
var paths = 1 <= arguments.length ? [].slice.call(arguments, 0) : [];
var re = new RegExp("^"+reEscape(libPath));
return _.every(paths, function(p) {
p = path.normalize(p);
return p.match(re);
});
}
};
var invalidNpmName = function(name){
return !!~name.indexOf(".."); //doesnt contain
}
/**
* Attempt to update the npmFileMap from extracted package.json, then using npmFileMap move required files to libPath/../
* If the npmFileMap tries to modify files outside of libPath, dont let it!
* @param pkg
* @param libPath = root folder for extracted lib
* @returns {Array} = array of security related errors triggered during operation.
*/
var processNewVersion = function(pkg, version){
//sometimes the tar is extracted to a dir that isnt called 'package' - get that dir via glob
var extractLibPath = glob.sync(getPackageTempPath(pkg, version)+"/*/")[0];
if(!extractLibPath){
//even more rarely, the tar doesnt seem to get extracted at all.. which is probably a bug in that lib.
var msg = pkg.npmName + "@" + version + " - never got extracted! This problem usually goes away on next run. Couldnt find extract dir here: " + getPackageTempPath(pkg, version);
console.log(msg.error);
return;
}
var libPath = getPackagePath(pkg, version)
var isAllowedPath = isAllowedPathFn(extractLibPath);
var newPath = path.join(libPath, 'package.json')
if(false && fs.existsSync(newPath)){ //turn this off for now
var newPkg = parse(newPath);
if(isValidFileMap(newPkg)){
pkg.npmFileMap = newPkg.npmFileMap;
}
}
var npmFileMap = pkg.npmFileMap;
var errors = [];
var updated = false;
_.each(npmFileMap, function(fileSpec) {
var basePath = fileSpec.basePath || "";
_.each(fileSpec.files, function(file) {
var libContentsPath = path.normalize(path.join(extractLibPath, basePath));
if(!isAllowedPath(libContentsPath)){
errors.push(error(pkg.npmName+" contains a malicious file path: "+libContentsPath, error.FILE_PATH));
return
}
var files = glob.sync(path.join(libContentsPath, file));
var copyPath = path.join(libPath, basePath)
if(files.length == 0){
//usually old versions have this problem
var msg = (pkg.npmName + "@" + version + " - couldnt find file in npmFileMap.") + (" Doesnt exist: " + path.join(libContentsPath, file)).info;
console.log(msg);
}
_.each(files, function(extractFilePath) {
if(extractFilePath.match(/(dependencies|\.zip\s*$)/i)){
return;
}
var copyPart = path.relative(libContentsPath, extractFilePath);
var copyPath = path.join(libPath, copyPart)
fs.mkdirsSync(path.dirname(copyPath))
fs.renameSync(extractFilePath, copyPath);
updated = true;
});
});
});
if(updated){
newVersionCount++;
var libPatha =path.normalize(path.join(__dirname, 'ajax', 'libs', pkg.name, 'package.json'));
console.log('------------'.red, libPatha.green);
pkg.version = version;
fs.writeFileSync(libPatha, JSON.stringify(pkg, null, 2) + '\n', 'utf8');
}
return errors;
}
var getPackageTempPath = function(pkg, version){
return path.normalize(path.join(__dirname, 'temp', pkg.name, version))
}
var getPackagePath = function(pkg, version){
return path.normalize(path.join(__dirname, 'ajax', 'libs', pkg.name, version));
}
/**
* download and extract a tarball for a single npm version, get the files in npmFileMap and delete the rest
* @param pkg
* @param tarballUrl
* @param version
* @param cb
* @returns {*}
*/
var updateLibraryVersion = function(pkg, tarballUrl, version, cb) {
if(invalidNpmName(pkg.name)){
return cb(error(pkg.npmName+" has a malicious package name:"+ pkg.name, error.PKG_NAME));
}
var extractLibPath = getPackageTempPath(pkg, version);
var libPath = getPackagePath(pkg, version);
if(!fs.existsSync(libPath)) {
fs.mkdirsSync(extractLibPath);
var url = tarballUrl;
var downloadFile = path.join(extractLibPath, 'dist.tar.gz');
tarball.extractTarballDownload(url , downloadFile, extractLibPath, {}, function(err, result) {
if(fs.existsSync(downloadFile)){
processNewVersion(pkg, version);
var msg = "Do not have version " + version + " of " + pkg.npmName;
console.log(msg.warn);
} else {
var msg = "error downloading " + version + " of " + pkg.npmName + " it didnt exist: " + result + err;
console.log(msg.error);
}
cb()
});
} else {
cb()
}
};
/**
* grab all versions of a lib that has an 'npmFileMap' and 'npmName' in its package.json
* @param pkg
* @param tarballUrl
* @param cb
*/
var updateLibrary = function (pkg, cb) {
if(!isValidFileMap(pkg)){
var msg = pkg.npmName.error + " has a malicious npmFileMap";
console.log(msg.warn);
return cb(null);
}
var msg = 'Checking versions for ' + pkg.npmName;
console.log(msg.prompt);
request.get('http://registry.npmjs.org/' + pkg.npmName, function(result) {
async.eachLimit(_.pairs(result.body.versions), maxWorker, function(p, cb){
var data = p[1];
var version = p[0];
updateLibraryVersion(pkg, data.dist.tarball, version, cb)
}, function(err){
var msg = 'Library finished' + (err ? ' ' + err.error : '');
console.log(msg);
cb(null);
});
});
}
exports.run = function(){
fs.removeSync(path.join(__dirname, 'temp'))
process.on('uncaughtException', function(){
fs.removeSync(path.join(__dirname, 'temp'))
})
console.log('Looking for npm enabled libraries...');
// load up those files
var packages = glob.sync("./ajax/libs/*/package.json");
packages = _(packages).map(function (pkg) {
var parsedPkg = parse(pkg);
return (parsedPkg.npmName && parsedPkg.npmFileMap) ? parsedPkg : null;
}).compact().value();
var msg = 'Found ' + packages.length + ' npm enabled libraries';
console.log(msg.prompt);
async.eachLimit(packages, maxWorker, updateLibrary, function(err) {
var msg = 'Auto Update Completed - ' + newVersionCount + ' versions were updated';
console.log(msg.prompt);
fs.removeSync(path.join(__dirname, 'temp'))
});
}
exports.updateLibrary = updateLibrary;
exports.updateLibraryVersion = updateLibraryVersion;
exports.processNewVersion = processNewVersion;
exports.error = error;
exports.isAllowedPathFn = isAllowedPathFn;
exports.isValidFileMap = isValidFileMap;
exports.invalidNpmName = invalidNpmName;
var args = process.argv.slice(2);
if(args.length > 0 && args[0] == 'run'){
maxWorker = (args[1] == 'serial') ? 1 : 8;
exports.run()
} else {
console.log('to start, pass the "run" arg'.prompt)
}