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

Added more method support for mandos clients through mandos-ctl

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
# -*- mode: python; coding: utf-8 -*-
3
3
 
4
 
from __future__ import division
5
4
import sys
6
5
import dbus
7
6
from optparse import OptionParser
8
7
import locale
9
 
import datetime
10
 
import re
11
8
 
12
9
locale.setlocale(locale.LC_ALL, u'')
13
10
 
26
23
    }
27
24
defaultkeywords = ('name', 'enabled', 'timeout', 'last_checked_ok',
28
25
                   'checker')
29
 
domain = 'se.bsnet.fukt'
30
 
busname = domain + '.Mandos'
31
 
server_path = '/'
32
 
server_interface = domain + '.Mandos'
33
 
client_interface = domain + '.Mandos.Client'
34
 
version = "1.0.11"
 
26
busname = 'org.mandos-system.Mandos'
 
27
server_path = '/Mandos'
 
28
server_interface = 'org.mandos_system.Mandos'
 
29
client_interface = 'org.mandos_system.Mandos.Client'
 
30
version = "1.0.2"
 
31
 
35
32
bus = dbus.SystemBus()
36
33
mandos_dbus_objc = bus.get_object(busname, server_path)
37
34
mandos_serv = dbus.Interface(mandos_dbus_objc,
38
35
                             dbus_interface = server_interface)
39
36
mandos_clients = mandos_serv.GetAllClientsWithProperties()
40
37
 
41
 
def datetime_to_milliseconds(dt):
42
 
    "Return the 'timeout' attribute in milliseconds"
43
 
    return ((dt.days * 24 * 60 * 60 * 1000)
44
 
            + (dt.seconds * 1000)
45
 
            + (dt.microseconds // 1000))
46
 
 
47
 
def milliseconds_to_string(ms):
48
 
    td = datetime.timedelta(0, 0, 0, ms)
49
 
    return "%s%02d:%02d:%02d" % (("%dT" % td.days) if td.days else "", # days
50
 
                           td.seconds // 3600,        # hours
51
 
                           (td.seconds % 3600) // 60, # minutes
52
 
                           (td.seconds % 60))         # seconds
53
 
 
54
 
 
55
 
def string_to_delta(interval):
56
 
    """Parse a string and return a datetime.timedelta
57
 
 
58
 
    >>> string_to_delta('7d')
59
 
    datetime.timedelta(7)
60
 
    >>> string_to_delta('60s')
61
 
    datetime.timedelta(0, 60)
62
 
    >>> string_to_delta('60m')
63
 
    datetime.timedelta(0, 3600)
64
 
    >>> string_to_delta('24h')
65
 
    datetime.timedelta(1)
66
 
    >>> string_to_delta(u'1w')
67
 
    datetime.timedelta(7)
68
 
    >>> string_to_delta('5m 30s')
69
 
    datetime.timedelta(0, 330)
70
 
    """
71
 
    timevalue = datetime.timedelta(0)
72
 
    regexp = re.compile("\d+[dsmhw]")
73
 
    
74
 
    for s in regexp.findall(interval):
75
 
        try:
76
 
            suffix = unicode(s[-1])
77
 
            value = int(s[:-1])
78
 
            if suffix == u"d":
79
 
                delta = datetime.timedelta(value)
80
 
            elif suffix == u"s":
81
 
                delta = datetime.timedelta(0, value)
82
 
            elif suffix == u"m":
83
 
                delta = datetime.timedelta(0, 0, 0, 0, value)
84
 
            elif suffix == u"h":
85
 
                delta = datetime.timedelta(0, 0, 0, 0, 0, value)
86
 
            elif suffix == u"w":
87
 
                delta = datetime.timedelta(0, 0, 0, 0, 0, 0, value)
88
 
            else:
89
 
                raise ValueError
90
 
        except (ValueError, IndexError):
91
 
            raise ValueError
92
 
        timevalue += delta
93
 
    return timevalue
94
 
 
95
 
def print_clients(clients):
96
 
    def valuetostring(value, keyword):
97
 
        if type(value) is dbus.Boolean:
98
 
            return u"Yes" if value else u"No"
99
 
        if keyword in ("timeout", "interval"):
100
 
            return milliseconds_to_string(value)
101
 
        return unicode(value)
102
 
    
 
38
def print_clients():
 
39
    def valuetostring(x):
 
40
        if type(x) is dbus.Boolean:
 
41
            return u"Yes" if x else u"No"
 
42
        else:
 
43
            return unicode(x)
103
44
    format_string = u' '.join(u'%%-%ds' %
104
45
                              max(len(tablewords[key]),
105
 
                                  max(len(valuetostring(client[key], key))
 
46
                                  max(len(valuetostring(client[key]))
106
47
                                      for client in
107
 
                                      clients))
 
48
                                      mandos_clients.itervalues()))
108
49
                              for key in keywords)
109
 
    print format_string % tuple(tablewords[key] for key in keywords)
110
 
    for client in clients:
111
 
        print format_string % tuple(valuetostring(client[key], key)
 
50
    print format_string % tuple(tablewords[key] for key in keywords) 
 
51
    for client in mandos_clients.itervalues():
 
52
        print format_string % tuple(valuetostring(client[key])
112
53
                                    for key in keywords)
113
54
 
114
55
parser = OptionParser(version = "%%prog %s" % version)
115
56
parser.add_option("-a", "--all", action="store_true",
116
57
                  help="Print all fields")
117
58
parser.add_option("-e", "--enable", action="store_true",
118
 
                  help="Enable client")
 
59
                  help="Enable specified client")
119
60
parser.add_option("-d", "--disable", action="store_true",
120
 
                  help="disable client")
121
 
parser.add_option("-b", "--bump-timeout", action="store_true",
122
 
                  help="Bump timeout for client")
123
 
parser.add_option("--start-checker", action="store_true",
124
 
                  help="Start checker for client")
125
 
parser.add_option("--stop-checker", action="store_true",
126
 
                  help="Stop checker for client")
127
 
parser.add_option("-V", "--is-valid", action="store_true",
128
 
                  help="Check if client is still valid")
129
 
parser.add_option("-r", "--remove", action="store_true",
130
 
                  help="Remove client")
131
 
parser.add_option("-c", "--checker", type="string",
132
 
                  help="Set checker command for client")
133
 
parser.add_option("-t", "--timeout", type="string",
134
 
                  help="Set timeout for client")
135
 
parser.add_option("-i", "--interval", type="string",
136
 
                  help="Set checker interval for client")
137
 
parser.add_option("-H", "--host", type="string",
138
 
                  help="Set host for client")
139
 
parser.add_option("-s", "--secret", type="string",
140
 
                  help="Set password blob (file) for client")
 
61
                  help="disable specified client")
 
