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