/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

  • Committer: teddy at bsnet
  • Date: 2010-09-02 18:36:36 UTC
  • mto: (24.1.154 mandos)
  • mto: This revision was merged to the branch mainline in revision 421.
  • Revision ID: teddy@fukt.bsnet.se-20100902183636-h0vb4iw3ut2g3mta
* mandos (ClientDBus.approvals_pending): Changed to be a property
                                         which emits D-Bus signals.
  (ClientDBus.approved_pending): Removed - all callers changed.
  (ClientDBus.GotSecret, ClientDBus.Rejected,
  ClientDBus.NeedApproval): Do not emit D-Bus signal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    'last_enabled': u'Last Enabled',
25
25
    'checker': u'Checker',
26
26
    }
27
 
defaultkeywords = ('name', 'enabled', 'timeout', 'last_checked_ok',
28
 
                   'checker')
29
 
busname = 'org.mandos-system.Mandos'
30
 
server_path = '/Mandos'
31
 
server_interface = 'org.mandos_system.Mandos'
32
 
client_interface = 'org.mandos_system.Mandos.Client'
33
 
version = "1.0.2"
34
 
 
 
27
defaultkeywords = ('name', 'enabled', 'timeout', 'last_checked_ok')
 
28
domain = 'se.bsnet.fukt'
 
29
busname = domain + '.Mandos'
 
30
server_path = '/'
 
31
server_interface = domain + '.Mandos'
 
32
client_interface = domain + '.Mandos.Client'
 
33
version = "1.0.14"
35
34
bus = dbus.SystemBus()
36
35
mandos_dbus_objc = bus.get_object(busname, server_path)
37
36
mandos_serv = dbus.Interface(mandos_dbus_objc,
38
37
                             dbus_interface = server_interface)
39
38
mandos_clients = mandos_serv.GetAllClientsWithProperties()
40
39
 
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))
 
40
def timedelta_to_milliseconds(td):
 
41
    "Convert a datetime.timedelta object to milliseconds"
 
42
    return ((td.days * 24 * 60 * 60 * 1000)
 
43
            + (td.seconds * 1000)
 
44
            + (td.microseconds // 1000))
46
45
 
47
46
def milliseconds_to_string(ms):
48
47
    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
 
48
    return (u"%(days)s%(hours)02d:%(minutes)02d:%(seconds)02d"
 
49
            % { "days": "%dT" % td.days if td.days else "",
 
50
                "hours": td.seconds // 3600,
 
51
                "minutes": (td.seconds % 3600) // 60,
 
52
                "seconds": td.seconds % 60,
 
53
                })
53
54
 
54
55
 
55
56
def string_to_delta(interval):
96
97
    def valuetostring(value, keyword):
97
98
        if type(value) is dbus.Boolean:
98
99
            return u"Yes" if value else u"No"
99
 
        if keyword in ("timeout", "interval"):
 
100
        if keyword in (u"timeout", u"interval"):
100
101
            return milliseconds_to_string(value)
101
102
        return unicode(value)
102
103
    
 
104
    # Create format string to print table rows
103
105
    format_string = u' '.join(u'%%-%ds' %
104
106
                              max(len(tablewords[key]),
105
107
                                  max(len(valuetostring(client[key], key))
106
108
                                      for client in
107
109
                                      clients))
108
110
                              for key in keywords)
109
 
    print format_string % tuple(tablewords[key] for key in keywords) 
 
111
    # Print header line
 
112
    print format_string % tuple(tablewords[key] for key in keywords)
110
113
    for client in clients:
111
114
        print format_string % tuple(valuetostring(client[key], key)
112
115
                                    for key in keywords)
115
118
parser.add_option("-a", "--all", action="store_true",
116
119
                  help="Print all fields")
117
120
parser.add_option("-e", "--enable", action="store_true",
118
 
                  help="Enable specified client")
 
121
                  help="Enable client")
119
122
parser.add_option("-d", "--disable", action="store_true",
120
 
                  help="disable specified client")
 
123
                  help="disable client")
121
124
parser.add_option("-b", "--bump-timeout", action="store_true",
122
 
                  help="Bump timeout of specified client")
 
125
                  help="Bump timeout for client")
123
126
parser.add_option("--start-checker", action="store_true",
124
 
                  help="Start checker for specified client")
 
127
                  help="Start checker for client")
125
128
parser.add_option("--stop-checker", action="store_true",
126
 
                  help="Stop checker for specified client")
127
 
parser.add_option("-v", "--is-valid", action="store_true",
128
 
                  help="Stop checker for specified client")
 
129
                  help="Stop checker for client")
 
130
parser.add_option("-V", "--is-enabled", action="store_true",
 
131
                  help="Check if client is enabled")
 
