/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: 2016-03-13 00:37:02 UTC
  • Revision ID: teddy@recompile.se-20160313003702-dulwtwt8ilpojra9
Server: Fix bug where it did not exit timely on signals

Use GLib.unix_signal_add() instead of signal.signal() to catch
signals; this will allow GLib to do its internal magic with signal
file descriptors.  (GLib does not handle signals properly otherwise.)
The function unix_signal_add() requires GLib 2.30 or later, which was
not required by PyGobject until version 3.7.1, so depend on this.

* INSTALL (Mandos Server): Document dependency on PyGObject 3.7.1
* mandos (main): Use GLib.unix_signal_add instead of signal.signal.
* init.d-mandos (do_stop): Remove workaround.
* mandos.service ([Service]): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
** TODO [#B] Use getaddrinfo(hints=AI_NUMERICHOST) instead of inet_pton()
14
14
** TODO [#C] Make start_mandos_communication() take "struct server".
15
15
** TODO [#C] --interfaces=regex,eth*,noregex (bridge-utils-interfaces(5))
16
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
17
16
 
18
17
* splashy
19
18
** TODO [#B] use scandir(3) instead of readdir(3)
20
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
21
19
 
22
20
* usplash (Deprecated)
23
21
** TODO [#B] Make it work again
24
22
** TODO [#B] use scandir(3) instead of readdir(3)
25
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
26
23
 
27
24
* askpass-fifo
28
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
29
25
 
30
26
* password-prompt
31
27
** TODO [#B] lock stdin (with flock()?)
32
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
33
28
 
34
29
* plymouth
35
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
36
30
 
37
31
* TODO [#B] passdev
38
32
 
41
35
*** Hook up stderr of plugins, buffer them, and prepend "Mandos Plugin [plugin name]"
42
36
** TODO [#C] use same file name rules as run-parts(8)
43
37
** kernel command line option for debug info
44
 
** TODO [#A] Restart plugins which exit with EX_TEMPFAIL
45
38
 
46
39
* mandos (server)
 
40
** TODO Fix bug: it does not exit on SIGTERM until poked via D-Bus
 
41
** TODO Convert to Python 3 by using own Avahi module, same as GnuTLS
47
42
** TODO [#B] --notify-command
48
43
   This would allow the mandos.service to use
49
 
   --notify-command="systemd-notify --pid --ready"
50
 
** TODO [#B] python-systemd
51
 
*** import systemd.daemon; systemd.daemon.notify()
 
44
   --notify-command="systemd-notify --pid READY=1"
52
45
** TODO [#B] Log level                                                    :BUGS:
53
46
*** TODO /etc/mandos/clients.d/*.conf
54
47
    Watch this directory and add/remove/update clients?
72
65
** TODO Save state periodically to recover better from hard shutdowns
73
66
** TODO CheckerCompleted method, deprecate CheckedOK
74
67
** TODO Secret Service API?
75
 
   https://standards.freedesktop.org/secret-service/
 
68
   http://standards.freedesktop.org/secret-service/
76
69
** TODO Remove D-Bus interfaces with old domain name                      :2:
77
70
** TODO Remove old string_to_delta format                                 :2:
78
71
** TODO http://0pointer.de/blog/projects/stateless.html
 
72
*** tmpfiles snippet to create /var/lib/mandos with right user+perms
79
73
*** File in /usr/lib/sysusers.d to create user+group "_mandos"
80
74
** TODO Error handling on error parsing config files
81
75
** TODO init.d script error handling
82
76
** TODO D-Bus server properties; address, port, interface, etc.           :2:
83
 
** Python 3                                                               :2:
84
 
*** TODO [#C] In Python 3.3, use shlex.quote() instead of re.escape()
 
77
** TODO [#C] In Python 3.3, use shlex.quote() instead of re.escape()
85
78
 
86
79
* mandos-ctl
87
80
*** Handle "no D-Bus server" and/or "no Mandos server found" better
 
81
*** [#B] --dump option
88
82
** TODO Remove old string_to_delta format                                 :2:
89
83
 
90
84
* TODO mandos-dispatch
119
113
 
120
114
* [[http://www.undeadly.org/cgi?action=article&sid=20110530221728][OpenBSD]]
121
115
 
122
 
* TODO Use raw public keys (RFC 7250) for TLS communications              :2:
123
 
** Support for this is planned for GnuTLS version 3.6
124
 
   https://gitlab.com/gnutls/gnutls/issues/26
125
 
** Rationale
126
 
*** The client key is used both for communication and encryption
127
 
    Using raw keys in GnuTLS instead uses separate keys for
128
 
    communication and password decryption.
129
 
*** GnuTLS 3.5.9 has deprecated the OpenPGP functions
130
 
    The functions are still available, but deprecated:
131
 
    https://gitlab.com/gnutls/gnutls/issues/102
132
 
 
133
116
 
134
117
#+STARTUP: showall