17
17
'Enabled': u'Enabled',
18
18
'Timeout': u'Timeout',
19
19
'LastCheckedOK': u'Last Successful Check',
20
'LastApprovalRequest': u'Last Approval Request',
21
20
'Created': u'Created',
22
21
'Interval': u'Interval',
24
23
'Fingerprint': u'Fingerprint',
25
24
'CheckerRunning': u'Check Is Running',
26
25
'LastEnabled': u'Last Enabled',
27
'ApprovalPending': u'Approval Is Pending',
28
'ApprovedByDefault': u'Approved By Default',
29
'ApprovalDelay': u"Approval Delay",
30
'ApprovalDuration': u"Approval Duration",
31
26
'Checker': u'Checker',
33
28
defaultkeywords = ('Name', 'Enabled', 'Timeout', 'LastCheckedOK')
98
93
def valuetostring(value, keyword):
99
94
if type(value) is dbus.Boolean:
100
95
return u"Yes" if value else u"No"
101
if keyword in (u"Timeout", u"Interval", u"ApprovalDelay",
102
u"ApprovalDuration"):
96
if keyword in (u"timeout", u"interval"):
103
97
return milliseconds_to_string(value)
104
98
return unicode(value)
128
121
options.checker is not None,
129
122
options.timeout is not None,
130
123
options.interval is not None,
131
options.approved_by_default is not None,
132
options.approval_delay is not None,
133
options.approval_duration is not None,
134
124
options.host is not None,
135
125
options.secret is not None,
162
152
help="Set timeout for client")
163
153
parser.add_option("-i", "--interval", type="string",
164
154
help="Set checker interval for client")
165
parser.add_option("--approve-by-default", action="store_true",
166
dest=u"approved_by_default",
167
help="Set client to be approved by default")
168
parser.add_option("--deny-by-default", action="store_false",
169
dest=u"approved_by_default",
170
help="Set client to be denied by default")
171
parser.add_option("--approval-delay", type="string",
172
help="Set delay before client approve/deny")
173
parser.add_option("--approval-duration", type="string",
174
help="Set duration of one client approval")
175
155
parser.add_option("-H", "--host", type="string",
176
156
help="Set host for client")
177
157
parser.add_option("-s", "--secret", type="string",
181
161
parser.add_option("-D", "--deny", action="store_true",
182
162
help="Deny any current client request")
183
163
options, client_names = parser.parse_args()
185
165
if has_actions(options) and not client_names and not options.all:
186
parser.error('Options require clients names or --all.')
166
parser.error('Options requires clients names or --all.')
187
167
if options.verbose and has_actions(options):
188
parser.error('--verbose can only be used alone or with'
168
parser.error('Verbose option can only be used alone or with --all.')
190
169
if options.all and not has_actions(options):
191
parser.error('--all requires an action.')
170
parser.error('--all requires an action')
194
173
bus = dbus.SystemBus()
195
174
mandos_dbus_objc = bus.get_object(busname, server_path)
216
195
print >> sys.stderr, "Access denied: Accessing mandos server through dbus."
219
# Compile dict of (clients: properties) to process
198
# Compile list of clients to process
222
201
if options.all or not client_names:
223
clients = dict((bus.get_object(busname, path), properties)
224
for path, properties in
225
mandos_clients.iteritems())
202
clients = (bus.get_object(busname, path) for path in mandos_clients.iterkeys())
227
204
for name in client_names:
228
205
for path, client in mandos_clients.iteritems():
229
206
if client['Name'] == name:
230
207
client_objc = bus.get_object(busname, path)
231
clients[client_objc] = client
208
clients.append(client_objc)
234
211
print >> sys.stderr, "Client not found on server: %r" % name
237
214
if not has_actions(options) and clients:
238
215
if options.verbose:
239
keywords = ('Name', 'Enabled', 'Timeout',
240
'LastCheckedOK', 'Created', 'Interval',
241
'Host', 'Fingerprint', 'CheckerRunning',
242
'LastEnabled', 'ApprovalPending',
244
'LastApprovalRequest', 'ApprovalDelay',
245
'ApprovalDuration', 'Checker')
216
keywords = ('Name', 'Enabled', 'Timeout', 'LastCheckedOK',
217
'Created', 'Interval', 'Host', 'Fingerprint',
218
'CheckerRunning', 'LastEnabled', 'Checker')
247
220
keywords = defaultkeywords
249
print_clients(clients.values(), keywords)
222
print_clients(mandos_clients.values(), keywords)
251
224
# Process each client in the list by all selected options
252
225
for client in clients:
278
251
timedelta_to_milliseconds
279
252
(string_to_delta(options.interval)),
280
253
dbus_interface=dbus.PROPERTIES_IFACE)
281
if options.approval_delay:
282
client.Set(client_interface, u"ApprovalDelay",
283
timedelta_to_milliseconds
284
(string_to_delta(options.
286
dbus_interface=dbus.PROPERTIES_IFACE)
287
if options.approval_duration:
288
client.Set(client_interface, u"ApprovalDuration",
289
timedelta_to_milliseconds
290
(string_to_delta(options.
292
dbus_interface=dbus.PROPERTIES_IFACE)
293
254
if options.timeout:
294
255
client.Set(client_interface, u"Timeout",
295
timedelta_to_milliseconds
296
(string_to_delta(options.timeout)),
256
timedelta_to_milliseconds(string_to_delta
297
258
dbus_interface=dbus.PROPERTIES_IFACE)
298
259
if options.secret:
299
260
client.Set(client_interface, u"Secret",
300
dbus.ByteArray(open(options.secret,
302
dbus_interface=dbus.PROPERTIES_IFACE)
303
if options.approved_by_default is not None:
304
client.Set(client_interface, u"ApprovedByDefault",
306
.approved_by_default),
261
dbus.ByteArray(open(options.secret, u'rb').read()),
307
262
dbus_interface=dbus.PROPERTIES_IFACE)
308
263
if options.approve:
309
client.Approve(dbus.Boolean(True),
310
dbus_interface=client_interface)
312
client.Approve(dbus.Boolean(False),
313
dbus_interface=client_interface)
264
client.Approve(dbus.Boolean(True), dbus_interface=client_interface)
266
client.Approve(dbus.Boolean(False), dbus_interface=client_interface)
315
268
if __name__ == '__main__':