/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-09 21:23:21 UTC
  • Revision ID: teddy@recompile.se-20160309212321-2qlkzj9tecepc8xq
Server: Add Python 3 compatibility

Add Python 3 compatibility by not using the python-avahi module.  Also
fix miscellaneous things which differs in Python 3.  Especially hard
to fix is loading and saving clients data between Python 3 and 2,
since pickle formats have problems with strings.

* INSTALL: Remove python-avahi (and change python-gobject to
  python-gi, which is preferred now).
* debian/control (Source: mandos/Build-Depends-Indep): Remove
  "python-avahi".
* mandos: Wrap future_builtins import in try-except clause.  Do not
  import avahi module.  Use codecs.decode(..., "base64) instead of
  .decode("base64).  Use .keys(), .values(), and .items() instead of
  .iterkeys(), .itervalues(), and .iteritems().
  (alternate_dbus_interfaces/wrapper): Python 3 still requires the
  "black magic", but luckily it still works.  The Python 3 type()
  constructor requires first argument to be a string, not a byte
  string.
  (copy_function): New.  Use throughout.
  (Avahi, avahi): New class and global variable.
  (GnuTLS._need_version): Changed to be a byte string.
  (main): Decode byte strings loaded from pickle file.
  (main/cleanup): Dump using pickle prototoc 2 which Python 2 can
  read.

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
 
** TODO [#B] Use reallocarray() with GNU LibC 2.29 or later.
18
16
 
19
17
* splashy
20
18
** TODO [#B] use scandir(3) instead of readdir(3)
21
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
22
19
 
23
20
* usplash (Deprecated)
24
21
** TODO [#B] Make it work again
25
22
** TODO [#B] use scandir(3) instead of readdir(3)
26
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
27
23
 
28
24
* askpass-fifo
29
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
30
25
 
31
26
* password-prompt
32
27
** TODO [#B] lock stdin (with flock()?)
33
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
34
28
 
35
29
* plymouth
36
 
** TODO [#A] Detect partial writes to stdout and exit with EX_TEMPFAIL
37
 
** TODO [#B] Use reallocarray() with GNU LibC 2.29 or later.
38
30
 
39
31
* TODO [#B] passdev
40
32
 
43
35
*** Hook up stderr of plugins, buffer them, and prepend "Mandos Plugin [plugin name]"
44
36
** TODO [#C] use same file name rules as run-parts(8)
45
37
** kernel command line option for debug info
46
 
** TODO [#A] Restart plugins which exit with EX_TEMPFAIL
47
38
 
48
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
49
42
** TODO [#B] --notify-command
50
43
   This would allow the mandos.service to use
51
 
   --notify-command="systemd-notify --pid --ready"
52
 
** TODO [#B] python-systemd
53
 
*** import systemd.daemon; systemd.daemon.notify()
 
44
   --notify-command="systemd-notify --pid READY=1"
54
45
** TODO [#B] Log level                                                    :BUGS:
55
46
*** TODO /etc/mandos/clients.d/*.conf
56
47
    Watch this directory and add/remove/update clients?
74
65
** TODO Save state periodically to recover better from hard shutdowns
75
66
** TODO CheckerCompleted method, deprecate CheckedOK
76
67
** TODO Secret Service API?
77
 
   https://standards.freedesktop.org/secret-service/
 
68
   http://standards.freedesktop.org/secret-service/
78
69
** TODO Remove D-Bus interfaces with old domain name                      :2:
79
70
** TODO Remove old string_to_delta format                                 :2:
80
71
** TODO http://0pointer.de/blog/projects/stateless.html
 
72
*** tmpfiles snippet to create /var/lib/mandos with right user+perms
81
73
*** File in /usr/lib/sysusers.d to create user+group "_mandos"
82
74
** TODO Error handling on error parsing config files
83
75
** TODO init.d script error handling
84
76
** TODO D-Bus server properties; address, port, interface, etc.           :2:
85
 
** Python 3                                                               :2:
86
 
*** 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()
87
78
 
88
79
* mandos-ctl
 
80
*** Handle "no D-Bus server" and/or "no Mandos server found" better
 
81
*** [#B] --dump option
89
82
** TODO Remove old string_to_delta format                                 :2:
90
83
 
91
84
* TODO mandos-dispatch