12
12
locale.setlocale(locale.LC_ALL, u'')
16
'enabled': u'Enabled',
17
'timeout': u'Timeout',
18
'last_checked_ok': u'Last Successful Check',
19
'created': u'Created',
20
'interval': u'Interval',
22
'fingerprint': u'Fingerprint',
23
'checker_running': u'Check Is Running',
24
'last_enabled': u'Last Enabled',
25
'checker': u'Checker',
16
'Enabled': u'Enabled',
17
'Timeout': u'Timeout',
18
'LastCheckedOK': u'Last Successful Check',
19
'Created': u'Created',
20
'Interval': u'Interval',
22
'Fingerprint': u'Fingerprint',
23
'CheckerRunning': u'Check Is Running',
24
'LastEnabled': u'Last Enabled',
25
'Checker': u'Checker',
27
defaultkeywords = ('name', 'enabled', 'timeout', 'last_checked_ok',
27
defaultkeywords = ('Name', 'Enabled', 'Timeout', 'LastCheckedOK')
29
28
domain = 'se.bsnet.fukt'
30
29
busname = domain + '.Mandos'
32
31
server_interface = domain + '.Mandos'
33
32
client_interface = domain + '.Mandos.Client'
35
bus = dbus.SystemBus()
36
mandos_dbus_objc = bus.get_object(busname, server_path)
35
bus = dbus.SystemBus()
36
mandos_dbus_objc = bus.get_object(busname, server_path)
37
except dbus.exceptions.DBusException:
37
40
mandos_serv = dbus.Interface(mandos_dbus_objc,
38
41
dbus_interface = server_interface)
39
42
mandos_clients = mandos_serv.GetAllClientsWithProperties()
105
108
# Create format string to print table rows
106
109
format_string = u' '.join(u'%%-%ds' %
107
110
max(len(tablewords[key]),
108
max(len(valuetostring(client[key], key))
111
max(len(valuetostring(client[key],
111
115
for key in keywords)
128
132
help="Start checker for client")
129
133
parser.add_option("--stop-checker", action="store_true",
130
134
help="Stop checker for client")
131
parser.add_option("-V", "--is-valid", action="store_true",
132
help="Check if client is still valid")
135
parser.add_option("-V", "--is-enabled", action="store_true",
136
help="Check if client is enabled")
133
137
parser.add_option("-r", "--remove", action="store_true",
134
138
help="Remove client")
135
139
parser.add_option("-c", "--checker", type="string",
142
146
help="Set host for client")
143
147
parser.add_option("-s", "--secret", type="string",
144
148
help="Set password blob (file) for client")
149
parser.add_option("-A", "--approve", action="store_true",
150
help="Approve any current client request")
151
parser.add_option("-D", "--deny", action="store_true",
152
help="Deny any current client request")
145
153
options, client_names = parser.parse_args()
147
155
# Compile list of clients to process
159
167
if not clients and mandos_clients.values():
160
168
keywords = defaultkeywords
162
keywords = ('name', 'enabled', 'timeout', 'last_checked_ok',
163
'created', 'interval', 'host', 'fingerprint',
164
'checker_running', 'last_enabled', 'checker')
170
keywords = ('Name', 'Enabled', 'Timeout', 'LastCheckedOK',
171
'Created', 'Interval', 'Host', 'Fingerprint',
172
'CheckerRunning', 'LastEnabled', 'Checker')
165
173
print_clients(mandos_clients.values())
167
175
# Process each client in the list by all selected options
178
186
client.StartChecker(dbus_interface=client_interface)
179
187
if options.stop_checker:
180
188
client.StopChecker(dbus_interface=client_interface)
189
if options.is_enabled:
182
190
sys.exit(0 if client.Get(client_interface,
184
192
dbus_interface=dbus.PROPERTIES_IFACE)
186
194
if options.checker:
187
client.Set(client_interface, u"checker", options.checker,
195
client.Set(client_interface, u"Checker", options.checker,
188
196
dbus_interface=dbus.PROPERTIES_IFACE)
190
client.Set(client_interface, u"host", options.host,
198
client.Set(client_interface, u"Host", options.host,
191
199
dbus_interface=dbus.PROPERTIES_IFACE)
192
200
if options.interval:
193
client.Set(client_interface, u"interval",
201
client.Set(client_interface, u"Interval",
194
202
timedelta_to_milliseconds
195
203
(string_to_delta(options.interval)),
196
204
dbus_interface=dbus.PROPERTIES_IFACE)
197
205
if options.timeout:
198
client.Set(client_interface, u"timeout",
206
client.Set(client_interface, u"Timeout",
199
207
timedelta_to_milliseconds(string_to_delta
200
208
(options.timeout)),
201
209
dbus_interface=dbus.PROPERTIES_IFACE)
202
210
if options.secret:
203
client.Set(client_interface, u"secret",
211
client.Set(client_interface, u"Secret",
204
212
dbus.ByteArray(open(options.secret, u'rb').read()),
205
213
dbus_interface=dbus.PROPERTIES_IFACE)
215
client.Approve(dbus.Boolean(True),
216
dbus_interface=client_interface)
218
client.Approve(dbus.Boolean(False),
219
dbus_interface=client_interface)