/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: 2014-07-15 19:35:03 UTC
  • Revision ID: teddy@recompile.se-20140715193503-e18hls7m4rv4l6iq
mandos-client: Fix mem free bug.

* plugins.d/mandos-client.c (add_server): Hide warning.
  (main): Free server->ip too, not just the server struct.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
# "AvahiService" class, and some lines in "main".
12
12
13
13
# Everything else is
14
 
# Copyright © 2008-2012 Teddy Hogeborn
15
 
# Copyright © 2008-2012 Björn Påhlsson
 
14
# Copyright © 2008-2014 Teddy Hogeborn
 
15
# Copyright © 2008-2014 Björn Påhlsson
16
16
17
17
# This program is free software: you can redistribute it and/or modify
18
18
# it under the terms of the GNU General Public License as published by
88
88
    except ImportError:
89
89
        SO_BINDTODEVICE = None
90
90
 
91
 
version = "1.6.0"
 
91
version = "1.6.6"
92
92
stored_state_file = "clients.pickle"
93
93
 
94
94
logger = logging.getLogger()
95
 
syslogger = (logging.handlers.SysLogHandler
96
 
             (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
97
 
              address = str("/dev/log")))
 
95
syslogger = None
98
96
 
99
97
try:
100
98
    if_nametoindex = (ctypes.cdll.LoadLibrary
116
114
def initlogger(debug, level=logging.WARNING):
117
115
    """init logger and add loglevel"""
118
116
    
 
117
    global syslogger
 
118
    syslogger = (logging.handlers.SysLogHandler
 
119
                 (facility =
 
120
                  logging.handlers.SysLogHandler.LOG_DAEMON,
 
121
                  address = str("/dev/log")))
119
122
    syslogger.setFormatter(logging.Formatter
120
123
                           ('Mandos [%(process)d]: %(levelname)s:'
121
124
                            ' %(message)s'))
172
175
    def password_encode(self, password):
173
176
        # Passphrase can not be empty and can not contain newlines or
174
177
        # NUL bytes.  So we prefix it and hex encode it.
175
 
        return b"mandos" + binascii.hexlify(password)
 
178
        encoded = b"mandos" + binascii.hexlify(password)
 
179
        if len(encoded) > 2048:
 
180
            # GnuPG can't handle long passwords, so encode differently
 
181
            encoded = (b"mandos" + password.replace(b"\\", b"\\\\")
 
182
                       .replace(b"\n", b"\\n")
 
183
                       .replace(b"\0", b"\\x00"))
 
184
        return encoded
176
185
    
177
186
    def encrypt(self, data, password):
178
187
        passphrase = self.password_encode(password)
684
693
        # If a checker exists, make sure it is not a zombie
685
694
        try:
686
695
            pid, status = os.waitpid(self.checker.pid, os.WNOHANG)
687
 
        except (AttributeError, OSError) as error:
688
 
            if (isinstance(error, OSError)
689
 
                and error.errno != errno.ECHILD):
690
 
                raise error
 
696
        except AttributeError:
 
697
            pass
 
698
        except OSError as error:
 
699
            if error.errno != errno.ECHILD:
 
700
                raise
691
701
        else:
692
702
            if pid:
693
703
                logger.warning("Checker was a zombie")
927
937
            # The byte_arrays option is not supported yet on
928
938
            # signatures other than "ay".
929
939
            if prop._dbus_signature != "ay":
930
 
                raise ValueError
 
940
                raise ValueError("Byte arrays not supported for non-"
 
941
                                 "'ay' signature {0!r}"
 
942
                                 .format(prop._dbus_signature))
931
943
            value = dbus.ByteArray(b''.join(chr(byte)
932
944
                                            for byte in value))
933
945
        prop(value)
1341
1353
                                       *args, **kwargs)
1342
1354
    
1343
1355
    def start_checker(self, *args, **kwargs):
1344
 
        old_checker = self.checker
1345
 
        if self.checker is not None:
1346
 
            old_checker_pid = self.checker.pid
1347
 
        else:
1348
 
            old_checker_pid = None
 
1356
        old_checker_pid = getattr(self.checker, "pid", None)
1349
1357
        r = Client.start_checker(self, *args, **kwargs)
1350
1358
        # Only if new checker process was started
