178
178
class Client(dbus.service.Object):
179
179
"""A representation of a client host served by this server.
181
name: string; from the config file, used in log messages and
181
name: string; from the config file, used in log messages
183
182
fingerprint: string (40 or 32 hexadecimal digits); used to
184
183
uniquely identify the client
185
184
secret: bytestring; sent verbatim (over TLS) to client
226
225
if config is None:
228
227
logger.debug(u"Creating client %r", self.name)
229
self.use_dbus = False # During __init__
228
self.use_dbus = use_dbus
230
self.dbus_object_path = (dbus.ObjectPath
232
+ self.name.replace(".", "_")))
233
dbus.service.Object.__init__(self, bus,
234
self.dbus_object_path)
230
235
# Uppercase and remove spaces from fingerprint for later
231
236
# comparison purposes with return value from the fingerprint()
256
261
self.disable_initiator_tag = None
257
262
self.checker_callback_tag = None
258
263
self.checker_command = config["checker"]
259
self.last_connect = None
260
# Only now, when this client is initialized, can it show up on
262
self.use_dbus = use_dbus
264
self.dbus_object_path = (dbus.ObjectPath
266
+ self.name.replace(".", "_")))
267
dbus.service.Object.__init__(self, bus,
268
self.dbus_object_path)
270
265
def enable(self):
271
266
"""Start this client's checker and timeout hooks"""
324
319
# Emit D-Bus signal
325
320
self.PropertyChanged(dbus.String(u"checker_running"),
326
321
dbus.Boolean(False, variant_level=1))
327
if os.WIFEXITED(condition):
328
exitstatus = os.WEXITSTATUS(condition)
330
logger.info(u"Checker for %(name)s succeeded",
334
logger.info(u"Checker for %(name)s failed",
322
if (os.WIFEXITED(condition)
323
and (os.WEXITSTATUS(condition) == 0)):
324
logger.info(u"Checker for %(name)s succeeded",
336
326
if self.use_dbus:
337
327
# Emit D-Bus signal
338
self.CheckerCompleted(dbus.Int16(exitstatus),
339
dbus.Int64(condition),
328
self.CheckerCompleted(dbus.Boolean(True),
329
dbus.UInt16(condition),
340
330
dbus.String(command))
332
elif not os.WIFEXITED(condition):
342
333
logger.warning(u"Checker for %(name)s crashed?",
344
335
if self.use_dbus:
345
336
# Emit D-Bus signal
346
self.CheckerCompleted(dbus.Int16(-1),
347
dbus.Int64(condition),
337
self.CheckerCompleted(dbus.Boolean(False),
338
dbus.UInt16(condition),
339
dbus.String(command))
341
logger.info(u"Checker for %(name)s failed",
345
self.CheckerCompleted(dbus.Boolean(False),
346
dbus.UInt16(condition),
348
347
dbus.String(command))
350
349
def bump_timeout(self):
449
448
return now < (self.last_checked_ok + self.timeout)
451
450
## D-Bus methods & signals
452
_interface = u"se.bsnet.fukt.Mandos.Client"
451
_interface = u"org.mandos_system.Mandos.Client"
454
453
# BumpTimeout - method
455
454
BumpTimeout = dbus.service.method(_interface)(bump_timeout)
456
455
BumpTimeout.__name__ = "BumpTimeout"
458
457
# CheckerCompleted - signal
459
@dbus.service.signal(_interface, signature="nxs")
460
def CheckerCompleted(self, exitcode, waitstatus, command):
458
@dbus.service.signal(_interface, signature="bqs")
459
def CheckerCompleted(self, success, condition, command):
504
503
dbus.String("checker_running"):
505
504
dbus.Boolean(self.checker is not None,
506
505
variant_level=1),
507
dbus.String("object_path"):
508
dbus.ObjectPath(self.dbus_object_path,
510
506
}, signature="sv")
512
508
# IsStillValid - method
896
parser = optparse.OptionParser(version = "%%prog %s" % version)
892
parser = OptionParser(version = "%%prog %s" % version)
897
893
parser.add_option("-i", "--interface", type="string",
898
894
metavar="IF", help="Bind to interface IF")
899
895
parser.add_option("-a", "--address", type="string",
976
972
# Parse config file with clients
977
973
client_defaults = { "timeout": "1h",
978
974
"interval": "5m",
979
"checker": "fping -q -- %%(host)s",
975
"checker": "fping -q -- %(host)s",
982
978
client_config = ConfigParser.SafeConfigParser(client_defaults)
999
995
uid = pwd.getpwnam("_mandos").pw_uid
998
uid = pwd.getpwnam("mandos").pw_uid
1001
uid = pwd.getpwnam("nobody").pw_uid
1000
1005
gid = pwd.getpwnam("_mandos").pw_gid
1001
1006
except KeyError:
1003
uid = pwd.getpwnam("mandos").pw_uid
1004
1008
gid = pwd.getpwnam("mandos").pw_gid
1005
1009
except KeyError:
1007
uid = pwd.getpwnam("nobody").pw_uid
1008
1011
gid = pwd.getpwnam("nogroup").pw_gid
1009
1012
except KeyError:
1035
1037
avahi.DBUS_INTERFACE_SERVER)
1036
1038
# End of Avahi example code
1038
bus_name = dbus.service.BusName(u"se.bsnet.fukt.Mandos", bus)
1040
bus_name = dbus.service.BusName(u"org.mandos-system.Mandos",
1040
1043
clients.update(Set(Client(name = section,
1095
1098
class MandosServer(dbus.service.Object):
1096
1099
"""A D-Bus proxy object"""
1097
1100
def __init__(self):
1098
dbus.service.Object.__init__(self, bus, "/")
1099
_interface = u"se.bsnet.fukt.Mandos"
1101
dbus.service.Object.__init__(self, bus,
1103
_interface = u"org.mandos_system.Mandos"
1101
1105
@dbus.service.signal(_interface, signature="oa{sv}")
1102
1106
def ClientAdded(self, objpath, properties):
1106
@dbus.service.signal(_interface, signature="os")
1107
def ClientRemoved(self, objpath, name):
1110
@dbus.service.signal(_interface, signature="o")
1111
def ClientRemoved(self, objpath):
1111
1115
@dbus.service.method(_interface, out_signature="ao")
1112
1116
def GetAllClients(self):
1113
1117
return dbus.Array(c.dbus_object_path for c in clients)
1115
1119
@dbus.service.method(_interface, out_signature="a{oa{sv}}")
1116
1120
def GetAllClientsWithProperties(self):
1117
1121
return dbus.Dictionary(
1118
1122
((c.dbus_object_path, c.GetAllProperties())
1119
1123
for c in clients),
1120
1124
signature="oa{sv}")
1122
1126
@dbus.service.method(_interface, in_signature="o")
1123
1127
def RemoveClient(self, object_path):
1124
1128
for c in clients:
1128
1132
c.use_dbus = False
1130
1134
# Emit D-Bus signal
1131
self.ClientRemoved(object_path, c.name)
1135
self.ClientRemoved(object_path)
1138
@dbus.service.method(_interface)
1137
1144
mandos_server = MandosServer()
1139
1146
for client in clients: