/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos

  • Committer: Teddy Hogeborn
  • Date: 2008-08-18 05:57:11 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080818055711-2rpzat3hkbq3us62
No code or documentation changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# This program is partly derived from an example program for an Avahi
7
7
# service publisher, downloaded from
8
8
# <http://avahi.org/wiki/PythonPublishExample>.  This includes the
9
 
# following functions: "AvahiService.add", "AvahiService.remove",
10
 
# "server_state_changed", "entry_group_state_changed", and some lines
11
 
# in "main".
 
9
# methods "add" and "remove" in the "AvahiService" class, the
 
10
# "server_state_changed" and "entry_group_state_changed" functions,
 
11
# and some lines in "main".
12
12
13
13
# Everything else is
14
14
# Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
61
61
from dbus.mainloop.glib import DBusGMainLoop
62
62
import ctypes
63
63
 
64
 
# Brief description of the operation of this program:
65
 
66
 
# This server announces itself as a Zeroconf service.  Connecting
67
 
# clients use the TLS protocol, with the unusual quirk that this
68
 
# server program acts as a TLS "client" while a connecting client acts
69
 
# as a TLS "server".  The client (acting as a TLS "server") must
70
 
# supply an OpenPGP certificate, and the fingerprint of this
71
 
# certificate is used by this server to look up (in a list read from a
72
 
# file at start time) which binary blob to give the client.  No other
73
 
# authentication or authorization is done by this server.
74
 
 
 
64
version = "1.0"
75
65
 
76
66
logger = logging.Logger('mandos')
77
67
syslogger = logging.handlers.SysLogHandler\
78
 
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON)
 
68
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
 
69
             address = "/dev/log")
79
70
syslogger.setFormatter(logging.Formatter\
80
 
                        ('%(levelname)s: %(message)s'))
 
71
                        ('Mandos: %(levelname)s: %(message)s'))
81
72
logger.addHandler(syslogger)
82
 
del syslogger
83
73
 
 
74
console = logging.StreamHandler()
 
75
console.setFormatter(logging.Formatter('%(name)s: %(levelname)s:'
 
76
                                       ' %(message)s'))
 
77
logger.addHandler(console)
84
78
 
85
79
class AvahiError(Exception):
86
80
    def __init__(self, value):
96
90
 
97
91
 
98
92
class AvahiService(object):
99
 
    """
 
93
    """An Avahi (Zeroconf) service.
 
94
    Attributes:
100
95
    interface: integer; avahi.IF_UNSPEC or an interface index.
101
96
               Used to optionally bind to the specified interface.
102
 
    name = string; Example: "Mandos"
103
 
    type = string; Example: "_mandos._tcp".
104
 
                   See <http://www.dns-sd.org/ServiceTypes.html>
105
 
    port = integer; what port to announce
106
 
    TXT = list of strings; TXT record for the service
107
 
    domain = string; Domain to publish on, default to .local if empty.
108
 
    host = string; Host to publish records for, default to localhost
109
 
                   if empty.
110
 
    max_renames = integer; maximum number of renames
111
 
    rename_count = integer; counter so we only rename after collisions
112
 
                   a sensible number of times
 
97
    name: string; Example: 'Mandos'
 
98
    type: string; Example: '_mandos._tcp'.
 
99
                  See <http://www.dns-sd.org/ServiceTypes.html>
 
100
    port: integer; what port to announce
 
101
    TXT: list of strings; TXT record for the service
 
102
    domain: string; Domain to publish on, default to .local if empty.
 
103
    host: string; Host to publish records for, default is localhost
 
104
    max_renames: integer; maximum number of renames
 
105
    rename_count: integer; counter so we only rename after collisions
 
106
                  a sensible number of times