1351
1359
        if (self.checker is not None
1696
1704
            logger.debug("Protocol version: %r", line)
1697
1705
            try:
1698
1706
                if int(line.strip().split()[0]) > 1:
1699
 
                    raise RuntimeError
 
1707
                    raise RuntimeError(line)
1700
1708
            except (ValueError, IndexError, RuntimeError) as error:
1701
1709
                logger.error("Unknown protocol version: %s", error)
1702
1710
                return
1909
1917
    
1910
1918
    def add_pipe(self, parent_pipe, proc):
1911
1919
        """Dummy function; override as necessary"""
1912
 
        raise NotImplementedError
 
1920
        raise NotImplementedError()
1913
1921
 
1914
1922
 
1915
1923
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
2252
2260
            else:
2253
2261
                raise ValueError("Unknown suffix {0!r}"
2254
2262
                                 .format(suffix))
2255
 
        except (ValueError, IndexError) as e:
 
2263
        except IndexError as e:
2256
2264
            raise ValueError(*(e.args))
2257
2265
        timevalue += delta
2258
2266
    return timevalue
2329
2337
                        help="Directory to save/restore state in")
2330
2338
    parser.add_argument("--foreground", action="store_true",
2331
2339
                        help="Run in foreground", default=None)
 
2340
    parser.add_argument("--no-zeroconf", action="store_false",
 
2341
                        dest="zeroconf", help="Do not use Zeroconf",
 
2342
                        default=None)
2332
2343
    
2333
2344
    options = parser.parse_args()
2334
2345
    
2335
2346
    if options.check:
2336
2347
        import doctest
2337
 
        doctest.testmod()
2338
 
        sys.exit()
 
2348
        fail_count, test_count = doctest.testmod()
 
2349
        sys.exit(os.EX_OK if fail_count == 0 else 1)
2339
2350
    
2340
2351
    # Default values for config file for server-global settings
2341
2352
    server_defaults = { "interface": "",
2343
2354
                        "port": "",
2344
2355
                        "debug": "False",
2345
2356
                        "priority":
2346
 
                        "SECURE256:!CTYPE-X.509:+CTYPE-OPENPGP:+SIGN-RSA-SHA224",
 
2357
                        "SECURE256:!CTYPE-X.509:+CTYPE-OPENPGP:+SIGN-RSA-SHA224:+SIGN-RSA-RMD160",
2347
2358
                        "servicename": "Mandos",
2348
2359
                        "use_dbus": "True",
2349
2360
                        "use_ipv6": "True",
2352
2363
                        "socket": "",
2353
2364
                        "statedir": "/var/lib/mandos",
2354
2365
                        "foreground": "False",
 
2366
                        "zeroconf": "True",
2355
2367
                        }
2356
2368
    
2357
2369
    # Parse config file for server-global settings
2384
2396
    for option in ("interface", "address", "port", "debug",
2385
2397
                   "priority", "servicename", "configdir",
2386
2398
                   "use_dbus", "use_ipv6", "debuglevel", "restore",
2387
 
                   "statedir", "socket", "foreground"):
 
2399
                   "statedir", "socket", "foreground", "zeroconf"):
2388
2400
        value = getattr(options, option)
2389
2401
        if value is not None:
2390
2402
            server_settings[option] = value
2395
2407
            server_settings[option] = unicode(server_settings[option])
2396
2408
    # Force all boolean options to be boolean
2397
2409
    for option in ("debug", "use_dbus", "use_ipv6", "restore",
2398
 
                   "foreground"):
 
2410
                   "foreground", "zeroconf"):
2399
2411
        server_settings[option] = bool(server_settings[option])
2400
2412
    # Debug implies foreground
2401
2413
    if server_settings["debug"]:
2404
2416
    
2405
2417
    ##################################################################
2406
2418
    
 
2419
    if (not server_settings["zeroconf"] and
 
2420
        not (server_settings["port"]
 
2421
             or server_settings["socket"] != "")):
 
2422
            parser.error("Needs port or socket to work without"
 
2423
                         " Zeroconf")
 
2424
    
2407
2425
    # For convenience
2408
2426
    debug = server_settings["debug"]
2409
2427
    debuglevel = server_settings["debuglevel"]
2412
2430
    stored_state_path = os.path.join(server_settings["statedir"],
2413
2431
                                     stored_state_file)
2414
2432
    foreground = server_settings["foreground"]
 
2433
    zeroconf = server_settings["zeroconf"]
2415
2434
    
2416
2435
    if debug:
2417
2436
        initlogger(debug, logging.DEBUG)
2438
2457
    global mandos_dbus_service
2439
2458
    mandos_dbus_service = None
