Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 1 | Programming: |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 2 | - Grep for 'XXX' comments and fix |
| 3 | |
Damien Miller | 883631b | 2001-03-21 11:12:55 +1100 | [diff] [blame] | 4 | - Link order is incorrect for some systems using Kerberos 4 and AFS. Result |
Damien Miller | 771bbac | 2001-03-27 16:10:22 +1000 | [diff] [blame] | 5 | 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 Miller | 883631b | 2001-03-21 11:12:55 +1100 | [diff] [blame] | 12 | |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 13 | - Integrate contrib/mdoc2man.pl so platforms which only have the troff |
| 14 | 'an' macros can have readable manpages. |
| 15 | |
Damien Miller | b8b8ecf | 2001-02-08 10:47:43 +1100 | [diff] [blame] | 16 | - Write a test program that calls stat() to search for EGD/PRNGd socket |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 17 | rather than use the (non-portable) "test -S". |
Damien Miller | b8b8ecf | 2001-02-08 10:47:43 +1100 | [diff] [blame] | 18 | |
Kevin Steves | 55fb9a9 | 2001-03-19 14:58:47 +0000 | [diff] [blame] | 19 | - Replacement for setproctitle() - HP-UX support only currently |
Damien Miller | 356a0b0 | 1999-11-08 15:30:59 +1100 | [diff] [blame] | 20 | |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 21 | - Handle changing passwords for the non-PAM expired password case |
| 22 | |
Damien Miller | c7b38ce | 1999-11-09 10:28:04 +1100 | [diff] [blame] | 23 | - Improve PAM support (a pam_lastlog module will cause sshd to exit) |
Ben Lindstrom | c72745a | 2000-12-02 19:03:54 +0000 | [diff] [blame] | 24 | and maybe support alternate forms of authenications like OPIE via |
| 25 | pam? |
Damien Miller | 356a0b0 | 1999-11-08 15:30:59 +1100 | [diff] [blame] | 26 | |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 27 | - 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 Miller | ad833b3 | 2000-08-23 10:46:23 +1000 | [diff] [blame] | 34 | - Complete Tru64 SIA support |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 35 | |
| 36 | - Finish integrating kernel-level auditing code for IRIX and SOLARIS |
| 37 | (Gilbert.r.loomis@saic.com) |
| 38 | |
Ben Lindstrom | 48b2f73 | 2001-01-08 06:20:38 +0000 | [diff] [blame] | 39 | - sftp-server: Rework to step down to 32bit ints if the platform |
| 40 | lacks 'long long' == 64bit (Notable SCO w/ SCO compiler) |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 41 | |
Ben Lindstrom | a15e39b | 2000-12-02 04:58:57 +0000 | [diff] [blame] | 42 | - Linux hangs for 20 seconds when you do "sleep 20&exit". All current |
| 43 | solutions break scp or leaves processes hanging around after the ssh |
| 44 | connection has ended. It seems to be linked to two things. One |
| 45 | select() under Linux is not as nice as others, and two the children |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 46 | of the shell are not killed on exiting the shell. Redhat have an excellent |
| 47 | description of this in their RPM package. |
Ben Lindstrom | a15e39b | 2000-12-02 04:58:57 +0000 | [diff] [blame] | 48 | |
Damien Miller | b848158 | 2000-12-03 11:51:51 +1100 | [diff] [blame] | 49 | - Build an automated test suite |
| 50 | |
Ben Lindstrom | 4d408d3 | 2001-02-06 04:03:33 +0000 | [diff] [blame] | 51 | - Verify that It's safe to enable NGROUPS_MAX under NeXTStep for |
Ben Lindstrom | 5d8520a | 2001-02-12 15:57:18 +0000 | [diff] [blame] | 52 | groupaccess features. (mouring@eviladmin.org) |
| 53 | |
Kevin Steves | 55fb9a9 | 2001-03-19 14:58:47 +0000 | [diff] [blame] | 54 | - 64-bit builds on HP-UX 11.X (stevesk@pobox.com): |
| 55 | - utmp/wtmp get corrupted (something in loginrec?) |
Kevin Steves | 55fb9a9 | 2001-03-19 14:58:47 +0000 | [diff] [blame] | 56 | - can't build with PAM (no 64-bit libpam yet) |
| 57 | |
Ben Lindstrom | d9e0824 | 2001-07-22 19:32:00 +0000 | [diff] [blame] | 58 | - Modify rijndael to support Cray 64bit machines. |
| 59 | |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 60 | Documentation: |
| 61 | - More and better |
| 62 | |
| 63 | - Install FAQ? |
| 64 | |
| 65 | - General FAQ on S/Key, TIS, RSA, RSA2, DSA, etc and suggestions on when it |
| 66 | would be best to use them. |
| 67 | |
| 68 | - Create a Documentation/ directory? |
| 69 | |
| 70 | Clean up configure/makefiles: |
| 71 | - Clean up configure.in - There are a few double #defined variables |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 72 | left to do. HAVE_LOGIN is one of them. Consider NOT looking for |
| 73 | information in wtmpx or utmpx or any of that stuff if it's not detected |
| 74 | from the start |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 75 | |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 76 | - Fails to compile when cross compile. |
| 77 | (vinschen@redhat.com) |
| 78 | |
| 79 | - Replace the whole u_intXX_t evilness in acconfig.h with something better??? |
| 80 | |
Ben Lindstrom | 28bfc0d | 2000-12-18 19:58:57 +0000 | [diff] [blame] | 81 | - Consider splitting the u_intXX_t test for sys/bitype.h into seperate test |
| 82 | to allow people to (right/wrongfully) link against Bind directly. |
| 83 | |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 84 | Packaging: |
| 85 | - Solaris: Update packaging scripts and build new sysv startup scripts |
Damien Miller | dd97de7 | 2001-03-05 23:33:24 +1100 | [diff] [blame] | 86 | Ideally the package metadata should be generated by autoconf. |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 87 | (gilbert.r.loomis@saic.com) |
| 88 | |
Kevin Steves | 55fb9a9 | 2001-03-19 14:58:47 +0000 | [diff] [blame] | 89 | - HP-UX: Provide DEPOT package scripts. |
Ben Lindstrom | 4a1d916 | 2000-11-21 10:45:31 +0000 | [diff] [blame] | 90 | (gilbert.r.loomis@saic.com) |
Damien Miller | e9cf357 | 2001-02-09 12:55:35 +1100 | [diff] [blame] | 91 | |
Ben Lindstrom | d9e0824 | 2001-07-22 19:32:00 +0000 | [diff] [blame] | 92 | $Id: TODO,v 1.42 2001/07/22 19:32:01 mouring Exp $ |