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
|
'use strict';
const common = require('../common');
const assert = require('assert');
if (common.isWindows) {
assert.strictEqual(process.geteuid, undefined);
assert.strictEqual(process.getegid, undefined);
assert.strictEqual(process.seteuid, undefined);
assert.strictEqual(process.setegid, undefined);
return;
}
if (!common.isMainThread)
return;
assert.throws(() => {
process.seteuid({});
}, {
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "id" argument must be one of type number or string. ' +
'Received an instance of Object'
});
assert.throws(() => {
process.seteuid('fhqwhgadshgnsdhjsdbkhsdabkfabkveyb');
}, {
code: 'ERR_UNKNOWN_CREDENTIAL',
message: 'User identifier does not exist: fhqwhgadshgnsdhjsdbkhsdabkfabkveyb'
});
// IBMi does not support below operations.
if (common.isIBMi)
return;
// If we're not running as super user...
if (process.getuid() !== 0) {
// Should not throw.
process.getegid();
process.geteuid();
assert.throws(() => {
process.setegid('nobody');
}, /(?:EPERM, .+|Group identifier does not exist: nobody)$/);
assert.throws(() => {
process.seteuid('nobody');
}, /^Error: (?:EPERM, .+|User identifier does not exist: nobody)$/);
return;
}
// If we are running as super user...
const oldgid = process.getegid();
try {
process.setegid('nobody');
} catch (err) {
if (err.message !== 'Group identifier does not exist: nobody') {
throw err;
} else {
process.setegid('nogroup');
}
}
const newgid = process.getegid();
assert.notStrictEqual(newgid, oldgid);
const olduid = process.geteuid();
process.seteuid('nobody');
const newuid = process.geteuid();
assert.notStrictEqual(newuid, olduid);
|