113
107
    """
114
108
    def __init__(self, interface = avahi.IF_UNSPEC, name = None,
115
109
                 type = None, port = None, TXT = None, domain = "",
116
 
                 host = "", max_renames = 12):
117
 
        """An Avahi (Zeroconf) service. """
 
110
                 host = "", max_renames = 32768):
118
111
        self.interface = interface
119
112
        self.name = name
120
113
        self.type = type
126
119
        self.domain = domain
127
120
        self.host = host
128
121
        self.rename_count = 0
 
122
        self.max_renames = max_renames
129
123
    def rename(self):
130
124
        """Derived from the Avahi example code"""
131
125
        if self.rename_count >= self.max_renames:
132
126
            logger.critical(u"No suitable service name found after %i"
133
127
                            u" retries, exiting.", rename_count)
134
128
            raise AvahiServiceError("Too many renames")
135
 
        name = server.GetAlternativeServiceName(name)
136
 
        logger.notice(u"Changing name to %r ...", name)
 
129
        self.name = server.GetAlternativeServiceName(self.name)
 
130
        logger.info(u"Changing name to %r ...", str(self.name))
 
131
        syslogger.setFormatter(logging.Formatter\
 
132
                               ('Mandos (%s): %%(levelname)s:'
 
133
                               ' %%(message)s' % self.name))
137
134
        self.remove()
138
135
        self.add()
139
136
        self.rename_count += 1
175
172
    fingerprint: string (40 or 32 hexadecimal digits); used to
176
173
                 uniquely identify the client
177
174
    secret:    bytestring; sent verbatim (over TLS) to client
178
 
    fqdn:      string (FQDN); available for use by the checker command
 
175
    host:      string; available for use by the checker command
179
176
    created:   datetime.datetime(); object creation, not client host
180
177
    last_checked_ok: datetime.datetime() or None if not yet checked OK
181
178
    timeout:   datetime.timedelta(); How long from last_checked_ok
221
218
    interval = property(lambda self: self._interval,
222
219
                        _set_interval)
223
220
    del _set_interval
224
 
    def __init__(self, name=None, stop_hook=None, fingerprint=None,
225
 
                 secret=None, secfile=None, fqdn=None, timeout=None,
226
 
                 interval=-1, checker=None):
227
 
        """Note: the 'checker' argument sets the 'checker_command'
228
 
        attribute and not the 'checker' attribute.."""
 
221
    def __init__(self, name = None, stop_hook=None, config={}):
 
222
        """Note: the 'checker' key in 'config' sets the
 
223
        'checker_command' attribute and *not* the 'checker'
 
224
        attribute."""
229
225
        self.name = name
230
226
        logger.debug(u"Creating client %r", self.name)
231
 
        # Uppercase and remove spaces from fingerprint
232
 
        # for later comparison purposes with return value of
233
 
        # the fingerprint() function
234
 
        self.fingerprint = fingerprint.upper().replace(u" ", u"")
 
227
        # Uppercase and remove spaces from fingerprint for later
 
228
        # comparison purposes with return value from the fingerprint()
 
229
        # function
 
230
        self.fingerprint = config["fingerprint"].upper()\
 
231
                           .replace(u" ", u"")
235
232
        logger.debug(u"  Fingerprint: %s", self.fingerprint)
236
 
        if secret:
237
 
            self.secret = secret.decode(u"base64")
238
 
        elif secfile:
239
 
            sf = open(secfile)
 
233
        if "secret" in config:
 
234
            self.secret = config["secret"].decode(u"base64")
 
235
        elif "secfile" in config:
 
236
            sf = open(config["secfile"])
240
237
            self.secret = sf.read()
241
238
            sf.close()
242
239
        else:
243
240
            raise TypeError(u"No secret or secfile for client %s"
244
241
                            % self.name)
245
 
        self.fqdn = fqdn
 
242
        self.host = config.get("host", "")
246
243
        self.created = datetime.datetime.now()
247
244
        self.last_checked_ok = None
248
 
        self.timeout = string_to_delta(timeout)
249
 
        self.interval = string_to_delta(interval)
 
245
        self.timeout = string_to_delta(config["timeout"])
 
246
        self.interval = string_to_delta(config["interval"])
250
247
        self.stop_hook = stop_hook
251
248
        self.checker = None
252
249
        self.checker_initiator_tag = None
253
250
        self.stop_initiator_tag = None
254
251
        self.checker_callback_tag = None
255
 
        self.check_command = checker
 
252
        self.check_command = config["checker"]
256
253
    def start(self):
257
254
        """Start this client's checker and timeout hooks"""
258
255
        # Schedule a new checker to be started an 'interval' from now,
271
268
        The possibility that a client might be restarted is left open,
