Merge branch 'master' of https://github.com/Ylianst/MeshCentral
This commit is contained in:
commit
e442d74782
|
@ -3760,7 +3760,87 @@ function sendAgentMessage(msg, icon) {
|
||||||
sendAgentMessage.messages[sendAgentMessage.nextid++] = { msg: msg, icon: icon };
|
sendAgentMessage.messages[sendAgentMessage.nextid++] = { msg: msg, icon: icon };
|
||||||
require('MeshAgent').SendCommand({ action: 'sessions', type: 'msg', value: sendAgentMessage.messages });
|
require('MeshAgent').SendCommand({ action: 'sessions', type: 'msg', value: sendAgentMessage.messages });
|
||||||
}
|
}
|
||||||
|
function getOpenDescriptors()
|
||||||
|
{
|
||||||
|
switch (process.platform)
|
||||||
|
{
|
||||||
|
case "freebsd":
|
||||||
|
var child = require('child_process').execFile('/bin/sh', ['sh']);
|
||||||
|
child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
|
||||||
|
child.stderr.on('data', function (c) { });
|
||||||
|
|
||||||
|
child.stdin.write("procstat -f " + process.pid + " | tr '\\n' '`' | awk -F'`' '");
|
||||||
|
child.stdin.write('{');
|
||||||
|
child.stdin.write(' DEL="";');
|
||||||
|
child.stdin.write(' printf "[";');
|
||||||
|
child.stdin.write(' for(i=1;i<NF;++i)');
|
||||||
|
child.stdin.write(' {');
|
||||||
|
child.stdin.write(' A=split($i,B," ");');
|
||||||
|
child.stdin.write(' if(B[3] ~ /^[0-9]/)');
|
||||||
|
child.stdin.write(' {');
|
||||||
|
child.stdin.write(' printf "%s%s", DEL, B[3];');
|
||||||
|
child.stdin.write(' DEL=",";');
|
||||||
|
child.stdin.write(' }');
|
||||||
|
child.stdin.write(' }');
|
||||||
|
child.stdin.write(' printf "]";');
|
||||||
|
child.stdin.write("}'");
|
||||||
|
|
||||||
|
child.stdin.write('\nexit\n');
|
||||||
|
child.waitExit();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return (JSON.parse(child.stdout.str.trim()));
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
return ([]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "linux":
|
||||||
|
var child = require('child_process').execFile('/bin/sh', ['sh']);
|
||||||
|
child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
|
||||||
|
child.stderr.on('data', function (c) { });
|
||||||
|
|
||||||
|
child.stdin.write("ls /proc/" + process.pid + "/fd | tr '\\n' '`' | awk -F'`' '");
|
||||||
|
child.stdin.write('{');
|
||||||
|
child.stdin.write(' printf "[";');
|
||||||
|
child.stdin.write(' DEL="";');
|
||||||
|
child.stdin.write(' for(i=1;i<NF;++i)');
|
||||||
|
child.stdin.write(' {');
|
||||||
|
child.stdin.write(' printf "%s%s",DEL,$i;');
|
||||||
|
child.stdin.write(' DEL=",";');
|
||||||
|
child.stdin.write(' }');
|
||||||
|
child.stdin.write(' printf "]";');
|
||||||
|
child.stdin.write("}'");
|
||||||
|
child.stdin.write('\nexit\n');
|
||||||
|
child.waitExit();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return (JSON.parse(child.stdout.str.trim()));
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
return ([]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return ([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function closeDescriptors(libc, descriptors)
|
||||||
|
{
|
||||||
|
var fd = null;
|
||||||
|
while (descriptors.length > 0)
|
||||||
|
{
|
||||||
|
fd = descriptors.pop();
|
||||||
|
if (fd > 2)
|
||||||
|
{
|
||||||
|
libc.close(fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
function linux_execv(name, agentfilename, sessionid) {
|
function linux_execv(name, agentfilename, sessionid) {
|
||||||
var libs = require('monitor-info').getLibInfo('libc');
|
var libs = require('monitor-info').getLibInfo('libc');
|
||||||
var libc = null;
|
var libc = null;
|
||||||
|
@ -3778,6 +3858,7 @@ function linux_execv(name, agentfilename, sessionid) {
|
||||||
if (libc != null) {
|
if (libc != null) {
|
||||||
try {
|
try {
|
||||||
libc.CreateMethod('execv');
|
libc.CreateMethod('execv');
|
||||||
|
libc.CreateMethod('close');
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
libc = null;
|
libc = null;
|
||||||
|
@ -3803,7 +3884,7 @@ function linux_execv(name, agentfilename, sessionid) {
|
||||||
|
|
||||||
var i;
|
var i;
|
||||||
var args;
|
var args;
|
||||||
var argarr = [];
|
var argarr = [process.execPath];
|
||||||
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
||||||
|
|
||||||
if (require('MeshAgent').getStartupOptions != null) {
|
if (require('MeshAgent').getStartupOptions != null) {
|
||||||
|
@ -3819,6 +3900,9 @@ function linux_execv(name, agentfilename, sessionid) {
|
||||||
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var descriptors = getOpenDescriptors();
|
||||||
|
closeDescriptors(libc, descriptors);
|
||||||
|
|
||||||
libc.execv(path, args);
|
libc.execv(path, args);
|
||||||
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
||||||
sendAgentMessage('Self Update failed because execv() failed', 3);
|
sendAgentMessage('Self Update failed because execv() failed', 3);
|
||||||
|
@ -3849,6 +3933,7 @@ function bsd_execv(name, agentfilename, sessionid) {
|
||||||
try {
|
try {
|
||||||
libc = require('_GenericMarshal').CreateNativeProxy(child.stdout.str.trim());
|
libc = require('_GenericMarshal').CreateNativeProxy(child.stdout.str.trim());
|
||||||
libc.CreateMethod('execv');
|
libc.CreateMethod('execv');
|
||||||
|
libc.CreateMethod('close');
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
if (sessionid != null) { sendConsoleText('Self Update failed: ' + e.toString(), sessionid) }
|
if (sessionid != null) { sendConsoleText('Self Update failed: ' + e.toString(), sessionid) }
|
||||||
|
@ -3858,7 +3943,7 @@ function bsd_execv(name, agentfilename, sessionid) {
|
||||||
|
|
||||||
var i;
|
var i;
|
||||||
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
||||||
var argarr = [];
|
var argarr = [process.execPath];
|
||||||
var args;
|
var args;
|
||||||
var options = require('MeshAgent').getStartupOptions();
|
var options = require('MeshAgent').getStartupOptions();
|
||||||
for (i in options) {
|
for (i in options) {
|
||||||
|
@ -3870,7 +3955,11 @@ function bsd_execv(name, agentfilename, sessionid) {
|
||||||
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sessionid != null) { sendConsoleText('Restarting service via service-manager', sessionid) }
|
if (sessionid != null) { sendConsoleText('Restarting service via execv()', sessionid) }
|
||||||
|
|
||||||
|
var descriptors = getOpenDescriptors();
|
||||||
|
closeDescriptors(libc, descriptors);
|
||||||
|
|
||||||
libc.execv(path, args);
|
libc.execv(path, args);
|
||||||
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
||||||
sendAgentMessage('Self Update failed because execv() failed', 3);
|
sendAgentMessage('Self Update failed because execv() failed', 3);
|
||||||
|
|
|
@ -71,6 +71,77 @@ function MeshServerLogEx(id, args, msg, state) {
|
||||||
require('MeshAgent').SendCommand(msg);
|
require('MeshAgent').SendCommand(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getOpenDescriptors()
|
||||||
|
{
|
||||||
|
switch(process.platform)
|
||||||
|
{
|
||||||
|
case "freebsd":
|
||||||
|
var child = require('child_process').execFile('/bin/sh', ['sh']);
|
||||||
|
child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
|
||||||
|
child.stderr.on('data', function (c) { });
|
||||||
|
|
||||||
|
child.stdin.write("procstat -f " + process.pid + " | tr '\\n' '`' | awk -F'`' '");
|
||||||
|
child.stdin.write('{');
|
||||||
|
child.stdin.write(' DEL="";');
|
||||||
|
child.stdin.write(' printf "[";');
|
||||||
|
child.stdin.write(' for(i=1;i<NF;++i)');
|
||||||
|
child.stdin.write(' {');
|
||||||
|
child.stdin.write(' A=split($i,B," ");');
|
||||||
|
child.stdin.write(' if(B[3] ~ /^[0-9]/)');
|
||||||
|
child.stdin.write(' {');
|
||||||
|
child.stdin.write(' printf "%s%s", DEL, B[3];');
|
||||||
|
child.stdin.write(' DEL=",";');
|
||||||
|
child.stdin.write(' }');
|
||||||
|
child.stdin.write(' }');
|
||||||
|
child.stdin.write(' printf "]";');
|
||||||
|
child.stdin.write("}'");
|
||||||
|
|
||||||
|
child.stdin.write('\nexit\n');
|
||||||
|
child.waitExit();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return(JSON.parse(child.stdout.str.trim()));
|
||||||
|
}
|
||||||
|
catch(e)
|
||||||
|
{
|
||||||
|
return ([]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "linux":
|
||||||
|
var child = require('child_process').execFile('/bin/sh', ['sh']);
|
||||||
|
child.stdout.str = ''; child.stdout.on('data', function (c) { this.str += c.toString(); });
|
||||||
|
child.stderr.on('data', function (c) { });
|
||||||
|
|
||||||
|
child.stdin.write("ls /proc/" + process.pid + "/fd | tr '\\n' '`' | awk -F'`' '");
|
||||||
|
child.stdin.write('{');
|
||||||
|
child.stdin.write(' printf "[";');
|
||||||
|
child.stdin.write(' DEL="";');
|
||||||
|
child.stdin.write(' for(i=1;i<NF;++i)');
|
||||||
|
child.stdin.write(' {');
|
||||||
|
child.stdin.write(' printf "%s%s",DEL,$i;');
|
||||||
|
child.stdin.write(' DEL=",";');
|
||||||
|
child.stdin.write(' }');
|
||||||
|
child.stdin.write(' printf "]";');
|
||||||
|
child.stdin.write("}'");
|
||||||
|
child.stdin.write('\nexit\n');
|
||||||
|
child.waitExit();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return (JSON.parse(child.stdout.str.trim()));
|
||||||
|
}
|
||||||
|
catch (e)
|
||||||
|
{
|
||||||
|
return ([]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return ([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function pathjoin() {
|
function pathjoin() {
|
||||||
var x = [];
|
var x = [];
|
||||||
for (var i in arguments) {
|
for (var i in arguments) {
|
||||||
|
@ -89,6 +160,20 @@ function pathjoin() {
|
||||||
// Replace a string with a number if the string is an exact number
|
// Replace a string with a number if the string is an exact number
|
||||||
function toNumberIfNumber(x) { if ((typeof x == 'string') && (+parseInt(x) === x)) { x = parseInt(x); } return x; }
|
function toNumberIfNumber(x) { if ((typeof x == 'string') && (+parseInt(x) === x)) { x = parseInt(x); } return x; }
|
||||||
|
|
||||||
|
|
||||||
|
function closeDescriptors(libc, descriptors)
|
||||||
|
{
|
||||||
|
var fd = null;
|
||||||
|
while(descriptors.length>0)
|
||||||
|
{
|
||||||
|
fd = descriptors.pop();
|
||||||
|
if(fd > 2)
|
||||||
|
{
|
||||||
|
libc.close(fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function linux_execv(name, agentfilename, sessionid) {
|
function linux_execv(name, agentfilename, sessionid) {
|
||||||
var libs = require('monitor-info').getLibInfo('libc');
|
var libs = require('monitor-info').getLibInfo('libc');
|
||||||
var libc = null;
|
var libc = null;
|
||||||
|
@ -104,8 +189,10 @@ function linux_execv(name, agentfilename, sessionid) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (libc != null) {
|
if (libc != null) {
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
libc.CreateMethod('execv');
|
libc.CreateMethod('execv');
|
||||||
|
libc.CreateMethod('close');
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
libc = null;
|
libc = null;
|
||||||
|
@ -131,7 +218,7 @@ function linux_execv(name, agentfilename, sessionid) {
|
||||||
|
|
||||||
var i;
|
var i;
|
||||||
var args;
|
var args;
|
||||||
var argarr = [];
|
var argarr = [process.execPath];
|
||||||
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
||||||
|
|
||||||
if (require('MeshAgent').getStartupOptions != null) {
|
if (require('MeshAgent').getStartupOptions != null) {
|
||||||
|
@ -147,6 +234,9 @@ function linux_execv(name, agentfilename, sessionid) {
|
||||||
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var descriptors = getOpenDescriptors();
|
||||||
|
closeDescriptors(libc, descriptors);
|
||||||
|
|
||||||
libc.execv(path, args);
|
libc.execv(path, args);
|
||||||
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
||||||
sendAgentMessage('Self Update failed because execv() failed', 3);
|
sendAgentMessage('Self Update failed because execv() failed', 3);
|
||||||
|
@ -174,9 +264,11 @@ function bsd_execv(name, agentfilename, sessionid) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var libc = null;
|
var libc = null;
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
libc = require('_GenericMarshal').CreateNativeProxy(child.stdout.str.trim());
|
libc = require('_GenericMarshal').CreateNativeProxy(child.stdout.str.trim());
|
||||||
libc.CreateMethod('execv');
|
libc.CreateMethod('execv');
|
||||||
|
libc.CreateMethod('close');
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
if (sessionid != null) { sendConsoleText('Self Update failed: ' + e.toString(), sessionid) }
|
if (sessionid != null) { sendConsoleText('Self Update failed: ' + e.toString(), sessionid) }
|
||||||
|
@ -186,7 +278,7 @@ function bsd_execv(name, agentfilename, sessionid) {
|
||||||
|
|
||||||
var i;
|
var i;
|
||||||
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
var path = require('_GenericMarshal').CreateVariable(process.execPath);
|
||||||
var argarr = [];
|
var argarr = [process.execPath];
|
||||||
var args;
|
var args;
|
||||||
var options = require('MeshAgent').getStartupOptions();
|
var options = require('MeshAgent').getStartupOptions();
|
||||||
for (i in options) {
|
for (i in options) {
|
||||||
|
@ -198,7 +290,11 @@ function bsd_execv(name, agentfilename, sessionid) {
|
||||||
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sessionid != null) { sendConsoleText('Restarting service via service-manager', sessionid) }
|
if (sessionid != null) { sendConsoleText('Restarting service via execv()', sessionid) }
|
||||||
|
|
||||||
|
var descriptors = getOpenDescriptors();
|
||||||
|
closeDescriptors(libc, descriptors);
|
||||||
|
|
||||||
libc.execv(path, args);
|
libc.execv(path, args);
|
||||||
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) }
|
||||||
sendAgentMessage('Self Update failed because execv() failed', 3);
|
sendAgentMessage('Self Update failed because execv() failed', 3);
|
||||||
|
@ -905,6 +1001,9 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
|
||||||
case 'help':
|
case 'help':
|
||||||
response = "Available commands are: agentupdate, dbkeys, dbget, dbset, dbcompact, eval, netinfo, osinfo, setdebug, versions.";
|
response = "Available commands are: agentupdate, dbkeys, dbget, dbset, dbcompact, eval, netinfo, osinfo, setdebug, versions.";
|
||||||
break;
|
break;
|
||||||
|
case '_descriptors':
|
||||||
|
response = 'Open Descriptors: ' + JSON.stringify(getOpenDescriptors());
|
||||||
|
break;
|
||||||
case 'versions':
|
case 'versions':
|
||||||
response = JSON.stringify(process.versions, null, ' ');
|
response = JSON.stringify(process.versions, null, ' ');
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue