174
except dbus.exceptions.DBusException as error:
171
except dbus.exceptions.DBusException, error:
175
172
logger.critical("DBusException: %s", error)
178
175
self.rename_count += 1
179
176
def remove(self):
180
177
"""Derived from the Avahi example code"""
181
if self.entry_group_state_changed_match is not None:
182
self.entry_group_state_changed_match.remove()
183
self.entry_group_state_changed_match = None
184
178
if self.group is not None:
185
179
self.group.Reset()
187
181
"""Derived from the Avahi example code"""
189
182
if self.group is None:
190
183
self.group = dbus.Interface(
191
184
self.bus.get_object(avahi.DBUS_NAME,
192
185
self.server.EntryGroupNew()),
193
186
avahi.DBUS_INTERFACE_ENTRY_GROUP)
194
self.entry_group_state_changed_match = (
195
self.group.connect_to_signal(
196
'StateChanged', self .entry_group_state_changed))
187
self.group.connect_to_signal('StateChanged',
189
.entry_group_state_changed)
197
190
logger.debug("Adding Zeroconf service '%s' of type '%s' ...",
198
191
self.name, self.type)
199
192
self.group.AddService(
222
215
def cleanup(self):
223
216
"""Derived from the Avahi example code"""
224
217
if self.group is not None:
227
except (dbus.exceptions.UnknownMethodException,
228
dbus.exceptions.DBusException) as e:
230
219
self.group = None
232
def server_state_changed(self, state, error=None):
220
def server_state_changed(self, state):
233
221
"""Derived from the Avahi example code"""
234
222
logger.debug("Avahi server state change: %i", state)
235
bad_states = { avahi.SERVER_INVALID:
236
"Zeroconf server invalid",
237
avahi.SERVER_REGISTERING: None,
238
avahi.SERVER_COLLISION:
239
"Zeroconf server name collision",
240
avahi.SERVER_FAILURE:
241
"Zeroconf server failure" }
242
if state in bad_states:
243
if bad_states[state] is not None:
245
logger.error(bad_states[state])
247
logger.error(bad_states[state] + ": %r", error)
223
if state == avahi.SERVER_COLLISION:
224
logger.error("Zeroconf server name collision")
249
226
elif state == avahi.SERVER_RUNNING:
253
logger.debug("Unknown state: %r", state)
255
logger.debug("Unknown state: %r: %r", state, error)
256
228
def activate(self):
257
229
"""Derived from the Avahi example code"""
258
230
if self.server is None:
259
231
self.server = dbus.Interface(
260
232
self.bus.get_object(avahi.DBUS_NAME,
261
avahi.DBUS_PATH_SERVER,
262
follow_name_owner_changes=True),
233
avahi.DBUS_PATH_SERVER),
263
234
avahi.DBUS_INTERFACE_SERVER)
264
235
self.server.connect_to_signal("StateChanged",
265
236
self.server_state_changed)
266
237
self.server_state_changed(self.server.GetState())
269
def _timedelta_to_milliseconds(td):
270
"Convert a datetime.timedelta() to milliseconds"
271
return ((td.days * 24 * 60 * 60 * 1000)
272
+ (td.seconds * 1000)
273
+ (td.microseconds // 1000))
275
240
class Client(object):
276
241
"""A representation of a client host served by this server.
316
278
"host", "interval", "last_checked_ok",
317
279
"last_enabled", "name", "timeout")
282
def _timedelta_to_milliseconds(td):
283
"Convert a datetime.timedelta() to milliseconds"
284
return ((td.days * 24 * 60 * 60 * 1000)
285
+ (td.seconds * 1000)
286
+ (td.microseconds // 1000))
319
288
def timeout_milliseconds(self):
320
289
"Return the 'timeout' attribute in milliseconds"
321
return _timedelta_to_milliseconds(self.timeout)
323
def extended_timeout_milliseconds(self):
324
"Return the 'extended_timeout' attribute in milliseconds"
325
return _timedelta_to_milliseconds(self.extended_timeout)
290
return self._timedelta_to_milliseconds(self.timeout)
327
292
def interval_milliseconds(self):
328
293
"Return the 'interval' attribute in milliseconds"
329
return _timedelta_to_milliseconds(self.interval)
294
return self._timedelta_to_milliseconds(self.interval)
331
296
def approval_delay_milliseconds(self):
332
return _timedelta_to_milliseconds(self.approval_delay)
297
return self._timedelta_to_milliseconds(self.approval_delay)
334
299
def __init__(self, name = None, disable_hook=None, config=None):
335
300
"""Note: the 'checker' key in 'config' sets the
382
344
config["approval_delay"])
383
345
self.approval_duration = string_to_delta(
384
346
config["approval_duration"])
385
self.changedstate = (multiprocessing_manager
386
.Condition(multiprocessing_manager
347
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
389
349
def send_changedstate(self):
390
350
self.changedstate.acquire()
391
351
self.changedstate.notify_all()
392
352
self.changedstate.release()
394
354
def enable(self):
395
355
"""Start this client's checker and timeout hooks"""
396
356
if getattr(self, "enabled", False):
397
357
# Already enabled
399
359
self.send_changedstate()
360
self.last_enabled = datetime.datetime.utcnow()
400
361
# Schedule a new checker to be started an 'interval' from now,
401
362
# and every interval from then on.
402
363
self.checker_initiator_tag = (gobject.timeout_add
403
364
(self.interval_milliseconds(),
404
365
self.start_checker))
405
366
# Schedule a disable() when 'timeout' has passed
406
self.expires = datetime.datetime.utcnow() + self.timeout
407
367
self.disable_initiator_tag = (gobject.timeout_add
408
368
(self.timeout_milliseconds(),
410
370
self.enabled = True
411
self.last_enabled = datetime.datetime.utcnow()
412
371
# Also start a new checker *right now*.
413
372
self.start_checker()
455
413
logger.warning("Checker for %(name)s crashed?",
458
def checked_ok(self, timeout=None):
416
def checked_ok(self):
459
417
"""Bump up the timeout for this client.
461
419
This should only be called when the client has been seen,
465
timeout = self.timeout
466
422
self.last_checked_ok = datetime.datetime.utcnow()
467
if self.disable_initiator_tag is not None:
468
gobject.source_remove(self.disable_initiator_tag)
469
if getattr(self, "enabled", False):
470
self.disable_initiator_tag = (gobject.timeout_add
471
(_timedelta_to_milliseconds
472
(timeout), self.disable))
473
self.expires = datetime.datetime.utcnow() + timeout
423
gobject.source_remove(self.disable_initiator_tag)
424
self.disable_initiator_tag = (gobject.timeout_add
425
(self.timeout_milliseconds(),
475
428
def need_approval(self):
476
429
self.last_approval_request = datetime.datetime.utcnow()
633
585
def _get_all_dbus_properties(self):
634
586
"""Returns a generator of (name, attribute) pairs
636
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
637
for cls in self.__class__.__mro__
588
return ((prop._dbus_name, prop)
638
589
for name, prop in
639
inspect.getmembers(cls, self._is_dbus_property))
590
inspect.getmembers(self, self._is_dbus_property))
641
592
def _get_dbus_property(self, interface_name, property_name):
642
593
"""Returns a bound method if one exists which is a D-Bus
643
594
property with the specified name and interface.
645
for cls in self.__class__.__mro__:
646
for name, value in (inspect.getmembers
647
(cls, self._is_dbus_property)):
648
if (value._dbus_name == property_name
649
and value._dbus_interface == interface_name):
650
return value.__get__(self)
596
for name in (property_name,
597
property_name + "_dbus_property"):
598
prop = getattr(self, name, None)
600
or not self._is_dbus_property(prop)
601
or prop._dbus_name != property_name
602
or (interface_name and prop._dbus_interface
603
and interface_name != prop._dbus_interface)):
652
606
# No such property
653
607
raise DBusPropertyNotFound(self.dbus_object_path + ":"
654
608
+ interface_name + "."
750
704
xmlstring = document.toxml("utf-8")
751
705
document.unlink()
752
706
except (AttributeError, xml.dom.DOMException,
753
xml.parsers.expat.ExpatError) as error:
707
xml.parsers.expat.ExpatError), error:
754
708
logger.error("Failed to override Introspection method",
759
def datetime_to_dbus (dt, variant_level=0):
760
"""Convert a UTC datetime.datetime() to a D-Bus type."""
762
return dbus.String("", variant_level = variant_level)
763
return dbus.String(dt.isoformat(),
764
variant_level=variant_level)
766
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
768
"""Applied to an empty subclass of a D-Bus object, this metaclass
769
will add additional D-Bus attributes matching a certain pattern.
771
def __new__(mcs, name, bases, attr):
772
# Go through all the base classes which could have D-Bus
773
# methods, signals, or properties in them
774
for base in (b for b in bases
775
if issubclass(b, dbus.service.Object)):
776
# Go though all attributes of the base class
777
for attrname, attribute in inspect.getmembers(base):
778
# Ignore non-D-Bus attributes, and D-Bus attributes
779
# with the wrong interface name
780
if (not hasattr(attribute, "_dbus_interface")
781
or not attribute._dbus_interface
782
.startswith("se.recompile.Mandos")):
784
# Create an alternate D-Bus interface name based on
786
alt_interface = (attribute._dbus_interface
787
.replace("se.recompile.Mandos",
788
"se.bsnet.fukt.Mandos"))
789
# Is this a D-Bus signal?
790
if getattr(attribute, "_dbus_is_signal", False):
791
# Extract the original non-method function by
793
nonmethod_func = (dict(
794
zip(attribute.func_code.co_freevars,
795
attribute.__closure__))["func"]
797
# Create a new, but exactly alike, function
798
# object, and decorate it to be a new D-Bus signal
799
# with the alternate D-Bus interface name
800
new_function = (dbus.service.signal
802
attribute._dbus_signature)
804
nonmethod_func.func_code,
805
nonmethod_func.func_globals,
806
nonmethod_func.func_name,
807
nonmethod_func.func_defaults,
808
nonmethod_func.func_closure)))
809
# Define a creator of a function to call both the
810
# old and new functions, so both the old and new
811
# signals gets sent when the function is called
812
def fixscope(func1, func2):
813
"""This function is a scope container to pass
814
func1 and func2 to the "call_both" function
815
outside of its arguments"""
816
def call_both(*args, **kwargs):
817
"""This function will emit two D-Bus
818
signals by calling func1 and func2"""
819
func1(*args, **kwargs)
820
func2(*args, **kwargs)
822
# Create the "call_both" function and add it to
824
attr[attrname] = fixscope(attribute,
826
# Is this a D-Bus method?
827
elif getattr(attribute, "_dbus_is_method", False):
828
# Create a new, but exactly alike, function
829
# object. Decorate it to be a new D-Bus method
830
# with the alternate D-Bus interface name. Add it
832
attr[attrname] = (dbus.service.method
834
attribute._dbus_in_signature,
835
attribute._dbus_out_signature)
837
(attribute.func_code,
838
attribute.func_globals,
840
attribute.func_defaults,
841
attribute.func_closure)))
842
# Is this a D-Bus property?
843
elif getattr(attribute, "_dbus_is_property", False):
844
# Create a new, but exactly alike, function
845
# object, and decorate it to be a new D-Bus
846
# property with the alternate D-Bus interface
847
# name. Add it to the class.
848
attr[attrname] = (dbus_service_property
850
attribute._dbus_signature,
851
attribute._dbus_access,
853
._dbus_get_args_options
856
(attribute.func_code,
857
attribute.func_globals,
859
attribute.func_defaults,
860
attribute.func_closure)))
861
return type.__new__(mcs, name, bases, attr)
863
713
class ClientDBus(Client, DBusObjectWithProperties):
864
714
"""A Client class using D-Bus
887
737
DBusObjectWithProperties.__init__(self, self.bus,
888
738
self.dbus_object_path)
890
def notifychangeproperty(transform_func,
891
dbus_name, type_func=lambda x: x,
893
""" Modify a variable so that it's a property which announces
740
def _get_approvals_pending(self):
741
return self._approvals_pending
742
def _set_approvals_pending(self, value):
743
old_value = self._approvals_pending
744
self._approvals_pending = value
746
if (hasattr(self, "dbus_object_path")
747
and bval is not bool(old_value)):
748
dbus_bool = dbus.Boolean(bval, variant_level=1)
749
self.PropertyChanged(dbus.String("ApprovalPending"),
896
transform_fun: Function that takes a value and a variant_level
897
and transforms it to a D-Bus type.
898
dbus_name: D-Bus name of the variable
899
type_func: Function that transform the value before sending it
900
to the D-Bus. Default: no transform
901
variant_level: D-Bus variant level. Default: 1
903
attrname = "_{0}".format(dbus_name)
904
def setter(self, value):
905
if hasattr(self, "dbus_object_path"):
906
if (not hasattr(self, attrname) or
907
type_func(getattr(self, attrname, None))
908
!= type_func(value)):
909
dbus_value = transform_func(type_func(value),
912
self.PropertyChanged(dbus.String(dbus_name),
914
setattr(self, attrname, value)
916
return property(lambda self: getattr(self, attrname), setter)
919
expires = notifychangeproperty(datetime_to_dbus, "Expires")
920
approvals_pending = notifychangeproperty(dbus.Boolean,
923
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
924
last_enabled = notifychangeproperty(datetime_to_dbus,
926
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
927
type_func = lambda checker:
929
last_checked_ok = notifychangeproperty(datetime_to_dbus,
931
last_approval_request = notifychangeproperty(
932
datetime_to_dbus, "LastApprovalRequest")
933
approved_by_default = notifychangeproperty(dbus.Boolean,
935
approval_delay = notifychangeproperty(dbus.UInt16,
938
_timedelta_to_milliseconds)
939
approval_duration = notifychangeproperty(
940
dbus.UInt16, "ApprovalDuration",
941
type_func = _timedelta_to_milliseconds)
942
host = notifychangeproperty(dbus.String, "Host")
943
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
945
_timedelta_to_milliseconds)
946
extended_timeout = notifychangeproperty(
947
dbus.UInt16, "ExtendedTimeout",
948
type_func = _timedelta_to_milliseconds)
949
interval = notifychangeproperty(dbus.UInt16,
952
_timedelta_to_milliseconds)
953
checker_command = notifychangeproperty(dbus.String, "Checker")
955
del notifychangeproperty
752
approvals_pending = property(_get_approvals_pending,
753
_set_approvals_pending)
754
del _get_approvals_pending, _set_approvals_pending
757
def _datetime_to_dbus(dt, variant_level=0):
758
"""Convert a UTC datetime.datetime() to a D-Bus type."""
759
return dbus.String(dt.isoformat(),
760
variant_level=variant_level)
763
oldstate = getattr(self, "enabled", False)
764
r = Client.enable(self)
765
if oldstate != self.enabled:
767
self.PropertyChanged(dbus.String("Enabled"),
768
dbus.Boolean(True, variant_level=1))
769
self.PropertyChanged(
770
dbus.String("LastEnabled"),
771
self._datetime_to_dbus(self.last_enabled,
775
def disable(self, quiet = False):
776
oldstate = getattr(self, "enabled", False)
777
r = Client.disable(self, quiet=quiet)
778
if not quiet and oldstate != self.enabled:
780
self.PropertyChanged(dbus.String("Enabled"),
781
dbus.Boolean(False, variant_level=1))
957
784
def __del__(self, *args, **kwargs):
982
812
return Client.checker_callback(self, pid, condition, command,
815
def checked_ok(self, *args, **kwargs):
816
r = Client.checked_ok(self, *args, **kwargs)
818
self.PropertyChanged(
819
dbus.String("LastCheckedOK"),
820
(self._datetime_to_dbus(self.last_checked_ok,
824
def need_approval(self, *args, **kwargs):
825
r = Client.need_approval(self, *args, **kwargs)
827
self.PropertyChanged(
828
dbus.String("LastApprovalRequest"),
829
(self._datetime_to_dbus(self.last_approval_request,
985
833
def start_checker(self, *args, **kwargs):
986
834
old_checker = self.checker
987
835
if self.checker is not None:
994
842
and old_checker_pid != self.checker.pid):
995
843
# Emit D-Bus signal
996
844
self.CheckerStarted(self.current_checker_command)
845
self.PropertyChanged(
846
dbus.String("CheckerRunning"),
847
dbus.Boolean(True, variant_level=1))
850
def stop_checker(self, *args, **kwargs):
851
old_checker = getattr(self, "checker", None)
852
r = Client.stop_checker(self, *args, **kwargs)
853
if (old_checker is not None
854
and getattr(self, "checker", None) is None):
855
self.PropertyChanged(dbus.String("CheckerRunning"),
856
dbus.Boolean(False, variant_level=1))
999
859
def _reset_approved(self):
1000
860
self._approved = None
1109
972
if value is None: # get
1110
973
return dbus.UInt64(self.approval_delay_milliseconds())
1111
974
self.approval_delay = datetime.timedelta(0, 0, 0, value)
976
self.PropertyChanged(dbus.String("ApprovalDelay"),
977
dbus.UInt64(value, variant_level=1))
1113
979
# ApprovalDuration - property
1114
980
@dbus_service_property(_interface, signature="t",
1115
981
access="readwrite")
1116
982
def ApprovalDuration_dbus_property(self, value=None):
1117
983
if value is None: # get
1118
return dbus.UInt64(_timedelta_to_milliseconds(
984
return dbus.UInt64(self._timedelta_to_milliseconds(
1119
985
self.approval_duration))
1120
986
self.approval_duration = datetime.timedelta(0, 0, 0, value)
988
self.PropertyChanged(dbus.String("ApprovalDuration"),
989
dbus.UInt64(value, variant_level=1))
1122
991
# Name - property
1123
992
@dbus_service_property(_interface, signature="s", access="read")
1136
1005
if value is None: # get
1137
1006
return dbus.String(self.host)
1138
1007
self.host = value
1009
self.PropertyChanged(dbus.String("Host"),
1010
dbus.String(value, variant_level=1))
1140
1012
# Created - property
1141
1013
@dbus_service_property(_interface, signature="s", access="read")
1142
1014
def Created_dbus_property(self):
1143
return dbus.String(datetime_to_dbus(self.created))
1015
return dbus.String(self._datetime_to_dbus(self.created))
1145
1017
# LastEnabled - property
1146
1018
@dbus_service_property(_interface, signature="s", access="read")
1147
1019
def LastEnabled_dbus_property(self):
1148
return datetime_to_dbus(self.last_enabled)
1020
if self.last_enabled is None:
1021
return dbus.String("")
1022
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1150
1024
# Enabled - property
1151
1025
@dbus_service_property(_interface, signature="b",
1184
1060
if value is None: # get
1185
1061
return dbus.UInt64(self.timeout_milliseconds())
1186
1062
self.timeout = datetime.timedelta(0, 0, 0, value)
1064
self.PropertyChanged(dbus.String("Timeout"),
1065
dbus.UInt64(value, variant_level=1))
1187
1066
if getattr(self, "disable_initiator_tag", None) is None:
1189
1068
# Reschedule timeout
1190
1069
gobject.source_remove(self.disable_initiator_tag)
1191
1070
self.disable_initiator_tag = None
1193
time_to_die = _timedelta_to_milliseconds((self
1071
time_to_die = (self.
1072
_timedelta_to_milliseconds((self
1198
1077
if time_to_die <= 0:
1199
1078
# The timeout has passed
1202
self.expires = (datetime.datetime.utcnow()
1203
+ datetime.timedelta(milliseconds =
1205
1081
self.disable_initiator_tag = (gobject.timeout_add
1206
1082
(time_to_die, self.disable))
1208
# ExtendedTimeout - property
1209
@dbus_service_property(_interface, signature="t",
1211
def ExtendedTimeout_dbus_property(self, value=None):
1212
if value is None: # get
1213
return dbus.UInt64(self.extended_timeout_milliseconds())
1214
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1216
1084
# Interval - property
1217
1085
@dbus_service_property(_interface, signature="t",
1218
1086
access="readwrite")
1332
1205
if int(line.strip().split()[0]) > 1:
1333
1206
raise RuntimeError
1334
except (ValueError, IndexError, RuntimeError) as error:
1207
except (ValueError, IndexError, RuntimeError), error:
1335
1208
logger.error("Unknown protocol version: %s", error)
1338
1211
# Start GnuTLS connection
1340
1213
session.handshake()
1341
except gnutls.errors.GNUTLSError as error:
1214
except gnutls.errors.GNUTLSError, error:
1342
1215
logger.warning("Handshake failed: %s", error)
1343
1216
# Do not run session.bye() here: the session is not
1344
1217
# established. Just abandon the request.
1346
1219
logger.debug("Handshake succeeded")
1348
1221
approval_required = False
1351
1224
fpr = self.fingerprint(self.peer_certificate
1354
gnutls.errors.GNUTLSError) as error:
1226
except (TypeError, gnutls.errors.GNUTLSError), error:
1355
1227
logger.warning("Bad certificate: %s", error)
1357
1229
logger.debug("Fingerprint: %s", fpr)
1360
1232
client = ProxyClient(child_pipe, fpr,
1361
1233
self.client_address)
1534
1401
This function creates a new pipe in self.pipe
1536
1403
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1538
proc = MultiprocessingMixIn.process_request(self, request,
1405
super(MultiprocessingMixInWithPipe,
1406
self).process_request(request, client_address)
1540
1407
self.child_pipe.close()
1541
self.add_pipe(parent_pipe, proc)
1543
def add_pipe(self, parent_pipe, proc):
1408
self.add_pipe(parent_pipe)
1410
def add_pipe(self, parent_pipe):
1544
1411
"""Dummy function; override as necessary"""
1545
1412
raise NotImplementedError
1548
1414
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1549
1415
socketserver.TCPServer, object):
1550
1416
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1634
1500
def server_activate(self):
1635
1501
if self.enabled:
1636
1502
return socketserver.TCPServer.server_activate(self)
1638
1503
def enable(self):
1639
1504
self.enabled = True
1641
def add_pipe(self, parent_pipe, proc):
1505
def add_pipe(self, parent_pipe):
1642
1506
# Call "handle_ipc" for both data and EOF events
1643
1507
gobject.io_add_watch(parent_pipe.fileno(),
1644
1508
gobject.IO_IN | gobject.IO_HUP,
1645
1509
functools.partial(self.handle_ipc,
1510
parent_pipe = parent_pipe))
1650
1512
def handle_ipc(self, source, condition, parent_pipe=None,
1651
proc = None, client_object=None):
1513
client_object=None):
1652
1514
condition_names = {
1653
1515
gobject.IO_IN: "IN", # There is data to read.
1654
1516
gobject.IO_OUT: "OUT", # Data can be written (without
1685
logger.info("Client not found for fingerprint: %s, ad"
1686
"dress: %s", fpr, address)
1545
logger.warning("Client not found for fingerprint: %s, ad"
1546
"dress: %s", fpr, address)
1687
1547
if self.use_dbus:
1688
1548
# Emit D-Bus signal
1689
mandos_dbus_service.ClientNotFound(fpr,
1549
mandos_dbus_service.ClientNotFound(fpr, address[0])
1691
1550
parent_pipe.send(False)
1694
1553
gobject.io_add_watch(parent_pipe.fileno(),
1695
1554
gobject.IO_IN | gobject.IO_HUP,
1696
1555
functools.partial(self.handle_ipc,
1556
parent_pipe = parent_pipe,
1557
client_object = client))
1702
1558
parent_pipe.send(True)
1703
# remove the old hook in favor of the new above hook on
1559
# remove the old hook in favor of the new above hook on same fileno
1706
1561
if command == 'funcall':
1707
1562
funcname = request[1]
1708
1563
args = request[2]
1709
1564
kwargs = request[3]
1711
parent_pipe.send(('data', getattr(client_object,
1566
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1715
1568
if command == 'getattr':
1716
1569
attrname = request[1]
1717
1570
if callable(client_object.__getattribute__(attrname)):
1718
1571
parent_pipe.send(('function',))
1720
parent_pipe.send(('data', client_object
1721
.__getattribute__(attrname)))
1573
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1723
1575
if command == 'setattr':
1724
1576
attrname = request[1]
1725
1577
value = request[2]
1726
1578
setattr(client_object, attrname, value)
1821
1673
##################################################################
1822
1674
# Parsing of options, both command line and config file
1824
parser = argparse.ArgumentParser()
1825
parser.add_argument("-v", "--version", action="version",
1826
version = "%%(prog)s %s" % version,
1827
help="show version number and exit")
1828
parser.add_argument("-i", "--interface", metavar="IF",
1829
help="Bind to interface IF")
1830
parser.add_argument("-a", "--address",
1831
help="Address to listen for requests on")
1832
parser.add_argument("-p", "--port", type=int,
1833
help="Port number to receive requests on")
1834
parser.add_argument("--check", action="store_true",
1835
help="Run self-test")
1836
parser.add_argument("--debug", action="store_true",
1837
help="Debug mode; run in foreground and log"
1839
parser.add_argument("--debuglevel", metavar="LEVEL",
1840
help="Debug level for stdout output")
1841
parser.add_argument("--priority", help="GnuTLS"
1842
" priority string (see GnuTLS documentation)")
1843
parser.add_argument("--servicename",
1844
metavar="NAME", help="Zeroconf service name")
1845
parser.add_argument("--configdir",
1846
default="/etc/mandos", metavar="DIR",
1847
help="Directory to search for configuration"
1849
parser.add_argument("--no-dbus", action="store_false",
1850
dest="use_dbus", help="Do not provide D-Bus"
1851
" system bus interface")
1852
parser.add_argument("--no-ipv6", action="store_false",
1853
dest="use_ipv6", help="Do not use IPv6")
1854
options = parser.parse_args()
1676
parser = optparse.OptionParser(version = "%%prog %s" % version)
1677
parser.add_option("-i", "--interface", type="string",
1678
metavar="IF", help="Bind to interface IF")
1679
parser.add_option("-a", "--address", type="string",
1680
help="Address to listen for requests on")
1681
parser.add_option("-p", "--port", type="int",
1682
help="Port number to receive requests on")
1683
parser.add_option("--check", action="store_true",
1684
help="Run self-test")
1685
parser.add_option("--debug", action="store_true",
1686
help="Debug mode; run in foreground and log to"
1688
parser.add_option("--debuglevel", type="string", metavar="LEVEL",
1689
help="Debug level for stdout output")
1690
parser.add_option("--priority", type="string", help="GnuTLS"
1691
" priority string (see GnuTLS documentation)")
1692
parser.add_option("--servicename", type="string",
1693
metavar="NAME", help="Zeroconf service name")
1694
parser.add_option("--configdir", type="string",
1695
default="/etc/mandos", metavar="DIR",
1696
help="Directory to search for configuration"
1698
parser.add_option("--no-dbus", action="store_false",
1699
dest="use_dbus", help="Do not provide D-Bus"
1700
" system bus interface")
1701
parser.add_option("--no-ipv6", action="store_false",
1702
dest="use_ipv6", help="Do not use IPv6")
1703
options = parser.parse_args()[0]
1856
1705
if options.check: