168
173
# End of Avahi example code
 
171
 
class Client(object):
 
 
176
def _datetime_to_dbus(dt, variant_level=0):
 
 
177
    """Convert a UTC datetime.datetime() to a D-Bus type."""
 
 
178
    return dbus.String(dt.isoformat(), variant_level=variant_level)
 
 
181
class Client(dbus.service.Object):
 
172
182
    """A representation of a client host served by this server.
 
174
 
    name:      string; from the config file, used in log messages
 
 
184
    name:       string; from the config file, used in log messages and
 
175
186
    fingerprint: string (40 or 32 hexadecimal digits); used to
 
176
187
                 uniquely identify the client
 
177
 
    secret:    bytestring; sent verbatim (over TLS) to client
 
178
 
    host:      string; available for use by the checker command
 
179
 
    created:   datetime.datetime(); object creation, not client host
 
180
 
    last_checked_ok: datetime.datetime() or None if not yet checked OK
 
181
 
    timeout:   datetime.timedelta(); How long from last_checked_ok
 
182
 
                                     until this client is invalid
 
183
 
    interval:  datetime.timedelta(); How often to start a new checker
 
184
 
    stop_hook: If set, called by stop() as stop_hook(self)
 
185
 
    checker:   subprocess.Popen(); a running checker process used
 
186
 
                                   to see if the client lives.
 
187
 
                                   'None' if no process is running.
 
 
188
    secret:     bytestring; sent verbatim (over TLS) to client
 
 
189
    host:       string; available for use by the checker command
 
 
190
    created:    datetime.datetime(); (UTC) object creation
 
 
191
    last_enabled: datetime.datetime(); (UTC)
 
 
193
    last_checked_ok: datetime.datetime(); (UTC) or None
 
 
194
    timeout:    datetime.timedelta(); How long from last_checked_ok
 
 
195
                                      until this client is invalid
 
 
196
    interval:   datetime.timedelta(); How often to start a new checker
 
 
197
    disable_hook:  If set, called by disable() as disable_hook(self)
 
 
198
    checker:    subprocess.Popen(); a running checker process used
 
 
199
                                    to see if the client lives.
 
 
200
                                    'None' if no process is running.
 
188
201
    checker_initiator_tag: a gobject event source tag, or None
 
189
 
    stop_initiator_tag:    - '' -
 
 
202
    disable_initiator_tag:    - '' -
 
190
203
    checker_callback_tag:  - '' -
 
191
204
    checker_command: string; External command which is run to check if
 
192
205
                     client lives.  %() expansions are done at
 
193
206
                     runtime with vars(self) as dict, so that for
 
194
207
                     instance %(name)s can be used in the command.
 
196
 
    _timeout: Real variable for 'timeout'
 
197
 
    _interval: Real variable for 'interval'
 
198
 
    _timeout_milliseconds: Used when calling gobject.timeout_add()
 
199
 
    _interval_milliseconds: - '' -
 
 
208
    current_checker_command: string; current running checker_command
 
 
209
    use_dbus: bool(); Whether to provide D-Bus interface and signals
 
 
210
    dbus_object_path: dbus.ObjectPath ; only set if self.use_dbus
 
201
 
    def _set_timeout(self, timeout):
 
202
 
        "Setter function for 'timeout' attribute"
 
203
 
        self._timeout = timeout
 
204
 
        self._timeout_milliseconds = ((self.timeout.days
 
205
 
                                       * 24 * 60 * 60 * 1000)
 
206
 
                                      + (self.timeout.seconds * 1000)
 
207
 
                                      + (self.timeout.microseconds
 
209
 
    timeout = property(lambda self: self._timeout,
 
212
 
    def _set_interval(self, interval):
 
213
 
        "Setter function for 'interval' attribute"
 
214
 
        self._interval = interval
 
215
 
        self._interval_milliseconds = ((self.interval.days
 
216
 
                                        * 24 * 60 * 60 * 1000)
 
217
 
                                       + (self.interval.seconds
 
219
 
                                       + (self.interval.microseconds
 
221
 
    interval = property(lambda self: self._interval,
 
224
 
    def __init__(self, name = None, stop_hook=None, config={}):
 
 
212
    def timeout_milliseconds(self):
 
 
213
        "Return the 'timeout' attribute in milliseconds"
 
 
214
        return ((self.timeout.days * 24 * 60 * 60 * 1000)
 
 
215
                + (self.timeout.seconds * 1000)
 
 
216
                + (self.timeout.microseconds // 1000))
 
 
218
    def interval_milliseconds(self):
 
 
219
        "Return the 'interval' attribute in milliseconds"
 
 
220
        return ((self.interval.days * 24 * 60 * 60 * 1000)
 
 
221
                + (self.interval.seconds * 1000)
 
 
222
                + (self.interval.microseconds // 1000))
 
 
224
    def __init__(self, name = None, disable_hook=None, config=None,
 
225
226
        """Note: the 'checker' key in 'config' sets the
 
