-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_local_exec.lua
118 lines (99 loc) · 2.73 KB
/
check_local_exec.lua
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
--
-- Copyright (c) 2009, Cloudkick, Inc.
-- All right reserved.
--
module(..., package.seeall);
local io = require 'io'
local util = require 'util'
local Check = util.Check
local log = util.log
local structs = require 'structs'
local function command(cmd, no_lf)
local t = assert(io.open(cmd))
t:close()
local f = io.popen(cmd..' 2>&1; echo "-retcode:$?"' ,'r')
local l = f:read '*a'
f:close()
local i1,i2,ret = l:find('%-retcode:(%d+)\n$')
if no_lf and i1 > 1 then i1 = i1 - 1 end
l = l:sub(1,i1-1)
return l,tonumber(ret)
end
local function equus_exec_call_win32(args)
local escaped = {}
local i
local v
for i,v in ipairs(args) do
escaped[i] = '"' .. string.gsub(v, '"', '\\"') .. '"'
end
cmd = table.concat(escaped, " ")
return equus_exec_call_win32_core(cmd)
end
local function getvalue(args)
local p,rc
local rv = 0
local plugins_path = conf.local_plugins_path
local c = plugins_path .. args.check
log.dbg("Custom plugin is %s", tostring(c))
if args.args ~= nil then
log.dbg("Custom plugin args: %s", tostring(args.args))
local cmd = util.cmd_to_table(c, args.args)
if equus.p_is_windows() == 1 then
p,rc = equus_exec_call_win32(cmd)
else
p,rc = equus_exec_call_unix_core(cmd)
end
else
if equus.p_is_windows() == 1 then
p,rc = equus_exec_call_win32_core('"' .. c .. '"')
else
if equus_exec_call_unix_core ~= nil then
local cmd = {}
table.insert(cmd, c)
p,rc = equus_exec_call_unix_core(cmd)
else
p,rc = command(c)
end
end
end
return p,rc
end
function run(rcheck, args)
if args.check == nil then
error("Invalid check name")
end
if type(args.check) == "table" then
args.check = args.check[1]
end
if type(args.args) == "table" then
args.args = args.args[1]
end
if type(args.args) ~= "string" then
args.args = nil
end
if type(args.args) == "string" and args.args:len() == 0 then
args.args = nil
end
if args.args ~= nil then
if equus.p_is_windows() == 1 and equus_exec_call_win32_core == nil then
rcheck:set_error("Custom arguments require a newer agent version.")
return rcheck
end
if equus.p_is_windows() == 0 and equus_exec_call_unix_core == nil then
rcheck:set_error("Custom arguments require a newer agent version.")
return rcheck
end
end
local rv, r, rc = pcall(getvalue, args)
log.dbg("Custom plugin output: %s", tostring(r))
if rv and rc == 0 then
rcheck.output = r
else
if rc ~= 0 and rc ~= nil then
r = string.format("exit code: %d output: %s", rc, tostring(r))
end
log.err("err from custom plugin: %s", tostring(r))
rcheck:set_error("%s", tostring(r))
end
return rcheck
end