2017-01-03 21:16:48 +00:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2014-11-22 15:59:48 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-12-15 19:13:12 +00:00
|
|
|
const { safeGetenv } = internalBinding('credentials');
|
2018-10-14 23:41:32 +00:00
|
|
|
const constants = internalBinding('constants').os;
|
2017-10-07 14:50:42 +00:00
|
|
|
const { deprecate } = require('internal/util');
|
2015-01-21 16:36:59 +00:00
|
|
|
const isWindows = process.platform === 'win32';
|
2010-12-11 08:49:38 +00:00
|
|
|
|
2018-08-19 04:57:41 +00:00
|
|
|
const { codes: { ERR_SYSTEM_ERROR } } = require('internal/errors');
|
2018-08-19 04:34:17 +00:00
|
|
|
const { validateInt32 } = require('internal/validators');
|
2017-10-27 23:27:16 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
const {
|
|
|
|
getCPUs,
|
|
|
|
getFreeMem,
|
2017-10-27 23:27:16 +00:00
|
|
|
getHomeDirectory: _getHomeDirectory,
|
|
|
|
getHostname: _getHostname,
|
|
|
|
getInterfaceAddresses: _getInterfaceAddresses,
|
2017-04-25 21:48:32 +00:00
|
|
|
getLoadAvg,
|
2017-10-27 23:27:16 +00:00
|
|
|
getOSRelease: _getOSRelease,
|
|
|
|
getOSType: _getOSType,
|
2018-08-19 04:34:17 +00:00
|
|
|
getPriority: _getPriority,
|
2017-04-25 21:48:32 +00:00
|
|
|
getTotalMem,
|
2018-08-30 13:55:11 +00:00
|
|
|
getUserInfo,
|
2017-04-25 21:48:32 +00:00
|
|
|
getUptime,
|
2018-08-19 04:34:17 +00:00
|
|
|
isBigEndian,
|
|
|
|
setPriority: _setPriority
|
2017-04-25 21:48:32 +00:00
|
|
|
} = process.binding('os');
|
|
|
|
|
2017-10-27 23:27:16 +00:00
|
|
|
function getCheckedFunction(fn) {
|
|
|
|
return function checkError(...args) {
|
|
|
|
const ctx = {};
|
|
|
|
const ret = fn(...args, ctx);
|
|
|
|
if (ret === undefined) {
|
2018-03-20 16:46:30 +00:00
|
|
|
const err = new ERR_SYSTEM_ERROR(ctx);
|
2017-10-27 23:27:16 +00:00
|
|
|
Error.captureStackTrace(err, checkError);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const getHomeDirectory = getCheckedFunction(_getHomeDirectory);
|
|
|
|
const getHostname = getCheckedFunction(_getHostname);
|
|
|
|
const getInterfaceAddresses = getCheckedFunction(_getInterfaceAddresses);
|
|
|
|
const getOSRelease = getCheckedFunction(_getOSRelease);
|
|
|
|
const getOSType = getCheckedFunction(_getOSType);
|
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
getFreeMem[Symbol.toPrimitive] = () => getFreeMem();
|
|
|
|
getHostname[Symbol.toPrimitive] = () => getHostname();
|
|
|
|
getHomeDirectory[Symbol.toPrimitive] = () => getHomeDirectory();
|
|
|
|
getOSRelease[Symbol.toPrimitive] = () => getOSRelease();
|
|
|
|
getOSType[Symbol.toPrimitive] = () => getOSType();
|
|
|
|
getTotalMem[Symbol.toPrimitive] = () => getTotalMem();
|
|
|
|
getUptime[Symbol.toPrimitive] = () => getUptime();
|
|
|
|
|
|
|
|
const kEndianness = isBigEndian ? 'BE' : 'LE';
|
|
|
|
|
|
|
|
const tmpDirDeprecationMsg =
|
|
|
|
'os.tmpDir() is deprecated. Use os.tmpdir() instead.';
|
|
|
|
|
|
|
|
const getNetworkInterfacesDepMsg =
|
|
|
|
'os.getNetworkInterfaces is deprecated. Use os.networkInterfaces instead.';
|
2015-05-25 15:01:42 +00:00
|
|
|
|
2017-02-23 08:22:01 +00:00
|
|
|
const avgValues = new Float64Array(3);
|
2017-04-25 21:48:32 +00:00
|
|
|
|
|
|
|
function loadavg() {
|
2017-02-23 08:22:01 +00:00
|
|
|
getLoadAvg(avgValues);
|
|
|
|
return [avgValues[0], avgValues[1], avgValues[2]];
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
2017-02-23 08:22:01 +00:00
|
|
|
|
2018-11-09 04:22:30 +00:00
|
|
|
function cpus() {
|
|
|
|
const data = getCPUs();
|
|
|
|
const result = [];
|
|
|
|
for (var i = 0; i < data.length; i += 7) {
|
|
|
|
result.push({
|
|
|
|
model: data[i],
|
|
|
|
speed: data[i + 1],
|
2017-02-26 04:40:39 +00:00
|
|
|
times: {
|
2018-11-09 04:22:30 +00:00
|
|
|
user: data[i + 2],
|
|
|
|
nice: data[i + 3],
|
|
|
|
sys: data[i + 4],
|
|
|
|
idle: data[i + 5],
|
|
|
|
irq: data[i + 6]
|
2017-02-26 04:40:39 +00:00
|
|
|
}
|
2018-11-09 04:22:30 +00:00
|
|
|
});
|
2017-02-26 04:40:39 +00:00
|
|
|
}
|
2018-11-09 04:22:30 +00:00
|
|
|
return result;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
2012-06-13 02:05:51 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function arch() {
|
2011-04-27 03:02:54 +00:00
|
|
|
return process.arch;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
|
|
|
arch[Symbol.toPrimitive] = () => process.arch;
|
2012-06-13 02:05:51 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function platform() {
|
2011-04-27 03:02:54 +00:00
|
|
|
return process.platform;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
|
|
|
platform[Symbol.toPrimitive] = () => process.platform;
|
2011-11-01 16:23:17 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function tmpdir() {
|
2015-02-06 22:27:22 +00:00
|
|
|
var path;
|
2013-03-19 06:58:44 +00:00
|
|
|
if (isWindows) {
|
2015-02-06 22:27:22 +00:00
|
|
|
path = process.env.TEMP ||
|
2013-03-19 06:58:44 +00:00
|
|
|
process.env.TMP ||
|
2013-03-28 20:19:08 +00:00
|
|
|
(process.env.SystemRoot || process.env.windir) + '\\temp';
|
2016-03-17 04:23:52 +00:00
|
|
|
if (path.length > 1 && path.endsWith('\\') && !path.endsWith(':\\'))
|
|
|
|
path = path.slice(0, -1);
|
2013-03-19 06:58:44 +00:00
|
|
|
} else {
|
2018-02-01 16:13:35 +00:00
|
|
|
path = safeGetenv('TMPDIR') ||
|
|
|
|
safeGetenv('TMP') ||
|
|
|
|
safeGetenv('TEMP') ||
|
2013-03-19 06:58:44 +00:00
|
|
|
'/tmp';
|
2016-03-17 04:23:52 +00:00
|
|
|
if (path.length > 1 && path.endsWith('/'))
|
|
|
|
path = path.slice(0, -1);
|
2013-03-19 06:58:44 +00:00
|
|
|
}
|
2016-03-17 04:23:52 +00:00
|
|
|
|
2015-02-06 22:27:22 +00:00
|
|
|
return path;
|
2017-04-25 21:48:32 +00:00
|
|
|
}
|
|
|
|
tmpdir[Symbol.toPrimitive] = () => tmpdir();
|
2012-06-13 02:05:51 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
function endianness() {
|
|
|
|
return kEndianness;
|
|
|
|
}
|
|
|
|
endianness[Symbol.toPrimitive] = () => kEndianness;
|
2013-01-29 16:27:33 +00:00
|
|
|
|
2018-08-16 12:31:04 +00:00
|
|
|
// Returns the number of ones in the binary representation of the decimal
|
|
|
|
// number.
|
|
|
|
function countBinaryOnes(n) {
|
|
|
|
let count = 0;
|
|
|
|
// Remove one "1" bit from n until n is the power of 2. This iterates k times
|
|
|
|
// while k is the number of "1" in the binary representation.
|
|
|
|
// For more check https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators
|
|
|
|
while (n !== 0) {
|
|
|
|
n = n & (n - 1);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCIDR({ address, netmask, family }) {
|
|
|
|
let ones = 0;
|
|
|
|
let split = '.';
|
|
|
|
let range = 10;
|
|
|
|
let groupLength = 8;
|
|
|
|
let hasZeros = false;
|
|
|
|
|
|
|
|
if (family === 'IPv6') {
|
|
|
|
split = ':';
|
|
|
|
range = 16;
|
|
|
|
groupLength = 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
const parts = netmask.split(split);
|
|
|
|
for (var i = 0; i < parts.length; i++) {
|
|
|
|
if (parts[i] !== '') {
|
|
|
|
const binary = parseInt(parts[i], range);
|
|
|
|
const tmp = countBinaryOnes(binary);
|
|
|
|
ones += tmp;
|
|
|
|
if (hasZeros) {
|
|
|
|
if (tmp !== 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} else if (tmp !== groupLength) {
|
|
|
|
if ((binary & 1) !== 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
hasZeros = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return `${address}/${ones}`;
|
|
|
|
}
|
|
|
|
|
2017-07-16 15:51:44 +00:00
|
|
|
function networkInterfaces() {
|
|
|
|
const interfaceAddresses = getInterfaceAddresses();
|
|
|
|
|
2018-08-16 12:31:04 +00:00
|
|
|
const keys = Object.keys(interfaceAddresses);
|
|
|
|
for (var i = 0; i < keys.length; i++) {
|
|
|
|
const arr = interfaceAddresses[keys[i]];
|
|
|
|
for (var j = 0; j < arr.length; j++) {
|
|
|
|
arr[j].cidr = getCIDR(arr[j]);
|
|
|
|
}
|
|
|
|
}
|
2017-07-16 15:51:44 +00:00
|
|
|
|
2018-08-16 12:31:04 +00:00
|
|
|
return interfaceAddresses;
|
2017-07-16 15:51:44 +00:00
|
|
|
}
|
|
|
|
|
2018-08-19 04:34:17 +00:00
|
|
|
function setPriority(pid, priority) {
|
|
|
|
if (priority === undefined) {
|
|
|
|
priority = pid;
|
|
|
|
pid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
validateInt32(pid, 'pid');
|
|
|
|
validateInt32(priority, 'priority', -20, 19);
|
|
|
|
|
|
|
|
const ctx = {};
|
|
|
|
|
|
|
|
if (_setPriority(pid, priority, ctx) !== 0)
|
|
|
|
throw new ERR_SYSTEM_ERROR(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPriority(pid) {
|
|
|
|
if (pid === undefined)
|
|
|
|
pid = 0;
|
|
|
|
else
|
|
|
|
validateInt32(pid, 'pid');
|
|
|
|
|
|
|
|
const ctx = {};
|
|
|
|
const priority = _getPriority(pid, ctx);
|
|
|
|
|
|
|
|
if (priority === undefined)
|
|
|
|
throw new ERR_SYSTEM_ERROR(ctx);
|
|
|
|
|
|
|
|
return priority;
|
|
|
|
}
|
|
|
|
|
2018-08-30 13:55:11 +00:00
|
|
|
function userInfo(options) {
|
|
|
|
if (typeof options !== 'object')
|
|
|
|
options = null;
|
|
|
|
|
|
|
|
const ctx = {};
|
|
|
|
const user = getUserInfo(options, ctx);
|
|
|
|
|
|
|
|
if (user === undefined)
|
|
|
|
throw new ERR_SYSTEM_ERROR(ctx);
|
|
|
|
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
2018-04-19 08:45:25 +00:00
|
|
|
module.exports = {
|
2017-04-25 21:48:32 +00:00
|
|
|
arch,
|
|
|
|
cpus,
|
|
|
|
endianness,
|
|
|
|
freemem: getFreeMem,
|
2018-08-19 04:34:17 +00:00
|
|
|
getPriority,
|
2017-04-25 21:48:32 +00:00
|
|
|
homedir: getHomeDirectory,
|
|
|
|
hostname: getHostname,
|
|
|
|
loadavg,
|
2017-07-16 15:51:44 +00:00
|
|
|
networkInterfaces,
|
2017-04-25 21:48:32 +00:00
|
|
|
platform,
|
|
|
|
release: getOSRelease,
|
2018-08-19 04:34:17 +00:00
|
|
|
setPriority,
|
2017-04-25 21:48:32 +00:00
|
|
|
tmpdir,
|
|
|
|
totalmem: getTotalMem,
|
|
|
|
type: getOSType,
|
2018-08-30 13:55:11 +00:00
|
|
|
userInfo,
|
2017-04-25 21:48:32 +00:00
|
|
|
uptime: getUptime,
|
2012-04-12 08:29:15 +00:00
|
|
|
|
2017-04-25 21:48:32 +00:00
|
|
|
// Deprecated APIs
|
|
|
|
getNetworkInterfaces: deprecate(getInterfaceAddresses,
|
|
|
|
getNetworkInterfacesDepMsg,
|
|
|
|
'DEP0023'),
|
|
|
|
tmpDir: deprecate(tmpdir, tmpDirDeprecationMsg, 'DEP0022')
|
|
|
|
};
|
2014-11-10 23:40:58 +00:00
|
|
|
|
2017-08-17 03:52:30 +00:00
|
|
|
Object.defineProperties(module.exports, {
|
|
|
|
constants: {
|
|
|
|
configurable: false,
|
|
|
|
enumerable: true,
|
|
|
|
value: constants
|
|
|
|
},
|
|
|
|
|
|
|
|
EOL: {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
writable: false,
|
|
|
|
value: isWindows ? '\r\n' : '\n'
|
|
|
|
}
|
2017-04-25 21:48:32 +00:00
|
|
|
});
|