226
227
        'checker_command' attribute and *not* the 'checker'
 
229
232
        logger.debug(u"Creating client %r", self.name)
 
 
233
        self.use_dbus = False   # During __init__
 
230
234
        # Uppercase and remove spaces from fingerprint for later
 
231
235
        # comparison purposes with return value from the fingerprint()
 
233
 
        self.fingerprint = config["fingerprint"].upper()\
 
 
237
        self.fingerprint = (config["fingerprint"].upper()
 
235
239
        logger.debug(u"  Fingerprint: %s", self.fingerprint)
 
236
240
        if "secret" in config:
 
237
241
            self.secret = config["secret"].decode(u"base64")
 
238
242
        elif "secfile" in config:
 
239
 
            sf = open(config["secfile"])
 
240
 
            self.secret = sf.read()
 
 
243
            with closing(open(os.path.expanduser
 
 
245
                               (config["secfile"])))) as secfile:
 
 
246
                self.secret = secfile.read()
 
243
248
            raise TypeError(u"No secret or secfile for client %s"
 
245
250
        self.host = config.get("host", "")
 
246
 
        self.created = datetime.datetime.now()
 
 
251
        self.created = datetime.datetime.utcnow()
 
 
253
        self.last_enabled = None
 
247
254
        self.last_checked_ok = None
 
248
255
        self.timeout = string_to_delta(config["timeout"])
 
249
256
        self.interval = string_to_delta(config["interval"])
 
250
 
        self.stop_hook = stop_hook
 
 
257
        self.disable_hook = disable_hook
 
251
258
        self.checker = None
 
252
259
        self.checker_initiator_tag = None
 
253
 
        self.stop_initiator_tag = None
 
 
260
        self.disable_initiator_tag = None
 
254
261
        self.checker_callback_tag = None
 
255
 
        self.check_command = config["checker"]
 
 
262
        self.checker_command = config["checker"]
 
 
263
        self.current_checker_command = None
 
 
264
        self.last_connect = None
 
 
265
        # Only now, when this client is initialized, can it show up on
 
 
267
        self.use_dbus = use_dbus
 
 
269
            self.dbus_object_path = (dbus.ObjectPath
 
 
271
                                      + self.name.replace(".", "_")))
 
 
272
            dbus.service.Object.__init__(self, bus,
 
 
273
                                         self.dbus_object_path)
 
257
276
        """Start this client's checker and timeout hooks"""
 
 
277
        self.last_enabled = datetime.datetime.utcnow()
 
258
278
        # Schedule a new checker to be started an 'interval' from now,
 
259
279
        # and every interval from then on.
 
260
 
        self.checker_initiator_tag = gobject.timeout_add\
 
