summaryrefslogtreecommitdiffstats
path: root/crypto/openssh
Commit message (Collapse)AuthorAgeFilesLines
* sshd didn't handle actual size of struct sockaddr correctly,ume2002-09-094-12/+13
| | | | | | | | | | | | | | | | and did copy it as long as just size of struct sockaddr. So, If connection is via IPv6, sshd didn't log hostname into utmp correctly. This problem occured only under FreeBSD because of our hack. However, this is potential problem of OpenSSH-portable, and they agreed to fix this. Though, there is no fixed version of OpenSSH-portable available yet, since this problem is serious for IPv6 users, I commit the fix. Reported by: many people Reviewed by: current@ and stable@ (no objection) MFC after: 3 days
* Fix typo (s@src/crypto/openssh-portable@src/crypto/openssh@).kuriyama2002-09-091-1/+1
|
* Do login cap calls _before_ descriptors are hardly closed because close mayache2002-08-051-1/+8
| | | | | | invalidate login cap descriptor. Reviewed by: des
* Use login_getpwclass() instead of login_getclass() so that the rootfanf2002-07-291-1/+2
| | | | | | | | vs. default login class distinction is made correctly. PR: 37416 Approved by: des MFC after: 4 days
* FreeBSD doesn't use the host RSA key by default.fanf2002-07-263-7/+2
| | | | Reviewed by: des
* Problems addressed:ache2002-07-261-2/+21
| | | | | | | | | 1) options.print_lastlog was not honored. 2) "Last login: ..." was printed twice. 3) "copyright" was not printed 4) No newline was before motd. Reviewed by: maintainer's silence in 2 weeks (with my constant reminders)
* Document the FreeBSD default for CheckHostIP, which was changed infanf2002-07-252-2/+2
| | | | | | rev 1.2 of readconf.c. Approved by: des
* Whitespace nit.des2002-07-231-1/+1
|
* In pam_init_ctx(), register a cleanup function that will kill the childdes2002-07-171-0/+13
| | | | process if a fatal error occurs. Deregister it in pam_free_ctx().
* Use realhostname_sa(3) so the IP address will be used instead of thedes2002-07-111-1/+3
| | | | | | | hostname if the latter is too long for utmp. Submitted by: ru MFC after: 3 days
* Do not try to use PAM for password authentication, as it isdes2002-07-101-0/+8
| | | | | already (and far better) supported by the challenge/response authentication mechanism.
* Don't forget to clear the buffer before reusing it.des2002-07-101-0/+1
|
* Rewrite to use the buffer API instead of roll-your-own messaging.des2002-07-051-116/+65
| | | | | Suggested by: Markus Friedl <markus@openbsd.org> Sponsored by: DARPA, NAI Labs
* (forgot to commit) We don't need --with-opie since PAM takes care of it.des2002-07-051-1/+1
|
* - Don't enable OpenSSH's OPIE support, since we let PAM handle OPIE.des2002-07-031-6/+6
| | | | | - We don't have setutent(3) etc., and I have no idea why configure ever thought we did.
* Two FreeBSD-specific nits in comments:des2002-07-031-5/+1
| | | | | | | | - ChallengeResponseAuthentication controls PAM, not S/Key - We don't honor PAMAuthenticationViaKbdInt, because the code path it controls doesn't make sense for us, so don't mention it. Sponsored by: DARPA, NAI Labs
* Version bump for mm_answer_pam_respond() fix.des2002-07-021-1/+1
|
* Fix a braino in mm_answer_pam_respond() which would cause sshd to abort ifdes2002-07-021-1/+1
| | | | PAM authentication failed due to an incorrect response.
* Forgot to update the addendum in the config files.des2002-06-302-2/+2
|
* Regenerate.des2002-06-291-4/+7
|
* <sys/mman.h> requires <sys/types.h>.des2002-06-291-0/+1
|
* Resolve conflicts.des2002-06-2927-198/+336
| | | | Sponsored by: DARPA, NAI Labs
* This commit was generated by cvs2svn to compensate for changes in r99060,des2002-06-2928-184/+374
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of OpenSSH 3.4p1.des2002-06-2955-381/+685
| |
* | Commit config.h so we don't need autoconf to build world.des2002-06-291-0/+873
| |
* | OpenBSD lifted this code our tree. Preserve the original CVS id.des2002-06-291-1/+1
| |
* | Use our __RCSID().des2002-06-291-1/+2
| |
* | Make sure the environment variables set by setusercontext() are passed ondes2002-06-291-9/+23
| | | | | | | | | | | | | | to the child process. Reviewed by: ache Sponsored by: DARPA, NAI Labs
* | Canonicize the host name before looking it up in the host file.des2002-06-291-1/+19
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Apply class-imposed login restrictions.des2002-06-291-0/+29
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | PAM support, the FreeBSD way.des2002-06-296-10/+588
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Document FreeBSD defaults.des2002-06-292-3/+11
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Document FreeBSD defaults and paths.des2002-06-294-24/+41
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Remove duplicate.des2002-06-291-59/+0
| |
* | Apply FreeBSD's configuration defaults.des2002-06-293-10/+34
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Add the VersionAddendum configuration variable.des2002-06-293-1/+78
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Support OPIE as an alternative to S/Key.des2002-06-296-0/+73
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Document the upgrade process.des2002-06-291-0/+130
| |
* | Files we don't want to import.des2002-06-291-0/+8
| |
* | Forcibly revert to mainline.des2002-06-2781-2523/+1701
| |
* | This commit was generated by cvs2svn to compensate for changes in r98937,des2002-06-27178-116/+22936
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of OpenSSH 3.3p1.des2002-06-27215-1145/+24630
| |
* | remove declaration of authlogdinoex2002-06-241-5/+1
| | | | | | | | | | use variable from_host Reviewed by: des
* | IPv4or6 is already defined in libssh.des2002-06-241-3/+2
| |
* | Resolve conflicts and document local changes.des2002-06-234-1254/+113
| |
* | Correctly export the environment variables set by setusercontext().des2002-06-232-8/+7
| | | | | | | | Sponsored by: DARPA, NAI Labs
* | Resolve conflicts. Known issues:des2002-06-2345-1424/+2059
| | | | | | | | | | | | | | | | | | | | | | - sshd fails to set TERM correctly. - privilege separation may break PAM and is currently turned off. - man pages have not yet been updated I will have these issues resolved, and privilege separation turned on by default, in time for DP2. Sponsored by: DARPA, NAI Labs
* | This commit was generated by cvs2svn to compensate for changes in r98675,des2002-06-2369-692/+6637
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of OpenSSH 3.3.des2002-06-23115-3303/+8750
| |
| * This commit was manufactured by cvs2svn to create branchcvs2svn2002-03-211-0/+334
| | | | | | | | 'VENDOR-crypto-openssh'.
OpenPOWER on IntegriCloud