Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 13x 13x 13x 13x 13x 13x 1x 1x 13x 24x 24x 9x 9x 10x 10x 1x 1x 1x 1x 1x 1x 9x 24x 24x 96x 20x 20x 18x 18x 20x 8x 8x 96x 96x 24x 24x 50x 15x 50x 20x 20x 50x 24x 24x 24x 24x 24x 24x 24x 24x 24x 24x 9x 9x 9x 9x 9x 525x 525x 525x 525x 525x 525x 9x 4448x 4448x 4442x 4442x 4444x 4448x 9x 15321x 15321x 15321x 15308x 15321x | 'use strict'; const credentials = internalBinding('credentials'); const rawMethods = internalBinding('process_methods'); process.abort = rawMethods.abort; process.umask = wrappedUmask; process.chdir = wrappedChdir; process.cwd = wrappedCwd; if (credentials.implementsPosixCredentials) { const wrapped = wrapPosixCredentialSetters(credentials); process.initgroups = wrapped.initgroups; process.setgroups = wrapped.setgroups; process.setegid = wrapped.setegid; process.seteuid = wrapped.seteuid; process.setgid = wrapped.setgid; process.setuid = wrapped.setuid; } // ---- keep the attachment of the wrappers above so that it's easier to ---- // ---- compare the setups side-by-side ----- const { parseFileMode, validateArray, validateString } = require('internal/validators'); function wrapPosixCredentialSetters(credentials) { const { codes: { ERR_INVALID_ARG_TYPE, ERR_UNKNOWN_CREDENTIAL } } = require('internal/errors'); const { validateUint32 } = require('internal/validators'); const { initgroups: _initgroups, setgroups: _setgroups, setegid: _setegid, seteuid: _seteuid, setgid: _setgid, setuid: _setuid } = credentials; function initgroups(user, extraGroup) { validateId(user, 'user'); validateId(extraGroup, 'extraGroup'); // Result is 0 on success, 1 if user is unknown, 2 if group is unknown. const result = _initgroups(user, extraGroup); if (result === 1) { throw new ERR_UNKNOWN_CREDENTIAL('User', user); } else if (result === 2) { throw new ERR_UNKNOWN_CREDENTIAL('Group', extraGroup); } } function setgroups(groups) { validateArray(groups, 'groups'); for (let i = 0; i < groups.length; i++) { validateId(groups[i], `groups[${i}]`); } // Result is 0 on success. A positive integer indicates that the // corresponding group was not found. const result = _setgroups(groups); if (result > 0) { throw new ERR_UNKNOWN_CREDENTIAL('Group', groups[result - 1]); } } function wrapIdSetter(type, method) { return function(id) { validateId(id, 'id'); if (typeof id === 'number') id >>>= 0; // Result is 0 on success, 1 if credential is unknown. const result = method(id); if (result === 1) { throw new ERR_UNKNOWN_CREDENTIAL(type, id); } }; } function validateId(id, name) { if (typeof id === 'number') { validateUint32(id, name); } else if (typeof id !== 'string') { throw new ERR_INVALID_ARG_TYPE(name, ['number', 'string'], id); } } return { initgroups, setgroups, setegid: wrapIdSetter('Group', _setegid), seteuid: wrapIdSetter('User', _seteuid), setgid: wrapIdSetter('Group', _setgid), setuid: wrapIdSetter('User', _setuid) }; } // Cache the working directory to prevent lots of lookups. If the working // directory is changed by `chdir`, it'll be updated. let cachedCwd = ''; function wrappedChdir(directory) { validateString(directory, 'directory'); rawMethods.chdir(directory); // Mark cache that it requires an update. cachedCwd = ''; } function wrappedUmask(mask) { if (mask !== undefined) { mask = parseFileMode(mask, 'mask'); } return rawMethods.umask(mask); } function wrappedCwd() { if (cachedCwd === '') cachedCwd = rawMethods.cwd(); return cachedCwd; } |