261
 
                                     (self._interval_milliseconds,
 
 
280
        self.checker_initiator_tag = (gobject.timeout_add
 
 
281
                                      (self.interval_milliseconds(),
 
263
283
        # Also start a new checker *right now*.
 
264
284
        self.start_checker()
 
265
 
        # Schedule a stop() when 'timeout' has passed
 
266
 
        self.stop_initiator_tag = gobject.timeout_add\
 
267
 
                                  (self._timeout_milliseconds,
 
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:
 
275
 
            logger.info(u"Stopping client %s", self.name)
 
 
285
        # Schedule a disable() when 'timeout' has passed
 
 
286
        self.disable_initiator_tag = (gobject.timeout_add
 
 
287
                                   (self.timeout_milliseconds(),
 
 
292
            self.PropertyChanged(dbus.String(u"enabled"),
 
 
293
                                 dbus.Boolean(True, variant_level=1))
 
 
294
            self.PropertyChanged(dbus.String(u"last_enabled"),
 
 
295
                                 (_datetime_to_dbus(self.last_enabled,
 
 
299
        """Disable this client."""
 
 
300
        if not getattr(self, "enabled", False):
 
279
 
        if getattr(self, "stop_initiator_tag", False):
 
280
 
            gobject.source_remove(self.stop_initiator_tag)
 
281
 
            self.stop_initiator_tag = None
 
 
302
        logger.info(u"Disabling client %s", self.name)
 
 
303
        if getattr(self, "disable_initiator_tag", False):
 
 
304
            gobject.source_remove(self.disable_initiator_tag)
 
 
305
            self.disable_initiator_tag = None
 
282
306
        if getattr(self, "checker_initiator_tag", False):
 
283
307
            gobject.source_remove(self.checker_initiator_tag)
 
284
308
            self.checker_initiator_tag = None
 
285
309
        self.stop_checker()
 
 
310
        if self.disable_hook:
 
 
311
            self.disable_hook(self)
 
 
315
            self.PropertyChanged(dbus.String(u"enabled"),
 
 
316
                                 dbus.Boolean(False, variant_level=1))
 
288
317
        # Do not run this again if called by a gobject.timeout_add
 
290
320
    def __del__(self):
 
291
 
        self.stop_hook = None
 
293
 
    def checker_callback(self, pid, condition):
 
 
321
        self.disable_hook = None
 
 
324
    def checker_callback(self, pid, condition, command):
 
294
325
        """The checker has completed, so take appropriate actions."""
 
295
 
        now = datetime.datetime.now()
 
296
326
        self.checker_callback_tag = None
 
297
327
        self.checker = None
 
298
 
        if os.WIFEXITED(condition) \
 
299
 
               and (os.WEXITSTATUS(condition) == 0):
 
300
 
            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,
 
307
 
        elif not os.WIFEXITED(condition):
 
 
330
            self.PropertyChanged(dbus.String(u"checker_running"),
 
 
331
                                 dbus.Boolean(False, variant_level=1))
 
 
332
        if os.WIFEXITED(condition):
 
 
333
            exitstatus = os.WEXITSTATUS(condition)
 
 
335
                logger.info(u"Checker for %(name)s succeeded",
 
 
339
                logger.info(u"Checker for %(name)s failed",
 
 
343
                self.CheckerCompleted(dbus.Int16(exitstatus),
 
 
344
                                      dbus.Int64(condition),
 
 
345
                                      dbus.String(command))
 
308
347
            logger.warning(u"Checker for %(name)s crashed?",
 
311
 
            logger.info(u"Checker for %(name)s failed",
 
 
351
                self.CheckerCompleted(dbus.Int16(-1),
 
 
352
                                      dbus.Int64(condition),
 
 
353
                                      dbus.String(command))
 
 
355
    def checked_ok(self):
 
 
356
        """Bump up the timeout for this client.
 
 
357
        This should only be called when the client has been seen,
 
 
360
        self.last_checked_ok = datetime.datetime.utcnow()
 
 
361
        gobject.source_remove(self.disable_initiator_tag)
 
 
362
        self.disable_initiator_tag = (gobject.timeout_add
 
 
363
                                      (self.timeout_milliseconds(),
 
 
367
            self.PropertyChanged(
 
 
368
                dbus.String(u"last_checked_ok"),
 
 
369
                (_datetime_to_dbus(self.last_checked_ok,
 
313
372
    def start_checker(self):
 
314
373
        """Start a new checker subprocess if one is not running.
 
315
374
        If a checker already exists, leave it running and do
 
 
372
456
            if error.errno != errno.ESRCH: # No such process
 
374
458
        self.checker = None
 
 
460
            self.PropertyChanged(dbus.String(u"checker_running"),
 
 
461
                                 dbus.Boolean(False, variant_level=1))
 
375
463
    def still_valid(self):
 
376
464
        """Has the timeout not yet passed for this client?"""
 
377
 
        now = datetime.datetime.now()
 
 
465
        if not getattr(self, "enabled", False):
 
 
467
        now = datetime.datetime.utcnow()
 
378
468
        if self.last_checked_ok is None:
 
379
469
            return now < (self.created + self.timeout)
 
381
471
            return now < (self.last_checked_ok + self.timeout)
 
 
473
    ## D-Bus methods & signals
 
 
474
    _interface = u"se.bsnet.fukt.Mandos.Client"
 
 
477
    CheckedOK = dbus.service.method(_interface)(checked_ok)
 
 
478
    CheckedOK.__name__ = "CheckedOK"
 
 
480
    # CheckerCompleted - signal
 
 
481
    @dbus.service.signal(_interface, signature="nxs")
 
 
482
    def CheckerCompleted(self, exitcode, waitstatus, command):
 
 
486
    # CheckerStarted - signal
 
 
487
    @dbus.service.signal(_interface, signature="s")
 
 
488
    def CheckerStarted(self, command):
 
 
492
    # GetAllProperties - method
 
 
493
    @dbus.service.method(_interface, out_signature="a{sv}")
 
 
494
    def GetAllProperties(self):
 
 
496
        return dbus.Dictionary({
 
 
498
                    dbus.String(self.name, variant_level=1),
 
 
499
                dbus.String("fingerprint"):
 
 
500
                    dbus.String(self.fingerprint, variant_level=1),
 
 
502
                    dbus.String(self.host, variant_level=1),
 
 
503
                dbus.String("created"):
 
 
504
                    _datetime_to_dbus(self.created, variant_level=1),
 
 
505
                dbus.String("last_enabled"):
 
 
506
                    (_datetime_to_dbus(self.last_enabled,
 
 
508
                     if self.last_enabled is not None
 
 
509
                     else dbus.Boolean(False, variant_level=1)),
 
 
510
                dbus.String("enabled"):
 
 
511
                    dbus.Boolean(self.enabled, variant_level=1),
 
 
512
                dbus.String("last_checked_ok"):
 
 
513
                    (_datetime_to_dbus(self.last_checked_ok,
 
 
515
                     if self.last_checked_ok is not None
 
 
516
                     else dbus.Boolean (False, variant_level=1)),
 
 
517
                dbus.String("timeout"):
 
 
518
                    dbus.UInt64(self.timeout_milliseconds(),
 
 
520
                dbus.String("interval"):
 
 
521
                    dbus.UInt64(self.interval_milliseconds(),
 
 
523
                dbus.String("checker"):
 
 
524
                    dbus.String(self.checker_command,
 
 
526
                dbus.String("checker_running"):
 
 
527
                    dbus.Boolean(self.checker is not None,
 
 
529
                dbus.String("object_path"):
 
 
530
                    dbus.ObjectPath(self.dbus_object_path,
 
 
534
    # IsStillValid - method
 
 
535
    IsStillValid = (dbus.service.method(_interface, out_signature="b")
 
 
537
    IsStillValid.__name__ = "IsStillValid"
 
 
539
    # PropertyChanged - signal
 
 
540
    @dbus.service.signal(_interface, signature="sv")
 
 
541
    def PropertyChanged(self, property, value):
 
 
545
    # SetChecker - method
 
 
546
    @dbus.service.method(_interface, in_signature="s")
 
 
547
    def SetChecker(self, checker):
 
 
548
        "D-Bus setter method"
 
 
549
        self.checker_command = checker
 
 
551
        self.PropertyChanged(dbus.String(u"checker"),
 
 
552
                             dbus.String(self.checker_command,
 
 
556
    @dbus.service.method(_interface, in_signature="s")
 
 
557
    def SetHost(self, host):
 
 
558
        "D-Bus setter method"
 
 
561
        self.PropertyChanged(dbus.String(u"host"),
 
 
562
                             dbus.String(self.host, variant_level=1))
 
 
564
    # SetInterval - method
 
 
565
    @dbus.service.method(_interface, in_signature="t")
 
 
566
    def SetInterval(self, milliseconds):
 
 
567
        self.interval = datetime.timedelta(0, 0, 0, milliseconds)
 
 
569
        self.PropertyChanged(dbus.String(u"interval"),
 
 
570
                             (dbus.UInt64(self.interval_milliseconds(),
 
 
574
    @dbus.service.method(_interface, in_signature="ay",
 
 
576
    def SetSecret(self, secret):
 
 
577
        "D-Bus setter method"
 
 
578
        self.secret = str(secret)
 
 
580
    # SetTimeout - method
 
 
581
    @dbus.service.method(_interface, in_signature="t")
 
 
582
    def SetTimeout(self, milliseconds):
 
 
583
        self.timeout = datetime.timedelta(0, 0, 0, milliseconds)
 
 
585
        self.PropertyChanged(dbus.String(u"timeout"),
 
 
586
                             (dbus.UInt64(self.timeout_milliseconds(),
 
 
590
    Enable = dbus.service.method(_interface)(enable)
 
 
591
    Enable.__name__ = "Enable"
 
 
593
    # StartChecker - method
 
 
594
    @dbus.service.method(_interface)
 
 
595
    def StartChecker(self):
 
 
600
    @dbus.service.method(_interface)
 
 
605
    # StopChecker - method
 
 
606
    StopChecker = dbus.service.method(_interface)(stop_checker)
 
 
607
    StopChecker.__name__ = "StopChecker"
 
384
612
def peer_certificate(session):
 
385
613
    "Return the peer's OpenPGP certificate as a bytestring"
 
386
614
    # 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:
 
 
615
    if (gnutls.library.functions
 
 
616
        .gnutls_certificate_type_get(session._c_object)
 
 
617
        != gnutls.library.constants.GNUTLS_CRT_OPENPGP):
 
390
618
        # ...do the normal thing
 
391
619
        return session.peer_certificate
 
392
 
    list_size = ctypes.c_uint()
 
393
 
    cert_list = gnutls.library.functions.gnutls_certificate_get_peers\
 
394
 
        (session._c_object, ctypes.byref(list_size))
 
 
620
    list_size = ctypes.c_uint(1)
 
 
621
    cert_list = (gnutls.library.functions
 
 
622
                 .gnutls_certificate_get_peers
 
 
623
                 (session._c_object, ctypes.byref(list_size)))
 
 
624
    if not bool(cert_list) and list_size.value != 0:
 
 
625
        raise gnutls.errors.GNUTLSError("error getting peer"
 
395
627
    if list_size.value == 0:
 
397
629
    cert = cert_list[0]
 
 
401
633
def fingerprint(openpgp):
 
402
634
    "Convert an OpenPGP bytestring to a hexdigit fingerprint string"
 
403
635
    # 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)))
 
 
636
    datum = (gnutls.library.types
 
 
637
             .gnutls_datum_t(ctypes.cast(ctypes.c_char_p(openpgp),
 
 
640
                             ctypes.c_uint(len(openpgp))))
 
408
641
    # New empty GnuTLS certificate
 
409
642
    crt = gnutls.library.types.gnutls_openpgp_crt_t()
 
410
 
    gnutls.library.functions.gnutls_openpgp_crt_init\
 
 
643
    (gnutls.library.functions
 
 
644
     .gnutls_openpgp_crt_init(ctypes.byref(crt)))
 
412
645
    # 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)
 
 
646
    (gnutls.library.functions
 
 
647
     .gnutls_openpgp_crt_import(crt, ctypes.byref(datum),
 
 
648
                                gnutls.library.constants
 
 
649
                                .GNUTLS_OPENPGP_FMT_RAW))
 
416
650
    # 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))
 
 
651
    crtverify = ctypes.c_uint()
 
 
652
    (gnutls.library.functions
 
 
653
     .gnutls_openpgp_crt_verify_self(crt, 0, ctypes.byref(crtverify)))
 
420
654
    if crtverify.value != 0:
 
421
655
        gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
 
422
656
        raise gnutls.errors.CertificateSecurityError("Verify failed")
 
423
657
    # New buffer for the fingerprint
 
424
 
    buffer = ctypes.create_string_buffer(20)
 
425
 
    buffer_length = ctypes.c_size_t()
 
 
658
    buf = ctypes.create_string_buffer(20)
 
 
659
    buf_len = ctypes.c_size_t()
 
426
660
    # 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))
 
 
661
    (gnutls.library.functions
 
 
662
     .gnutls_openpgp_crt_get_fingerprint(crt, ctypes.byref(buf),
 
 
663
                                         ctypes.byref(buf_len)))
 
429
664
    # Deinit the certificate
 
430
665
    gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
 
431
666
    # Convert the buffer to a Python bytestring
 
432
 
    fpr = ctypes.string_at(buffer, buffer_length.value)
 
 
667
    fpr = ctypes.string_at(buf, buf_len.value)
 
433
668
    # Convert the bytestring to hexadecimal notation
 
434
669
    hex_fpr = u''.join(u"%02X" % ord(char) for char in fpr)
 
438
 
class tcp_handler(SocketServer.BaseRequestHandler, object):
 
 
673
class TCP_handler(SocketServer.BaseRequestHandler, object):
 
439
674
    """A TCP request handler class.
 
440
675
    Instantiated by IPv6_TCPServer for each request to handle it.
 
441
676
    Note: This will run in its own forked process."""
 
443
678
    def handle(self):
 
444
679
        logger.info(u"TCP connection from: %s",
 
445
 
                     unicode(self.client_address))
 
446
 
        session = gnutls.connection.ClientSession\
 
447
 
                  (self.request, gnutls.connection.X509Credentials())
 
 
680
                    unicode(self.client_address))
 
 
681
        session = (gnutls.connection
 
 
682
                   .ClientSession(self.request,
 
449
686
        line = self.request.makefile().readline()
 
450
687
        logger.debug(u"Protocol version: %r", line)
 
 
751
1019
    # Parse config file with clients
 
752
1020
    client_defaults = { "timeout": "1h",
 
753
1021
                        "interval": "5m",
 
754
 
                        "checker": "fping -q -- %(host)s",
 
 
1022
                        "checker": "fping -q -- %%(host)s",
 
757
1025
    client_config = ConfigParser.SafeConfigParser(client_defaults)
 
758
1026
    client_config.read(os.path.join(server_settings["configdir"],
 
759
1027
                                    "clients.conf"))
 
 
1030
    tcp_server = IPv6_TCPServer((server_settings["address"],
 
 
1031
                                 server_settings["port"]),
 
 
1033
                                settings=server_settings,
 
 
1034
                                clients=clients, use_ipv6=use_ipv6)
 
 
1035
    pidfilename = "/var/run/mandos.pid"
 
 
1037
        pidfile = open(pidfilename, "w")
 
 
1039
        logger.error("Could not open file %r", pidfilename)
 
 
1042
        uid = pwd.getpwnam("_mandos").pw_uid
 
 
1043
        gid = pwd.getpwnam("_mandos").pw_gid
 
 
1046
            uid = pwd.getpwnam("mandos").pw_uid
 
 
1047
            gid = pwd.getpwnam("mandos").pw_gid
 
 
1050
                uid = pwd.getpwnam("nobody").pw_uid
 
 
1051
                gid = pwd.getpwnam("nogroup").pw_gid
 
 
1058
    except OSError, error:
 
 
1059
        if error[0] != errno.EPERM:
 
 
1062
    # Enable all possible GnuTLS debugging
 
 
1064
        # "Use a log level over 10 to enable all debugging options."
 
 
1066
        gnutls.library.functions.gnutls_global_set_log_level(11)
 
 
1068
        @gnutls.library.types.gnutls_log_func
 
 
1069
        def debug_gnutls(level, string):
 
 
1070
            logger.debug("GnuTLS: %s", string[:-1])
 
 
1072
        (gnutls.library.functions
 
 
1073
         .gnutls_global_set_log_function(debug_gnutls))
 
 
1076
    protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
 
762
1077
    service = AvahiService(name = server_settings["servicename"],
 
763
 
                           type = "_mandos._tcp", );
 
 
1078
                           servicetype = "_mandos._tcp",
 
 
1079
                           protocol = protocol)
 
764
1080
    if server_settings["interface"]:
 
765
 
        service.interface = if_nametoindex\
 
766
 
                            (server_settings["interface"])
 
 
1081
        service.interface = (if_nametoindex
 
 
1082
                             (server_settings["interface"]))
 
768
1084
    global main_loop
 
 
837
1149
    signal.signal(signal.SIGHUP, lambda signum, frame: sys.exit())
 
838
1150
    signal.signal(signal.SIGTERM, lambda signum, frame: sys.exit())
 
 
1153
        class MandosServer(dbus.service.Object):
 
 
1154
            """A D-Bus proxy object"""
 
 
1156
                dbus.service.Object.__init__(self, bus, "/")
 
 
1157
            _interface = u"se.bsnet.fukt.Mandos"
 
 
1159
            @dbus.service.signal(_interface, signature="oa{sv}")
 
 
1160
            def ClientAdded(self, objpath, properties):
 
 
1164
            @dbus.service.signal(_interface, signature="os")
 
 
1165
            def ClientRemoved(self, objpath, name):
 
 
1169
            @dbus.service.method(_interface, out_signature="ao")
 
 
1170
            def GetAllClients(self):
 
 
1172
                return dbus.Array(c.dbus_object_path for c in clients)
 
 
1174
            @dbus.service.method(_interface, out_signature="a{oa{sv}}")
 
 
1175
            def GetAllClientsWithProperties(self):
 
 
1177
                return dbus.Dictionary(
 
 
1178
                    ((c.dbus_object_path, c.GetAllProperties())
 
 
1182
            @dbus.service.method(_interface, in_signature="o")
 
 
1183
            def RemoveClient(self, object_path):
 
 
1186
                    if c.dbus_object_path == object_path:
 
 
1188
                        # Don't signal anything except ClientRemoved
 
 
1192
                        self.ClientRemoved(object_path, c.name)
 
 
1198
        mandos_server = MandosServer()
 
840
1200
    for client in clients:
 
843
 
    tcp_server = IPv6_TCPServer((server_settings["address"],
 
844
 
                                 server_settings["port"]),
 
846
 
                                settings=server_settings,
 
 
1203
            mandos_server.ClientAdded(client.dbus_object_path,
 
 
1204
                                      client.GetAllProperties())
 
 
1208
    tcp_server.server_activate()
 
848
1210
    # Find out what port we got
 
849
1211
    service.port = tcp_server.socket.getsockname()[1]
 
850
 
    logger.info(u"Now listening on address %r, port %d, flowinfo %d,"
 
851
 
                u" scope_id %d" % tcp_server.socket.getsockname())
 
 
1213
        logger.info(u"Now listening on address %r, port %d,"
 
 
1214
                    " flowinfo %d, scope_id %d"
 
 
1215
                    % tcp_server.socket.getsockname())
 
 
1217
        logger.info(u"Now listening on address %r, port %d"
 
 
1218
                    % tcp_server.socket.getsockname())
 
853
1220
    #service.interface = tcp_server.socket.getsockname()[3]