blob: 9b76e4ae96866cef266a45ac1b30ba7592f716d2 [file] [log] [blame]
Ben Lindstrom4a1d9162000-11-21 10:45:31 +00001Programming:
Damien Miller33804262001-02-04 23:20:18 +11002- Grep for 'XXX' comments and fix
3
Damien Miller883631b2001-03-21 11:12:55 +11004- Link order is incorrect for some systems using Kerberos 4 and AFS. Result
Damien Miller771bbac2001-03-27 16:10:22 +10005 is multiple inclusion of DES symbols. Holger Trapp
6 <holger.trapp@hrz.tu-chemnitz.de> reports that changing the configure
7 generated link order from:
8 -lresolv -lkrb -lz -lnsl -lutil -lkafs -lkrb -ldes -lcrypto
9 to:
10 -lresolv -lkrb -lz -lnsl -lutil -lcrypto -lkafs -lkrb -ldes
11 fixing the problem.
Damien Miller883631b2001-03-21 11:12:55 +110012
Damien Millerdd97de72001-03-05 23:33:24 +110013- Integrate contrib/mdoc2man.pl so platforms which only have the troff
14 'an' macros can have readable manpages.
15
Damien Millerb8b8ecf2001-02-08 10:47:43 +110016- Write a test program that calls stat() to search for EGD/PRNGd socket
Damien Millerdd97de72001-03-05 23:33:24 +110017 rather than use the (non-portable) "test -S".
Damien Millerb8b8ecf2001-02-08 10:47:43 +110018
Kevin Steves55fb9a92001-03-19 14:58:47 +000019- Replacement for setproctitle() - HP-UX support only currently
Damien Miller356a0b01999-11-08 15:30:59 +110020
Damien Millerdd97de72001-03-05 23:33:24 +110021- Handle changing passwords for the non-PAM expired password case
22
Damien Millerc7b38ce1999-11-09 10:28:04 +110023- Improve PAM support (a pam_lastlog module will cause sshd to exit)
Ben Lindstromc72745a2000-12-02 19:03:54 +000024 and maybe support alternate forms of authenications like OPIE via
25 pam?
Damien Miller356a0b01999-11-08 15:30:59 +110026
Damien Millerdd97de72001-03-05 23:33:24 +110027- Rework PAM ChallengeResponseAuthentication
28 - Use kbdint request packet with 0 prompts for informational messages
29 - Use different PAM service name for kbdint vs regular auth (suggest from
30 Solar Designer)
31 - Ability to select which ChallengeResponseAuthentications may be used
32 and order to try them in e.g. "ChallengeResponseAuthentication skey, pam"
33
Damien Millerad833b32000-08-23 10:46:23 +100034- Complete Tru64 SIA support
Damien Millerfdbcb5d2001-09-25 13:01:49 +100035 - It looks like we could merge it into the password auth code to cut down
36 on diff size. Maybe PAM password auth too?
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000037
38- Finish integrating kernel-level auditing code for IRIX and SOLARIS
39 (Gilbert.r.loomis@saic.com)
40
Ben Lindstrom48b2f732001-01-08 06:20:38 +000041- sftp-server: Rework to step down to 32bit ints if the platform
42 lacks 'long long' == 64bit (Notable SCO w/ SCO compiler)
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000043
Ben Lindstroma15e39b2000-12-02 04:58:57 +000044- Linux hangs for 20 seconds when you do "sleep 20&exit". All current
45 solutions break scp or leaves processes hanging around after the ssh
46 connection has ended. It seems to be linked to two things. One
47 select() under Linux is not as nice as others, and two the children
Damien Millerdd97de72001-03-05 23:33:24 +110048 of the shell are not killed on exiting the shell. Redhat have an excellent
49 description of this in their RPM package.
Ben Lindstroma15e39b2000-12-02 04:58:57 +000050
Damien Millerb8481582000-12-03 11:51:51 +110051- Build an automated test suite
52
Ben Lindstrom4d408d32001-02-06 04:03:33 +000053- Verify that It's safe to enable NGROUPS_MAX under NeXTStep for
Ben Lindstrom5d8520a2001-02-12 15:57:18 +000054 groupaccess features. (mouring@eviladmin.org)
55
Kevin Steves55fb9a92001-03-19 14:58:47 +000056- 64-bit builds on HP-UX 11.X (stevesk@pobox.com):
57 - utmp/wtmp get corrupted (something in loginrec?)
Kevin Steves55fb9a92001-03-19 14:58:47 +000058 - can't build with PAM (no 64-bit libpam yet)
59
Ben Lindstromd9e08242001-07-22 19:32:00 +000060- Modify rijndael to support Cray 64bit machines.
61
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000062Documentation:
63- More and better
64
65- Install FAQ?
66
67- General FAQ on S/Key, TIS, RSA, RSA2, DSA, etc and suggestions on when it
68 would be best to use them.
69
70- Create a Documentation/ directory?
71
72Clean up configure/makefiles:
73- Clean up configure.in - There are a few double #defined variables
Damien Millerdd97de72001-03-05 23:33:24 +110074 left to do. HAVE_LOGIN is one of them. Consider NOT looking for
75 information in wtmpx or utmpx or any of that stuff if it's not detected
76 from the start
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000077
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000078- Fails to compile when cross compile.
79 (vinschen@redhat.com)
80
81- Replace the whole u_intXX_t evilness in acconfig.h with something better???
82
Ben Lindstrom28bfc0d2000-12-18 19:58:57 +000083- Consider splitting the u_intXX_t test for sys/bitype.h into seperate test
84 to allow people to (right/wrongfully) link against Bind directly.
85
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000086Packaging:
87- Solaris: Update packaging scripts and build new sysv startup scripts
Damien Millerdd97de72001-03-05 23:33:24 +110088 Ideally the package metadata should be generated by autoconf.
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000089 (gilbert.r.loomis@saic.com)
90
Kevin Steves55fb9a92001-03-19 14:58:47 +000091- HP-UX: Provide DEPOT package scripts.
Ben Lindstrom4a1d9162000-11-21 10:45:31 +000092 (gilbert.r.loomis@saic.com)
Damien Millere9cf3572001-02-09 12:55:35 +110093
Damien Millerfdbcb5d2001-09-25 13:01:49 +100094$Id: TODO,v 1.43 2001/09/25 03:01:49 djm Exp $