/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 server.py

merge

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
 
# 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".
 
9
# following functions: "AvahiService.add", "AvahiService.remove",
 
10
# "server_state_changed", "entry_group_state_changed", and some lines
 
11
# 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
 
version = "1.0"
 
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
 
65
75
 
66
76
logger = logging.Logger('mandos')
67
77
syslogger = logging.handlers.SysLogHandler\
68
 
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
69
 
             address = "/dev/log")
 
78
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON)
70
79
syslogger.setFormatter(logging.Formatter\
71
 
                        ('Mandos: %(levelname)s: %(message)s'))
 
80
                        ('%(levelname)s: %(message)s'))
72
81
logger.addHandler(syslogger)
 
82
del syslogger
73
83
 
74
 
console = logging.StreamHandler()
75
 
console.setFormatter(logging.Formatter('%(name)s: %(levelname)s:'
76
 
                                       ' %(message)s'))
77
 
logger.addHandler(console)
78
84
 
79
85
class AvahiError(Exception):
80
86
    def __init__(self, value):
107
113
    """
108
114
    def __init__(self, interface = avahi.IF_UNSPEC, name = None,
109
115
                 type = None, port = None, TXT = None, domain = "",
110
 
                 host = "", max_renames = 32768):
 
116
                 host = "", max_renames = 12):
111
117
        self.interface = interface
112
118
        self.name = name
113
119
        self.type = type
127
133
            raise AvahiServiceError("Too many renames")
128
134
        name = server.GetAlternativeServiceName(name)
129
135
        logger.error(u"Changing name to %r ...", name)
130
 
        syslogger.setFormatter(logging.Formatter\
131
 
                               ('Mandos (%s): %%(levelname)s:'
132
 
                               ' %%(message)s' % name))
133
136
        self.remove()
134
137
        self.add()
135
138
        self.rename_count += 1
171
174
    fingerprint: string (40 or 32 hexadecimal digits); used to
172
175
                 uniquely identify the client
173
176
    secret:    bytestring; sent verbatim (over TLS) to client
174
 
    host:      string; available for use by the checker command
 
177
    fqdn:      string (FQDN); available for use by the checker command
175
178
    created:   datetime.datetime(); object creation, not client host
176
179
    last_checked_ok: datetime.datetime() or None if not yet checked OK
177
180
    timeout:   datetime.timedelta(); How long from last_checked_ok
238
241
        else:
239
242
            raise TypeError(u"No secret or secfile for client %s"
240
243
                            % self.name)
241
 
        self.host = config.get("host", "")
 
244
        self.fqdn = config.get("fqdn", "")
242
245
        self.created = datetime.datetime.now()
243
246
        self.last_checked_ok = None
244
247
        self.timeout = string_to_delta(config["timeout"])
267
270
        The possibility that a client might be restarted is left open,
268
271
        but not currently used."""
269
272
        # If this client doesn't have a secret, it is already stopped.
270
 
        if hasattr(self, "secret") and self.secret:
 
273
        if self.secret:
271
274
            logger.info(u"Stopping client %s", self.name)
272
275
            self.secret = None
273
276
        else:
321
324
        if self.checker is None:
322
325
            try:
323
326
                # In case check_command has exactly one % operator
324
 
                command = self.check_command % self.host
 
327
                command = self.check_command % self.fqdn
325
328
            except TypeError:
326
329
                # Escape attributes for the shell
