blob: a9085d7e4c2012cd3d0824e9b278d9fa8fbe2c7f [file] [log] [blame]
Ben Lindstromfb62a692002-06-06 19:47:11 +0000120020606
2 - (bal) OpenBSD CVS Sync
3 - markus@cvs.openbsd.org 2002/05/15 21:56:38
4 [servconf.c sshd.8 sshd_config]
5 re-enable privsep and disable setuid for post-3.2.2
Ben Lindstrom6a246412002-06-06 19:48:16 +00006 - markus@cvs.openbsd.org 2002/05/16 22:02:50
7 [cipher.c kex.h mac.c]
8 fix warnings (openssl 0.9.7 requires const)
Ben Lindstromfac77692002-06-06 19:49:54 +00009 - stevesk@cvs.openbsd.org 2002/05/16 22:09:59
10 [session.c ssh.c]
11 don't limit xauth pathlen on client side and longer print length on
12 server when debug; ok markus@
Ben Lindstrom38ed63d2002-06-06 19:51:06 +000013 - deraadt@cvs.openbsd.org 2002/05/19 20:54:52
14 [log.h]
15 extra commas in enum not 100% portable
Ben Lindstromf666fec2002-06-06 19:51:58 +000016 - deraadt@cvs.openbsd.org 2002/05/22 23:18:25
17 [ssh.c sshd.c]
18 spelling; abishoff@arc.nasa.gov
Ben Lindstrom1bad2562002-06-06 19:57:33 +000019 - markus@cvs.openbsd.org 2002/05/23 19:24:30
20 [authfile.c authfile.h pathnames.h ssh.c sshconnect.c sshconnect.h
21 sshconnect1.c sshconnect2.c ssh-keysign.8 ssh-keysign.c Makefile.in]
22 add /usr/libexec/ssh-keysign: a setuid helper program for hostbased
23 authentication in protocol v2 (needs to access the hostkeys).
Ben Lindstrom9e5bb572002-06-06 19:58:27 +000024 - markus@cvs.openbsd.org 2002/05/23 19:39:34
25 [ssh.c]
26 add comment about ssh-keysign
Ben Lindstrom5206b952002-06-06 19:59:29 +000027 - markus@cvs.openbsd.org 2002/05/24 08:45:14
28 [sshconnect2.c]
29 stat ssh-keysign first, print error if stat fails;
30 some debug->error; fix comment
Ben Lindstrom4887da22002-06-06 20:05:57 +000031 - markus@cvs.openbsd.org 2002/05/25 08:50:39
32 [sshconnect2.c]
33 execlp->execl; from stevesk
Ben Lindstrom855bf3a2002-06-06 20:27:55 +000034 - markus@cvs.openbsd.org 2002/05/25 18:51:07
35 [auth.h auth2.c auth2-hostbased.c auth2-kbdint.c auth2-none.c
36 auth2-passwd.c auth2-pubkey.c Makefile.in]
37 split auth2.c into one file per method; ok provos@/deraadt@
Ben Lindstrom033a49c2002-06-06 20:30:28 +000038 - stevesk@cvs.openbsd.org 2002/05/26 20:35:10
39 [ssh.1]
40 sort ChallengeResponseAuthentication; ok markus@
Ben Lindstrom105ccbe2002-06-06 20:33:06 +000041 - stevesk@cvs.openbsd.org 2002/05/28 16:45:27
42 [monitor_mm.c]
43 print strerror(errno) on mmap/munmap error; ok markus@
Ben Lindstromabff1dd2002-06-06 20:38:49 +000044 - stevesk@cvs.openbsd.org 2002/05/28 17:28:02
45 [uidswap.c]
46 format spec change/casts and some KNF; ok markus@
Ben Lindstrom10d99362002-06-06 20:44:06 +000047 - stevesk@cvs.openbsd.org 2002/05/28 21:24:00
48 [uidswap.c]
49 use correct function name in fatal()
Ben Lindstrom20abb752002-06-06 20:45:33 +000050 - stevesk@cvs.openbsd.org 2002/05/29 03:06:30
51 [ssh.1 sshd.8]
52 spelling
Ben Lindstroma26ea632002-06-06 20:46:25 +000053 - markus@cvs.openbsd.org 2002/05/29 11:21:57
54 [sshd.c]
55 don't start if privsep is enabled and SSH_PRIVSEP_USER or
56 _PATH_PRIVSEP_CHROOT_DIR are missing; ok deraadt@
Ben Lindstromf088f432002-06-06 20:50:07 +000057 - markus@cvs.openbsd.org 2002/05/30 08:07:31
58 [cipher.c]
59 use rijndael/aes from libcrypto (openssl >= 0.9.7) instead of
60 our own implementation. allow use of AES hardware via libcrypto,
61 ok deraadt@
Ben Lindstromcec2ea82002-06-06 20:51:04 +000062 - markus@cvs.openbsd.org 2002/05/31 10:30:33
63 [sshconnect2.c]
64 extent ssh-keysign protocol:
65 pass # of socket-fd to ssh-keysign, keysign verfies locally used
66 ip-address using this socket-fd, restricts fake local hostnames
67 to actual local hostnames; ok stevesk@
Ben Lindstrom511bb242002-06-06 20:52:37 +000068 - markus@cvs.openbsd.org 2002/05/31 11:35:15
69 [auth.h auth2.c]
70 move Authmethod definitons to per-method file.
Ben Lindstrom01fff0c2002-06-06 20:54:07 +000071 - markus@cvs.openbsd.org 2002/05/31 13:16:48
72 [key.c]
73 add comment:
74 key_verify returns 1 for a correct signature, 0 for an incorrect signature
75 and -1 on error.
Ben Lindstromceae9d12002-06-06 20:55:04 +000076 - markus@cvs.openbsd.org 2002/05/31 13:20:50
77 [ssh-rsa.c]
78 pad received signature with leading zeros, because RSA_verify expects
79 a signature of RSA_size. the drafts says the signature is transmitted
80 unpadded (e.g. putty does not pad), reported by anakin@pobox.com
Ben Lindstrom2e14bc72002-06-06 20:56:07 +000081 - deraadt@cvs.openbsd.org 2002/06/03 12:04:07
82 [ssh.h]
83 compatiblity -> compatibility
84 decriptor -> descriptor
85 authentciated -> authenticated
86 transmition -> transmission
Ben Lindstromca8943e2002-06-06 20:42:04 +000087
Kevin Stevesdf75dd22002-06-04 20:52:19 +00008820020604
89 - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
90 setsockopt from debug to error for now).
91
Tim Rice28bbb0c2002-05-27 17:37:32 -07009220020527
93 - (tim) [configure.ac.orig monitor_fdpass.c] Enahnce msghdr tests to address
94 build problem on Irix reported by Dave Love <d.love@dl.ac.uk>. Back out
95 last monitor_fdpass.c changes that are no longer needed with new tests.
96 Patch tested on Irix by Jan-Frode Myklebust <janfrode@parallab.uib.no>
97
Damien Miller74cc5bb2002-05-22 11:02:15 +10009820020522
99 - (djm) Fix spelling mistakes, spotted by Solar Designer i
100 <solar@openwall.com>
Damien Miller8ce82962002-05-22 14:24:01 +1000101 - Sync scard/ (not sure when it drifted)
Damien Miller667fb252002-05-22 14:14:00 +1000102 - (djm) OpenBSD CVS Sync:
103 [auth.c]
104 Fix typo/thinko. Pass in as to auth_approval(), not NULL.
105 Closes PR 2659.
106 - Crank version
Damien Miller23dc10d2002-05-22 14:14:54 +1000107 - Crank RPM spec versions
Damien Miller74cc5bb2002-05-22 11:02:15 +1000108
Kevin Stevesc5041ac2002-05-21 17:50:21 +000010920020521
110 - (stevesk) [sshd.c] bug 245; disable setsid() for now
Kevin Stevesbc5bb552002-05-21 17:59:13 +0000111 - (stevesk) [sshd.c] #ifndef HAVE_CYGWIN for setgroups()
Kevin Stevesc5041ac2002-05-21 17:50:21 +0000112
Tim Rice9de793c2002-05-17 08:59:22 -070011320020517
114 - (tim) [configure.ac] remove extra MD5_MSG="no" line.
115
Ben Lindstrombeecf742002-05-15 15:59:17 +000011620020515
117 - (bal) CVS ID fix up on auth-passwd.c
Ben Lindstrom1650ba32002-05-15 16:07:11 +0000118 - (bal) OpenBSD CVS Sync
119 - deraadt@cvs.openbsd.org 2002/05/07 19:54:36
120 [ssh.h]
121 use ssh uid
Ben Lindstrom973be002002-05-15 16:08:48 +0000122 - deraadt@cvs.openbsd.org 2002/05/08 21:06:34
123 [ssh.h]
124 move to sshd.sshd instead
Ben Lindstrom966bfda2002-05-15 16:09:57 +0000125 - stevesk@cvs.openbsd.org 2002/05/11 20:24:48
126 [ssh.h]
127 typo in comment
Ben Lindstrom58d4daf2002-05-15 16:14:36 +0000128 - itojun@cvs.openbsd.org 2002/05/13 02:37:39
129 [auth-skey.c auth2.c]
130 less warnings. skey_{respond,query} are public (in auth.h)
Ben Lindstroma574cda2002-05-15 16:16:14 +0000131 - markus@cvs.openbsd.org 2002/05/13 20:44:58
132 [auth-options.c auth.c auth.h]
133 move the packet_send_debug handling from auth-options.c to auth.c;
134 ok provos@
Ben Lindstrom17401b62002-05-15 16:17:56 +0000135 - millert@cvs.openbsd.org 2002/05/13 15:53:19
136 [sshd.c]
137 Call setsid() in the child after sshd accepts the connection and forks.
138 This is needed for privsep which calls setlogin() when it changes uids.
139 Without this, there is a race where the login name of an existing
140 connection, as returned by getlogin(), may be changed to the privsep
141 user (sshd). markus@ OK
Ben Lindstrombdde3302002-05-15 16:19:37 +0000142 - markus@cvs.openbsd.org 2002/05/13 21:26:49
143 [auth-rhosts.c]
144 handle debug messages during rhosts-rsa and hostbased authentication;
145 ok provos@
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000146 - mouring@cvs.openbsd.org 2002/05/15 15:47:49
147 [kex.c monitor.c monitor_wrap.c sshd.c]
148 'monitor' variable clashes with at least one lame platform (NeXT). i
149 Renamed to 'pmonitor'. provos@
Ben Lindstrombb2ce362002-05-15 21:35:43 +0000150 - deraadt@cvs.openbsd.org 2002/05/04 02:39:35
151 [servconf.c sshd.8 sshd_config]
152 enable privsep by default; provos ok
Ben Lindstromc57bbf12002-05-15 21:36:45 +0000153 - millert@cvs.openbsd.org 2002/05/06 23:34:33
154 [ssh.1 sshd.8]
155 Kill/adjust r(login|exec)d? references now that those are no longer in
156 the tree.
Ben Lindstromc5c15dd2002-05-15 21:37:34 +0000157 - markus@cvs.openbsd.org 2002/05/15 21:02:53
158 [servconf.c sshd.8 sshd_config]
159 disable privsep and enable setuid for the 3.2.2 release
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000160 - (bal) Fixed up PAM case. I think.
Ben Lindstrom2b70e562002-05-15 16:39:51 +0000161 - (bal) Clarified openbsd-compat/*-cray.* Licence provided by Wendy
Ben Lindstrom4e67d382002-05-15 21:50:14 +0000162 - (bal) OpenBSD CVS Sync
163 - markus@cvs.openbsd.org 2002/05/15 21:05:29
164 [version.h]
165 enter OpenSSH_3.2.2
166 - (bal) Caldara, Suse, and Redhat openssh.specs updated.
Ben Lindstrombeecf742002-05-15 15:59:17 +0000167
Kevin Stevesf8defa22002-05-13 23:31:09 +000016820020514
169 - (stevesk) [README.privsep] PAM+privsep works with Solaris 8.
Tim Rice1e28c9e2002-05-13 17:07:18 -0700170 - (tim) [sshpty.c] set tty modes when allocating old style bsd ptys to
171 match what newer style ptys have when allocated. Based on a patch by
172 Roger Cornelius <rac@tenzing.org>
Tim Ricefd6fd242002-05-13 20:50:38 -0700173 - (tim) [README.privsep] UnixWare 7 and OpenUNIX 8 work.
174 - (tim) [README.privsep] remove reference to UnixWare 7 and OpenUNIX 8
175 from PAM-enabled pragraph. UnixWare has no PAM.
Tim Rice8dd6feb2002-05-14 09:03:46 -0700176 - (tim) [contrib/caldera/openssh.spec] update version.
Kevin Stevesf8defa22002-05-13 23:31:09 +0000177
Damien Millera18bbd32002-05-13 10:48:57 +100017820020513
Kevin Steves02281552002-05-13 03:57:04 +0000179 - (stevesk) add initial README.privsep
Kevin Stevesc81e1292002-05-13 03:51:40 +0000180 - (stevesk) [configure.ac] nicer message: --with-privsep-user=user
Damien Miller860e9292002-05-15 10:12:29 +1000181 - (djm) Add --with-superuser-path=xxx configure option to specify
182 what $PATH the superuser receives.
Damien Miller5ad9fd92002-05-13 11:07:41 +1000183 - (djm) Bug #231: UsePrivilegeSeparation turns off Banner.
Damien Millerf58c6722002-05-13 13:15:42 +1000184 - (djm) Add --with-privsep-path configure option
Damien Millerb7cb9692002-05-13 13:26:57 +1000185 - (djm) Update RPM spec file: different superuser path, use
186 /var/empty/sshd for privsep
Damien Millerf71d2a52002-05-13 15:14:08 +1000187 - (djm) Bug #234: missing readpassphrase declaration and defines
Damien Miller860e9292002-05-15 10:12:29 +1000188 - (djm) Add INSTALL warning about SSH protocol 1 blowfish w/
189 OpenSSL < 0.9.6
Damien Millera18bbd32002-05-13 10:48:57 +1000190
Tim Riceaef73712002-05-11 13:17:42 -070019120020511
192 - (tim) [configure.ac] applied a rework of djm's OpenSSL search cleanup patch.
193 Now only searches system and /usr/local/ssl (OpenSSL's default install path)
194 Others must use --with-ssl-dir=....
Tim Rice802b9562002-05-11 15:30:04 -0700195 - (tim) [monitor_fdpass.c] fix for systems that have both
Damien Miller860e9292002-05-15 10:12:29 +1000196 HAVE_ACCRIGHTS_IN_MSGHDR and HAVE_CONTROL_IN_MSGHDR. Ie. sys/socket.h
197 has #define msg_accrights msg_control
Tim Riceaef73712002-05-11 13:17:42 -0700198
Damien Millercfe4a892002-05-10 12:19:23 +100019920020510
Kevin Stevesf98fb722002-05-10 15:48:52 +0000200 - (stevesk) [auth.c] Shadow account and expiration cleanup. Now
201 check for root forced expire. Still don't check for inactive.
Damien Millercfe4a892002-05-10 12:19:23 +1000202 - (djm) Rework RedHat RPM files. Based on spec from Nalin
203 Dahyabhai <nalin@redhat.com> and patches from
204 Pekka Savola <pekkas@netcore.fi>
Damien Miller87aea252002-05-10 12:20:24 +1000205 - (djm) Try to drop supplemental groups at daemon startup. Patch from
206 RedHat
Ben Lindstrom0b478142002-05-10 02:40:15 +0000207 - (bal) Back all the way out of auth-passwd.c changes. Breaks too many
208 things that don't set pw->pw_passwd.
Damien Millercfe4a892002-05-10 12:19:23 +1000209
Tim Ricea7a5d6d2002-05-09 07:05:59 -070021020020509
211 - (tim) [Makefile.in] Unbreak make -f Makefile.in distprep
Damien Millerffc868f2002-05-09 15:59:13 +1000212
Tim Ricea7a5d6d2002-05-09 07:05:59 -070021320020508
Tim Rice63cf8412002-05-08 15:57:18 -0700214 - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is
215 called. Report by Chris Maxwell <maxwell@cs.dal.ca>
Tim Rice0502a472002-05-08 16:04:14 -0700216 - (tim) [Makefile.in configure.ac] set SHELL variable in Makefile
Tim Ricea7a5d6d2002-05-09 07:05:59 -0700217 - (djm) Disable PAM kbd-int auth if privsep is turned on (it doesn't work)
Tim Rice63cf8412002-05-08 15:57:18 -0700218
21920020507
Tim Rice4bd2a192002-05-07 19:51:31 -0700220 - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
221 Add truncate() emulation to address Bug 208
222
Ben Lindstrom532bbdb2002-05-06 23:06:08 +000022320020506
Damien Miller52910dd2002-05-08 12:18:26 +1000224 - (djm) Unbreak auth-passwd.c for PAM and SIA
Damien Millera33501b2002-05-08 12:24:42 +1000225 - (djm) Unbreak PAM auth for protocol 1. Report from Pekka Savola
226 <pekkas@netcore.fi>
Damien Millerf762a4b2002-05-08 12:27:55 +1000227 - (djm) Don't reinitialise PAM credentials before we have started PAM.
228 Report from Pekka Savola <pekkas@netcore.fi>
229
Damien Miller52910dd2002-05-08 12:18:26 +100023020020506
Ben Lindstrom532bbdb2002-05-06 23:06:08 +0000231 - (bal) Fixed auth-passwd.c to resolve PermitEmptyPassword issue
232
Damien Miller38cd4352002-05-01 13:17:33 +100023320020501
234 - (djm) Import OpenBSD regression tests. Requires BSD make to run
Damien Miller804357a2002-05-01 22:00:22 +1000235 - (djm) Fix readpassphase compilation for systems which have it
Damien Miller38cd4352002-05-01 13:17:33 +1000236
Tim Rice2f092892002-04-29 20:53:12 -070023720020429
238 - (tim) [contrib/caldera/openssh.spec] update fixUP to reflect changes in
239 sshd_config.
240 - (tim) [contrib/cygwin/README] remove reference to regex.
241 patch from Corinna Vinschen <vinschen@redhat.com>
242
Damien Miller13ce9222002-04-26 11:25:40 +100024320020426
244 - (djm) Bug #137, #209: fix make problems for scard/Ssh.bin, do uudecode
245 during distprep only
Damien Miller860e9292002-05-15 10:12:29 +1000246 - (djm) Disable PAM password expiry until a complete fix for bug #188
247 exists
Damien Milleraa100c52002-04-26 16:54:34 +1000248 - (djm) Bug #180: Set ToS bits on IPv4-in-IPv6 mapped addresses. Based on
249 patch from openssh@misc.tecq.org
Damien Miller13ce9222002-04-26 11:25:40 +1000250
Kevin Steves30e494f2002-04-25 17:56:07 +000025120020425
252 - (stevesk) [defines.h] remove USE_TIMEVAL; unused
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000253 - (stevesk) [acconfig.h auth-passwd.c configure.ac sshd.c] HP-UX 10.26
254 support. bug #184. most from dcole@keysoftsys.com.
Kevin Steves30e494f2002-04-25 17:56:07 +0000255
Damien Miller11ec2812002-04-24 09:48:14 +100025620020424
257 - (djm) OpenBSD CVS Sync
258 - markus@cvs.openbsd.org 2002/04/23 12:54:10
259 [version.h]
260 3.2.1
Damien Miller0150c652002-04-24 09:49:09 +1000261 - djm@cvs.openbsd.org 2002/04/23 22:16:29
262 [sshd.c]
263 Improve error message; ok markus@ stevesk@
Damien Miller11ec2812002-04-24 09:48:14 +1000264
Damien Miller594a71b2002-04-23 20:22:59 +100026520020423
Kevin Steves5feaaef2002-04-23 20:45:55 +0000266 - (stevesk) [acconfig.h configure.ac session.c] LOGIN_NO_ENDOPT for HP-UX
Kevin Steves03df6cd2002-04-23 20:11:13 +0000267 - (stevesk) [acconfig.h] NEED_IN_SYSTM_H unused
Markus Friedl78cf8c32002-04-23 16:41:12 +0200268 - (markus) OpenBSD CVS Sync
269 - markus@cvs.openbsd.org 2002/04/23 12:58:26
270 [radix.c]
271 send complete ticket; semerad@ss1000.ms.mff.cuni.cz
Damien Milleref7c11d2002-04-23 21:13:32 +1000272 - (djm) Trim ChangeLog to include only post-3.1 changes
Damien Miller0b3894d2002-04-23 21:15:31 +1000273 - (djm) Update RPM spec file versions
Damien Miller654a4ef2002-04-23 21:17:17 +1000274 - (djm) Redhat spec enables KrbV by default
Damien Millerf5fea442002-04-23 22:52:45 +1000275 - (djm) Applied OpenSC smartcard updates from Markus &
276 Antti Tapaninen <aet@cc.hut.fi>
277 - (djm) Define BROKEN_REALPATH for AIX, patch from
278 Antti Tapaninen <aet@cc.hut.fi>
Damien Millerf1b9d112002-04-23 23:09:19 +1000279 - (djm) Bug #214: Fix utmp for Irix (don't strip "tty"). Patch from
280 Kevin Taylor <no@nowhere.org> (??) via Philipp Grau
281 <phgrau@zedat.fu-berlin.de>
Damien Millerd77facd2002-04-23 22:59:51 +1000282 - (djm) Bug #213: Simplify CMSG_ALIGN macros to avoid symbol clashes.
283 Reported by Doug Manton <dmanton@emea.att.com>
Damien Miller594a71b2002-04-23 20:22:59 +1000284 - (djm) Bug #222: Fix tests for getaddrinfo on OSF/1. Spotted by
285 Robert Urban <urban@spielwiese.de>
Damien Millerfa2bb692002-04-23 23:22:25 +1000286 - (djm) Bug #206 - blibpath isn't always needed for AIX ld, avoid
287 sizeof(long long int) == 4 breakage. Patch from Matthew Clarke
288 <Matthew_Clarke@mindlink.bc.ca>
Damien Miller79418552002-04-23 20:28:48 +1000289 - (djm) Make privsep work with PAM (still experimental)
Damien Miller3b235662002-04-23 20:42:36 +1000290 - (djm) OpenBSD CVS Sync
291 - deraadt@cvs.openbsd.org 2002/04/20 09:02:03
292 [servconf.c]
293 No, afs requires explicit enabling
294 - markus@cvs.openbsd.org 2002/04/20 09:14:58
295 [bufaux.c bufaux.h]
296 add buffer_{get,put}_short
Damien Millerbad0e012002-04-23 20:46:56 +1000297 - markus@cvs.openbsd.org 2002/04/20 09:17:19
298 [radix.c]
299 rewrite using the buffer_* API, fixes overflow; ok deraadt@
Damien Miller7a8558d2002-04-23 20:51:15 +1000300 - stevesk@cvs.openbsd.org 2002/04/21 16:19:27
301 [sshd.8 sshd_config]
302 document default AFSTokenPassing no; ok deraadt@
Damien Millerf61c0152002-04-23 20:56:02 +1000303 - stevesk@cvs.openbsd.org 2002/04/21 16:25:06
304 [sshconnect1.c]
305 spelling in error message; ok markus@
Damien Miller635fe982002-04-23 21:00:33 +1000306 - markus@cvs.openbsd.org 2002/04/22 06:15:47
307 [radix.c]
308 fix check for overflow
Damien Millerd7de14b2002-04-23 21:04:51 +1000309 - markus@cvs.openbsd.org 2002/04/22 16:16:53
310 [servconf.c sshd.8 sshd_config]
311 do not auto-enable KerberosAuthentication; ok djm@, provos@, deraadt@
Damien Miller2797f7f2002-04-23 21:09:44 +1000312 - markus@cvs.openbsd.org 2002/04/22 21:04:52
313 [channels.c clientloop.c clientloop.h ssh.c]
314 request reply (success/failure) for -R style fwd in protocol v2,
315 depends on ordered replies.
316 fixes http://bugzilla.mindrot.org/show_bug.cgi?id=215; ok provos@
Damien Miller594a71b2002-04-23 20:22:59 +1000317
Tim Ricef02dccc2002-04-21 11:26:10 -070031820020421
319 - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).
Damien Miller860e9292002-05-15 10:12:29 +1000320 entropy.c needs seteuid(getuid()) for the setuid(original_uid) to
321 succeed. Patch by gert@greenie.muc.de. This fixes one part of Bug 208
Tim Ricef02dccc2002-04-21 11:26:10 -0700322
Damien Millera370f4d2002-04-18 22:53:22 +100032320020418
324 - (djm) Avoid SIGCHLD breakage when run from rsync. Fix from
325 Sturle Sunde <sturle.sunde@usit.uio.no>
326
Damien Millerbd638742002-04-17 12:22:58 +100032720020417
Damien Miller860e9292002-05-15 10:12:29 +1000328 - (djm) Tell users to configure /dev/random support into OpenSSL in
329 INSTALL
Damien Miller5efd7102002-04-17 12:30:45 +1000330 - (djm) Fix .Nm in mdoc2man.pl from pspencer@fields.utoronto.ca
Tim Rice43a1c132002-04-17 21:19:14 -0700331 - (tim) [configure.ac] Issue warning on --with-default-path=/some_path
332 if LOGIN_CAP is enabled. Report & testing by Tuc <tuc@ttsg.com>
Damien Millerbd638742002-04-17 12:22:58 +1000333
Damien Miller8be24f32002-04-15 13:23:59 +100033420020415
Damien Miller860e9292002-05-15 10:12:29 +1000335 - (djm) Unbreak "make install". Fix from Darren Tucker
336 <dtucker@zip.com.au>
Kevin Steveseb363022002-04-15 22:00:51 +0000337 - (stevesk) bsd-cygwin_util.[ch] BSD license from Corinna Vinschen
Tim Rice66480f12002-04-15 21:10:09 -0700338 - (tim) [configure.ac] add tests for recvmsg and sendmsg.
339 [monitor_fdpass.c] add checks for HAVE_SENDMSG and HAVE_RECVMSG for
340 systems that HAVE_ACCRIGHTS_IN_MSGHDR but no recvmsg or sendmsg.
Damien Miller8be24f32002-04-15 13:23:59 +1000341
Damien Miller32e48182002-04-14 19:27:12 +100034220020414
343 - (djm) ssh-rand-helper improvements
344 - Add commandline debugging options
345 - Don't write binary data if stdout is a tty (use hex instead)
346 - Give it a manpage
Damien Miller49411ff2002-04-14 23:16:04 +1000347 - (djm) Random number collection doc fixes from Ben
Damien Miller32e48182002-04-14 19:27:12 +1000348
Damien Millerfd4c9ee2002-04-13 11:04:40 +100034920020413
350 - (djm) Add KrbV support patch from Simon Wilkinson <simon@sxw.org.uk>
351
Kevin Steves19fa9b52002-04-12 15:36:07 +000035220020412
353 - (stevesk) [auth-sia.[ch]] add BSD license from Chris Adams
Tim Riceae49fe62002-04-12 10:26:21 -0700354 - (tim) [configure.ac] add <sys/types.h> to msghdr tests. Change -L
355 to -h on testing for /bin being symbolic link
Ben Lindstromc42f7cf2002-04-12 17:44:13 +0000356 - (bal) Mistaken in Cygwin scripts for ssh starting. Patch by
357 Corinna Vinschen <vinschen@redhat.com>
Ben Lindstrom927dfd22002-04-12 18:51:22 +0000358 - (bal) disable privsep if no MAP_ANON. We can re-enable it
359 after the release when we can do more testing.
Kevin Steves19fa9b52002-04-12 15:36:07 +0000360
Kevin Steves0c283d82002-04-11 20:39:40 +000036120020411
362 - (stevesk) [auth-sia.c] cleanup
Tim Rice813f0452002-04-11 20:35:39 -0700363 - (tim) [acconfig.h defines.h includes.h] put includes in includes.h and
364 defines in defines.h [rijndael.c openbsd-compat/fake-socket.h
365 openbsd-compat/inet_aton.c] include "includes.h" instead of "config.h"
366 ok stevesk@
Kevin Steves0c283d82002-04-11 20:39:40 +0000367
Kevin Steves6939b232002-04-10 16:09:51 +000036820020410
Kevin Stevesfe6ca542002-04-10 22:04:54 +0000369 - (stevesk) [configure.ac monitor.c] HAVE_SOCKETPAIR
Kevin Steves6939b232002-04-10 16:09:51 +0000370 - (stevesk) [auth-sia.c] compile fix Chris Adams <cmadams@hiwaay.net>
Ben Lindstromb5115ea2002-04-10 16:17:34 +0000371 - (bal) OpenBSD CVS Sync
372 - markus@cvs.openbsd.org 2002/04/10 08:21:47
373 [auth1.c compat.c compat.h]
Damien Miller860e9292002-05-15 10:12:29 +1000374 strip '@' from username only for KerbV and known broken clients,
375 bug #204
Ben Lindstrom027e4de2002-04-10 16:26:20 +0000376 - markus@cvs.openbsd.org 2002/04/10 08:56:01
377 [version.h]
378 OpenSSH_3.2
379 - Added p1 to idenify Portable release version.
Kevin Steves6939b232002-04-10 16:09:51 +0000380
Ben Lindstrom34b73202002-04-08 18:37:07 +000038120020408
382 - (bal) Minor OpenSC updates. Fix up header locations and update
383 README.smartcard provided by Juha Yrjölä <jyrjola@cc.hut.fi>
384
Kevin Stevesa44e0352002-04-07 16:18:03 +000038520020407
386 - (stevesk) HAVE_CONTROL_IN_MSGHDR; not used right now.
387 Future: we may want to test if fd passing works correctly.
Kevin Stevesc3c82552002-04-07 16:39:12 +0000388 - (stevesk) [monitor_fdpass.c] fatal() for UsePrivilegeSeparation=yes
389 and no fd passing support.
Kevin Steves86b9fe62002-04-07 17:08:53 +0000390 - (stevesk) HAVE_MMAP and HAVE_SYS_MMAN_H and use them in
391 monitor_mm.c
Kevin Stevesb1184bb2002-04-07 18:12:03 +0000392 - (stevesk) remove configure support for poll.h; it was removed
393 from sshd.c a long time ago.
Kevin Steves7ff91122002-04-07 19:22:54 +0000394 - (stevesk) --with-privsep-user; default sshd
Kevin Steves265c9d02002-04-07 22:36:49 +0000395 - (stevesk) wrap munmap() with HAVE_MMAP also.
Kevin Stevesa44e0352002-04-07 16:18:03 +0000396
Damien Miller12db56b2002-04-06 11:12:52 +100039720020406
398 - (djm) Typo in Suse SPEC file. Fix from Carsten Grohmann
399 <carsten.grohmann@dr-baldeweg.de>
Ben Lindstromdc0594c2002-04-06 04:11:28 +0000400 - (bal) Added MAP_FAILED to allow AIX and Trusted HP to compile.
Ben Lindstrom06e95152002-04-06 04:16:45 +0000401 - (bal) OpenBSD CVS Sync
402 - djm@cvs.openbsd.org 2002/04/06 00:30:08
403 [sftp-client.c]
Damien Millerf75fcc62002-04-23 23:32:38 +1000404 Fix occasional corruption on upload due to bad reuse of request
405 id, spotted by chombier@mac.com; ok markus@
Ben Lindstromde3895d2002-04-06 18:29:59 +0000406 - mouring@cvs.openbsd.org 2002/04/06 18:24:09
407 [scp.c]
408 Fixes potental double // within path.
409 http://bugzilla.mindrot.org/show_bug.cgi?id=76
Ben Lindstrom8d601752002-04-06 18:19:38 +0000410 - (bal) Slight update to OpenSC support. Better version checking. patch
411 by Juha Yrjölä <jyrjola@cc.hut.fi>
Ben Lindstrom8ff2a8d2002-04-06 18:58:31 +0000412 - (bal) Revered out of runtime IRIX detection of joblimits. Code is
413 incomplete.
Ben Lindstrom03188012002-04-06 20:30:07 +0000414 - (bal) Quiet down configure.ac if /bin/test does not exist.
Ben Lindstromfdee8ef2002-04-06 23:52:02 +0000415 - (bal) We no longer use atexit()/xatexit()/on_exit()
Damien Miller12db56b2002-04-06 11:12:52 +1000416
Ben Lindstroma42694f2002-04-05 16:11:45 +000041720020405
418 - (bal) Patch for OpenSC SmartCard library; ok markus@; patch by
419 Juha Yrjölä <jyrjola@cc.hut.fi>
420 - (bal) Minor documentation update to reflect smartcard library
421 support changes.
Ben Lindstrom924144e2002-04-05 20:23:35 +0000422 - (bal) Too many <sys/queue.h> issues. Remove all workarounds and
423 using internal version only.
Ben Lindstroma11e2702002-04-05 22:18:48 +0000424 - (bal) OpenBSD CVS Sync
425 - stevesk@cvs.openbsd.org 2002/04/05 20:56:21
426 [sshd.8]
427 clarify sshrc some and handle X11UseLocalhost=yes; ok markus@
Ben Lindstroma42694f2002-04-05 16:11:45 +0000428
Kevin Stevese683e762002-04-04 19:02:28 +000042920020404
430 - (stevesk) [auth-pam.c auth-pam.h auth-passwd.c auth-sia.c auth-sia.h
431 auth1.c auth2.c] PAM, OSF_SIA password auth cleanup; from djm.
Ben Lindstrom8a725a82002-04-04 22:10:38 +0000432 - (bal) OpenBSD CVS Sync
433 - markus@cvs.openbsd.org 2002/04/03 09:26:11
434 [cipher.c myproposal.h]
435 re-add rijndael-cbc@lysator.liu.se for MacSSH; ash@lab.poc.net
Kevin Stevese683e762002-04-04 19:02:28 +0000436
Ben Lindstromcdb66e02002-04-02 20:17:43 +000043720020402
438 - (bal) Hand Sync of scp.c (reverted to upstream code)
439 - deraadt@cvs.openbsd.org 2002/03/30 17:45:46
440 [scp.c]
441 stretch banners
Ben Lindstrom1e259bb2002-04-02 20:53:39 +0000442 - (bal) CVS ID sync of uidswap.c
Ben Lindstrom155b9812002-04-02 20:26:26 +0000443 - (bal) OpenBSD CVS Sync (now for the real sync)
444 - markus@cvs.openbsd.org 2002/03/27 22:21:45
445 [ssh-keygen.c]
Damien Miller860e9292002-05-15 10:12:29 +1000446 try to import keys with extra trailing === (seen with ssh.com <
447 2.0.12)
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000448 - markus@cvs.openbsd.org 2002/03/28 15:34:51
449 [session.c]
450 do not call record_login twice (for use_privsep)
Ben Lindstromc447fee2002-04-02 20:35:35 +0000451 - markus@cvs.openbsd.org 2002/03/29 18:59:32
452 [session.c session.h]
Damien Miller860e9292002-05-15 10:12:29 +1000453 retrieve last login time before the pty is allocated, store per
454 session
Ben Lindstrom0d0be022002-04-02 20:39:29 +0000455 - stevesk@cvs.openbsd.org 2002/03/29 19:16:22
456 [sshd.8]
457 RSA key modulus size minimum 768; ok markus@
Ben Lindstrom03f39322002-04-02 20:43:11 +0000458 - stevesk@cvs.openbsd.org 2002/03/29 19:18:33
459 [auth-rsa.c ssh-rsa.c ssh.h]
460 make RSA modulus minimum #define; ok markus@
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000461 - markus@cvs.openbsd.org 2002/03/30 18:51:15
462 [monitor.c serverloop.c sftp-int.c sftp.c sshd.c]
463 check waitpid for EINTR; based on patch from peter@ifm.liu.se
Ben Lindstroma1d81142002-04-02 20:58:11 +0000464 - markus@cvs.openbsd.org 2002/04/01 22:02:16
465 [sftp-client.c]
466 20480 is an upper limit for older server
Ben Lindstromf26ff5b2002-04-02 21:00:31 +0000467 - markus@cvs.openbsd.org 2002/04/01 22:07:17
468 [sftp-client.c]
469 fallback to stat if server does not support lstat
Ben Lindstromeecdf232002-04-02 21:03:51 +0000470 - markus@cvs.openbsd.org 2002/04/02 11:49:39
471 [ssh-agent.c]
472 check $SHELL for -k and -d, too;
473 http://bugzilla.mindrot.org/show_bug.cgi?id=199
Ben Lindstrom2f3d52a2002-04-02 21:06:18 +0000474 - markus@cvs.openbsd.org 2002/04/02 17:37:48
475 [sftp.c]
476 always call log_init()
Ben Lindstrom07739fe2002-04-03 03:03:04 +0000477 - markus@cvs.openbsd.org 2002/04/02 20:11:38
478 [ssh-rsa.c]
479 ignore SSH_BUG_SIGBLOB for ssh-rsa; #187
Ben Lindstromaf40bc62002-04-03 03:36:54 +0000480 - (bal) mispelling in uidswap.c (portable only)
Ben Lindstromcdb66e02002-04-02 20:17:43 +0000481
Kevin Stevesbd1901b2002-04-01 18:04:35 +000048220020401
483 - (stevesk) [monitor.c] PAM should work again; will *not* work with
484 UsePrivilegeSeparation=yes.
Kevin Steves38c4a282002-04-02 03:24:56 +0000485 - (stevesk) [auth1.c] fix password auth for protocol 1 when
486 !USE_PAM && !HAVE_OSF_SIA; merge issue.
Kevin Stevesbd1901b2002-04-01 18:04:35 +0000487
Tim Rice49e457c2002-03-31 11:23:06 -080048820020331
489 - (tim) [configure.ac] use /bin/test -L to work around broken builtin on
490 Solaris 8
Tim Ricec8549622002-03-31 12:49:38 -0800491 - (tim) [sshconnect2.c] change uint32_t to u_int32_t
Tim Rice49e457c2002-03-31 11:23:06 -0800492
Kevin Steves117b06d2002-03-30 17:55:21 +000049320020330
494 - (stevesk) [configure.ac] remove header check for sys/ttcompat.h
495 bug 167
496
Ben Lindstrom53f18302002-03-27 16:50:03 +000049720020327
498 - (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by
499 kent@lysator.liu.se
Ben Lindstromf1813842002-03-27 17:18:31 +0000500 - (bal) OpenBSD CVS Sync
501 - markus@cvs.openbsd.org 2002/03/26 11:34:49
502 [ssh.1 sshd.8]
503 update to recent drafts
Ben Lindstromeb041dc2002-03-27 17:20:38 +0000504 - markus@cvs.openbsd.org 2002/03/26 11:37:05
505 [ssh.c]
506 update Copyright
Ben Lindstromcd8bbce2002-03-27 17:23:44 +0000507 - markus@cvs.openbsd.org 2002/03/26 15:23:40
508 [bufaux.c]
509 do not talk about packets in bufaux
Ben Lindstrom43a5e2f2002-03-27 17:33:17 +0000510 - rees@cvs.openbsd.org 2002/03/26 18:46:59
511 [scard.c]
Damien Miller860e9292002-05-15 10:12:29 +1000512 try_AUT0 in read_pubkey too, for those paranoid few who want to
513 acl 'sh'
Ben Lindstrom57686a82002-03-27 17:36:41 +0000514 - markus@cvs.openbsd.org 2002/03/26 22:50:39
515 [channels.h]
516 CHANNEL_EFD_OUTPUT_ACTIVE is false for CHAN_CLOSE_RCVD, too
Ben Lindstrome1f9e322002-03-27 17:38:43 +0000517 - markus@cvs.openbsd.org 2002/03/26 23:13:03
518 [auth-rsa.c]
519 disallow RSA keys < 768 for protocol 1, too (rhosts-rsa and rsa auth)
Ben Lindstrom59971722002-03-27 17:42:57 +0000520 - markus@cvs.openbsd.org 2002/03/26 23:14:51
521 [kex.c]
522 generate a new cookie for each SSH2_MSG_KEXINIT message we send out
Ben Lindstromb57a4bf2002-03-27 18:00:59 +0000523 - mouring@cvs.openbsd.org 2002/03/27 11:45:42
524 [monitor.c]
525 monitor_allowed_key() returns int instead of pointer. ok markus@
526
Kevin Steves6205a182002-03-26 00:12:49 +000052720020325
528 - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h"
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000529 - (bal) OpenBSD CVS Sync
530 - stevesk@cvs.openbsd.org 2002/03/23 20:57:26
531 [sshd.c]
532 setproctitle() after preauth child; ok markus@
Ben Lindstrom3dc40f92002-03-26 02:01:30 +0000533 - markus@cvs.openbsd.org 2002/03/24 16:00:27
534 [serverloop.c]
535 remove unused debug
Ben Lindstrom8b08d812002-03-26 02:09:41 +0000536 - markus@cvs.openbsd.org 2002/03/24 16:01:13
537 [packet.c]
538 debug->debug3 for extra padding
Ben Lindstromfcad1c92002-03-26 02:20:06 +0000539 - stevesk@cvs.openbsd.org 2002/03/24 17:27:03
540 [kexgex.c]
541 typo; ok markus@
Ben Lindstrom31ee7ae2002-03-26 02:36:29 +0000542 - stevesk@cvs.openbsd.org 2002/03/24 17:53:16
543 [monitor_fdpass.c]
544 minor cleanup and more error checking; ok markus@
Ben Lindstromc2c6cbc2002-03-26 02:44:44 +0000545 - markus@cvs.openbsd.org 2002/03/24 18:05:29
546 [scard.c]
547 we need to figure out AUT0 for sc_private_encrypt, too
Ben Lindstrom2e9d8662002-03-26 02:49:34 +0000548 - stevesk@cvs.openbsd.org 2002/03/24 23:20:00
549 [monitor.c]
550 remove "\n" from fatal()
Ben Lindstromf6d367b2002-03-26 02:59:31 +0000551 - markus@cvs.openbsd.org 2002/03/25 09:21:13
552 [auth-rsa.c]
553 return 0 (not NULL); tomh@po.crl.go.jp
Ben Lindstrom5facb2b2002-03-26 03:08:47 +0000554 - markus@cvs.openbsd.org 2002/03/25 09:25:06
555 [auth-rh-rsa.c]
556 rm bogus comment
Ben Lindstrom0936a5b2002-03-26 03:17:42 +0000557 - markus@cvs.openbsd.org 2002/03/25 17:34:27
558 [scard.c scard.h ssh-agent.c ssh-keygen.c ssh.c]
559 change sc_get_key to sc_get_keys and hide smartcard details in scard.c
Ben Lindstromc8615472002-03-26 03:20:45 +0000560 - stevesk@cvs.openbsd.org 2002/03/25 20:12:10
561 [monitor_mm.c monitor_wrap.c]
562 ssize_t args use "%ld" and cast to (long)
563 size_t args use "%lu" and cast to (u_long)
564 ok markus@ and thanks millert@
Ben Lindstrom4f054602002-03-26 03:23:00 +0000565 - markus@cvs.openbsd.org 2002/03/25 21:04:02
566 [ssh.c]
567 simplify num_identity_files handling
Ben Lindstromcf159442002-03-26 03:26:24 +0000568 - markus@cvs.openbsd.org 2002/03/25 21:13:51
569 [channels.c channels.h compat.c compat.h nchan.c]
Damien Miller860e9292002-05-15 10:12:29 +1000570 don't send stderr data after EOF, accept this from older known
571 (broken) sshd servers only, fixes
572 http://bugzilla.mindrot.org/show_bug.cgi?id=179
Ben Lindstrom28364ec2002-03-26 03:42:20 +0000573 - stevesk@cvs.openbsd.org 2002/03/26 03:24:01
574 [monitor.h monitor_fdpass.h monitor_mm.h monitor_wrap.h]
575 $OpenBSD$
Kevin Steves6205a182002-03-26 00:12:49 +0000576
Kevin Stevesb4799a32002-03-24 23:19:54 +000057720020324
578 - (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
579 it can be removed. only used on solaris. will no longer compile with
580 privsep shuffling.
581
Kevin Steves939c9db2002-03-22 17:23:25 +000058220020322
583 - (stevesk) HAVE_ACCRIGHTS_IN_MSGHDR configure support
Kevin Steves7e147602002-03-22 18:07:17 +0000584 - (stevesk) [monitor.c monitor_wrap.c] #ifdef HAVE_PW_CLASS_IN_PASSWD
Kevin Steves4846f4a2002-03-22 18:19:53 +0000585 - (stevesk) configure and cpp __FUNCTION__ gymnastics to handle nielsisms
Kevin Steves1adb1202002-03-22 19:32:53 +0000586 - (stevesk) [monitor_fdpass.c] support for access rights style file
587 descriptor passing
Kevin Steves205cc1e2002-03-22 20:43:05 +0000588 - (stevesk) [auth2.c] merge cleanup/sync
Kevin Steves219bef12002-03-22 20:53:32 +0000589 - (stevesk) [defines.h] hp-ux 11 has ancillary data style fd passing, but
590 is missing CMSG_LEN() and CMSG_SPACE() macros.
Kevin Steves4435a552002-03-22 21:08:03 +0000591 - (stevesk) [defines.h] #define MAP_ANON MAP_ANONYMOUS for HP-UX; other
592 platforms may need this--I'm not sure. mmap() issues will need to be
593 addressed further.
Tim Ricef29a6532002-03-22 13:27:40 -0800594 - (tim) [cipher.c] fix problem with OpenBSD sync
Kevin Steves4408c202002-03-23 02:20:07 +0000595 - (stevesk) [LICENCE] OpenBSD sync
Kevin Steves939c9db2002-03-22 17:23:25 +0000596
Ben Lindstromd45f28c2002-03-22 01:00:57 +000059720020321
598 - (bal) OpenBSD CVS Sync
599 - itojun@cvs.openbsd.org 2002/03/08 06:10:16
600 [sftp-client.c]
601 printf type mismatch
Ben Lindstromeb505452002-03-22 01:03:15 +0000602 - itojun@cvs.openbsd.org 2002/03/11 03:18:49
603 [sftp-client.c]
604 correct type mismatches (u_int64_t != unsigned long long)
Ben Lindstrom83b79e42002-03-22 01:05:27 +0000605 - itojun@cvs.openbsd.org 2002/03/11 03:19:53
606 [sftp-client.c]
607 indent
Ben Lindstrom5c159582002-03-22 01:08:07 +0000608 - markus@cvs.openbsd.org 2002/03/14 15:24:27
609 [sshconnect1.c]
Damien Miller860e9292002-05-15 10:12:29 +1000610 don't trust size sent by (rogue) server; noted by
611 s.esser@e-matters.de
Ben Lindstromabcb1452002-03-22 01:10:21 +0000612 - markus@cvs.openbsd.org 2002/03/14 16:38:26
613 [sshd.c]
614 split out ssh1 session key decryption; ok provos@
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000615 - markus@cvs.openbsd.org 2002/03/14 16:56:33
616 [auth-rh-rsa.c auth-rsa.c auth.h]
617 split auth_rsa() for better readability and privsep; ok provos@
Ben Lindstromb61e6df2002-03-22 01:15:33 +0000618 - itojun@cvs.openbsd.org 2002/03/15 11:00:38
619 [auth.c]
620 fix file type checking (use S_ISREG). ok by markus
Ben Lindstromce398b22002-03-22 01:17:52 +0000621 - markus@cvs.openbsd.org 2002/03/16 11:24:53
622 [compress.c]
623 skip inflateEnd if inflate fails; ok provos@
Ben Lindstrom186b7da2002-03-22 01:20:32 +0000624 - markus@cvs.openbsd.org 2002/03/16 17:22:09
625 [auth-rh-rsa.c auth.h]
626 split auth_rhosts_rsa(), ok provos@
Ben Lindstromeacc71b2002-03-22 01:22:27 +0000627 - stevesk@cvs.openbsd.org 2002/03/16 17:41:25
628 [auth-krb5.c]
629 BSD license. from Daniel Kouril via Dug Song. ok markus@
Ben Lindstrom2ae18f42002-03-22 01:24:38 +0000630 - provos@cvs.openbsd.org 2002/03/17 20:25:56
631 [auth.c auth.h auth1.c auth2.c]
Damien Miller860e9292002-05-15 10:12:29 +1000632 getpwnamallow returns struct passwd * only if user valid;
633 okay markus@
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000634 - provos@cvs.openbsd.org 2002/03/18 01:12:14
635 [auth.h auth1.c auth2.c sshd.c]
636 have the authentication functions return the authentication context
637 and then do_authenticated; okay millert@
Ben Lindstromabf31442002-03-22 01:30:40 +0000638 - dugsong@cvs.openbsd.org 2002/03/18 01:30:10
639 [auth-krb4.c]
640 set client to NULL after xfree(), from Rolf Braun
641 <rbraun+ssh@andrew.cmu.edu>
Ben Lindstromb481e132002-03-22 01:35:47 +0000642 - provos@cvs.openbsd.org 2002/03/18 03:41:08
643 [auth.c session.c]
644 move auth_approval into getpwnamallow with help from millert@
Ben Lindstrom212faca2002-03-22 01:39:44 +0000645 - markus@cvs.openbsd.org 2002/03/18 17:13:15
646 [cipher.c cipher.h]
647 export/import cipher states; needed by ssh-privsep
Ben Lindstromf6027d32002-03-22 01:42:04 +0000648 - markus@cvs.openbsd.org 2002/03/18 17:16:38
649 [packet.c packet.h]
650 export/import cipher state, iv and ssh2 seqnr; needed by ssh-privsep
Ben Lindstroma674e8d2002-03-22 01:45:53 +0000651 - markus@cvs.openbsd.org 2002/03/18 17:23:31
652 [key.c key.h]
653 add key_demote() for ssh-privsep
Ben Lindstrom88aa1b42002-03-22 01:47:52 +0000654 - provos@cvs.openbsd.org 2002/03/18 17:25:29
655 [bufaux.c bufaux.h]
656 buffer_skip_string and extra sanity checking; needed by ssh-privsep
Ben Lindstrom0f345f52002-03-22 01:51:24 +0000657 - provos@cvs.openbsd.org 2002/03/18 17:31:54
658 [compress.c]
659 export compression streams for ssh-privsep
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000660 - provos@cvs.openbsd.org 2002/03/18 17:50:31
Damien Milleree5e3b22002-05-15 10:08:17 +1000661 [auth-bsdauth.c auth-options.c auth-rh-rsa.c auth-rsa.c]
662 [auth-skey.c auth.h auth1.c auth2-chall.c auth2.c kex.c kex.h kexdh.c]
663 [kexgex.c servconf.c]
664 [session.h servconf.h serverloop.c session.c sshd.c]
665 integrate privilege separated openssh; its turned off by default
666 for now. work done by me and markus@
Ben Lindstrom000dda52002-03-22 02:33:12 +0000667 - provos@cvs.openbsd.org 2002/03/18 17:53:08
668 [sshd.8]
669 credits for privsep
Ben Lindstrom191c8e52002-03-22 02:37:50 +0000670 - provos@cvs.openbsd.org 2002/03/18 17:59:09
671 [sshd.8]
672 document UsePrivilegeSeparation
Ben Lindstrom01426a62002-03-22 02:40:03 +0000673 - stevesk@cvs.openbsd.org 2002/03/18 23:52:51
674 [servconf.c]
675 UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
676 provos@
Ben Lindstrom7a7edf72002-03-22 02:42:37 +0000677 - stevesk@cvs.openbsd.org 2002/03/19 03:03:43
678 [pathnames.h servconf.c servconf.h sshd.c]
679 _PATH_PRIVSEP_CHROOT_DIR; ok provos@
Ben Lindstrom85520a62002-03-22 02:44:40 +0000680 - stevesk@cvs.openbsd.org 2002/03/19 05:23:08
681 [sshd.8]
682 Banner has no default.
Ben Lindstromcb1f60e2002-03-22 02:47:28 +0000683 - mpech@cvs.openbsd.org 2002/03/19 06:32:56
684 [sftp-int.c]
685 use xfree() after xstrdup().
686
687 markus@ ok
Ben Lindstrom08105192002-03-22 02:50:06 +0000688 - markus@cvs.openbsd.org 2002/03/19 10:35:39
689 [auth-options.c auth.h session.c session.h sshd.c]
690 clean up prototypes
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000691 - markus@cvs.openbsd.org 2002/03/19 10:49:35
Damien Milleree5e3b22002-05-15 10:08:17 +1000692 [auth-krb5.c auth-rh-rsa.c auth.c cipher.c key.c misc.h]
693 [packet.c session.c sftp-client.c sftp-glob.h sftp.c ssh-add.c ssh.c]
694 [sshconnect2.c sshd.c ttymodes.c]
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000695 KNF whitespace
Ben Lindstrom7ebb6352002-03-22 03:04:08 +0000696 - markus@cvs.openbsd.org 2002/03/19 14:27:39
697 [auth.c auth1.c auth2.c]
698 make getpwnamallow() allways call pwcopy()
Ben Lindstromf34e4eb2002-03-22 03:08:30 +0000699 - markus@cvs.openbsd.org 2002/03/19 15:31:47
700 [auth.c]
701 check for NULL; from provos@
Ben Lindstromc7431342002-03-22 03:11:49 +0000702 - stevesk@cvs.openbsd.org 2002/03/20 19:12:25
703 [servconf.c servconf.h ssh.h sshd.c]
704 for unprivileged user, group do:
705 pw=getpwnam(SSH_PRIVSEP_USER); do_setusercontext(pw). ok provos@
Ben Lindstrom58b391b2002-03-22 03:21:16 +0000706 - stevesk@cvs.openbsd.org 2002/03/20 21:08:08
707 [sshd.c]
708 strerror() on chdir() fail; ok provos@
Ben Lindstrom1ee9ec32002-03-22 03:14:45 +0000709 - markus@cvs.openbsd.org 2002/03/21 10:21:20
710 [ssh-add.c]
711 ignore errors for nonexisting default keys in ssh-add,
712 fixes http://bugzilla.mindrot.org/show_bug.cgi?id=158
Ben Lindstrom5589f4b2002-03-22 03:24:32 +0000713 - jakob@cvs.openbsd.org 2002/03/21 15:17:26
714 [clientloop.c ssh.1]
715 add built-in command line for adding new port forwardings on the fly.
716 based on a patch from brian wellington. ok markus@.
Ben Lindstrom0b675b12002-03-22 03:28:11 +0000717 - markus@cvs.openbsd.org 2002/03/21 16:38:06
718 [scard.c]
719 make compile w/ openssl 0.9.7
Ben Lindstrom70e3ad82002-03-22 03:33:43 +0000720 - markus@cvs.openbsd.org 2002/03/21 16:54:53
721 [scard.c scard.h ssh-keygen.c]
722 move key upload to scard.[ch]
723 - markus@cvs.openbsd.org 2002/03/21 16:57:15
724 [scard.c]
725 remove const
Ben Lindstromeda98a72002-03-22 03:35:48 +0000726 - markus@cvs.openbsd.org 2002/03/21 16:58:13
727 [clientloop.c]
728 remove unused
Ben Lindstrom818659a2002-03-22 03:38:35 +0000729 - rees@cvs.openbsd.org 2002/03/21 18:08:15
730 [scard.c]
731 In sc_put_key(), sc_reader_id should be id.
Ben Lindstromfa1336f2002-03-22 03:40:58 +0000732 - markus@cvs.openbsd.org 2002/03/21 20:51:12
733 [sshd_config]
734 add privsep (off)
Ben Lindstrom943481c2002-03-22 03:43:46 +0000735 - markus@cvs.openbsd.org 2002/03/21 21:23:34
736 [sshd.c]
737 add privsep_preauth() and remove 1 goto; ok provos@
Ben Lindstrom266ec632002-03-22 03:47:38 +0000738 - rees@cvs.openbsd.org 2002/03/21 21:54:34
739 [scard.c scard.h ssh-keygen.c]
740 Add PIN-protection for secret key.
Ben Lindstromba72d302002-03-22 03:51:06 +0000741 - rees@cvs.openbsd.org 2002/03/21 22:44:05
742 [authfd.c authfd.h ssh-add.c ssh-agent.c ssh.c]
743 Add PIN-protection for secret key.
Ben Lindstrom681d9322002-03-22 03:53:00 +0000744 - markus@cvs.openbsd.org 2002/03/21 23:07:37
745 [clientloop.c]
746 remove unused, sync w/ cmdline patch in my tree.
Ben Lindstromfa1336f2002-03-22 03:40:58 +0000747
Tim Rice88f2ab52002-03-17 12:17:34 -080074820020317
Damien Miller860e9292002-05-15 10:12:29 +1000749 - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is
750 wanted, warn if directory does not exist. Put system directories in
751 front of PATH for finding entorpy commands.
Tim Rice3a423462002-03-17 14:05:24 -0800752 - (tim) [contrib/aix/buildbff.sh contrib/aix/inventory.sh] AIX package
753 build fixes. Patch by Darren Tucker <dtucker@zip.com.au>
754 [contrib/solaris/buildpkg.sh] add missing dirs to SYSTEM_DIR. Have
755 postinstall check for $piddir and add if necessary.
Tim Rice88f2ab52002-03-17 12:17:34 -0800756
Tim Rice29bdd2c2002-03-11 20:55:53 -080075720020311
758 - (tim) [contrib/solaris/buildpkg.sh, contrib/solaris/README] Updated to
759 build on all platforms that support SVR4 style package tools. Now runs
760 from build dir. Parts are based on patches from Antonio Navarro, and
761 Darren Tucker.
762
Damien Millerff8f94c2002-03-11 10:48:53 +110076320020308
Damien Millerc7375ac2002-03-11 10:51:17 +1100764 - (djm) Revert bits of Markus' OpenSSL compat patch which was
765 accidentally committed.
766 - (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
767 Known issue: Blowfish for SSH1 does not work
Kevin Steves58193072002-03-11 00:16:34 +0000768 - (stevesk) entropy.c: typo in debug message
Damien Miller4a10d2e2002-03-11 22:53:29 +1100769 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
Damien Millerff8f94c2002-03-11 10:48:53 +1100770
Ben Lindstrom2e14bc72002-06-06 20:56:07 +0000771$Id: ChangeLog,v 1.2166 2002/06/06 20:56:07 mouring Exp $