/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-09-30 07:23:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080930072339-jn15gyrtfpdk2dhx
* .bzrignore: Added "man" directory (created by "make install-html").

* Makefile: Add "common.ent" dependency to all manual pages.
  (htmldir, version, SED): New variables.
  (CFLAGS): Add -D option to define VERSION to $(version).
  (MANPOST, HTMLPOST): Use $(SED).
  (PROGS): Use $(CPROGS)
  (CPROGS): New; C-only programs.
  (objects): Use $(CPROGS).
  (common.ent, mandos, mandos-keygen): New targets; update version
                                       number to $(version).
  (clean): Use $(CPROGS).
  (check): Depend on "all".
  (install-html): Install to $(htmldir).

* common.ent: New file with "version" entity.

* mandos-clients.conf.xml: Use "common.ent".
* mandos-keygen.xml: - '' -
* mandos.conf.xml: - '' -
* mandos.xml: - '' -
* plugin-runner.xml: - '' -
* plugins.d/mandos-client.xml: - '' -
* plugins.d/password-prompt.xml: - '' -

* plugin-runner.c (argp_program_version): Use VERSION.
* plugins.d/mandos-client.c (argp_program_version): - '' -
* plugins.d/password-prompt.c (argp_program_version): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# and some lines in "main".
12
12
13
13
# Everything else is
14
 
# Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
14
# Copyright © 2008 Teddy Hogeborn & Björn Påhlsson
15
15
16
16
# This program is free software: you can redistribute it and/or modify
17
17
# it under the terms of the GNU General Public License as published by
34
34
 
35
35
import SocketServer
36
36
import socket
37
 
import select
38
37
from optparse import OptionParser
39
38
import datetime
40
39
import errno
55
54
import stat
56
55
import logging
57
56
import logging.handlers
 
57
import pwd
58
58
 
59
59
import dbus
60
60
import gobject
61
61
import avahi
62
62
from dbus.mainloop.glib import DBusGMainLoop
63
63
import ctypes
 
64
import ctypes.util
64
65
 
65
66
version = "1.0"
66
67
 
80
81
class AvahiError(Exception):
81
82
    def __init__(self, value):
82
83
        self.value = value
 
84
        super(AvahiError, self).__init__()
83
85
    def __str__(self):
84
86
        return repr(self.value)
85
87
 
107
109
                  a sensible number of times
108
110
    """
109
111
    def __init__(self, interface = avahi.IF_UNSPEC, name = None,
110
 
                 type = None, port = None, TXT = None, domain = "",
 
112
                 servicetype = None, port = None, TXT = None, domain = "",
111
113
                 host = "", max_renames = 32768):
112
114
        self.interface = interface
113
115
        self.name = name
114
 
        self.type = type
 
116
        self.type = servicetype
115
117
        self.port = port
116
118
        if TXT is None:
117
119
            self.TXT = []
126
128
        if self.rename_count >= self.max_renames:
127
129
            logger.critical(u"No suitable Zeroconf service name found"
128
130
                            u" after %i retries, exiting.",
129
 
                            rename_count)
 
131
                            self.rename_count)
130
132
            raise AvahiServiceError("Too many renames")
131
133
        self.name = server.GetAlternativeServiceName(self.name)
132
134
        logger.info(u"Changing Zeroconf service name to %r ...",
221
223
    interval = property(lambda self: self._interval,
222
224
                        _set_interval)
223
225
    del _set_interval
224
 
    def __init__(self, name = None, stop_hook=None, config={}):
 
226
    def __init__(self, name = None, stop_hook=None, config=None):
225
227
        """Note: the 'checker' key in 'config' sets the
226
228
        'checker_command' attribute and *not* the 'checker'