132
parser.add_option("-r", "--remove", action="store_true",
 
133
                  help="Remove client")
129
134
parser.add_option("-c", "--checker", type="string",
130
 
                  help="Set checker command for specified client")
 
135
                  help="Set checker command for client")
131
136
parser.add_option("-t", "--timeout", type="string",
132
 
                  help="Set timeout for specified client")
 
137
                  help="Set timeout for client")
133
138
parser.add_option("-i", "--interval", type="string",
134
 
                  help="Set checker interval for specified client")
 
139
                  help="Set checker interval for client")
135
140
parser.add_option("-H", "--host", type="string",
136
 
                  help="Set host for specified client")
 
141
                  help="Set host for client")
137
142
parser.add_option("-s", "--secret", type="string",
138
 
                  help="Set password blob (file) for specified client")
 
143
                  help="Set password blob (file) for client")
139
144
options, client_names = parser.parse_args()
140
145
 
 
146
# Compile list of clients to process
141
147
clients=[]
142
148
for name in client_names:
143
149
    for path, client in mandos_clients.iteritems():
144
150
        if client['name'] == name:
145
151
            client_objc = bus.get_object(busname, path)
146
 
            clients.append(dbus.Interface(client_objc,
147
 
                                          dbus_interface
148
 
                                          = client_interface))
 
152
            clients.append(client_objc)
149
153
            break
150
154
    else:
151
155
        print >> sys.stderr, "Client not found on server: %r" % name
152
156
        sys.exit(1)
153
157
 
154
 
if not clients:
 
158
if not clients and mandos_clients.values():
155
159
    keywords = defaultkeywords
156
160
    if options.all:
157
161
        keywords = ('name', 'enabled', 'timeout', 'last_checked_ok',
158
162
                    'created', 'interval', 'host', 'fingerprint',
159
163
                    'checker_running', 'last_enabled', 'checker')
160
164
    print_clients(mandos_clients.values())
161
 
    
 
165
 
 
166
# Process each client in the list by all selected options
162
167
for client in clients:
 
168
    if options.remove:
 
169
        mandos_serv.RemoveClient(client.__dbus_object_path__)
163
170
    if options.enable:
164
 
        client.Enable()
 
171
        client.Enable(dbus_interface=client_interface)
165
172
    if options.disable:
166
 
        client.Disable()
 
173
        client.Disable(dbus_interface=client_interface)
167
174
    if options.bump_timeout:
168
 
        client.BumpTimeout()
 
175
        client.CheckedOK(dbus_interface=client_interface)
169
176
    if options.start_checker:
170
 
        client.StartChecker()
 
177
        client.StartChecker(dbus_interface=client_interface)
171
178
    if options.stop_checker:
172
 
        client.StopChecker()
173
 
    if options.is_valid:
174
 
        sys.exit(0 if client.IsStillValid() else 1)
 
179
        client.StopChecker(dbus_interface=client_interface)
 
180
    if options.is_enabled:
 
181
        sys.exit(0 if client.Get(client_interface,
 
182
                                 u"enabled",
 
183
                                 dbus_interface=dbus.PROPERTIES_IFACE)
 
184
                 else 1)
175
185
    if options.checker:
176
 
        client.SetChecker(options.checker)
 
186
        client.Set(client_interface, u"checker", options.checker,
 
187
                   dbus_interface=dbus.PROPERTIES_IFACE)
177
188
    if options.host:
178
 
        client.SetHost(options.host)
 
189
        client.Set(client_interface, u"host", options.host,
 
190
                   dbus_interface=dbus.PROPERTIES_IFACE)
179
191
    if options.interval:
180
 
        client.SetInterval(datetime_to_milliseconds
181
 
                           (string_to_delta(options.interval)))
 
192
        client.Set(client_interface, u"interval",
 
193
                   timedelta_to_milliseconds
 
194
                   (string_to_delta(options.interval)),
 
195
                   dbus_interface=dbus.PROPERTIES_IFACE)
182
196
    if options.timeout:
183
 
        client.SetTimeout(datetime_to_milliseconds
184
 
                          (string_to_delta(options.timeout)))
 
197
        client.Set(client_interface, u"timeout",
 
198
                   timedelta_to_milliseconds(string_to_delta
 
199
                                             (options.timeout)),
 
200
                   dbus_interface=dbus.PROPERTIES_IFACE)
185
201
    if options.secret:
186
 
        client.SetSecret(dbus.ByteArray(open(options.secret, 'rb').read()))
187
 
    
 
202
        client.Set(client_interface, u"secret",
 
203
                   dbus.ByteArray(open(options.secret, u'rb').read()),
 
204
                   dbus_interface=dbus.PROPERTIES_IFACE)