/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: Björn Påhlsson
  • Date: 2011-11-09 11:16:17 UTC
  • mto: (518.2.5 persistent-state-gpgme)
  • mto: This revision was merged to the branch mainline in revision 520.
  • Revision ID: belorn@fukt.bsnet.se-20111109111617-jpey2sy4dupqzabc
Persistent state: New feature. Client state is now stored when mandos
                  server exits, and restored when starting up. Secrets
                  are encrypted with key based on clients config file.
--no-restore: New argument to mandos server. Disables restore
              functionallity
minor changes: clients are now dicts!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-*- org -*-
2
2
 
 
3
* Use _attribute_((nonnull)) wherever possible.
 
4
 
 
5
* [[http://www.undeadly.org/cgi?action=article&sid=20110530221728][OpenBSD]]
 
6
 
 
7
* mandos-applet
 
8
 
3
9
* mandos-client
4
 
** TODO [#B] use scandir(3) instead of readdir(3)
5
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
6
 
** TODO use error() instead of perror()
7
 
** TODO [#B] Retry a server which has a non-definite reply:
8
 
*** A closed connection during the TLS handshake
9
 
*** A TCP timeout
10
10
** TODO [#B] Use capabilities instead of seteuid().
11
 
** TODO use EX_* from <sysexits.h>
 
11
** TODO [#B] Use struct sockaddr_storage instead of a union
 
12
** TODO [#B] Use getaddrinfo(hints=AI_NUMERICHOST) instead of inet_pton()
 
13
** TODO [#B] Use getnameinfo(serv=NULL, NI_NUMERICHOST) instead of inet_ntop()
 
14
** TODO [#B] Prefer /run/tmp over /tmp, if it exists
12
15
 
13
16
* splashy
14
17
** TODO [#B] use scandir(3) instead of readdir(3)
15
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
16
 
** TODO use error() instead of perror()
17
18
 
18
 
* usplash
 
19
* usplash (Deprecated)
 
20
** TODO [#A] Make it work again
19
21
** TODO [#B] use scandir(3) instead of readdir(3)
20
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
21
 
** TODO use EX_* from <sysexits.h>
22
 
** TODO use error() instead of perror()
 
22
** TODO Use [[info:libc:Argz%20Functions][argz_extract]]
23
23
 
24
24
* askpass-fifo
25
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
26
25
** TODO [#B] Drop privileges after opening FIFO.
27
 
** TODO use EX_* from <sysexits.h>
28
 
** TODO use error() instead of perror()
29
26
 
30
27
* password-prompt
31
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
32
 
** TODO use EX_* from <sysexits.h>
33
 
** TODO use error() instead of perror()
34
 
 
35
 
* TODO passdev
 
28
** TODO [#B] lock stdin (with flock()?)
 
29
 
 
30
* plymouth
 
31
 
 
32
* TODO [#B] passdev
36
33
 
37
34
* plugin-runner
 
35
** TODO handle printing for errors for plugins
 
36
*** Hook up stderr of plugins, buffer them, and prepend mandos pluig [plugin name]
38
37
** TODO [#B] use scandir(3) instead of readdir(3)
39
38
** TODO [#C] use same file name rules as run-parts(8)
40
 
** TODO use EX_* from <sysexits.h>
41
 
** TODO use error() instead of perror()
 
39
** kernel command line option for debug info
 
40
** TODO [#B] Use openat()
42
41
 
43
42
* mandos (server)
44
 
** TODO [#B] Log level                          :BUGS:
45
 
** TODO /etc/mandos/clients.d/*.conf
46
 
   Watch this directory and add/remove/update clients?
47
 
** TODO config for TXT record
48
 
** TODO [#B] Run-time communication with server :BUGS:
49
 
   Probably using D-Bus
50
 
*** Client class
51
 
*** Main server
52
 
    + SetLogLevel
53
 
      syslogger.setLevel(logging.WARNING)
54
 
    + [[http://log.ometer.com/2007-05.html][Best D-Bus practices]]
55
 
** TODO Implement --foreground                  :BUGS:
 
43
** TODO [#B] Log level                                                    :BUGS:
 
44
  
 
45
*** TODO /etc/mandos/clients.d/*.conf
 
46
    Watch this directory and add/remove/update clients?
 
47
** TODO [#C] config for TXT record
 
48
** TODO Log level option
 
49
   syslogger.setLevel(logging.WARNING)
 
50
   + SetLogLevel D-Bus call
 
51
** TODO Implement --foreground                                            :BUGS:
56
52
   [[info:standards:Option%20Table][Table of Long Options]]
57
53
** TODO Implement --socket
58
54
   [[info:standards:Option%20Table][Table of Long Options]]
59
 
** TODO Date+time on console log messages       :BUGS:
 
55
** TODO Date+time on console log messages                                 :BUGS:
60
56
   Is this the default?
61
 
** TODO DBusServiceObjectUsingSuper
62
 
** TODO Global enable/disable flag
63
 
** TODO By-client countdown on secrets given
64
 
** TODO Fix problem with fsck taking a really long time
65
 
   Whenever a client successfully gets a secret it could get a
66
 
   one-time timeout boost to allow for an fsck-incurred delay
67
 
** TODO Delay before client receives key
68
 
   This would give an operator opportunity to cancel the request if
69
 
   desired.
70
 
** TODO Client manual approval mode
71
 
   A client needs manual approval on the server before it gets the
72
 
   secret
73
 
** TODO Persistent state
74
 
   /var/lib/mandos/*
 
57
** TODO [#C] DBusServiceObjectUsingSuper
 
58
** TODO [#B] Global enable/disable flag
 
59
** TODO [#B] By-client countdown on secrets given
 
60
** TODO [#B] Support RFC 3339 time duration syntax
 
61
** More D-Bus methods
 
62
*** NeedsPassword(50) - Timeout, default disapprove
 
63
    + SetPass(u"gazonk", True) -> Approval, persistent
 
64
    + Approve(False) -> Close client connection immediately
 
65
** TODO [#C] python-parsedatetime
 
66
** TODO [#C] systemd/launchd
 
67
   http://0pointer.de/blog/projects/systemd.html
 
68
   http://wiki.debian.org/systemd
 
69
** TODO Separate logging logic to own object
 
70
** TODO [#A] Limit approval_delay to max gnutls/tls timeout value
 
71
** TODO [#B] break the wait on approval_delay if connection dies
 
72
** TODO Generate Client.runtime_expansions from client options + extra
 
73
** TODO Allow %%(checker)s as a runtime expansion
 
74
** TODO Use python-tlslite?
75
75
 
76
76
* mandos.xml
77
 
** [[file:mandos.xml::XXX][Document D-Bus interface]]
78
 
 
79
 
* Provide and install /etc/dbus-1/system.d/mandos.conf
 
77
** Add mandos contact info in manual pages
80
78
 
81
79
* mandos-ctl
82
80
*** Handle "no D-Bus server" and/or "no Mandos server found" better
83
81
*** [#B] --dump option
 
82
** TODO Support RFC 3339 time duration syntax
 
83
** TODO Send milliseconds if bare integer is passed as time duration
84
84
 
85
85
* TODO mandos-dispatch
86
86
  Listens for specified D-Bus signals and spawns shell commands with
87
87
  arguments.
88
88
 
89
89
* mandos-monitor
90
 
** D-Bus main loop w/ signal receiver
 
90
** TODO help should be toggleable
91
91
** Urwid client data displayer
92
 
*** Urwid scaffolding
93
 
*** Client Widgets
 
92
   Better view of client data in the listing
94
93
*** Properties popup
 
94
** Nicer crashes. Stack traces Messes up shell.
 
95
*** Print a nice "We are sorry" message, save stack trace to log.
 
96
** Show timeout countdown for approval
95
97
 
96
98
* mandos-keygen
97
 
** TODO Loop until passwords match when run interactively
98
99
** TODO "--secfile" option
99
100
   Using the "secfile" option instead of "secret"
100
101
** TODO [#B] "--test" option
101
102
   For testing decryption before rebooting.
102
103
 
103
104
* Makefile
104
 
** Implement DEB_BUILD_OPTIONS
 
105
** TODO [#C] Implement DEB_BUILD_OPTIONS
105
106
   http://www.debian.org/doc/debian-policy/ch-source.html#s-debianrules-options
106
107
 
107
108
* Package
112
113
** TODO [#C] /etc/bash_completion.d/mandos
113
114
   From XML sources directly?
114
115
 
 
116
* Side Stuff
 
117
** TODO Locate which package moves the other bin/sh when busybox is deactivated
 
118
** TODO contact owner of package, and ask them to have that shell static in position regardless of busybox
 
119
 
115
120
 
116
121
#+STARTUP: showall