/mandos/release

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

« back to all changes in this revision

Viewing changes to server.py

  • Committer: Björn Påhlsson
  • Date: 2008-08-04 22:46:32 UTC
  • mto: (237.7.1 mandos) (24.1.154 mandos)
  • mto: This revision was merged to the branch mainline in revision 46.
  • Revision ID: belorn@braxen-20080804224632-k1v16lxkiryurd0n
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
# 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
75
 
65
76
logger = logging.Logger('mandos')
66
77
syslogger = logging.handlers.SysLogHandler\
67
 
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
68
 
             address = "/dev/log")
 
78
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON)
69
79
syslogger.setFormatter(logging.Formatter\
70
 
                        ('Mandos: %(levelname)s: %(message)s'))
 
80
                        ('%(levelname)s: %(message)s'))
71
81
logger.addHandler(syslogger)
 
82
del syslogger
72
83
 
73
84
 
74
85
class AvahiError(Exception):
102
113
    """
103
114
    def __init__(self, interface = avahi.IF_UNSPEC, name = None,
104
115
                 type = None, port = None, TXT = None, domain = "",
105
 
                 host = "", max_renames = 32768):
 
116
                 host = "", max_renames = 12):
106
117
        self.interface = interface
107
118
        self.name = name
108
119
        self.type = type
122
133
            raise AvahiServiceError("Too many renames")
123
134
        name = server.GetAlternativeServiceName(name)
124
135
        logger.error(u"Changing name to %r ...", name)
125
 
        syslogger.setFormatter(logging.Formatter\
126
 
                               ('Mandos (%s): %%(levelname)s:'
127
 
                               ' %%(message)s' % name))
128
136
        self.remove()
129
137
        self.add()
130
138
        self.rename_count += 1
166
174
    fingerprint: string (40 or 32 hexadecimal digits); used to
167
175
                 uniquely identify the client
168
176
    secret:    bytestring; sent verbatim (over TLS) to client
169
 
    host:      string; available for use by the checker command
 
177
    fqdn:      string (FQDN); available for use by the checker command
170
178
    created:   datetime.datetime(); object creation, not client host
171
179
    last_checked_ok: datetime.datetime() or None if not yet checked OK
172
180
    timeout:   datetime.timedelta(); How long from last_checked_ok
233
241
        else:
234
242
            raise TypeError(u"No secret or secfile for client %s"
235
243
                            % self.name)
236
 
        self.host = config.get("host", "")
 
244
        self.fqdn = config.get("fqdn", "")
237
245
        self.created = datetime.datetime.now()
238
246
        self.last_checked_ok = None
239
247
        self.timeout = string_to_delta(config["timeout"])
262
270
        The possibility that a client might be restarted is left open,
263
271
        but not currently used."""
264
272
        # If this client doesn't have a secret, it is already stopped.
265
 
        if hasattr(self, "secret") and self.secret:
 
273
        if self.secret:
266
274
            logger.info(u"Stopping client %s", self.name)
267
275
            self.secret = None
268
276
        else:
316
324
        if self.checker is None:
317
325
            try:
318
326
                # In case check_command has exactly one % operator
319
 
                command = self.check_command % self.host
 
327
                command = self.check_command % self.fqdn
320
328
            except TypeError:
321
329
                # Escape attributes for the shell
322
330
                escaped_attrs = dict((key, re.escape(str(val)))
349
357
            self.checker_callback_tag = None
350
358
        if getattr(self, "checker", None) is None:
351
359
            return
352
 
        logger.debug(u"Stopping checker for %(name)s", vars(self))
 
360
        logger.debug("Stopping checker for %(name)s", vars(self))
353
361
        try:
354
362
            os.kill(self.checker.pid, signal.SIGTERM)
355
363
            #os.sleep(0.5)
531
539
                in6addr_any = "::"
532
540
                self.server_address = (in6addr_any,
533
541
                                       self.server_address[1])
534
 
            elif not self.server_address[1]:
 
542
            elif self.server_address[1] is None:
535
543
                self.server_address = (self.server_address[0],
536
544
                                       0)
537
 
#                 if self.settings["interface"]:
538
 
#                     self.server_address = (self.server_address[0],
539
 
#                                            0, # port
540
 
#                                            0, # flowinfo
541
 
#                                            if_nametoindex
542
 
#                                            (self.settings
543
 
#                                             ["interface"]))
544
545
            return super(type(self), self).server_bind()
545
546
 
546
547
 
626
627
    return if_nametoindex(interface)
627
628
 
628
629
 
629
 
def daemon(nochdir = False, noclose = False):
 
630
def daemon(nochdir, noclose):
630
631
    """See daemon(3).  Standard BSD Unix function.
631
632
    This should really exist as os.daemon, but it doesn't (yet)."""
632
633
    if os.fork():
634
635
    os.setsid()
635
636
    if not nochdir:
636
637
        os.chdir("/")
637
 
    if os.fork():
638
 
        sys.exit()
639
638
    if not noclose:
640
639
        # Close all standard open file descriptors
641
640
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
662
661
                      help="Port number to receive requests on")
663
662
    parser.add_option("--check", action="store_true", default=False,
664
663
                      help="Run self-test")
665
 
    parser.add_option("--debug", action="store_true",
 
664
    parser.add_option("--debug", action="store_true", default=False,
666
665
                      help="Debug mode; run in foreground and log to"
667
666
                      " terminal")
668
667
    parser.add_option("--priority", type="string", help="GnuTLS"
693
692
    # Parse config file for server-global settings
694
693
    server_config = ConfigParser.SafeConfigParser(server_defaults)
695
694
    del server_defaults
696
 
    server_config.read(os.path.join(options.configdir, "mandos.conf"))
 
695
    server_config.read(os.path.join(options.configdir, "server.conf"))
697
696
    server_section = "server"
698
697
    # Convert the SafeConfigParser object to a dict
699
698
    server_settings = dict(server_config.items(server_section))
712
711
    del options
713
712
    # Now we have our good server settings in "server_settings"
714
713
    
715
 
    debug = server_settings["debug"]
716
 
    
717
 
    if not debug:
718
 
        syslogger.setLevel(logging.WARNING)
719
 
    
720
 
    if server_settings["servicename"] != "Mandos":
721
 
        syslogger.setFormatter(logging.Formatter\
722
 
                               ('Mandos (%s): %%(levelname)s:'
723
 
                                ' %%(message)s'
724
 
                                % server_settings["servicename"]))
725
 
    
726
714
    # Parse config file with clients
727
715
    client_defaults = { "timeout": "1h",
728
716
                        "interval": "5m",
729
 
                        "checker": "fping -q -- %%(host)s",
 
717
                        "checker": "fping -q -- %%(fqdn)s",
730
718
                        }
731
719
    client_config = ConfigParser.SafeConfigParser(client_defaults)
732
720
    client_config.read(os.path.join(server_settings["configdir"],
750
738
            avahi.DBUS_INTERFACE_SERVER )
751
739
    # End of Avahi example code
752
740
    
 
741
    debug = server_settings["debug"]
 
742
    
753
743
    if debug:
754
744
        console = logging.StreamHandler()
755
745
        # console.setLevel(logging.DEBUG)
770
760
                              config
771
761
                              = dict(client_config.items(section)))
772
762
                       for section in client_config.sections()))
773
 
    if not clients:
774
 
        logger.critical(u"No clients defined")
775
 
        sys.exit(1)
776
763
    
777
764
    if not debug:
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: