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

  • Committer: Teddy Hogeborn
  • Date: 2008-12-10 01:26:02 UTC
  • mfrom: (237.1.2 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20081210012602-vhz3h75xkj24t340
First version of a somewhat complete D-Bus server interface.  Also
change user/group name to "_mandos".

* debian/mandos.postinst: Rename old "mandos" user and group to
                          "_mandos"; create "_mandos" user and group
                          if none exist.
* debian/mandos-client.postinst: - '' -

* initramfs-tools-hook: Try "_mandos" before "mandos" as user and
                        group name.

* mandos (_datetime_to_dbus_struct): New; was previously local.
  (Client.started): Renamed to "last_started".  All users changed.
  (Client.started): New; boolean.
  (Client.dbus_object_path): New.
  (Client.check_command): Renamed to "checker_command".  All users
                          changed.
  (Client.__init__): Set and use "self.dbus_object_path".  Set
                     "self.started".
  (Client.start): Update "self.started".  Emit "self.PropertyChanged"
                  signals for both "started" and "last_started".
  (Client.stop): Update "self.started".  Emit "self.PropertyChanged"
                 signal for "started".
  (Client.checker_callback): Take additional "command" argument.  All
                             callers changed. Emit
                             "self.PropertyChanged" signal.
  (Client.bump_timeout): Emit "self.PropertyChanged" signal for
                         "last_checked_ok".
  (Client.start_checker): Emit "self.PropertyChanged" signal for
                          "checker_running".
  (Client.stop_checker): Emit "self.PropertyChanged" signal for
                         "checker_running".
  (Client.still_valid): Bug fix: use "getattr(self, started, False)"
                        instead of "self.started" in case this client
                        object is so new that the "started" attribute
                        has not been created yet.
  (Client.IntervalChanged, Client.CheckerIsRunning, Client.GetChecker,
  Client.GetCreated, Client.GetFingerprint, Client.GetHost,
  Client.GetInterval, Client.GetName, Client.GetStarted,
  Client.GetTimeout, Client.StateChanged, Client.TimeoutChanged):
  Removed; all callers changed.
  (Client.CheckerCompleted): Add "condition" and "command" arguments.
                             All callers changed.
  (Client.GetAllProperties, Client.PropertyChanged): New.
  (Client.StillValid): Renamed to "IsStillValid".
  (Client.StartChecker): Changed to its own function to avoid the
                         return value from "Client.start_checker()".
  (Client.Stop): Changed to its own function to avoid the return value
                 from "Client.stop()".
  (main): Try "_mandos" before "mandos" as user and group name.
          Removed inner function "remove_from_clients".  New inner
          class "MandosServer".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-*- org -*-
2
2
 
3
3
* mandos-client
4
 
** TODO [#A] Clean up /tmp directory on signal
5
4
** TODO [#B] Temporarily lower kernel log level
6
5
   for less printouts during sucessfull boot.
7
6
   klogctl(6, NULL, 0); klogctl(7, NULL, 0);
8
7
** TODO [#C] IPv4 support
9
8
 
10
 
* plugin-runner
11
 
** TODO [#B] use scandir(3) instead of readdir(3)
12
 
 
13
9
* mandos (server)
14
10
** TODO [#B] Log level                          :bugs:
15
11
** TODO /etc/mandos/clients.d/*.conf
34
30
   This will not be strictly necessary when the D-Bus interface is
35
31
   implemented.
36
32
 
37
 
* mandos.xml
38
 
** [[file:mandos.xml::XXX][Document D-Bus interface]]
39
 
 
40
 
* Provide and install /etc/dbus-1/system.d/mandos.conf
41
 
 
42
 
* mandos-list
43
 
*** Handle "no D-Bus server" and/or "no Mandos server found" better
44
 
*** [#B] --dump option
 
33
* Mandos-tools/utilities
 
34
  All of this probably using D-Bus
 
35
** TODO List clients
45
36
** TODO Disable client
46
37
** TODO Enable client
47
38
** TODO Reset timer
48
39
 
49
 
* Curses interface
50
 
 
51
40
* mandos-keygen
52
41
** TODO "--secfile" option
53
42
   Using the "secfile" option instead of "secret"
54
43
** TODO [#B] "--test" option
55
44
   For testing decryption before rebooting.
56
45
 
57
 
* Package
 
46
* [#A] Package
58
47
** /usr/share/initramfs-tools/hooks/mandos
59
 
*** TODO [#C] Do not install in initrd.img if configured not to.
 
48
*** TODO Do not install in initrd.img if configured not to.
60
49
    Use "/etc/initramfs-tools/conf.d/mandos"?  Definitely a debconf
61
50
    question.
62
 
** TODO [#C] /etc/bash_completion.d/mandos
 
51
** TODO /etc/bash_completion.d/mandos
63
52
   From XML sources directly?
64
53
 
65
54