/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-11-09 06:40:29 UTC
  • mto: (24.1.113 mandos)
  • mto: This revision was merged to the branch mainline in revision 238.
  • Revision ID: teddy@fukt.bsnet.se-20081109064029-df71jpoce308cq3v
First steps of a D-Bus interface to the server.

* mandos: Also import "dbus.service".
  (Client): Inherit from "dbus.service.Object", which is a new-style
            class, so inheriting from "object" is no longer necessary.
  (Client.interface): New temporary variable which only exists during
                     class definition.

  (Client.getName, Client.getFingerprint): New D-Bus getter methods.
  (Client.setSecret): New D-Bus setter method.
  (Client._set_timeout): Emit D-Bus signal "TimeoutChanged".
  (Client.getTimeout): New D-Bus getter method.
  (Client.TimeoutChanged): New D-Bus signal.
  (Client._set_interval): Emit D-Bus signal "IntervalChanged".
  (Client.getInterval): New D-Bus getter method.
  (Client.intervalChanged): New D-Bus signal.
  (Client.__init__): Also call "dbus.service.Object.__init__".
  (Client.started): New boolean attribute.
  (Client.start, Client.stop): Update "self.started", and emit D-Bus
                               signal "StateChanged".
  (Client.StateChanged): New D-Bus signal.
  (Client.stop): Use "self.started" instead of misusing "self.secret".
                 Also simplify code by using "getattr" instead of
                 "hasattr".
  (Client.checker_callback): Emit D-Bus signal "CheckerCompleted".
  (Client.CheckerCompleted): New D-Bus signal.
  (Client.bumpTimeout): D-Bus method name for "bump_timeout".
  (Client.start_checker): Emit D-Bus signal "CheckerStarted".
  (Client.CheckerStarted): New D-Bus signal.
  (Client.checkerIsRunning): New D-Bus method.
  (Client.StopChecker): D-Bus method name for "stop_checker".
  (Client.still_valid): First check "self.started".
  (Client.stillValid): D-Bus method name for "still_valid".

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
   klogctl(6, NULL, 0); klogctl(7, NULL, 0);
7
7
** TODO [#C] IPv4 support
8
8
 
9
 
* plugin-runner
10
 
** TODO [#B] use scandir(3) instead of readdir(3)
11
 
 
12
9
* mandos (server)
13
10
** TODO [#B] Log level                          :bugs:
14
11
** TODO /etc/mandos/clients.d/*.conf
18
15
   Probably using D-Bus
19
16
   See also [[*Mandos-tools]]
20
17
*** Client class
 
18
    + getHostname
 
19
    + getChecker
 
20
    + setChecker
21
21
*** Main server
22
 
    + SetLogLevel
 
22
    + Clients
 
23
      out_signature="ao"
 
24
      Does this have to be "getClients" so as not to collide with the
 
25
      interface name?
 
26
    + setLogLevel
23
27
      syslogger.setLevel(logging.WARNING)
24
 
    + Quit
25
 
    + [[http://log.ometer.com/2007-05.html][Best D-Bus practices]]
 
28
    + quit
26
29
** TODO Implement --foreground                  :bugs:
27
30
   [[info:standards:Option%20Table][Table of Long Options]]
28
31
** TODO Implement --socket
30
33
** TODO Date+time on console log messages       :bugs:
31
34
   Is this the default?
32
35
** TODO delete hook when clients fall out by timeout
33
 
   This will not be strictly necessary when the D-Bus interface is
34
 
   implemented.
35
 
 
36
 
* mandos.xml
37
 
** [[file:mandos.xml::XXX][Document D-Bus interface]]
38
 
 
39
 
* Provide and install /etc/dbus-1/system.d/mandos.conf
40
 
 
41
 
* mandos-list
42
 
*** Handle "no D-Bus server" and/or "no Mandos server found" better
43
 
*** [#B] --dump option
 
36
 
 
37
* Mandos-tools/utilities
 
38
  All of this probably using D-Bus
 
39
** TODO List clients
44
40
** TODO Disable client
45
41
** TODO Enable client
46
42
** TODO Reset timer
47
43
 
48
 
* Curses interface
49
 
 
50
44
* mandos-keygen
51
45
** TODO "--secfile" option
52
46
   Using the "secfile" option instead of "secret"
53
47
** TODO [#B] "--test" option
54
48
   For testing decryption before rebooting.
55
49
 
56
 
* Package
 
50
* [#A] Package
57
51
** /usr/share/initramfs-tools/hooks/mandos
58
 
*** TODO [#C] Do not install in initrd.img if configured not to.
 
52
*** TODO Do not install in initrd.img if configured not to.
59
53
    Use "/etc/initramfs-tools/conf.d/mandos"?  Definitely a debconf
60
54
    question.
61
 
** TODO [#C] /etc/bash_completion.d/mandos
 
55
** TODO /etc/bash_completion.d/mandos
62
56
   From XML sources directly?
63
57
 
64
58