TODO 2.5 KB

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