/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: 2013-10-26 19:05:21 UTC
  • Revision ID: teddy@recompile.se-20131026190521-giagilisbyciox2h
Fall back to /var/run for pidfile if /run is not a directory.

This is for old (possibly non-Debian) systems which have not migrated
from /var/run to /run yet.

* init.d-mandos (PIDFILE): Fall back to /var/run/mandos.pid if /run is
                           not a directory.
* mandos (pidfilename): - '' -
* mandos.xml (FILES): Document fallback to /var/run/mandos.pid if /run
                      is not a directory.

Reported-by: Nathanael D. Noblet <nathanael@gnat.ca>
Suggested-by: Nathanael D. Noblet <nathanael@gnat.ca>

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-2014 Teddy Hogeborn
15
 
# Copyright © 2008-2014 Björn Påhlsson
 
14
# Copyright © 2008-2013 Teddy Hogeborn
 
15
# Copyright © 2008-2013 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.3"
 
91
version = "1.6.2"
92
92
stored_state_file = "clients.pickle"
93
93
 
94
94
logger = logging.getLogger()
95
 
syslogger = None
 
95
syslogger = (logging.handlers.SysLogHandler
 
96
             (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
 
97
              address = str("/dev/log")))
96
98
 
97
99
try:
98
100
    if_nametoindex = (ctypes.cdll.LoadLibrary
114
116
def initlogger(debug, level=logging.WARNING):
115
117
    """init logger and add loglevel"""
116
118
    
117
 
    syslogger = (logging.handlers.SysLogHandler
118
 
                 (facility =
119
 
                  logging.handlers.SysLogHandler.LOG_DAEMON,
120
 
                  address = str("/dev/log")))
121
119
    syslogger.setFormatter(logging.Formatter
122
120
                           ('Mandos [%(process)d]: %(levelname)s:'
123
121
                            ' %(message)s'))
692
690
        # If a checker exists, make sure it is not a zombie
693
691
        try:
694
692
            pid, status = os.waitpid(self.checker.pid, os.WNOHANG)
695
 
        except AttributeError:
696
 
            pass
697
 
        except OSError as error:
698
 
            if error.errno != errno.ECHILD:
699
 
                raise
 
693
        except (AttributeError, OSError) as error:
 
694
            if (isinstance(error, OSError)
 
695
                and error.errno != errno.ECHILD):
 
696
                raise error
700
697
        else:
701
698
            if pid:
702
699
                logger.warning("Checker was a zombie")
936
933
            # The byte_arrays option is not supported yet on
937
934
            # signatures other than "ay".
938
935
            if prop._dbus_signature != "ay":
939
 
                raise ValueError("Byte arrays not supported for non-"
940
 
                                 "'ay' signature {0!r}"
941
 
                                 .format(prop._dbus_signature))
 
936
                raise ValueError
942
937
            value = dbus.ByteArray(b''.join(chr(byte)
943
938
                                            for byte in value))
944
939
        prop(value)
1707
1702
            logger.debug("Protocol version: %r", line)
1708
1703
            try:
1709
1704
                if int(line.strip().split()[0]) > 1:
1710
 
                    raise RuntimeError(line)
 
1705
                    raise RuntimeError
1711
1706
            except (ValueError, IndexError, RuntimeError) as error:
1712
1707
                logger.error("Unknown protocol version: %s", error)
1713
1708
                return
1920
1915
    
1921
1916
    def add_pipe(self, parent_pipe, proc):
1922
1917
        """Dummy function; override as necessary"""
1923
 
        raise NotImplementedError()
 
1918
        raise NotImplementedError
1924
1919
 
1925
1920
 
1926
1921
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
2263
2258
            else:
2264
2259
                raise ValueError("Unknown suffix {0!r}"
2265
2260
                                 .format(suffix))
2266
 
        except IndexError as e:
 
2261
        except (ValueError, IndexError) as e:
2267
2262
            raise ValueError(*(e.args))
2268
2263
        timevalue += delta
2269
2264
    return timevalue
2345
2340
    
2346
2341
    if options.check:
2347
2342
        import doctest
2348
 
        fail_count, test_count = doctest.testmod()
2349
 
        sys.exit(os.EX_OK if fail_count == 0 else 1)
 
2343
        doctest.testmod()
 
2344
        sys.exit()
2350
2345
    
2351
2346
    # Default values for config file for server-global settings
2352
2347
    server_defaults = { "interface": "",
2486
2481
        os.setuid(uid)
2487
2482
    except OSError as error:
2488
2483
        if error.errno != errno.EPERM:
2489
 
            raise
 
2484
            raise error
2490
2485
    
2491
2486
    if debug:
2492
2487
        # Enable all possible GnuTLS debugging
2797
2792
            else:
2798
2793
                logger.warning("Could not save persistent state:",
2799
2794
                               exc_info=e)
2800
 
                raise
 
2795
                raise e
2801
2796
        
2802
2797
        # Delete all clients, and settings from config
2803
2798
        while tcp_server.clients: