219
224
+ (self.interval.microseconds
221
interval = property(lambda self: self._interval,
227
self.IntervalChanged(self._interval_milliseconds)
228
interval = property(lambda self: self._interval, _set_interval)
223
229
del _set_interval
224
def __init__(self, name = None, stop_hook=None, config={}):
231
def __init__(self, name = None, stop_hook=None, config=None):
225
232
"""Note: the 'checker' key in 'config' sets the
226
233
'checker_command' attribute and *not* the 'checker'
235
dbus.service.Object.__init__(self, bus,
237
% name.replace(".", "_"))
229
241
logger.debug(u"Creating client %r", self.name)
230
242
# Uppercase and remove spaces from fingerprint for later
231
243
# comparison purposes with return value from the fingerprint()
233
self.fingerprint = config["fingerprint"].upper()\
245
self.fingerprint = (config["fingerprint"].upper()
235
247
logger.debug(u" Fingerprint: %s", self.fingerprint)
236
248
if "secret" in config:
237
249
self.secret = config["secret"].decode(u"base64")
238
250
elif "secfile" in config:
239
sf = open(config["secfile"])
240
self.secret = sf.read()
251
with closing(open(os.path.expanduser
253
(config["secfile"])))) as secfile:
254
self.secret = secfile.read()
243
256
raise TypeError(u"No secret or secfile for client %s"
245
258
self.host = config.get("host", "")
246
self.created = datetime.datetime.now()
259
self.created = datetime.datetime.utcnow()
247
261
self.last_checked_ok = None
248
262
self.timeout = string_to_delta(config["timeout"])
249
263
self.interval = string_to_delta(config["interval"])
253
267
self.stop_initiator_tag = None
254
268
self.checker_callback_tag = None
255
269
self.check_command = config["checker"]
257
272
"""Start this client's checker and timeout hooks"""
273
self.started = datetime.datetime.utcnow()
258
274
# Schedule a new checker to be started an 'interval' from now,
259
275
# and every interval from then on.
260
self.checker_initiator_tag = gobject.timeout_add\
261
(self._interval_milliseconds,
276
self.checker_initiator_tag = (gobject.timeout_add
277
(self._interval_milliseconds,
263
279
# Also start a new checker *right now*.
264
280
self.start_checker()
265
281
# Schedule a stop() when 'timeout' has passed
266
self.stop_initiator_tag = gobject.timeout_add\
267
(self._timeout_milliseconds,
282
self.stop_initiator_tag = (gobject.timeout_add
283
(self._timeout_milliseconds,
286
self.StateChanged(True)
271
The possibility that a client might be restarted is left open,
272
but not currently used."""
273
# If this client doesn't have a secret, it is already stopped.
274
if hasattr(self, "secret") and self.secret:
289
"""Stop this client."""
290
if getattr(self, "started", None) is not None:
275
291
logger.info(u"Stopping client %s", self.name)
279
294
if getattr(self, "stop_initiator_tag", False):
285
300
self.stop_checker()
286
301
if self.stop_hook:
287
302
self.stop_hook(self)
305
self.StateChanged(False)
288
306
# Do not run this again if called by a gobject.timeout_add
290
309
def __del__(self):
291
310
self.stop_hook = None
293
313
def checker_callback(self, pid, condition):
294
314
"""The checker has completed, so take appropriate actions."""
295
now = datetime.datetime.now()
296
315
self.checker_callback_tag = None
297
316
self.checker = None
298
if os.WIFEXITED(condition) \
299
and (os.WEXITSTATUS(condition) == 0):
317
if (os.WIFEXITED(condition)
318
and (os.WEXITSTATUS(condition) == 0)):
300
319
logger.info(u"Checker for %(name)s succeeded",
302
self.last_checked_ok = now
303
gobject.source_remove(self.stop_initiator_tag)
304
self.stop_initiator_tag = gobject.timeout_add\
305
(self._timeout_milliseconds,
322
self.CheckerCompleted(True)
307
324
elif not os.WIFEXITED(condition):
308
325
logger.warning(u"Checker for %(name)s crashed?",
328
self.CheckerCompleted(False)
311
330
logger.info(u"Checker for %(name)s failed",
333
self.CheckerCompleted(False)
335
def bump_timeout(self):
336
"""Bump up the timeout for this client.
337
This should only be called when the client has been seen,
340
self.last_checked_ok = datetime.datetime.utcnow()
341
gobject.source_remove(self.stop_initiator_tag)
342
self.stop_initiator_tag = (gobject.timeout_add
343
(self._timeout_milliseconds,
313
346
def start_checker(self):
314
347
"""Start a new checker subprocess if one is not running.
315
348
If a checker already exists, leave it running and do
372
408
if error.errno != errno.ESRCH: # No such process
374
410
self.checker = None
375
412
def still_valid(self):
376
413
"""Has the timeout not yet passed for this client?"""
377
now = datetime.datetime.now()
416
now = datetime.datetime.utcnow()
378
417
if self.last_checked_ok is None:
379
418
return now < (self.created + self.timeout)
381
420
return now < (self.last_checked_ok + self.timeout)
422
## D-Bus methods & signals
423
_interface = u"org.mandos_system.Mandos.Client"
425
def _datetime_to_dbus_struct(dt):
426
return dbus.Struct(dt.year, dt.month, dt.day, dt.hour,
427
dt.minute, dt.second, dt.microsecond,
430
# BumpTimeout - method
431
BumpTimeout = dbus.service.method(_interface)(bump_timeout)
432
BumpTimeout.__name__ = "BumpTimeout"
434
# IntervalChanged - signal
435
@dbus.service.signal(_interface, signature="t")
436
def IntervalChanged(self, t):
440
# CheckerCompleted - signal
441
@dbus.service.signal(_interface, signature="b")
442
def CheckerCompleted(self, success):
446
# CheckerIsRunning - method
447
@dbus.service.method(_interface, out_signature="b")
448
def CheckerIsRunning(self):
449
"D-Bus getter method"
450
return self.checker is not None
452
# CheckerStarted - signal
453
@dbus.service.signal(_interface, signature="s")
454
def CheckerStarted(self, command):
458
# GetChecker - method
459
@dbus.service.method(_interface, out_signature="s")
460
def GetChecker(self):
461
"D-Bus getter method"
462
return self.checker_command
464
# GetCreated - method
465
@dbus.service.method(_interface, out_signature="(nyyyyyu)")
466
def GetCreated(self):
467
"D-Bus getter method"
468
return datetime_to_dbus_struct(self.created)
470
# GetFingerprint - method
471
@dbus.service.method(_interface, out_signature="s")
472
def GetFingerprint(self):
473
"D-Bus getter method"
474
return self.fingerprint
477
@dbus.service.method(_interface, out_signature="s")
479
"D-Bus getter method"
482
# GetInterval - method
483
@dbus.service.method(_interface, out_signature="t")
484
def GetInterval(self):
485
"D-Bus getter method"
486
return self._interval_milliseconds
489
@dbus.service.method(_interface, out_signature="s")
491
"D-Bus getter method"
494
# GetStarted - method
495
@dbus.service.method(_interface, out_signature="(nyyyyyu)")
496
def GetStarted(self):
497
"D-Bus getter method"
498
if self.started is not None:
499
return datetime_to_dbus_struct(self.started)
501
return dbus.Struct(0, 0, 0, 0, 0, 0, 0,
504
# GetTimeout - method
505
@dbus.service.method(_interface, out_signature="t")
506
def GetTimeout(self):
507
"D-Bus getter method"
508
return self._timeout_milliseconds
510
# SetChecker - method
511
@dbus.service.method(_interface, in_signature="s")
512
def SetChecker(self, checker):
513
"D-Bus setter method"
514
self.checker_command = checker
517
@dbus.service.method(_interface, in_signature="s")
518
def SetHost(self, host):
519
"D-Bus setter method"
522
# SetInterval - method
523
@dbus.service.method(_interface, in_signature="t")
524
def SetInterval(self, milliseconds):
525
self.interval = datetime.timdeelta(0, 0, 0, milliseconds)
527
# SetTimeout - method
528
@dbus.service.method(_interface, in_signature="t")
529
def SetTimeout(self, milliseconds):
530
self.timeout = datetime.timedelta(0, 0, 0, milliseconds)
533
@dbus.service.method(_interface, in_signature="ay",
535
def SetSecret(self, secret):
536
"D-Bus setter method"
537
self.secret = str(secret)
540
Start = dbus.service.method(_interface)(start)
541
Start.__name__ = "Start"
543
# StartChecker - method
544
StartChecker = dbus.service.method(_interface)(start_checker)
545
StartChecker.__name__ = "StartChecker"
547
# StateChanged - signal
548
@dbus.service.signal(_interface, signature="b")
549
def StateChanged(self, started):
553
# StillValid - method
554
StillValid = (dbus.service.method(_interface, out_signature="b")
556
StillValid.__name__ = "StillValid"
559
Stop = dbus.service.method(_interface)(stop)
560
Stop.__name__ = "Stop"
562
# StopChecker - method
563
StopChecker = dbus.service.method(_interface)(stop_checker)
564
StopChecker.__name__ = "StopChecker"
566
# TimeoutChanged - signal
567
@dbus.service.signal(_interface, signature="t")
568
def TimeoutChanged(self, t):
572
del _datetime_to_dbus_struct
384
576
def peer_certificate(session):
385
577
"Return the peer's OpenPGP certificate as a bytestring"
386
578
# If not an OpenPGP certificate...
387
if gnutls.library.functions.gnutls_certificate_type_get\
388
(session._c_object) \
389
!= gnutls.library.constants.GNUTLS_CRT_OPENPGP:
579
if (gnutls.library.functions
580
.gnutls_certificate_type_get(session._c_object)
581
!= gnutls.library.constants.GNUTLS_CRT_OPENPGP):
390
582
# ...do the normal thing
391
583
return session.peer_certificate
392
584
list_size = ctypes.c_uint()
393
cert_list = gnutls.library.functions.gnutls_certificate_get_peers\
394
(session._c_object, ctypes.byref(list_size))
585
cert_list = (gnutls.library.functions
586
.gnutls_certificate_get_peers
587
(session._c_object, ctypes.byref(list_size)))
395
588
if list_size.value == 0:
397
590
cert = cert_list[0]
401
594
def fingerprint(openpgp):
402
595
"Convert an OpenPGP bytestring to a hexdigit fingerprint string"
403
596
# New GnuTLS "datum" with the OpenPGP public key
404
datum = gnutls.library.types.gnutls_datum_t\
405
(ctypes.cast(ctypes.c_char_p(openpgp),
406
ctypes.POINTER(ctypes.c_ubyte)),
407
ctypes.c_uint(len(openpgp)))
597
datum = (gnutls.library.types
598
.gnutls_datum_t(ctypes.cast(ctypes.c_char_p(openpgp),
601
ctypes.c_uint(len(openpgp))))
408
602
# New empty GnuTLS certificate
409
603
crt = gnutls.library.types.gnutls_openpgp_crt_t()
410
gnutls.library.functions.gnutls_openpgp_crt_init\
604
(gnutls.library.functions
605
.gnutls_openpgp_crt_init(ctypes.byref(crt)))
412
606
# Import the OpenPGP public key into the certificate
413
gnutls.library.functions.gnutls_openpgp_crt_import\
414
(crt, ctypes.byref(datum),
415
gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
607
(gnutls.library.functions
608
.gnutls_openpgp_crt_import(crt, ctypes.byref(datum),
609
gnutls.library.constants
610
.GNUTLS_OPENPGP_FMT_RAW))
416
611
# Verify the self signature in the key
417
crtverify = ctypes.c_uint();
418
gnutls.library.functions.gnutls_openpgp_crt_verify_self\
419
(crt, 0, ctypes.byref(crtverify))
612
crtverify = ctypes.c_uint()
613
(gnutls.library.functions
614
.gnutls_openpgp_crt_verify_self(crt, 0, ctypes.byref(crtverify)))
420
615
if crtverify.value != 0:
421
616
gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
422
617
raise gnutls.errors.CertificateSecurityError("Verify failed")
423
618
# New buffer for the fingerprint
424
buffer = ctypes.create_string_buffer(20)
425
buffer_length = ctypes.c_size_t()
619
buf = ctypes.create_string_buffer(20)
620
buf_len = ctypes.c_size_t()
426
621
# Get the fingerprint from the certificate into the buffer
427
gnutls.library.functions.gnutls_openpgp_crt_get_fingerprint\
428
(crt, ctypes.byref(buffer), ctypes.byref(buffer_length))
622
(gnutls.library.functions
623
.gnutls_openpgp_crt_get_fingerprint(crt, ctypes.byref(buf),
624
ctypes.byref(buf_len)))
429
625
# Deinit the certificate
430
626
gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
431
627
# Convert the buffer to a Python bytestring
432
fpr = ctypes.string_at(buffer, buffer_length.value)
628
fpr = ctypes.string_at(buf, buf_len.value)
433
629
# Convert the bytestring to hexadecimal notation
434
630
hex_fpr = u''.join(u"%02X" % ord(char) for char in fpr)
438
class tcp_handler(SocketServer.BaseRequestHandler, object):
634
class TCP_handler(SocketServer.BaseRequestHandler, object):
439
635
"""A TCP request handler class.
440
636
Instantiated by IPv6_TCPServer for each request to handle it.
441
637
Note: This will run in its own forked process."""
443
639
def handle(self):
444
640
logger.info(u"TCP connection from: %s",
445
unicode(self.client_address))
446
session = gnutls.connection.ClientSession\
447
(self.request, gnutls.connection.X509Credentials())
641
unicode(self.client_address))
642
session = (gnutls.connection
643
.ClientSession(self.request,
449
647
line = self.request.makefile().readline()
450
648
logger.debug(u"Protocol version: %r", line)
758
959
client_config.read(os.path.join(server_settings["configdir"],
963
tcp_server = IPv6_TCPServer((server_settings["address"],
964
server_settings["port"]),
966
settings=server_settings,
968
pidfilename = "/var/run/mandos.pid"
970
pidfile = open(pidfilename, "w")
971
except IOError, error:
972
logger.error("Could not open file %r", pidfilename)
977
uid = pwd.getpwnam("mandos").pw_uid
980
uid = pwd.getpwnam("nobody").pw_uid
984
gid = pwd.getpwnam("mandos").pw_gid
987
gid = pwd.getpwnam("nogroup").pw_gid
993
except OSError, error:
994
if error[0] != errno.EPERM:
762
998
service = AvahiService(name = server_settings["servicename"],
763
type = "_mandos._tcp", );
999
servicetype = "_mandos._tcp", )
764
1000
if server_settings["interface"]:
765
service.interface = if_nametoindex\
766
(server_settings["interface"])
1001
service.interface = (if_nametoindex
1002
(server_settings["interface"]))
768
1004
global main_loop