2003-05-18 19:44:07 +08:00
|
|
|
Documentation:
|
|
|
|
|
|
|
|
- Update the docs
|
|
|
|
- Update README
|
|
|
|
- Update INSTALL
|
|
|
|
- Merge INSTALL & README.privsep
|
|
|
|
|
|
|
|
- Install FAQ?
|
|
|
|
|
|
|
|
- General FAQ on S/Key, TIS, RSA, RSA2, DSA, etc and suggestions on when it
|
2003-11-21 20:48:55 +08:00
|
|
|
would be best to use them.
|
2003-05-18 19:44:07 +08:00
|
|
|
|
|
|
|
- Create a Documentation/ directory?
|
|
|
|
|
2000-11-21 18:45:31 +08:00
|
|
|
Programming:
|
2003-05-18 19:44:07 +08:00
|
|
|
|
2001-02-04 20:20:18 +08:00
|
|
|
- Grep for 'XXX' comments and fix
|
|
|
|
|
2001-03-21 08:12:55 +08:00
|
|
|
- Link order is incorrect for some systems using Kerberos 4 and AFS. Result
|
2003-11-21 20:48:55 +08:00
|
|
|
is multiple inclusion of DES symbols. Holger Trapp
|
2001-03-27 14:10:22 +08:00
|
|
|
<holger.trapp@hrz.tu-chemnitz.de> reports that changing the configure
|
|
|
|
generated link order from:
|
|
|
|
-lresolv -lkrb -lz -lnsl -lutil -lkafs -lkrb -ldes -lcrypto
|
|
|
|
to:
|
|
|
|
-lresolv -lkrb -lz -lnsl -lutil -lcrypto -lkafs -lkrb -ldes
|
|
|
|
fixing the problem.
|
2001-03-21 08:12:55 +08:00
|
|
|
|
2001-02-08 07:47:43 +08:00
|
|
|
- Write a test program that calls stat() to search for EGD/PRNGd socket
|
2003-11-21 20:48:55 +08:00
|
|
|
rather than use the (non-portable) "test -S".
|
2001-02-08 07:47:43 +08:00
|
|
|
|
2003-01-10 06:53:12 +08:00
|
|
|
- More platforms for for setproctitle() emulation (testing needed)
|
1999-11-08 12:30:59 +08:00
|
|
|
|
2003-05-18 19:44:07 +08:00
|
|
|
- Improve PAM ChallengeResponseAuthentication
|
|
|
|
- Informational messages
|
2001-03-05 20:33:24 +08:00
|
|
|
- Use different PAM service name for kbdint vs regular auth (suggest from
|
|
|
|
Solar Designer)
|
|
|
|
- Ability to select which ChallengeResponseAuthentications may be used
|
2018-07-20 11:18:28 +08:00
|
|
|
and order to try them in e.g. "ChallengeResponseAuthentication pam"
|
2001-03-05 20:33:24 +08:00
|
|
|
|
2000-11-21 18:45:31 +08:00
|
|
|
- Complete Tru64 SIA support
|
2001-09-25 11:01:49 +08:00
|
|
|
- It looks like we could merge it into the password auth code to cut down
|
|
|
|
on diff size. Maybe PAM password auth too?
|
1999-11-08 12:30:59 +08:00
|
|
|
|
2000-11-21 18:45:31 +08:00
|
|
|
- Finish integrating kernel-level auditing code for IRIX and SOLARIS
|
|
|
|
(Gilbert.r.loomis@saic.com)
|
1999-11-20 09:18:40 +08:00
|
|
|
|
2001-03-19 22:58:47 +08:00
|
|
|
- 64-bit builds on HP-UX 11.X (stevesk@pobox.com):
|
|
|
|
- utmp/wtmp get corrupted (something in loginrec?)
|
|
|
|
- can't build with PAM (no 64-bit libpam yet)
|
|
|
|
|
2000-11-21 18:45:31 +08:00
|
|
|
Clean up configure/makefiles:
|
2001-10-30 10:50:39 +08:00
|
|
|
- Clean up configure.ac - There are a few double #defined variables
|
2001-03-05 20:33:24 +08:00
|
|
|
left to do. HAVE_LOGIN is one of them. Consider NOT looking for
|
|
|
|
information in wtmpx or utmpx or any of that stuff if it's not detected
|
|
|
|
from the start
|
2000-11-21 18:45:31 +08:00
|
|
|
|
|
|
|
- Replace the whole u_intXX_t evilness in acconfig.h with something better???
|
2003-01-13 07:00:34 +08:00
|
|
|
- Do it in configure.ac
|
2000-11-21 18:45:31 +08:00
|
|
|
|
2018-04-10 08:19:02 +08:00
|
|
|
- Consider splitting the u_intXX_t test for sys/bitype.h into separate test
|
2000-12-19 03:58:57 +08:00
|
|
|
to allow people to (right/wrongfully) link against Bind directly.
|
|
|
|
|
2018-04-10 08:19:02 +08:00
|
|
|
- Consider splitting configure.ac into separate files which do logically
|
2003-11-21 20:48:55 +08:00
|
|
|
similar tests. E.g move all the type detection stuff into one file,
|
2002-01-22 19:26:20 +08:00
|
|
|
entropy related stuff into another.
|
|
|
|
|
2000-11-21 18:45:31 +08:00
|
|
|
Packaging:
|
2001-03-19 22:58:47 +08:00
|
|
|
- HP-UX: Provide DEPOT package scripts.
|
2000-11-21 18:45:31 +08:00
|
|
|
(gilbert.r.loomis@saic.com)
|
2001-02-09 09:55:35 +08:00
|
|
|
|
2002-06-25 10:28:22 +08:00
|
|
|
PrivSep Issues:
|
2003-11-21 20:48:55 +08:00
|
|
|
- PAM
|
2002-06-25 10:28:22 +08:00
|
|
|
+ See above PAM notes
|
|
|
|
- AIX
|
2003-06-11 21:56:41 +08:00
|
|
|
+ usrinfo() does not set TTY, but only required for legacy systems. Works
|
2002-06-26 01:12:26 +08:00
|
|
|
with PrivSep.
|
2002-06-25 10:28:22 +08:00
|
|
|
- OSF
|
|
|
|
+ SIA is broken
|
2002-06-25 22:01:55 +08:00
|
|
|
- Cygwin
|
|
|
|
+ Privsep for Pre-auth only (no fd passing)
|