62
parser.add_option("-b", "--bumptimeout", action="store_true",
 
63
                  help="Bump timeout of specified client")
 
64
parser.add_option("-s", "--startchecker", action="store_true",
 
65
                  help="Start checker for specified client")
 
66
parser.add_option("-S", "--stopchecker", action="store_true",
 
67
                  help="Stop checker for specified client")
141
68
options, client_names = parser.parse_args()
142
69
 
143
 
# Compile list of clients to process
144
70
clients=[]
145
71
for name in client_names:
146
72
    for path, client in mandos_clients.iteritems():
154
80
        print >> sys.stderr, "Client not found on server: %r" % name
155
81
        sys.exit(1)
156
82
 
157
 
if not clients and mandos_clients.values():
 
83
if not clients:
158
84
    keywords = defaultkeywords
159
85
    if options.all:
160
86
        keywords = ('name', 'enabled', 'timeout', 'last_checked_ok',
161
87
                    'created', 'interval', 'host', 'fingerprint',
162
88
                    'checker_running', 'last_enabled', 'checker')
163
 
    print_clients(mandos_clients.values())
 
89
    print_clients()
164
90
 
165
 
# Process each client in the list by all selected options
166
91
for client in clients:
167
 
    if options.remove:
168
 
        mandos_serv.RemoveClient(client.__dbus_object_path__)
169
92
    if options.enable:
170
93
        client.Enable()
171
94
    if options.disable:
172
95
        client.Disable()
173
 
    if options.bump_timeout:
 
96
    if options.bumptimeout:
174
97
        client.BumpTimeout()
175
 
    if options.start_checker:
 
98
    if options.startchecker:
176
99
        client.StartChecker()
177
 
    if options.stop_checker:
 
100
    if options.stopchecker:
178
101
        client.StopChecker()
179
 
    if options.is_valid:
180
 
        sys.exit(0 if client.IsStillValid() else 1)
181
 
    if options.checker:
182
 
        client.SetChecker(options.checker)
183
 
    if options.host:
184
 
        client.SetHost(options.host)
185
 
    if options.interval:
186
 
        client.SetInterval(datetime_to_milliseconds
187
 
                           (string_to_delta(options.interval)))
188
 
    if options.timeout:
189
 
        client.SetTimeout(datetime_to_milliseconds
190
 
                          (string_to_delta(options.timeout)))
191
 
    if options.secret:
192
 
        client.SetSecret(dbus.ByteArray(open(options.secret, 'rb').read()))
193
 
    
 
102