272
269
        but not currently used."""
273
270
        # If this client doesn't have a secret, it is already stopped.
274
 
        if self.secret:
275
 
            logger.debug(u"Stopping client %s", self.name)
 
271
        if hasattr(self, "secret") and self.secret:
 
272
            logger.info(u"Stopping client %s", self.name)
276
273
            self.secret = None
277
274
        else:
278
275
            return False
297
294
        self.checker = None
298
295
        if os.WIFEXITED(condition) \
299
296
               and (os.WEXITSTATUS(condition) == 0):
300
 
            logger.debug(u"Checker for %(name)s succeeded",
301
 
                         vars(self))
 
297
            logger.info(u"Checker for %(name)s succeeded",
 
298
                        vars(self))
302
299
            self.last_checked_ok = now
303
300
            gobject.source_remove(self.stop_initiator_tag)
304
301
            self.stop_initiator_tag = gobject.timeout_add\
308
305
            logger.warning(u"Checker for %(name)s crashed?",
309
306
                           vars(self))
310
307
        else:
311
 
            logger.debug(u"Checker for %(name)s failed",
312
 
                         vars(self))
 
308
            logger.info(u"Checker for %(name)s failed",
 
309
                        vars(self))
313
310
    def start_checker(self):
314
311
        """Start a new checker subprocess if one is not running.
315
312
        If a checker already exists, leave it running and do
325
322
        if self.checker is None:
326
323
            try:
327
324
                # In case check_command has exactly one % operator
328
 
                command = self.check_command % self.fqdn
 
325
                command = self.check_command % self.host
329
326
            except TypeError:
330
327
                # Escape attributes for the shell
331
328
                escaped_attrs = dict((key, re.escape(str(val)))
338
335
                                 u' %s', self.check_command, error)
339
336
                    return True # Try again later
340
337
            try:
341
 
                logger.debug(u"Starting checker %r for %s",
342
 
                             command, self.name)
 
338
                logger.info(u"Starting checker %r for %s",
 
339
                            command, self.name)
343
340
                self.checker = subprocess.Popen(command,
344
341
                                                close_fds=True,
345
342
                                                shell=True, cwd="/")
358
355
            self.checker_callback_tag = None
359
356
        if getattr(self, "checker", None) is None:
360
357
            return
361
 
        logger.debug("Stopping checker for %(name)s", vars(self))
 
358
        logger.debug(u"Stopping checker for %(name)s", vars(self))
362
359
        try:
363
360
            os.kill(self.checker.pid, signal.SIGTERM)
364
361
            #os.sleep(0.5)
396
393
 
397
394
def fingerprint(openpgp):
398
395
    "Convert an OpenPGP bytestring to a hexdigit fingerprint string"
399
 
    # New empty GnuTLS certificate
400
 
    crt = gnutls.library.types.gnutls_openpgp_crt_t()
401
 
    gnutls.library.functions.gnutls_openpgp_crt_init\
402
 
        (ctypes.byref(crt))
403
396
    # New GnuTLS "datum" with the OpenPGP public key
404
397
    datum = gnutls.library.types.gnutls_datum_t\
405
398
        (ctypes.cast(ctypes.c_char_p(openpgp),
406
399
                     ctypes.POINTER(ctypes.c_ubyte)),
407
400
         ctypes.c_uint(len(openpgp)))
 
401
    # New empty GnuTLS certificate
 
402
    crt = gnutls.library.types.gnutls_openpgp_crt_t()
 
403
    gnutls.library.functions.gnutls_openpgp_crt_init\
 
404
        (ctypes.byref(crt))
408
405
    # Import the OpenPGP public key into the certificate
409
 
    ret = gnutls.library.functions.gnutls_openpgp_crt_import\
