154
157
u" after %i retries, exiting.",
155
158
self.rename_count)
156
159
raise AvahiServiceError(u"Too many renames")
157
self.name = self.server.GetAlternativeServiceName(self.name)
160
self.name = unicode(self.server.GetAlternativeServiceName(self.name))
158
161
logger.info(u"Changing Zeroconf service name to %r ...",
160
163
syslogger.setFormatter(logging.Formatter
161
164
(u'Mandos (%s) [%%(process)d]:'
162
165
u' %%(levelname)s: %%(message)s'
170
except dbus.exceptions.DBusException, error:
171
logger.critical(u"DBusException: %s", error)
166
174
self.rename_count += 1
167
175
def remove(self):
168
176
"""Derived from the Avahi example code"""
313
327
self.checker_command = config[u"checker"]
314
328
self.current_checker_command = None
315
329
self.last_connect = None
330
self._approved = None
331
self.approved_by_default = config.get(u"approved_by_default",
333
self.approvals_pending = 0
334
self.approval_delay = string_to_delta(
335
config[u"approval_delay"])
336
self.approval_duration = string_to_delta(
337
config[u"approval_duration"])
338
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
340
def send_changedstate(self):
341
self.changedstate.acquire()
342
self.changedstate.notify_all()
343
self.changedstate.release()
317
345
def enable(self):
318
346
"""Start this client's checker and timeout hooks"""
319
347
if getattr(self, u"enabled", False):
320
348
# Already enabled
350
self.send_changedstate()
322
351
self.last_enabled = datetime.datetime.utcnow()
323
352
# Schedule a new checker to be started an 'interval' from now,
324
353
# and every interval from then on.
325
354
self.checker_initiator_tag = (gobject.timeout_add
326
355
(self.interval_milliseconds(),
327
356
self.start_checker))
328
# Also start a new checker *right now*.
330
357
# Schedule a disable() when 'timeout' has passed
331
358
self.disable_initiator_tag = (gobject.timeout_add
332
359
(self.timeout_milliseconds(),
334
361
self.enabled = True
362
# Also start a new checker *right now*.
365
def disable(self, quiet=True):
337
366
"""Disable this client."""
338
367
if not getattr(self, "enabled", False):
340
logger.info(u"Disabling client %s", self.name)
370
self.send_changedstate()
372
logger.info(u"Disabling client %s", self.name)
341
373
if getattr(self, u"disable_initiator_tag", False):
342
374
gobject.source_remove(self.disable_initiator_tag)
343
375
self.disable_initiator_tag = None
467
499
logger.debug(u"Stopping checker for %(name)s", vars(self))
469
501
os.kill(self.checker.pid, signal.SIGTERM)
471
503
#if self.checker.poll() is None:
472
504
# os.kill(self.checker.pid, signal.SIGKILL)
473
505
except OSError, error:
474
506
if error.errno != errno.ESRCH: # No such process
476
508
self.checker = None
478
def still_valid(self):
479
"""Has the timeout not yet passed for this client?"""
480
if not getattr(self, u"enabled", False):
482
now = datetime.datetime.utcnow()
483
if self.last_checked_ok is None:
484
return now < (self.created + self.timeout)
486
return now < (self.last_checked_ok + self.timeout)
489
510
def dbus_service_property(dbus_interface, signature=u"v",
490
511
access=u"readwrite", byte_arrays=False):
685
716
+ self.name.replace(u".", u"_")))
686
717
DBusObjectWithProperties.__init__(self, self.bus,
687
718
self.dbus_object_path)
720
def _get_approvals_pending(self):
721
return self._approvals_pending
722
def _set_approvals_pending(self, value):
723
old_value = self._approvals_pending
724
self._approvals_pending = value
726
if (hasattr(self, "dbus_object_path")
727
and bval is not bool(old_value)):
728
dbus_bool = dbus.Boolean(bval, variant_level=1)
729
self.PropertyChanged(dbus.String(u"ApprovalPending"),
732
approvals_pending = property(_get_approvals_pending,
733
_set_approvals_pending)
734
del _get_approvals_pending, _set_approvals_pending
690
737
def _datetime_to_dbus(dt, variant_level=0):
697
744
r = Client.enable(self)
698
745
if oldstate != self.enabled:
699
746
# Emit D-Bus signals
700
self.PropertyChanged(dbus.String(u"enabled"),
747
self.PropertyChanged(dbus.String(u"Enabled"),
701
748
dbus.Boolean(True, variant_level=1))
702
749
self.PropertyChanged(
703
dbus.String(u"last_enabled"),
750
dbus.String(u"LastEnabled"),
704
751
self._datetime_to_dbus(self.last_enabled,
705
752
variant_level=1))
708
def disable(self, signal = True):
755
def disable(self, quiet = False):
709
756
oldstate = getattr(self, u"enabled", False)
710
r = Client.disable(self)
711
if signal and oldstate != self.enabled:
757
r = Client.disable(self, quiet=quiet)
758
if not quiet and oldstate != self.enabled:
712
759
# Emit D-Bus signal
713
self.PropertyChanged(dbus.String(u"enabled"),
760
self.PropertyChanged(dbus.String(u"Enabled"),
714
761
dbus.Boolean(False, variant_level=1))
776
823
r = Client.stop_checker(self, *args, **kwargs)
777
824
if (old_checker is not None
778
825
and getattr(self, u"checker", None) is None):
779
self.PropertyChanged(dbus.String(u"checker_running"),
826
self.PropertyChanged(dbus.String(u"CheckerRunning"),
780
827
dbus.Boolean(False, variant_level=1))
783
## D-Bus methods & signals
830
def _reset_approved(self):
831
self._approved = None
834
def approve(self, value=True):
835
self.send_changedstate()
836
self._approved = value
837
gobject.timeout_add(self._timedelta_to_milliseconds
838
(self.approval_duration),
839
self._reset_approved)
842
## D-Bus methods, signals & properties
784
843
_interface = u"se.bsnet.fukt.Mandos.Client"
787
@dbus.service.method(_interface)
789
return self.checked_ok()
791
847
# CheckerCompleted - signal
792
848
@dbus.service.signal(_interface, signature=u"nxs")
809
865
# GotSecret - signal
810
866
@dbus.service.signal(_interface)
811
867
def GotSecret(self):
869
Is sent after a successful transfer of secret from the Mandos
870
server to mandos-client
815
874
# Rejected - signal
816
@dbus.service.signal(_interface)
875
@dbus.service.signal(_interface, signature=u"s")
876
def Rejected(self, reason):
880
# NeedApproval - signal
881
@dbus.service.signal(_interface, signature=u"tb")
882
def NeedApproval(self, timeout, default):
889
@dbus.service.method(_interface, in_signature=u"b")
890
def Approve(self, value):
894
@dbus.service.method(_interface)
896
return self.checked_ok()
821
898
# Enable - method
822
899
@dbus.service.method(_interface)
841
918
def StopChecker(self):
842
919
self.stop_checker()
923
# ApprovalPending - property
924
@dbus_service_property(_interface, signature=u"b", access=u"read")
925
def ApprovalPending_dbus_property(self):
926
return dbus.Boolean(bool(self.approvals_pending))
928
# ApprovedByDefault - property
929
@dbus_service_property(_interface, signature=u"b",
931
def ApprovedByDefault_dbus_property(self, value=None):
932
if value is None: # get
933
return dbus.Boolean(self.approved_by_default)
934
self.approved_by_default = bool(value)
936
self.PropertyChanged(dbus.String(u"ApprovedByDefault"),
937
dbus.Boolean(value, variant_level=1))
939
# ApprovalDelay - property
940
@dbus_service_property(_interface, signature=u"t",
942
def ApprovalDelay_dbus_property(self, value=None):
943
if value is None: # get
944
return dbus.UInt64(self.approval_delay_milliseconds())
945
self.approval_delay = datetime.timedelta(0, 0, 0, value)
947
self.PropertyChanged(dbus.String(u"ApprovalDelay"),
948
dbus.UInt64(value, variant_level=1))
950
# ApprovalDuration - property
951
@dbus_service_property(_interface, signature=u"t",
953
def ApprovalDuration_dbus_property(self, value=None):
954
if value is None: # get
955
return dbus.UInt64(self._timedelta_to_milliseconds(
956
self.approval_duration))
957
self.approval_duration = datetime.timedelta(0, 0, 0, value)
959
self.PropertyChanged(dbus.String(u"ApprovalDuration"),
960
dbus.UInt64(value, variant_level=1))
845
963
@dbus_service_property(_interface, signature=u"s", access=u"read")
846
def name_dbus_property(self):
964
def Name_dbus_property(self):
847
965
return dbus.String(self.name)
849
# fingerprint - property
967
# Fingerprint - property
850
968
@dbus_service_property(_interface, signature=u"s", access=u"read")
851
def fingerprint_dbus_property(self):
969
def Fingerprint_dbus_property(self):
852
970
return dbus.String(self.fingerprint)
855
973
@dbus_service_property(_interface, signature=u"s",
856
974
access=u"readwrite")
857
def host_dbus_property(self, value=None):
975
def Host_dbus_property(self, value=None):
858
976
if value is None: # get
859
977
return dbus.String(self.host)
860
978
self.host = value
861
979
# Emit D-Bus signal
862
self.PropertyChanged(dbus.String(u"host"),
980
self.PropertyChanged(dbus.String(u"Host"),
863
981
dbus.String(value, variant_level=1))
866
984
@dbus_service_property(_interface, signature=u"s", access=u"read")
867
def created_dbus_property(self):
985
def Created_dbus_property(self):
868
986
return dbus.String(self._datetime_to_dbus(self.created))
870
# last_enabled - property
988
# LastEnabled - property
871
989
@dbus_service_property(_interface, signature=u"s", access=u"read")
872
def last_enabled_dbus_property(self):
990
def LastEnabled_dbus_property(self):
873
991
if self.last_enabled is None:
874
992
return dbus.String(u"")
875
993
return dbus.String(self._datetime_to_dbus(self.last_enabled))
878
996
@dbus_service_property(_interface, signature=u"b",
879
997
access=u"readwrite")
880
def enabled_dbus_property(self, value=None):
998
def Enabled_dbus_property(self, value=None):
881
999
if value is None: # get
882
1000
return dbus.Boolean(self.enabled)
897
1015
return dbus.String(self._datetime_to_dbus(self
898
1016
.last_checked_ok))
1018
# Timeout - property
901
1019
@dbus_service_property(_interface, signature=u"t",
902
1020
access=u"readwrite")
903
def timeout_dbus_property(self, value=None):
1021
def Timeout_dbus_property(self, value=None):
904
1022
if value is None: # get
905
1023
return dbus.UInt64(self.timeout_milliseconds())
906
1024
self.timeout = datetime.timedelta(0, 0, 0, value)
907
1025
# Emit D-Bus signal
908
self.PropertyChanged(dbus.String(u"timeout"),
1026
self.PropertyChanged(dbus.String(u"Timeout"),
909
1027
dbus.UInt64(value, variant_level=1))
910
1028
if getattr(self, u"disable_initiator_tag", None) is None:
925
1043
self.disable_initiator_tag = (gobject.timeout_add
926
1044
(time_to_die, self.disable))
928
# interval - property
1046
# Interval - property
929
1047
@dbus_service_property(_interface, signature=u"t",
930
1048
access=u"readwrite")
931
def interval_dbus_property(self, value=None):
1049
def Interval_dbus_property(self, value=None):
932
1050
if value is None: # get
933
1051
return dbus.UInt64(self.interval_milliseconds())
934
1052
self.interval = datetime.timedelta(0, 0, 0, value)
935
1053
# Emit D-Bus signal
936
self.PropertyChanged(dbus.String(u"interval"),
1054
self.PropertyChanged(dbus.String(u"Interval"),
937
1055
dbus.UInt64(value, variant_level=1))
938
1056
if getattr(self, u"checker_initiator_tag", None) is None:
943
1061
(value, self.start_checker))
944
1062
self.start_checker() # Start one now, too
1064
# Checker - property
947
1065
@dbus_service_property(_interface, signature=u"s",
948
1066
access=u"readwrite")
949
def checker_dbus_property(self, value=None):
1067
def Checker_dbus_property(self, value=None):
950
1068
if value is None: # get
951
1069
return dbus.String(self.checker_command)
952
1070
self.checker_command = value
953
1071
# Emit D-Bus signal
954
self.PropertyChanged(dbus.String(u"checker"),
1072
self.PropertyChanged(dbus.String(u"Checker"),
955
1073
dbus.String(self.checker_command,
956
1074
variant_level=1))
958
# checker_running - property
1076
# CheckerRunning - property
959
1077
@dbus_service_property(_interface, signature=u"b",
960
1078
access=u"readwrite")
961
def checker_running_dbus_property(self, value=None):
1079
def CheckerRunning_dbus_property(self, value=None):
962
1080
if value is None: # get
963
1081
return dbus.Boolean(self.checker is not None)
967
1085
self.stop_checker()
969
# object_path - property
1087
# ObjectPath - property
970
1088
@dbus_service_property(_interface, signature=u"o", access=u"read")
971
def object_path_dbus_property(self):
1089
def ObjectPath_dbus_property(self):
972
1090
return self.dbus_object_path # is already a dbus.ObjectPath
975
1093
@dbus_service_property(_interface, signature=u"ay",
976
1094
access=u"write", byte_arrays=True)
977
def secret_dbus_property(self, value):
1095
def Secret_dbus_property(self, value):
978
1096
self.secret = str(value)
1101
class ProxyClient(object):
1102
def __init__(self, child_pipe, fpr, address):
1103
self._pipe = child_pipe
1104
self._pipe.send(('init', fpr, address))
1105
if not self._pipe.recv():
1108
def __getattribute__(self, name):
1109
if(name == '_pipe'):
1110
return super(ProxyClient, self).__getattribute__(name)
1111
self._pipe.send(('getattr', name))
1112
data = self._pipe.recv()
1113
if data[0] == 'data':
1115
if data[0] == 'function':
1116
def func(*args, **kwargs):
1117
self._pipe.send(('funcall', name, args, kwargs))
1118
return self._pipe.recv()[1]
1121
def __setattr__(self, name, value):
1122
if(name == '_pipe'):
1123
return super(ProxyClient, self).__setattr__(name, value)
1124
self._pipe.send(('setattr', name, value))
983
1127
class ClientHandler(socketserver.BaseRequestHandler, object):
984
1128
"""A class to handle client connections.
987
1131
Note: This will run in its own forked process."""
989
1133
def handle(self):
990
logger.info(u"TCP connection from: %s",
991
unicode(self.client_address))
992
logger.debug(u"IPC Pipe FD: %d", self.server.pipe[1])
993
# Open IPC pipe to parent process
994
with closing(os.fdopen(self.server.pipe[1], u"w", 1)) as ipc:
1134
with contextlib.closing(self.server.child_pipe) as child_pipe:
1135
logger.info(u"TCP connection from: %s",
1136
unicode(self.client_address))
1137
logger.debug(u"Pipe FD: %d",
1138
self.server.child_pipe.fileno())
995
1140
session = (gnutls.connection
996
1141
.ClientSession(self.request,
997
1142
gnutls.connection
998
1143
.X509Credentials()))
1000
line = self.request.makefile().readline()
1001
logger.debug(u"Protocol version: %r", line)
1003
if int(line.strip().split()[0]) > 1:
1005
except (ValueError, IndexError, RuntimeError), error:
1006
logger.error(u"Unknown protocol version: %s", error)
1009
1145
# Note: gnutls.connection.X509Credentials is really a
1010
1146
# generic GnuTLS certificate credentials object so long as
1011
1147
# no X.509 keys are added to it. Therefore, we can use it
1012
1148
# here despite using OpenPGP certificates.
1014
1150
#priority = u':'.join((u"NONE", u"+VERS-TLS1.1",
1015
1151
# u"+AES-256-CBC", u"+SHA1",
1016
1152
# u"+COMP-NULL", u"+CTYPE-OPENPGP",
1022
1158
(gnutls.library.functions
1023
1159
.gnutls_priority_set_direct(session._c_object,
1024
1160
priority, None))
1162
# Start communication using the Mandos protocol
1163
# Get protocol number
1164
line = self.request.makefile().readline()
1165
logger.debug(u"Protocol version: %r", line)
1167
if int(line.strip().split()[0]) > 1:
1169
except (ValueError, IndexError, RuntimeError), error:
1170
logger.error(u"Unknown protocol version: %s", error)
1173
# Start GnuTLS connection
1027
1175
session.handshake()
1028
1176
except gnutls.errors.GNUTLSError, error:
1031
1179
# established. Just abandon the request.
1033
1181
logger.debug(u"Handshake succeeded")
1183
approval_required = False
1035
fpr = self.fingerprint(self.peer_certificate(session))
1036
except (TypeError, gnutls.errors.GNUTLSError), error:
1037
logger.warning(u"Bad certificate: %s", error)
1040
logger.debug(u"Fingerprint: %s", fpr)
1186
fpr = self.fingerprint(self.peer_certificate
1188
except (TypeError, gnutls.errors.GNUTLSError), error:
1189
logger.warning(u"Bad certificate: %s", error)
1191
logger.debug(u"Fingerprint: %s", fpr)
1194
client = ProxyClient(child_pipe, fpr,
1195
self.client_address)
1199
if client.approval_delay:
1200
delay = client.approval_delay
1201
client.approvals_pending += 1
1202
approval_required = True
1205
if not client.enabled:
1206
logger.warning(u"Client %s is disabled",
1208
if self.server.use_dbus:
1210
client.Rejected("Disabled")
1213
if client._approved or not client.approval_delay:
1214
#We are approved or approval is disabled
1216
elif client._approved is None:
1217
logger.info(u"Client %s needs approval",
1219
if self.server.use_dbus:
1221
client.NeedApproval(
1222
client.approval_delay_milliseconds(),
1223
client.approved_by_default)
1225
logger.warning(u"Client %s was not approved",
1227
if self.server.use_dbus:
1229
client.Rejected("Denied")
1232
#wait until timeout or approved
1233
#x = float(client._timedelta_to_milliseconds(delay))
1234
time = datetime.datetime.now()
1235
client.changedstate.acquire()
1236
client.changedstate.wait(float(client._timedelta_to_milliseconds(delay) / 1000))
1237
client.changedstate.release()
1238
time2 = datetime.datetime.now()
1239
if (time2 - time) >= delay:
1240
if not client.approved_by_default:
1241
logger.warning("Client %s timed out while"
1242
" waiting for approval",
1244
if self.server.use_dbus:
1246
client.Rejected("Timed out")
1251
delay -= time2 - time
1254
while sent_size < len(client.secret):
1256
sent = session.send(client.secret[sent_size:])
1257
except (gnutls.errors.GNUTLSError), error:
1258
logger.warning("gnutls send failed")
1260
logger.debug(u"Sent: %d, remaining: %d",
1261
sent, len(client.secret)
1262
- (sent_size + sent))
1265
logger.info(u"Sending secret to %s", client.name)
1266
# bump the timeout as if seen
1268
if self.server.use_dbus:
1042
for c in self.server.clients:
1043
if c.fingerprint == fpr:
1047
ipc.write(u"NOTFOUND %s %s\n"
1048
% (fpr, unicode(self.client_address)))
1051
# Have to check if client.still_valid(), since it is
1052
# possible that the client timed out while establishing
1053
# the GnuTLS session.
1054
if not client.still_valid():
1055
ipc.write(u"INVALID %s\n" % client.name)
1058
ipc.write(u"SENDING %s\n" % client.name)
1060
while sent_size < len(client.secret):
1061
sent = session.send(client.secret[sent_size:])
1062
logger.debug(u"Sent: %d, remaining: %d",
1063
sent, len(client.secret)
1064
- (sent_size + sent))
1273
if approval_required:
1274
client.approvals_pending -= 1
1277
except (gnutls.errors.GNUTLSError), error:
1278
logger.warning("GnuTLS bye failed")
1069
1281
def peer_certificate(session):
1132
class ForkingMixInWithPipe(socketserver.ForkingMixIn, object):
1133
"""Like socketserver.ForkingMixIn, but also pass a pipe."""
1344
class MultiprocessingMixIn(object):
1345
"""Like socketserver.ThreadingMixIn, but with multiprocessing"""
1346
def sub_process_main(self, request, address):
1348
self.finish_request(request, address)
1350
self.handle_error(request, address)
1351
self.close_request(request)
1353
def process_request(self, request, address):
1354
"""Start a new process to process the request."""
1355
multiprocessing.Process(target = self.sub_process_main,
1356
args = (request, address)).start()
1358
class MultiprocessingMixInWithPipe(MultiprocessingMixIn, object):
1359
""" adds a pipe to the MixIn """
1134
1360
def process_request(self, request, client_address):
1135
1361
"""Overrides and wraps the original process_request().
1137
1363
This function creates a new pipe in self.pipe
1139
self.pipe = os.pipe()
1140
super(ForkingMixInWithPipe,
1365
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1367
super(MultiprocessingMixInWithPipe,
1141
1368
self).process_request(request, client_address)
1142
os.close(self.pipe[1]) # close write end
1143
self.add_pipe(self.pipe[0])
1144
def add_pipe(self, pipe):
1369
self.child_pipe.close()
1370
self.add_pipe(parent_pipe)
1372
def add_pipe(self, parent_pipe):
1145
1373
"""Dummy function; override as necessary"""
1149
class IPv6_TCPServer(ForkingMixInWithPipe,
1376
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1150
1377
socketserver.TCPServer, object):
1151
1378
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1237
1464
return socketserver.TCPServer.server_activate(self)
1238
1465
def enable(self):
1239
1466
self.enabled = True
1240
def add_pipe(self, pipe):
1467
def add_pipe(self, parent_pipe):
1241
1468
# Call "handle_ipc" for both data and EOF events
1242
gobject.io_add_watch(pipe, gobject.IO_IN | gobject.IO_HUP,
1244
def handle_ipc(self, source, condition, file_objects={}):
1469
gobject.io_add_watch(parent_pipe.fileno(),
1470
gobject.IO_IN | gobject.IO_HUP,
1471
functools.partial(self.handle_ipc,
1472
parent_pipe = parent_pipe))
1474
def handle_ipc(self, source, condition, parent_pipe=None,
1475
client_object=None):
1245
1476
condition_names = {
1246
1477
gobject.IO_IN: u"IN", # There is data to read.
1247
1478
gobject.IO_OUT: u"OUT", # Data can be written (without
1258
1489
if cond & condition)
1259
1490
logger.debug(u"Handling IPC: FD = %d, condition = %s", source,
1260
1491
conditions_string)
1262
# Turn the pipe file descriptor into a Python file object
1263
if source not in file_objects:
1264
file_objects[source] = os.fdopen(source, u"r", 1)
1266
# Read a line from the file object
1267
cmdline = file_objects[source].readline()
1268
if not cmdline: # Empty line means end of file
1269
# close the IPC pipe
1270
file_objects[source].close()
1271
del file_objects[source]
1273
# Stop calling this function
1276
logger.debug(u"IPC command: %r", cmdline)
1278
# Parse and act on command
1279
cmd, args = cmdline.rstrip(u"\r\n").split(None, 1)
1281
if cmd == u"NOTFOUND":
1282
logger.warning(u"Client not found for fingerprint: %s",
1286
mandos_dbus_service.ClientNotFound(args)
1287
elif cmd == u"INVALID":
1288
for client in self.clients:
1289
if client.name == args:
1290
logger.warning(u"Client %s is invalid", args)
1296
logger.error(u"Unknown client %s is invalid", args)
1297
elif cmd == u"SENDING":
1298
for client in self.clients:
1299
if client.name == args:
1300
logger.info(u"Sending secret to %s", client.name)
1307
logger.error(u"Sending secret to unknown client %s",
1310
logger.error(u"Unknown IPC command: %r", cmdline)
1312
# Keep calling this function
1493
# error or the other end of multiprocessing.Pipe has closed
1494
if condition & (gobject.IO_ERR | condition & gobject.IO_HUP):
1497
# Read a request from the child
1498
request = parent_pipe.recv()
1499
logger.debug(u"IPC request: %s", repr(request))
1500
command = request[0]
1502
if command == 'init':
1504
address = request[2]
1506
for c in self.clients:
1507
if c.fingerprint == fpr:
1511
logger.warning(u"Client not found for fingerprint: %s, ad"
1512
u"dress: %s", fpr, address)
1515
mandos_dbus_service.ClientNotFound(fpr, address)
1516
parent_pipe.send(False)
1519
gobject.io_add_watch(parent_pipe.fileno(),
1520
gobject.IO_IN | gobject.IO_HUP,
1521
functools.partial(self.handle_ipc,
1522
parent_pipe = parent_pipe,
1523
client_object = client))
1524
parent_pipe.send(True)
1525
# remove the old hook in favor of the new above hook on same fileno
1527
if command == 'funcall':
1528
funcname = request[1]
1532
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1534
if command == 'getattr':
1535
attrname = request[1]
1536
if callable(client_object.__getattribute__(attrname)):
1537
parent_pipe.send(('function',))
1539
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1541
if command == 'setattr':
1542
attrname = request[1]
1544
setattr(client_object, attrname, value)
1566
1821
bus = dbus.SystemBus()
1567
1822
# End of Avahi example code
1569
bus_name = dbus.service.BusName(u"se.bsnet.fukt.Mandos", bus)
1825
bus_name = dbus.service.BusName(u"se.bsnet.fukt.Mandos",
1826
bus, do_not_queue=True)
1827
except dbus.exceptions.NameExistsException, e:
1828
logger.error(unicode(e) + u", disabling D-Bus")
1830
server_settings[u"use_dbus"] = False
1831
tcp_server.use_dbus = False
1570
1832
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
1571
1833
service = AvahiService(name = server_settings[u"servicename"],
1572
1834
servicetype = u"_mandos._tcp",
1574
1836
if server_settings["interface"]:
1575
1837
service.interface = (if_nametoindex
1576
1838
(str(server_settings[u"interface"])))
1841
# Close all input and output, do double fork, etc.
1844
global multiprocessing_manager
1845
multiprocessing_manager = multiprocessing.Manager()
1578
1847
client_class = Client
1580
1849
client_class = functools.partial(ClientDBus, bus = bus)
1850
def client_config_items(config, section):
1851
special_settings = {
1852
"approved_by_default":
1853
lambda: config.getboolean(section,
1854
"approved_by_default"),
1856
for name, value in config.items(section):
1858
yield (name, special_settings[name]())
1581
1862
tcp_server.clients.update(set(
1582
1863
client_class(name = section,
1583
config= dict(client_config.items(section)))
1864
config= dict(client_config_items(
1865
client_config, section)))
1584
1866
for section in client_config.sections()))
1585
1867
if not tcp_server.clients:
1586
1868
logger.warning(u"No clients defined")
1589
# Redirect stdin so all checkers get /dev/null
1590
null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
1591
os.dup2(null, sys.stdin.fileno())
1595
# No console logging
1596
logger.removeHandler(console)
1597
# Close all input and output, do double fork, etc.
1601
with closing(pidfile):
1602
1872
pid = os.getpid()
1603
1873
pidfile.write(str(pid) + "\n")
1633
1892
dbus.service.Object.__init__(self, bus, u"/")
1634
1893
_interface = u"se.bsnet.fukt.Mandos"
1636
@dbus.service.signal(_interface, signature=u"oa{sv}")
1637
def ClientAdded(self, objpath, properties):
1895
@dbus.service.signal(_interface, signature=u"o")
1896
def ClientAdded(self, objpath):
1641
@dbus.service.signal(_interface, signature=u"s")
1642
def ClientNotFound(self, fingerprint):
1900
@dbus.service.signal(_interface, signature=u"ss")
1901
def ClientNotFound(self, fingerprint, address):
1671
1930
tcp_server.clients.remove(c)
1672
1931
c.remove_from_connection()
1673
1932
# Don't signal anything except ClientRemoved
1674
c.disable(signal=False)
1933
c.disable(quiet=True)
1675
1934
# Emit D-Bus signal
1676
1935
self.ClientRemoved(object_path, c.name)
1937
raise KeyError(object_path)
1682
1941
mandos_dbus_service = MandosDBusService()
1944
"Cleanup function; run on exit"
1947
while tcp_server.clients:
1948
client = tcp_server.clients.pop()
1950
client.remove_from_connection()
1951
client.disable_hook = None
1952
# Don't signal anything except ClientRemoved
1953
client.disable(quiet=True)
1956
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
1959
atexit.register(cleanup)
1684
1961
for client in tcp_server.clients:
1686
1963
# Emit D-Bus signal
1687
mandos_dbus_service.ClientAdded(client.dbus_object_path,
1964
mandos_dbus_service.ClientAdded(client.dbus_object_path)
1689
1965
client.enable()
1691
1967
tcp_server.enable()