172
170
# End of Avahi example code
175
class Client(dbus.service.Object):
173
class Client(object):
176
174
"""A representation of a client host served by this server.
178
176
name: string; from the config file, used in log messages
181
179
secret: bytestring; sent verbatim (over TLS) to client
182
180
host: string; available for use by the checker command
183
181
created: datetime.datetime(); object creation, not client host
185
182
last_checked_ok: datetime.datetime() or None if not yet checked OK
186
183
timeout: datetime.timedelta(); How long from last_checked_ok
187
184
until this client is invalid
203
200
_timeout_milliseconds: Used when calling gobject.timeout_add()
204
201
_interval_milliseconds: - '' -
206
interface = u"org.mandos_system.Mandos.Clients"
208
@dbus.service.method(interface, out_signature="s")
210
"D-Bus getter method"
213
@dbus.service.method(interface, out_signature="s")
214
def getFingerprint(self):
215
"D-Bus getter method"
216
return self.fingerprint
218
@dbus.service.method(interface, in_signature="ay",
220
def setSecret(self, secret):
221
"D-Bus setter method"
224
203
def _set_timeout(self, timeout):
225
"Setter function for the 'timeout' attribute"
204
"Setter function for 'timeout' attribute"
226
205
self._timeout = timeout
227
206
self._timeout_milliseconds = ((self.timeout.days
228
207
* 24 * 60 * 60 * 1000)
229
208
+ (self.timeout.seconds * 1000)
230
209
+ (self.timeout.microseconds
233
self.TimeoutChanged(self._timeout_milliseconds)
234
timeout = property(lambda self: self._timeout, _set_timeout)
211
timeout = property(lambda self: self._timeout,
237
@dbus.service.method(interface, out_signature="t")
238
def getTimeout(self):
239
"D-Bus getter method"
240
return self._timeout_milliseconds
242
@dbus.service.signal(interface, signature="t")
243
def TimeoutChanged(self, t):
247
214
def _set_interval(self, interval):
248
"Setter function for the 'interval' attribute"
215
"Setter function for 'interval' attribute"
249
216
self._interval = interval
250
217
self._interval_milliseconds = ((self.interval.days
251
218
* 24 * 60 * 60 * 1000)
254
221
+ (self.interval.microseconds
257
self.IntervalChanged(self._interval_milliseconds)
258
interval = property(lambda self: self._interval, _set_interval)
223
interval = property(lambda self: self._interval,
259
225
del _set_interval
261
@dbus.service.method(interface, out_signature="t")
262
def getInterval(self):
263
"D-Bus getter method"
264
return self._interval_milliseconds
266
@dbus.service.signal(interface, signature="t")
267
def IntervalChanged(self, t):
271
226
def __init__(self, name = None, stop_hook=None, config=None):
272
227
"""Note: the 'checker' key in 'config' sets the
273
228
'checker_command' attribute and *not* the 'checker'
275
dbus.service.Object.__init__(self, bus,
277
% name.replace(".", "_"))
278
230
if config is None:
288
240
if "secret" in config:
289
241
self.secret = config["secret"].decode(u"base64")
290
242
elif "secfile" in config:
291
with closing(open(os.path.expanduser
293
(config["secfile"])))) \
295
self.secret = secfile.read()
243
secfile = open(os.path.expanduser(os.path.expandvars
244
(config["secfile"])))
245
self.secret = secfile.read()
297
248
raise TypeError(u"No secret or secfile for client %s"
299
250
self.host = config.get("host", "")
300
251
self.created = datetime.datetime.now()
302
252
self.last_checked_ok = None
303
253
self.timeout = string_to_delta(config["timeout"])
304
254
self.interval = string_to_delta(config["interval"])
308
258
self.stop_initiator_tag = None
309
259
self.checker_callback_tag = None
310
260
self.check_command = config["checker"]
313
262
"""Start this client's checker and timeout hooks"""
315
263
# Schedule a new checker to be started an 'interval' from now,
316
264
# and every interval from then on.
317
265
self.checker_initiator_tag = gobject.timeout_add\
323
271
self.stop_initiator_tag = gobject.timeout_add\
324
272
(self._timeout_milliseconds,
327
self.StateChanged(True)
329
@dbus.service.signal(interface, signature="b")
330
def StateChanged(self, started):
335
"""Stop this client."""
336
if getattr(self, "started", False):
276
The possibility that a client might be restarted is left open,
277
but not currently used."""
278
# If this client doesn't have a secret, it is already stopped.
279
if hasattr(self, "secret") and self.secret:
337
280
logger.info(u"Stopping client %s", self.name)
340
284
if getattr(self, "stop_initiator_tag", False):
346
290
self.stop_checker()
347
291
if self.stop_hook:
348
292
self.stop_hook(self)
350
self.StateChanged(False)
351
293
# Do not run this again if called by a gobject.timeout_add
354
Stop = dbus.service.method(interface)(stop)
356
295
def __del__(self):
357
296
self.stop_hook = None
360
298
def checker_callback(self, pid, condition):
361
299
"""The checker has completed, so take appropriate actions."""
300
now = datetime.datetime.now()
362
301
self.checker_callback_tag = None
363
302
self.checker = None
364
303
if os.WIFEXITED(condition) \
365
304
and (os.WEXITSTATUS(condition) == 0):
366
305
logger.info(u"Checker for %(name)s succeeded",
369
self.CheckerCompleted(True)
307
self.last_checked_ok = now
308
gobject.source_remove(self.stop_initiator_tag)
309
self.stop_initiator_tag = gobject.timeout_add\
310
(self._timeout_milliseconds,
371
312
elif not os.WIFEXITED(condition):
372
313
logger.warning(u"Checker for %(name)s crashed?",
375
self.CheckerCompleted(False)
377
316
logger.info(u"Checker for %(name)s failed",
380
self.CheckerCompleted(False)
382
@dbus.service.signal(interface, signature="b")
383
def CheckerCompleted(self, success):
387
def bump_timeout(self):
388
"""Bump up the timeout for this client.
389
This should only be called when the client has been seen,
392
self.last_checked_ok = datetime.datetime.now()
393
gobject.source_remove(self.stop_initiator_tag)
394
self.stop_initiator_tag = gobject.timeout_add\
395
(self._timeout_milliseconds, self.stop)
397
bumpTimeout = dbus.service.method(interface)(bump_timeout)
399
318
def start_checker(self):
400
319
"""Start a new checker subprocess if one is not running.
401
320
If a checker already exists, leave it running and do
436
355
self.checker_callback_tag = gobject.child_watch_add\
437
356
(self.checker.pid,
438
357
self.checker_callback)
440
self.CheckerStarted(command)
441
358
except OSError, error:
442
359
logger.error(u"Failed to start subprocess: %s",
444
361
# Re-run this periodically if run by gobject.timeout_add
447
@dbus.service.signal(interface, signature="s")
448
def CheckerStarted(self, command):
451
@dbus.service.method(interface, out_signature="b")
452
def checkerIsRunning(self):
453
"D-Bus getter method"
454
return self.checker is not None
456
363
def stop_checker(self):
457
364
"""Force the checker process, if any, to stop."""
458
365
if self.checker_callback_tag:
470
377
if error.errno != errno.ESRCH: # No such process
472
379
self.checker = None
474
StopChecker = dbus.service.method(interface)(stop_checker)
476
380
def still_valid(self):
477
381
"""Has the timeout not yet passed for this client?"""
480
382
now = datetime.datetime.now()
481
383
if self.last_checked_ok is None:
482
384
return now < (self.created + self.timeout)
484
386
return now < (self.last_checked_ok + self.timeout)
486
stillValid = dbus.service.method(interface, out_signature="b")\
492
389
def peer_certificate(session):
551
448
def handle(self):
552
449
logger.info(u"TCP connection from: %s",
553
unicode(self.client_address))
450
unicode(self.client_address))
554
451
session = gnutls.connection.ClientSession\
555
452
(self.request, gnutls.connection.X509Credentials())
571
468
#priority = ':'.join(("NONE", "+VERS-TLS1.1", "+AES-256-CBC",
572
469
# "+SHA1", "+COMP-NULL", "+CTYPE-OPENPGP",
574
# Use a fallback default, since this MUST be set.
575
priority = self.server.settings.get("priority", "NORMAL")
471
priority = "NORMAL" # Fallback default, since this
473
if self.server.settings["priority"]:
474
priority = self.server.settings["priority"]
576
475
gnutls.library.functions.gnutls_priority_set_direct\
577
476
(session._c_object, priority, None)
623
class IPv6_TCPServer(SocketServer.ForkingMixIn,
624
SocketServer.TCPServer, object):
520
class IPv6_TCPServer(SocketServer.ForkingTCPServer, object):
625
521
"""IPv6 TCP server. Accepts 'None' as address and/or port.
627
523
settings: Server settings
756
652
def if_nametoindex(interface):
757
653
"Get an interface index the hard way, i.e. using fcntl()"
758
654
SIOCGIFINDEX = 0x8933 # From /usr/include/linux/sockios.h
759
with closing(socket.socket()) as s:
760
ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
761
struct.pack("16s16x", interface))
656
ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
657
struct.pack("16s16x", interface))
762
659
interface_index = struct.unpack("I", ifreq[16:20])[0]
763
660
return interface_index
764
661
return if_nametoindex(interface)