/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

removed * [[http://en.tldp.org/HOWTO/Software-Release-Practice-HOWTO/][Software Release Practice HOWTO]]

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
* [#A] README file
4
4
 
5
 
* plugin-runner
6
 
** [#B] Add more comments to code
7
 
** [#B] Add more if(debug) calls
8
 
** [#B] Seperate more code to function for more readability
9
 
 
10
 
* password-request
 
5
* [#A] COPYING file
 
6
  [[file:/usr/share/common-licenses/GPL-3][GPLv3]]
 
7
 
 
8
* Mandos-client
 
9
** [#A] Man page: man8/mandos-client.8mandos
 
10
** [#B] Fix %d format strings to use [[https://secure.wikimedia.org/wikipedia/en/wiki/Inttypes.h][<inttypes.h>]]
 
11
** use strsep instead of strtok?
 
12
** use config file in addition to arguments
 
13
** pass things in environment, like device name, etc
 
14
 
 
15
* Password-request
11
16
** [#A] Man page: man8/password-request.8mandos
12
 
*** SEE ALSO
13
 
    Update from mandos.xml
14
 
** [#B] Temporarily lower kernel log level
15
 
   for less printouts during sucessfull boot.
 
17
** [#B] Fix %d format strings to use [[https://secure.wikimedia.org/wikipedia/en/wiki/Inttypes.h][<inttypes.h>]]
 
18
** start_mandos_communication: loop around gnutls_handshake
 
19
   [[info:gnutls.info.gz:Core%20functions][gnutls_handshake]]
16
20
** IPv4 support
17
21
** use strsep instead of strtok?
18
 
** Do not depend on GnuPG key rings on disk
19
 
   This would mean creating new GnuPG key rings with GPGME by
20
 
   importing the key files from scratch on every program start.
21
 
** Keydir move: /etc/mandos -> /etc/keys/mandos
22
 
   Must create in preinst if not pre-depending on cryptsetup
 
22
** Do not depend on GPG key rings on disk
 
23
   This would mean creating new GPG key rings with GPGME by importing
 
24
   the key files from scratch on every program start.
23
25
 
24
 
* password-prompt
25
 
** [#C] Use getpass(3)?
 
26
* Password-prompt
 
27
** [#A] Man page: man8/password-prompt.8mandos
 
28
** Use getpass(3)?
26
29
   Man page says "obsolete", but [[info:libc:getpass][GNU LibC Manual: Reading Passwords]]
27
30
   does not.  See also [[http://sources.redhat.com/ml/libc-alpha/2003-05/msg00251.html][Marcus Brinkmann: Re: getpass obsolete?]] and
28
31
   [[http://article.gmane.org/gmane.comp.lib.glibc.alpha/4906][Petter Reinholdtsen: Re: getpass obsolete?]], and especially also
29
32
   [[http://www.steve.org.uk/Reference/Unix/faq_4.html#SEC48][Unix Programming FAQ 3.1 How can I make my program not echo input?]]
30
33
 
31
 
* mandos (server)
 
34
* Server
 
35
** [#A] Command man page: man8/mandos.8
 
36
** [#A] Config file man page: man5/mandos.conf (mandos.conf)
 
37
** [#A] Config file man page: man5/mandos-clients.conf (clients.conf)
32
38
** [#A] /etc/init.d/mandos-server               :teddy:
33
 
** [#B] Log level                               :bugs:
 
39
** Log level
34
40
** /etc/mandos/clients.d/*.conf
35
41
   Watch this directory and add/remove/update clients?
36
42
** config for TXT record
37
 
** [#B] Run-time communication with server      :bugs:
 
43
** Run-time communication with server
38
44
   Probably using D-Bus
39
45
   See also [[*Mandos-tools]]
40
 
** Implement --foreground                       :bugs:
 
46
** Implement --foreground
41
47
   [[info:standards:Option%20Table][Table of Long Options]]
42
48
** Implement --socket
43
49
   [[info:standards:Option%20Table][Table of Long Options]]
44
 
** Date+time on console log messages            :bugs:
45
 
   Is this the default?
46
50
 
47
51
* Mandos-tools/utilities
48
52
  All of this probably using D-Bus
50
54
** Disable client
51
55
** Enable client
52
56
 
53
 
* Man pages
54
 
** Use xinclude for common sections
55
 
   Like authors, etc.
56
 
 
57
 
 
58
57
* Installer
59
 
** Client-side
60
 
*** Update initrd.img after installation
61
 
    This seems to use some kind of "trigger" system
62
 
    [[file:/usr/share/doc/dpkg/triggers.txt.gz]]
63
 
    dpkg-trigger(1), deb-triggers(5)
64
 
*** Keydir move: /etc/mandos -> /etc/keys/mandos
65
 
    Must create in preinst if not pre-depending on cryptsetup
66
 
*** mandos-keygen
67
 
**** "--passfile" option
68
 
     Using the "secfile" option instead of "secret"
69
 
**** [#A] "--test" option
70
 
     For testing decryption before rebooting.
71
 
** Server-side
72
 
*** [#A] Create mandos user and group for server
73
 
*** [#A] Create /var/run/mandos directory with perm and ownership
74
 
 
75
 
* [#A] Package
76
 
** /usr/share/initramfs-tools/hooks/mandos
77
 
*** Do not install in initrd.img if configured not to.
78
 
    Use "/etc/initramfs-tools/conf.d/mandos"?  Definitely a debconf
79
 
    question.
80
 
** /etc/bash_completion.d/mandos
81
 
   From XML sources directly?
82
 
** unperish
83
 
** bzr-builddeb
 
58
** [#A] Change initrd.img file to not be publically readable
 
59
   /etc/initramfs-tools/conf.d/mandos
 
60
   UMASK=027
 
61
** [#A] Create /etc/initramfs-tools/hooks/mandos
 
62
   [[file:/usr/share/doc/initramfs-tools/examples/example_hook][Example initramfs-tools hook script]]
 
63
** [#A] Create GPG key ring files in initrd
 
64
** [#A] Create mandos user and group for server
 
65
** [#A] Create /var/run/mandos directory with perm and ownership
84
66
 
85
67
* INSTALL file
86
68
 
87
 
* Web site
 
69
* Website
88
70
 
89
71
* Mailing list
90
72
 
91
73
* Announce project on news
92
 
  [[news:comp.os.linux.announce]]
 
74
  news:comp.os.linux.announce
93
75
 
94
76
 
95
77
#+STARTUP: showall