-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.js
573 lines (465 loc) · 14.3 KB
/
index.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
const fs = require('fs')
const util = require('util')
const childProcess = require('child_process')
const path = require('path')
const debug = require('debug')('regedit')
const errors = require('./errors.js')
const StreamSlicer = require('stream-slicer')
const through2 = require('through2')
const helper = require('./lib/helper.js')
const execFile = require('./lib/execFile.js')()
const cscript = require('./lib/cscript.js')
/*
* Access the registry without using a specific os architecture, this means that on a 32bit process on a 64bit machine
* when we access hklm\software we will actually be accessing hklm\software\wow6432node.
*/
const OS_ARCH_AGNOSTIC = 'A'
/*
* Access the registry using a specific os architecture, but determine what the architecture is automatically
* This means that accessing in order to access the 32bit software registry on a 64bit machine we will need to
* use the key hklm\software\wow6432node
*/
const OS_ARCH_SPECIFIC = 'S'
/*
* Access the registry using 32bit os architecture
*/
const OS_ARCH_32BIT = '32'
/*
* Access the registry using 64bit os architecture, this will have no effect on 32bit process/machines
*/
const OS_ARCH_64BIT = '64'
/*
* If this value is set the module will change directory of the VBS to the appropriate location instead of the local VBS folder
*/
let externalVBSFolderLocation
function handleErrorsAndClose(child, callback) {
let error
child.once('error', function(e) {
debug('process error %s', e)
error = e
})
child.once('close', function(code) {
debug('process exit with code %d', code)
if (error) {
if (error.code in errors) {
return callback(errors[error.code])
}
return callback(error)
}
if (code !== 0) {
if (code in errors) {
return callback(errors[code])
}
return callback(new Error('vbscript process reported unknown error code ' + code))
}
callback()
})
}
function execute(args, callback) {
if (typeof callback !== 'function') {
throw new Error('missing callback')
}
debug(args)
cscript.init(function(err) {
if (err) {
return callback(err)
}
childProcess.execFile(cscript.path(), args, function(err, stdout, stderr) {
if (err) {
if (stdout) {
console.log(stdout)
}
if (stderr) {
console.error(stderr)
}
if (err.code in errors) {
return callback(errors[err.code])
}
return callback(err)
}
// in case we have stuff in stderr but no real error
if (stderr) {
return callback(new Error(stderr))
}
if (!stdout) {
return callback()
}
debug(stdout)
let result
err = null
try {
result = JSON.parse(stdout)
} catch (e) {
e.stdout = stdout
err = e
}
callback(err, result)
})
})
}
function spawnEx(args, keys, callback) {
cscript.init(function(err) {
if (err) {
return callback(err)
}
debug(args)
const child = execFile(cscript.path(), args, { encoding: 'utf8' })
handleErrorsAndClose(child, callback)
helper.writeArrayToStream(keys, child.stdin)
})
}
//TODO: move to helper.js?
function renderValueByType(value, type) {
type = type.toUpperCase()
switch (type) {
case 'REG_NONE':
if (value === '') {
return '\0'
}
return value
case 'REG_BINARY':
if (!util.isArray(value)) {
throw new Error('invalid value type ' + typeof(value) + ' for registry type REG_BINARY, please use an array of numbers')
}
return value.join(',')
case 'REG_MULTI_SZ':
if (!util.isArray(value)) {
throw new Error('invalid value type ' + typeof(value) + ' for registry type REG_BINARY, please use an array of strings')
}
return value.join(',')
case 'REG_SZ':
if (value === '') {
return '\0'
}
return value
default:
return value
}
}
//TODO: move to helper.js?
function baseCommand(cmd, arch) {
let scriptPath
// test undefined, null and empty string
if (externalVBSFolderLocation && typeof(externalVBSFolderLocation) === 'string') {
scriptPath = externalVBSFolderLocation
} else {
scriptPath = path.join(__dirname, 'vbs')
}
return ['//Nologo', path.join(scriptPath, cmd), arch]
}
//TODO: move to helper.js?
function toCommandArgs(cmd, arch, keys) {
let result = baseCommand(cmd, arch)
if (typeof keys === 'string') {
result.push(keys)
} else if (util.isArray(keys)) {
result = result.concat(keys)
} else {
debug('creating command without using keys %s', keys ? keys : '')
}
return result
}
module.exports.setExternalVBSLocation = function(newLocation) {
if (fs.existsSync(newLocation)) {
externalVBSFolderLocation = newLocation
return 'Folder found and set'
}
return 'Folder not found'
}
module.exports.list = function(keys, architecture, callback) {
//console.log('list with callback will be deprecated in future versions, use list streaming interface')
if (architecture === undefined) {
callback = undefined
architecture = OS_ARCH_AGNOSTIC
} else if (typeof architecture === 'function') {
callback = architecture
architecture = OS_ARCH_AGNOSTIC
}
if (typeof keys === 'string') {
keys = [keys]
}
if (typeof callback === 'function') {
execute(toCommandArgs('regList.wsf', architecture, keys), callback)
return
}
const outputStream = through2.obj(helper.vbsOutputTransform)
cscript.init(function(err) {
if (err) {
return outputStream.emit('error', err)
}
const args = baseCommand('regListStream.wsf', architecture)
const child = execFile(cscript.path(), args, { encoding: 'utf8' }, function(err) {
if (err) {
outputStream.emit('error', err)
}
})
child.stderr.pipe(process.stderr)
const slicer = new StreamSlicer({ sliceBy: helper.WIN_EOL })
child.stdout.pipe(slicer).pipe(outputStream)
helper.writeArrayToStream(keys, child.stdin)
})
return outputStream
}
module.exports.createKey = function(keys, architecture, callback) {
if (typeof architecture === 'function') {
callback = architecture
architecture = OS_ARCH_AGNOSTIC
}
if (typeof keys === 'string') {
keys = [keys]
}
const args = baseCommand('regCreateKey.wsf', architecture)
spawnEx(args, keys, callback)
}
module.exports.deleteKey = function(keys, architecture, callback) {
if (typeof architecture === 'function') {
callback = architecture
architecture = OS_ARCH_AGNOSTIC
}
if (typeof keys === 'string') {
keys = [keys]
}
const args = baseCommand('regDeleteKey.wsf', architecture)
spawnEx(args, keys, callback)
}
module.exports.deleteValue = function(keys, architecture, callback) {
if (typeof architecture === 'function') {
callback = architecture
architecture = OS_ARCH_AGNOSTIC
}
if (typeof keys === 'string') {
keys = [keys]
}
var args = baseCommand('regDeleteValue.wsf', architecture)
spawnEx(args, keys, callback)
}
module.exports.putValue = function(map, architecture, callback) {
if (typeof architecture === 'function') {
callback = architecture
architecture = OS_ARCH_AGNOSTIC
}
const args = baseCommand('regPutValue.wsf', architecture)
let values = []
for (const key in map) {
if (map.hasOwnProperty(key)) {
const keyValues = map[key]
for (const valueName in keyValues) {
if (keyValues.hasOwnProperty(valueName)) {
const entry = keyValues[valueName]
// helper writes the array to the stream in reversed order
values.push(entry.type)
values.push(renderValueByType(entry.value, entry.type))
values.push(valueName)
values.push(key)
}
}
}
}
spawnEx(args, values, callback)
}
module.exports.listUnexpandedValues = function(valuePaths, architecture, callback) {
if (architecture === undefined) {
callback = undefined
architecture = OS_ARCH_AGNOSTIC
} else if (typeof architecture === 'function') {
callback = architecture
architecture = OS_ARCH_AGNOSTIC
}
if (typeof valuePaths === 'string') {
valuePaths = [valuePaths]
}
if (typeof callback === 'function') {
execute(toCommandArgs('wsRegReadList.wsf', architecture, valuePaths), callback)
return
}
const outputStream = through2.obj(helper.vbsOutputTransform)
cscript.init(function(err) {
if (err) {
return outputStream.emit('error', err)
}
const args = baseCommand('wsRegReadListStream.wsf', architecture)
const child = execFile(cscript.path(), args, { encoding: 'utf8' }, function(err) {
if (err) {
outputStream.emit('error', err)
}
})
child.stderr.pipe(process.stderr)
const slicer = new StreamSlicer({ sliceBy: helper.WIN_EOL })
child.stdout.pipe(slicer).pipe(outputStream)
helper.writeArrayToStream(valuePaths, child.stdin)
})
return outputStream
}
module.exports.promisified = {
list: function(keys, architecture = OS_ARCH_AGNOSTIC) {
return new Promise(function(resolve, reject) {
module.exports.list(keys, architecture, function(err, res) {
if (err) {
return reject(err)
}
return resolve(res)
})
})
},
listUnexpandedValues: function(valuePaths, architecture = OS_ARCH_AGNOSTIC) {
return new Promise(function(resolve, reject) {
module.exports.listUnexpandedValues(valuePaths, architecture, function(err, res) {
if (err) {
return reject(err)
}
return resolve(res)
})
})
},
createKey: function(keys, architecture = OS_ARCH_AGNOSTIC) {
return new Promise(function(resolve, reject) {
module.exports.createKey(keys, architecture, function(err) {
if (err) {
return reject(err)
}
return resolve()
})
})
},
deleteKey: function(keys, architecture = OS_ARCH_AGNOSTIC) {
return new Promise(function(resolve, reject) {
module.exports.deleteKey(keys, architecture, function(err) {
if (err) {
return reject(err)
}
return resolve()
})
})
},
deleteValue: function(keys, architecture = OS_ARCH_AGNOSTIC) {
return new Promise(function(resolve, reject) {
module.exports.deleteValue(keys, architecture, function(err) {
if (err) {
return reject(err)
}
return resolve()
})
})
},
putValue: function(map, architecture = OS_ARCH_AGNOSTIC) {
return new Promise(function(resolve, reject) {
module.exports.putValue(map, architecture, function(err) {
if (err) {
return reject(err)
}
return resolve()
})
})
},
}
module.exports.arch = {}
module.exports.arch.list = function(keys, callback) {
return module.exports.list(keys, OS_ARCH_SPECIFIC, callback)
}
module.exports.arch.list32 = function(keys, callback) {
return module.exports.list(keys, OS_ARCH_32BIT, callback)
}
module.exports.arch.list64 = function(keys, callback) {
return module.exports.list(keys, OS_ARCH_64BIT, callback)
}
module.exports.arch.listUnexpandedValues = function(valuePaths, callback) {
return module.exports.listUnexpandedValues(valuePaths, OS_ARCH_SPECIFIC, callback)
}
module.exports.arch.listUnexpandedValues32 = function(valuePaths, callback) {
return module.exports.listUnexpandedValues(valuePaths, OS_ARCH_32BIT, callback)
}
module.exports.arch.listUnexpandedValues64 = function(valuePaths, callback) {
return module.exports.listUnexpandedValues(valuePaths, OS_ARCH_64BIT, callback)
}
module.exports.arch.createKey = function(keys, callback) {
return module.exports.createKey(keys, OS_ARCH_SPECIFIC, callback)
}
module.exports.arch.createKey32 = function(keys, callback) {
return module.exports.createKey(keys, OS_ARCH_32BIT, callback)
}
module.exports.arch.createKey64 = function(keys, callback) {
return module.exports.createKey(keys, OS_ARCH_64BIT, callback)
}
module.exports.arch.deleteKey = function(keys, callback) {
return module.exports.deleteKey(keys, OS_ARCH_SPECIFIC, callback)
}
module.exports.arch.deleteKey32 = function(keys, callback) {
return module.exports.deleteKey(keys, OS_ARCH_32BIT, callback)
}
module.exports.arch.deleteKey64 = function(keys, callback) {
return module.exports.deleteKey(keys, OS_ARCH_64BIT, callback)
}
module.exports.arch.deleteValue = function(keys, callback) {
return module.exports.deleteValue(keys, OS_ARCH_SPECIFIC, callback)
}
module.exports.arch.deleteValue32 = function(keys, callback) {
return module.exports.deleteValue(keys, OS_ARCH_32BIT, callback)
}
module.exports.arch.deleteValue64 = function(keys, callback) {
return module.exports.deleteValue(keys, OS_ARCH_64BIT, callback)
}
module.exports.arch.putValue = function(keys, callback) {
return module.exports.putValue(keys, OS_ARCH_SPECIFIC, callback)
}
module.exports.arch.putValue32 = function(keys, callback) {
return module.exports.putValue(keys, OS_ARCH_32BIT, callback)
}
module.exports.arch.putValue64 = function(keys, callback) {
return module.exports.putValue(keys, OS_ARCH_64BIT, callback)
}
module.exports.arch.promisified = {
list: function(keys) {
return module.exports.promisified.list(keys, OS_ARCH_SPECIFIC)
},
list32: function(keys) {
return module.exports.promisified.list(keys, OS_ARCH_32BIT)
},
list64: function(keys) {
return module.exports.promisified.list(keys, OS_ARCH_64BIT)
},
listUnexpandedValues: function(valuePaths) {
return module.exports.promisified.listUnexpandedValues(valuePaths, OS_ARCH_SPECIFIC)
},
listUnexpandedValues32: function(valuePaths) {
return module.exports.promisified.listUnexpandedValues(valuePaths, OS_ARCH_32BIT)
},
listUnexpandedValues64: function(valuePaths) {
return module.exports.promisified.listUnexpandedValues(valuePaths, OS_ARCH_64BIT)
},
createKey: function(keys) {
return module.exports.promisified.createKey(keys, OS_ARCH_SPECIFIC)
},
createKey32: function(keys) {
return module.exports.promisified.createKey(keys, OS_ARCH_32BIT)
},
createKey64: function(keys) {
return module.exports.promisified.createKey(keys, OS_ARCH_64BIT)
},
deleteKey: function(keys) {
return module.exports.promisified.deleteKey(keys, OS_ARCH_SPECIFIC)
},
deleteKey32: function(keys) {
return module.exports.promisified.deleteKey(keys, OS_ARCH_32BIT)
},
deleteKey64: function(keys) {
return module.exports.promisified.deleteKey(keys, OS_ARCH_64BIT)
},
deleteValue: function(keys) {
return module.exports.promisified.deleteValue(keys, OS_ARCH_SPECIFIC)
},
deleteValue32: function(keys) {
return module.exports.promisified.deleteValue(keys, OS_ARCH_32BIT)
},
deleteValue64: function(keys) {
return module.exports.promisified.deleteValue(keys, OS_ARCH_64BIT)
},
putValue: function(keys) {
return module.exports.promisified.putValue(keys, OS_ARCH_SPECIFIC)
},
putValue32: function(keys) {
return module.exports.promisified.putValue(keys, OS_ARCH_32BIT)
},
putValue64: function(keys) {
return module.exports.promisified.putValue(keys, OS_ARCH_64BIT)
},
}