2440
2459
    
 
2460
    socketfd = None
 
2461
    if server_settings["socket"] != "":
 
2462
        socketfd = server_settings["socket"]
2441
2463
    tcp_server = MandosServer((server_settings["address"],
2442
2464
                               server_settings["port"]),
2443
2465
                              ClientHandler,
2447
2469
                              gnutls_priority=
2448
2470
                              server_settings["priority"],
2449
2471
                              use_dbus=use_dbus,
2450
 
                              socketfd=(server_settings["socket"]
2451
 
                                        or None))
 
2472
                              socketfd=socketfd)
2452
2473
    if not foreground:
2453
 
        pidfilename = "/var/run/mandos.pid"
 
2474
        pidfilename = "/run/mandos.pid"
 
2475
        if not os.path.isdir("/run/."):
 
2476
            pidfilename = "/var/run/mandos.pid"
2454
2477
        pidfile = None
2455
2478
        try:
2456
2479
            pidfile = open(pidfilename, "w")
2473
2496
        os.setuid(uid)
2474
2497
    except OSError as error:
2475
2498
        if error.errno != errno.EPERM:
2476
 
            raise error
 
2499
            raise
2477
2500
    
2478
2501
    if debug:
2479
2502
        # Enable all possible GnuTLS debugging
2522
2545
            use_dbus = False
2523
2546
            server_settings["use_dbus"] = False
2524
2547
            tcp_server.use_dbus = False
2525
 
    protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
2526
 
    service = AvahiServiceToSyslog(name =
2527
 
                                   server_settings["servicename"],
2528
 
                                   servicetype = "_mandos._tcp",
2529
 
                                   protocol = protocol, bus = bus)
2530
 
    if server_settings["interface"]:
2531
 
        service.interface = (if_nametoindex
2532
 
                             (str(server_settings["interface"])))
 
2548
    if zeroconf:
 
2549
        protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
 
2550
        service = AvahiServiceToSyslog(name =
 
2551
                                       server_settings["servicename"],
 
2552
                                       servicetype = "_mandos._tcp",
 
2553
                                       protocol = protocol, bus = bus)
 
2554
        if server_settings["interface"]:
 
2555
            service.interface = (if_nametoindex
 
2556
                                 (str(server_settings["interface"])))
2533
2557
    
2534
2558
    global multiprocessing_manager
2535
2559
    multiprocessing_manager = multiprocessing.Manager()
2729
2753
    
2730
2754
    def cleanup():
2731
2755
        "Cleanup function; run on exit"
2732
 
        service.cleanup()
 
2756
        if zeroconf:
 
2757
            service.cleanup()
2733
2758
        
2734
2759
        multiprocessing.active_children()
2735
2760
        wnull.close()
2784
2809
            else:
2785
2810
                logger.warning("Could not save persistent state:",
2786
2811
                               exc_info=e)
2787
 
                raise e
 
2812
                raise
2788
2813
        
2789
2814
        # Delete all clients, and settings from config
2790
2815
        while tcp_server.clients:
2814
2839
    tcp_server.server_activate()
2815
2840
    
2816
2841
    # Find out what port we got
2817
 
    service.port = tcp_server.socket.getsockname()[1]
 
2842
    if zeroconf:
 
2843
        service.port = tcp_server.socket.getsockname()[1]
2818
2844
    if use_ipv6:
2819
2845
        logger.info("Now listening on address %r, port %d,"
2820
2846
                    " flowinfo %d, scope_id %d",
2826
2852
    #service.interface = tcp_server.socket.getsockname()[3]
2827
2853
    
2828
2854
    try:
2829
 
        # From the Avahi example code
2830
 
        try:
2831
 
            service.activate()
2832
 
        except dbus.exceptions.DBusException as error:
2833
 
            logger.critical("D-Bus Exception", exc_info=error)
2834
 
            cleanup()
2835
 
            sys.exit(1)
2836
 
        # End of Avahi example code
 
2855
        if zeroconf:
 
2856
            # From the Avahi example code
 
2857
            try:
 
2858
                service.activate()
 
2859
            except dbus.exceptions.DBusException as error:
 
2860
                logger.critical("D-Bus Exception", exc_info=error)
 
2861
                cleanup()
 
2862
                sys.exit(1)
 
2863
            # End of Avahi example code
2837
2864
        
2838
2865
        gobject.io_add_watch(tcp_server.fileno(), gobject.IO_IN,
2839
2866
                             lambda *args, **kwargs: