/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

mandosclient
        segmentation fault bug fixed

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
119
125
        self.domain = domain
120
126
        self.host = host
121
127
        self.rename_count = 0
122
 
        self.max_renames = max_renames
123
128
    def rename(self):
124
129
        """Derived from the Avahi example code"""
125
130
        if self.rename_count >= self.max_renames:
126
131
            logger.critical(u"No suitable service name found after %i"
127
132
                            u" retries, exiting.", rename_count)
128
133
            raise AvahiServiceError("Too many renames")
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))
 
134
        name = server.GetAlternativeServiceName(name)
 
135
        logger.error(u"Changing name to %r ...", name)
134
136
        self.remove()
135
137
        self.add()
136
138
        self.rename_count += 1
172
174
    fingerprint: string (40 or 32 hexadecimal digits); used to
173
175
                 uniquely identify the client
174
176
    secret:    bytestring; sent verbatim (over TLS) to client
175
 
    host:      string; available for use by the checker command
 
177
    fqdn:      string (FQDN); available for use by the checker command
176
178
    created:   datetime.datetime(); object creation, not client host
177
179
    last_checked_ok: datetime.datetime() or None if not yet checked OK
178
180
    timeout:   datetime.timedelta(); How long from last_checked_ok
239
241
        else:
240
242
            raise TypeError(u"No secret or secfile for client %s"
241
243
                            % self.name)
242
 
        self.host = config.get("host", "")
 
244
        self.fqdn = config.get("fqdn", "")
243
245
        self.created = datetime.datetime.now()
244
246
        self.last_checked_ok = None
245
247
        self.timeout = string_to_delta(config["timeout"])
268
270
        The possibility that a client might be restarted is left open,
269
271
        but not currently used."""
270
272
        # If this client doesn't have a secret, it is already stopped.
271
 
        if hasattr(self, "secret") and self.secret:
 
273
        if self.secret:
272
274
            logger.info(u"Stopping client %s", self.name)
273
275
            self.secret = None
274
276
        else:
322
324
        if self.checker is None:
323
325
            try:
324
326
                # In case check_command has exactly one % operator
325
 
                command = self.check_command % self.host
 
327
                command = self.check_command % self.fqdn
326
328
            except TypeError:
327
329
                # Escape attributes for the shell
328
330
                escaped_attrs = dict((key, re.escape(str(val)))
355
357
            self.checker_callback_tag = None
356
358
        if getattr(self, "checker", None) is None:
357
359
            return
358
 
        logger.debug(u"Stopping checker for %(name)s", vars(self))
 
360
        logger.debug("Stopping checker for %(name)s", vars(self))
359
361
        try:
360
362
            os.kill(self.checker.pid, signal.SIGTERM)
361
363
            #os.sleep(0.5)
537
539
                in6addr_any = "::"
538
540
                self.server_address = (in6addr_any,
539
541
                                       self.server_address[1])
540
 
            elif not self.server_address[1]:
 
542
            elif self.server_address[1] is None:
541
543
                self.server_address = (self.server_address[0],
542
544
                                       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"]))
550
545
            return super(type(self), self).server_bind()
551
546
 
552
547
 
632
627
    return if_nametoindex(interface)
633
628
 
634
629
 
635
 
def daemon(nochdir = False, noclose = False):
 
630
def daemon(nochdir, noclose):
636
631
    """See daemon(3).  Standard BSD Unix function.
637
632
    This should really exist as os.daemon, but it doesn't (yet)."""
638
633
    if os.fork():
640
635
    os.setsid()
641
636
    if not nochdir:
642
637
        os.chdir("/")
643
 
    if os.fork():
644
 
        sys.exit()
645
638
    if not noclose:
646
639
        # Close all standard open file descriptors
647
640
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
659
652
    global main_loop_started
660
653
    main_loop_started = False
661
654
    
662
 
    parser = OptionParser(version = "%%prog %s" % version)
 
655
    parser = OptionParser()
663
656
    parser.add_option("-i", "--interface", type="string",
664
657
                      metavar="IF", help="Bind to interface IF")
665
658
    parser.add_option("-a", "--address", type="string",
668
661
                      help="Port number to receive requests on")
669
662
    parser.add_option("--check", action="store_true", default=False,
670
663
                      help="Run self-test")
671
 
    parser.add_option("--debug", action="store_true",
 
664
    parser.add_option("--debug", action="store_true", default=False,
672
665
                      help="Debug mode; run in foreground and log to"
673
666
                      " terminal")
674
667
    parser.add_option("--priority", type="string", help="GnuTLS"
699
692
    # Parse config file for server-global settings
700
693
    server_config = ConfigParser.SafeConfigParser(server_defaults)
701
694
    del server_defaults
702
 
    server_config.read(os.path.join(options.configdir, "mandos.conf"))
 
695
    server_config.read(os.path.join(options.configdir, "server.conf"))
703
696
    server_section = "server"
704
697
    # Convert the SafeConfigParser object to a dict
705
698
    server_settings = dict(server_config.items(server_section))
718
711
    del options
719
712
    # Now we have our good server settings in "server_settings"
720
713
    
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
 
    
733
714
    # Parse config file with clients
734
715
    client_defaults = { "timeout": "1h",
735
716
                        "interval": "5m",
736
 
                        "checker": "fping -q -- %%(host)s",
 
717
                        "checker": "fping -q -- %%(fqdn)s",
737
718
                        }
738
719
    client_config = ConfigParser.SafeConfigParser(client_defaults)
739
720
    client_config.read(os.path.join(server_settings["configdir"],
757
738
            avahi.DBUS_INTERFACE_SERVER )
758
739
    # End of Avahi example code
759
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
    
760
751
    clients = Set()
761
752
    def remove_from_clients(client):
762
753
        clients.remove(client)
769
760
                              config
770
761
                              = dict(client_config.items(section)))
771
762
                       for section in client_config.sections()))
772
 
    if not clients:
773
 
        logger.critical(u"No clients defined")
774
 
        sys.exit(1)
775
763
    
776
764
    if not debug:
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())
 
765
        daemon(False, False)
790
766
    
791
767
    def cleanup():
792
768
        "Cleanup function; run on exit"
839
815
                             tcp_server.handle_request\
840
816
                             (*args[2:], **kwargs) or True)
841
817
        
842
 
        logger.debug(u"Starting main loop")
 
818
        logger.debug("Starting main loop")
843
819
        main_loop_started = True
844
820
        main_loop.run()
845
821
    except AvahiError, error: