/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 mandos-ctl

  • Committer: Teddy Hogeborn
  • Date: 2012-06-23 00:58:49 UTC
  • mto: (237.7.272 trunk)
  • mto: This revision was merged to the branch mainline in revision 303.
  • Revision ID: teddy@recompile.se-20120623005849-02wj82cng433rt2k
* clients.conf: Convert all time intervals to new RFC 3339 syntax.
* mandos: All client options for time intervals now take an RFC 3339
          duration.
  (rfc3339_duration_to_delta): New function.
  (string_to_delta): Try rfc3339_duration_to_delta first.
* mandos-clients.conf.xml (OPTIONS/timeout): Document new format.
  (EXAMPLE): Update to new interval format.
  (SEE ALSO): Reference RFC 3339.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
4
4
# Mandos Monitor - Control and monitor the Mandos server
5
5
6
 
# Copyright © 2008-2014 Teddy Hogeborn
7
 
# Copyright © 2008-2014 Björn Påhlsson
 
6
# Copyright © 2008-2012 Teddy Hogeborn
 
7
# Copyright © 2008-2012 Björn Påhlsson
8
8
9
9
# This program is free software: you can redistribute it and/or modify
10
10
# it under the terms of the GNU General Public License as published by
26
26
from __future__ import (division, absolute_import, print_function,
27
27
                        unicode_literals)
28
28
 
29
 
try:
30
 
    from future_builtins import *
31
 
except ImportError:
32
 
    pass
 
29
from future_builtins import *
33
30
 
34
31
import sys
35
32
import argparse
42
39
 
43
40
import dbus
44
41
 
45
 
if sys.version_info[0] == 2:
46
 
    str = unicode
47
 
 
48
42
locale.setlocale(locale.LC_ALL, "")
49
43
 
50
44
tablewords = {
72
66
server_path = "/"
73
67
server_interface = domain + ".Mandos"
74
68
client_interface = domain + ".Mandos.Client"
75
 
version = "1.6.7"
 
69
version = "1.6.0"
76
70
 
77
71
def timedelta_to_milliseconds(td):
78
72
    """Convert a datetime.timedelta object to milliseconds"""
83
77
def milliseconds_to_string(ms):
84
78
    td = datetime.timedelta(0, 0, 0, ms)
85
79
    return ("{days}{hours:02}:{minutes:02}:{seconds:02}"
86
 
            .format(days = "{}T".format(td.days) if td.days else "",
 
80
            .format(days = "{0}T".format(td.days) if td.days else "",
87
81
                    hours = td.seconds // 3600,
88
82
                    minutes = (td.seconds % 3600) // 60,
89
83
                    seconds = td.seconds % 60,
157
151
    token_duration = Token(re.compile(r"P"), None,
158
152
                           frozenset((token_year, token_month,
159
153
                                      token_day, token_time,
160
 
                                      token_week)))
 
154
                                      token_week))),
161
155
    # Define starting values
162
156
    value = datetime.timedelta() # Value so far
163
157
    found_token = None
164
 
    followers = frozenset((token_duration,)) # Following valid tokens
 
158
    followers = frozenset(token_duration,) # Following valid tokens
165
159
    s = duration                # String left to parse
166
160
    # Loop until end token is found
167
161
    while found_token is not token_end:
205
199
    >>> string_to_delta("5m 30s")
206
200
    datetime.timedelta(0, 330)
207
201
    """
 
202
    value = datetime.timedelta(0)
 
203
    regexp = re.compile(r"(\d+)([dsmhw]?)")
208
204
    
209
205
    try:
210
206
        return rfc3339_duration_to_delta(interval)
211
207
    except ValueError:
212
208
        pass
213
209
    
214
 
    value = datetime.timedelta(0)
215
 
    regexp = re.compile(r"(\d+)([dsmhw]?)")
216
 
    
217
210
    for num, suffix in regexp.findall(interval):
218
211
        if suffix == "d":
219
212
            value += datetime.timedelta(int(num))
236
229
        if keyword in ("Timeout", "Interval", "ApprovalDelay",
237
230
                       "ApprovalDuration", "ExtendedTimeout"):
238
231
            return milliseconds_to_string(value)
239
 
        return str(value)
 
232
        return unicode(value)
240
233
    
241
234
    # Create format string to print table rows
242
235
    format_string = " ".join("{{{key}:{width}}}".format(
249
242
    # Print header line
250
243
    print(format_string.format(**tablewords))
251
244
    for client in clients:
252
 
        print(format_string.format(**{ key:
 
245
        print(format_string.format(**dict((key,
253
246
                                           valuetostring(client[key],
254
 
                                                         key)
255
 
                                       for key in keywords }))
 
247
                                                         key))
 
248
                                          for key in keywords)))
256
249
 
257
250
def has_actions(options):
258
251
    return any((options.enable,
277
270
def main():
278
271
    parser = argparse.ArgumentParser()
279
272
    parser.add_argument("--version", action="version",
280
 
                        version = "%(prog)s {}".format(version),
 
273
                        version = "%(prog)s {0}".format(version),
281
274
                        help="show version number and exit")
282
275
    parser.add_argument("-a", "--all", action="store_true",
283
276
                        help="Select all clients")
316
309
    parser.add_argument("--approval-duration",
317
310
                        help="Set duration of one client approval")
318
311
    parser.add_argument("-H", "--host", help="Set host for client")
319
 
    parser.add_argument("-s", "--secret",
320
 
                        type=argparse.FileType(mode="rb"),
 
312
    parser.add_argument("-s", "--secret", type=file,
321
313
                        help="Set password blob (file) for client")
322
314
    parser.add_argument("-A", "--approve", action="store_true",
323
315
                        help="Approve any current client request")
338
330
 
339
331
    if options.check:
340
332
        fail_count, test_count = doctest.testmod()
341
 
        sys.exit(os.EX_OK if fail_count == 0 else 1)
 
333
        sys.exit(0 if fail_count == 0 else 1)
342
334
    
343
335
    try:
344
336
        bus = dbus.SystemBus()
372
364
    clients={}
373
365
    
374
366
    if options.all or not options.client:
375
 
        clients = { bus.get_object(busname, path): properties
376
 
                    for path, properties in mandos_clients.items() }
 
367
        clients = dict((bus.get_object(busname, path), properties)
 
368
                       for path, properties in
 
369
                       mandos_clients.iteritems())
377
370
    else:
378
371
        for name in options.client:
379
 
            for path, client in mandos_clients.items():
 
372
            for path, client in mandos_clients.iteritems():
380
373
                if client["Name"] == name:
381
374
                    client_objc = bus.get_object(busname, path)
382
375
                    clients[client_objc] = client
383
376
                    break
384
377
            else:
385
 
                print("Client not found on server: {!r}"
 
378
                print("Client not found on server: {0!r}"
386
379
                      .format(name), file=sys.stderr)
387
380
                sys.exit(1)
388
381