/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 at recompile
  • Date: 2019-12-05 03:38:07 UTC
  • Revision ID: teddy@recompile.se-20191205033807-6awt45zpgp194vl1
From: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>

Add Dutch debconf translation

* debian/po/nl.po: New.

Acked-by: Teddy Hogeborn <teddy@recompile.se>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/python3 -bI
2
2
# -*- mode: python; after-save-hook: (lambda () (let ((command (if (fboundp 'file-local-name) (file-local-name (buffer-file-name)) (or (file-remote-p (buffer-file-name) 'localname) (buffer-file-name))))) (if (= (progn (if (get-buffer "*Test*") (kill-buffer "*Test*")) (process-file-shell-command (format "%s --check" (shell-quote-argument command)) nil "*Test*")) 0) (let ((w (get-buffer-window "*Test*"))) (if w (delete-window w))) (progn (with-current-buffer "*Test*" (compilation-mode)) (display-buffer "*Test*" '(display-buffer-in-side-window)))))); coding: utf-8 -*-
3
3
#
4
4
# Mandos server - give out binary blobs to connecting clients.
91
91
 
92
92
if sys.version_info.major == 2:
93
93
    __metaclass__ = type
 
94
    str = unicode
94
95
 
95
96
# Show warnings by default
96
97
if not sys.warnoptions:
122
123
            # No value found
123
124
            SO_BINDTODEVICE = None
124
125
 
125
 
if sys.version_info.major == 2:
126
 
    str = unicode
127
 
 
128
126
if sys.version_info < (3, 2):
129
127
    configparser.Configparser = configparser.SafeConfigParser
130
128
 
131
 
version = "1.8.8"
 
129
version = "1.8.9"
132
130
stored_state_file = "clients.pickle"
133
131
 
134
132
logger = logging.getLogger()
203
201
            output = subprocess.check_output(["gpgconf"])
204
202
            for line in output.splitlines():
205
203
                name, text, path = line.split(b":")
206
 
                if name == "gpg":
 
204
                if name == b"gpg":
207
205
                    self.gpg = path
208
206
                    break
209
207
        except OSError as e:
214
212
                          '--force-mdc',
215
213
                          '--quiet']
216
214
        # Only GPG version 1 has the --no-use-agent option.
217
 
        if self.gpg == "gpg" or self.gpg.endswith("/gpg"):
 
215
        if self.gpg == b"gpg" or self.gpg.endswith(b"/gpg"):
218
216
            self.gnupgargs.append("--no-use-agent")
219
217
 
220
218
    def __enter__(self):
1053
1051
        # Read return code from connection (see call_pipe)
1054
1052
        returncode = connection.recv()
1055
1053
        connection.close()
1056
 
        self.checker.join()
 
1054
        if self.checker is not None:
 
1055
            self.checker.join()
1057
1056
        self.checker_callback_tag = None
1058
1057
        self.checker = None
1059
1058
 
1150
1149
                kwargs=popen_args)
1151
1150
            self.checker.start()
1152
1151
            self.checker_callback_tag = GLib.io_add_watch(
1153
 
                pipe[0].fileno(), GLib.IO_IN,
 
1152
                GLib.IOChannel.unix_new(pipe[0].fileno()),
 
1153
                GLib.PRIORITY_DEFAULT, GLib.IO_IN,
1154
1154
                self.checker_callback, pipe[0], command)
1155
1155
        # Re-run this periodically if run by GLib.timeout_add
1156
1156
        return True
1411
1411
                raise ValueError("Byte arrays not supported for non-"
1412
1412
                                 "'ay' signature {!r}"
1413
1413
                                 .format(prop._dbus_signature))
1414
 
            value = dbus.ByteArray(b''.join(chr(byte)
1415
 
                                            for byte in value))
 
1414
            value = dbus.ByteArray(bytes(value))
1416
1415
        prop(value)
1417
1416
 
1418
1417
    @dbus.service.method(dbus.PROPERTIES_IFACE,
2680
2679
    def add_pipe(self, parent_pipe, proc):
2681
2680
        # Call "handle_ipc" for both data and EOF events
2682
2681
        GLib.io_add_watch(
2683
 
            parent_pipe.fileno(),
2684
 
            GLib.IO_IN | GLib.IO_HUP,
 
2682
            GLib.IOChannel.unix_new(parent_pipe.fileno()),
 
2683
            GLib.PRIORITY_DEFAULT, GLib.IO_IN | GLib.IO_HUP,
2685
2684
            functools.partial(self.handle_ipc,
2686
2685
                              parent_pipe=parent_pipe,
2687
2686
                              proc=proc))
2725
2724
                return False
2726
2725
 
2727
2726
            GLib.io_add_watch(
2728
 
                parent_pipe.fileno(),
2729
 
                GLib.IO_IN | GLib.IO_HUP,
 
2727
                GLib.IOChannel.unix_new(parent_pipe.fileno()),
 
2728
                GLib.PRIORITY_DEFAULT, GLib.IO_IN | GLib.IO_HUP,
2730
2729
                functools.partial(self.handle_ipc,
2731
2730
                                  parent_pipe=parent_pipe,
2732
2731
                                  proc=proc,
2764
2763
def rfc3339_duration_to_delta(duration):
2765
2764
    """Parse an RFC 3339 "duration" and return a datetime.timedelta
2766
2765
 
2767
 
    >>> rfc3339_duration_to_delta("P7D")
2768
 
    datetime.timedelta(7)
2769
 
    >>> rfc3339_duration_to_delta("PT60S")
2770
 
    datetime.timedelta(0, 60)
2771
 
    >>> rfc3339_duration_to_delta("PT60M")
2772
 
    datetime.timedelta(0, 3600)
2773
 
    >>> rfc3339_duration_to_delta("PT24H")
2774
 
    datetime.timedelta(1)
2775
 
    >>> rfc3339_duration_to_delta("P1W")
2776
 
    datetime.timedelta(7)
2777
 
    >>> rfc3339_duration_to_delta("PT5M30S")
2778
 
    datetime.timedelta(0, 330)
2779
 
    >>> rfc3339_duration_to_delta("P1DT3M20S")
2780
 
    datetime.timedelta(1, 200)
 
2766
    >>> rfc3339_duration_to_delta("P7D") == datetime.timedelta(7)
 
2767
    True
 
2768
    >>> rfc3339_duration_to_delta("PT60S") == datetime.timedelta(0, 60)
 
2769
    True
 
2770
    >>> rfc3339_duration_to_delta("PT60M") == datetime.timedelta(0, 3600)
 
2771
    True
 
2772
    >>> rfc3339_duration_to_delta("PT24H") == datetime.timedelta(1)
 
2773
    True
 
2774
    >>> rfc3339_duration_to_delta("P1W") == datetime.timedelta(7)
 
2775
    True
 
2776
    >>> rfc3339_duration_to_delta("PT5M30S") == datetime.timedelta(0, 330)
 
2777
    True
 
2778
    >>> rfc3339_duration_to_delta("P1DT3M20S") == datetime.timedelta(1, 200)
 
2779
    True
2781
2780
    """
2782
2781
 
2783
2782
    # Parsing an RFC 3339 duration with regular expressions is not
2863
2862
def string_to_delta(interval):
2864
2863
    """Parse a string and return a datetime.timedelta
2865
2864
 
2866
 
    >>> string_to_delta('7d')
2867
 
    datetime.timedelta(7)
2868
 
    >>> string_to_delta('60s')
2869
 
    datetime.timedelta(0, 60)
2870
 
    >>> string_to_delta('60m')
2871
 
    datetime.timedelta(0, 3600)
2872
 
    >>> string_to_delta('24h')
2873
 
    datetime.timedelta(1)
2874
 
    >>> string_to_delta('1w')
2875
 
    datetime.timedelta(7)
2876
 
    >>> string_to_delta('5m 30s')
2877
 
    datetime.timedelta(0, 330)
 
2865
    >>> string_to_delta('7d') == datetime.timedelta(7)
 
2866
    True
 
2867
    >>> string_to_delta('60s') == datetime.timedelta(0, 60)
 
2868
    True
 
2869
    >>> string_to_delta('60m') == datetime.timedelta(0, 3600)
 
2870
    True
 
2871
    >>> string_to_delta('24h') == datetime.timedelta(1)
 
2872
    True
 
2873
    >>> string_to_delta('1w') == datetime.timedelta(7)
 
2874
    True
 
2875
    >>> string_to_delta('5m 30s') == datetime.timedelta(0, 330)
 
2876
    True
2878
2877
    """
2879
2878
 
2880
2879
    try:
3250
3249
                             if isinstance(s, bytes)
3251
3250
                             else s) for s in
3252
3251
                            value["client_structure"]]
3253
 
                        # .name & .host
3254
 
                        for k in ("name", "host"):
 
3252
                        # .name, .host, and .checker_command
 
3253
                        for k in ("name", "host", "checker_command"):
3255
3254
                            if isinstance(value[k], bytes):
3256
3255
                                value[k] = value[k].decode("utf-8")
3257
3256
                        if "key_id" not in value:
3267
3266
                        for key, value in
3268
3267
                        bytes_old_client_settings.items()}
3269
3268
                    del bytes_old_client_settings
3270
 
                    # .host
 
3269
                    # .host and .checker_command
3271
3270
                    for value in old_client_settings.values():
3272
 
                        if isinstance(value["host"], bytes):
3273
 
                            value["host"] = (value["host"]
3274
 
                                             .decode("utf-8"))
 
3271
                        for attribute in ("host", "checker_command"):
 
3272
                            if isinstance(value[attribute], bytes):
 
3273
                                value[attribute] = (value[attribute]
 
3274
                                                    .decode("utf-8"))
3275
3275
            os.remove(stored_state_path)
3276
3276
        except IOError as e:
3277
3277
            if e.errno == errno.ENOENT:
3602
3602
                sys.exit(1)
3603
3603
            # End of Avahi example code
3604
3604
 
3605
 
        GLib.io_add_watch(tcp_server.fileno(), GLib.IO_IN,
3606
 
                          lambda *args, **kwargs:
3607
 
                          (tcp_server.handle_request
3608
 
                           (*args[2:], **kwargs) or True))
 
3605
        GLib.io_add_watch(
 
3606
            GLib.IOChannel.unix_new(tcp_server.fileno()),
 
3607
            GLib.PRIORITY_DEFAULT, GLib.IO_IN,
 
3608
            lambda *args, **kwargs: (tcp_server.handle_request
 
3609
                                     (*args[2:], **kwargs) or True))
3609
3610
 
3610
3611
        logger.debug("Starting main loop")
3611
3612
        main_loop.run()