227
229
        attribute."""
 
230
        if config is None:
 
231
            config = {}
228
232
        self.name = name
229
233
        logger.debug(u"Creating client %r", self.name)
230
234
        # Uppercase and remove spaces from fingerprint for later
236
240
        if "secret" in config:
237
241
            self.secret = config["secret"].decode(u"base64")
238
242
        elif "secfile" in config:
239
 
            sf = open(config["secfile"])
240
 
            self.secret = sf.read()
241
 
            sf.close()
 
243
            secfile = open(config["secfile"])
 
244
            self.secret = secfile.read()
 
245
            secfile.close()
242
246
        else:
243
247
            raise TypeError(u"No secret or secfile for client %s"
244
248
                            % self.name)
414
418
                    (crt, ctypes.byref(datum),
415
419
                     gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
416
420
    # Verify the self signature in the key
417
 
    crtverify = ctypes.c_uint();
 
421
    crtverify = ctypes.c_uint()
418
422
    gnutls.library.functions.gnutls_openpgp_crt_verify_self\
419
423
        (crt, 0, ctypes.byref(crtverify))
420
424
    if crtverify.value != 0:
421
425
        gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
422
426
        raise gnutls.errors.CertificateSecurityError("Verify failed")
423
427
    # New buffer for the fingerprint
424
 
    buffer = ctypes.create_string_buffer(20)
425
 
    buffer_length = ctypes.c_size_t()
 
428
    buf = ctypes.create_string_buffer(20)
 
429
    buf_len = ctypes.c_size_t()
426
430
    # Get the fingerprint from the certificate into the buffer
427
431
    gnutls.library.functions.gnutls_openpgp_crt_get_fingerprint\
428
 
        (crt, ctypes.byref(buffer), ctypes.byref(buffer_length))
 
432
        (crt, ctypes.byref(buf), ctypes.byref(buf_len))
429
433
    # Deinit the certificate
430
434
    gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
431
435
    # Convert the buffer to a Python bytestring
432
 
    fpr = ctypes.string_at(buffer, buffer_length.value)
 
436
    fpr = ctypes.string_at(buf, buf_len.value)
433
437
    # Convert the bytestring to hexadecimal notation
434
438
    hex_fpr = u''.join(u"%02X" % ord(char) for char in fpr)
435
439
    return hex_fpr
436
440
 
437
441
 
438
 
class tcp_handler(SocketServer.BaseRequestHandler, object):
 
442
class TCP_handler(SocketServer.BaseRequestHandler, object):
439
443
    """A TCP request handler class.
440
444
    Instantiated by IPv6_TCPServer for each request to handle it.
441
445
    Note: This will run in its own forked process."""
468
472
        if self.server.settings["priority"]:
469
473
            priority = self.server.settings["priority"]
470
474
        gnutls.library.functions.gnutls_priority_set_direct\
471
 
            (session._c_object, priority, None);
 
475
            (session._c_object, priority, None)
472
476
        
473
477
        try:
474
478
            session.handshake()
517
521
    Attributes:
518
522
        settings:       Server settings
519
523
        clients:        Set() of Client objects
 
524
        enabled:        Boolean; whether this server is activated yet
520
525
    """
521
526
    address_family = socket.AF_INET6
522
527
    def __init__(self, *args, **kwargs):
526
531
        if "clients" in kwargs:
527
532
            self.clients = kwargs["clients"]
528
533
            del kwargs["clients"]
529
 
        return super(type(self), self).__init__(*args, **kwargs)
 
534
        self.enabled = False
 
535
        super(IPv6_TCPServer, self).__init__(*args, **kwargs)
530
536
    def server_bind(self):
531
537
        """This overrides the normal server_bind() function
532
538
        to bind to an interface if one was specified, and also NOT to
561
567
#                                            if_nametoindex
562
568
#                                            (self.settings
563
569
#                                             ["interface"]))
564
 
            return super(type(self), self).server_bind()
 
570
            return super(IPv6_TCPServer, self).server_bind()
 
571
    def server_activate(self):
 
572
        if self.enabled:
 
573
            return super(IPv6_TCPServer, self).server_activate()
 
574
    def enable(self):
 
575
        self.enabled = True
565
576
 
566
577
 
567
578
def string_to_delta(interval):
583
594
    timevalue = datetime.timedelta(0)
584
595
    for s in interval.split():
585
596
        try:
586
 
            suffix=unicode(s[-1])
587
 
            value=int(s[:-1])
 
597
            suffix = unicode(s[-1])
 
598
            value = int(s[:-1])
588
599
            if suffix == u"d":
589
600
                delta = datetime.timedelta(value)
590
601
            elif suffix == u"s":
630
641
    """Call the C function if_nametoindex(), or equivalent"""
631
642
    global if_nametoindex
632
643
    try:
633
 
        if "ctypes.util" not in sys.modules:
634
 
            import ctypes.util
635
644
        if_nametoindex = ctypes.cdll.LoadLibrary\
636
645
            (ctypes.util.find_library("c")).if_nametoindex
637
646
    except (OSError, AttributeError):
675
684
 
676
685
 
677
686
def main():
678
 
    global main_loop_started
679
 
    main_loop_started = False
680
 
    
681
687
    parser = OptionParser(version = "%%prog %s" % version)
682
688
    parser.add_option("-i", "--interface", type="string",
683
689
                      metavar="IF", help="Bind to interface IF")
698
704
                      default="/etc/mandos", metavar="DIR",
699
705
                      help="Directory to search for configuration"
700
706
                      " files")
701
 
    (options, args) = parser.parse_args()
 
707
    options = parser.parse_args()[0]
702
708
    
703
709
    if options.check:
704
710
        import doctest
758
764
    client_config.read(os.path.join(server_settings["configdir"],
759
765
                                    "clients.conf"))
760
766
    
 
767
    clients = Set()
 
768
    tcp_server = IPv6_TCPServer((server_settings["address"],
 
769
                                 server_settings["port"]),
 
770
                                TCP_handler,
 
771
                                settings=server_settings,
 
772
                                clients=clients)
 
773
    pidfilename = "/var/run/mandos.pid"
 
774
    try:
 
775
        pidfile = open(pidfilename, "w")
 
776
    except IOError, error:
 
777
        logger.error("Could not open file %r", pidfilename)
 
778
    
 
779
    uid = 65534
 
780
    gid = 65534
 
781
    try:
 
782
        uid = pwd.getpwnam("mandos").pw_uid
 
783
    except KeyError:
 
784
        try:
 
785
            uid = pwd.getpwnam("nobody").pw_uid
 
786
        except KeyError:
 
787
            pass
 
788
    try:
 
789
        gid = pwd.getpwnam("mandos").pw_gid
 
790
    except KeyError:
 
791
        try:
 
792
            gid = pwd.getpwnam("nogroup").pw_gid
 
793
        except KeyError:
 
794
            pass
 
795
    try:
 
796
        os.setuid(uid)
 
797
        os.setgid(gid)
 
798
    except OSError, error:
 
799
        if error[0] != errno.EPERM:
 
800
            raise error
 
801
    
761
802
    global service
762
803
    service = AvahiService(name = server_settings["servicename"],
763
 
                           type = "_mandos._tcp", );
 
804
                           servicetype = "_mandos._tcp", )
764
805
    if server_settings["interface"]:
765
806
        service.interface = if_nametoindex\
766
807
                            (server_settings["interface"])
777
818
                            avahi.DBUS_INTERFACE_SERVER)
778
819
    # End of Avahi example code
779
820
    
780
 
    clients = Set()
781
821
    def remove_from_clients(client):
782
822
        clients.remove(client)
783
823
        if not clients:
805
845
        # Close all input and output, do double fork, etc.
806
846
        daemon()
807
847
    
808
 
    pidfilename = "/var/run/mandos/mandos.pid"
809
 
    pid = os.getpid()
810
848
    try:
811
 
        pidfile = open(pidfilename, "w")
 
849
        pid = os.getpid()
812
850
        pidfile.write(str(pid) + "\n")
813
851
        pidfile.close()
814
852
        del pidfile
815
 
    except IOError, err:
816
 
        logger.error(u"Could not write %s file with PID %d",
817
 
                     pidfilename, os.getpid())
 
853
    except IOError:
 
854
        logger.error(u"Could not write to file %r with PID %d",
 
855
                     pidfilename, pid)
 
856
    except NameError:
 
857
        # "pidfile" was never created
 
858
        pass
 
859
    del pidfilename
818
860
    
819
861
    def cleanup():
820
862
        "Cleanup function; run on exit"
840
882
    for client in clients:
841
883
        client.start()
842
884
    
843
 
    tcp_server = IPv6_TCPServer((server_settings["address"],
844
 
                                 server_settings["port"]),
845
 
                                tcp_handler,
846
 
                                settings=server_settings,
847
 
                                clients=clients)
 
885
    tcp_server.enable()
 
886
    tcp_server.server_activate()
 
887
    
848
888
    # Find out what port we got
849
889
    service.port = tcp_server.socket.getsockname()[1]
850
890
    logger.info(u"Now listening on address %r, port %d, flowinfo %d,"
868
908
                             (*args[2:], **kwargs) or True)
869
909
        
870
910
        logger.debug(u"Starting main loop")
871
 
        main_loop_started = True
872
911
        main_loop.run()
873
912
    except AvahiError, error:
874
913
        logger.critical(u"AvahiError: %s" + unicode(error))