/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-11 16:07:18 UTC
  • mto: (24.1.113 mandos)
  • mto: This revision was merged to the branch mainline in revision 238.
  • Revision ID: teddy@fukt.bsnet.se-20081111160718-gvqhs581md4inh5u
Further steps towards a D-Bus server interface, plus minor syntax
changes.

* mandos: Split copyright line.  Throughout, use parentheses instead
          of backslashes to continue long lines.
  (AvahiService.__init__): Use new "foo if bar else baz" syntax.
  (Client): All D-Bus methods renamed to be capitalized.
  (Client.__init__): Use D-Bus path "/Mandos/clients/%s".
  (Client.created): Changed to always be in UTC.  All users changed.
  (Client.started): Changed to be a "datetime.datetime()" in UTC.  All
                    users changed.
  (Client.stop): Bug fix: set "self.started" to "None".
  (Client.interface): Renamed to "_interface".
  (Client._datetime_to_dbus_struct): New temporary function.
  (Client.CheckerIsRunning): New D-Bus method.
  (Client.GetChecker): - '' -
  (Client.GetCreated): - '' -
  (Client.GetHost): - '' -
  (Client.GetStarted): - '' -
  (Client.SetHost): - '' -
  (Client.SetChecker): - '' -
  (Client.SetInterval): - '' -
  (Client.SetTimeout): - '' -
  (Client.StartChecker): - '' -
  (Client.TimeoutChanged): New D-Bus signal.
  (TCP_handler.handle): Use new "for...else" syntax.
  (main): Bug fix: get a D-Bus bus name.

* mandos-keygen: Split copyright line.
* plugin-runner.c: - '' -
* plugins.d/mandos-client: - '' -
* plugins.d/password-prompt.c: - '' -

* plugins.d/askpass-fifo.c: Added copyright statement and license.
* plugins.s/splashy.c: - '' -
* plugins.d/usplash.c: - '' -

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
19
15
   Probably using D-Bus
20
16
   See also [[*Mandos-tools]]
21
17
*** Client class
 
18
    Remove unneeded Get* methods?
22
19
*** Main server
 
20
    + Clients
 
21
      out_signature="ao"
 
22
      Does this have to be "GetClients" so as not to collide with the
 
23
      interface name?
23
24
    + SetLogLevel
24
25
      syslogger.setLevel(logging.WARNING)
25
26
    + Quit
 
27
    + GetClientsProperties "aa{sv}":
 
28
      dbus.Array(dbus.Dictionary({dbus.String("name"):
 
29
                                  dbus.String("foo", variant_level=1),
 
30
                                  dbus.String("created"):
 
31
                                  dbus.Array(dbus.Int16(2008), ...,
 
32
                                             variant_level=1)}))
26
33
    + [[http://log.ometer.com/2007-05.html][Best D-Bus practices]]
27
34
** TODO Implement --foreground                  :bugs:
28
35
   [[info:standards:Option%20Table][Table of Long Options]]
34
41
   This will not be strictly necessary when the D-Bus interface is
35
42
   implemented.
36
43
 
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
 
44
* Mandos-tools/utilities
 
45
  All of this probably using D-Bus
 
46
** TODO List clients
45
47
** TODO Disable client
46
48
** TODO Enable client
47
49
** TODO Reset timer
48
50
 
49
 
* Curses interface
50
 
 
51
51
* mandos-keygen
52
52
** TODO "--secfile" option
53
53
   Using the "secfile" option instead of "secret"
54
54
** TODO [#B] "--test" option
55
55
   For testing decryption before rebooting.
56
56
 
57
 
* Package
 
57
* [#A] Package
58
58
** /usr/share/initramfs-tools/hooks/mandos
59
 
*** TODO [#C] Do not install in initrd.img if configured not to.
 
59
*** TODO Do not install in initrd.img if configured not to.
60
60
    Use "/etc/initramfs-tools/conf.d/mandos"?  Definitely a debconf
61
61
    question.
62
 
** TODO [#C] /etc/bash_completion.d/mandos
 
62
** TODO /etc/bash_completion.d/mandos
63
63
   From XML sources directly?
64
64
 
65
65