410
 
        (crt,
411
 
         ctypes.byref(datum),
412
 
         gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
 
406
    gnutls.library.functions.gnutls_openpgp_crt_import\
 
407
                    (crt, ctypes.byref(datum),
 
408
                     gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
413
409
    # New buffer for the fingerprint
414
410
    buffer = ctypes.create_string_buffer(20)
415
411
    buffer_length = ctypes.c_size_t()
431
427
    Note: This will run in its own forked process."""
432
428
    
433
429
    def handle(self):
434
 
        logger.debug(u"TCP connection from: %s",
 
430
        logger.info(u"TCP connection from: %s",
435
431
                     unicode(self.client_address))
436
432
        session = gnutls.connection.ClientSession\
437
433
                  (self.request, gnutls.connection.X509Credentials())
463
459
        try:
464
460
            session.handshake()
465
461
        except gnutls.errors.GNUTLSError, error:
466
 
            logger.debug(u"Handshake failed: %s", error)
 
462
            logger.warning(u"Handshake failed: %s", error)
467
463
            # Do not run session.bye() here: the session is not
468
464
            # established.  Just abandon the request.
469
465
            return
470
466
        try:
471
467
            fpr = fingerprint(peer_certificate(session))
472
468
        except (TypeError, gnutls.errors.GNUTLSError), error:
473
 
            logger.debug(u"Bad certificate: %s", error)
 
469
            logger.warning(u"Bad certificate: %s", error)
474
470
            session.bye()
475
471
            return
476
472
        logger.debug(u"Fingerprint: %s", fpr)
480
476
                client = c
481
477
                break
482
478
        if not client:
483
 
            logger.debug(u"Client not found for fingerprint: %s", fpr)
 
479
            logger.warning(u"Client not found for fingerprint: %s",
 
480
                           fpr)
484
481
            session.bye()
485
482
            return
486
483
        # Have to check if client.still_valid(), since it is possible
487
484
        # that the client timed out while establishing the GnuTLS
488
485
        # session.
489
486
        if not client.still_valid():
490
 
            logger.debug(u"Client %(name)s is invalid", vars(client))
 
487
            logger.warning(u"Client %(name)s is invalid",
 
488
                           vars(client))
491
489
            session.bye()
492
490
            return
493
491
        sent_size = 0
528
526
                                       self.settings["interface"])
529
527
            except socket.error, error:
530
528
                if error[0] == errno.EPERM:
531
 
                    logger.warning(u"No permission to"
532
 
                                   u" bind to interface %s",
533
 
                                   self.settings["interface"])
 
529
                    logger.error(u"No permission to"
 
530
                                 u" bind to interface %s",
 
531
                                 self.settings["interface"])
534
532
                else:
535
533
                    raise error
536
534
        # Only bind(2) the socket if we really need to.
539
537
                in6addr_any = "::"
540
538
                self.server_address = (in6addr_any,
541
539
                                       self.server_address[1])
542
 
            elif self.server_address[1] is None:
 
540
            elif not self.server_address[1]:
543
541
                self.server_address = (self.server_address[0],
544
542
                                       0)
 
543
#                 if self.settings["interface"]:
 
544
#                     self.server_address = (self.server_address[0],
 
545
#                                            0, # port
 
546
#                                            0, # flowinfo
 
547
#                                            if_nametoindex
 
548
#                                            (self.settings
 
549
#                                             ["interface"]))
545
550
            return super(type(self), self).server_bind()
546
551
 
547
552
 
582
587
def server_state_changed(state):
583
588
    """Derived from the Avahi example code"""
584
589
    if state == avahi.SERVER_COLLISION:
585
 
        logger.warning(u"Server name collision")
 
590
        logger.error(u"Server name collision")
586
591
        service.remove()
587
592
    elif state == avahi.SERVER_RUNNING:
588
593
        service.add()
627
632
    return if_nametoindex(interface)
628
633
 
629
634
 
630
 
def daemon(nochdir, noclose):
 
635
def daemon(nochdir = False, noclose = False):
631
636
    """See daemon(3).  Standard BSD Unix function.
632
637
    This should really exist as os.daemon, but it doesn't (yet)."""
633
638
    if os.fork():
635
640
    os.setsid()
636
641
    if not nochdir:
637
642
        os.chdir("/")
 
643
    if os.fork():
 
644
        sys.exit()
638
645
    if not noclose:
639
646
        # Close all standard open file descriptors
640
647
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
652
659
    global main_loop_started
653
660
    main_loop_started = False
654
661
    
655
 
    parser = OptionParser()
 
662
    parser = OptionParser(version = "%%prog %s" % version)
656
663
    parser.add_option("-i", "--interface", type="string",
657
664
                      metavar="IF", help="Bind to interface IF")
658
665
    parser.add_option("-a", "--address", type="string",
661
668
                      help="Port number to receive requests on")
662
669
    parser.add_option("--check", action="store_true", default=False,
663
670
                      help="Run self-test")
664
 
    parser.add_option("--debug", action="store_true", default=False,
 
671
    parser.add_option("--debug", action="store_true",
665
672
                      help="Debug mode; run in foreground and log to"
666
673
                      " terminal")
667
674
    parser.add_option("--priority", type="string", help="GnuTLS"
692
699
    # Parse config file for server-global settings
693
700
    server_config = ConfigParser.SafeConfigParser(server_defaults)
694
701
    del server_defaults
695
 
    server_config.read(os.path.join(options.configdir, "server.conf"))
 
702
    server_config.read(os.path.join(options.configdir, "mandos.conf"))
696
703
    server_section = "server"
697
704
    # Convert the SafeConfigParser object to a dict
698
705
    server_settings = dict(server_config.items(server_section))
711
718
    del options
712
719
    # Now we have our good server settings in "server_settings"
713
720
    
 
721
    debug = server_settings["debug"]
 
722
    
 
723
    if not debug:
 
724
        syslogger.setLevel(logging.WARNING)
 
725
        console.setLevel(logging.WARNING)
 
726
    
 
727
    if server_settings["servicename"] != "Mandos":
 
728
        syslogger.setFormatter(logging.Formatter\
 
729
                               ('Mandos (%s): %%(levelname)s:'
 
730
                                ' %%(message)s'
 
731
                                % server_settings["servicename"]))
 
732
    
714
733
    # Parse config file with clients
715
734
    client_defaults = { "timeout": "1h",
716
735
                        "interval": "5m",
717
 
                        "checker": "fping -q -- %%(fqdn)s",
 
736
                        "checker": "fping -q -- %%(host)s",
718
737
                        }
719
738
    client_config = ConfigParser.SafeConfigParser(client_defaults)
720
739
    client_config.read(os.path.join(server_settings["configdir"],
738
757
            avahi.DBUS_INTERFACE_SERVER )
739
758
    # End of Avahi example code
740
759
    
741
 
    debug = server_settings["debug"]
742
 
    
743
 
    if debug:
744
 
        console = logging.StreamHandler()
745
 
        # console.setLevel(logging.DEBUG)
746
 
        console.setFormatter(logging.Formatter\
747
 
                             ('%(levelname)s: %(message)s'))
748
 
        logger.addHandler(console)
749
 
        del console
750
 
    
751
760
    clients = Set()
752
761
    def remove_from_clients(client):
753
762
        clients.remove(client)
754
763
        if not clients:
755
 
            logger.debug(u"No clients left, exiting")
 
764
            logger.critical(u"No clients left, exiting")
756
765
            sys.exit()
757
766
    
758
 
    clients.update(Set(Client(name=section,
 
767
    clients.update(Set(Client(name = section,
759
768
                              stop_hook = remove_from_clients,
760
 
                              **(dict(client_config\
761
 
                                      .items(section))))
 
769
                              config
 
770
                              = dict(client_config.items(section)))
762
771
                       for section in client_config.sections()))
 
772
    if not clients:
 
773
        logger.critical(u"No clients defined")
 
774
        sys.exit(1)
763
775
    
764
776
    if not debug:
765
 
        daemon(False, False)
 
777
        logger.removeHandler(console)
 
778
        daemon()
 
779
    
 
780
    pidfilename = "/var/run/mandos/mandos.pid"
 
781
    pid = os.getpid()
 
782
    try:
 
783
        pidfile = open(pidfilename, "w")
 
784
        pidfile.write(str(pid) + "\n")
 
785
        pidfile.close()
 
786
        del pidfile
 
787
    except IOError, err:
 
788
        logger.error(u"Could not write %s file with PID %d",
 
789
                     pidfilename, os.getpid())
766
790
    
767
791
    def cleanup():
768
792
        "Cleanup function; run on exit"
795
819
                                clients=clients)
796
820
    # Find out what port we got
797
821
    service.port = tcp_server.socket.getsockname()[1]
798
 
    logger.debug(u"Now listening on address %r, port %d, flowinfo %d,"
799
 
                 u" scope_id %d" % tcp_server.socket.getsockname())
 
822
    logger.info(u"Now listening on address %r, port %d, flowinfo %d,"
 
823
                u" scope_id %d" % tcp_server.socket.getsockname())
800
824
    
801
825
    #service.interface = tcp_server.socket.getsockname()[3]
802
826
    
815
839
                             tcp_server.handle_request\
816
840
                             (*args[2:], **kwargs) or True)
817
841
        
818
 
        logger.debug("Starting main loop")
 
842
        logger.debug(u"Starting main loop")
819
843
        main_loop_started = True
820
844
        main_loop.run()
821
845
    except AvahiError, error: