/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: 2009-09-16 23:28:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090916232839-3o7i8qmcdcz5j1ya
* init.d-mandos (Required-Start, Required-Stop): Bug fix: Added
                 "$syslog", thanks to Petter Reinholdtsen
                 <pere@hungry.com> (Debian bug #546928).

* initramfs-tools-script: Removed erroneous comment.

* plugins.d/askpass-fifo.c: Removed TEMP_FAILURE_RETRY since it is
                            not needed.

* plugins.d/mandos-client.c (main): Bug fix: Initialize
                                    "old_sigterm_action".

* plugins.d/splashy.c (main): Bug fix: really check return value from
                              "sigaddset".  Fix some warnings on
                              64-bit systems.

* plugins.d/usplash.c (termination_handler, main): Save received
                                                   signal and
                                                   re-raise it on
                                                   exit.
  (usplash_write): Do not close FIFO, instead, take an additional file
                   descriptor pointer to it and open only when needed
                   (all callers changed).  Abort immediately on EINTR.
                   Bug fix:  Add NUL byte on single-word commands.
                   Ignore "interrupted_by_signal".
  (makeprompt, find_usplash): New; broken out from "main()".
  (find_usplash): Bug fix: close /proc/<pid>/cmdline FD on error.
  (main): Reorganized to jump to a new "failure" label on any error.
          Bug fix: check return values from sigaddset.
          New variable "usplash_accessed" to flag if usplash(8) needs
          to be killed and restarted.  Removed the "an_error_occured"
          variable.

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
 
* Release critical
6
 
** TODO Change make-run-server to not include --no-dbus
7
 
 
8
3
* mandos-client
9
4
** TODO [#B] use scandir(3) instead of readdir(3)
10
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
 
5
** TODO [#B] Prefix all debug output with argv[0]
11
6
** TODO [#B] Retry a server which has a non-definite reply:
12
7
*** A closed connection during the TLS handshake
13
8
*** A TCP timeout
14
9
** TODO [#B] Use capabilities instead of seteuid().
15
 
** TODO [#A] Retry --connect forever
16
10
 
17
11
* splashy
18
12
** TODO [#B] use scandir(3) instead of readdir(3)
19
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
 
13
** TODO [#B] Prefix all debug output with "Mandos plugin " + argv[0]
20
14
 
21
15
* usplash
22
 
** TODO [#A] Make it work again
23
16
** TODO [#B] use scandir(3) instead of readdir(3)
24
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
25
 
** TODO Use [[info:libc:Argz%20Functions][argz_extract]]
 
17
** TODO [#B] Prefix all debug output with "Mandos plugin " + argv[0]
26
18
 
27
19
* askpass-fifo
28
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
 
20
** TODO [#B] Prefix all debug output with "Mandos plugin " + argv[0]
29
21
** TODO [#B] Drop privileges after opening FIFO.
30
22
 
31
23
* password-prompt
32
 
** TODO [#B] Prefix all debug output with "Mandos plugin " + program_invocation_short_name
33
 
** TODO [#B] lock stdin (with flock()?)
34
 
 
35
 
* plymouth
36
 
** TODO Use [[info:libc:Argz%20Functions][argz_extract]]
37
 
 
38
 
* TODO [#B] passdev
 
24
** TODO [#B] Prefix all debug output with "Mandos plugin " + argv[0]
39
25
 
40
26
* plugin-runner
41
27
** TODO [#B] use scandir(3) instead of readdir(3)
42
28
** TODO [#C] use same file name rules as run-parts(8)
43
 
** kernel command line option for debug info
44
 
** TODO [#B] Use openat()
45
29
 
46
30
* mandos (server)
47
 
** TODO [#B] Log level                                                    :BUGS:
48
 
** TODO Persistent state                                                  :BUGS:
49
 
   /var/lib/mandos/*
50
 
*** TODO /etc/mandos/clients.d/*.conf
51
 
    Watch this directory and add/remove/update clients?
52
 
** TODO [#C] config for TXT record
53
 
** TODO Log level option
54
 
   syslogger.setLevel(logging.WARNING)
55
 
   + SetLogLevel D-Bus call
56
 
** TODO Implement --foreground                                            :BUGS:
 
31
** TODO [#B] Log level                          :BUGS:
 
32
** TODO /etc/mandos/clients.d/*.conf
 
33
   Watch this directory and add/remove/update clients?
 
34
** TODO config for TXT record
 
35
** TODO [#B] Run-time communication with server :BUGS:
 
36
   Probably using D-Bus
 
37
*** Client class
 
38
*** Main server
 
39
    + SetLogLevel
 
40
      syslogger.setLevel(logging.WARNING)
 
41
    + [[http://log.ometer.com/2007-05.html][Best D-Bus practices]]
 
42
** TODO Implement --foreground                  :BUGS:
57
43
   [[info:standards:Option%20Table][Table of Long Options]]
58
44
** TODO Implement --socket
59
45
   [[info:standards:Option%20Table][Table of Long Options]]
60
 
** TODO Date+time on console log messages                                 :BUGS:
 
46
** TODO Date+time on console log messages       :BUGS:
61
47
   Is this the default?
62
 
** TODO [#C] DBusServiceObjectUsingSuper
63
 
** TODO [#B] Global enable/disable flag
64
 
** TODO [#B] By-client countdown on secrets given
65
 
** TODO [#B] Fix problem with fsck taking a really long time
 
48
** TODO Split IPv6_TCPServer into a generic and Mandos-specific class
 
49
** TODO move handle_ipc out of IPv6_TCPServer
 
50
** TODO DBusServiceObjectUsingSuper
 
51
** Global enable/disable flag
 
52
** By-client countdown on secrets given
 
53
** Fix problem with fsck taking a really long time
66
54
   Whenever a client successfully gets a secret it could get a
67
55
   one-time timeout boost to allow for an fsck-incurred delay
68
 
** TODO [#A] Delay before client receives key
69
 
   This would give an operator opportunity to cancel the request if
70
 
   desired.
71
 
** TODO [#A] Client manual approval mode
72
 
   A client needs manual approval on the server before it gets the
73
 
   secret
74
 
** TODO [#B] Support RFC 3339 time duration syntax
75
 
** More D-Bus methods
76
 
*** NeedsApproval(50, True) -> timeout, default approve
77
 
    Default approval is configurable, but True by default
78
 
    + Approve(True) -> approve sending saved
79
 
    + Approve(False) -> Close client connection immediately
80
 
*** NeedsPassword(50) - Timeout, default disapprove
81
 
    + SetPass(u"gazonk", True) -> Approval, persistent
82
 
    + Approve(False) -> Close client connection immediately
83
 
** TODO [#C] python-parsedatetime
84
 
** TODO [#C] systemd/launchd
85
 
   http://0pointer.de/blog/projects/systemd.html
86
 
** TODO Separate logging logic to own object
87
 
** TODO make clients to a dict!
88
 
** TODO [#A] Limit approval_delay to max gnutls/tls timeout value
89
56
 
90
57
* mandos.xml
91
 
** Add mandos contact info in manual pages
 
58
** [[file:mandos.xml::XXX][Document D-Bus interface]]
 
59
 
 
60
* Provide and install /etc/dbus-1/system.d/mandos.conf
92
61
 
93
62
* mandos-ctl
94
63
*** Handle "no D-Bus server" and/or "no Mandos server found" better
95
64
*** [#B] --dump option
96
 
** TODO Support RFC 3339 time duration syntax
97
 
 
98
 
* TODO mandos-dispatch
99
 
  Listens for specified D-Bus signals and spawns shell commands with
100
 
  arguments.
101
 
 
102
 
* mandos-monitor
103
 
** TODO help should be toggable
104
 
** Urwid client data displayer
105
 
   Better view of client data in the listing
 
65
 
 
66
* mandos-name
 
67
** D-Bus mail loop w/ signal receiver
 
68
** Urwid/Newt client data displayer
 
69
*** Urwid scaffolding
 
70
*** Client Widgets
106
71
*** Properties popup
107
 
** Nicer crashes. Stack traces Messes up shell.
108
 
*** Print a nice "We are sorry" message, save stack trace to log.
109
72
 
110
73
* mandos-keygen
111
74
** TODO Loop until passwords match when run interactively
114
77
** TODO [#B] "--test" option
115
78
   For testing decryption before rebooting.
116
79
 
117
 
* Makefile
118
 
** TODO Add "--Xlinker --as-needed"
119
 
   http://udrepper.livejournal.com/19395.html
120
 
** TODO [#C] Implement DEB_BUILD_OPTIONS
121
 
   http://www.debian.org/doc/debian-policy/ch-source.html#s-debianrules-options
122
 
 
123
80
* Package
124
81
** /usr/share/initramfs-tools/hooks/mandos
125
82
*** TODO [#C] use same file name rules as run-parts(8)
128
85
** TODO [#C] /etc/bash_completion.d/mandos
129
86
   From XML sources directly?
130
87
 
131
 
* Side Stuff
132
 
** TODO Locate which packet move the other bin/sh when busy box is deactivated
133
 
** TODO contact owner of packet, and ask them to have that shell static in position regardless of busybox
134
 
 
135
88
 
136
89
#+STARTUP: showall