-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnagixsc_http2nagios.py
executable file
·260 lines (210 loc) · 7.66 KB
/
nagixsc_http2nagios.py
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#!/usr/bin/python
#
# Nag(ix)SC -- nagixsc_http2nagios.py
#
# Copyright (C) 2009-2010 Sven Velt <[email protected]>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import ConfigParser
import base64
import cgi
import optparse
import os
import re
import sys
try:
from hashlib import md5
except ImportError:
from md5 import md5
##############################################################################
from nagixsc import *
##############################################################################
parser = optparse.OptionParser()
parser.add_option('-c', '', dest='cfgfile', help='Config file')
parser.add_option('-d', '--daemon', action='store_true', dest='daemon', help='Daemonize, go to background')
parser.add_option('', '--nossl', action='store_true', dest='nossl', help='Disable SSL (overwrites config file)')
parser.set_defaults(cfgfile='http2nagios.cfg')
(options, args) = parser.parse_args()
cfgread = ConfigParser.SafeConfigParser()
cfgread.optionxform = str # We need case-sensitive options
cfg_list = cfgread.read(options.cfgfile)
if cfg_list == []:
print 'Config file "%s" could not be read!' % options.cfgfile
sys.exit(1)
config = {
'ip': '0.0.0.0',
'port': '15667',
'ssl': False,
'sslcert': None,
'conf_dir': '',
'pidfile': '/var/run/nagixsc_conf2http.pid',
'acl': False,
}
if 'ip' in cfgread.options('server'):
config['ip'] = cfgread.get('server', 'ip')
if 'port' in cfgread.options('server'):
config['port'] = cfgread.get('server', 'port')
try:
config['port'] = int(config['port'])
except ValueError:
print 'Port "%s" not an integer!' % config['port']
sys.exit(127)
if 'ssl' in cfgread.options('server'):
try:
config['ssl'] = cfgread.getboolean('server', 'ssl')
except ValueError:
print 'Value for "ssl" ("%s") not boolean!' % cfgread.get('server', 'ssl')
sys.exit(127)
if config['ssl']:
if 'sslcert' in cfgread.options('server'):
config['sslcert'] = cfgread.get('server', 'sslcert')
else:
print 'SSL but no certificate file specified!'
sys.exit(127)
try:
config['mode'] = cfgread.get('server', 'mode')
except ConfigParser.NoOptionError:
print 'No "mode" specified!'
sys.exit(127)
if config['mode']=='checkresult':
try:
config['checkresultdir'] = cfgread.get('mode_checkresult','dir')
except ConfigParser.NoOptionError:
print 'No "dir" in section "mode_checkresult" specified!'
sys.exit(127)
if os.access(config['checkresultdir'],os.W_OK) == False:
print 'Checkresult directory "%s" is not writable!' % config['checkresultdir']
sys.exit(1)
elif config['mode']=='passive':
try:
config['pipe'] = cfgread.get('mode_passive','pipe')
except ConfigParser.NoOptionError:
print 'No "pipe" in section "mode_passive" specified!'
sys.exit(127)
if os.access(config['pipe'],os.W_OK) == False:
print 'Nagios command pipe "%s" is not writable!' % config['pipe']
sys.exit(1)
else:
print 'Mode "%s" is neither "checkresult" nor "passive"!'
sys.exit(127)
acls = { 'a_hl':{}, 'a_hr':{}, }
if 'acl' in cfgread.options('server'):
try:
config['acl'] = cfgread.getboolean('server', 'acl')
except ValueError:
print 'Value for "acl" ("%s") not boolean!' % cfgread.get('server', 'acl')
sys.exit(127)
if config['acl']:
if cfgread.has_section('acl_allowed_hosts_list'):
for user in cfgread.options('acl_allowed_hosts_list'):
acls['a_hl'][user] = [ah.lstrip().rstrip() for ah in cfgread.get('acl_allowed_hosts_list',user).split(',')]
if cfgread.has_section('acl_allowed_hosts_re'):
for user in cfgread.options('acl_allowed_hosts_re'):
acls['a_hr'][user] = re.compile(cfgread.get('acl_allowed_hosts_re',user))
users = {}
for u in cfgread.options('users'):
users[u] = cfgread.get('users', u)
##############################################################################
class HTTP2NagiosHandler(MyHTTPRequestHandler):
def http_error(self, code, output):
self.send_response(code)
self.send_header('Content-Type', 'text/plain')
self.end_headers()
self.wfile.write(output)
return
def do_GET(self):
self.send_response(200)
self.send_header('Content-Type', 'text/html')
self.end_headers()
self.wfile.write(''' <html><body>
<form action="." method="post" enctype="multipart/form-data">
filename: <input type="file" name="xmlfile" /><br />
<input type="submit" />
</form>
</body></html>
''')
return
def do_POST(self):
# Check Basic Auth
try:
authdata = base64.b64decode(self.headers['Authorization'].split(' ')[1]).split(':')
if not users[authdata[0]] == md5(authdata[1]).hexdigest():
raise Exception
except:
self.send_response(401)
self.send_header('WWW-Authenticate', 'Basic realm="Nag(ix)SC HTTP Push"')
self.send_header('Content-Type', 'text/plain')
self.end_headers()
self.wfile.write('Sorry! No action without login!')
return
(ctype,pdict) = cgi.parse_header(self.headers.getheader('content-type'))
if ctype == 'multipart/form-data':
query = cgi.parse_multipart(self.rfile, pdict)
xmltext = query.get('xmlfile')[0]
if len(xmltext) > 0:
doc = read_xml_from_string(xmltext)
checks = xml_to_dict(doc)
if config['acl']:
new_checks = []
for check in checks:
if authdata[0] in acls['a_hl'] and check['host_name'] in acls['a_hl'][authdata[0]]:
new_checks.append(check)
elif authdata[0] in acls['a_hr'] and (acls['a_hr'][authdata[0]]).search(check['host_name']):
new_checks.append(check)
count_acl_failed = len(checks) - len(new_checks)
checks = new_checks
else:
count_acl_failed = None
if config['mode'] == 'checkresult':
(count_services, count_failed, list_failed) = dict2out_checkresult(checks, xml_get_timestamp(doc), config['checkresultdir'])
if count_failed < count_services:
self.send_response(200)
self.send_header('Content-Type', 'text/plain')
self.end_headers()
statusmsg = 'Wrote %s check results, %s failed' % (count_services, count_failed)
if count_acl_failed != None:
statusmsg += ' - %s check results failed ACL check' % count_acl_failed
self.wfile.write(statusmsg)
return
else:
self.http_error(501, 'Could not write all %s check results' % count_services)
return
elif config['mode'] == 'passive':
count_services = dict2out_passive(checks, xml_get_timestamp(doc), config['pipe'])
self.send_response(200)
self.send_header('Content-Type', 'text/plain')
self.end_headers()
self.wfile.write('Wrote %s check results' % count_services)
return
else:
self.http_error(502, 'Nag(IX)SC - No data received')
return
def main():
if options.nossl:
config['ssl'] = False
if config['ssl'] and not os.path.isfile(config['sslcert']):
print 'SSL certificate "%s" not found!' % config['sslcert']
sys.exit(127)
if options.daemon:
daemonize(pidfile=config['pidfile'])
else:
print 'curl -v -u nagixsc:nagixsc -F \'xmlfile=@xml/nagixsc.xml\' http://127.0.0.1:%s/\n\n' % config['port']
server = MyHTTPServer((config['ip'], config['port']), HTTP2NagiosHandler, ssl=config['ssl'], sslpemfile=config['sslcert'])
try:
server.serve_forever()
except:
server.socket.close()
if __name__ == '__main__':
main()