327
330
                escaped_attrs = dict((key, re.escape(str(val)))
354
357
            self.checker_callback_tag = None
355
358
        if getattr(self, "checker", None) is None:
356
359
            return
357
 
        logger.debug(u"Stopping checker for %(name)s", vars(self))
 
360
        logger.debug("Stopping checker for %(name)s", vars(self))
358
361
        try:
359
362
            os.kill(self.checker.pid, signal.SIGTERM)
360
363
            #os.sleep(0.5)
536
539
                in6addr_any = "::"
537
540
                self.server_address = (in6addr_any,
538
541
                                       self.server_address[1])
539
 
            elif not self.server_address[1]:
 
542
            elif self.server_address[1] is None:
540
543
                self.server_address = (self.server_address[0],
541
544
                                       0)
542
 
#                 if self.settings["interface"]:
543
 
#                     self.server_address = (self.server_address[0],
544
 
#                                            0, # port
545
 
#                                            0, # flowinfo
546
 
#                                            if_nametoindex
547
 
#                                            (self.settings
548
 
#                                             ["interface"]))
549
545
            return super(type(self), self).server_bind()
550
546
 
551
547
 
631
627
    return if_nametoindex(interface)
632
628
 
633
629
 
634
 
def daemon(nochdir = False, noclose = False):
 
630
def daemon(nochdir, noclose):
635
631
    """See daemon(3).  Standard BSD Unix function.
636
632
    This should really exist as os.daemon, but it doesn't (yet)."""
637
633
    if os.fork():
639
635
    os.setsid()
640
636
    if not nochdir:
641
637
        os.chdir("/")
642
 
    if os.fork():
643
 
        sys.exit()
644
638
    if not noclose:
645
639
        # Close all standard open file descriptors
646
640
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
658
652
    global main_loop_started
659
653
    main_loop_started = False
660
654
    
661
 
    parser = OptionParser(version = "%%prog %s" % version)
 
655
    parser = OptionParser()
662
656
    parser.add_option("-i", "--interface", type="string",
663
657
                      metavar="IF", help="Bind to interface IF")
664
658
    parser.add_option("-a", "--address", type="string",
667
661
                      help="Port number to receive requests on")
668
662
    parser.add_option("--check", action="store_true", default=False,
669
663
                      help="Run self-test")
670
 
    parser.add_option("--debug", action="store_true",
 
664
    parser.add_option("--debug", action="store_true", default=False,
671
665
                      help="Debug mode; run in foreground and log to"
672
666
                      " terminal")
673
667
    parser.add_option("--priority", type="string", help="GnuTLS"
698
692
    # Parse config file for server-global settings
699
693
    server_config = ConfigParser.SafeConfigParser(server_defaults)
700
694
    del server_defaults
701
 
    server_config.read(os.path.join(options.configdir, "mandos.conf"))
 
695
    server_config.read(os.path.join(options.configdir, "server.conf"))
702
696
    server_section = "server"
703
697
    # Convert the SafeConfigParser object to a dict
704
698
    server_settings = dict(server_config.items(server_section))
717
711
    del options
718
712
    # Now we have our good server settings in "server_settings"
719
713
    
720
 
    debug = server_settings["debug"]
721
 
    
722
 
    if not debug:
723
 
        syslogger.setLevel(logging.WARNING)
724
 
        console.setLevel(logging.WARNING)
725
 
    
726
 
    if server_settings["servicename"] != "Mandos":
727
 
        syslogger.setFormatter(logging.Formatter\
728
 
                               ('Mandos (%s): %%(levelname)s:'
729
 
                                ' %%(message)s'
730
 
                                % server_settings["servicename"]))
731
 
    
732
714
    # Parse config file with clients
733
715
    client_defaults = { "timeout": "1h",
734
716
                        "interval": "5m",
735
 
                        "checker": "fping -q -- %%(host)s",
 
717
                        "checker": "fping -q -- %%(fqdn)s",
736
718
                        }
737
719
    client_config = ConfigParser.SafeConfigParser(client_defaults)
738
720
    client_config.read(os.path.join(server_settings["configdir"],
756
738
            avahi.DBUS_INTERFACE_SERVER )
757
739
    # End of Avahi example code
758
740
    
 
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
    
759
751
    clients = Set()
760
752
    def remove_from_clients(client):
761
753
        clients.remove(client)
768
760
                              config
769
761
                              = dict(client_config.items(section)))
770
762
                       for section in client_config.sections()))
771
 
    if not clients:
772
 
        logger.critical(u"No clients defined")
773
 
        sys.exit(1)
774
763
    
775
764
    if not debug:
776
 
        logger.removeHandler(console)
777
 
        daemon()
778
 
    
779
 
    pidfilename = "/var/run/mandos/mandos.pid"
780
 
    pid = os.getpid()
781
 
    try:
782
 
        pidfile = open(pidfilename, "w")
783
 
        pidfile.write(str(pid) + "\n")
784
 
        pidfile.close()
785
 
        del pidfile
786
 
    except IOError, err:
787
 
        logger.error(u"Could not write %s file with PID %d",
788
 
                     pidfilename, os.getpid())
 
765
        daemon(False, False)
789
766
    
790
767
    def cleanup():
791
768
        "Cleanup function; run on exit"
838
815
                             tcp_server.handle_request\
839
816
                             (*args[2:], **kwargs) or True)
840
817
        
841
 
        logger.debug(u"Starting main loop")
 
818
        logger.debug("Starting main loop")
842
819
        main_loop_started = True
843
820
        main_loop.run()
844
821
    except AvahiError, error: