]> andersk Git - openssh.git/blob - ChangeLog
- markus@cvs.openbsd.org 2002/01/09 17:26:35
[openssh.git] / ChangeLog
1 20020122
2  - (djm) autoconf hacking:
3    - We don't support --without-zlib currently, so don't allow it.
4    - Rework cryptographic random number support detection. We now detect 
5      whether OpenSSL seeds itself. If it does, then we don't bother with 
6      the ssh-rand-helper program. You can force the use of ssh-rand-helper
7      using the --with-rand-helper configure argument
8    - Simplify and clean up ssh-rand-helper configuration
9    - Add OpenSSL sanity check: verify that header version matches version
10      reported by library
11  - (djm) Fix some bugs I introduced into ssh-rand-helper yesterday
12  - OpenBSD CVS Sync
13    - djm@cvs.openbsd.org 2001/12/21 08:52:22
14      [ssh-keygen.1 ssh-keygen.c]
15      Remove default (rsa1) key type; ok markus@
16    - djm@cvs.openbsd.org 2001/12/21 08:53:45
17      [readpass.c]
18      Avoid interruptable passphrase read; ok markus@
19    - djm@cvs.openbsd.org 2001/12/21 10:06:43
20      [ssh-add.1 ssh-add.c]
21      Try all standard key files (id_rsa, id_dsa, identity) when invoked with
22      no arguments; ok markus@
23    - markus@cvs.openbsd.org 2001/12/21 12:17:33
24      [serverloop.c]
25      remove ifdef for USE_PIPES since fdin != fdout; ok djm@
26    - deraadt@cvs.openbsd.org 2001/12/24 07:29:43
27      [ssh-add.c]
28      try all listed keys.. how did this get broken?
29    - markus@cvs.openbsd.org 2001/12/25 18:49:56
30      [key.c]
31      be more careful on allocation
32    - markus@cvs.openbsd.org 2001/12/25 18:53:00
33      [auth1.c]
34      be more carefull on allocation
35    - markus@cvs.openbsd.org 2001/12/27 18:10:29
36      [ssh-keygen.c]
37      -t is only needed for key generation (unbreaks -i, -e, etc).
38    - markus@cvs.openbsd.org 2001/12/27 18:22:16
39      [auth1.c authfile.c auth-rsa.c dh.c kexdh.c kexgex.c key.c rsa.c]
40      [scard.c ssh-agent.c sshconnect1.c sshd.c ssh-dss.c]
41      call fatal() for openssl allocation failures
42    - stevesk@cvs.openbsd.org 2001/12/27 18:22:53
43      [sshd.8]
44      clarify -p; ok markus@
45    - markus@cvs.openbsd.org 2001/12/27 18:26:13
46      [authfile.c]
47      missing include
48    - markus@cvs.openbsd.org 2001/12/27 19:37:23
49      [dh.c kexdh.c kexgex.c]
50      always use BN_clear_free instead of BN_free
51    - markus@cvs.openbsd.org 2001/12/27 19:54:53
52      [auth1.c auth.h auth-rh-rsa.c]
53      auth_rhosts_rsa now accept generic keys.
54    - markus@cvs.openbsd.org 2001/12/27 20:39:58
55      [auth1.c auth-rsa.c channels.c clientloop.c packet.c packet.h]
56      [serverloop.c session.c ssh.c sshconnect1.c sshd.c ttymodes.c]
57      get rid of packet_integrity_check, use packet_done() instead.
58    - markus@cvs.openbsd.org 2001/12/28 12:14:27
59      [auth1.c auth2.c auth2-chall.c auth-rsa.c channels.c clientloop.c]
60      [kex.c kexdh.c kexgex.c packet.c packet.h serverloop.c session.c]
61      [ssh.c sshconnect1.c sshconnect2.c sshd.c]
62      s/packet_done/packet_check_eom/ (end-of-message); ok djm@
63    - markus@cvs.openbsd.org 2001/12/28 13:57:33
64      [auth1.c kexdh.c kexgex.c packet.c packet.h sshconnect1.c sshd.c]
65      packet_get_bignum* no longer returns a size
66    - markus@cvs.openbsd.org 2001/12/28 14:13:13
67      [bufaux.c bufaux.h packet.c]
68      buffer_get_bignum: int -> void
69    - markus@cvs.openbsd.org 2001/12/28 14:50:54
70      [auth1.c auth-rsa.c channels.c dispatch.c kex.c kexdh.c kexgex.c]
71      [packet.c packet.h serverloop.c session.c ssh.c sshconnect1.c]
72      [sshconnect2.c sshd.c]
73      packet_read* no longer return the packet length, since it's not used.
74    - markus@cvs.openbsd.org 2001/12/28 15:06:00
75      [auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c]
76      [dispatch.h kex.c kex.h serverloop.c ssh.c sshconnect2.c]
77      remove plen from the dispatch fn. it's no longer used.
78    - stevesk@cvs.openbsd.org 2001/12/28 22:37:48
79      [ssh.1 sshd.8]
80      document LogLevel DEBUG[123]; ok markus@
81    - stevesk@cvs.openbsd.org 2001/12/29 21:56:01
82      [authfile.c channels.c compress.c packet.c sftp-server.c]
83      [ssh-agent.c ssh-keygen.c]
84      remove unneeded casts and some char->u_char cleanup; ok markus@
85    - stevesk@cvs.openbsd.org 2002/01/03 04:11:08
86      [ssh_config]
87      grammar in comment
88    - stevesk@cvs.openbsd.org 2002/01/04 17:59:17
89      [readconf.c servconf.c]
90      remove #ifdef _PATH_XAUTH/#endif; ok markus@
91    - stevesk@cvs.openbsd.org 2002/01/04 18:14:16
92      [servconf.c sshd.8]
93      protocol 2 HostKey code default is now /etc/ssh_host_rsa_key and
94      /etc/ssh_host_dsa_key like we have in sshd_config.  ok markus@
95    - markus@cvs.openbsd.org 2002/01/05 10:43:40
96      [channels.c]
97      fix hanging x11 channels for rejected cookies (e.g. 
98      XAUTHORITY=/dev/null xbiff) bug #36, based on patch from
99      djast@cs.toronto.edu
100    - stevesk@cvs.openbsd.org 2002/01/05 21:51:56
101      [ssh.1 sshd.8]
102      some missing and misplaced periods
103    - markus@cvs.openbsd.org 2002/01/09 13:49:27
104      [ssh-keygen.c]
105      append \n only for public keys
106    - markus@cvs.openbsd.org 2002/01/09 17:16:00
107      [channels.c]
108      merge channel_pre_open_15/channel_pre_open_20; ok provos@
109    - markus@cvs.openbsd.org 2002/01/09 17:26:35
110      [channels.c nchan.c]
111      replace buffer_consume(b, buffer_len(b)) with buffer_clear(b); 
112      ok provos@
113
114
115 20020121
116  - (djm) Rework ssh-rand-helper:
117    - Reduce quantity of ifdef code, in preparation for ssh_rand_conf
118    - Always seed from system calls, even when doing PRNGd seeding
119    - Tidy and comment #define knobs
120    - Remove unused facility for multiple runs through command list
121    - KNF, cleanup, update copyright
122
123 20020114
124  - (djm) Bug #50 - make autoconf entropy path checks more robust
125
126 20020108
127  - (djm) Merge Cygwin copy_environment with do_pam_environment, removing 
128    fixed env var size limit in the process. Report from Corinna Vinschen 
129    <vinschen@redhat.com>
130  - (stevesk) defines.h: use "/var/spool/sockets/X11/%u" for HP-UX.  does
131    not depend on transition links.  from Lutz Jaenicke.
132
133 20020106
134  - (stevesk) defines.h: determine _PATH_UNIX_X; currently "/tmp/.X11-unix/X%u"
135    for all platforms except HP-UX, which is "/usr/spool/sockets/X11/%u".
136
137 20020105
138  - (bal) NCR requies use_pipes to operate correctly.
139  - (stevesk) fix spurious ; from NCR change.
140
141 20020103
142  - (djm) Use bigcrypt() on systems with SCO_PROTECTED_PW. Patch from 
143    Roger Cornelius <rac@tenzing.org>
144
145 20011229
146  - (djm) Apply Cygwin pointer deref fix from Corinna Vinschen 
147    <vinschen@redhat.com> Could be abused to guess valid usernames
148  - (djm) Typo in contrib/cygwin/README Fix from Corinna Vinschen
149    <vinschen@redhat.com>
150
151 20011228
152  - (djm) Remove recommendation to use GNU make, we should support most
153    make programs.
154
155 20011225
156  - (stevesk) [Makefile.in ssh-rand-helper.c]
157    portable lib and __progname support for ssh-rand-helper; ok djm@
158
159 20011223
160  - (bal) Removed contrib/chroot.diff and noted in contrib/README that it
161    was not being maintained.
162
163 20011222
164  - (djm) Ignore fix & patchlevel in OpenSSL version check. Patch from 
165    solar@openwall.com
166  - (djm) Rework entropy code. If the OpenSSL PRNG is has not been 
167    internally seeded, execute a subprogram "ssh-rand-helper" to obtain
168    some entropy for us. Rewrite the old in-process entropy collecter as
169    an example ssh-rand-helper.
170  - (djm) Always perform ssh_prng_cmds path lookups in configure, even if
171    we don't end up using ssh_prng_cmds (so we always get a valid file) 
172       
173 20011221
174  - (djm) Add option to gnome-ssh-askpass to stop it from grabbing the X
175    server. I have found this necessary to avoid server hangs with X input
176    extensions (e.g. kinput2). Enable by setting the environment variable
177    "GNOME_SSH_ASKPASS_NOGRAB"
178   - OpenBSD CVS Sync
179    - stevesk@cvs.openbsd.org 2001/12/08 17:49:28
180      [channels.c pathnames.h]
181      use only one path to X11 UNIX domain socket vs. an array of paths
182      to try.  report from djast@cs.toronto.edu.  ok markus@
183    - markus@cvs.openbsd.org 2001/12/09 18:45:56
184      [auth2.c auth2-chall.c auth.h]
185      add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions,
186      fixes memleak.
187    - stevesk@cvs.openbsd.org 2001/12/10 16:45:04
188      [sshd.c]
189      possible fd leak on error; ok markus@
190    - markus@cvs.openbsd.org 2001/12/10 20:34:31
191      [ssh-keyscan.c]
192      check that server supports v1 for -t rsa1, report from wirth@dfki.de
193    - jakob@cvs.openbsd.org 2001/12/18 10:04:21
194      [auth.h hostfile.c hostfile.h]
195      remove auth_rsa_read_key, make hostfile_ready_key non static; ok markus@
196    - jakob@cvs.openbsd.org 2001/12/18 10:05:15
197      [auth2.c]
198      log fingerprint on successful public key authentication; ok markus@
199    - jakob@cvs.openbsd.org 2001/12/18 10:06:24
200      [auth-rsa.c]
201      log fingerprint on successful public key authentication, simplify 
202      usage of key structs; ok markus@
203    - deraadt@cvs.openbsd.org 2001/12/19 07:18:56
204      [auth1.c auth2.c auth2-chall.c auth-bsdauth.c auth.c authfile.c auth.h]
205      [auth-krb4.c auth-rhosts.c auth-skey.c bufaux.c canohost.c channels.c]
206      [cipher.c clientloop.c compat.c compress.c deattack.c key.c log.c mac.c]
207      [match.c misc.c nchan.c packet.c readconf.c rijndael.c rijndael.h scard.c]
208      [servconf.c servconf.h serverloop.c session.c sftp.c sftp-client.c]
209      [sftp-glob.c sftp-int.c sftp-server.c ssh-add.c ssh-agent.c ssh.c]
210      [sshconnect1.c sshconnect2.c sshconnect.c sshd.8 sshd.c sshd_config]
211      [ssh-keygen.c sshlogin.c sshpty.c sshtty.c ttymodes.c uidswap.c]
212      basic KNF done while i was looking for something else
213    - markus@cvs.openbsd.org 2001/12/19 16:09:39
214      [serverloop.c]
215      fix race between SIGCHLD and select with an additional pipe.  writing
216      to the pipe on SIGCHLD wakes up select(). using pselect() is not
217      portable and siglongjmp() ugly. W. R. Stevens suggests similar solution.
218      initial idea by pmenage@ensim.com; ok deraadt@, djm@
219    - stevesk@cvs.openbsd.org 2001/12/19 17:16:13
220      [authfile.c bufaux.c bufaux.h buffer.c buffer.h packet.c packet.h ssh.c]
221      change the buffer/packet interface to use void* vs. char*; ok markus@
222    - markus@cvs.openbsd.org 2001/12/20 16:37:29
223      [channels.c channels.h session.c]
224      setup x11 listen socket for just one connect if the client requests so.
225      (v2 only, but the openssh client does not support this feature).
226    - djm@cvs.openbsd.org 2001/12/20 22:50:24
227      [auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c]
228      [dispatch.h kex.c kex.h packet.c packet.h serverloop.c ssh.c]
229      [sshconnect2.c]
230      Conformance fix: we should send failing packet sequence number when
231      responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by
232      yakk@yakk.dot.net; ok markus@
233
234 20011219
235  - (stevesk) OpenBSD CVS sync X11 localhost display
236    - stevesk@cvs.openbsd.org 2001/11/29 14:10:51
237      [channels.h channels.c session.c]
238      sshd X11 fake server will now listen on localhost by default:
239      $ echo $DISPLAY
240      localhost:12.0
241      $ netstat -an|grep 6012
242      tcp        0      0  127.0.0.1.6012         *.*                    LISTEN
243      tcp6       0      0  ::1.6012               *.*                    LISTEN
244      sshd_config gatewayports=yes can be used to revert back to the old
245      behavior.  will control this with another option later.  ok markus@
246    - stevesk@cvs.openbsd.org 2001/12/19 08:43:11
247      [includes.h session.c]
248      handle utsname.nodename case for FamilyLocal X authorization; ok markus@
249         
250 20011207
251  - (bal) PCRE no longer required.  Banished from the source along with
252    fake-regex.h
253  - (bal) OpenBSD CVS Sync
254    - stevesk@cvs.openbsd.org 2001/12/06 18:02:32
255      [channels.c sshconnect.c]
256      shutdown(sock, SHUT_RDWR) not needed here; ok markus@
257    - stevesk@cvs.openbsd.org 2001/12/06 18:09:23
258      [channels.c session.c]
259      strncpy->strlcpy.  remaining strncpy's are necessary.  ok markus@
260    - stevesk@cvs.openbsd.org 2001/12/06 18:20:32
261      [channels.c]
262      disable nagle for X11 fake server and client TCPs.  from netbsd.
263      ok markus@
264
265 20011206
266  - (bal) OpenBSD CVS Sync
267    - deraadt@cvs.openbsd.org 2001/11/14 20:45:08
268      [sshd.c]
269      errno saving wrapping in a signal handler
270    - markus@cvs.openbsd.org 2001/11/16 12:46:13
271      [ssh-keyscan.c]
272      handle empty lines instead of dumping core; report from sha@sha-1.net
273    - stevesk@cvs.openbsd.org 2001/11/17 19:14:34
274      [auth2.c auth.c readconf.c servconf.c ssh-agent.c ssh-keygen.c]
275      enum/int type cleanup where it made sense to do so; ok markus@
276    - markus@cvs.openbsd.org 2001/11/19 11:20:21
277      [sshd.c]
278      fd leak on HUP; ok stevesk@
279    - stevesk@cvs.openbsd.org 2001/11/19 18:40:46
280      [ssh-agent.1]
281      clarify/state that private keys are not exposed to clients using the 
282      agent; ok markus@
283    - mpech@cvs.openbsd.org 2001/11/19 19:02:16
284      [deattack.c radix.c]
285      kill more registers
286      millert@ ok
287    - markus@cvs.openbsd.org 2001/11/21 15:51:24
288      [key.c]
289      mem leak
290    - stevesk@cvs.openbsd.org 2001/11/21 18:49:14
291      [ssh-keygen.1]
292      more on passphrase construction; ok markus@
293    - stevesk@cvs.openbsd.org 2001/11/22 05:27:29
294      [ssh-keyscan.c]
295      don't use "\n" in fatal()
296    - markus@cvs.openbsd.org 2001/11/22 12:34:22
297      [clientloop.c serverloop.c sshd.c]
298      volatile sig_atomic_t
299    - stevesk@cvs.openbsd.org 2001/11/29 19:06:39
300      [channels.h]
301      remove dead function prototype; ok markus@
302    - markus@cvs.openbsd.org 2001/11/29 22:08:48
303      [auth-rsa.c]
304      fix protocol error: send 'failed' message instead of a 2nd challenge
305      (happens if the same key is in authorized_keys twice).
306      reported Ralf_Meister@genua.de; ok djm@
307    - stevesk@cvs.openbsd.org 2001/11/30 20:39:28
308      [ssh.c]
309      sscanf() length dependencies are clearer now; can also shrink proto
310      and data if desired, but i have not done that.  ok markus@
311    - markus@cvs.openbsd.org 2001/12/01 21:41:48
312      [session.c sshd.8]
313      don't pass user defined variables to /usr/bin/login
314    - deraadt@cvs.openbsd.org 2001/12/02 02:08:32
315      [sftp-common.c]
316      zap };
317    - itojun@cvs.openbsd.org 2001/12/05 03:50:01
318      [clientloop.c serverloop.c sshd.c]
319      deal with LP64 printf issue with sig_atomic_t.  from thorpej
320    - itojun@cvs.openbsd.org 2001/12/05 03:56:39
321      [auth1.c auth2.c canohost.c channels.c deattack.c packet.c scp.c 
322       sshconnect2.c]
323      make it compile with more strict prototype checking
324    - deraadt@cvs.openbsd.org 2001/12/05 10:06:12
325      [authfd.c authfile.c bufaux.c channels.c compat.c kex.c kexgex.c 
326       key.c misc.c packet.c servconf.c ssh-agent.c sshconnect2.c 
327       sshconnect.c sshd.c ssh-dss.c ssh-keygen.c ssh-rsa.c]
328      minor KNF
329    - markus@cvs.openbsd.org 2001/12/05 15:04:48
330      [version.h]
331      post 3.0.2
332    - markus@cvs.openbsd.org 2001/12/05 16:54:51
333      [compat.c match.c match.h]
334      make theo and djm happy: bye bye regexp
335    - markus@cvs.openbsd.org 2001/12/06 13:30:06
336      [servconf.c servconf.h sshd.8 sshd.c]
337      add -o to sshd, too. ok deraadt@
338  - (bal) Minor white space fix up in servconf.c
339
340 20011126
341  - (tim) [contrib/cygwin/README, openbsd-compat/bsd-cygwin_util.c,
342    openbsd-compat/bsd-cygwin_util.h, openbsd-compat/daemon.c]
343    Allow SSHD to install as service under WIndows 9x/Me
344    [configure.ac] Fix to allow linking against PCRE on Cygwin
345    Patches by Corinna Vinschen <vinschen@redhat.com>
346
347 20011115
348  - (djm) Fix IPv4 default in ssh-keyscan. Spotted by Dan Astoorian 
349    <djast@cs.toronto.edu> Fix from markus@
350  - (djm) Release 3.0.1p1
351
352 20011113
353  - (djm) Fix early (and double) free of remote user when using Kerberos. 
354    Patch from Simon Wilkinson <simon@sxw.org.uk>
355  - (djm) AIX login{success,failed} changes. Move loginsuccess call to 
356    do_authenticated. Call loginfailed for protocol 2 failures > MAX like 
357    we do for protocol 1. Reports from Ralf Wenk <wera0003@fh-karlsruhe.de>,
358    K.Wolkersdorfer@fz-juelich.de and others
359  - (djm) OpenBSD CVS Sync
360    - dugsong@cvs.openbsd.org 2001/11/11 18:47:10
361      [auth-krb5.c]
362      fix krb5 authorization check. found by <jhawk@MIT.EDU>. from 
363      art@, deraadt@ ok
364    - markus@cvs.openbsd.org  2001/11/12 11:17:07
365      [servconf.c]
366      enable authorized_keys2 again. tested by fries@
367    - markus@cvs.openbsd.org  2001/11/13 02:03:57
368      [version.h]
369      enter 3.0.1
370  - (djm) Bump RPM package versions
371
372 20011112
373  - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
374  - (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com>
375  - OpenBSD CVS Sync
376    - markus@cvs.openbsd.org 2001/10/24 08:41:41
377      [sshd.c]
378      mention remote port in debug message
379    - markus@cvs.openbsd.org 2001/10/24 08:41:20
380      [ssh.c]
381      remove unused
382    - markus@cvs.openbsd.org 2001/10/24 08:51:35
383      [clientloop.c ssh.c]
384      ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@
385    - markus@cvs.openbsd.org 2001/10/24 19:57:40
386      [clientloop.c]
387      make ~& (backgrounding) work again for proto v1; add support ~& for v2, too
388    - markus@cvs.openbsd.org 2001/10/25 21:14:32
389      [ssh-keygen.1 ssh-keygen.c]
390      better docu for fingerprinting, ok deraadt@
391    - markus@cvs.openbsd.org 2001/10/29 19:27:15
392      [sshconnect2.c]
393      hostbased: check for client hostkey before building chost
394    - markus@cvs.openbsd.org 2001/10/30 20:29:09
395      [ssh.1]
396      ssh.1
397    - markus@cvs.openbsd.org 2001/11/07 16:03:17
398      [packet.c packet.h sshconnect2.c]
399      pad using the padding field from the ssh2 packet instead of sending
400      extra ignore messages. tested against several other ssh servers.
401    - markus@cvs.openbsd.org 2001/11/07 21:40:21
402      [ssh-rsa.c]
403      ssh_rsa_sign/verify: SSH_BUG_SIGBLOB not supported
404    - markus@cvs.openbsd.org 2001/11/07 22:10:28
405      [ssh-dss.c ssh-rsa.c]
406      missing free and sync dss/rsa code.
407    - markus@cvs.openbsd.org 2001/11/07 22:12:01
408      [sshd.8]
409      s/Keepalive/KeepAlive/; from openbsd@davidkrause.com
410    - markus@cvs.openbsd.org 2001/11/07 22:41:51
411      [auth2.c auth-rh-rsa.c]
412      unused includes
413    - markus@cvs.openbsd.org 2001/11/07 22:53:21
414      [channels.h]
415      crank c->path to 256 so they can hold a full hostname; dwd@bell-labs.com
416    - markus@cvs.openbsd.org 2001/11/08 10:51:08
417      [readpass.c]
418      don't strdup too much data; from gotoh@taiyo.co.jp; ok millert.
419    - markus@cvs.openbsd.org 2001/11/08 17:49:53
420      [ssh.1]
421      mention setuid root requirements; noted by cnorris@csc.UVic.ca; ok stevesk@
422    - markus@cvs.openbsd.org 2001/11/08 20:02:24
423      [auth.c]
424      don't print ROOT in CAPS for the authentication messages, i.e.
425         Accepted publickey for ROOT from 127.0.0.1 port 42734 ssh2
426      becomes
427         Accepted publickey for root from 127.0.0.1 port 42734 ssh2
428    - markus@cvs.openbsd.org 2001/11/09 18:59:23
429      [clientloop.c serverloop.c]
430      don't memset too much memory, ok millert@
431      original patch from jlk@kamens.brookline.ma.us via nalin@redhat.com
432    - markus@cvs.openbsd.org 2001/11/10 13:19:45
433      [sshd.c]
434      cleanup libwrap support (remove bogus comment, bogus close(), add 
435      debug, etc).
436    - markus@cvs.openbsd.org 2001/11/10 13:22:42
437      [ssh-rsa.c]
438      KNF (unexpand)
439    - markus@cvs.openbsd.org 2001/11/10 13:37:20
440      [packet.c]
441      remove extra debug()
442    - markus@cvs.openbsd.org 2001/11/11 13:02:31
443      [servconf.c]
444      make AuthorizedKeysFile2 fallback to AuthorizedKeysFile if 
445      AuthorizedKeysFile is specified.
446  - (djm) Reorder portable-specific server options so that they come first. 
447    This should help reduce diff collisions for new server options (as they
448    will appear at the end)
449
450 20011109
451  - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
452    if permit_empty_passwd == 0 so null password check cannot be bypassed.
453    jayaraj@amritapuri.com OpenBSD bug 2168
454    - markus@cvs.openbsd.org 2001/11/09 19:08:35
455      [sshd.c]
456      remove extra trailing dot from log message; pilot@naughty.monkey.org
457
458 20011103
459  - (tim) [ contrib/caldera/openssh.spec contrib/caldera/sshd.init] Updates 
460    from Raymund Will <ray@caldera.de>
461    [acconfig.h configure.in] Clean up login checks.
462    Problem reported by Jim Knoble <jmknoble@pobox.com>
463
464 20011101
465  - (djm) Compat define for OpenSSL < 0.9.6 (No OPENSSL_free)
466
467 20011031
468  - (djm) Unsmoke drugs: config files should be noreplace.
469
470 20011030
471  - (djm) Redhat RPM spec: remove noreplace from config files, allow IPv6 
472    by default (can force IPv4 using --define "noipv6 1")
473
474 20011029
475  - (tim) [TODO defines.h loginrec.c] Change the references to configure.in
476    to configure.ac
477
478 20011028
479  - (djm) Avoid bug in Solaris PAM libs
480  - (djm) Disconnect if no tty and PAM reports password expired
481  - (djm) Fix for PAM password changes being echoed (from stevesk)
482  - (stevesk) Fix compile problem with PAM password change fix
483  - (stevesk) README: zlib location is http://www.gzip.org/zlib/
484
485 20011027
486  - (tim) [configure.ac] Fixes for ReliantUNIX (don't use libucb)
487    Patch by Robert Dahlem <Robert.Dahlem@siemens.com>
488
489 20011026
490  - (bal) Set the correct current time in login_utmp_only().  Patch by
491    Wayne Davison <wayned@users.sourceforge.net>
492  - (tim) [scard/Makefile.in] Fix install: when building outside of source
493          tree and using --src=/full_path/to/openssh
494          Patch by Mark D. Baushke <mdb@juniper.net>
495
496 20011025
497  - (bal) Use VDISABLE if _POSIX_VDISABLE is set in readpassphrase.c.  Patch
498    by todd@
499  - (tim) [configure.ac] Give path given in --with-xxx= for pcre,zlib, and
500          tcp-wrappers precedence over system libraries and includes.
501          Report from Dave Dykstra <dwd@bell-labs.com>
502
503 20011024
504  - (bal) Should be 3.0p1 not 3.0p2.  Corrected version.h already.
505  - (tim) configure.in -> configure.ac
506
507 20011023
508  - (bal) Updated version to 3.0p1 in preparing for release.
509  - (bal) Added 'PAM_TTY_KLUDGE' to Solaris platform.
510  - (tim) [configure.in] Fix test for broken dirname. Based on patch from
511          Dave Dykstra <dwd@bell-labs.com>. Remove un-needed test for zlib.h.
512          [contrib/caldera/openssh.spec, contrib/redhat/openssh.spec,
513          contrib/suse/openssh.spec] Update version to match version.h
514
515 20011022
516  - (djm) Fix fd leak in loginrec.c (ro fd to lastlog was left open).
517    Report from Michal Zalewski <lcamtuf@coredump.cx>
518
519 20011021
520  - (tim) [configure.in] Clean up library testing. Add optional PATH to
521          --with-pcre, --with-zlib, and --with-tcp-wrappers. Based on
522          patch by albert chin (china@thewrittenword.com)
523          Re-arange AC_CHECK_HEADERS and AC_CHECK_FUNCS for eaiser reading
524          of patches to configure.in. Replace obsolete AC_STRUCT_ST_BLKSIZE
525          with AC_CHECK_MEMBERS. Add test for broken dirname() on
526          Solaris 2.5.1 by Dan Astoorian <djast@cs.toronto.edu>
527          [acconfig.h aclocal.m4 defines.h configure.in] Better socklen_t test.
528          patch by albert chin (china@thewrittenword.com)
529          [scp.c] Replace obsolete HAVE_ST_BLKSIZE with
530          HAVE_STRUCT_STAT_ST_BLKSIZE.
531          [Makefile.in] When running make in top level, always do make
532          in openbsd-compat. patch by Dave Dykstra <dwd@bell-labs.com>
533
534 20011019
535  - (bal) Fixed up init.d symlink issue and piddir stuff.  Patches by
536    Zoran Milojevic <Zoran.Milojevic@SS8.com> and j.petersen@msh.de 
537
538 20011012
539  - (djm) OpenBSD CVS Sync
540    - markus@cvs.openbsd.org 2001/10/10 22:18:47
541      [channels.c channels.h clientloop.c nchan.c serverloop.c]
542      [session.c session.h]
543      try to keep channels open until an exit-status message is sent.
544      don't kill the login shells if the shells stdin/out/err is closed.
545      this should now work:
546      ssh -2n localhost 'exec > /dev/null 2>&1; sleep 10; exit 5'; echo ?
547    - markus@cvs.openbsd.org 2001/10/11 13:45:21
548      [session.c]
549      delay detach of session if a channel gets closed but the child is 
550      still alive.  however, release pty, since the fd's to the child are 
551      already closed.
552    - markus@cvs.openbsd.org 2001/10/11 15:24:00
553      [clientloop.c]
554      clear select masks if we return before calling select().
555  - (djm) "make veryclean" fix from Tom Holroyd <tomh@po.crl.go.jp>
556  - (djm) Clean some autoconf-2.52 junk when doing "make distclean"
557  - (djm) Cleanup sshpty.c a little
558  - (bal) First wave of contrib/solaris/ package upgrades.  Still more
559    work needs to be done, but it is a 190% better then the stuff we
560    had before!
561  - (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
562    set right.
563
564 20011010
565  - (djm) OpenBSD CVS Sync
566    - markus@cvs.openbsd.org 2001/10/04 14:34:16
567      [key.c]
568      call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com
569    - markus@cvs.openbsd.org 2001/10/04 15:05:40
570      [channels.c serverloop.c]
571      comment out bogus conditions for selecting on connection_in
572    - markus@cvs.openbsd.org 2001/10/04 15:12:37
573      [serverloop.c]
574      client_alive_check cleanup
575    - markus@cvs.openbsd.org 2001/10/06 00:14:50
576      [sshconnect.c]
577      remove unused argument
578    - markus@cvs.openbsd.org 2001/10/06 00:36:42
579      [session.c]
580      fix typo in error message, sync with do_exec_nopty
581    - markus@cvs.openbsd.org 2001/10/06 11:18:19
582      [sshconnect1.c sshconnect2.c sshconnect.c]
583      unify hostkey check error messages, simplify prompt.
584    - markus@cvs.openbsd.org 2001/10/07 10:29:52
585      [authfile.c]
586      grammer; Matthew_Clarke@mindlink.bc.ca
587    - markus@cvs.openbsd.org 2001/10/07 17:49:40
588      [channels.c channels.h]
589      avoid possible FD_ISSET overflow for channels established
590      during channnel_after_select() (used for dynamic channels).
591    - markus@cvs.openbsd.org 2001/10/08 11:48:57
592      [channels.c]
593      better debug
594    - markus@cvs.openbsd.org 2001/10/08 16:15:47
595      [sshconnect.c]
596      use correct family for -b option
597    - markus@cvs.openbsd.org 2001/10/08 19:05:05
598      [ssh.c sshconnect.c sshconnect.h ssh-keyscan.c]
599      some more IPv4or6 cleanup
600    - markus@cvs.openbsd.org 2001/10/09 10:12:08
601      [session.c]
602      chdir $HOME after krb_afslog(); from bbense@networking.stanford.edu
603    - markus@cvs.openbsd.org 2001/10/09 19:32:49
604      [session.c]
605      stat subsystem command before calling do_exec, and return error to client.
606    - markus@cvs.openbsd.org 2001/10/09 19:51:18
607      [serverloop.c]
608      close all channels if the connection to the remote host has been closed,
609      should fix sshd's hanging with WCHAN==wait
610    - markus@cvs.openbsd.org 2001/10/09 21:59:41
611      [channels.c channels.h serverloop.c session.c session.h]
612      simplify session close: no more delayed session_close, no more 
613      blocking wait() calls.
614  - (bal) removed two unsed headers in openbsd-compat/bsd-misc.c 
615  - (bal) seed_init() and seed_rng() required in ssh-keyscan.c
616
617 20011007
618  - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
619    Prompted by Matthew Vernon <matthew@sel.cam.ac.uk> 
620
621 20011005
622  - (bal) AES works under Cray, no more hack. 
623
624 20011004
625  - (bal) nchan2.ms resync.  BSD License applied.
626
627 20011003
628  - (bal) CVS ID fix up in version.h
629  - (bal) OpenBSD CVS Sync:
630    - markus@cvs.openbsd.org 2001/09/27 11:58:16
631      [compress.c]
632      mem leak; chombier@mac.com
633    - markus@cvs.openbsd.org 2001/09/27 11:59:37
634      [packet.c]
635      missing called=1; chombier@mac.com
636    - markus@cvs.openbsd.org 2001/09/27 15:31:17
637      [auth2.c auth2-chall.c sshconnect1.c]
638      typos; from solar
639    - camield@cvs.openbsd.org 2001/09/27 17:53:24
640      [sshd.8]
641      don't talk about compile-time options
642      ok markus@
643    - djm@cvs.openbsd.org 2001/09/28 12:07:09
644      [ssh-keygen.c]
645      bzero private key after loading to smartcard; ok markus@
646    - markus@cvs.openbsd.org 2001/09/28 15:46:29
647      [ssh.c]
648      bug: read user config first; report kaukasoi@elektroni.ee.tut.fi
649    - markus@cvs.openbsd.org 2001/10/01 08:06:28
650      [scp.c]
651      skip filenames containing \n; report jdamery@chiark.greenend.org.uk
652      and matthew@debian.org
653    - markus@cvs.openbsd.org 2001/10/01 21:38:53
654      [channels.c channels.h ssh.c sshd.c]
655      remove ugliness; vp@drexel.edu via angelos
656    - markus@cvs.openbsd.org 2001/10/01 21:51:16
657      [readconf.c readconf.h ssh.1 sshconnect.c]
658      add NoHostAuthenticationForLocalhost; note that the hostkey is
659      now check for localhost, too.
660    - djm@cvs.openbsd.org 2001/10/02 08:38:50
661      [ssh-add.c]
662      return non-zero exit code on error; ok markus@
663    - stevesk@cvs.openbsd.org 2001/10/02 22:56:09
664      [sshd.c]
665      #include "channels.h" for channel_set_af()
666    - markus@cvs.openbsd.org 2001/10/03 10:01:20
667      [auth.c]
668      use realpath() for homedir, too. from jinmei@isl.rdc.toshiba.co.jp
669
670 20011001
671  - (stevesk) loginrec.c: fix type conversion problems exposed when using
672    64-bit off_t.
673         
674 20010929
675  - (bal) move reading 'config.h' up higher.  Patch by albert chin
676    <china@thewrittenword.com)
677
678 20010928
679  - (djm) OpenBSD CVS sync:
680    - djm@cvs.openbsd.org 2001/09/28 09:49:31
681      [scard.c]
682      Fix segv when smartcard communication error occurs during key load. 
683      ok markus@
684  - (djm) Update spec files for new x11-askpass
685
686 20010927
687  - (stevesk) session.c: declare do_pre_login() before use
688    wayned@users.sourceforge.net
689
690 20010925
691  - (djm) Pull in auth-krb5.c from OpenBSD CVS. NB. it is not currently used.
692  - (djm) Sync $sysconfdir/moduli
693  - (djm) Add AC_SYS_LARGEFILE configure test
694  - (djm) Avoid bad and unportable sprintf usage in compat code
695
696 20010923
697  - (bal) updated ssh.c to mirror minor getopts 'extern int' formating done
698    by stevesk@
699  - (bal) Removed 'extern int optopt;' since it is dead wood.
700  - (bal) Updated all *.specs for 2.9.9p1 and updated version.h
701
702 20010923
703  - (bal) OpenBSD CVS Sync
704    - markus@cvs.openbsd.org 2001/09/23 11:09:13
705      [authfile.c]
706      relax permission check for private key files.
707    - markus@cvs.openbsd.org 2001/09/23 09:58:13
708      [LICENCE]
709      new rijndael implementation
710
711 20010920
712  - (tim) [scard/Makefile.in] Don't strip the Java binary
713  - (stevesk) sun_len, SUN_LEN() configure stuff no longer required
714  - (bal) OpenBSD CVS Sync
715    - stevesk@cvs.openbsd.org 2001/09/20 00:15:54
716      [sshd.8]
717      fix ClientAliveCountMax
718    - markus@cvs.openbsd.org 2001/09/20 13:46:48
719      [auth2.c]
720      key_read returns now -1 or 1
721    - markus@cvs.openbsd.org 2001/09/20 13:50:40
722      [compat.c compat.h ssh.c]
723      bug compat: request a dummy channel for -N (no shell) sessions + 
724      cleanup; vinschen@redhat.com
725    - mouring@cvs.openbsd.org 2001/09/20 20:57:51
726      [sshd_config]
727      CheckMail removed.  OKed stevesk@
728
729 20010919
730  - (bal) OpenBSD Sync
731    - markus@cvs.openbsd.org 2001/09/19 10:08:51
732      [sshd.8]
733      command=xxx applies to subsystem now, too
734    - markus@cvs.openbsd.org 2001/09/19 13:23:29
735      [key.c]
736      key_read() now returns -1 on type mismatch, too
737    - stevesk@cvs.openbsd.org 2001/09/19 19:24:19
738      [readconf.c readconf.h scp.c sftp.c ssh.1]
739      add ClearAllForwardings ssh option and set it in scp and sftp; ok 
740      markus@
741    - stevesk@cvs.openbsd.org 2001/09/19 19:35:30
742      [authfd.c]
743      use sizeof addr vs. SUN_LEN(addr) for sockaddr_un.  Stevens 
744      blesses this and we do it this way elsewhere.  this helps in 
745      portable because not all systems have SUN_LEN() and 
746      sockaddr_un.sun_len.  ok markus@
747    - stevesk@cvs.openbsd.org 2001/09/19 21:04:53
748      [sshd.8]
749      missing -t in usage
750    - stevesk@cvs.openbsd.org 2001/09/19 21:41:57
751      [sshd.8]
752      don't advertise -V in usage; ok markus@
753  - (bal) openbsd-compat/vis.[ch] is dead wood.  Removed.
754
755 20010918
756  - (djm) Configure support for smartcards. Based on Ben's work.
757  - (djm) Revert setgroups call, it causes problems on OS-X
758  - (djm) Avoid warning on BSDgetopt
759  - (djm) More makefile infrastructre for smartcard support, also based
760    on Ben's work
761  - (djm) Specify --datadir in RPM spec files so smartcard applet gets
762     put somewhere sane. Add Ssh.bin to manifest.
763  - (djm) Make smartcard support conditional in Redhat RPM spec
764  - (bal) LICENCE update.  Has not been done in a while.
765  - (stevesk) nchan.c: we use X/Open Sockets on HP-UX now so shutdown(2)
766    returns ENOTCONN vs. EINVAL for socket not connected; remove EINVAL
767    check. ok Lutz Jaenicke
768  - (bal) OpenBSD CVS Sync
769    - stevesk@cvs.openbsd.org 2001/09/17 17:57:57
770      [scp.1 scp.c sftp.1 sftp.c]
771      add -Fssh_config option; ok markus@
772    - stevesk@cvs.openbsd.org 2001/09/17 19:27:15
773      [kexdh.c kexgex.c key.c key.h ssh-dss.c ssh-keygen.c ssh-rsa.c]
774      u_char*/char* cleanup; ok markus
775    - markus@cvs.openbsd.org 2001/09/17 20:22:14
776      [scard.c]
777      never keep a connection to the smartcard open.
778      allows ssh-keygen -D U while the agent is running; report from 
779      jakob@
780    - stevesk@cvs.openbsd.org 2001/09/17 20:38:09
781      [sftp.1 sftp.c]
782      cleanup and document -1, -s and -S; ok markus@
783    - markus@cvs.openbsd.org 2001/09/17 20:50:22
784      [key.c ssh-keygen.c]
785      better error handling if you try to export a bad key to ssh.com
786    - markus@cvs.openbsd.org 2001/09/17 20:52:47
787      [channels.c channels.h clientloop.c]
788      try to fix agent-forwarding-backconnection-bug, as seen on HPUX, 
789      for example; with Lutz.Jaenicke@aet.TU-Cottbus.DE,
790    - markus@cvs.openbsd.org 2001/09/17 21:04:02
791      [channels.c serverloop.c]
792      don't send fake dummy packets on CR (\r)
793      bugreport from yyua@cs.sfu.ca via solar@@openwall.com
794    - markus@cvs.openbsd.org 2001/09/17 21:09:47
795      [compat.c]
796      more versions suffering the SSH_BUG_DEBUG bug;
797      3.0.x reported by dbutts@maddog.storability.com
798    - stevesk@cvs.openbsd.org 2001/09/17 23:56:07
799      [scp.1]
800      missing -B in usage string
801
802 20010917
803  - (djm) x11-ssh-askpass-1.2.4 in RPM spec, revert workarounds
804  - (tim) [includes.h openbsd-compat/getopt.c openbsd-compat/getopt.h]
805          rename getopt() to BSDgetopt() to keep form conflicting with
806          system getopt().
807          [Makefile.in configure.in] disable filepriv until I can add
808          missing procpriv calls.
809
810 20010916
811  - (djm) Workaround XFree breakage in RPM spec file
812  - (bal) OpenBSD CVS Sync
813     - markus@cvs.openbsd.org 2001/09/16 14:46:54
814       [session.c]
815       calls krb_afslog() after setting $HOME; mattiasa@e.kth.se; fixes
816       pr 1943b
817
818 20010915
819  - (djm) Make do_pre_login static to avoid prototype #ifdef hell
820  - (djm) Sync scard/ stuff
821  - (djm) Redhat spec file cleanups from Pekka Savola <pekkas@netcore.fi> and
822    Redhat
823  - (djm) Redhat initscript config sanity checking from Pekka Savola 
824    <pekkas@netcore.fi>
825  - (djm) Clear supplemental groups at sshd start to prevent them from 
826    being propogated to random PAM modules. Based on patch from Redhat via
827    Pekka Savola <pekkas@netcore.fi>
828  - (djm) Make sure rijndael.c picks config.h
829  - (djm) Ensure that u_char gets defined
830
831 20010914
832  - (bal) OpenBSD CVS Sync
833    - markus@cvs.openbsd.org 2001/09/13
834      [rijndael.c rijndael.h]
835      missing $OpenBSD
836    - markus@cvs.openbsd.org 2001/09/14
837      [session.c]
838      command=xxx overwrites subsystems, too
839    - markus@cvs.openbsd.org 2001/09/14
840      [sshd.c]
841      typo
842
843 20010913
844  - (bal) OpenBSD CVS Sync
845    - markus@cvs.openbsd.org 2001/08/23 11:31:59
846      [cipher.c cipher.h]
847      switch to the optimised AES reference code from
848      http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip
849
850 20010912
851  - (bal) OpenBSD CVS Sync
852    - jakob@cvs.openbsd.org 2001/08/16 19:18:34
853      [servconf.c servconf.h session.c sshd.8]
854      deprecate CheckMail. ok markus@
855    - stevesk@cvs.openbsd.org 2001/08/16 20:14:57
856      [ssh.1 sshd.8]
857      document case sensitivity for ssh, sshd and key file
858      options and arguments; ok markus@
859    - stevesk@cvs.openbsd.org 2001/08/17 18:59:47
860      [servconf.h]
861      typo in comment
862    - stevesk@cvs.openbsd.org 2001/08/21 21:47:42
863      [ssh.1 sshd.8]
864      minor typos and cleanup
865    - stevesk@cvs.openbsd.org 2001/08/22 16:21:21
866      [ssh.1]
867      hostname not optional; ok markus@
868    - stevesk@cvs.openbsd.org 2001/08/22 16:30:02
869      [sshd.8]
870      no rexd; ok markus@
871    - stevesk@cvs.openbsd.org 2001/08/22 17:45:16
872      [ssh.1]
873      document cipher des for protocol 1; ok deraadt@
874    - camield@cvs.openbsd.org 2001/08/23 17:59:31
875      [sshd.c]
876      end request with 0, not NULL
877      ok markus@
878    - stevesk@cvs.openbsd.org 2001/08/23 18:02:48
879      [ssh-agent.1]
880      fix usage; ok markus@
881    - stevesk@cvs.openbsd.org 2001/08/23 18:08:59
882      [ssh-add.1 ssh-keyscan.1]
883      minor cleanup
884    - danh@cvs.openbsd.org 2001/08/27 22:02:13
885      [ssh-keyscan.c]
886      fix memory fault if non-existent filename is given to the -f option
887      ok markus@
888    - markus@cvs.openbsd.org 2001/08/28 09:51:26
889      [readconf.c]
890      don't set DynamicForward unless Host matches
891    - markus@cvs.openbsd.org 2001/08/28 15:39:48
892      [ssh.1 ssh.c]
893      allow: ssh -F configfile host
894    - markus@cvs.openbsd.org 2001/08/29 20:44:03
895      [scp.c]
896      clear the malloc'd buffer, otherwise source() will leak malloc'd 
897      memory; ok theo@
898    - stevesk@cvs.openbsd.org 2001/08/29 23:02:21
899      [sshd.8]
900      add text about -u0 preventing DNS requests; ok markus@
901    - stevesk@cvs.openbsd.org 2001/08/29 23:13:10
902      [ssh.1 ssh.c]
903      document -D and DynamicForward; ok markus@
904    - stevesk@cvs.openbsd.org 2001/08/29 23:27:23
905      [ssh.c]
906      validate ports for -L/-R; ok markus@
907    - stevesk@cvs.openbsd.org 2001/08/29 23:39:40
908      [ssh.1 sshd.8]
909      additional documentation for GatewayPorts; ok markus@
910    - naddy@cvs.openbsd.org 2001/08/30 15:42:36
911      [ssh.1]
912      add -D to synopsis line; ok markus@
913    - stevesk@cvs.openbsd.org 2001/08/30 16:04:35
914      [readconf.c ssh.1]
915      validate ports for LocalForward/RemoteForward.
916      add host/port alternative syntax for IPv6 (like -L/-R).
917      ok markus@
918    - stevesk@cvs.openbsd.org 2001/08/30 20:36:34
919      [auth-options.c sshd.8]
920      validate ports for permitopen key file option. add host/port
921      alternative syntax for IPv6. ok markus@
922    - markus@cvs.openbsd.org 2001/08/30 22:22:32
923      [ssh-keyscan.c]
924      do not pass pointers to longjmp; fix from wayne@blorf.net
925    - markus@cvs.openbsd.org 2001/08/31 11:46:39
926      [sshconnect2.c]
927      disable kbd-interactive if we don't get SSH2_MSG_USERAUTH_INFO_REQUEST
928      messages
929    - stevesk@cvs.openbsd.org 2001/09/03 20:58:33
930      [readconf.c readconf.h ssh.c]
931      fatal() for nonexistent -Fssh_config. ok markus@
932    - deraadt@cvs.openbsd.org 2001/09/05 06:23:07
933      [scp.1 sftp.1 ssh.1 ssh-agent.1 sshd.8 ssh-keygen.1 ssh-keyscan.1]
934      avoid first person in manual pages
935    - stevesk@cvs.openbsd.org 2001/09/12 18:18:25
936      [scp.c]
937      don't forward agent for non third-party copies; ok markus@
938
939 20010815
940  - (bal) Fixed stray code in readconf.c that went in by mistake.
941  - OpenBSD CVS Sync
942    - markus@cvs.openbsd.org 2001/08/07 10:37:46
943      [authfd.c authfd.h]
944      extended failure messages from galb@vandyke.com
945    - deraadt@cvs.openbsd.org 2001/08/08 07:16:58
946      [scp.1]
947      when describing the -o option, give -o Protocol=1 as the specific example
948      since we are SICK AND TIRED of clueless people who cannot have difficulty
949      thinking on their own.
950    - markus@cvs.openbsd.org 2001/08/08 18:20:15
951      [uidswap.c]
952      permanently_set_uid is a noop if user is not privilegued;
953      fixes bug on solaris; from sbi@uchicago.edu
954    - markus@cvs.openbsd.org 2001/08/08 21:34:19
955      [uidswap.c]
956      undo last change; does not work for sshd
957    - jakob@cvs.openbsd.org 2001/08/11 22:51:27
958      [ssh.c tildexpand.c]
959      fix more paths beginning with "//"; <bradshaw@staff.crosswalk.com>. 
960      ok markus@
961    - stevesk@cvs.openbsd.org 2001/08/13 23:38:54
962      [scp.c]
963      don't need main prototype (also sync with rcp); ok markus@
964    - markus@cvs.openbsd.org 2001/08/14 09:23:02
965      [sftp.1 sftp-int.c]
966      "bye"; hk63a@netscape.net
967    - stevesk@cvs.openbsd.org 2001/08/14 17:54:29
968      [scp.1 sftp.1 ssh.1]
969      consistent documentation and example of ``-o ssh_option'' for sftp and
970      scp; document keyword=argument for ssh.
971  - (bal) QNX resync.   OK tim@
972
973 20010814
974  - (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup
975    for some #ifdef _CRAY code; ok wendyp@cray.com
976  - (stevesk) sshpty.c: return 0 on error in cray pty code;
977    ok wendyp@cray.com
978  - (stevesk) bsd-cray.c: utmp strings are not C strings
979  - (stevesk) bsd-cray.c: more cleanup; ok wendyp@cray.com
980
981 20010812
982  - (djm) Fix detection of long long int support. Based on patch from 
983    Michael Stone <mstone@cs.loyola.edu>. ok stevesk, tim
984
985 20010808
986  - (bal) Minor correction to inet_ntop.h.  _BSD_RRESVPORT_H should be
987    _BSD_INET_NTOP_H.  Pointed out by Mark Miller <markm@swoon.net> 
988
989 20010807
990  - (tim) [configure.in sshconnect.c openbsd-compat/Makefile.in
991          openbsd-compat/openbsd-compat.h ] Add inet_ntop.c inet_ntop.h back
992          in. Needed for sshconnect.c
993          [sshconnect.c] fix INET6_ADDRSTRLEN for non IPv6 machines
994          [configure.in] make tests with missing libraries fail
995          patch by Wendy Palm <wendyp@cray.com>
996          Added openbsd-compat/bsd-cray.h. Selective patches from
997          William L. Jones <jones@mail.utexas.edu> 
998
999 20010806
1000  - OpenBSD CVS Sync
1001    - markus@cvs.openbsd.org 2001/07/22 21:32:27
1002      [sshpty.c]
1003      update comment
1004    - pvalchev@cvs.openbsd.org 2001/07/22 21:32:42
1005      [ssh.1]
1006      There is no option "Compress", point to "Compression" instead; ok 
1007      markus
1008    - markus@cvs.openbsd.org 2001/07/22 22:04:19
1009      [readconf.c ssh.1]
1010      enable challenge-response auth by default; ok millert@
1011    - markus@cvs.openbsd.org 2001/07/22 22:24:16
1012      [sshd.8]
1013      Xr login.conf
1014    - markus@cvs.openbsd.org 2001/07/23 09:06:28
1015      [sshconnect2.c]
1016      reorder default sequence of userauth methods to match ssh behaviour:
1017      hostbased,publickey,keyboard-interactive,password
1018    - markus@cvs.openbsd.org 2001/07/23 12:47:05
1019      [ssh.1]
1020      sync PreferredAuthentications
1021    - aaron@cvs.openbsd.org 2001/07/23 14:14:18
1022      [ssh-keygen.1]
1023      Fix typo.
1024    - stevesk@cvs.openbsd.org 2001/07/23 18:14:58
1025      [auth2.c auth-rsa.c]
1026      use %lu; ok markus@
1027    - stevesk@cvs.openbsd.org 2001/07/23 18:21:46
1028      [xmalloc.c]
1029      no zero size xstrdup() error; ok markus@
1030    - markus@cvs.openbsd.org 2001/07/25 11:59:35
1031      [scard.c]
1032      typo in comment
1033    - markus@cvs.openbsd.org 2001/07/25 14:35:18
1034      [readconf.c ssh.1 ssh.c sshconnect.c]
1035      cleanup connect(); connection_attempts 4 -> 1; from 
1036      eivind@freebsd.org
1037    - stevesk@cvs.openbsd.org 2001/07/26 17:18:22
1038      [sshd.8 sshd.c]
1039      add -t option to test configuration file and keys; pekkas@netcore.fi
1040      ok markus@
1041    - rees@cvs.openbsd.org 2001/07/26 20:04:27
1042      [scard.c ssh-keygen.c]
1043      Inquire Cyberflex class for 0xf0 cards
1044      change aid to conform to 7816-5
1045      remove gratuitous fid selects
1046    - millert@cvs.openbsd.org 2001/07/27 14:50:45
1047      [ssh.c]
1048      If smart card support is compiled in and a smart card is being used
1049      for authentication, make it the first method used.  markus@ OK
1050    - deraadt@cvs.openbsd.org 2001/07/27 17:26:16
1051      [scp.c]
1052      shorten lines
1053    - markus@cvs.openbsd.org 2001/07/28 09:21:15
1054      [sshd.8]
1055      cleanup some RSA vs DSA vs SSH1 vs SSH2 notes
1056    - mouring@cvs.openbsd.org 2001/07/29 17:02:46
1057      [scp.1]
1058      Clarified -o option in scp.1  OKed by Markus@
1059    - jakob@cvs.openbsd.org 2001/07/30 16:06:07
1060      [scard.c scard.h]
1061      better errorcodes from sc_*; ok markus@
1062    - stevesk@cvs.openbsd.org 2001/07/30 16:23:30
1063      [rijndael.c rijndael.h]
1064      new BSD-style license:
1065      Brian Gladman <brg@gladman.plus.com>:
1066      >I have updated my code at:
1067      >http://fp.gladman.plus.com/cryptography_technology/rijndael/index.htm
1068      >with a copyright notice as follows:
1069      >[...]
1070      >I am not sure which version of my old code you are using but I am
1071      >happy for the notice above to be substituted for my existing copyright
1072      >intent if this meets your purpose.
1073    - jakob@cvs.openbsd.org 2001/07/31 08:41:10
1074      [scard.c]
1075      do not complain about missing smartcards. ok markus@
1076    - jakob@cvs.openbsd.org 2001/07/31 09:28:44
1077      [readconf.c readconf.h ssh.1 ssh.c]
1078      add 'SmartcardDevice' client option to specify which smartcard device 
1079      is used to access a smartcard used for storing the user's private RSA 
1080      key. ok markus@.
1081    - jakob@cvs.openbsd.org 2001/07/31 12:42:50
1082      [sftp-int.c sftp-server.c]
1083      avoid paths beginning with "//"; <vinschen@redhat.com>
1084      ok markus@
1085    - jakob@cvs.openbsd.org 2001/07/31 12:53:34
1086      [scard.c]
1087      close smartcard connection if card is missing
1088    - markus@cvs.openbsd.org 2001/08/01 22:03:33
1089      [authfd.c authfd.h readconf.c readconf.h scard.c scard.h ssh-add.c 
1090       ssh-agent.c ssh.c]
1091      use strings instead of ints for smartcard reader ids
1092    - markus@cvs.openbsd.org 2001/08/01 22:16:45
1093      [ssh.1 sshd.8]
1094      refer to current ietf drafts for protocol v2
1095    - markus@cvs.openbsd.org 2001/08/01 23:33:09
1096      [ssh-keygen.c]
1097      allow uploading RSA keys for non-default AUT0 (sha1 over passphrase 
1098      like sectok).
1099   - markus@cvs.openbsd.org 2001/08/01 23:38:45
1100      [scard.c ssh.c]
1101      support finish rsa keys.
1102      free public keys after login -> call finish -> close smartcard.
1103    - markus@cvs.openbsd.org 2001/08/02 00:10:17
1104      [ssh-keygen.c]
1105      add -D readerid option (download, i.e. print public RSA key to stdout).
1106      check for card present when uploading keys.
1107      use strings instead of ints for smartcard reader ids, too.
1108    - jakob@cvs.openbsd.org 2001/08/02 08:58:35
1109      [ssh-keygen.c]
1110      change -u (upload smartcard key) to -U. ok markus@
1111    - jakob@cvs.openbsd.org 2001/08/02 15:06:52
1112      [ssh-keygen.c]
1113      more verbose usage(). ok markus@
1114    - jakob@cvs.openbsd.org 2001/08/02 15:07:23
1115      [ssh-keygen.1]
1116      document smartcard upload/download. ok markus@
1117    - jakob@cvs.openbsd.org 2001/08/02 15:32:10
1118      [ssh.c]
1119      add smartcard to usage(). ok markus@
1120    - jakob@cvs.openbsd.org 2001/08/02 15:43:57
1121      [ssh-agent.c ssh.c ssh-keygen.c]
1122      add /* SMARTCARD */ to #else/#endif. ok markus@
1123   - jakob@cvs.openbsd.org 2001/08/02 16:14:05
1124      [scard.c ssh-agent.c ssh.c ssh-keygen.c]
1125      clean up some /* SMARTCARD */. ok markus@
1126    - mpech@cvs.openbsd.org 2001/08/02 18:37:35
1127      [ssh-keyscan.1]
1128      o) .Sh AUTHOR -> .Sh AUTHORS;
1129      o) .Sh EXAMPLE -> .Sh EXAMPLES;
1130      o) Delete .Sh OPTIONS. Text moved to .Sh DESCRIPTION;
1131  
1132      millert@ ok
1133    - jakob@cvs.openbsd.org 2001/08/03 10:31:19
1134      [ssh-add.1]
1135      document smartcard options. ok markus@
1136    - jakob@cvs.openbsd.org 2001/08/03 10:31:30
1137      [ssh-add.c ssh-agent.c ssh-keyscan.c]
1138      improve usage(). ok markus@
1139    - markus@cvs.openbsd.org 2001/08/05 23:18:20
1140      [ssh-keyscan.1 ssh-keyscan.c]
1141      ssh 2 support; from wayned@users.sourceforge.net
1142    - markus@cvs.openbsd.org 2001/08/05 23:29:58
1143      [ssh-keyscan.c]
1144      make -t dsa work with commercial servers, too
1145    - stevesk@cvs.openbsd.org 2001/08/06 19:47:05
1146      [scp.c]
1147      use alarm vs. setitimer for portable; ok markus@
1148  - (bal) ssh-keyscan double -lssh hack due to seed_rng().
1149  - (bal) Second around of UNICOS patches.  A few other things left. 
1150    Patches by William L. Jones <jones@mail.utexas.edu> 
1151
1152 20010803
1153  - (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
1154    a fast UltraSPARC.
1155
1156 20010726
1157  - (stevesk) use mysignal() in protocol 1 loop now that the SIGCHLD
1158    handler has converged.
1159
1160 20010725
1161  - (bal) Added 'install-nokeys' to Makefile to assist package builders.
1162
1163 20010724
1164  - (bal) 4711 not 04711 for ssh binary.
1165
1166 20010722
1167  - (bal) Starting the Unicossmk merger.  File merged TODO, configure.in,
1168          myproposal.h, ssh_prng_cmds.in, and openbsd-compat/Makefile.in.
1169          Added openbsd-compat/bsd-cray.c.  Rest will be merged after
1170          approval.  Selective patches from William L. Jones 
1171          <jones@mail.utexas.edu> 
1172  - OpenBSD CVS Sync
1173    - markus@cvs.openbsd.org 2001/07/18 21:10:43
1174      [sshpty.c]
1175      pr #1946, allow sshd if /dev is readonly
1176    - stevesk@cvs.openbsd.org 2001/07/18 21:40:40
1177      [ssh-agent.c]
1178      chdir("/") from bbraun@synack.net; ok markus@
1179    - stevesk@cvs.openbsd.org 2001/07/19 00:41:44
1180      [ssh.1]
1181      escape chars are below now
1182    - markus@cvs.openbsd.org 2001/07/20 14:46:11
1183      [ssh-agent.c]
1184      do not exit() from signal handlers; ok deraadt@
1185    - stevesk@cvs.openbsd.org 2001/07/20 18:41:51
1186      [ssh.1]
1187      "the" command line
1188
1189 20010719
1190  - (tim) [configure.in] put inet_aton back in AC_CHECK_FUNCS.
1191          report from Mark Miller <markm@swoon.net>
1192
1193 20010718
1194  - OpenBSD CVS Sync
1195    - stevesk@cvs.openbsd.org 2001/07/14 15:10:17
1196      [readpass.c sftp-client.c sftp-common.c sftp-glob.c]
1197      delete spurious #includes; ok deraadt@ markus@
1198    - markus@cvs.openbsd.org 2001/07/15 16:17:08
1199      [serverloop.c]
1200      schedule client alive for ssh2 only, greg@cheers.bungi.com
1201    - stevesk@cvs.openbsd.org 2001/07/15 16:57:21
1202      [ssh-agent.1]
1203      -d will not fork; ok markus@
1204    - stevesk@cvs.openbsd.org 2001/07/15 16:58:29
1205      [ssh-agent.c]
1206      typo in usage; ok markus@
1207    - markus@cvs.openbsd.org 2001/07/17 20:48:42
1208      [ssh-agent.c]
1209      update maxfd if maxfd is closed; report from jmcelroy@dtgnet.com
1210    - markus@cvs.openbsd.org 2001/07/17 21:04:58
1211      [channels.c channels.h clientloop.c nchan.c serverloop.c]
1212      keep track of both maxfd and the size of the malloc'ed fdsets.
1213      update maxfd if maxfd gets closed.
1214    - mouring@cvs.openbsd.org 2001/07/18 16:45:52
1215      [scp.c]
1216      Missing -o in scp usage()
1217  - (bal) Cleaned up trailing spaces in ChangeLog.
1218  - (bal) Allow sshd to switch user context without password for Cygwin.
1219          Patch by Corinna Vinschen <vinschen@redhat.com>
1220  - (bal) Updated cygwin README and ssh-host-config.  Patch by
1221          Corinna Vinschen <vinschen@redhat.com>
1222
1223 20010715
1224  - (bal) Set "BROKEN_GETADDRINFO" for darwin platform.  Reported by
1225    Josh Larios <jdlarios@cac.washington.edu>
1226  - (tim) put openssh/openbsd-compat/inet_aton.[ch] back in.
1227          needed by openbsd-compat/fake-getaddrinfo.c
1228
1229 20010714
1230  - (stevesk) change getopt() declaration
1231  - (stevesk) configure.in: use ll suffix for long long constant
1232    in snprintf() test
1233
1234 20010713
1235  - (djm) Enable /etc/nologin check on PAM systems, as some lack the
1236    pam_nologin module. Report from William Yodlowsky
1237    <bsd@openbsd.rutgers.edu>
1238  - (djm) Revert dirname fix, a better one is on its way.
1239  - OpenBSD CVS Sync
1240    - markus@cvs.openbsd.org 2001/07/04 22:47:19
1241      [ssh-agent.c]
1242      ignore SIGPIPE when debugging, too
1243    - markus@cvs.openbsd.org 2001/07/04 23:13:10
1244      [scard.c scard.h ssh-agent.c]
1245      handle card removal more gracefully, add sc_close() to scard.h
1246    - markus@cvs.openbsd.org 2001/07/04 23:39:07
1247      [ssh-agent.c]
1248      for smartcards remove both RSA1/2 keys
1249    - markus@cvs.openbsd.org 2001/07/04 23:49:27
1250      [ssh-agent.c]
1251      handle mutiple adds of the same smartcard key
1252    - espie@cvs.openbsd.org 2001/07/05 11:43:33
1253      [sftp-glob.c]
1254      Directly cast to the right type. Ok markus@
1255    - stevesk@cvs.openbsd.org 2001/07/05 20:32:47
1256      [sshconnect1.c]
1257      statement after label; ok dugsong@
1258    - stevesk@cvs.openbsd.org 2001/07/08 15:23:38
1259      [servconf.c]
1260      fix ``MaxStartups max''; ok markus@
1261    - fgsch@cvs.openbsd.org 2001/07/09 05:58:47
1262      [ssh.c]
1263      Use getopt(3); markus@ ok.
1264    - deraadt@cvs.openbsd.org 2001/07/09 07:04:53
1265      [session.c sftp-int.c]
1266      correct type on last arg to execl(); nordin@cse.ogi.edu
1267    - markus@cvs.openbsd.org 2001/07/10 21:49:12
1268      [readpass.c]
1269      don't panic if fork or pipe fail (just return an empty passwd).
1270    - itojun@cvs.openbsd.org 2001/07/11 00:24:53
1271      [servconf.c]
1272      make it compilable in all 4 combination of KRB4/KRB5 settings.
1273      dugsong ok
1274      XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and
1275      -I/usr/include/kerberosV?
1276    - markus@cvs.openbsd.org 2001/07/11 16:29:59
1277      [ssh.c]
1278      sort options string, fix -p, add -k
1279    - markus@cvs.openbsd.org 2001/07/11 18:26:15
1280      [auth.c]
1281      no need to call dirname(pw->pw_dir).
1282      note that dirname(3) modifies its argument on some systems.
1283  - (djm) Reorder Makefile.in so clean targets work a little better when
1284    run directly from Makefile.in
1285  - (djm) Pull in getopt(3) from OpenBSD libc for the optreset extension.
1286
1287 20010711
1288  - (djm) dirname(3) may modify its argument on glibc and other systems.
1289    Patch from markus@, spotted by Tom Holroyd <tomh@po.crl.go.jp>
1290
1291 20010704
1292  - OpenBSD CVS Sync
1293    - markus@cvs.openbsd.org 2001/06/25 08:25:41
1294      [channels.c channels.h cipher.c clientloop.c compat.c compat.h
1295       hostfile.c kex.c kex.h key.c key.h nchan.c packet.c serverloop.c
1296       session.c session.h sftp-server.c ssh-add.c ssh-agent.c uuencode.h]
1297      update copyright for 2001
1298    - markus@cvs.openbsd.org 2001/06/25 17:18:27
1299      [ssh-keygen.1]
1300      sshd(8) will never read the private keys, but ssh(1) does;
1301      hugh@mimosa.com
1302    - provos@cvs.openbsd.org 2001/06/25 17:54:47
1303      [auth.c auth.h auth-rsa.c]
1304      terminate secure_filename checking after checking homedir.  that way
1305      it works on AFS.  okay markus@
1306    - stevesk@cvs.openbsd.org 2001/06/25 20:26:37
1307      [auth2.c sshconnect2.c]
1308      prototype cleanup; ok markus@
1309    - markus@cvs.openbsd.org 2001/06/26 02:47:07
1310      [ssh-keygen.c]
1311      allow loading a private RSA key to a cyberflex card.
1312    - markus@cvs.openbsd.org 2001/06/26 04:07:06
1313      [ssh-agent.1 ssh-agent.c]
1314      add debug flag
1315    - markus@cvs.openbsd.org 2001/06/26 04:59:59
1316      [authfd.c authfd.h ssh-add.c]
1317      initial support for smartcards in the agent
1318    - markus@cvs.openbsd.org 2001/06/26 05:07:43
1319      [ssh-agent.c]
1320      update usage
1321    - markus@cvs.openbsd.org 2001/06/26 05:33:34
1322      [ssh-agent.c]
1323      more smartcard support.
1324    - mpech@cvs.openbsd.org 2001/06/26 05:48:07
1325      [sshd.8]
1326      remove unnecessary .Pp between .It;
1327      millert@ ok
1328    - markus@cvs.openbsd.org 2001/06/26 05:50:11
1329      [auth2.c]
1330      new interface for secure_filename()
1331    - itojun@cvs.openbsd.org 2001/06/26 06:32:58
1332      [atomicio.h authfd.h authfile.h auth.h auth-options.h bufaux.h
1333       buffer.h canohost.h channels.h cipher.h clientloop.h compat.h
1334       compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.h
1335       hostfile.h kex.h key.h log.h mac.h match.h misc.h mpaux.h packet.h
1336       radix.h readconf.h readpass.h rsa.h]
1337      prototype pedant.  not very creative...
1338      - () -> (void)
1339      - no variable names
1340    - itojun@cvs.openbsd.org 2001/06/26 06:33:07
1341      [servconf.h serverloop.h session.h sftp-client.h sftp-common.h
1342       sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h
1343       ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h]
1344      prototype pedant.  not very creative...
1345      - () -> (void)
1346      - no variable names
1347    - dugsong@cvs.openbsd.org 2001/06/26 16:15:25
1348      [auth1.c auth.h auth-krb4.c auth-passwd.c readconf.c readconf.h
1349       servconf.c servconf.h session.c sshconnect1.c sshd.c]
1350      Kerberos v5 support for SSH1, mostly from Assar Westerlund
1351      <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok
1352    - markus@cvs.openbsd.org 2001/06/26 17:25:34
1353      [ssh.1]
1354      document SSH_ASKPASS; fubob@MIT.EDU
1355    - markus@cvs.openbsd.org 2001/06/26 17:27:25
1356      [authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h
1357       canohost.h channels.h cipher.h clientloop.h compat.h compress.h
1358       crc32.h deattack.h dh.h dispatch.h groupaccess.c groupaccess.h
1359       hostfile.h kex.h key.h log.c log.h mac.h misc.c misc.h mpaux.h
1360       packet.h radix.h readconf.h readpass.h rsa.h servconf.h serverloop.h
1361       session.h sftp-common.c sftp-common.h sftp-glob.h sftp-int.h
1362       sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h sshtty.h
1363       tildexpand.h uidswap.h uuencode.h xmalloc.h]
1364      remove comments from .h, since they are cut&paste from the .c files
1365      and out of sync
1366    - dugsong@cvs.openbsd.org 2001/06/26 17:41:49
1367      [servconf.c]
1368      #include <kafs.h>
1369    - markus@cvs.openbsd.org 2001/06/26 20:14:11
1370      [key.c key.h ssh.c sshconnect1.c sshconnect2.c]
1371      add smartcard support to the client, too (now you can use both
1372      the agent and the client).
1373    - markus@cvs.openbsd.org 2001/06/27 02:12:54
1374      [serverloop.c serverloop.h session.c session.h]
1375      quick hack to make ssh2 work again.
1376    - markus@cvs.openbsd.org 2001/06/27 04:48:53
1377      [auth.c match.c sshd.8]
1378      tridge@samba.org
1379    - markus@cvs.openbsd.org 2001/06/27 05:35:42
1380      [ssh-keygen.c]
1381      use cyberflex_inq_class to inquire class.
1382    - markus@cvs.openbsd.org 2001/06/27 05:42:25
1383      [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
1384      s/generate_additional_parameters/rsa_generate_additional_parameters/
1385      http://www.humppa.com/
1386    - markus@cvs.openbsd.org 2001/06/27 06:26:36
1387      [ssh-add.c]
1388      convert to getopt(3)
1389    - stevesk@cvs.openbsd.org 2001/06/28 19:57:35
1390      [ssh-keygen.c]
1391      '\0' terminated data[] is ok; ok markus@
1392    - markus@cvs.openbsd.org 2001/06/29 07:06:34
1393      [ssh-keygen.c]
1394      new error handling for cyberflex_*
1395    - markus@cvs.openbsd.org 2001/06/29 07:11:01
1396      [ssh-keygen.c]
1397      initialize early
1398    - stevesk@cvs.openbsd.org 2001/06/29 18:38:44
1399      [clientloop.c]
1400      sync function definition with declaration; ok markus@
1401    - stevesk@cvs.openbsd.org 2001/06/29 18:40:28
1402      [channels.c]
1403      use socklen_t for getsockopt arg #5; ok markus@
1404    - stevesk@cvs.openbsd.org 2001/06/30 18:08:40
1405      [channels.c channels.h clientloop.c]
1406      adress -> address; ok markus@
1407    - markus@cvs.openbsd.org 2001/07/02 13:59:15
1408      [serverloop.c session.c session.h]
1409      wait until !session_have_children(); bugreport from
1410      Lutz.Jaenicke@aet.TU-Cottbus.DE
1411    - markus@cvs.openbsd.org 2001/07/02 22:29:20
1412      [readpass.c]
1413      do not return NULL, use "" instead.
1414    - markus@cvs.openbsd.org 2001/07/02 22:40:18
1415      [ssh-keygen.c]
1416      update for sectok.h interface changes.
1417    - markus@cvs.openbsd.org 2001/07/02 22:52:57
1418      [channels.c channels.h serverloop.c]
1419      improve cleanup/exit logic in ssh2:
1420      stop listening to channels, detach channel users (e.g. sessions).
1421      wait for children (i.e. dying sessions), send exit messages,
1422      cleanup all channels.
1423  - (bal) forget a few new files in sync up.
1424  - (bal) Makefile fix up requires scard.c
1425  - (stevesk) sync misc.h
1426  - (stevesk) more sync for session.c
1427  - (stevesk) sync servconf.h (comments)
1428  - (tim) [contrib/caldera/openssh.spec] sync with Caldera
1429  - (tim) [openbsd-compat/dirname.h] Remove ^M causing some compilers to
1430          issue warning (line 1: tokens ignored at end of directive line)
1431  - (tim) [sshconnect1.c] give the compiler something to do for success:
1432          if KRB5 and AFS are not defined
1433          (ERROR: "sshconnect1.c", line 1274: Syntax error before or at: })
1434
1435 20010629
1436  - (bal) Removed net_aton() since we don't use it any more
1437  - (bal) Fixed _DISABLE_VPOSIX in readpassphrase.c.
1438  - (bal) Updated zlib's home.  Thanks to David Howe <DaveHowe@gmx.co.uk>.
1439  - (stevesk) remove _REENTRANT #define
1440  - (stevesk) session.c: use u_int for envsize
1441  - (stevesk) remove cli.[ch]
1442
1443 20010628
1444  - (djm) Sync openbsd-compat with -current libc
1445  - (djm) Fix from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> for my
1446    broken makefile
1447  - (bal) Removed strtok_r() and inet_ntop() since they are no longer used.
1448  - (bal) Remove getusershell() since it's no longer used.
1449
1450 20010627
1451  - (djm) Reintroduce pam_session call for non-pty sessions.
1452  - (djm) Remove redundant and incorrect test for max auth attempts in
1453    PAM kbdint code. Based on fix from Matthew Melvin
1454   <matthewm@webcentral.com.au>
1455  - (djm) Rename sysconfdir/primes => sysconfdir/moduli
1456  - (djm) Oops, forgot make logic for primes=>moduli. Also try to rename
1457    existing primes->moduli if it exists.
1458  - (djm) Sync with -current openbsd-compat/readpassphrase.c:
1459    - djm@cvs.openbsd.org 2001/06/27 13:23:30
1460      typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@
1461  - (djm) Turn up warnings if gcc or egcs detected
1462  - (stevesk) for HP-UX 11.X use X/Open socket interface;
1463     pulls in modern socket prototypes and eliminates a number of compiler
1464     warnings.  see xopen_networking(7).
1465  - (stevesk) fix x11 forwarding from _PATH_XAUTH change
1466  - (stevesk) use X/Open socket interface for HP-UX 10.X also
1467
1468 20010625
1469  - OpenBSD CVS Sync
1470    - markus@cvs.openbsd.org 2001/06/21 21:08:25
1471      [session.c]
1472      don't reset forced_command (we allow multiple login shells in
1473      ssh2); dwd@bell-labs.com
1474    - mpech@cvs.openbsd.org 2001/06/22 10:17:51
1475      [ssh.1 sshd.8 ssh-keyscan.1]
1476      o) .Sh AUTHOR -> .Sh AUTHORS;
1477      o) remove unnecessary .Pp;
1478      o) better -mdoc style;
1479      o) typo;
1480      o) sort SEE ALSO;
1481      aaron@ ok
1482    - provos@cvs.openbsd.org 2001/06/22 21:27:08
1483      [dh.c pathnames.h]
1484      use /etc/moduli instead of /etc/primes, okay markus@
1485    - provos@cvs.openbsd.org 2001/06/22 21:28:53
1486      [sshd.8]
1487      document /etc/moduli
1488    - markus@cvs.openbsd.org 2001/06/22 21:55:49
1489      [auth2.c auth-rsa.c pathnames.h ssh.1 sshd.8 sshd_config
1490       ssh-keygen.1]
1491      merge authorized_keys2 into authorized_keys.
1492      authorized_keys2 is used for backward compat.
1493      (just append authorized_keys2 to authorized_keys).
1494    - provos@cvs.openbsd.org 2001/06/22 21:57:59
1495      [dh.c]
1496      increase linebuffer to deal with larger moduli; use rewind instead of
1497      close/open
1498    - markus@cvs.openbsd.org 2001/06/22 22:21:20
1499      [sftp-server.c]
1500      allow long usernames/groups in readdir
1501    - markus@cvs.openbsd.org 2001/06/22 23:35:21
1502      [ssh.c]
1503      don't overwrite argv (fixes ssh user@host in 'ps'), report by ericj@
1504    - deraadt@cvs.openbsd.org 2001/06/23 00:16:16
1505      [scp.c]
1506      slightly better care
1507    - markus@cvs.openbsd.org 2001/06/23 00:20:57
1508      [auth2.c auth.c auth.h auth-rh-rsa.c]
1509      *known_hosts2 is obsolete for hostbased authentication and
1510      only used for backward compat. merge ssh1/2 hostkey check
1511      and move it to auth.c
1512    - deraadt@cvs.openbsd.org 2001/06/23 02:33:05
1513      [sftp.1 sftp-server.8 ssh-keygen.1]
1514      join .%A entries; most by bk@rt.fm
1515    - markus@cvs.openbsd.org 2001/06/23 02:34:33
1516      [kexdh.c kexgex.c kex.h pathnames.h readconf.c servconf.h ssh.1
1517       sshconnect1.c sshconnect2.c sshconnect.c sshconnect.h sshd.8]
1518      get rid of known_hosts2, use it for hostkey lookup, but do not
1519      modify.
1520    - markus@cvs.openbsd.org 2001/06/23 03:03:59
1521      [sshd.8]
1522      draft-ietf-secsh-dh-group-exchange-01.txt
1523    - markus@cvs.openbsd.org 2001/06/23 03:04:42
1524      [auth2.c auth-rh-rsa.c]
1525      restore correct ignore_user_known_hosts logic.
1526    - markus@cvs.openbsd.org 2001/06/23 05:26:02
1527      [key.c]
1528      handle sigature of size 0 (some broken clients send this).
1529    - deraadt@cvs.openbsd.org 2001/06/23 05:57:09
1530      [sftp.1 sftp-server.8 ssh-keygen.1]
1531      ok, tmac is now fixed
1532    - markus@cvs.openbsd.org 2001/06/23 06:41:10
1533      [ssh-keygen.c]
1534      try to decode ssh-3.0.0 private rsa keys
1535      (allow migration to openssh, not vice versa), #910
1536    - itojun@cvs.openbsd.org 2001/06/23 15:12:20
1537      [auth1.c auth2.c auth2-chall.c authfd.c authfile.c auth-rhosts.c
1538       canohost.c channels.c cipher.c clientloop.c deattack.c dh.c
1539       hostfile.c kex.c kexdh.c kexgex.c key.c nchan.c packet.c radix.c
1540       readpass.c scp.c servconf.c serverloop.c session.c sftp.c
1541       sftp-client.c sftp-glob.c sftp-int.c sftp-server.c ssh-add.c
1542       ssh-agent.c ssh.c sshconnect1.c sshconnect2.c sshconnect.c sshd.c
1543       ssh-keygen.c ssh-keyscan.c]
1544      more strict prototypes.  raise warning level in Makefile.inc.
1545      markus ok'ed
1546      TODO; cleanup headers
1547    - markus@cvs.openbsd.org 2001/06/23 17:05:22
1548      [ssh-keygen.c]
1549      fix import for (broken?) ssh.com/f-secure private keys
1550      (i tested > 1000 RSA keys)
1551    - itojun@cvs.openbsd.org 2001/06/23 17:48:18
1552      [sftp.1 ssh.1 sshd.8 ssh-keyscan.1]
1553      kill whitespace at EOL.
1554    - markus@cvs.openbsd.org 2001/06/23 19:12:43
1555      [sshd.c]
1556      pidfile/sigterm race; bbraun@synack.net
1557    - markus@cvs.openbsd.org 2001/06/23 22:37:46
1558      [sshconnect1.c]
1559      consistent with ssh2: skip key if empty passphrase is entered,
1560      retry num_of_passwd_prompt times if passphrase is wrong. ok fgsch@
1561    - markus@cvs.openbsd.org 2001/06/24 05:25:10
1562      [auth-options.c match.c match.h]
1563      move ip+hostname check to match.c
1564    - markus@cvs.openbsd.org 2001/06/24 05:35:33
1565      [readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c]
1566      switch to readpassphrase(3)
1567      2.7/8-stable needs readpassphrase.[ch] from libc
1568    - markus@cvs.openbsd.org 2001/06/24 05:47:13
1569      [sshconnect2.c]
1570      oops, missing format string
1571    - markus@cvs.openbsd.org 2001/06/24 17:18:31
1572      [ttymodes.c]
1573      passing modes works fine: debug2->3
1574  - (djm) -Wall fix for session.c
1575  - (djm) Bring in readpassphrase() from OpenBSD libc. Compiles OK on Linux and
1576    Solaris
1577
1578 20010622
1579  - (stevesk) handle systems without pw_expire and pw_change.
1580
1581 20010621
1582  - OpenBSD CVS Sync
1583    - markus@cvs.openbsd.org 2001/06/16 08:49:38
1584      [misc.c]
1585      typo; dunlap@apl.washington.edu
1586    - markus@cvs.openbsd.org 2001/06/16 08:50:39
1587      [channels.h]
1588      bad //-style comment; thx to stevev@darkwing.uoregon.edu
1589    - markus@cvs.openbsd.org 2001/06/16 08:57:35
1590      [scp.c]
1591      no stdio or exit() in signal handlers.
1592    - markus@cvs.openbsd.org 2001/06/16 08:58:34
1593      [misc.c]
1594      copy pw_expire and pw_change, too.
1595    - markus@cvs.openbsd.org 2001/06/19 12:34:09
1596      [session.c]
1597      cleanup forced command handling, from dwd@bell-labs.com
1598    - markus@cvs.openbsd.org 2001/06/19 14:09:45
1599      [session.c sshd.8]
1600      disable x11-fwd if use_login is enabled; from lukem@wasabisystems.com
1601    - markus@cvs.openbsd.org 2001/06/19 15:40:45
1602      [session.c]
1603      allocate and free at the same level.
1604    - markus@cvs.openbsd.org 2001/06/20 13:56:39
1605      [channels.c channels.h clientloop.c packet.c serverloop.c]
1606      move from channel_stop_listening to channel_free_all,
1607      call channel_free_all before calling waitpid() in serverloop.
1608      fixes the utmp handling; report from Lutz.Jaenicke@aet.TU-Cottbus.DE
1609
1610 20010615
1611  - (stevesk) don't set SA_RESTART and set SIGCHLD to SIG_DFL
1612    around grantpt().
1613  - (stevesk) update TODO: STREAMS pty systems don't call vhangup() now
1614
1615 20010614
1616  - OpenBSD CVS Sync
1617    - markus@cvs.openbsd.org 2001/06/13 09:10:31
1618      [session.c]
1619      typo, use pid not s->pid, mstone@cs.loyola.edu
1620
1621 20010613
1622  - OpenBSD CVS Sync
1623    - markus@cvs.openbsd.org 2001/06/12 10:58:29
1624      [session.c]
1625      merge session_free into session_close()
1626      merge pty_cleanup_proc into session_pty_cleanup()
1627    - markus@cvs.openbsd.org 2001/06/12 16:10:38
1628      [session.c]
1629      merge ssh1/ssh2 tty msg parse and alloc code
1630    - markus@cvs.openbsd.org 2001/06/12 16:11:26
1631      [packet.c]
1632      do not log() packet_set_maxsize
1633    - markus@cvs.openbsd.org 2001/06/12 21:21:29
1634      [session.c]
1635      remove xauth-cookie-in-tmp handling. use default $XAUTHORITY, since
1636      we do already trust $HOME/.ssh
1637      you can use .ssh/sshrc and .ssh/environment if you want to customize
1638      the location of the xauth cookies
1639    - markus@cvs.openbsd.org 2001/06/12 21:30:57
1640      [session.c]
1641      unused
1642
1643 20010612
1644  - scp.c ID update (upstream synced vfsprintf() from us)
1645  - OpenBSD CVS Sync
1646   - markus@cvs.openbsd.org 2001/06/10 11:29:20
1647      [dispatch.c]
1648      we support rekeying
1649      protocol errors are fatal.
1650    - markus@cvs.openbsd.org 2001/06/11 10:18:24
1651      [session.c]
1652      reset pointer to NULL after xfree(); report from solar@openwall.com
1653    - markus@cvs.openbsd.org 2001/06/11 16:04:38
1654      [sshd.8]
1655      typo; bdubreuil@crrel.usace.army.mil
1656
1657 20010611
1658  - (bal) NeXT/MacOS X lack libgen.h and dirname().  Patch by Mark Miller
1659    <markm@swoon.net>
1660  - (bal) Handle broken krb4 issues on Solaris with multiple defined u_*_t
1661    types.  Patch by Jan IVEN <Jan.Iven@cern.ch>
1662  - (bal) Fixed Makefile.in so that 'configure; make install' works.
1663
1664 20010610
1665  - (bal) Missed two files in major resync.  auth-bsdauth.c and auth-skey.c
1666
1667 20010609
1668  - OpenBSD CVS Sync
1669    - markus@cvs.openbsd.org 2001/05/30 12:55:13
1670      [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
1671       packet.c serverloop.c session.c ssh.c ssh1.h]
1672      channel layer cleanup: merge header files and split .c files
1673    - markus@cvs.openbsd.org 2001/05/30 15:20:10
1674      [ssh.c]
1675      merge functions, simplify.
1676    - markus@cvs.openbsd.org 2001/05/31 10:30:17
1677      [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
1678       packet.c serverloop.c session.c ssh.c]
1679      undo the .c file split, just merge the header and keep the cvs
1680      history
1681  - (bal) Channels.c and Channels.h -- "Merge Functions, simplify" (draged
1682    out of ssh Attic)
1683  - (bal) Ooops.. nchan.c (and remove nchan.h) resync from OpenBSD ssh
1684    Attic.
1685  - OpenBSD CVS Sync
1686    - markus@cvs.openbsd.org 2001/05/31 13:08:04
1687      [sshd_config]
1688      group options and add some more comments
1689    - markus@cvs.openbsd.org 2001/06/03 14:55:39
1690      [channels.c channels.h session.c]
1691      use fatal_register_cleanup instead of atexit, sync with x11 authdir
1692      handling
1693    - markus@cvs.openbsd.org 2001/06/03 19:36:44
1694      [ssh-keygen.1]
1695      1-2 bits of entrophy per character (not per word), ok stevesk@
1696    - markus@cvs.openbsd.org 2001/06/03 19:38:42
1697      [scp.c]
1698      pass -v to ssh; from slade@shore.net
1699    - markus@cvs.openbsd.org 2001/06/03 20:06:11
1700      [auth2-chall.c]
1701      the challenge response device decides how to handle non-existing
1702      users.
1703      -> fake challenges for skey and cryptocard
1704    - markus@cvs.openbsd.org 2001/06/04 21:59:43
1705      [channels.c channels.h session.c]
1706      switch uid when cleaning up tmp files and sockets; reported by
1707      zen-parse@gmx.net on bugtraq
1708    - markus@cvs.openbsd.org 2001/06/04 23:07:21
1709      [clientloop.c serverloop.c sshd.c]
1710      set flags in the signal handlers, do real work in the main loop,
1711      ok provos@
1712    - markus@cvs.openbsd.org 2001/06/04 23:16:16
1713      [session.c]
1714      merge ssh1/2 x11-fwd setup, create listener after tmp-dir
1715    - pvalchev@cvs.openbsd.org 2001/06/05 05:05:39
1716      [ssh-keyscan.1 ssh-keyscan.c]
1717      License clarification from David Mazieres, ok deraadt@
1718    - markus@cvs.openbsd.org 2001/06/05 10:24:32
1719      [channels.c]
1720      don't delete the auth socket in channel_stop_listening()
1721      auth_sock_cleanup_proc() will take care of this.
1722    - markus@cvs.openbsd.org 2001/06/05 16:46:19
1723      [session.c]
1724      let session_close() delete the pty.  deny x11fwd if xauthfile is set.
1725    - markus@cvs.openbsd.org 2001/06/06 23:13:54
1726      [ssh-dss.c ssh-rsa.c]
1727      cleanup, remove old code
1728    - markus@cvs.openbsd.org 2001/06/06 23:19:35
1729      [ssh-add.c]
1730      remove debug message; Darren.Moffat@eng.sun.com
1731    - markus@cvs.openbsd.org 2001/06/07 19:57:53
1732      [auth2.c]
1733      style is used for bsdauth.
1734      disconnect on user/service change (ietf-drafts)
1735    - markus@cvs.openbsd.org 2001/06/07 20:23:05
1736      [authfd.c authfile.c channels.c kexdh.c kexgex.c packet.c ssh.c
1737       sshconnect.c sshconnect1.c]
1738      use xxx_put_cstring()
1739    - markus@cvs.openbsd.org 2001/06/07 22:25:02
1740      [session.c]
1741      don't overwrite errno
1742      delay deletion of the xauth cookie
1743    - markus@cvs.openbsd.org 2001/06/08 15:25:40
1744      [includes.h pathnames.h readconf.c servconf.c]
1745      move the path for xauth to pathnames.h
1746  - (bal) configure.in fix for Tru64 (forgeting to reset $LIB)
1747  - (bal) ANSIify strmode()
1748  - (bal) --with-catman should be --with-mantype patch by Dave
1749    Dykstra <dwd@bell-labs.com>
1750
1751 20010606
1752  - OpenBSD CVS Sync
1753    - markus@cvs.openbsd.org 2001/05/17 21:34:15
1754      [ssh.1]
1755      no spaces in PreferredAuthentications;
1756      meixner@rbg.informatik.tu-darmstadt.de
1757    - markus@cvs.openbsd.org 2001/05/18 14:13:29
1758      [auth-chall.c auth.h auth1.c auth2-chall.c auth2.c readconf.c
1759       readconf.h servconf.c servconf.h sshconnect1.c sshconnect2.c sshd.c]
1760      improved kbd-interactive support. work by per@appgate.com and me
1761    - djm@cvs.openbsd.org 2001/05/19 00:36:40
1762      [session.c]
1763      Disable X11 forwarding if xauth binary is not found. Patch from Nalin
1764      Dahyabhai <nalin@redhat.com>; ok markus@
1765    - markus@cvs.openbsd.org 2001/05/19 16:05:41
1766      [scp.c]
1767      ftruncate() instead of open()+O_TRUNC like rcp.c does
1768      allows scp /path/to/file localhost:/path/to/file
1769    - markus@cvs.openbsd.org 2001/05/19 16:08:43
1770      [sshd.8]
1771      sort options; Matthew.Stier@fnc.fujitsu.com
1772    - markus@cvs.openbsd.org 2001/05/19 16:32:16
1773      [ssh.1 sshconnect2.c]
1774      change preferredauthentication order to
1775         publickey,hostbased,password,keyboard-interactive
1776      document that hostbased defaults to no, document order
1777    - markus@cvs.openbsd.org 2001/05/19 16:46:19
1778      [ssh.1 sshd.8]
1779      document MACs defaults with .Dq
1780    - stevesk@cvs.openbsd.org 2001/05/19 19:43:57
1781      [misc.c misc.h servconf.c sshd.8 sshd.c]
1782      sshd command-line arguments and configuration file options that
1783      specify time may be expressed using a sequence of the form:
1784      time[qualifier], where time is a positive integer value and qualifier
1785      is one of the following:
1786          <none>,s,m,h,d,w
1787      Examples:
1788          600     600 seconds (10 minutes)
1789          10m     10 minutes
1790          1h30m   1 hour 30 minutes (90 minutes)
1791      ok markus@
1792    - stevesk@cvs.openbsd.org 2001/05/19 19:57:09
1793      [channels.c]
1794      typo in error message
1795    - markus@cvs.openbsd.org 2001/05/20 17:20:36
1796      [auth-rsa.c auth.c auth.h auth2.c servconf.c servconf.h sshd.8
1797       sshd_config]
1798      configurable authorized_keys{,2} location; originally from peter@;
1799      ok djm@
1800    - markus@cvs.openbsd.org 2001/05/24 11:12:42
1801      [auth.c]
1802      fix comment; from jakob@
1803    - stevesk@cvs.openbsd.org 2001/05/24 18:57:53
1804      [clientloop.c readconf.c ssh.c ssh.h]
1805      don't perform escape processing when ``EscapeChar none''; ok markus@
1806    - markus@cvs.openbsd.org 2001/05/25 14:37:32
1807      [ssh-keygen.c]
1808      use -P for -e and -y, too.
1809    - markus@cvs.openbsd.org 2001/05/28 08:04:39
1810      [ssh.c]
1811      fix usage()
1812    - markus@cvs.openbsd.org 2001/05/28 10:08:55
1813      [authfile.c]
1814      key_load_private: set comment to filename for PEM keys
1815    - markus@cvs.openbsd.org 2001/05/28 22:51:11
1816      [cipher.c cipher.h]
1817      simpler 3des for ssh1
1818    - markus@cvs.openbsd.org 2001/05/28 23:14:49
1819      [channels.c channels.h nchan.c]
1820      undo broken channel fix and try a different one. there
1821      should be still some select errors...
1822    - markus@cvs.openbsd.org 2001/05/28 23:25:24
1823      [channels.c]
1824      cleanup, typo
1825    - markus@cvs.openbsd.org 2001/05/28 23:58:35
1826      [packet.c packet.h sshconnect.c sshd.c]
1827      remove some lines, simplify.
1828    - markus@cvs.openbsd.org 2001/05/29 12:31:27
1829      [authfile.c]
1830      typo
1831
1832 20010528
1833  - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c
1834    Patch by Corinna Vinschen <vinschen@redhat.com>
1835
1836 20010517
1837  - OpenBSD CVS Sync
1838    - markus@cvs.openbsd.org 2001/05/12 19:53:13
1839      [sftp-server.c]
1840      readlink does not NULL-terminate; mhe@home.se
1841    - deraadt@cvs.openbsd.org 2001/05/15 22:04:01
1842      [ssh.1]
1843      X11 forwarding details improved
1844    - markus@cvs.openbsd.org 2001/05/16 20:51:57
1845      [authfile.c]
1846      return comments for private pem files, too; report from nolan@naic.edu
1847    - markus@cvs.openbsd.org 2001/05/16 21:53:53
1848      [clientloop.c]
1849      check for open sessions before we call select(); fixes the x11 client
1850      bug reported by bowman@math.ualberta.ca
1851    - markus@cvs.openbsd.org 2001/05/16 22:09:21
1852      [channels.c nchan.c]
1853      more select() error fixes (don't set rfd/wfd to -1).
1854  - (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
1855  - (bal) Corrected on_exit() emulation via atexit().
1856
1857 20010512
1858  - OpenBSD CVS Sync
1859    - markus@cvs.openbsd.org 2001/05/11 14:59:56
1860      [clientloop.c misc.c misc.h]
1861      add unset_nonblock for stdout/err flushing in client_loop().
1862  - (bal) Patch to partial sync up contrib/solaris/ packaging software.
1863    Patch by pete <ninjaz@webexpress.com>
1864
1865 20010511
1866  - OpenBSD CVS Sync
1867    - markus@cvs.openbsd.org 2001/05/09 22:51:57
1868      [channels.c]
1869      fix -R for protocol 2, noticed by greg@nest.cx.
1870      bug was introduced with experimental dynamic forwarding.
1871    - markus@cvs.openbsd.org 2001/05/09 23:01:31
1872      [rijndael.h]
1873      fix prototype; J.S.Peatfield@damtp.cam.ac.uk
1874
1875 20010509
1876   - OpenBSD CVS Sync
1877    - markus@cvs.openbsd.org 2001/05/06 21:23:31
1878      [cli.c]
1879      cli_read() fails to catch SIGINT + overflow; from obdb@zzlevo.net
1880    - markus@cvs.openbsd.org 2001/05/08 19:17:31
1881      [channels.c serverloop.c clientloop.c]
1882      adds correct error reporting to async connect()s
1883      fixes the server-discards-data-before-connected-bug found by
1884      onoe@sm.sony.co.jp
1885    - mouring@cvs.openbsd.org 2001/05/08 19:45:25
1886      [misc.c misc.h scp.c sftp.c]
1887      Use addargs() in sftp plus some clean up of addargs().  OK Markus
1888    - markus@cvs.openbsd.org 2001/05/06 21:45:14
1889      [clientloop.c]
1890      use atomicio for flushing stdout/stderr bufs. thanks to
1891      jbw@izanami.cee.hw.ac.uk
1892    - markus@cvs.openbsd.org 2001/05/08 22:48:07
1893      [atomicio.c]
1894      no need for xmalloc.h, thanks to espie@
1895  - (bal) UseLogin patch for Solaris/UNICOS.  Patch by Wayne Davison
1896    <wayne@blorf.net>
1897  - (bal) ./configure support to disable SIA on OSF1.  Patch by
1898    Chris Adams <cmadams@hiwaay.net>
1899  - (bal) Updates from the Sony NEWS-OS platform by NAKAJI Hiroyuki
1900    <nakaji@tutrp.tut.ac.jp>
1901
1902 20010508
1903  - (bal) Fixed configure test for USE_SIA.
1904
1905 20010506
1906  - (djm) Update config.guess and config.sub with latest versions (from
1907    ftp://ftp.gnu.org/gnu/config/) to allow configure on ia64-hpux.
1908    Suggested by Jason Mader <jason@ncac.gwu.edu>
1909  - (bal) White Space and #ifdef sync with OpenBSD
1910  - (bal) Add 'seed_rng()' to ssh-add.c
1911  - (bal) CVS ID updates for readpass.c, readpass.h, cli.c, and cli.h
1912  - OpenBSD CVS Sync
1913    - stevesk@cvs.openbsd.org 2001/05/05 13:42:52
1914      [sftp.1 ssh-add.1 ssh-keygen.1]
1915      typos, grammar
1916
1917 20010505
1918  - OpenBSD CVS Sync
1919    - stevesk@cvs.openbsd.org 2001/05/04 14:21:56
1920      [ssh.1 sshd.8]
1921      typos
1922    - markus@cvs.openbsd.org 2001/05/04 14:34:34
1923      [channels.c]
1924      channel_new() reallocs channels[], we cannot use Channel *c after
1925      calling channel_new(), XXX fix this in the future...
1926    - markus@cvs.openbsd.org 2001/05/04 23:47:34
1927      [channels.c channels.h clientloop.c nchan.c nchan.h serverloop.c ssh.c]
1928      move to Channel **channels (instead of Channel *channels), fixes realloc
1929      problems.  channel_new now returns a Channel *, favour Channel * over
1930      channel id.  remove old channel_allocate interface.
1931
1932 20010504
1933  - OpenBSD CVS Sync
1934    - stevesk@cvs.openbsd.org 2001/05/03 15:07:39
1935      [channels.c]
1936      typo in debug() string
1937    - markus@cvs.openbsd.org 2001/05/03 15:45:15
1938      [session.c]
1939      exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au
1940    - stevesk@cvs.openbsd.org 2001/05/03 21:43:01
1941      [servconf.c]
1942      remove "\n" from fatal()
1943    - mouring@cvs.openbsd.org 2001/05/03 23:09:53
1944      [misc.c misc.h scp.c sftp.c]
1945      Move colon() and cleanhost() to misc.c where I should I have put it in
1946      the first place
1947  - (bal) Updated Cygwin README by Corinna Vinschen <vinschen@redhat.com>
1948  - (bal) Avoid socket file security issues in ssh-agent for Cygwin.
1949    Patch by Egor Duda <deo@logos-m.ru>
1950
1951 20010503
1952  - OpenBSD CVS Sync
1953    - markus@cvs.openbsd.org 2001/05/02 16:41:20
1954      [ssh-add.c]
1955      fix prompt for ssh-add.
1956
1957 20010502
1958  - OpenBSD CVS Sync
1959    - mouring@cvs.openbsd.org 2001/05/02 01:25:39
1960      [readpass.c]
1961      Put the 'const' back into ssh_askpass() function.  Pointed out
1962      by Mark Miller <markm@swoon.net>.  OK Markus
1963
1964 20010501
1965  - OpenBSD CVS Sync
1966    - markus@cvs.openbsd.org 2001/04/30 11:18:52
1967      [readconf.c readconf.h ssh.1 ssh.c sshconnect.c]
1968      implement 'ssh -b bind_address' like 'telnet -b'
1969    - markus@cvs.openbsd.org 2001/04/30 15:50:46
1970      [compat.c compat.h kex.c]
1971      allow interop with weaker key generation used by ssh-2.0.x, x < 10
1972    - markus@cvs.openbsd.org 2001/04/30 16:02:49
1973      [compat.c]
1974      ssh-2.0.10 has the weak-key-bug, too.
1975  - (tim) [contrib/caldera/openssh.spec] add Requires line for Caldera 3.1
1976
1977 20010430
1978  - OpenBSD CVS Sync
1979    - markus@cvs.openbsd.org 2001/04/29 18:32:52
1980      [serverloop.c]
1981      fix whitespace
1982    - markus@cvs.openbsd.org 2001/04/29 19:16:52
1983      [channels.c clientloop.c compat.c compat.h serverloop.c]
1984      more ssh.com-2.0.x bug-compat; from per@appgate.com
1985  - (tim) New version of mdoc2man.pl from Mark D. Roth <roth+openssh@feep.net>
1986  - (djm) Add .cvsignore files, suggested by Wayne Davison <wayne@blorf.net>
1987
1988 20010429
1989  - (bal) Updated INSTALL.  PCRE moved to a new place.
1990  - (djm) Release OpenSSH-2.9p1
1991
1992 20010427
1993  - (bal) Fixed uidswap.c so it should work on non-posix complient systems.
1994    patch based on 2.5.2 version by djm.
1995  - (bal) Build manpages and config files once unless changed.  Patch by
1996    Carson Gaspar <carson@taltos.org>
1997  - (bal) arpa/nameser.h does not exist on Cygwin.  Patch by Corinna
1998    Vinschen <vinschen@redhat.com>
1999  - (bal) Add /etc/sysconfig/sshd support to redhat's sshd.init. Patch by
2000    Pekka Savola <pekkas@netcore.fi>
2001  - (bal) Cygwin lacks setgroups() API.  Patch by Corinna Vinschen
2002    <vinschen@redhat.com>
2003  - (bal) version.h synced, RPM specs updated for 2.9
2004  - (tim) update contrib/caldera files with what Caldera is using.
2005    <sps@caldera.de>
2006
2007 20010425
2008  - OpenBSD CVS Sync
2009    - markus@cvs.openbsd.org 2001/04/23 21:57:07
2010      [ssh-keygen.1 ssh-keygen.c]
2011      allow public key for -e, too
2012    - markus@cvs.openbsd.org 2001/04/23 22:14:13
2013      [ssh-keygen.c]
2014      remove debug
2015  - (bal) Whitespace resync w/ OpenBSD for uidswap.c
2016  - (djm) Add new server configuration directive 'PAMAuthenticationViaKbdInt'
2017    (default: off), implies KbdInteractiveAuthentication. Suggestion from
2018    markus@
2019  - (djm) Include crypt.h if available in auth-passwd.c
2020  - tim@mindrot.org 2001/04/25 21:38:01 [configure.in]
2021    man page detection fixes for SCO
2022
2023 20010424
2024  - OpenBSD CVS Sync
2025    - markus@cvs.openbsd.org 2001/04/22 23:58:36
2026      [ssh-keygen.1 ssh.1 sshd.8]
2027      document hostbased and other cleanup
2028  - (stevesk) start_pam() doesn't use DNS now for sshd -u0.
2029  - (stevesk) auth-pam.c: use PERMIT_NO_PASSWD
2030  - (bal) sys/queue.h is bogus for NCR platform.  Patch by Daniel Carroll
2031    <dan@mesastate.edu>
2032  - (bal) Fixed contrib/postinstall.in.  Patch by wsanders@wsanders.net
2033
2034 20010422
2035  - OpenBSD CVS Sync
2036    - markus@cvs.openbsd.org 2001/04/20 16:32:22
2037      [uidswap.c]
2038      set non-privileged gid before uid; tholo@ and deraadt@
2039    - mouring@cvs.openbsd.org 2001/04/21 00:55:57
2040      [sftp.1]
2041      Spelling
2042    - djm@cvs.openbsd.org 2001/04/22 08:13:30
2043      [ssh.1]
2044      typos spotted by stevesk@; ok deraadt@
2045    - markus@cvs.openbsd.org 2001/04/22 12:34:05
2046      [scp.c]
2047      scp > 2GB; niles@scyld.com; ok deraadt@, djm@
2048    - markus@cvs.openbsd.org 2001/04/22 13:25:37
2049      [ssh-keygen.1 ssh-keygen.c]
2050      rename arguments -x -> -e (export key), -X -> -i (import key)
2051      xref draft-ietf-secsh-publickeyfile-01.txt
2052    - markus@cvs.openbsd.org 2001/04/22 13:32:27
2053      [sftp-server.8 sftp.1 ssh.1 sshd.8]
2054      xref draft-ietf-secsh-*
2055    - markus@cvs.openbsd.org 2001/04/22 13:41:02
2056      [ssh-keygen.1 ssh-keygen.c]
2057      style, noted by stevesk; sort flags in usage
2058
2059 20010421
2060  - OpenBSD CVS Sync
2061    - djm@cvs.openbsd.org 2001/04/20 07:17:51
2062      [clientloop.c ssh.1]
2063      Split out and improve escape character documentation, mention ~R in
2064      ~? help text; ok markus@
2065  - Update RPM spec files for CVS version.h
2066  - (stevesk) set the default PAM service name to __progname instead
2067    of the hard-coded value "sshd"; from Mark D. Roth <roth@feep.net>
2068  - (stevesk) document PAM service name change in INSTALL
2069  - tim@mindrot.org 2001/04/21 14:25:57 [Makefile.in configure.in]
2070    fix perl test, fix nroff test, fix Makefile to build outside source tree
2071
2072 20010420
2073  - OpenBSD CVS Sync
2074    - ian@cvs.openbsd.org 2001/04/18 16:21:05
2075      [ssh-keyscan.1]
2076      Fix typo reported in PR/1779
2077    - markus@cvs.openbsd.org 2001/04/18 21:57:42
2078      [readpass.c ssh-add.c]
2079      call askpass from ssh, too, based on work by roth@feep.net, ok deraadt
2080    - markus@cvs.openbsd.org 2001/04/18 22:03:45
2081      [auth2.c sshconnect2.c]
2082      use FDQN with trailing dot in the hostbased auth packets, ok deraadt@
2083    - markus@cvs.openbsd.org 2001/04/18 22:48:26
2084      [auth2.c]
2085      no longer const
2086    - markus@cvs.openbsd.org 2001/04/18 23:43:26
2087      [auth2.c compat.c sshconnect2.c]
2088      more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works now
2089      (however the 2.1.0 server seems to work only if debug is enabled...)
2090    - markus@cvs.openbsd.org 2001/04/18 23:44:51
2091      [authfile.c]
2092      error->debug; noted by fries@
2093    - markus@cvs.openbsd.org 2001/04/19 00:05:11
2094      [auth2.c]
2095      use local variable, no function call needed.
2096      (btw, hostbased works now with ssh.com >= 2.0.13)
2097   - (bal) Put scp-common.h back into scp.c (it exists in the upstream
2098     tree) pointed out by Tom Holroyd <tomh@po.crl.go.jp>
2099
2100 20010418
2101   - OpenBSD CVS Sync
2102    - markus@cvs.openbsd.org 2001/04/17 19:34:25
2103      [session.c]
2104      move auth_approval to do_authenticated().
2105      do_child(): nuke hostkeys from memory
2106      don't source .ssh/rc for subsystems.
2107    - markus@cvs.openbsd.org 2001/04/18 14:15:00
2108      [canohost.c]
2109      debug->debug3
2110   - (bal) renabled 'catman-do:' and fixed it.  So now catman pages should
2111     be working again.
2112   - (bal) Makfile day... Cleaned up multiple mantype support (Patch by
2113     Mark D. Roth <roth+openssh@feep.net>), and fixed PIDDIR support.
2114
2115 20010417
2116   - (bal) Add perl5 check for HP/UX, Removed GNUness from Makefile.in
2117     and temporary commented out 'catman-do:' since it is broken.  Patches
2118     for the first two by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2119   - OpenBSD CVS Sync
2120    - deraadt@cvs.openbsd.org 2001/04/16 08:26:04
2121      [key.c]
2122      better safe than sorry in later mods; yongari@kt-is.co.kr
2123    - markus@cvs.openbsd.org 2001/04/17 08:14:01
2124      [sshconnect1.c]
2125      check for key!=NULL, thanks to costa
2126    - markus@cvs.openbsd.org 2001/04/17 09:52:48
2127      [clientloop.c]
2128      handle EINTR/EAGAIN on read; ok deraadt@
2129    - markus@cvs.openbsd.org 2001/04/17 10:53:26
2130      [key.c key.h readconf.c readconf.h ssh.1 sshconnect2.c]
2131      add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@
2132    - markus@cvs.openbsd.org 2001/04/17 12:55:04
2133      [channels.c ssh.c]
2134      undo socks5 and https support since they are not really used and
2135      only bloat ssh.  remove -D from usage(), since '-D' is experimental.
2136
2137 20010416
2138   - OpenBSD CVS Sync
2139    - stevesk@cvs.openbsd.org 2001/04/15 01:35:22
2140      [ttymodes.c]
2141      fix comments
2142    - markus@cvs.openbsd.org 2001/04/15 08:43:47
2143      [dh.c sftp-glob.c sftp-glob.h sftp-int.c sshconnect2.c sshd.c]
2144      some unused variable and typos; from tomh@po.crl.go.jp
2145    - markus@cvs.openbsd.org 2001/04/15 16:58:03
2146      [authfile.c ssh-keygen.c sshd.c]
2147      don't use errno for key_{load,save}_private; discussion w/ solar@openwall
2148    - markus@cvs.openbsd.org 2001/04/15 17:16:00
2149      [clientloop.c]
2150      set stdin/out/err to nonblocking in SSH proto 1, too. suggested by ho@
2151      should fix some of the blocking problems for rsync over SSH-1
2152    - stevesk@cvs.openbsd.org 2001/04/15 19:41:21
2153      [sshd.8]
2154      some ClientAlive cleanup; ok markus@
2155    - stevesk@cvs.openbsd.org 2001/04/15 21:28:35
2156      [readconf.c servconf.c]
2157      use fatal() or error() vs. fprintf(); ok markus@
2158  - (djm) Convert mandoc manpages to man automatically. Patch from Mark D.
2159    Roth <roth+openssh@feep.net>
2160  - (bal) CVS ID fix up and slight manpage fix from OpenBSD tree.
2161   - (djm) OpenBSD CVS Sync
2162    - mouring@cvs.openbsd.org 2001/04/16 02:31:44
2163      [scp.c sftp.c]
2164      IPv6 support for sftp (which I bungled in my last patch) which is
2165      borrowed from scp.c.  Thanks to Markus@ for pointing it out.
2166    - deraadt@cvs.openbsd.org 2001/04/16 08:05:34
2167      [xmalloc.c]
2168      xrealloc dealing with ptr == nULL; mouring
2169    - djm@cvs.openbsd.org 2001/04/16 08:19:31
2170      [session.c]
2171      Split motd and hushlogin checks into seperate functions, helps for
2172      portable. From Chris Adams <cmadams@hiwaay.net>; ok markus@
2173  - Fix OSF SIA support displaying too much information for quiet
2174    logins and logins where access was denied by SIA. Patch from Chris Adams
2175    <cmadams@hiwaay.net>
2176
2177 20010415
2178  - OpenBSD CVS Sync
2179    - deraadt@cvs.openbsd.org 2001/04/14 04:31:01
2180      [ssh-add.c]
2181      do not double free
2182    - markus@cvs.openbsd.org 2001/04/14 16:17:14
2183      [channels.c]
2184      remove some channels that are not appropriate for keepalive.
2185    - markus@cvs.openbsd.org 2001/04/14 16:27:57
2186      [ssh-add.c]
2187      use clear_pass instead of xfree()
2188    - stevesk@cvs.openbsd.org 2001/04/14 16:33:20
2189      [clientloop.c packet.h session.c ssh.c ttymodes.c ttymodes.h]
2190      protocol 2 tty modes support; ok markus@
2191    - stevesk@cvs.openbsd.org 2001/04/14 17:04:42
2192      [scp.c]
2193      'T' handling rcp/scp sync; ok markus@
2194  - Missed sshtty.[ch] in Sync.
2195
2196 20010414
2197  - Sync with OpenBSD glob.c, strlcat.c and vis.c changes
2198  - Cygwin sftp/sftp-server binary mode patch from Corinna Vinschen
2199    <vinschen@redhat.com>
2200  - OpenBSD CVS Sync
2201    - beck@cvs.openbsd.org 2001/04/13 22:46:54
2202      [channels.c channels.h servconf.c servconf.h serverloop.c sshd.8]
2203      Add options ClientAliveInterval and ClientAliveCountMax to sshd.
2204      This gives the ability to do a "keepalive" via the encrypted channel
2205      which can't be spoofed (unlike TCP keepalives). Useful for when you want
2206      to use ssh connections to authenticate people for something, and know
2207      relatively quickly when they are no longer authenticated. Disabled
2208      by default (of course). ok markus@
2209
2210 20010413
2211  - OpenBSD CVS Sync
2212    - markus@cvs.openbsd.org 2001/04/12 14:29:09
2213      [ssh.c]
2214      show debug output during option processing, report from
2215      pekkas@netcore.fi
2216    - markus@cvs.openbsd.org 2001/04/12 19:15:26
2217      [auth-rhosts.c auth.h auth2.c buffer.c canohost.c canohost.h
2218       compat.c compat.h hostfile.c pathnames.h readconf.c readconf.h
2219       servconf.c servconf.h ssh.c sshconnect.c sshconnect.h sshconnect1.c
2220       sshconnect2.c sshd_config]
2221      implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
2222      similar to RhostRSAAuthentication unless you enable (the experimental)
2223      HostbasedUsesNameFromPacketOnly option.  please test. :)
2224    - markus@cvs.openbsd.org 2001/04/12 19:39:27
2225      [readconf.c]
2226      typo
2227    - stevesk@cvs.openbsd.org 2001/04/12 20:09:38
2228      [misc.c misc.h readconf.c servconf.c ssh.c sshd.c]
2229      robust port validation; ok markus@ jakob@
2230    - mouring@cvs.openbsd.org 2001/04/12 23:17:54
2231      [sftp-int.c sftp-int.h sftp.1 sftp.c]
2232      Add support for:
2233         sftp [user@]host[:file [file]]  - Fetch remote file(s)
2234         sftp [user@]host[:dir[/]]       - Start in remote dir/
2235      OK deraadt@
2236    - stevesk@cvs.openbsd.org 2001/04/13 01:26:17
2237      [ssh.c]
2238      missing \n in error message
2239  - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
2240    lack it.
2241
2242 20010412
2243  - OpenBSD CVS Sync
2244    - markus@cvs.openbsd.org 2001/04/10 07:46:58
2245      [channels.c]
2246      cleanup socks4 handling
2247    - itojun@cvs.openbsd.org 2001/04/10 09:13:22
2248      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
2249      document id_rsa{.pub,}.  markus ok
2250    - markus@cvs.openbsd.org 2001/04/10 12:15:23
2251      [channels.c]
2252      debug cleanup
2253    - djm@cvs.openbsd.org 2001/04/11 07:06:22
2254      [sftp-int.c]
2255      'mget' and 'mput' aliases; ok markus@
2256    - markus@cvs.openbsd.org 2001/04/11 10:59:01
2257      [ssh.c]
2258      use strtol() for ports, thanks jakob@
2259    - markus@cvs.openbsd.org 2001/04/11 13:56:13
2260      [channels.c ssh.c]
2261      https-connect and socks5 support. i feel so bad.
2262    - lebel@cvs.openbsd.org 2001/04/11 16:25:30
2263      [sshd.8 sshd.c]
2264      implement the -e option into sshd:
2265       -e      When this option is specified, sshd will send the output to the
2266               standard error instead of the system log.
2267      markus@ OK.
2268
2269 20010410
2270  - OpenBSD CVS Sync
2271    - deraadt@cvs.openbsd.org 2001/04/08 20:52:55
2272      [sftp.c]
2273      do not modify an actual argv[] entry
2274    - stevesk@cvs.openbsd.org 2001/04/08 23:28:27
2275      [sshd.8]
2276      spelling
2277    - stevesk@cvs.openbsd.org 2001/04/09 00:42:05
2278      [sftp.1]
2279      spelling
2280    - markus@cvs.openbsd.org 2001/04/09 15:12:23
2281      [ssh-add.c]
2282      passphrase caching: ssh-add tries last passphrase, clears passphrase if
2283      not successful and after last try.
2284      based on discussions with espie@, jakob@, ... and code from jakob@ and
2285      wolfgang@wsrcc.com
2286    - markus@cvs.openbsd.org 2001/04/09 15:19:49
2287      [ssh-add.1]
2288      ssh-add retries the last passphrase...
2289    - stevesk@cvs.openbsd.org 2001/04/09 18:00:15
2290      [sshd.8]
2291      ListenAddress mandoc from aaron@
2292
2293 20010409
2294  - (stevesk) use setresgid() for setegid() if needed
2295  - (stevesk) configure.in: typo
2296  - OpenBSD CVS Sync
2297    - stevesk@cvs.openbsd.org 2001/04/08 16:01:36
2298      [sshd.8]
2299      document ListenAddress addr:port
2300    - markus@cvs.openbsd.org 2001/04/08 13:03:00
2301      [ssh-add.c]
2302      init pointers with NULL, thanks to danimal@danimal.org
2303    - markus@cvs.openbsd.org 2001/04/08 11:27:33
2304      [clientloop.c]
2305      leave_raw_mode if ssh2 "session" is closed
2306    - markus@cvs.openbsd.org 2001/04/06 21:00:17
2307      [auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth2.c channels.c session.c
2308       ssh.c sshconnect.c sshconnect.h uidswap.c uidswap.h]
2309      do gid/groups-swap in addition to uid-swap, should help if /home/group
2310      is chmod 750 + chgrp grp /home/group/, work be deraadt and me, thanks
2311      to olar@openwall.com is comments.  we had many requests for this.
2312    - markus@cvs.openbsd.org 2001/04/07 08:55:18
2313      [buffer.c channels.c channels.h readconf.c ssh.c]
2314      allow the ssh client act as a SOCKS4 proxy (dynamic local
2315      portforwarding).  work by Dan Kaminsky <dankamin@cisco.com> and me.
2316      thanks to Dan for this great patch: use 'ssh -D 1080 host' and make
2317      netscape use localhost:1080 as a socks proxy.
2318    - markus@cvs.openbsd.org 2001/04/08 11:24:33
2319      [uidswap.c]
2320      KNF
2321
2322 20010408
2323  - OpenBSD CVS Sync
2324    - stevesk@cvs.openbsd.org 2001/04/06 22:12:47
2325      [hostfile.c]
2326      unused; typo in comment
2327    - stevesk@cvs.openbsd.org 2001/04/06 22:25:25
2328      [servconf.c]
2329      in addition to:
2330      ListenAddress host|ipv4_addr|ipv6_addr
2331      permit:
2332      ListenAddress [host|ipv4_addr|ipv6_addr]:port
2333      ListenAddress host|ipv4_addr:port
2334      sshd.8 updates coming.  ok markus@
2335
2336 20010407
2337  - (bal) CVS ID Resync of version.h
2338  - OpenBSD CVS Sync
2339    - markus@cvs.openbsd.org 2001/04/05 23:39:20
2340      [serverloop.c]
2341      keep the ssh session even if there is no active channel.
2342      this is more in line with the protocol spec and makes
2343         ssh -N -L 1234:server:110 host
2344      more useful.
2345      based on discussion with <mats@mindbright.se> long time ago
2346      and recent mail from <res@shore.net>
2347    - deraadt@cvs.openbsd.org 2001/04/06 16:46:59
2348      [scp.c]
2349      remove trailing / from source paths; fixes pr#1756
2350
2351 20010406
2352  - (stevesk) logintest.c: fix for systems without __progname
2353  - (stevesk) Makefile.in: log.o is in libssh.a
2354  - OpenBSD CVS Sync
2355    - markus@cvs.openbsd.org 2001/04/05 10:00:06
2356      [compat.c]
2357      2.3.x does old  GEX, too; report jakob@
2358    - markus@cvs.openbsd.org 2001/04/05 10:39:03
2359      [compress.c compress.h packet.c]
2360      reset compress state per direction when rekeying.
2361    - markus@cvs.openbsd.org 2001/04/05 10:39:48
2362      [version.h]
2363      temporary version 2.5.4 (supports rekeying).
2364      this is not an official release.
2365    - markus@cvs.openbsd.org 2001/04/05 10:42:57
2366      [auth-chall.c authfd.c channels.c clientloop.c kex.c kexgex.c key.c
2367       mac.c packet.c serverloop.c sftp-client.c sftp-client.h sftp-glob.c
2368       sftp-glob.h sftp-int.c sftp-server.c sftp.c ssh-keygen.c sshconnect.c
2369       sshconnect2.c sshd.c]
2370      fix whitespace: unexpand + trailing spaces.
2371    - markus@cvs.openbsd.org 2001/04/05 11:09:17
2372      [clientloop.c compat.c compat.h]
2373      add SSH_BUG_NOREKEY and detect broken (=all old) openssh versions.
2374    - markus@cvs.openbsd.org 2001/04/05 15:45:43
2375      [ssh.1]
2376      ssh defaults to protocol v2; from quisar@quisar.ambre.net
2377    - stevesk@cvs.openbsd.org 2001/04/05 15:48:18
2378      [canohost.c canohost.h session.c]
2379      move get_remote_name_or_ip() to canohost.[ch]; for portable.  ok markus@
2380    - markus@cvs.openbsd.org 2001/04/05 20:01:10
2381      [clientloop.c]
2382      for ~R print message if server does not support rekeying. (and fix ~R).
2383    - markus@cvs.openbsd.org 2001/04/05 21:02:46
2384      [buffer.c]
2385      better error message
2386    - markus@cvs.openbsd.org 2001/04/05 21:05:24
2387      [clientloop.c ssh.c]
2388      don't request a session for 'ssh -N', pointed out slade@shore.net
2389
2390 20010405
2391  - OpenBSD CVS Sync
2392    - markus@cvs.openbsd.org 2001/04/04 09:48:35
2393      [kex.c kex.h kexdh.c kexgex.c packet.c sshconnect2.c sshd.c]
2394      don't sent multiple kexinit-requests.
2395      send newkeys, block while waiting for newkeys.
2396      fix comments.
2397    - markus@cvs.openbsd.org 2001/04/04 14:34:58
2398      [clientloop.c kex.c kex.h serverloop.c sshconnect2.c sshd.c]
2399      enable server side rekeying + some rekey related clientup.
2400      todo: we should not send any non-KEX messages after we send KEXINIT
2401    - markus@cvs.openbsd.org 2001/04/04 15:50:55
2402      [compat.c]
2403      f-secure 1.3.2 does not handle IGNORE; from milliondl@ornl.gov
2404    - markus@cvs.openbsd.org 2001/04/04 20:25:38
2405      [channels.c channels.h clientloop.c kex.c kex.h serverloop.c
2406       sshconnect2.c sshd.c]
2407      more robust rekeying
2408      don't send channel data after rekeying is started.
2409    - markus@cvs.openbsd.org 2001/04/04 20:32:56
2410      [auth2.c]
2411      we don't care about missing bannerfiles; from tsoome@ut.ee, ok deraadt@
2412    - markus@cvs.openbsd.org 2001/04/04 22:04:35
2413      [kex.c kexgex.c serverloop.c]
2414      parse full kexinit packet.
2415      make server-side more robust, too.
2416    - markus@cvs.openbsd.org 2001/04/04 23:09:18
2417      [dh.c kex.c packet.c]
2418      clear+free keys,iv for rekeying.
2419      + fix DH mem leaks. ok niels@
2420  - (stevesk) don't use vhangup() if defined(HAVE_DEV_PTMX); also removes
2421     BROKEN_VHANGUP
2422
2423 20010404
2424  - OpenBSD CVS Sync
2425    - deraadt@cvs.openbsd.org 2001/04/02 17:32:23
2426      [ssh-agent.1]
2427      grammar; slade@shore.net
2428    - stevesk@cvs.openbsd.org 2001/04/03 13:56:11
2429      [sftp-glob.c ssh-agent.c ssh-keygen.c]
2430      free() -> xfree()
2431    - markus@cvs.openbsd.org 2001/04/03 19:53:29
2432      [dh.c dh.h kex.c kex.h sshconnect2.c sshd.c]
2433      move kex to kex*.c, used dispatch_set() callbacks for kex. should
2434      make rekeying easier.
2435    - todd@cvs.openbsd.org 2001/04/03 21:19:38
2436      [ssh_config]
2437      id_rsa1/2 -> id_rsa; ok markus@
2438    - markus@cvs.openbsd.org 2001/04/03 23:32:12
2439      [kex.c kex.h packet.c sshconnect2.c sshd.c]
2440      undo parts of recent my changes: main part of keyexchange does not
2441      need dispatch-callbacks, since application data is delayed until
2442      the keyexchange completes (if i understand the drafts correctly).
2443      add some infrastructure for re-keying.
2444    - markus@cvs.openbsd.org 2001/04/04 00:06:54
2445      [clientloop.c sshconnect2.c]
2446      enable client rekeying
2447         (1) force rekeying with ~R, or
2448         (2) if the server requests rekeying.
2449      works against ssh-2.0.12/2.0.13/2.1.0/2.2.0/2.3.0/2.3.1/2.4.0
2450  - (bal) Oops.. Missed including kexdh.c and kexgex.c in OpenBSD sync.
2451
2452 20010403
2453  - OpenBSD CVS Sync
2454    - stevesk@cvs.openbsd.org 2001/04/02 14:15:31
2455      [sshd.8]
2456      typo; ok markus@
2457    - stevesk@cvs.openbsd.org 2001/04/02 14:20:23
2458      [readconf.c servconf.c]
2459      correct comment; ok markus@
2460  - (stevesk) nchan.c: remove ostate checks and add EINVAL to
2461     shutdown(SHUT_RD) error() bypass for HP-UX.
2462
2463 20010402
2464  - (stevesk) log.c openbsd sync; missing newlines
2465  - (stevesk) sshpty.h openbsd sync; PTY_H -> SSHPTY_H
2466
2467 20010330
2468  - (djm) Another openbsd-compat/glob.c sync
2469  - (djm) OpenBSD CVS Sync
2470    - provos@cvs.openbsd.org 2001/03/28 21:59:41
2471      [kex.c kex.h sshconnect2.c sshd.c]
2472      forgot to include min and max params in hash, okay markus@
2473    - provos@cvs.openbsd.org 2001/03/28 22:04:57
2474      [dh.c]
2475      more sanity checking on primes file
2476    - markus@cvs.openbsd.org 2001/03/28 22:43:31
2477      [auth.h auth2.c auth2-chall.c]
2478      check auth_root_allowed for kbd-int auth, too.
2479    - provos@cvs.openbsd.org 2001/03/29 14:24:59
2480      [sshconnect2.c]
2481      use recommended defaults
2482    - stevesk@cvs.openbsd.org 2001/03/29 21:06:21
2483      [sshconnect2.c sshd.c]
2484      need to set both STOC and CTOS for SSH_BUG_BIGENDIANAES; ok markus@
2485    - markus@cvs.openbsd.org 2001/03/29 21:17:40
2486      [dh.c dh.h kex.c kex.h]
2487      prepare for rekeying: move DH code to dh.c
2488    - djm@cvs.openbsd.org 2001/03/29 23:42:01
2489      [sshd.c]
2490      Protocol 1 key regeneration log => verbose, some KNF; ok markus@
2491
2492 20010329
2493  - OpenBSD CVS Sync
2494    - stevesk@cvs.openbsd.org 2001/03/26 15:47:59
2495      [ssh.1]
2496      document more defaults; misc. cleanup.  ok markus@
2497    - markus@cvs.openbsd.org 2001/03/26 23:12:42
2498      [authfile.c]
2499      KNF
2500    - markus@cvs.openbsd.org 2001/03/26 23:23:24
2501      [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
2502      try to read private f-secure ssh v2 rsa keys.
2503    - markus@cvs.openbsd.org 2001/03/27 10:34:08
2504      [ssh-rsa.c sshd.c]
2505      use EVP_get_digestbynid, reorder some calls and fix missing free.
2506    - markus@cvs.openbsd.org 2001/03/27 10:57:00
2507      [compat.c compat.h ssh-rsa.c]
2508      some older systems use NID_md5 instead of NID_sha1 for RSASSA-PKCS1-v1_5
2509      signatures in SSH protocol 2, ok djm@
2510    - provos@cvs.openbsd.org 2001/03/27 17:46:50
2511      [compat.c compat.h dh.c dh.h ssh2.h sshconnect2.c sshd.c version.h]
2512      make dh group exchange more flexible, allow min and max group size,
2513      okay markus@, deraadt@
2514    - stevesk@cvs.openbsd.org 2001/03/28 19:56:23
2515      [scp.c]
2516      start to sync scp closer to rcp; ok markus@
2517    - stevesk@cvs.openbsd.org 2001/03/28 20:04:38
2518      [scp.c]
2519      usage more like rcp and add missing -B to usage; ok markus@
2520    - markus@cvs.openbsd.org 2001/03/28 20:50:45
2521      [sshd.c]
2522      call refuse() before close(); from olemx@ans.pl
2523
2524 20010328
2525  - (djm) Reorder tests and library inclusion for Krb4/AFS to try to
2526    resolve linking conflicts with libcrypto. Report and suggested fix
2527    from Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
2528  - (djm) Work around Solaris' broken struct dirent. Diagnosis and suggested
2529    fix from Philippe Levan <levan@epix.net>
2530  - (djm) Rework krbIV tests to get us closer to building on Redhat. Still
2531    doesn't work because of conflicts between krbIV's and OpenSSL's des.h
2532  - (djm) Sync openbsd-compat/glob.c
2533
2534 20010327
2535  - Attempt sync with sshlogin.c w/ OpenBSD (mainly CVS ID)
2536  - Fix pointer issues in waitpid() and wait() replaces.  Patch by Lutz
2537    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2538  - OpenBSD CVS Sync
2539    - djm@cvs.openbsd.org 2001/03/25 00:01:34
2540      [session.c]
2541      shorten; ok markus@
2542    - stevesk@cvs.openbsd.org 2001/03/25 13:16:11
2543      [servconf.c servconf.h session.c sshd.8 sshd_config]
2544      PrintLastLog option; from chip@valinux.com with some minor
2545      changes by me.  ok markus@
2546    - markus@cvs.openbsd.org 2001/03/26 08:07:09
2547      [authfile.c authfile.h ssh-add.c ssh-keygen.c ssh.c sshconnect.c
2548       sshconnect.h sshconnect1.c sshconnect2.c sshd.c]
2549      simpler key load/save interface, see authfile.h
2550  - (djm) Reestablish PAM credentials (which can be supplemental group
2551    memberships) after initgroups() blows them away. Report and suggested
2552    fix from Nalin Dahyabhai <nalin@redhat.com>
2553
2554 20010324
2555  - Fixed permissions ssh-keyscan.  Thanks to Christopher Linn <celinn@mtu.edu>.
2556  - OpenBSD CVS Sync
2557    - djm@cvs.openbsd.org 2001/03/23 11:04:07
2558      [compat.c compat.h sshconnect2.c sshd.c]
2559      Compat for OpenSSH with broken Rijndael/AES. ok markus@
2560    - markus@cvs.openbsd.org 2001/03/23 12:02:49
2561      [auth1.c]
2562      authctxt is now passed to do_authenticated
2563    - markus@cvs.openbsd.org 2001/03/23 13:10:57
2564      [sftp-int.c]
2565      fix put, upload to _absolute_ path, ok djm@
2566    - markus@cvs.openbsd.org 2001/03/23 14:28:32
2567      [session.c sshd.c]
2568      ignore SIGPIPE, restore in child, fixes x11-fwd crashes; with djm@
2569  - (djm) Pull out our own SIGPIPE hacks
2570
2571 20010323
2572  - OpenBSD CVS Sync
2573    - deraadt@cvs.openbsd.org 2001/03/22 20:22:55
2574      [sshd.c]
2575      do not place linefeeds in buffer
2576
2577 20010322
2578  - (djm) Better AIX no tty fix, spotted by Gert Doering <gert@greenie.muc.de>
2579  - (bal) version.c CVS ID resync
2580  - (bal) auth-chall.c auth-passwd.c auth.h auth1.c auth2.c session.c CVS ID
2581    resync
2582  - (bal) scp.c CVS ID resync
2583  - OpenBSD CVS Sync
2584    - markus@cvs.openbsd.org 2001/03/20 19:10:16
2585      [readconf.c]
2586      default to SSH protocol version 2
2587    - markus@cvs.openbsd.org 2001/03/20 19:21:21
2588      [session.c]
2589      remove unused arg
2590    - markus@cvs.openbsd.org 2001/03/20 19:21:21
2591      [session.c]
2592      remove unused arg
2593    - markus@cvs.openbsd.org 2001/03/21 11:43:45
2594      [auth1.c auth2.c session.c session.h]
2595      merge common ssh v1/2 code
2596    - jakob@cvs.openbsd.org 2001/03/21 14:20:45
2597      [ssh-keygen.c]
2598      add -B flag to usage
2599    - markus@cvs.openbsd.org 2001/03/21 21:06:30
2600      [session.c]
2601      missing init; from mib@unimelb.edu.au
2602
2603 20010321
2604  - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
2605    VanDevender <stevev@darkwing.uoregon.edu>
2606  - (djm) Make sure pam_retval is initialised on call to pam_end. Patch
2607    from Solar Designer <solar@openwall.com>
2608  - (djm) Don't loop forever when changing password via PAM. Patch
2609    from Solar Designer <solar@openwall.com>
2610  - (djm) Generate config files before build
2611  - (djm) Correctly handle SIA and AIX when no tty present. Spotted and
2612    suggested fix from Mike Battersby <mib@unimelb.edu.au>
2613
2614 20010320
2615  - (bal) glob.c update to added GLOB_LIMITS (OpenBSD CVS).
2616  - (bal) glob.c update to set gl_pathv to NULL (OpenBSD CVS).
2617  - (bal) Oops.  Missed globc.h change (OpenBSD CVS).
2618  - (djm) OpenBSD CVS Sync
2619    - markus@cvs.openbsd.org 2001/03/19 17:07:23
2620      [auth.c readconf.c]
2621      undo /etc/shell and proto 2,1 change for openssh-2.5.2
2622    - markus@cvs.openbsd.org 2001/03/19 17:12:10
2623      [version.h]
2624      version 2.5.2
2625  - (djm) Update RPM spec version
2626  - (djm) Release 2.5.2p1
2627 - tim@mindrot.org 2001/03/19 18:33:47 [defines.h]
2628   change S_ISLNK macro to work for UnixWare 2.03
2629 - tim@mindrot.org 2001/03/19 20:45:11 [openbsd-compat/glob.c]
2630   add get_arg_max(). Use sysconf() if ARG_MAX is not defined
2631
2632 20010319
2633  - (djm) Seed PRNG at startup, rather than waiting for arc4random calls to
2634    do it implicitly.
2635  - (djm) Add getusershell() functions from OpenBSD CVS
2636  - OpenBSD CVS Sync
2637    - markus@cvs.openbsd.org 2001/03/18 12:07:52
2638      [auth-options.c]
2639      ignore permitopen="host:port" if AllowTcpForwarding==no
2640  - (djm) Make scp work on systems without 64-bit ints
2641  - tim@mindrot.org 2001/03/18 18:28:39 [defines.h]
2642    move HAVE_LONG_LONG_INT where it works
2643  - (bal) Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix
2644    stuff.  Change suggested by Mark Miller <markm@swoon.net>
2645  - (bal) Small fix to scp.  %lu vs %ld
2646  - (bal) NeXTStep lacks S_ISLNK.  Plus split up S_IS*
2647  - (djm) OpenBSD CVS Sync
2648    - djm@cvs.openbsd.org     2001/03/19 03:52:51
2649      [sftp-client.c]
2650      Report ssh connection closing correctly; ok deraadt@
2651    - deraadt@cvs.openbsd.org 2001/03/18 23:30:55
2652      [compat.c compat.h sshd.c]
2653      specifically version match on ssh scanners.  do not log scan
2654      information to the console
2655    - djm@cvs.openbsd.org      2001/03/19 12:10:17
2656      [sshd.8]
2657      Document permitopen authorized_keys option; ok markus@
2658    - djm@cvs.openbsd.org     2001/03/19 05:49:52
2659      [ssh.1]
2660      document PreferredAuthentications option; ok markus@
2661  - (bal) Minor NeXT fixed.  Forgot to #undef NGROUPS_MAX
2662
2663 20010318
2664  - (bal) Fixed scp type casing issue which causes "scp: protocol error:
2665    size not delimited" fatal errors when tranfering.
2666  - OpenBSD CVS Sync
2667    - markus@cvs.openbsd.org 2001/03/17 17:27:59
2668      [auth.c]
2669      check /etc/shells, too
2670  - tim@mindrot.org 2001/03/17 18:45:25 [compat.c]
2671      openbsd-compat/fake-regex.h
2672
2673 20010317
2674  - Support usrinfo() on AIX. Based on patch from Gert Doering
2675    <gert@greenie.muc.de>
2676  - OpenBSD CVS Sync
2677    - markus@cvs.openbsd.org 2001/03/15 15:05:59
2678      [scp.c]
2679      use %lld in printf, ok millert@/deraadt@; report from ssh@client.fi
2680    - markus@cvs.openbsd.org 2001/03/15 22:07:08
2681      [session.c]
2682      pass Session to do_child + KNF
2683    - djm@cvs.openbsd.org 2001/03/16 08:16:18
2684      [sftp-client.c sftp-client.h sftp-glob.c sftp-int.c]
2685      Revise globbing for get/put to be more shell-like. In particular,
2686      "get/put file* directory/" now works. ok markus@
2687    - markus@cvs.openbsd.org 2001/03/16 09:55:53
2688      [sftp-int.c]
2689      fix memset and whitespace
2690    - markus@cvs.openbsd.org 2001/03/16 13:44:24
2691      [sftp-int.c]
2692      discourage strcat/strcpy
2693    - markus@cvs.openbsd.org 2001/03/16 19:06:30
2694      [auth-options.c channels.c channels.h serverloop.c session.c]
2695      implement "permitopen" key option, restricts -L style forwarding to
2696      to specified host:port pairs. based on work by harlan@genua.de
2697  - Check for gl_matchc support in glob_t and fall back to the
2698    openbsd-compat/glob.[ch] support if it does not exist.
2699
2700 20010315
2701  - OpenBSD CVS Sync
2702    - markus@cvs.openbsd.org 2001/03/14 08:57:14
2703      [sftp-client.c]
2704      Wall
2705    - markus@cvs.openbsd.org 2001/03/14 15:15:58
2706      [sftp-int.c]
2707      add version command
2708    - deraadt@cvs.openbsd.org 2001/03/14 22:50:25
2709      [sftp-server.c]
2710      note no getopt()
2711  - (stevesk) ssh-keyscan.c: specify "openbsd-compat/fake-queue.h"
2712  - (bal) Cygwin README change by Corinna Vinschen <vinschen@redhat.com>
2713
2714 20010314
2715  - OpenBSD CVS Sync
2716    - markus@cvs.openbsd.org 2001/03/13 17:34:42
2717      [auth-options.c]
2718      missing xfree, deny key on parse error; ok stevesk@
2719    - djm@cvs.openbsd.org 2001/03/13 22:42:54
2720      [sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c]
2721      sftp client filename globbing for get, put, ch{mod,grp,own}. ok markus@
2722  - (bal) Fix strerror() in bsd-misc.c
2723  - (djm) Add replacement glob() from OpenBSD libc if the system glob is
2724    missing or lacks the GLOB_ALTDIRFUNC extension
2725  - (djm) Remove -I$(srcdir)/openbsd-compat from CFLAGS, refer to headers
2726    relatively. Avoids conflict between glob.h and /usr/include/glob.h
2727
2728 20010313
2729  - OpenBSD CVS Sync
2730    - markus@cvs.openbsd.org 2001/03/12 22:02:02
2731      [key.c key.h ssh-add.c ssh-keygen.c sshconnect.c sshconnect2.c]
2732      remove old key_fingerprint interface, s/_ex//
2733
2734 20010312
2735  - OpenBSD CVS Sync
2736    - markus@cvs.openbsd.org 2001/03/11 13:25:36
2737      [auth2.c key.c]
2738      debug
2739    - jakob@cvs.openbsd.org 2001/03/11 15:03:16
2740      [key.c key.h]
2741      add improved fingerprint functions. based on work by Carsten
2742      Raskgaard <cara@int.tele.dk> and modified by me. ok markus@.
2743    - jakob@cvs.openbsd.org 2001/03/11 15:04:16
2744      [ssh-keygen.1 ssh-keygen.c]
2745      print both md5, sha1 and bubblebabble fingerprints when using
2746      ssh-keygen -l -v. ok markus@.
2747    - jakob@cvs.openbsd.org 2001/03/11 15:13:09
2748      [key.c]
2749      cleanup & shorten some var names key_fingerprint_bubblebabble.
2750    - deraadt@cvs.openbsd.org 2001/03/11 16:39:03
2751      [ssh-keygen.c]
2752      KNF, and SHA1 binary output is just creeping featurism
2753  - tim@mindrot.org 2001/03/11 17:29:32 [configure.in]
2754    test if snprintf() supports %ll
2755    add /dev to search path for PRNGD/EGD socket
2756    fix my mistake in USER_PATH test program
2757  - OpenBSD CVS Sync
2758    - markus@cvs.openbsd.org 2001/03/11 18:29:51
2759      [key.c]
2760      style+cleanup
2761    - markus@cvs.openbsd.org 2001/03/11 22:33:24
2762      [ssh-keygen.1 ssh-keygen.c]
2763      remove -v again. use -B instead for bubblebabble. make -B consistent
2764      with -l and make -B work with /path/to/known_hosts. ok deraadt@
2765  - (djm) Bump portable version number for generating test RPMs
2766  - (djm) Add "static_openssl" RPM build option, remove rsh build dependency
2767  - (bal) Reorder includes in Makefile.
2768
2769 20010311
2770  - OpenBSD CVS Sync
2771    - markus@cvs.openbsd.org 2001/03/10 12:48:27
2772      [sshconnect2.c]
2773      ignore nonexisting private keys; report rjmooney@mediaone.net
2774    - deraadt@cvs.openbsd.org 2001/03/10 12:53:51
2775      [readconf.c ssh_config]
2776      default to SSH2, now that m68k runs fast
2777    - stevesk@cvs.openbsd.org 2001/03/10 15:02:05
2778      [ttymodes.c ttymodes.h]
2779      remove unused sgtty macros; ok markus@
2780    - deraadt@cvs.openbsd.org 2001/03/10 15:31:00
2781      [compat.c compat.h sshconnect.c]
2782      all known netscreen ssh versions, and older versions of OSU ssh cannot
2783      handle password padding (newer OSU is fixed)
2784  - tim@mindrot.org 2001/03/10 16:33:42 [configure.in Makefile.in sshd_config]
2785    make sure $bindir is in USER_PATH so scp will work
2786  - OpenBSD CVS Sync
2787    - markus@cvs.openbsd.org 2001/03/10 17:51:04
2788      [kex.c match.c match.h readconf.c readconf.h sshconnect2.c]
2789      add PreferredAuthentications
2790
2791 20010310
2792  - OpenBSD CVS Sync
2793    - deraadt@cvs.openbsd.org 2001/03/09 03:14:39
2794      [ssh-keygen.c]
2795      create *.pub files with umask 0644, so that you can mv them to
2796      authorized_keys
2797    - deraadt@cvs.openbsd.org 2001/03/09 12:30:29
2798      [sshd.c]
2799      typo; slade@shore.net
2800  - Removed log.o from sftp client.  Not needed.
2801
2802 20010309
2803  - OpenBSD CVS Sync
2804    - stevesk@cvs.openbsd.org 2001/03/08 18:47:12
2805      [auth1.c]
2806      unused; ok markus@
2807    - stevesk@cvs.openbsd.org 2001/03/08 20:44:48
2808      [sftp.1]
2809      spelling, cleanup; ok deraadt@
2810    - markus@cvs.openbsd.org 2001/03/08 21:42:33
2811      [compat.c compat.h readconf.h ssh.c sshconnect1.c sshconnect2.c]
2812      implement client side of SSH2_MSG_USERAUTH_PK_OK (test public key ->
2813      no need to do enter passphrase or do expensive sign operations if the
2814      server does not accept key).
2815
2816 20010308
2817  - OpenBSD CVS Sync
2818    - djm@cvs.openbsd.org 2001/03/07 10:11:23
2819      [sftp-client.c sftp-client.h sftp-int.c sftp-server.c sftp.1 sftp.c sftp.h]
2820      Support for new draft (draft-ietf-secsh-filexfer-01). New symlink handling
2821      functions and small protocol change.
2822    - markus@cvs.openbsd.org 2001/03/08 00:15:48
2823      [readconf.c ssh.1]
2824      turn off useprivilegedports by default. only rhost-auth needs
2825      this. older sshd's may need this, too.
2826  - (stevesk) Reliant Unix (SNI) needs HAVE_BOGUS_SYS_QUEUE_H;
2827    Dirk Markwardt <D.Markwardt@tu-bs.de>
2828
2829 20010307
2830  - (bal) OpenBSD CVS Sync
2831    - deraadt@cvs.openbsd.org 2001/03/06 06:11:18
2832      [ssh-keyscan.c]
2833      appease gcc
2834    - deraadt@cvs.openbsd.org 2001/03/06 06:11:44
2835      [sftp-int.c sftp.1 sftp.c]
2836      sftp -b batchfile; mouring@etoh.eviladmin.org
2837    - deraadt@cvs.openbsd.org 2001/03/06 15:10:42
2838      [sftp.1]
2839      order things
2840    - deraadt@cvs.openbsd.org 2001/03/07 01:19:06
2841      [ssh.1 sshd.8]
2842      the name "secure shell" is boring, noone ever uses it
2843    - deraadt@cvs.openbsd.org 2001/03/07 04:05:58
2844      [ssh.1]
2845      removed dated comment
2846  - Cygwin contrib improvements from Corinna Vinschen <vinschen@redhat.com>
2847
2848 20010306
2849  - (bal) OpenBSD CVS Sync
2850    - deraadt@cvs.openbsd.org 2001/03/05 14:28:47
2851      [sshd.8]
2852      alpha order; jcs@rt.fm
2853    - stevesk@cvs.openbsd.org 2001/03/05 15:44:51
2854      [servconf.c]
2855      sync error message; ok markus@
2856    - deraadt@cvs.openbsd.org 2001/03/05 15:56:16
2857      [myproposal.h ssh.1]
2858      switch to aes128-cbc/hmac-md5 by default in SSH2 -- faster;
2859      provos & markus ok
2860    - deraadt@cvs.openbsd.org 2001/03/05 16:07:15
2861      [sshd.8]
2862      detail default hmac setup too
2863    - markus@cvs.openbsd.org 2001/03/05 17:17:21
2864      [kex.c kex.h sshconnect2.c sshd.c]
2865      generate a 2*need size (~300 instead of 1024/2048) random private
2866      exponent during the DH key agreement. according to Niels (the great
2867      german advisor) this is safe since /etc/primes contains strong
2868      primes only.
2869
2870      References:
2871              P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key
2872              agreement with short exponents, In Advances in Cryptology
2873              - EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343.
2874    - stevesk@cvs.openbsd.org 2001/03/05 17:40:48
2875      [ssh.1]
2876      more ssh_known_hosts2 documentation; ok markus@
2877    - stevesk@cvs.openbsd.org 2001/03/05 17:58:22
2878      [dh.c]
2879      spelling
2880    - deraadt@cvs.openbsd.org 2001/03/06 00:33:04
2881      [authfd.c cli.c ssh-agent.c]
2882      EINTR/EAGAIN handling is required in more cases
2883    - millert@cvs.openbsd.org 2001/03/06 01:06:03
2884      [ssh-keyscan.c]
2885      Don't assume we wil get the version string all in one read().
2886      deraadt@ OK'd
2887    - millert@cvs.openbsd.org 2001/03/06 01:08:27
2888      [clientloop.c]
2889      If read() fails with EINTR deal with it the same way we treat EAGAIN
2890
2891 20010305
2892  - (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
2893  - (bal) CVS ID touch up on sftp-int.c
2894  - (bal) CVS ID touch up on uuencode.c
2895  - (bal) CVS ID touch up on auth2.c, serverloop.c, session.c & sshd.c
2896  - (bal) OpenBSD CVS Sync
2897    - deraadt@cvs.openbsd.org 2001/02/17 23:48:48
2898      [sshd.8]
2899      it's the OpenSSH one
2900    - deraadt@cvs.openbsd.org 2001/02/21 07:37:04
2901      [ssh-keyscan.c]
2902      inline -> __inline__, and some indent
2903    - deraadt@cvs.openbsd.org 2001/02/21 09:05:54
2904      [authfile.c]
2905      improve fd handling
2906    - deraadt@cvs.openbsd.org 2001/02/21 09:12:56
2907      [sftp-server.c]
2908      careful with & and &&; markus ok
2909    - stevesk@cvs.openbsd.org 2001/02/21 21:14:04
2910      [ssh.c]
2911      -i supports DSA identities now; ok markus@
2912    - deraadt@cvs.openbsd.org 2001/02/22 04:29:37
2913      [servconf.c]
2914      grammar; slade@shore.net
2915    - deraadt@cvs.openbsd.org 2001/02/22 06:43:55
2916      [ssh-keygen.1 ssh-keygen.c]
2917      document -d, and -t defaults to rsa1
2918    - deraadt@cvs.openbsd.org 2001/02/22 08:03:51
2919      [ssh-keygen.1 ssh-keygen.c]
2920      bye bye -d
2921    - deraadt@cvs.openbsd.org 2001/02/22 18:09:06
2922      [sshd_config]
2923      activate RSA 2 key
2924    - markus@cvs.openbsd.org 2001/02/22 21:57:27
2925      [ssh.1 sshd.8]
2926      typos/grammar from matt@anzen.com
2927    - markus@cvs.openbsd.org 2001/02/22 21:59:44
2928      [auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c]
2929      use pwcopy in ssh.c, too
2930    - markus@cvs.openbsd.org 2001/02/23 15:34:53
2931      [serverloop.c]
2932      debug2->3
2933    - markus@cvs.openbsd.org 2001/02/23 18:15:13
2934      [sshd.c]
2935      the random session key depends now on the session_key_int
2936      sent by the 'attacker'
2937              dig1 = md5(cookie|session_key_int);
2938              dig2 = md5(dig1|cookie|session_key_int);
2939              fake_session_key = dig1|dig2;
2940      this change is caused by a mail from anakin@pobox.com
2941      patch based on discussions with my german advisor niels@openbsd.org
2942    - deraadt@cvs.openbsd.org 2001/02/24 10:37:55
2943      [readconf.c]
2944      look for id_rsa by default, before id_dsa
2945    - deraadt@cvs.openbsd.org 2001/02/24 10:37:26
2946      [sshd_config]
2947      ssh2 rsa key before dsa key
2948    - markus@cvs.openbsd.org 2001/02/27 10:35:27
2949      [packet.c]
2950      fix random padding
2951    - markus@cvs.openbsd.org 2001/02/27 11:00:11
2952      [compat.c]
2953      support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
2954    - deraadt@cvs.openbsd.org 2001/02/28 05:34:28
2955      [misc.c]
2956      pull in protos
2957    - deraadt@cvs.openbsd.org 2001/02/28 05:36:28
2958      [sftp.c]
2959      do not kill the subprocess on termination (we will see if this helps
2960      things or hurts things)
2961    - markus@cvs.openbsd.org 2001/02/28 08:45:39
2962      [clientloop.c]
2963      fix byte counts for ssh protocol v1
2964    - markus@cvs.openbsd.org 2001/02/28 08:54:55
2965      [channels.c nchan.c nchan.h]
2966      make sure remote stderr does not get truncated.
2967      remove closed fd's from the select mask.
2968    - markus@cvs.openbsd.org 2001/02/28 09:57:07
2969      [packet.c packet.h sshconnect2.c]
2970      in ssh protocol v2 use ignore messages for padding (instead of
2971      trailing \0).
2972    - markus@cvs.openbsd.org 2001/02/28 12:55:07
2973      [channels.c]
2974      unify debug messages
2975    - deraadt@cvs.openbsd.org 2001/02/28 17:52:54
2976      [misc.c]
2977      for completeness, copy pw_gecos too
2978    - markus@cvs.openbsd.org 2001/02/28 21:21:41
2979      [sshd.c]
2980      generate a fake session id, too
2981    - markus@cvs.openbsd.org 2001/02/28 21:27:48
2982      [channels.c packet.c packet.h serverloop.c]
2983      use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message
2984      use random content in ignore messages.
2985    - markus@cvs.openbsd.org 2001/02/28 21:31:32
2986      [channels.c]
2987      typo
2988    - deraadt@cvs.openbsd.org 2001/03/01 02:11:25
2989      [authfd.c]
2990      split line so that p will have an easier time next time around
2991    - deraadt@cvs.openbsd.org 2001/03/01 02:29:04
2992      [ssh.c]
2993      shorten usage by a line
2994    - deraadt@cvs.openbsd.org 2001/03/01 02:45:10
2995      [auth-rsa.c auth2.c deattack.c packet.c]
2996      KNF
2997    - deraadt@cvs.openbsd.org 2001/03/01 03:38:33
2998      [cli.c cli.h rijndael.h ssh-keyscan.1]
2999      copyright notices on all source files
3000    - markus@cvs.openbsd.org 2001/03/01 22:46:37
3001      [ssh.c]
3002      don't truncate remote ssh-2 commands; from mkubita@securities.cz
3003      use min, not max for logging, fixes overflow.
3004    - deraadt@cvs.openbsd.org 2001/03/02 06:21:01
3005      [sshd.8]
3006      explain SIGHUP better
3007    - deraadt@cvs.openbsd.org 2001/03/02 09:42:49
3008      [sshd.8]
3009      doc the dsa/rsa key pair files
3010    - deraadt@cvs.openbsd.org 2001/03/02 18:54:31
3011      [atomicio.c atomicio.h auth-chall.c auth.c auth2-chall.c crc32.h
3012       scp.c serverloop.c session.c sftp-server.8 sftp.1 ssh-add.1 ssh-add.c
3013       ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh.1 sshd.8]
3014      make copyright lines the same format
3015    - deraadt@cvs.openbsd.org 2001/03/03 06:53:12
3016      [ssh-keyscan.c]
3017      standard theo sweep
3018    - millert@cvs.openbsd.org 2001/03/03 21:19:41
3019      [ssh-keyscan.c]
3020      Dynamically allocate read_wait and its copies.  Since maxfd is
3021      based on resource limits it is often (usually?) larger than FD_SETSIZE.
3022    - millert@cvs.openbsd.org 2001/03/03 21:40:30
3023      [sftp-server.c]
3024      Dynamically allocate fd_set; deraadt@ OK
3025    - millert@cvs.openbsd.org 2001/03/03 21:41:07
3026      [packet.c]
3027      Dynamically allocate fd_set; deraadt@ OK
3028    - deraadt@cvs.openbsd.org 2001/03/03 22:07:50
3029      [sftp-server.c]
3030      KNF
3031    - markus@cvs.openbsd.org 2001/03/03 23:52:22
3032      [sftp.c]
3033      clean up arg processing. based on work by Christophe_Moret@hp.com
3034    - markus@cvs.openbsd.org 2001/03/03 23:59:34
3035      [log.c ssh.c]
3036      log*.c -> log.c
3037    - markus@cvs.openbsd.org 2001/03/04 00:03:59
3038      [channels.c]
3039      debug1->2
3040    - stevesk@cvs.openbsd.org 2001/03/04 10:57:53
3041      [ssh.c]
3042      add -m to usage; ok markus@
3043    - stevesk@cvs.openbsd.org 2001/03/04 11:04:41
3044      [sshd.8]
3045      small cleanup and clarify for PermitRootLogin; ok markus@
3046    - stevesk@cvs.openbsd.org 2001/03/04 11:16:06
3047      [servconf.c sshd.8]
3048      kill obsolete RandomSeed; ok markus@ deraadt@
3049    - stevesk@cvs.openbsd.org 2001/03/04 12:54:04
3050      [sshd.8]
3051      spelling
3052    - millert@cvs.openbsd.org 2001/03/04 17:42:28
3053      [authfd.c channels.c dh.c log.c readconf.c servconf.c sftp-int.c
3054       ssh.c sshconnect.c sshd.c]
3055      log functions should not be passed strings that end in newline as they
3056      get passed on to syslog() and when logging to stderr, do_log() appends
3057      its own newline.
3058    - deraadt@cvs.openbsd.org 2001/03/04 18:21:28
3059      [sshd.8]
3060      list SSH2 ciphers
3061  - (bal) Put HAVE_PW_CLASS_IN_PASSWD back into pwcopy()
3062  - (bal) Fix up logging since it changed.  removed log-*.c
3063  - (djm) Fix up LOG_AUTHPRIV for systems that have it
3064  - (stevesk) OpenBSD sync:
3065    - deraadt@cvs.openbsd.org 2001/03/05 08:37:27
3066      [ssh-keyscan.c]
3067      skip inlining, why bother
3068  - (stevesk) sftp.c: handle __progname
3069
3070 20010304
3071  - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
3072  - (bal) Updated contrib/README to remove 'make-ssh-known-hosts' and
3073    give Mark Roth credit for mdoc2man.pl
3074
3075 20010303
3076  - (djm) Remove make-ssh-known-hosts.pl, ssh-keyscan is better.
3077  - (djm) Document PAM ChallengeResponseAuthentication in sshd.8
3078  - (djm) Disable and comment ChallengeResponseAuthentication in sshd_config
3079  - (djm) Allow PRNGd entropy collection from localhost TCP socket. Replace
3080    "--with-egd-pool" configure option with "--with-prngd-socket" and
3081    "--with-prngd-port" options. Debugged and improved by Lutz Jaenicke
3082    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3083
3084 20010301
3085  - (djm) Properly add -lcrypt if needed.
3086  - (djm) Force standard PAM conversation function in a few more places.
3087    Patch from Redhat 2.5.1p1-2 RPM, probably Nalin Dahyabhai
3088    <nalin@redhat.com>
3089  - (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen
3090    <vinschen@redhat.com>
3091  - (djm) Released 2.5.1p2
3092
3093 20010228
3094  - (djm) Detect endianness in configure and use it in rijndael.c. Fixes
3095    "Bad packet length" bugs.
3096  - (djm) Fully revert PAM session patch (again). All PAM session init is
3097    now done before the final fork().
3098  - (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
3099  - (djm) Remove /tmp from EGD socket search list
3100
3101 20010227
3102  - (bal) Applied shutdown() patch for sftp.c by  Corinna Vinschen
3103    <vinschen@redhat.com>
3104  - (bal) OpenBSD Sync
3105    - markus@cvs.openbsd.org 2001/02/23 15:37:45
3106      [session.c]
3107      handle SSH_PROTOFLAG_SCREEN_NUMBER for buggy clients
3108  - (bal) sshd.init support for all Redhat release.  Patch by Jim Knoble
3109    <jmknoble@jmknoble.cx>
3110  - (djm) Fix up POSIX saved uid support. Report from Mark Miller
3111    <markm@swoon.net>
3112  - (djm) Search for -lcrypt on FreeBSD too
3113  - (djm) fatal() on OpenSSL version mismatch
3114  - (djm) Move PAM init to after fork for non-Solaris derived PAMs
3115  - (djm) Warning fix on entropy.c saved uid stuff. Patch from Mark Miller
3116    <markm@swoon.net>
3117  - (djm) Fix PAM fix
3118  - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This
3119    change is being made as 2.5.x configfiles are not back-compatible with
3120    2.3.x.
3121  - (djm) Avoid warnings for missing broken IP_TOS. Patch from Mark Miller
3122    <markm@swoon.net>
3123  - (djm) Open Server 5 doesn't need BROKEN_SAVED_UIDS. Patch from Tim Rice
3124    <tim@multitalents.net>
3125  - (djm) Avoid multiple definition of _PATH_LS. Patch from Tim Rice
3126    <tim@multitalents.net>
3127
3128 20010226
3129  - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
3130  - (djm) Some systems (SCO3, NeXT) have weird saved uid semantics.
3131    Based on patch from Tim Rice <tim@multitalents.net>
3132
3133 20010225
3134  - (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
3135    Patch from Adrian Ho <lexfiend@usa.net>
3136  - (bal) Replace 'unsigned long long' to 'u_int64_t' since not every
3137    platform defines u_int64_t as being that.
3138
3139 20010224
3140  - (bal) Missed part of the UNIX sockets patch.  Patch by Corinna
3141    Vinschen <vinschen@redhat.com>
3142  - (bal) Reorder where 'strftime' is detected to resolve linking
3143    issues on SCO.  Patch by Tim Rice <tim@multitalents.net>
3144
3145 20010224
3146  - (bal) pam_stack fix to correctly detect between RH7 and older RHs.
3147    Patch by Pekka Savola <pekkas@netcore.fi>
3148  - (bal) Renamed sigaction.[ch] to sigact.[ch].  Causes problems with
3149    some platforms.
3150  - (bal) Generalize lack of UNIX sockets since this also effects Cray
3151    not just Cygwin.  Based on patch by Wendy Palm <wendyp@cray.com>
3152
3153 20010223
3154  - (bal) Fix --define rh7 in openssh.spec file.  Patch by Steve Tell
3155    <tell@telltronics.org>
3156  - (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
3157    that it was compiled against.  Patch by Pekka Savola <pekkas@netcore.fi>
3158  - (bal) Double -I for OpenSSL on SCO.  Patch by Tim Rice
3159    <tim@multitalents.net>
3160
3161 20010222
3162  - (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
3163  - (bal) Added mdoc2man.pl from Mark Roth <roth@feep.net>
3164  - (bal) Removed reference to liblogin from contrib/README.  It was
3165    integrated into OpenSSH a long while ago.
3166  - (stevesk) remove erroneous #ifdef sgi code.
3167    Michael Stone <mstone@cs.loyola.edu>
3168
3169 20010221
3170  - (bal) Removed -L/usr/ucblib -R/usr/ucblib for Solaris platform.
3171  - (bal) Fixed OpenSSL rework to use $saved_*.  Patch by Tim Rice
3172    <tim@multitalents.net>
3173  - (bal) Reverted out of 2001/02/15 patch by djm below because it
3174    breaks Solaris.
3175         - (djm) Move PAM session setup back to before setuid to user.
3176           fixes problems on Solaris-drived PAMs.
3177  - (stevesk) session.c: back out to where we were before:
3178     - (djm) Move PAM session initialisation until after fork in sshd. Patch
3179       from Nalin Dahyabhai <nalin@redhat.com>
3180
3181 20010220
3182  - (bal) Fix mixed up params to memmove() from Jan 5th in setenv.c and
3183    getcwd.c.
3184  - (bal) OpenBSD CVS Sync:
3185    - deraadt@cvs.openbsd.org 2001/02/19 23:09:05
3186      [sshd.c]
3187      clarify message to make it not mention "ident"
3188
3189 20010219
3190  - (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
3191    pty.[ch] -> sshpty.[ch]
3192  - (djm) Rework search for OpenSSL location. Skip directories which don't
3193    exist, don't add -L$ssldir/lib if it doesn't exist. Should help SCO
3194    with its limit of 6 -L options.
3195  - OpenBSD CVS Sync:
3196    - reinhard@cvs.openbsd.org        2001/02/17 08:24:40
3197      [sftp.1]
3198      typo
3199    - deraadt@cvs.openbsd.org 2001/02/17 16:28:58
3200      [ssh.c]
3201      cleanup -V output; noted by millert
3202    - deraadt@cvs.openbsd.org 2001/02/17 16:48:48
3203      [sshd.8]
3204      it's the OpenSSH one
3205    - markus@cvs.openbsd.org  2001/02/18 11:33:54
3206      [dispatch.c]
3207      typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi
3208    - markus@cvs.openbsd.org  2001/02/19 02:53:32
3209      [compat.c compat.h serverloop.c]
3210      ssh-1.2.{18-22} has broken handling of ignore messages; report from
3211      itojun@
3212    - markus@cvs.openbsd.org  2001/02/19 03:35:23
3213      [version.h]
3214      OpenSSH_2.5.1 adds bug compat with 1.2.{18-22}
3215    - deraadt@cvs.openbsd.org 2001/02/19 03:36:25
3216      [scp.c]
3217      np is changed by recursion; vinschen@redhat.com
3218  - Update versions in RPM spec files
3219  - Release 2.5.1p1
3220
3221 20010218
3222  - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice
3223    <tim@multitalents.net>
3224  - (Bal) Patch for lack of RA_RESTART in misc.c for mysignal by
3225    stevesk
3226  - (djm) Fix my breaking of cygwin builds, Patch from Corinna Vinschen
3227    <vinschen@redhat.com> and myself.
3228  - (djm) Close listen_sock on bind() failures. Patch from Arkadiusz
3229    Miskiewicz <misiek@pld.ORG.PL>
3230  - (djm) Robustify EGD/PRNGd code in face of socket closures. Patch from
3231    Todd C. Miller <Todd.Miller@courtesan.com>
3232  - (djm) Use ttyname() to determine name of tty returned by openpty()
3233    rather then risking overflow. Patch from Marek Michalkiewicz
3234    <marekm@amelek.gda.pl>
3235  - (djm) Swapped tests for no_libsocket and no_libnsl in configure.in.
3236    Patch from Marek Michalkiewicz <marekm@amelek.gda.pl>
3237  - (djm) Doc fixes from Pekka Savola <pekkas@netcore.fi>
3238  - (djm) Use SA_INTERRUPT along SA_RESTART if present (equivalent for
3239    SunOS)
3240  - (djm) SCO needs librpc for libwrap. Patch from Tim Rice
3241    <tim@multitalents.net>
3242  - (stevesk) misc.c: cpp rework of SA_(INTERRUPT|RESTART) handling.
3243  - (stevesk) scp.c: use mysignal() for updateprogressmeter() handler.
3244  - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for
3245    SIGALRM.
3246  - (djm) Move entropy.c over to mysignal()
3247  - (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has
3248    a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C.
3249    Miller <Todd.Miller@courtesan.com>
3250  - (djm) Update RPM spec files for 2.5.0p1
3251  - (djm) Merge BSD_AUTH support from Markus Friedl and David J. MacKenzie
3252    enable with --with-bsd-auth.
3253  - (stevesk) entropy.c: typo; should be SIGPIPE
3254
3255 20010217
3256  - (bal) OpenBSD Sync:
3257    - markus@cvs.openbsd.org 2001/02/16 13:38:18
3258      [channel.c]
3259      remove debug
3260    - markus@cvs.openbsd.org 2001/02/16 14:03:43
3261      [session.c]
3262      proper payload-length check for x11 w/o screen-number
3263
3264 20010216
3265  - (bal) added '--with-prce'  to allow overriding of system regex when
3266    required (tested by David Dulek <ddulek@fastenal.com>)
3267  - (bal) Added DG/UX case and set that they have a broken IPTOS.
3268  - (djm) Mini-configure reorder patch from Tim Rice <tim@multitalents.net>
3269    Fixes linking on SCO.
3270  - (djm) Make gnome-ssh-askpass handle multi-line prompts. Patch from
3271    Nalin Dahyabhai <nalin@redhat.com>
3272  - (djm) BSD license for gnome-ssh-askpass (was X11)
3273  - (djm) KNF on gnome-ssh-askpass
3274  - (djm) USE_PIPES for a few more sysv platforms
3275  - (djm) Cleanup configure.in a little
3276  - (djm) Ask users to check config.log when we can't find necessary libs
3277  - (djm) Set "login ID" on systems with setluid. Only enabled for SCO
3278    OpenServer for now. Based on patch from svaughan <svaughan@asterion.com>
3279  - (djm) OpenBSD CVS:
3280    - markus@cvs.openbsd.org  2001/02/15 16:19:59
3281      [channels.c channels.h serverloop.c sshconnect.c sshconnect.h]
3282      [sshconnect1.c sshconnect2.c]
3283      genericize password padding function for SSH1 and SSH2.
3284      add stylized echo to 2, too.
3285  - (djm) Add roundup() macro to defines.h
3286  - (stevesk) set SA_RESTART flag in mysignal() for SIGCHLD;
3287    needed on Unixware 2.x.
3288
3289 20010215
3290  - (djm) Move PAM session setup back to before setuid to user. Fixes
3291    problems on Solaris-derived PAMs.
3292  - (djm) Clean up PAM namespace. Suggested by Darren Moffat
3293    <Darren.Moffat@eng.sun.com>
3294  - (bal) Sync w/ OpenSSH for new release
3295    - markus@cvs.openbsd.org 2001/02/12 12:45:06
3296      [sshconnect1.c]
3297      fix xmalloc(0), ok dugsong@
3298    - markus@cvs.openbsd.org 2001/02/11 12:59:25
3299      [Makefile.in sshd.8 sshconnect2.c readconf.h readconf.c packet.c
3300       sshd.c ssh.c ssh.1 servconf.h servconf.c myproposal.h kex.h kex.c]
3301      1) clean up the MAC support for SSH-2
3302      2) allow you to specify the MAC with 'ssh -m'
3303      3) or the 'MACs' keyword in ssh(d)_config
3304      4) add hmac-{md5,sha1}-96
3305              ok stevesk@, provos@
3306    - markus@cvs.openbsd.org 2001/02/12 16:16:23
3307      [auth-passwd.c auth.c auth.h auth1.c auth2.c servconf.c servconf.h
3308       ssh-keygen.c sshd.8]
3309      PermitRootLogin={yes,without-password,forced-commands-only,no}
3310      (before this change, root could login even if PermitRootLogin==no)
3311    - deraadt@cvs.openbsd.org 2001/02/12 22:56:09
3312      [clientloop.c packet.c ssh-keyscan.c]
3313      deal with EAGAIN/EINTR selects which were skipped
3314    - markus@cvs.openssh.org 2001/02/13 22:49:40
3315      [auth1.c auth2.c]
3316      setproctitle(user) only if getpwnam succeeds
3317    - markus@cvs.openbsd.org 2001/02/12 23:26:20
3318      [sshd.c]
3319      missing memset; from solar@openwall.com
3320    - stevesk@cvs.openbsd.org 2001/02/12 20:53:33
3321      [sftp-int.c]
3322      lumask now works with 1 numeric arg; ok markus@, djm@
3323    - djm@cvs.openbsd.org 2001/02/14 9:46:03
3324      [sftp-client.c sftp-int.c sftp.1]
3325      Fix and document 'preserve modes & times' option ('-p' flag in sftp);
3326      ok markus@
3327  - (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
3328  - (djm) Move to Jim's 1.2.0 X11 askpass program
3329  - (stevesk) OpenBSD sync:
3330    - deraadt@cvs.openbsd.org 2001/02/15 01:38:04
3331      [serverloop.c]
3332      indent
3333
3334 20010214
3335  - (djm) Don't try to close PAM session or delete credentials if the
3336    session has not been open or credentials not set. Based on patch from
3337    Andrew Bartlett <abartlet@pcug.org.au>
3338  - (djm) Move PAM session initialisation until after fork in sshd. Patch
3339    from Nalin Dahyabhai <nalin@redhat.com>
3340  - (bal) Missing function prototype in bsd-snprintf.c patch by
3341    Mark Miller <markm@swoon.net>
3342  - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams
3343    <cmadams@hiwaay.net> with a little modification and KNF.
3344  - (stevesk) fix for SIA patch, misplaced session_setup_sia()
3345
3346 20010213
3347  - (djm) Only test -S potential EGD sockets if they exist and are readable.
3348  - (bal) Cleaned out bsd-snprintf.c.  VARARGS have been banished and
3349    I did a base KNF over the whe whole file to make it more acceptable.
3350    (backed out of original patch and removed it from ChangeLog)
3351  - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by
3352    Tim Rice <tim@multitalents.net>
3353  - (stevesk) auth1.c: fix PAM passwordless check.
3354
3355 20010212
3356  - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1",
3357    --define "skip_gnome_askpass 1", --define "rh7 1" and make the
3358    implicit rpm-3.0.5 dependancy explicit. Patch and suggestions from
3359    Pekka Savola <pekkas@netcore.fi>
3360  - (djm) Clean up PCRE text in INSTALL
3361  - (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby
3362    <mib@unimelb.edu.au>
3363  - (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
3364  - (stevesk) session.c: remove debugging code.
3365
3366 20010211
3367  - (bal) OpenBSD Sync
3368    - markus@cvs.openbsd.org 2001/02/07 22:35:46
3369      [auth1.c auth2.c sshd.c]
3370      move k_setpag() to a central place; ok dugsong@
3371    - markus@cvs.openbsd.org 2001/02/10 12:52:02
3372      [auth2.c]
3373      offer passwd before s/key
3374    - markus@cvs.openbsd.org 2001/02/8 22:37:10
3375      [canohost.c]
3376      remove last call to sprintf; ok deraadt@
3377    - markus@cvs.openbsd.org 2001/02/10 1:33:32
3378      [canohost.c]
3379      add debug message, since sshd blocks here if DNS is not available
3380    - markus@cvs.openbsd.org 2001/02/10 12:44:02
3381      [cli.c]
3382      don't call vis() for \r
3383    - danh@cvs.openbsd.org 2001/02/10 0:12:43
3384      [scp.c]
3385      revert a small change to allow -r option to work again; ok deraadt@
3386    - danh@cvs.openbsd.org 2001/02/10 15:14:11
3387      [scp.c]
3388      fix memory leak; ok markus@
3389    - djm@cvs.openbsd.org 2001/02/10 0:45:52
3390      [scp.1]
3391      Mention that you can quote pathnames with spaces in them
3392    - markus@cvs.openbsd.org 2001/02/10 1:46:28
3393      [ssh.c]
3394      remove mapping of argv[0] -> hostname
3395    - markus@cvs.openbsd.org 2001/02/06 22:26:17
3396      [sshconnect2.c]
3397      do not ask for passphrase in batch mode; report from ejb@ql.org
3398    - itojun@cvs.opebsd.org 2001/02/08 10:47:05
3399      [sshconnect.c sshconnect1.c sshconnect2.c]
3400      %.30s is too short for IPv6 numeric address.  use %.128s for now.
3401      markus ok
3402    - markus@cvs.openbsd.org 2001/02/09 12:28:35
3403      [sshconnect2.c]
3404      do not free twice, thanks to /etc/malloc.conf
3405    - markus@cvs.openbsd.org 2001/02/09 17:10:53
3406      [sshconnect2.c]
3407      partial success: debug->log; "Permission denied" if no more auth methods
3408    - markus@cvs.openbsd.org 2001/02/10 12:09:21
3409      [sshconnect2.c]
3410      remove some lines
3411    - markus@cvs.openbsd.org 2001/02/09 13:38:07
3412      [auth-options.c]
3413      reset options if no option is given; from han.holl@prismant.nl
3414    - markus@cvs.openbsd.org 2001/02/08 21:58:28
3415      [channels.c]
3416      nuke sprintf, ok deraadt@
3417    - markus@cvs.openbsd.org 2001/02/08 21:58:28
3418      [channels.c]
3419      nuke sprintf, ok deraadt@
3420    - markus@cvs.openbsd.org 2001/02/06 22:43:02
3421      [clientloop.h]
3422      remove confusing callback code
3423    - deraadt@cvs.openbsd.org 2001/02/08 14:39:36
3424      [readconf.c]
3425      snprintf
3426    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
3427      sync with netbsd tree changes.
3428      - more strict prototypes, include necessary headers
3429      - use paths.h/pathnames.h decls
3430      - size_t typecase to int -> u_long
3431    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
3432      [ssh-keyscan.c]
3433      fix size_t -> int cast (use u_long).  markus ok
3434    - markus@cvs.openbsd.org 2001/02/07 22:43:16
3435      [ssh-keyscan.c]
3436      s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
3437    - itojun@cvs.openbsd.org 2001/02/09 9:04:59
3438      [ssh-keyscan.c]
3439      do not assume malloc() returns zero-filled region.  found by
3440      malloc.conf=AJ.
3441    - markus@cvs.openbsd.org 2001/02/08 22:35:30
3442      [sshconnect.c]
3443      don't connect if batch_mode is true and stricthostkeychecking set to
3444     'ask'
3445    - djm@cvs.openbsd.org 2001/02/04 21:26:07
3446      [sshd_config]
3447      type: ok markus@
3448    - deraadt@cvs.openbsd.org 2001/02/06 22:07:50
3449      [sshd_config]
3450      enable sftp-server by default
3451    - deraadt 2001/02/07 8:57:26
3452      [xmalloc.c]
3453      deal with new ANSI malloc stuff
3454    - markus@cvs.openbsd.org 2001/02/07 16:46:08
3455      [xmalloc.c]
3456      typo in fatal()
3457    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
3458      [xmalloc.c]
3459      fix size_t -> int cast (use u_long).  markus ok
3460    - 1.47 Thu Feb 8 23:11:42 GMT 2001 by dugsong
3461      [serverloop.c sshconnect1.c]
3462      mitigate SSH1 traffic analysis - from Solar Designer
3463      <solar@openwall.com>, ok provos@
3464  - (bal) fixed sftp-client.c.  Return 'status' instead of '0'
3465    (from the OpenBSD tree)
3466  - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
3467  - (bal) sftp-sever.c  '%8lld' to '%8llu' (OpenBSD Sync)
3468  - (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
3469  - (bal) A bit more whitespace cleanup
3470  - (djm) Set PAM_RHOST earlier, patch from Andrew Bartlett
3471    <abartlet@pcug.org.au>
3472  - (stevesk) misc.c: ssh.h not needed.
3473  - (stevesk) compat.c: more friendly cpp error
3474  - (stevesk) OpenBSD sync:
3475    - stevesk@cvs.openbsd.org 2001/02/11 06:15:57
3476      [LICENSE]
3477      typos and small cleanup; ok deraadt@
3478
3479 20010210
3480  - (djm) Sync sftp and scp stuff from OpenBSD:
3481    - djm@cvs.openbsd.org     2001/02/07 03:55:13
3482      [sftp-client.c]
3483      Don't free handles before we are done with them. Based on work from
3484      Corinna Vinschen <vinschen@redhat.com>. ok markus@
3485    - djm@cvs.openbsd.org     2001/02/06 22:32:53
3486      [sftp.1]
3487      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
3488    - deraadt@cvs.openbsd.org 2001/02/07 04:07:29
3489      [sftp.1]
3490      pretty up significantly
3491    - itojun@cvs.openbsd.org  2001/02/07 06:49:42
3492      [sftp.1]
3493      .Bl-.El mismatch.  markus ok
3494    - djm@cvs.openbsd.org     2001/02/07 06:12:30
3495      [sftp-int.c]
3496      Check that target is a directory before doing ls; ok markus@
3497    - itojun@cvs.openbsd.org  2001/02/07 11:01:18
3498      [scp.c sftp-client.c sftp-server.c]
3499      unsigned long long -> %llu, not %qu.  markus ok
3500    - stevesk@cvs.openbsd.org 2001/02/07 11:10:39
3501      [sftp.1 sftp-int.c]
3502      more man page cleanup and sync of help text with man page; ok markus@
3503    - markus@cvs.openbsd.org  2001/02/07 14:58:34
3504      [sftp-client.c]
3505      older servers reply with SSH2_FXP_NAME + count==0 instead of EOF
3506    - djm@cvs.openbsd.org     2001/02/07 15:27:19
3507      [sftp.c]
3508      Don't forward agent and X11 in sftp. Suggestion from Roumen Petrov
3509      <roumen.petrov@skalasoft.com>
3510    - stevesk@cvs.openbsd.org 2001/02/07 15:36:04
3511      [sftp-int.c]
3512      portable; ok markus@
3513    - stevesk@cvs.openbsd.org 2001/02/07 15:55:47
3514      [sftp-int.c]
3515      lowercase cmds[].c also; ok markus@
3516    - markus@cvs.openbsd.org  2001/02/07 17:04:52
3517      [pathnames.h sftp.c]
3518      allow sftp over ssh protocol 1; ok djm@
3519    - deraadt@cvs.openbsd.org 2001/02/08 07:38:55
3520      [scp.c]
3521      memory leak fix, and snprintf throughout
3522    - deraadt@cvs.openbsd.org 2001/02/08 08:02:02
3523      [sftp-int.c]
3524      plug a memory leak
3525    - stevesk@cvs.openbsd.org 2001/02/08 10:11:23
3526      [session.c sftp-client.c]
3527      %i -> %d
3528    - stevesk@cvs.openbsd.org 2001/02/08 10:57:59
3529      [sftp-int.c]
3530      typo
3531    - stevesk@cvs.openbsd.org 2001/02/08 15:28:07
3532      [sftp-int.c pathnames.h]
3533      _PATH_LS; ok markus@
3534    - djm@cvs.openbsd.org     2001/02/09 04:46:25
3535      [sftp-int.c]
3536      Check for NULL attribs for chown, chmod & chgrp operations, only send
3537      relevant attribs back to server; ok markus@
3538    - djm@cvs.openbsd.org     2001/02/06 15:05:25
3539      [sftp.c]
3540      Use getopt to process commandline arguments
3541    - djm@cvs.openbsd.org     2001/02/06 15:06:21
3542      [sftp.c ]
3543      Wait for ssh subprocess at exit
3544    - djm@cvs.openbsd.org     2001/02/06 15:18:16
3545      [sftp-int.c]
3546      stat target for remote chdir before doing chdir
3547    - djm@cvs.openbsd.org     2001/02/06 15:32:54
3548      [sftp.1]
3549      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
3550    - provos@cvs.openbsd.org  2001/02/05 22:22:02
3551      [sftp-int.c]
3552      cleanup get_pathname, fix pwd after failed cd. okay djm@
3553  - (djm) Update makefile.in for _PATH_SFTP_SERVER
3554  - (bal) sftp-client.c replace NULL w/ 0 in do_ls() (pending in OpenBSD tree)
3555
3556 20010209
3557  - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
3558    <rjmooney@mediaone.net>
3559  - (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
3560    main tree while porting forward.  Pointed out by Lutz Jaenicke
3561    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3562  - (bal) double entry in configure.in.  Pointed out by Lutz Jaenicke
3563    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3564  - (stevesk) OpenBSD sync:
3565    - markus@cvs.openbsd.org  2001/02/08 11:20:01
3566      [auth2.c]
3567      strict checking
3568    - markus@cvs.openbsd.org  2001/02/08 11:15:22
3569      [version.h]
3570      update to 2.3.2
3571    - markus@cvs.openbsd.org  2001/02/08 11:12:30
3572      [auth2.c]
3573      fix typo
3574  - (djm) Update spec files
3575  - (bal) OpenBSD sync:
3576    - deraadt@cvs.openbsd.org 2001/02/08 14:38:54
3577      [scp.c]
3578      memory leak fix, and snprintf throughout
3579    - markus@cvs.openbsd.org 2001/02/06 22:43:02
3580      [clientloop.c]
3581      remove confusing callback code
3582  - (djm) Add CVS Id's to files that we have missed
3583  - (bal) OpenBSD Sync (more):
3584    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
3585      sync with netbsd tree changes.
3586      - more strict prototypes, include necessary headers
3587      - use paths.h/pathnames.h decls
3588      - size_t typecase to int -> u_long
3589    - markus@cvs.openbsd.org 2001/02/06 22:07:42
3590      [ssh.c]
3591      fatal() if subsystem fails
3592    - markus@cvs.openbsd.org 2001/02/06 22:43:02
3593      [ssh.c]
3594      remove confusing callback code
3595    - jakob@cvs.openbsd.org 2001/02/06 23:03:24
3596      [ssh.c]
3597      add -1 option (force protocol version 1). ok markus@
3598    - jakob@cvs.openbsd.org 2001/02/06 23:06:21
3599      [ssh.c]
3600      reorder -{1,2,4,6} options. ok markus@
3601  - (bal) Missing 'const' in readpass.h
3602  - (bal) OpenBSD Sync (so at least the thing compiles for 2.3.2 =)
3603    - djm@cvs.openbsd.org 2001/02/06 23:30:28
3604      [sftp-client.c]
3605      replace arc4random with counter for request ids; ok markus@
3606  - (djm) Define _PATH_TTY for systems that don't. Report from Lutz
3607    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3608
3609 20010208
3610  - (djm) Don't delete external askpass program in make uninstall target.
3611    Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com>
3612  - (djm) Fix linking of sftp, don't need arc4random any more.
3613  - (djm) Try to use shell that supports "test -S" for EGD socket search.
3614    Based on patch from Tim Rice <tim@multitalents.net>
3615
3616 20010207
3617  - (bal) Save the whole path to AR in configure.  Some Solaris 2.7 installs
3618    seem lose track of it while in openbsd-compat/  (two confirmed reports)
3619  - (djm) Much KNF on PAM code
3620  - (djm) Revise auth-pam.c conversation function to be a little more
3621    readable.
3622  - (djm) Revise kbd-int PAM conversation function to fold all text messages
3623    to before first prompt. Fixes hangs if last pam_message did not require
3624    a reply.
3625  - (djm) Fix password changing when using PAM kbd-int authentication
3626
3627 20010205
3628  - (bal) Disable groupaccess by setting NGROUPS_MAX to 0 for platforms
3629    that don't have NGROUPS_MAX.
3630  - (bal) AIX patch for auth1.c by William L. Jones <jones@hpc.utexas.edu>
3631  - (stevesk) OpenBSD sync:
3632    - stevesk@cvs.openbsd.org 2001/02/04 08:32:27
3633      [many files; did this manually to our top-level source dir]
3634      unexpand and remove end-of-line whitespace; ok markus@
3635    - stevesk@cvs.openbsd.org 2001/02/04 15:21:19
3636      [sftp-server.c]
3637      SSH2_FILEXFER_ATTR_UIDGID support; ok markus@
3638    - deraadt@cvs.openbsd.org 2001/02/04 17:02:32
3639      [sftp-int.c]
3640      ? == help
3641    - deraadt@cvs.openbsd.org 2001/02/04 16:47:46
3642      [sftp-int.c]
3643      sort commands, so that abbreviations work as expected
3644    - stevesk@cvs.openbsd.org 2001/02/04 15:17:52
3645      [sftp-int.c]
3646      debugging sftp: precedence and missing break.  chmod, chown, chgrp
3647      seem to be working now.
3648    - markus@cvs.openbsd.org 2001/02/04 14:41:21
3649      [sftp-int.c]
3650      use base 8 for umask/chmod
3651    - markus@cvs.openbsd.org 2001/02/04 11:11:54
3652      [sftp-int.c]
3653      fix LCD
3654    - markus@cvs.openbsd.org  2001/02/04 08:10:44
3655      [ssh.1]
3656      typo; dpo@club-internet.fr
3657    - stevesk@cvs.openbsd.org 2001/02/04 06:30:12
3658      [auth2.c authfd.c packet.c]
3659      remove duplicate #include's; ok markus@
3660    - deraadt@cvs.openbsd.org 2001/02/04 16:56:23
3661      [scp.c sshd.c]
3662      alpha happiness
3663    - stevesk@cvs.openbsd.org 2001/02/04 15:12:17
3664      [sshd.c]
3665      precedence; ok markus@
3666    - deraadt@cvs.openbsd.org 2001/02/04 08:14:15
3667      [ssh.c sshd.c]
3668      make the alpha happy
3669    - markus@cvs.openbsd.org  2001/01/31 13:37:24
3670      [channels.c channels.h serverloop.c ssh.c]
3671      do not disconnect if local port forwarding fails, e.g. if port is
3672      already in use
3673    - markus@cvs.openbsd.org  2001/02/01 14:58:09
3674      [channels.c]
3675      use ipaddr in channel messages, ietf-secsh wants this
3676    - markus@cvs.openbsd.org  2001/01/31 12:26:20
3677      [channels.c]
3678      ssh.com-2.0.1x does not send additional info in CHANNEL_OPEN_FAILURE
3679      messages; bug report from edmundo@rano.org
3680    - markus@cvs.openbsd.org  2001/01/31 13:48:09
3681      [sshconnect2.c]
3682      unused
3683    - deraadt@cvs.openbsd.org 2001/02/04 08:23:08
3684      [sftp-client.c sftp-server.c]
3685      make gcc on the alpha even happier
3686
3687 20010204
3688  - (bal) I think this is the last of the bsd-*.h that don't belong.
3689  - (bal) Minor Makefile fix
3690  - (bal) openbsd-compat/Makefile minor fix.  Ensure dependancies are done
3691    right.
3692  - (bal) Changed order of LIB="" in -with-skey due to library resolving.
3693  - (bal) next-posix.h changed to bsd-nextstep.h
3694  - (djm) OpenBSD CVS sync:
3695    - markus@cvs.openbsd.org  2001/02/03 03:08:38
3696      [auth-options.c auth-rh-rsa.c auth-rhosts.c auth.c canohost.c]
3697      [canohost.h servconf.c servconf.h session.c sshconnect1.c sshd.8]
3698      [sshd_config]
3699      make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@
3700    - markus@cvs.openbsd.org  2001/02/03 03:19:51
3701      [ssh.1 sshd.8 sshd_config]
3702      Skey is now called ChallengeResponse
3703    - markus@cvs.openbsd.org  2001/02/03 03:43:09
3704      [sshd.8]
3705      use no-pty option in .ssh/authorized_keys* if you need a 8-bit clean
3706      channel. note from Erik.Anggard@cygate.se (pr/1659)
3707    - stevesk@cvs.openbsd.org 2001/02/03 10:03:06
3708      [ssh.1]
3709      typos; ok markus@
3710    - djm@cvs.openbsd.org     2001/02/04 04:11:56
3711      [scp.1 sftp-server.c ssh.1 sshd.8 sftp-client.c sftp-client.h]
3712      [sftp-common.c sftp-common.h sftp-int.c sftp-int.h sftp.1 sftp.c]
3713      Basic interactive sftp client; ok theo@
3714  - (djm) Update RPM specs for new sftp binary
3715  - (djm) Update several bits for new optional reverse lookup stuff. I
3716    think I got them all.
3717  - (djm) Makefile.in fixes
3718  - (stevesk) add mysignal() wrapper and use it for the protocol 2
3719    SIGCHLD handler.
3720  - (djm) Use setvbuf() instead of setlinebuf(). Suggest from stevesk@
3721
3722 20010203
3723  - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com>
3724  - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD
3725    based file) to ensure #include space does not get confused.
3726  - (bal) Minor Makefile.in tweak.  dirname may not exist on some
3727    platforms so builds fail.  (NeXT being a well known one)
3728
3729 20010202
3730  - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
3731    <vinschen@redhat.com>
3732  - (bal) Makefile fix to use $(MAKE) instead of 'make'  for platforms
3733    that use 'gmake'.   Patch by Tim Rice <tim@multitalents.net>
3734
3735 20010201
3736  - (bal) Minor fix to Makefile to stop rebuilding executables if no
3737    changes have occured to any of the supporting code.  Patch by
3738    Roumen Petrov <roumen.petrov@skalasoft.com>
3739
3740 20010131
3741  - (djm) OpenBSD CVS Sync:
3742    - djm@cvs.openbsd.org     2001/01/30 15:48:53
3743      [sshconnect.c]
3744      Make warning message a little more consistent. ok markus@
3745  - (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
3746    Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
3747    respectively.
3748  - (djm) Don't log SSH2 PAM KbdInt responses to debug, they may contain
3749    passwords.
3750  - (bal) Reorder.  Move all bsd-*, fake-*, next-*, and cygwin* stuff to
3751    openbsd-compat/.  And resolve all ./configure and Makefile.in issues
3752    assocated.
3753
3754 20010130
3755  - (djm) OpenBSD CVS Sync:
3756    - markus@cvs.openbsd.org  2001/01/29 09:55:37
3757      [channels.c channels.h clientloop.c serverloop.c]
3758      fix select overflow; ok deraadt@ and stevesk@
3759    - markus@cvs.openbsd.org  2001/01/29 12:42:35
3760      [canohost.c canohost.h channels.c clientloop.c]
3761      add get_peer_ipaddr(socket), x11-fwd in ssh2 requires ipaddr, not DNS
3762    - markus@cvs.openbsd.org  2001/01/29 12:47:32
3763      [rsa.c rsa.h ssh-agent.c sshconnect1.c sshd.c]
3764      handle rsa_private_decrypt failures; helps against the Bleichenbacher
3765      pkcs#1 attack
3766    - djm@cvs.openbsd.org     2001/01/29 05:36:11
3767      [ssh.1 ssh.c]
3768      Allow invocation of sybsystem by commandline (-s); ok markus@
3769  - (stevesk) configure.in: remove duplicate PROG_LS
3770
3771 20010129
3772  - (stevesk) sftp-server.c: use %lld vs. %qd
3773
3774 20010128
3775  - (bal) Put USE_PIPES back into sco3.2v5
3776  - (bal) OpenBSD Sync
3777    - markus@cvs.openbsd.org 2001/01/28 10:15:34
3778      [dispatch.c]
3779      re-keying is not supported; ok deraadt@
3780    - markus@cvs.openbsd.org 2001/01/28 10:24:04
3781      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
3782      cleanup AUTHORS sections
3783    - markus@cvs.openbsd.org 2001/01/28 10:37:26
3784      [sshd.c sshd.8]
3785      remove -Q, no longer needed
3786    - stevesk@cvs.openbsd.org 2001/01/28 20:36:16
3787      [readconf.c ssh.1]
3788      ``StrictHostKeyChecking ask'' documentation and small cleanup.
3789      ok markus@
3790    - stevesk@cvs.openbsd.org 2001/01/28 20:43:25
3791      [sshd.8]
3792      spelling.  ok markus@
3793    - stevesk@cvs.openbsd.org 2001/01/28 20:53:21
3794      [xmalloc.c]
3795      use size_t for strlen() return.  ok markus@
3796    - stevesk@cvs.openbsd.org 2001/01/28 22:27:05
3797      [authfile.c]
3798      spelling.  use sizeof vs. strlen().  ok markus@
3799    - niklas@cvs.openbsd.org 2001/01/29 1:59:14
3800      [atomicio.h canohost.h clientloop.h deattack.h dh.h dispatch.h
3801       groupaccess.c groupaccess.h hmac.h hostfile.h includes.h kex.h
3802       key.h log.h login.h match.h misc.h myproposal.h nchan.ms pathnames.h
3803       radix.h readpass.h rijndael.h serverloop.h session.h sftp.h ssh-add.1
3804       ssh-dss.h ssh-keygen.1 ssh-keyscan.1 ssh-rsa.h ssh1.h ssh_config
3805       sshconnect.h sshd_config tildexpand.h uidswap.h uuencode.h]
3806      $OpenBSD$
3807   - (bal) Minor auth2.c resync.  Whitespace and moving of an #include.
3808
3809 20010126
3810  - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
3811    Petrov <roumen.petrov@skalasoft.com>
3812  - (bal) OpenBSD Sync
3813    - deraadt@cvs.openbsd.org 2001/01/25 8:06:33
3814      [ssh-agent.c]
3815      call _exit() in signal handler
3816
3817 20010125
3818  - (djm) Sync bsd-* support files:
3819    - deraadt@cvs.openbsd.org 2000/01/26 03:43:20
3820      [rresvport.c bindresvport.c]
3821      new bindresvport() semantics that itojun, shin, jean-luc and i have
3822      agreed on, which will be happy for the future. bindresvport_sa() for
3823      sockaddr *, too.  docs later..
3824    - deraadt@cvs.openbsd.org 2000/01/24 02:24:21
3825      [bindresvport.c]
3826      in bindresvport(), if sin is non-NULL, example sin->sin_family for
3827      the actual family being processed
3828  - (djm) Mention PRNGd in documentation, it is nicer than EGD
3829  - (djm) Automatically search for "well-known" EGD/PRNGd sockets in autoconf
3830  - (bal) AC_FUNC_STRFTIME added to autoconf
3831  - (bal) OpenBSD Resync
3832    - stevesk@cvs.openbsd.org 2001/01/24 21:03:50
3833      [channels.c]
3834      missing freeaddrinfo(); ok markus@
3835
3836 20010124
3837  - (bal) OpenBSD Resync
3838    - markus@cvs.openbsd.org 2001/01/23 10:45:10
3839      [ssh.h]
3840      nuke comment
3841  - (bal) no 64bit support patch from Tim Rice <tim@multitalents.net>
3842  - (bal) #ifdef around S_IFSOCK if platform does not support it.
3843    patch by Tim Rice <tim@multitalents.net>
3844  - (bal) fake-regex.h cleanup based on Tim Rice's patch.
3845  - (stevesk) sftp-server.c: fix chmod() mode mask
3846
3847 20010123
3848  - (bal) regexp.h typo in configure.in.  Should have been regex.h
3849  - (bal) SSH_USER_DIR to _PATH_SSH_USER_DIR patch by stevesk@
3850  - (bal) SSH_ASKPASS_DEFAULT to _PATH_SSH_ASKPASS_DEFAULT
3851  - (bal) OpenBSD Resync
3852    - markus@cvs.openbsd.org 2001/01/22 8:15:00
3853      [auth-krb4.c sshconnect1.c]
3854      only AFS needs radix.[ch]
3855    - markus@cvs.openbsd.org 2001/01/22 8:32:53
3856      [auth2.c]
3857      no need to include; from mouring@etoh.eviladmin.org
3858    - stevesk@cvs.openbsd.org 2001/01/22 16:55:21
3859      [key.c]
3860      free() -> xfree(); ok markus@
3861    - stevesk@cvs.openbsd.org 2001/01/22 17:22:28
3862      [sshconnect2.c sshd.c]
3863      fix memory leaks in SSH2 key exchange; ok markus@
3864    - markus@cvs.openbsd.org 2001/01/22 23:06:39
3865      [auth1.c auth2.c readconf.c readconf.h servconf.c servconf.h
3866       sshconnect1.c sshconnect2.c sshd.c]
3867      rename skey -> challenge response.
3868      auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled.
3869
3870
3871 20010122
3872  - (bal) OpenBSD Resync
3873    - markus@cvs.openbsd.org 2001/01/19 12:45:26 GMT 2001 by markus
3874      [servconf.c ssh.h sshd.c]
3875      only auth-chall.c needs #ifdef SKEY
3876    - markus@cvs.openbsd.org 2001/01/19 15:55:10 GMT 2001 by markus
3877      [auth-krb4.c auth-options.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
3878       auth1.c auth2.c channels.c clientloop.c dh.c dispatch.c nchan.c
3879       packet.c pathname.h readconf.c scp.c servconf.c serverloop.c
3880       session.c ssh-add.c ssh-keygen.c ssh-keyscan.c ssh.c ssh.h
3881       ssh1.h sshconnect1.c sshd.c ttymodes.c]
3882      move ssh1 definitions to ssh1.h, pathnames to pathnames.h
3883    - markus@cvs.openbsd.org 2001/01/19 16:48:14
3884      [sshd.8]
3885      fix typo; from stevesk@
3886    - markus@cvs.openbsd.org 2001/01/19 16:50:58
3887      [ssh-dss.c]
3888      clear and free digest, make consistent with other code (use dlen); from
3889      stevesk@
3890    - markus@cvs.openbsd.org 2001/01/20 15:55:20 GMT 2001 by markus
3891      [auth-options.c auth-options.h auth-rsa.c auth2.c]
3892      pass the filename to auth_parse_options()
3893    - markus@cvs.openbsd.org 2001/01/20 17:59:40 GMT 2001
3894      [readconf.c]
3895      fix SIGSEGV from -o ""; problem noted by jehsom@togetherweb.com
3896    - stevesk@cvs.openbsd.org 2001/01/20 18:20:29
3897      [sshconnect2.c]
3898      dh_new_group() does not return NULL.  ok markus@
3899    - markus@cvs.openbsd.org 2001/01/20 21:33:42
3900      [ssh-add.c]
3901      do not loop forever if askpass does not exist; from
3902      andrew@pimlott.ne.mediaone.net
3903    - djm@cvs.openbsd.org 2001/01/20 23:00:56
3904      [servconf.c]
3905      Check for NULL return from strdelim; ok markus
3906    - djm@cvs.openbsd.org 2001/01/20 23:02:07
3907      [readconf.c]
3908      KNF; ok markus
3909    - jakob@cvs.openbsd.org 2001/01/21 9:00:33
3910      [ssh-keygen.1]
3911      remove -R flag; ok markus@
3912    - markus@cvs.openbsd.org 2001/01/21 19:05:40
3913      [atomicio.c automicio.h auth-chall.c auth-krb4.c auth-options.c
3914       auth-options.h auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
3915       auth.c auth.h auth1.c auth2-chall.c auth2.c authfd.c authfile.c
3916       bufaux.c  bufaux.h buffer.c canahost.c canahost.h channels.c
3917       cipher.c cli.c clientloop.c clientloop.h compat.c compress.c
3918       deattack.c dh.c dispatch.c groupaccess.c hmac.c hostfile.c kex.c
3919       key.c key.h log-client.c log-server.c log.c log.h login.c login.h
3920       match.c misc.c misc.h nchan.c packet.c pty.c radix.h readconf.c
3921       readpass.c readpass.h rsa.c scp.c servconf.c serverloop.c serverloop.h
3922       session.c sftp-server.c ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c
3923       ssh-keyscan.c ssh-rsa.c ssh.c ssh.h sshconnect.c sshconnect.h
3924       sshconnect1.c sshconnect2.c sshd.c tildexpand.c tildexpand.h
3925       ttysmodes.c uidswap.c xmalloc.c]
3926      split ssh.h and try to cleanup the #include mess. remove unnecessary
3927      #includes.  rename util.[ch] -> misc.[ch]
3928  - (bal) renamed 'PIDDIR' to '_PATH_SSH_PIDDIR' to match OpenBSD tree
3929  - (bal) Moved #ifdef KRB4 in auth-krb4.c above the #include to resolve
3930    conflict when compiling for non-kerb install
3931  - (bal) removed the #ifdef SKEY in auth1.c to match Markus' changes
3932    on 1/19.
3933
3934 20010120
3935  - (bal) OpenBSD Resync
3936    - markus@cvs.openbsd.org 2001/01/19 12:45:26
3937      [ssh-chall.c servconf.c servconf.h ssh.h sshd.c]
3938      only auth-chall.c needs #ifdef SKEY
3939  - (bal) Slight auth2-pam.c clean up.
3940  - (bal) Includes a fake-regexp.h to be only used if regcomp() is found,
3941    but no 'regexp.h' found (SCO OpenServer 3 lacks the header).
3942
3943 20010119
3944  - (djm) Update versions in RPM specfiles
3945  - (bal) OpenBSD Resync
3946    - markus@cvs.openbsd.org 2001/01/18 16:20:21
3947      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h
3948       sshd.8 sshd.c]
3949      log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many
3950      systems
3951    - markus@cvs.openbsd.org 2001/01/18 16:59:59
3952      [auth-passwd.c auth.c auth.h auth1.c auth2.c serverloop.c session.c
3953       session.h sshconnect1.c]
3954      1) removes fake skey from sshd, since this will be much
3955         harder with /usr/libexec/auth/login_XXX
3956      2) share/unify code used in ssh-1 and ssh-2 authentication (server side)
3957      3) make addition of BSD_AUTH and other challenge reponse methods
3958         easier.
3959    - markus@cvs.openbsd.org 2001/01/18 17:12:43
3960      [auth-chall.c auth2-chall.c]
3961      rename *-skey.c *-chall.c since the files are not skey specific
3962  - (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
3963    to fix NULL pointer deref and fake authloop breakage in PAM code.
3964  - (bal) Updated contrib/cygwin/ by Corinna Vinschen <vinschen@redhat.com>
3965  - (bal) Minor cygwin patch to auth1.c.  Suggested by djm.
3966
3967 20010118
3968  - (bal) Super Sized OpenBSD Resync
3969    - markus@cvs.openbsd.org 2001/01/11 22:14:20 GMT 2001 by markus
3970      [sshd.c]
3971      maxfd+1
3972    - markus@cvs.openbsd.org 2001/01/13 17:59:18
3973      [ssh-keygen.1]
3974      small ssh-keygen manpage cleanup; stevesk@pobox.com
3975    - markus@cvs.openbsd.org 2001/01/13 18:03:07
3976      [scp.c ssh-keygen.c sshd.c]
3977      getopt() returns -1 not EOF; stevesk@pobox.com
3978    - markus@cvs.openbsd.org 2001/01/13 18:06:54
3979      [ssh-keyscan.c]
3980      use SSH_DEFAULT_PORT; from stevesk@pobox.com
3981    - markus@cvs.openbsd.org 2001/01/13 18:12:47
3982      [ssh-keyscan.c]
3983      free() -> xfree(); fix memory leak; from stevesk@pobox.com
3984    - markus@cvs.openbsd.org 2001/01/13 18:14:13
3985      [ssh-add.c]
3986      typo, from stevesk@sweden.hp.com
3987    - markus@cvs.openbsd.org 2001/01/13 18:32:50
3988      [packet.c session.c ssh.c sshconnect.c sshd.c]
3989      split out keepalive from packet_interactive (from dale@accentre.com)
3990      set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too.
3991    - markus@cvs.openbsd.org 2001/01/13 18:36:45
3992      [packet.c packet.h]
3993      reorder, typo
3994    - markus@cvs.openbsd.org 2001/01/13 18:38:00
3995      [auth-options.c]
3996      fix comment
3997    - markus@cvs.openbsd.org 2001/01/13 18:43:31
3998      [session.c]
3999      Wall
4000    - markus@cvs.openbsd.org 2001/01/13 19:14:08
4001      [clientloop.h clientloop.c ssh.c]
4002      move callback to headerfile
4003    - markus@cvs.openbsd.org 2001/01/15 21:40:10
4004      [ssh.c]
4005      use log() instead of stderr
4006    - markus@cvs.openbsd.org 2001/01/15 21:43:51
4007      [dh.c]
4008      use error() not stderr!
4009    - markus@cvs.openbsd.org 2001/01/15 21:45:29
4010      [sftp-server.c]
4011      rename must fail if newpath exists, debug off by default
4012    - markus@cvs.openbsd.org 2001/01/15 21:46:38
4013      [sftp-server.c]
4014      readable long listing for sftp-server, ok deraadt@
4015    - markus@cvs.openbsd.org 2001/01/16 19:20:06
4016      [key.c ssh-rsa.c]
4017      make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from
4018      galb@vandyke.com.  note that you have to delete older ssh2-rsa keys,
4019      since they are in the wrong format, too. they must be removed from
4020      .ssh/authorized_keys2 and .ssh/known_hosts2, etc.
4021      (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP
4022      .ssh/authorized_keys2) additionally, we now check that
4023      BN_num_bits(rsa->n) >= 768.
4024    - markus@cvs.openbsd.org 2001/01/16 20:54:27
4025      [sftp-server.c]
4026      remove some statics. simpler handles; idea from nisse@lysator.liu.se
4027    - deraadt@cvs.openbsd.org 2001/01/16 23:58:08
4028      [bufaux.c radix.c sshconnect.h sshconnect1.c]
4029      indent
4030  - (bal) Added bsd-strmode.[ch] since some non-OpenBSD platforms may
4031    be missing such feature.
4032
4033
4034 20010117
4035  - (djm) Only write random seed file at exit
4036  - (djm) Make PAM support optional, enable with --with-pam
4037  - (djm) Try to use libcrypt on Linux, but link it after OpenSSL (which
4038    provides a crypt() of its own)
4039  - (djm) Avoid a warning in bsd-bindresvport.c
4040  - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This
4041    can cause weird segfaults errors on Solaris
4042  - (djm) Avoid warning in PAM code by making read_passphrase arguments const
4043  - (djm) Add --with-pam to RPM spec files
4044
4045 20010115
4046  - (bal) sftp-server.c change to use chmod() if fchmod() does not exist.
4047  - (bal) utimes() support via utime() interface on machine that lack utimes().
4048
4049 20010114
4050  - (stevesk) initial work for OpenBSD "support supplementary group in
4051    {Allow,Deny}Groups" patch:
4052    - import getgrouplist.c from OpenBSD (bsd-getgrouplist.c)
4053    - add bsd-getgrouplist.h
4054    - new files groupaccess.[ch]
4055    - build but don't use yet (need to merge auth.c changes)
4056  - (stevesk) complete:
4057    - markus@cvs.openbsd.org  2001/01/13 11:56:48
4058      [auth.c sshd.8]
4059      support supplementary group in {Allow,Deny}Groups
4060      from stevesk@pobox.com
4061
4062 20010112
4063  - (bal) OpenBSD Sync
4064    - markus@cvs.openbsd.org 2001/01/10 22:56:22
4065      [bufaux.h bufaux.c sftp-server.c sftp.h getput.h]
4066      cleanup sftp-server implementation:
4067      add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT
4068      parse SSH2_FILEXFER_ATTR_EXTENDED
4069      send SSH2_FX_EOF if readdir returns no more entries
4070      reply to SSH2_FXP_EXTENDED message
4071      use #defines from the draft
4072      move #definations to sftp.h
4073      more info:
4074      http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt
4075    - markus@cvs.openbsd.org 2001/01/10 19:43:20
4076      [sshd.c]
4077      XXX - generate_empheral_server_key() is not safe against races,
4078      because it calls log()
4079    - markus@cvs.openbsd.org 2001/01/09 21:19:50
4080      [packet.c]
4081      allow TCP_NDELAY for ipv6; from netbsd via itojun@
4082
4083 20010110
4084  - (djm) SNI/Reliant Unix needs USE_PIPES and $DISPLAY hack. Report from
4085    Bladt Norbert <Norbert.Bladt@adi.ch>
4086
4087 20010109
4088  - (bal) Resync CVS ID of cli.c
4089  - (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
4090    code.
4091  - (bal) OpenBSD Sync
4092    - markus@cvs.openbsd.org 2001/01/08 22:29:05
4093      [auth2.c compat.c compat.h servconf.c servconf.h sshd.8
4094       sshd_config version.h]
4095      implement option 'Banner /etc/issue.net' for ssh2, move version to
4096      2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner
4097      is enabled).
4098    - markus@cvs.openbsd.org 2001/01/08 22:03:23
4099      [channels.c ssh-keyscan.c]
4100      O_NDELAY -> O_NONBLOCK; thanks stevesk@pobox.com
4101    - markus@cvs.openbsd.org 2001/01/08 21:55:41
4102      [sshconnect1.c]
4103      more cleanups and fixes from stevesk@pobox.com:
4104      1) try_agent_authentication() for loop will overwrite key just
4105         allocated with key_new(); don't alloc
4106      2) call ssh_close_authentication_connection() before exit
4107         try_agent_authentication()
4108      3) free mem on bad passphrase in try_rsa_authentication()
4109    - markus@cvs.openbsd.org 2001/01/08 21:48:17
4110      [kex.c]
4111      missing free; thanks stevesk@pobox.com
4112   - (bal) Detect if clock_t structure exists, if not define it.
4113   - (bal) Detect if O_NONBLOCK exists, if not define it.
4114   - (bal) removed news4-posix.h (now empty)
4115   - (bal) changed bsd-bindresvport.c and bsd-rresvport.c to use 'socklen_t'
4116     instead of 'int'
4117  - (stevesk) sshd_config: sync
4118  - (stevesk) defines.h: remove spurious ``;''
4119
4120 20010108
4121  - (bal) Fixed another typo in cli.c
4122  - (bal) OpenBSD Sync
4123    - markus@cvs.openbsd.org 2001/01/07 21:26:55
4124      [cli.c]
4125      typo
4126    - markus@cvs.openbsd.org 2001/01/07 21:26:55
4127      [cli.c]
4128      missing free, stevesk@pobox.com
4129    - markus@cvs.openbsd.org 2001/01/07 19:06:25
4130      [auth1.c]
4131      missing free, stevesk@pobox.com
4132    - markus@cvs.openbsd.org 2001/01/07 11:28:04
4133      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1
4134       ssh.h sshd.8 sshd.c]
4135      rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
4136      syslog priority changes:
4137              fatal() LOG_ERR  -> LOG_CRIT
4138              log()   LOG_INFO -> LOG_NOTICE
4139  - Updated TODO
4140
4141 20010107
4142  - (bal) OpenBSD Sync
4143    - markus@cvs.openbsd.org 2001/01/06 11:23:27
4144      [ssh-rsa.c]
4145      remove unused
4146    - itojun@cvs.openbsd.org 2001/01/05 08:23:29
4147      [ssh-keyscan.1]
4148      missing .El
4149    - markus@cvs.openbsd.org 2001/01/04 22:41:03
4150      [session.c sshconnect.c]
4151      consistent use of _PATH_BSHELL; from stevesk@pobox.com
4152    - djm@cvs.openbsd.org 2001/01/04 22:35:32
4153      [ssh.1 sshd.8]
4154      Mention AES as available SSH2 Cipher; ok markus
4155    - markus@cvs.openbsd.org 2001/01/04 22:25:58
4156      [sshd.c]
4157      sync usage()/man with defaults; from stevesk@pobox.com
4158    - markus@cvs.openbsd.org 2001/01/04 22:21:26
4159      [sshconnect2.c]
4160      handle SSH2_MSG_USERAUTH_BANNER; fixes bug when connecting to a server
4161      that prints a banner (e.g. /etc/issue.net)
4162
4163 20010105
4164  - (bal) contrib/caldera/ provided by Tim Rice <tim@multitalents.net>
4165  - (bal) bsd-getcwd.c and bsd-setenv.c changed from bcopy() to memmove()
4166
4167 20010104
4168  - (djm) Fix memory leak on systems with BROKEN_GETADDRINFO. Based on
4169    work by Chris Vaughan <vaughan99@yahoo.com>
4170
4171 20010103
4172  - (bal) fixed up sshconnect.c so it was closer inline with the OpenBSD
4173    tree (mainly positioning)
4174  - (bal) OpenSSH CVS Update
4175    - markus@cvs.openbsd.org 2001/01/02 20:41:02
4176      [packet.c]
4177      log remote ip on disconnect; PR 1600 from jcs@rt.fm
4178    - markus@cvs.openbsd.org 2001/01/02 20:50:56
4179      [sshconnect.c]
4180      strict_host_key_checking for host_status != HOST_CHANGED &&
4181      ip_status == HOST_CHANGED
4182  - (bal) authfile.c: Synced CVS ID tag
4183  - (bal) UnixWare 2.0 fixes by Tim Rice <tim@multitalents.net>
4184  - (bal) Disable sftp-server if no 64bit int support exists.  Based on
4185    patch by Tim Rice <tim@multitalents.net>
4186  - (bal) Makefile.in changes to uninstall: target to remove sftp-server
4187    and sftp-server.8 manpage.
4188
4189 20010102
4190  - (bal) OpenBSD CVS Update
4191    - markus@cvs.openbsd.org 2001/01/01 14:52:49
4192      [scp.c]
4193      use shared fatal(); from stevesk@pobox.com
4194
4195 20001231
4196  - (bal) Reverted out of MAXHOSTNAMELEN.  This should be set per OS.
4197    for multiple reasons.
4198  - (bal) Reverted out of a partial NeXT patch.
4199
4200 20001230
4201  - (bal) OpenBSD CVS Update
4202    - markus@cvs.openbsd.org 2000/12/28 18:58:30
4203      [ssh-keygen.c]
4204      enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
4205    - markus@cvs.openbsd.org 2000/12/29 22:19:13
4206      [channels.c]
4207      missing xfree; from vaughan99@yahoo.com
4208  - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
4209  - (bal) if no MAXHOSTNAMELEN is defined.  Default to 64 character defination.
4210    Suggested by Christian Kurz <shorty@debian.org>
4211  - (bal) Add in '.c.o' section to Makefile.in to address make programs that
4212     don't honor CPPFLAGS by default.  Suggested by Lutz Jaenicke
4213     <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4214
4215 20001229
4216  - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
4217    Kurz <shorty@debian.org>
4218  - (bal) OpenBSD CVS Update
4219    - markus@cvs.openbsd.org 2000/12/28 14:25:51
4220      [auth.h auth2.c]
4221      count authentication failures only
4222    - markus@cvs.openbsd.org 2000/12/28 14:25:03
4223      [sshconnect.c]
4224      fingerprint for MITM attacks, too.
4225    - markus@cvs.openbsd.org 2000/12/28 12:03:57
4226      [sshd.8 sshd.c]
4227      document -D
4228    - markus@cvs.openbsd.org 2000/12/27 14:19:21
4229      [serverloop.c]
4230      less chatty
4231    - markus@cvs.openbsd.org 2000/12/27 12:34
4232      [auth1.c sshconnect2.c sshd.c]
4233      typo
4234    - markus@cvs.openbsd.org 2000/12/27 12:30:19
4235      [readconf.c readconf.h ssh.1 sshconnect.c]
4236      new option: HostKeyAlias: allow the user to record the host key
4237      under a different name. This is useful for ssh tunneling over
4238      forwarded connections or if you run multiple sshd's on different
4239      ports on the same machine.
4240    - markus@cvs.openbsd.org 2000/12/27 11:51:53
4241      [ssh.1 ssh.c]
4242      multiple -t force pty allocation, document ORIGINAL_COMMAND
4243    - markus@cvs.openbsd.org 2000/12/27 11:41:31
4244      [sshd.8]
4245      update for ssh-2
4246  - (stevesk) compress.[ch] sync with openbsd; missed in prototype
4247    fix merge.
4248
4249 20001228
4250  - (bal) Patch to add libutil.h to loginrec.c only if the platform has
4251    libutil.h.  Suggested by Pekka Savola <pekka@netcore.fi>
4252  - (djm) Update to new x11-askpass in RPM spec
4253  - (bal) SCO patch to not include <sys/queue.h> since it's unrelated
4254    header.  Patch by Tim Rice <tim@multitalents.net>
4255  - Updated TODO w/ known HP/UX issue
4256  - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the
4257    bad reference to 'NeXT including it else were' on the #ifdef version.
4258
4259 20001227
4260  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
4261    Takumi Yamane <yamtak@b-session.com>
4262  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
4263    by Corinna Vinschen <vinschen@redhat.com>
4264  - (djm) Fix catman-do target for non-bash
4265  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
4266    Takumi Yamane <yamtak@b-session.com>
4267  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
4268    by Corinna Vinschen <vinschen@redhat.com>
4269  - (djm) Fix catman-do target for non-bash
4270  - (bal) Fixed NeXT's lack of CPPFLAGS honoring.
4271  - (bal) ssh-keyscan.c: NeXT (and older BSDs) don't support getrlimit() w/
4272    'RLIMIT_NOFILE'
4273  - (djm) Remove *.Ylonen files. They are no longer in the OpenBSD tree,
4274    the info in COPYING.Ylonen has been moved to the start of each
4275    SSH1-derived file and README.Ylonen is well out of date.
4276
4277 20001223
4278  - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
4279    if a change to config.h has occurred.  Suggested by Gert Doering
4280    <gert@greenie.muc.de>
4281  - (bal) OpenBSD CVS Update:
4282    - markus@cvs.openbsd.org 2000/12/22 16:49:40
4283      [ssh-keygen.c]
4284      fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.com
4285
4286 20001222
4287  - Updated RCSID for pty.c
4288  - (bal) OpenBSD CVS Updates:
4289   - markus@cvs.openbsd.org 2000/12/21 15:10:16
4290     [auth-rh-rsa.c hostfile.c hostfile.h sshconnect.c]
4291     print keyfile:line for changed hostkeys, for deraadt@, ok deraadt@
4292   - markus@cvs.openbsd.org 2000/12/20 19:26:56
4293     [authfile.c]
4294     allow ssh -i userkey for root
4295   - markus@cvs.openbsd.org 2000/12/20 19:37:21
4296     [authfd.c authfd.h kex.c sshconnect2.c sshd.c uidswap.c uidswap.h]
4297     fix prototypes; from stevesk@pobox.com
4298   - markus@cvs.openbsd.org 2000/12/20 19:32:08
4299     [sshd.c]
4300     init pointer to NULL; report from Jan.Ivan@cern.ch
4301   - markus@cvs.openbsd.org 2000/12/19 23:17:54
4302     [auth-krb4.c auth-options.c auth-options.h auth-rhosts.c auth-rsa.c
4303      auth1.c auth2-skey.c auth2.c authfd.c authfd.h authfile.c bufaux.c
4304      bufaux.h buffer.c canohost.c channels.c clientloop.c compress.c
4305      crc32.c deattack.c getput.h hmac.c hmac.h hostfile.c kex.c kex.h
4306      key.c key.h log.c login.c match.c match.h mpaux.c mpaux.h packet.c
4307      packet.h radix.c readconf.c rsa.c scp.c servconf.c servconf.h
4308      serverloop.c session.c sftp-server.c ssh-agent.c ssh-dss.c ssh-dss.h
4309      ssh-keygen.c ssh-keyscan.c ssh-rsa.c ssh-rsa.h ssh.c ssh.h  uuencode.c
4310      uuencode.h sshconnect1.c sshconnect2.c sshd.c tildexpand.c]
4311     replace 'unsigned bla' with 'u_bla' everywhere. also replace 'char
4312     unsigned' with u_char.
4313
4314 20001221
4315  - (stevesk) OpenBSD CVS updates:
4316    - markus@cvs.openbsd.org 2000/12/19 15:43:45
4317      [authfile.c channels.c sftp-server.c ssh-agent.c]
4318      remove() -> unlink() for consistency
4319    - markus@cvs.openbsd.org 2000/12/19 15:48:09
4320      [ssh-keyscan.c]
4321      replace <ssl/x.h> with <openssl/x.h>
4322    - markus@cvs.openbsd.org 2000/12/17 02:33:40
4323      [uidswap.c]
4324      typo; from wsanchez@apple.com
4325
4326 20001220
4327  - (djm) Workaround PAM inconsistencies between Solaris derived PAM code
4328    and Linux-PAM. Based on report and fix from Andrew Morgan
4329    <morgan@transmeta.com>
4330
4331 20001218
4332  - (stevesk) rsa.c: entropy.h not needed.
4333  - (bal) split CFLAGS into CFLAGS and CPPFLAGS in configure.in and Makefile.
4334    Suggested by Wilfredo Sanchez <wsanchez@apple.com>
4335
4336 20001216
4337  - (stevesk) OpenBSD CVS updates:
4338    - markus@cvs.openbsd.org 2000/12/16 02:53:57
4339      [scp.c]
4340      allow + in usernames; request from Florian.Weimer@RUS.Uni-Stuttgart.DE
4341    - markus@cvs.openbsd.org 2000/12/16 02:39:57
4342      [scp.c]
4343      unused; from stevesk@pobox.com
4344
4345 20001215
4346  - (stevesk) Old OpenBSD patch wasn't completely applied:
4347    - markus@cvs.openbsd.org 2000/01/24 22:11:20
4348      [scp.c]
4349      allow '.' in usernames; from jedgar@fxp.org
4350  - (stevesk) OpenBSD CVS updates:
4351    - markus@cvs.openbsd.org 2000/12/13 16:26:53
4352      [ssh-keyscan.c]
4353      fatal already adds \n; from stevesk@pobox.com
4354    - markus@cvs.openbsd.org 2000/12/13 16:25:44
4355      [ssh-agent.c]
4356      remove redundant spaces; from stevesk@pobox.com
4357    - ho@cvs.openbsd.org 2000/12/12 15:50:21
4358      [pty.c]
4359      When failing to set tty owner and mode on a read-only filesystem, don't
4360      abort if the tty already has correct owner and reasonably sane modes.
4361      Example; permit 'root' to login to a firewall with read-only root fs.
4362      (markus@ ok)
4363    - deraadt@cvs.openbsd.org 2000/12/13 06:36:05
4364      [pty.c]
4365      KNF
4366    - markus@cvs.openbsd.org 2000/12/12 14:45:21
4367      [sshd.c]
4368      source port < 1024 is no longer required for rhosts-rsa since it
4369      adds no additional security.
4370    - markus@cvs.openbsd.org 2000/12/12 16:11:49
4371      [ssh.1 ssh.c]
4372      rhosts-rsa is no longer automagically disabled if ssh is not privileged.
4373      UsePrivilegedPort=no disables rhosts-rsa _only_ for old servers.
4374      these changes should not change the visible default behaviour of the ssh client.
4375    - deraadt@cvs.openbsd.org 2000/12/11 10:27:33
4376      [scp.c]
4377      when copying 0-sized files, do not re-print ETA time at completion
4378    - provos@cvs.openbsd.org 2000/12/15 10:30:15
4379      [kex.c kex.h sshconnect2.c sshd.c]
4380      compute diffie-hellman in parallel between server and client. okay markus@
4381
4382 20001213
4383  - (djm) Make sure we reset the SIGPIPE disposition after we fork. Report
4384    from Andreas M. Kirchwitz <amk@krell.zikzak.de>
4385  - (stevesk) OpenBSD CVS update:
4386    - markus@cvs.openbsd.org 2000/12/12 15:30:02
4387      [ssh-keyscan.c ssh.c sshd.c]
4388      consistently use __progname; from stevesk@pobox.com
4389
4390 20001211
4391  - (bal) Applied patch to include ssh-keyscan into Redhat's package, and
4392    patch to install ssh-keyscan manpage.  Patch by Pekka Savola
4393    <pekka@netcore.fi>
4394  - (bal) OpenbSD CVS update
4395    - markus@cvs.openbsd.org 2000/12/10 17:01:53
4396      [sshconnect1.c]
4397      always request new challenge for skey/tis-auth, fixes interop with
4398      other implementations; report from roth@feep.net
4399
4400 20001210
4401  - (bal) OpenBSD CVS updates
4402    - markus@cvs.openbsd.org 2000/12/09 13:41:51
4403      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
4404      undo rijndael changes
4405    - markus@cvs.openbsd.org 2000/12/09 13:48:31
4406      [rijndael.c]
4407      fix byte order bug w/o introducing new implementation
4408    - markus@cvs.openbsd.org 2000/12/09 14:08:27
4409      [sftp-server.c]
4410      "" -> "." for realpath; from vinschen@redhat.com
4411    - markus@cvs.openbsd.org 2000/12/09 14:06:54
4412      [ssh-agent.c]
4413      extern int optind; from stevesk@sweden.hp.com
4414    - provos@cvs.openbsd.org 2000/12/09 23:51:11
4415      [compat.c]
4416      remove unnecessary '\n'
4417
4418 20001209
4419  - (bal) OpenBSD CVS updates:
4420    - djm@cvs.openbsd.org 2000/12/07 4:24:59
4421      [ssh.1]
4422      Typo fix from Wilfredo Sanchez <wsanchez@apple.com>; ok theo
4423
4424 20001207
4425  - (bal) OpenBSD CVS updates:
4426    - markus@cvs.openbsd.org 2000/12/06 22:58:14
4427      [compat.c compat.h packet.c]
4428      disable debug messages for ssh.com/f-secure 2.0.1x, 2.1.0
4429    - markus@cvs.openbsd.org 2000/12/06 23:10:39
4430      [rijndael.c]
4431      unexpand(1)
4432    - markus@cvs.openbsd.org 2000/12/06 23:05:43
4433      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
4434      new rijndael implementation. fixes endian bugs
4435
4436 20001206
4437  - (bal) OpenBSD CVS updates:
4438    - markus@cvs.openbsd.org 2000/12/05 20:34:09
4439      [channels.c channels.h clientloop.c serverloop.c]
4440      async connects for -R/-L; ok deraadt@
4441    - todd@cvs.openssh.org 2000/12/05 16:47:28
4442      [sshd.c]
4443      tweak comment to reflect real location of pid file; ok provos@
4444  - (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
4445    have it (used in ssh-keyscan).
4446  - (stevesk) OpenBSD CVS update:
4447    - markus@cvs.openbsd.org 2000/12/06 19:57:48
4448      [ssh-keyscan.c]
4449      err(3) -> internal error(), from stevesk@sweden.hp.com
4450
4451 20001205
4452  - (bal) OpenBSD CVS updates:
4453    - markus@cvs.openbsd.org 2000/12/04 19:24:02
4454      [ssh-keyscan.c ssh-keyscan.1]
4455      David Maziere's ssh-keyscan, ok niels@
4456  - (bal) Updated Makefile.in to include ssh-keyscan that was just added
4457    to the recent OpenBSD source tree.
4458  - (stevesk) fix typos in contrib/hpux/README
4459
4460 20001204
4461  - (bal) More C functions defined in NeXT that are unaccessable without
4462    defining -POSIX.
4463  - (bal) OpenBSD CVS updates:
4464    - markus@cvs.openbsd.org 2000/12/03 11:29:04
4465      [compat.c]
4466      remove fallback to SSH_BUG_HMAC now that the drafts are updated
4467    - markus@cvs.openbsd.org 2000/12/03 11:27:55
4468      [compat.c]
4469      correctly match "2.1.0.pl2 SSH" etc; from
4470      pekkas@netcore.fi/bugzilla.redhat
4471    - markus@cvs.openbsd.org 2000/12/03 11:15:03
4472      [auth2.c compat.c compat.h sshconnect2.c]
4473      support f-secure/ssh.com 2.0.12; ok niels@
4474
4475 20001203
4476  - (bal) OpenBSD CVS updates:
4477   - markus@cvs.openbsd.org 2000/11/30 22:54:31
4478     [channels.c]
4479     debug->warn if tried to do -R style fwd w/o client requesting this;
4480     ok neils@
4481   - markus@cvs.openbsd.org 2000/11/29 20:39:17
4482     [cipher.c]
4483     des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IV
4484   - markus@cvs.openbsd.org 2000/11/30 18:33:05
4485     [ssh-agent.c]
4486     agents must not dump core, ok niels@
4487   - markus@cvs.openbsd.org 2000/11/30 07:04:02
4488     [ssh.1]
4489     T is for both protocols
4490   - markus@cvs.openbsd.org 2000/12/01 00:00:51
4491     [ssh.1]
4492     typo; from green@FreeBSD.org
4493   - markus@cvs.openbsd.org 2000/11/30 07:02:35
4494     [ssh.c]
4495     check -T before isatty()
4496   - provos@cvs.openbsd.org 2000/11/29 13:51:27
4497     [sshconnect.c]
4498     show IP address and hostname when new key is encountered. okay markus@
4499   - markus@cvs.openbsd.org 2000/11/30 22:53:35
4500     [sshconnect.c]
4501     disable agent/x11/port fwding if hostkey has changed; ok niels@
4502   - marksu@cvs.openbsd.org 2000/11/29 21:11:59
4503     [sshd.c]
4504     sshd -D, startup w/o deamon(), for monitoring scripts or inittab;
4505     from handler@sub-rosa.com and eric@urbanrange.com; ok niels@
4506  - (djm) Added patch from Nalin Dahyabhai <nalin@redhat.com> to enable
4507    PAM authentication using KbdInteractive.
4508  - (djm) Added another TODO
4509
4510 20001202
4511  - (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
4512  - (bal) Irix need some sort of mansubdir, patch by Michael Stone
4513    <mstone@cs.loyola.edu>
4514
4515 20001129
4516  - (djm) Back out all the serverloop.c hacks. sshd will now hang again
4517    if there are background children with open fds.
4518  - (djm) bsd-rresvport.c bzero -> memset
4519  - (djm) Don't fail in defines.h on absence of 64 bit types (we will
4520    still fail during compilation of sftp-server).
4521  - (djm) Fail if ar is not found during configure
4522  - (djm) OpenBSD CVS updates:
4523    - provos@cvs.openbsd.org  2000/11/22 08:38:31
4524      [sshd.8]
4525      talk about /etc/primes, okay markus@
4526    - markus@cvs.openbsd.org  2000/11/23 14:03:48
4527      [ssh.c sshconnect1.c sshconnect2.c]
4528      complain about invalid ciphers for ssh1/ssh2, fall back to reasonable
4529      defaults
4530    - markus@cvs.openbsd.org  2000/11/25 09:42:53
4531      [sshconnect1.c]
4532      reorder check for illegal ciphers, bugreport from espie@
4533    - markus@cvs.openbsd.org  2000/11/25 10:19:34
4534      [ssh-keygen.c ssh.h]
4535      print keytype when generating a key.
4536      reasonable defaults for RSA1/RSA/DSA keys.
4537  - (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
4538    more manpage paths in fixpaths calls
4539  - (djm) Also add xauth path at Pekka's suggestion.
4540  - (djm) Add Redhat RPM patch for AUTHPRIV SyslogFacility
4541
4542 20001125
4543  - (djm) Give up privs when reading seed file
4544
4545 20001123
4546  - (bal) Merge OpenBSD changes:
4547    - markus@cvs.openbsd.org  2000/11/15 22:31:36
4548      [auth-options.c]
4549      case insensitive key options; from stevesk@sweeden.hp.com
4550    - markus@cvs.openbsd.org  2000/11/16 17:55:43
4551      [dh.c]
4552      do not use perror() in sshd, after child is forked()
4553    - markus@cvs.openbsd.org  2000/11/14 23:42:40
4554      [auth-rsa.c]
4555      parse option only if key matches; fix some confusing seen by the client
4556    - markus@cvs.openbsd.org  2000/11/14 23:44:19
4557      [session.c]
4558      check no_agent_forward_flag for ssh-2, too
4559    - markus@cvs.openbsd.org  2000/11/15
4560      [ssh-agent.1]
4561      reorder SYNOPSIS; typo, use .It
4562    - markus@cvs.openbsd.org  2000/11/14 23:48:55
4563      [ssh-agent.c]
4564      do not reorder keys if a key is removed
4565    - markus@cvs.openbsd.org  2000/11/15 19:58:08
4566      [ssh.c]
4567      just ignore non existing user keys
4568    - millert@cvs.openbsd.org  200/11/15 20:24:43
4569      [ssh-keygen.c]
4570      Add missing \n at end of error message.
4571
4572 20001122
4573  - (bal) Minor patch to ensure platforms lacking IRIX job limit supports
4574    are compilable.
4575  - (bal) Updated TODO as of 11/18/2000 with known things to resolve.
4576
4577 20001117
4578  - (bal) Changed from 'primes' to 'primes.out' for consistancy sake.  It
4579    has no affect the output.  Patch by Corinna Vinschen <vinschen@redhat.com>
4580  - (stevesk) Reworked progname support.
4581  - (bal) Misplaced #include "includes.h" in bsd-setproctitle.c.  Patch by
4582    Shinichi Maruyama <marya@st.jip.co.jp>
4583
4584 20001116
4585  - (bal) Added in MAXSYMLINK test in bsd-realpath.c.  Required for some SCO
4586    releases.
4587  - (bal) Make builds work outside of source tree.  Patch by Mark D. Roth
4588    <roth@feep.net>
4589
4590 20001113
4591  - (djm) Add pointer to http://www.imasy.or.jp/~gotoh/connect.c to
4592    contrib/README
4593  - (djm) Merge OpenBSD changes:
4594    - markus@cvs.openbsd.org  2000/11/06 16:04:56
4595      [channels.c channels.h clientloop.c nchan.c serverloop.c]
4596      [session.c ssh.c]
4597      agent forwarding and -R for ssh2, based on work from
4598      jhuuskon@messi.uku.fi
4599    - markus@cvs.openbsd.org  2000/11/06 16:13:27
4600      [ssh.c sshconnect.c sshd.c]
4601      do not disabled rhosts(rsa) if server port > 1024; from
4602      pekkas@netcore.fi
4603    - markus@cvs.openbsd.org  2000/11/06 16:16:35
4604      [sshconnect.c]
4605      downgrade client to 1.3 if server is 1.4; help from mdb@juniper.net
4606    - markus@cvs.openbsd.org  2000/11/09 18:04:40
4607      [auth1.c]
4608      typo; from mouring@pconline.com
4609    - markus@cvs.openbsd.org  2000/11/12 12:03:28
4610      [ssh-agent.c]
4611      off-by-one when removing a key from the agent
4612    - markus@cvs.openbsd.org  2000/11/12 12:50:39
4613      [auth-rh-rsa.c auth2.c authfd.c authfd.h]
4614      [authfile.c hostfile.c kex.c kex.h key.c key.h myproposal.h]
4615      [readconf.c readconf.h rsa.c rsa.h servconf.c servconf.h ssh-add.c]
4616      [ssh-agent.c ssh-keygen.1 ssh-keygen.c ssh.1 ssh.c ssh_config]
4617      [sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config ssh-dss.c]
4618      [ssh-dss.h ssh-rsa.c ssh-rsa.h dsa.c dsa.h]
4619      add support for RSA to SSH2.  please test.
4620      there are now 3 types of keys: RSA1 is used by ssh-1 only,
4621      RSA and DSA are used by SSH2.
4622      you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
4623      keys for SSH2 and use the RSA keys for hostkeys or for user keys.
4624      SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.
4625  - (djm) Fix up Makefile and Redhat init script to create RSA host keys
4626  - (djm) Change to interim version
4627  - (djm) Fix RPM spec file stupidity
4628  - (djm) fixpaths to DSA and RSA keys too
4629
4630 20001112
4631  - (bal) SCO Patch to add needed libraries for configure.in.  Patch by
4632    Phillips Porch <root@theporch.com>
4633  - (bal) IRIX patch to adding Job Limits.  Patch by Denis Parker
4634    <dcp@sgi.com>
4635  - (stevesk) pty.c: HP-UX 10 and 11 don't define TIOCSCTTY.  Add error() to
4636    failed ioctl(TIOCSCTTY) call.
4637
4638 20001111
4639  - (djm) Added /etc/primes for kex DH group neg, fixup Makefile.in and
4640    packaging files
4641  - (djm) Fix new Makefile.in warnings
4642  - (djm) Fix vsprintf("%h") in bsd-snprintf.c, short int va_args are
4643    promoted to type int. Report and fix from Dan Astoorian
4644    <djast@cs.toronto.edu>
4645  - (djm) Hardwire sysconfdir in RPM spec files as some RPM versions get
4646    it wrong. Report from Bennett Todd <bet@rahul.net>
4647
4648 20001110
4649  - (bal) Fixed dropped answer from skey_keyinfo() in auth1.c
4650  - (bal) Changed from --with-skey to --with-skey=PATH in configure.in
4651  - (bal) Added in check to verify S/Key library is being detected in
4652    configure.in
4653  - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif.
4654    Patch by Mark Miller <markm@swoon.net>
4655  - (bal) Added 'util.h' header to loginrec.c only if HAVE_UTIL_H is defined
4656    to remove warnings under MacOS X.  Patch by Mark Miller <markm@swoon.net>
4657  - (bal) Fixed LDFLAG mispelling in configure.in for --with-afs
4658
4659 20001107
4660  - (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
4661    Mark Miller <markm@swoon.net>
4662  - (bal) sshd.init files corrected to assign $? to RETVAL.  Patch by
4663    Jarno Huuskonen <jhuuskon@messi.uku.fi>
4664  - (bal) fixpaths fixed to stop it from quitely failing. Patch by
4665    Mark D. Roth <roth@feep.net>
4666
4667 20001106
4668  - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
4669  - (djm) Manually fix up missed diff hunks (mainly RCS idents)
4670  - (djm) Remove UPGRADING document in favour of a link to the better
4671    maintained FAQ on www.openssh.com
4672  - (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
4673    <pekkas@netcore.fi>
4674  - (djm) Don't need X11-askpass in RPM spec file if building without it
4675    from Pekka Savola <pekkas@netcore.fi>
4676  - (djm) Release 2.3.0p1
4677  - (bal) typo in configure.in in regards to --with-ldflags from Marko
4678    Asplund <aspa@kronodoc.fi>
4679  - (bal) fixed next-posix.h.  Forgot prototype of getppid().
4680
4681 20001105
4682  - (bal) Sync with OpenBSD:
4683    - markus@cvs.openbsd.org 2000/10/31 9:31:58
4684      [compat.c]
4685      handle all old openssh versions
4686    - markus@cvs.openbsd.org 2000/10/31 13:1853
4687      [deattack.c]
4688      so that large packets do not wrap "n"; from netbsd
4689  - (bal) rijndel.c - fix up RCSID to match OpenBSD tree
4690  - (bal) auth2-skey.c - Checked in.  Missing from portable tree.
4691  - (bal) Reworked NEWS-OS and NeXT ports to extract waitpid() and
4692    setsid() into more common files
4693  - (stevesk) pty.c: use __hpux to identify HP-UX.
4694  - (bal) Missed auth-skey.o in Makefile.in and minor correction to
4695    bsd-waitpid.c
4696
4697 20001029
4698  - (stevesk) Fix typo in auth.c: USE_PAM not PAM
4699  - (stevesk) Create contrib/cygwin/ directory; patch from
4700    Corinna Vinschen <vinschen@redhat.com>
4701  - (bal) Resolved more $xno and $xyes issues in configure.in
4702  - (bal) next-posix.h - spelling and forgot a prototype
4703
4704 20001028
4705  - (djm) fix select hack in serverloop.c from Philippe WILLEM
4706    <Philippe.WILLEM@urssaf.fr>
4707  - (djm) Fix mangled AIXAUTHENTICATE code
4708  - (djm) authctxt->pw may be NULL. Fix from Markus Friedl
4709    <markus.friedl@informatik.uni-erlangen.de>
4710  - (djm) Sync with OpenBSD:
4711    - markus@cvs.openbsd.org  2000/10/16 15:46:32
4712      [ssh.1]
4713      fixes from pekkas@netcore.fi
4714    - markus@cvs.openbsd.org  2000/10/17 14:28:11
4715      [atomicio.c]
4716      return number of characters processed; ok deraadt@
4717    - markus@cvs.openbsd.org  2000/10/18 12:04:02
4718      [atomicio.c]
4719      undo
4720    - markus@cvs.openbsd.org  2000/10/18 12:23:02
4721      [scp.c]
4722      replace atomicio(read,...) with read(); ok deraadt@
4723    - markus@cvs.openbsd.org  2000/10/18 12:42:00
4724      [session.c]
4725      restore old record login behaviour
4726    - deraadt@cvs.openbsd.org 2000/10/19 10:41:13
4727      [auth-skey.c]
4728      fmt string problem in unused code
4729    - provos@cvs.openbsd.org  2000/10/19 10:45:16
4730      [sshconnect2.c]
4731      don't reference freed memory. okay deraadt@
4732    - markus@cvs.openbsd.org  2000/10/21 11:04:23
4733      [canohost.c]
4734      typo, eramore@era-t.ericsson.se; ok niels@
4735    - markus@cvs.openbsd.org  2000/10/23 13:31:55
4736      [cipher.c]
4737      non-alignment dependent swap_bytes(); from
4738      simonb@wasabisystems.com/netbsd
4739    - markus@cvs.openbsd.org  2000/10/26 12:38:28
4740      [compat.c]
4741      add older vandyke products
4742    - markus@cvs.openbsd.org  2000/10/27 01:32:19
4743      [channels.c channels.h clientloop.c serverloop.c session.c]
4744      [ssh.c util.c]
4745      enable non-blocking IO on channels, and tty's (except for the
4746      client ttys).
4747
4748 20001027
4749  - (djm) Increase REKEY_BYTES to 2^24 for arc4random
4750
4751 20001025
4752  - (djm) Added WARNING.RNG file and modified configure to ask users of the
4753    builtin entropy code to read it.
4754  - (djm) Prefer builtin regex to PCRE.
4755  - (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
4756  - (bal) Apply fixes to configure.in pointed out by Pavel Roskin
4757    <proski@gnu.org>
4758
4759 20001020
4760  - (djm) Don't define _REENTRANT for SNI/Reliant Unix
4761  - (bal) Imported NEWS-OS waitpid() macros into NeXT.  Since implementation
4762    is more correct then current version.
4763
4764 20001018
4765  - (stevesk) Add initial support for setproctitle().  Current
4766    support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
4767  - (stevesk) Add egd startup scripts to contrib/hpux/
4768
4769 20001017
4770  - (djm) Add -lregex to cywin libs from Corinna Vinschen
4771    <vinschen@cygnus.com>
4772  - (djm) Don't rely on atomicio's retval to determine length of askpass
4773    supplied passphrase. Problem report from Lutz Jaenicke
4774    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4775  - (bal) Changed from GNU rx to PCRE on suggestion from djm.
4776  - (bal) Integrated Sony NEWS-OS patches from NAKAJI Hirouyuki
4777    <nakaji@tutrp.tut.ac.jp>
4778
4779 20001016
4780  - (djm) Sync with OpenBSD:
4781    - markus@cvs.openbsd.org  2000/10/14 04:01:15
4782      [cipher.c]
4783      debug3
4784    - markus@cvs.openbsd.org  2000/10/14 04:07:23
4785      [scp.c]
4786      remove spaces from arguments; from djm@mindrot.org
4787    - markus@cvs.openbsd.org  2000/10/14 06:09:46
4788      [ssh.1]
4789      Cipher is for SSH-1 only
4790    - markus@cvs.openbsd.org  2000/10/14 06:12:09
4791      [servconf.c servconf.h serverloop.c session.c sshd.8]
4792      AllowTcpForwarding; from naddy@
4793    - markus@cvs.openbsd.org  2000/10/14 06:16:56
4794      [auth2.c compat.c compat.h sshconnect2.c version.h]
4795      OpenSSH_2.3; note that is is not complete, but the version number
4796      needs to be changed for interoperability reasons
4797    - markus@cvs.openbsd.org  2000/10/14 06:19:45
4798      [auth-rsa.c]
4799      do not send RSA challenge if key is not allowed by key-options; from
4800      eivind@ThinkSec.com
4801    - markus@cvs.openbsd.org  2000/10/15 08:14:01
4802      [rijndael.c session.c]
4803      typos; from stevesk@sweden.hp.com
4804    - markus@cvs.openbsd.org  2000/10/15 08:18:31
4805      [rijndael.c]
4806      typo
4807  - (djm) Copy manpages back over from OpenBSD - too tedious to wade
4808    through diffs
4809  - (djm) Added condrestart to Redhat init script. Patch from Pekka Savola
4810    <pekkas@netcore.fi>
4811  - (djm) Update version in Redhat spec file
4812  - (djm) Merge some of Nalin Dahyabhai <nalin@redhat.com> changes from the
4813    Redhat 7.0 spec file
4814  - (djm) Make inability to read/write PRNG seedfile non-fatal
4815
4816
4817 20001015
4818  - (djm) Fix ssh2 hang on background processes at logout.
4819
4820 20001014
4821  - (bal) Add support for realpath and getcwd for platforms with broken
4822    or missing realpath implementations for sftp-server.
4823  - (bal) Corrected mistake in INSTALL in regards to GNU rx library
4824  - (bal) Add support for GNU rx library for those lacking regexp support
4825  - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
4826  - (djm) Revert SSH2 serverloop hack, will find a better way.
4827  - (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
4828    from Martin Johansson <fatbob@acc.umu.se>
4829  - (djm) Big OpenBSD sync:
4830    - markus@cvs.openbsd.org  2000/09/30 10:27:44
4831      [log.c]
4832      allow loglevel debug
4833    - markus@cvs.openbsd.org  2000/10/03 11:59:57
4834      [packet.c]
4835      hmac->mac
4836    - markus@cvs.openbsd.org  2000/10/03 12:03:03
4837      [auth-krb4.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth1.c]
4838      move fake-auth from auth1.c to individual auth methods, disables s/key in
4839      debug-msg
4840    - markus@cvs.openbsd.org  2000/10/03 12:16:48
4841      ssh.c
4842      do not resolve canonname, i have no idea why this was added oin ossh
4843    - markus@cvs.openbsd.org  2000/10/09 15:30:44
4844      ssh-keygen.1 ssh-keygen.c
4845      -X now reads private ssh.com DSA keys, too.
4846    - markus@cvs.openbsd.org  2000/10/09 15:32:34
4847      auth-options.c
4848      clear options on every call.
4849    - markus@cvs.openbsd.org  2000/10/09 15:51:00
4850      authfd.c authfd.h
4851      interop with ssh-agent2, from <res@shore.net>
4852    - markus@cvs.openbsd.org  2000/10/10 14:20:45
4853      compat.c
4854      use rexexp for version string matching
4855    - provos@cvs.openbsd.org  2000/10/10 22:02:18
4856      [kex.c kex.h myproposal.h ssh.h ssh2.h sshconnect2.c sshd.c dh.c dh.h]
4857      First rough implementation of the diffie-hellman group exchange.  The
4858      client can ask the server for bigger groups to perform the diffie-hellman
4859      in, thus increasing the attack complexity when using ciphers with longer
4860      keys.  University of Windsor provided network, T the company.
4861    - markus@cvs.openbsd.org  2000/10/11 13:59:52
4862      [auth-rsa.c auth2.c]
4863      clear auth options unless auth sucessfull
4864    - markus@cvs.openbsd.org  2000/10/11 14:00:27
4865      [auth-options.h]
4866      clear auth options unless auth sucessfull
4867    - markus@cvs.openbsd.org  2000/10/11 14:03:27
4868      [scp.1 scp.c]
4869      support 'scp -o' with help from mouring@pconline.com
4870    - markus@cvs.openbsd.org  2000/10/11 14:11:35
4871      [dh.c]
4872      Wall
4873    - markus@cvs.openbsd.org  2000/10/11 14:14:40
4874      [auth.h auth2.c readconf.c readconf.h readpass.c servconf.c servconf.h]
4875      [ssh.h sshconnect2.c sshd_config auth2-skey.c cli.c cli.h]
4876      add support for s/key (kbd-interactive) to ssh2, based on work by
4877      mkiernan@avantgo.com and me
4878    - markus@cvs.openbsd.org  2000/10/11 14:27:24
4879      [auth.c auth1.c auth2.c authfile.c cipher.c cipher.h kex.c kex.h]
4880      [myproposal.h packet.c readconf.c session.c ssh.c ssh.h sshconnect1.c]
4881      [sshconnect2.c sshd.c]
4882      new cipher framework
4883    - markus@cvs.openbsd.org  2000/10/11 14:45:21
4884      [cipher.c]
4885      remove DES
4886    - markus@cvs.openbsd.org  2000/10/12 03:59:20
4887      [cipher.c cipher.h sshconnect1.c sshconnect2.c sshd.c]
4888      enable DES in SSH-1 clients only
4889    - markus@cvs.openbsd.org  2000/10/12 08:21:13
4890      [kex.h packet.c]
4891      remove unused
4892    - markus@cvs.openbsd.org  2000/10/13 12:34:46
4893      [sshd.c]
4894      Kludge for F-Secure Macintosh < 1.0.2; appro@fy.chalmers.se
4895    - markus@cvs.openbsd.org  2000/10/13 12:59:15
4896      [cipher.c cipher.h myproposal.h  rijndael.c rijndael.h]
4897      rijndael/aes support
4898    - markus@cvs.openbsd.org  2000/10/13 13:10:54
4899      [sshd.8]
4900      more info about -V
4901    - markus@cvs.openbsd.org  2000/10/13 13:12:02
4902      [myproposal.h]
4903      prefer no compression
4904  - (djm) Fix scp user@host handling
4905  - (djm) Don't clobber ssh_prng_cmds on install
4906  - (stevesk) Include config.h in rijndael.c so we define intXX_t and
4907    u_intXX_t types on all platforms.
4908  - (stevesk) rijndael.c: cleanup missing declaration warnings.
4909  - (stevesk) ~/.hushlogin shouldn't cause required password change to
4910    be bypassed.
4911  - (stevesk) Display correct path to ssh-askpass in configure output.
4912    Report from Lutz Jaenicke.
4913
4914 20001007
4915  - (stevesk) Print PAM return value in PAM log messages to aid
4916    with debugging.
4917  - (stevesk) Fix detection of pw_class struct member in configure;
4918    patch from KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp>
4919
4920 20001002
4921  - (djm) Fix USER_PATH, report from Kevin Steves <stevesk@sweden.hp.com>
4922  - (djm) Add host system and CC to end-of-configure report. Suggested by
4923    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4924
4925 20000931
4926  - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com>
4927
4928 20000930
4929  - (djm) Irix ssh_prng_cmds path fix from Pekka Savola <pekkas@netcore.fi>
4930  - (djm) Support in bsd-snprintf.c for long long conversions from
4931    Ben Lindstrom <mouring@pconline.com>
4932  - (djm) Cleanup NeXT support from Ben Lindstrom <mouring@pconline.com>
4933  - (djm) Ignore SIGPIPEs from serverloop to child. Fixes crashes with
4934    very short lived X connections. Bug report from Tobias Oetiker
4935    <oetiker@ee.ethz.ch>. Fix from Markus Friedl <markus@cvs.openbsd.org>
4936  - (djm) Add recent InitScripts as a RPM dependancy for openssh-server
4937    patch from Pekka Savola <pekkas@netcore.fi>
4938  - (djm) Forgot to cvs add LICENSE file
4939  - (djm) Add LICENSE to RPM spec files
4940  - (djm) CVS OpenBSD sync:
4941    - markus@cvs.openbsd.org  2000/09/26 13:59:59
4942      [clientloop.c]
4943      use debug2
4944    - markus@cvs.openbsd.org  2000/09/27 15:41:34
4945      [auth2.c sshconnect2.c]
4946      use key_type()
4947    - markus@cvs.openbsd.org  2000/09/28 12:03:18
4948      [channels.c]
4949      debug -> debug2 cleanup
4950  - (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
4951    strip "/dev/"). Fix loginrec.c based on patch from Alain St-Denis
4952    <Alain.St-Denis@ec.gc.ca>
4953  - (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
4954    Problem was caused by interrupted read in ssh-add. Report from Donald
4955    J. Barry <don@astro.cornell.edu>
4956
4957 20000929
4958  - (djm) Fix SSH2 not terminating until all background tasks done problem.
4959  - (djm) Another off-by-one fix from Pavel Kankovsky
4960    <peak@argo.troja.mff.cuni.cz>
4961  - (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
4962    tidy necessary differences. Use Markus' new debugN() in entropy.c
4963  - (djm) Merged big SCO portability patch from Tim Rice
4964    <tim@multitalents.net>
4965
4966 20000926
4967  - (djm) Update X11-askpass to 1.0.2 in RPM spec file
4968  - (djm) Define _REENTRANT to pickup strtok_r() on HP/UX
4969  - (djm) Security: fix off-by-one buffer overrun in fake-getnameinfo.c.
4970    Report and fix from Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
4971
4972 20000924
4973  - (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
4974  - (djm) A bit more cleanup - created cygwin_util.h
4975  - (djm) Include strtok_r() from OpenBSD libc. Fixes report from Mark Miller
4976    <markm@swoon.net>
4977
4978 20000923
4979  - (djm) Fix address logging in utmp from Kevin Steves
4980    <stevesk@sweden.hp.com>
4981  - (djm) Redhat spec and manpage fixes from Pekka Savola <pekkas@netcore.fi>
4982  - (djm) Seperate tests for int64_t and u_int64_t types
4983  - (djm) Tweak password expiry checking at suggestion of Kevin Steves
4984    <stevesk@sweden.hp.com>
4985  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
4986  - (djm) Use printf %lld instead of %qd in sftp-server.c. Fix from
4987    Michael Stone <mstone@cs.loyola.edu>
4988  - (djm) OpenBSD CVS sync:
4989    - markus@cvs.openbsd.org  2000/09/17 09:38:59
4990      [sshconnect2.c sshd.c]
4991      fix DEBUG_KEXDH
4992    - markus@cvs.openbsd.org  2000/09/17 09:52:51
4993      [sshconnect.c]
4994      yes no; ok niels@
4995    - markus@cvs.openbsd.org  2000/09/21 04:55:11
4996      [sshd.8]
4997      typo
4998    - markus@cvs.openbsd.org  2000/09/21 05:03:54
4999      [serverloop.c]
5000      typo
5001    - markus@cvs.openbsd.org  2000/09/21 05:11:42
5002      scp.c
5003      utime() to utimes(); mouring@pconline.com
5004    - markus@cvs.openbsd.org  2000/09/21 05:25:08
5005      sshconnect2.c
5006      change login logic in ssh2, allows plugin of other auth methods
5007    - markus@cvs.openbsd.org  2000/09/21 05:25:35
5008      [auth2.c channels.c channels.h clientloop.c dispatch.c dispatch.h]
5009      [serverloop.c]
5010      add context to dispatch_run
5011    - markus@cvs.openbsd.org  2000/09/21 05:07:52
5012      authfd.c authfd.h ssh-agent.c
5013      bug compat for old ssh.com software
5014
5015 20000920
5016  - (djm) Fix bad path substitution. Report from Andrew Miner
5017    <asminer@cs.iastate.edu>
5018
5019 20000916
5020  - (djm) Fix SSL search order from Lutz Jaenicke
5021    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5022  - (djm) New SuSE spec from Corinna Vinschen <corinna@vinschen.de>
5023  - (djm) Update CygWin support from Corinna Vinschen <vinschen@cygnus.com>
5024  - (djm) Use a real struct sockaddr inside the fake struct sockaddr_storage.
5025    Patch from Larry Jones <larry.jones@sdrc.com>
5026  - (djm) Add Steve VanDevender's <stevev@darkwing.uoregon.edu> PAM
5027    password change patch.
5028  - (djm) Bring licenses on my stuff in line with OpenBSD's
5029  - (djm) Cleanup auth-passwd.c and unify HP/UX authentication. Patch from
5030    Kevin Steves <stevesk@sweden.hp.com>
5031  - (djm) Shadow expiry check fix from Pavel Troller <patrol@omni.sinus.cz>
5032  - (djm) Re-enable int64_t types - we need them for sftp
5033  - (djm) Use libexecdir from configure , rather than libexecdir/ssh
5034  - (djm) Update Redhat SPEC file accordingly
5035  - (djm) Add Kevin Steves <stevesk@sweden.hp.com> HP/UX contrib files
5036  - (djm) Add Charles Levert <charles@comm.polymtl.ca> getpgrp patch
5037  - (djm) Fix password auth on HP/UX 10.20. Patch from Dirk De Wachter
5038    <Dirk.DeWachter@rug.ac.be>
5039  - (djm) Fixprogs and entropy list fixes from Larry Jones
5040    <larry.jones@sdrc.com>
5041  - (djm) Fix for SuSE spec file from Takashi YOSHIDA
5042    <tyoshida@gemini.rc.kyushu-u.ac.jp>
5043  - (djm) Merge OpenBSD changes:
5044    - markus@cvs.openbsd.org  2000/09/05 02:59:57
5045      [session.c]
5046      print hostname (not hushlogin)
5047    - markus@cvs.openbsd.org  2000/09/05 13:18:48
5048      [authfile.c ssh-add.c]
5049      enable ssh-add -d for DSA keys
5050    - markus@cvs.openbsd.org  2000/09/05 13:20:49
5051      [sftp-server.c]
5052      cleanup
5053    - markus@cvs.openbsd.org  2000/09/06 03:46:41
5054      [authfile.h]
5055      prototype
5056    - deraadt@cvs.openbsd.org 2000/09/07 14:27:56
5057      [ALL]
5058      cleanup copyright notices on all files.  I have attempted to be
5059      accurate with the details.  everything is now under Tatu's licence
5060      (which I copied from his readme), and/or the core-sdi bsd-ish thing
5061      for deattack, or various openbsd developers under a 2-term bsd
5062      licence.  We're not changing any rules, just being accurate.
5063    - markus@cvs.openbsd.org  2000/09/07 14:40:30
5064      [channels.c channels.h clientloop.c serverloop.c ssh.c]
5065      cleanup window and packet sizes for ssh2 flow control; ok niels
5066    - markus@cvs.openbsd.org  2000/09/07 14:53:00
5067      [scp.c]
5068      typo
5069    - markus@cvs.openbsd.org  2000/09/07 15:13:37
5070      [auth-options.c auth-options.h auth-rh-rsa.c auth-rsa.c auth.c]
5071      [authfile.h canohost.c channels.h compat.c hostfile.h log.c match.h]
5072      [pty.c readconf.c]
5073      some more Copyright fixes
5074    - markus@cvs.openbsd.org  2000/09/08 03:02:51
5075      [README.openssh2]
5076      bye bye
5077    - deraadt@cvs.openbsd.org 2000/09/11 18:38:33
5078      [LICENCE cipher.c]
5079      a few more comments about it being ARC4 not RC4
5080    - markus@cvs.openbsd.org  2000/09/12 14:53:11
5081      [log-client.c log-server.c log.c ssh.1 ssh.c ssh.h sshd.8 sshd.c]
5082      multiple debug levels
5083    - markus@cvs.openbsd.org  2000/09/14 14:25:15
5084      [clientloop.c]
5085      typo
5086    - deraadt@cvs.openbsd.org 2000/09/15 01:13:51
5087      [ssh-agent.c]
5088      check return value for setenv(3) for failure, and deal appropriately
5089
5090 20000913
5091  - (djm) Fix server not exiting with jobs in background.
5092
5093 20000905
5094  - (djm) Import OpenBSD CVS changes
5095    - markus@cvs.openbsd.org  2000/08/31 15:52:24
5096      [Makefile sshd.8 sshd_config sftp-server.8 sftp-server.c]
5097      implement a SFTP server. interops with sftp2, scp2 and the windows
5098      client from ssh.com
5099    - markus@cvs.openbsd.org  2000/08/31 15:56:03
5100      [README.openssh2]
5101      sync
5102    - markus@cvs.openbsd.org  2000/08/31 16:05:42
5103      [session.c]
5104      Wall
5105    - markus@cvs.openbsd.org  2000/08/31 16:09:34
5106      [authfd.c ssh-agent.c]
5107      add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensions
5108    - deraadt@cvs.openbsd.org 2000/09/01 09:25:13
5109      [scp.1 scp.c]
5110      cleanup and fix -S support; stevesk@sweden.hp.com
5111    - markus@cvs.openbsd.org  2000/09/01 16:29:32
5112      [sftp-server.c]
5113      portability fixes
5114    - markus@cvs.openbsd.org  2000/09/01 16:32:41
5115      [sftp-server.c]
5116      fix cast; mouring@pconline.com
5117    - itojun@cvs.openbsd.org  2000/09/03 09:23:28
5118      [ssh-add.1 ssh.1]
5119      add missing .El against .Bl.
5120    - markus@cvs.openbsd.org  2000/09/04 13:03:41
5121      [session.c]
5122      missing close; ok theo
5123    - markus@cvs.openbsd.org  2000/09/04 13:07:21
5124      [session.c]
5125      fix get_last_login_time order; from andre@van-veen.de
5126    - markus@cvs.openbsd.org  2000/09/04 13:10:09
5127      [sftp-server.c]
5128      more cast fixes; from mouring@pconline.com
5129    - markus@cvs.openbsd.org  2000/09/04 13:06:04
5130      [session.c]
5131      set SSH_ORIGINAL_COMMAND; from Leakin@dfw.nostrum.com, bet@rahul.net
5132  - (djm) Cleanup after import. Fix sftp-server compilation, Makefile
5133  - (djm) Merge cygwin support from Corinna Vinschen <vinschen@cygnus.com>
5134
5135 20000903
5136  - (djm) Fix Redhat init script
5137
5138 20000901
5139  - (djm) Pick up Jim's new X11-askpass
5140  - (djm) Release 2.2.0p1
5141
5142 20000831
5143  - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
5144    <acox@cv.telegroup.com>
5145  - (djm) Pick up new version (2.2.0) from OpenBSD CVS
5146
5147 20000830
5148  - (djm) Compile warning fixes from Mark Miller <markm@swoon.net>
5149  - (djm) Periodically rekey arc4random
5150  - (djm) Clean up diff against OpenBSD.
5151  - (djm) HPUX 11 needs USE_PIPES as well: Kevin Steves
5152    <stevesk@sweden.hp.com>
5153  - (djm) Quieten the pam delete credentials error message
5154  - (djm) Fix printing of $DISPLAY hack if set by system type. Report from
5155    Kevin Steves <stevesk@sweden.hp.com>
5156  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
5157  - (djm) Fix doh in bsd-arc4random.c
5158
5159 20000829
5160  - (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
5161    Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
5162    Garrick James <garrick@james.net>
5163  - (djm) Check for SCO pty naming style (ptyp%d/ttyp%d). Based on fix from
5164    Bastian Trompetter <btrompetter@firemail.de>
5165  - (djm) NeXT tweaks from Ben Lindstrom <mouring@pconline.com>
5166  - More OpenBSD updates:
5167    - deraadt@cvs.openbsd.org 2000/08/24 15:46:59
5168      [scp.c]
5169      off_t in sink, to fix files > 2GB, i think, test is still running ;-)
5170    - deraadt@cvs.openbsd.org 2000/08/25 10:10:06
5171      [session.c]
5172      Wall
5173    - markus@cvs.openbsd.org  2000/08/26 04:33:43
5174      [compat.c]
5175      ssh.com-2.3.0
5176    - markus@cvs.openbsd.org  2000/08/27 12:18:05
5177      [compat.c]
5178      compatibility with future ssh.com versions
5179    - deraadt@cvs.openbsd.org 2000/08/27 21:50:55
5180      [auth-krb4.c session.c ssh-add.c sshconnect.c uidswap.c]
5181      print uid/gid as unsigned
5182    - markus@cvs.openbsd.org  2000/08/28 13:51:00
5183      [ssh.c]
5184      enable -n and -f for ssh2
5185    - markus@cvs.openbsd.org  2000/08/28 14:19:53
5186      [ssh.c]
5187      allow combination of -N and -f
5188    - markus@cvs.openbsd.org  2000/08/28 14:20:56
5189      [util.c]
5190      util.c
5191    - markus@cvs.openbsd.org  2000/08/28 14:22:02
5192      [util.c]
5193      undo
5194    - markus@cvs.openbsd.org  2000/08/28 14:23:38
5195      [util.c]
5196      don't complain if setting NONBLOCK fails with ENODEV
5197
5198 20000823
5199  - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
5200    Avoids "scp never exits" problem. Reports from Lutz Jaenicke
5201    <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA
5202    <kajiyama@grad.sccs.chukyo-u.ac.jp>
5203  - (djm) Pick up LOGIN_PROGRAM from environment or PATH if not set by headers
5204  - (djm) Add local version to version.h
5205  - (djm) Don't reseed arc4random everytime it is used
5206  - (djm) OpenBSD CVS updates:
5207    - deraadt@cvs.openbsd.org 2000/08/18 20:07:23
5208      [ssh.c]
5209      accept remsh as a valid name as well; roman@buildpoint.com
5210    - deraadt@cvs.openbsd.org 2000/08/18 20:17:13
5211      [deattack.c crc32.c packet.c]
5212      rename crc32() to ssh_crc32() to avoid zlib name clash.  do not move to
5213      libz crc32 function yet, because it has ugly "long"'s in it;
5214      oneill@cs.sfu.ca
5215    - deraadt@cvs.openbsd.org 2000/08/18 20:26:08
5216      [scp.1 scp.c]
5217      -S prog support; tv@debian.org
5218    - deraadt@cvs.openbsd.org 2000/08/18 20:50:07
5219      [scp.c]
5220      knf
5221    - deraadt@cvs.openbsd.org 2000/08/18 20:57:33
5222      [log-client.c]
5223      shorten
5224    - markus@cvs.openbsd.org  2000/08/19 12:48:11
5225      [channels.c channels.h clientloop.c ssh.c ssh.h]
5226      support for ~. in ssh2
5227    - deraadt@cvs.openbsd.org 2000/08/19 15:29:40
5228      [crc32.h]
5229      proper prototype
5230    - markus@cvs.openbsd.org  2000/08/19 15:34:44
5231      [authfd.c authfd.h key.c key.h ssh-add.1 ssh-add.c ssh-agent.1]
5232      [ssh-agent.c ssh-keygen.c sshconnect1.c sshconnect2.c Makefile]
5233      [fingerprint.c fingerprint.h]
5234      add SSH2/DSA support to the agent and some other DSA related cleanups.
5235      (note that we cannot talk to ssh.com's ssh2 agents)
5236    - markus@cvs.openbsd.org  2000/08/19 15:55:52
5237      [channels.c channels.h clientloop.c]
5238      more ~ support for ssh2
5239    - markus@cvs.openbsd.org  2000/08/19 16:21:19
5240      [clientloop.c]
5241      oops
5242    - millert@cvs.openbsd.org 2000/08/20 12:25:53
5243      [session.c]
5244      We have to stash the result of get_remote_name_or_ip() before we
5245      close our socket or getpeername() will get EBADF and the process
5246      will exit.  Only a problem for "UseLogin yes".
5247    - millert@cvs.openbsd.org 2000/08/20 12:30:59
5248      [session.c]
5249      Only check /etc/nologin if "UseLogin no" since login(1) may have its
5250      own policy on determining who is allowed to login when /etc/nologin
5251      is present.  Also use the _PATH_NOLOGIN define.
5252    - millert@cvs.openbsd.org 2000/08/20 12:42:43
5253      [auth1.c auth2.c session.c ssh.c]
5254      Add calls to setusercontext() and login_get*().  We basically call
5255      setusercontext() in most places where previously we did a setlogin().
5256      Add default login.conf file and put root in the "daemon" login class.
5257    - millert@cvs.openbsd.org 2000/08/21 10:23:31
5258      [session.c]
5259      Fix incorrect PATH setting; noted by Markus.
5260
5261 20000818
5262  - (djm) OpenBSD CVS changes:
5263    - markus@cvs.openbsd.org  2000/07/22 03:14:37
5264      [servconf.c servconf.h sshd.8 sshd.c sshd_config]
5265      random early drop; ok theo, niels
5266    - deraadt@cvs.openbsd.org 2000/07/26 11:46:51
5267      [ssh.1]
5268      typo
5269    - deraadt@cvs.openbsd.org 2000/08/01 11:46:11
5270      [sshd.8]
5271      many fixes from pepper@mail.reppep.com
5272    - provos@cvs.openbsd.org  2000/08/01 13:01:42
5273      [Makefile.in util.c aux.c]
5274      rename aux.c to util.c to help with cygwin port
5275    - deraadt@cvs.openbsd.org 2000/08/02 00:23:31
5276      [authfd.c]
5277      correct sun_len; Alexander@Leidinger.net
5278    - provos@cvs.openbsd.org  2000/08/02 10:27:17
5279      [readconf.c sshd.8]
5280      disable kerberos authentication by default
5281    - provos@cvs.openbsd.org  2000/08/02 11:27:05
5282      [sshd.8 readconf.c auth-krb4.c]
5283      disallow kerberos authentication if we can't verify the TGT; from
5284      dugsong@
5285      kerberos authentication is on by default only if you have a srvtab.
5286    - markus@cvs.openbsd.org  2000/08/04 14:30:07
5287      [auth.c]
5288      unused
5289    - markus@cvs.openbsd.org  2000/08/04 14:30:35
5290      [sshd_config]
5291      MaxStartups
5292    - markus@cvs.openbsd.org  2000/08/15 13:20:46
5293      [authfd.c]
5294      cleanup; ok niels@
5295    - markus@cvs.openbsd.org  2000/08/17 14:05:10
5296      [session.c]
5297      cleanup login(1)-like jobs, no duplicate utmp entries
5298    - markus@cvs.openbsd.org  2000/08/17 14:06:34
5299      [session.c sshd.8 sshd.c]
5300       sshd -u len, similar to telnetd
5301  - (djm) Lastlog was not getting closed after writing login entry
5302  - (djm) Add Solaris package support from Rip Loomis <loomisg@cist.saic.com>
5303
5304 20000816
5305  - (djm) Replacement for inet_ntoa for Irix (which breaks on gcc)
5306  - (djm) Fix strerror replacement for old SunOS. Based on patch from
5307    Charles Levert <charles@comm.polymtl.ca>
5308  - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4
5309    implementation.
5310  - (djm) SUN_LEN macro for systems which lack it
5311
5312 20000815
5313  - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com>
5314  - (djm) Avoid failures on Irix when ssh is not setuid. Fix from
5315    Michael Stone <mstone@cs.loyola.edu>
5316  - (djm) Don't seek in directory based lastlogs
5317  - (djm) Fix --with-ipaddr-display configure option test. Patch from
5318    Jarno Huuskonen <jhuuskon@messi.uku.fi>
5319  - (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
5320
5321 20000813
5322  - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
5323    Fabrice bacchella <fabrice.bacchella@marchfirst.fr>
5324
5325 20000809
5326  - (djm) Define AIX hard limits if headers don't. Report from
5327    Bill Painter <william.t.painter@lmco.com>
5328  - (djm) utmp direct write & SunOS 4 patch from Charles Levert
5329    <charles@comm.polymtl.ca>
5330
5331 20000808
5332  - (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
5333    time, spec file cleanup.
5334
5335 20000807
5336  - (djm) Set 0755 on binaries during install. Report from Lutz Jaenicke
5337  - (djm) Suppress error messages on channel close shutdown() failurs
5338    works around Linux bug. Patch from Zack Weinberg <zack@wolery.cumb.org>
5339  - (djm) Add some more entropy collection commands from Lutz Jaenicke
5340
5341 20000725
5342  - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
5343
5344 20000721
5345  - (djm) OpenBSD CVS updates:
5346    - markus@cvs.openbsd.org  2000/07/16 02:27:22
5347      [authfd.c authfd.h channels.c clientloop.c ssh-add.c ssh-agent.c ssh.c]
5348      [sshconnect1.c sshconnect2.c]
5349      make ssh-add accept dsa keys (the agent does not)
5350    - djm@cvs.openbsd.org     2000/07/17 19:25:02
5351      [sshd.c]
5352      Another closing of stdin; ok deraadt
5353    - markus@cvs.openbsd.org  2000/07/19 18:33:12
5354      [dsa.c]
5355      missing free, reorder
5356    - markus@cvs.openbsd.org  2000/07/20 16:23:14
5357      [ssh-keygen.1]
5358      document input and output files
5359
5360 20000720
5361  - (djm) Spec file fix from Petr Novotny <Petr.Novotny@antek.cz>
5362
5363 20000716
5364  - (djm) Release 2.1.1p4
5365
5366 20000715
5367  - (djm) OpenBSD CVS updates
5368    - provos@cvs.openbsd.org  2000/07/13 16:53:22
5369      [aux.c readconf.c servconf.c ssh.h]
5370      allow multiple whitespace but only one '=' between tokens, bug report from
5371      Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@
5372    - provos@cvs.openbsd.org  2000/07/13 17:14:09
5373      [clientloop.c]
5374      typo; todd@fries.net
5375    - provos@cvs.openbsd.org  2000/07/13 17:19:31
5376      [scp.c]
5377      close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu>
5378    - markus@cvs.openbsd.org  2000/07/14 16:59:46
5379      [readconf.c servconf.c]
5380      allow leading whitespace. ok niels
5381    - djm@cvs.openbsd.org     2000/07/14 22:01:38
5382      [ssh-keygen.c ssh.c]
5383      Always create ~/.ssh with mode 700; ok Markus
5384  - Fixes for SunOS 4.1.4 from Gordon Atwood <gordon@cs.ualberta.ca>
5385    - Include floatingpoint.h for entropy.c
5386    - strerror replacement
5387
5388 20000712
5389  - (djm) Remove -lresolve for Reliant Unix
5390  - (djm) OpenBSD CVS Updates:
5391    - deraadt@cvs.openbsd.org 2000/07/11 02:11:34
5392      [session.c sshd.c ]
5393      make MaxStartups code still work with -d; djm
5394    - deraadt@cvs.openbsd.org 2000/07/11 13:17:45
5395      [readconf.c ssh_config]
5396      disable FallBackToRsh by default
5397  - (djm) Replace in_addr_t with u_int32_t in bsd-inet_aton.c. Report from
5398    Ben Lindstrom <mouring@pconline.com>
5399  - (djm) Make building of X11-Askpass and GNOME-Askpass optional in RPM
5400    spec file.
5401  - (djm) Released 2.1.1p3
5402
5403 20000711
5404  - (djm) Fixup for AIX getuserattr() support from Tom Bertelson
5405    <tbert@abac.com>
5406  - (djm) ReliantUNIX support from Udo Schweigert <ust@cert.siemens.de>
5407  - (djm) NeXT: dirent structures to get scp working from Ben Lindstrom
5408    <mouring@pconline.com>
5409  - (djm) Fix broken inet_ntoa check and ut_user/ut_name confusion, report
5410    from Jim Watt <jimw@peisj.pebio.com>
5411  - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
5412    to compile on more platforms (incl NeXT).
5413  - (djm) Added bsd-inet_aton and configure support for NeXT
5414  - (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
5415  - (djm) OpenBSD CVS updates:
5416    - markus@cvs.openbsd.org  2000/06/26 03:22:29
5417      [authfd.c]
5418      cleanup, less cut&paste
5419    - markus@cvs.openbsd.org  2000/06/26 15:59:19
5420      [servconf.c servconf.h session.c sshd.8 sshd.c]
5421      MaxStartups: limit number of unauthenticated connections, work by
5422      theo and me
5423    - deraadt@cvs.openbsd.org 2000/07/05 14:18:07
5424      [session.c]
5425      use no_x11_forwarding_flag correctly; provos ok
5426    - provos@cvs.openbsd.org  2000/07/05 15:35:57
5427      [sshd.c]
5428      typo
5429    - aaron@cvs.openbsd.org   2000/07/05 22:06:58
5430      [scp.1 ssh-agent.1 ssh-keygen.1 sshd.8]
5431      Insert more missing .El directives. Our troff really should identify
5432      these and spit out a warning.
5433    - todd@cvs.openbsd.org    2000/07/06 21:55:04
5434      [auth-rsa.c auth2.c ssh-keygen.c]
5435      clean code is good code
5436    - deraadt@cvs.openbsd.org 2000/07/07 02:14:29
5437      [serverloop.c]
5438      sense of port forwarding flag test was backwards
5439    - provos@cvs.openbsd.org  2000/07/08 17:17:31
5440      [compat.c readconf.c]
5441      replace strtok with strsep; from David Young <dyoung@onthejob.net>
5442    - deraadt@cvs.openbsd.org 2000/07/08 19:21:15
5443      [auth.h]
5444      KNF
5445    - ho@cvs.openbsd.org      2000/07/08 19:27:33
5446      [compat.c readconf.c]
5447      Better conditions for strsep() ending.
5448    - ho@cvs.openbsd.org      2000/07/10 10:27:05
5449      [readconf.c]
5450      Get the correct message on errors. (niels@ ok)
5451    - ho@cvs.openbsd.org      2000/07/10 10:30:25
5452      [cipher.c kex.c servconf.c]
5453      strtok() --> strsep(). (niels@ ok)
5454  - (djm) Fix problem with debug mode and MaxStartups
5455  - (djm) Don't generate host keys when $(DESTDIR) is set (e.g. during RPM
5456    builds)
5457  - (djm) Add strsep function from OpenBSD libc for systems that lack it
5458
5459 20000709
5460  - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
5461    Kevin Steves <stevesk@sweden.hp.com>
5462  - (djm) Match prototype and function declaration for rresvport_af.
5463    Problem report from Niklas Edmundsson <nikke@ing.umu.se>
5464  - (djm) Missing $(DESTDIR) on host-key target causing problems with RPM
5465    builds. Problem report from Gregory Leblanc <GLeblanc@cu-portland.edu>
5466  - (djm) Replace ut_name with ut_user. Patch from Jim Watt
5467    <jimw@peisj.pebio.com>
5468  - (djm) Fix pam sprintf fix
5469  - (djm) Cleanup entropy collection code a little more. Split initialisation
5470    from seeding, perform intialisation immediatly at start, be careful with
5471    uids. Based on problem report from Jim Watt <jimw@peisj.pebio.com>
5472  - (djm) More NeXT compatibility from Ben Lindstrom <mouring@pconline.com>
5473    Including sigaction() et al. replacements
5474  - (djm) AIX getuserattr() session initialisation from Tom Bertelson
5475    <tbert@abac.com>
5476
5477 20000708
5478  - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
5479    Aaron Hopkins <aaron@die.net>
5480  - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
5481    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5482  - (djm) Fixed undefined variables for OSF SIA. Report from
5483    Baars, Henk <Hendrik.Baars@nl.origin-it.com>
5484  - (djm) Handle EWOULDBLOCK returns from read() and write() in atomicio.c
5485    Fix from Marquess, Steve Mr JMLFDC <Steve.Marquess@DET.AMEDD.ARMY.MIL>
5486  - (djm) Don't use inet_addr.
5487
5488 20000702
5489  - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
5490  - (djm) Stop shadow expiry checking from preventing logins with NIS. Based
5491    on fix from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
5492  - (djm) Use standard OpenSSL functions in auth-skey.c. Patch from
5493    Chris, the Young One <cky@pobox.com>
5494  - (djm) Fix scp progress meter on really wide terminals. Based on patch
5495    from James H. Cloos Jr. <cloos@jhcloos.com>
5496
5497 20000701
5498  - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
5499  - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
5500  - (djm) Replace "/bin/sh" with _PATH_BSHELL. Report from Corinna Vinschen
5501    <vinschen@cygnus.com>
5502  - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
5503  - (djm) Added check for broken snprintf() functions which do not correctly
5504    terminate output string and attempt to use replacement.
5505  - (djm) Released 2.1.1p2
5506
5507 20000628
5508  - (djm) Fixes to lastlog code for Irix
5509  - (djm) Use atomicio in loginrec
5510  - (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
5511    Irix 6.x array sessions, project id's, and system audit trail id.
5512  - (djm) Added 'distprep' make target to simplify packaging
5513  - (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
5514    support. Enable using "USE_SIA=1 ./configure [options]"
5515
5516 20000627
5517  - (djm) Fixes to login code - not setting li->uid, cleanups
5518  - (djm) Formatting
5519
5520 20000626
5521  - (djm) Better fix to aclocal tests from Garrick James <garrick@james.net>
5522  - (djm) Account expiry support from Andreas Steinmetz <ast@domdv.de>
5523  - (djm) Added password expiry checking (no password change support)
5524  - (djm) Make EGD failures non-fatal if OpenSSL's entropy pool is still OK
5525    based on patch from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5526  - (djm) Fix fixed EGD code.
5527  - OpenBSD CVS update
5528    - provos@cvs.openbsd.org  2000/06/25 14:17:58
5529      [channels.c]
5530      correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>
5531
5532 20000623
5533  - (djm) Use sa_family_t in prototype for rresvport_af. Patch from
5534    Svante Signell <svante.signell@telia.com>
5535  - (djm) Autoconf logic to define sa_family_t if it is missing
5536  - OpenBSD CVS Updates:
5537    - markus@cvs.openbsd.org  2000/06/22 10:32:27
5538      [sshd.c]
5539      missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
5540    - djm@cvs.openbsd.org     2000/06/22 17:55:00
5541      [auth-krb4.c key.c radix.c uuencode.c]
5542      Missing CVS idents; ok markus
5543
5544 20000622
5545  - (djm) Automatically generate host key during "make install". Suggested
5546    by Gary E. Miller <gem@rellim.com>
5547  - (djm) Paranoia before kill() system call
5548  - OpenBSD CVS Updates:
5549    - markus@cvs.openbsd.org  2000/06/18 18:50:11
5550      [auth2.c compat.c compat.h sshconnect2.c]
5551      make userauth+pubkey interop with ssh.com-2.2.0
5552    - markus@cvs.openbsd.org  2000/06/18 20:56:17
5553      [dsa.c]
5554      mem leak + be more paranoid in dsa_verify.
5555    - markus@cvs.openbsd.org  2000/06/18 21:29:50
5556      [key.c]
5557      cleanup fingerprinting, less hardcoded sizes
5558    - markus@cvs.openbsd.org  2000/06/19 19:39:45
5559      [atomicio.c auth-options.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
5560      [auth-rsa.c auth-skey.c authfd.c authfd.h authfile.c bufaux.c bufaux.h]
5561      [buffer.c buffer.h canohost.c channels.c channels.h cipher.c cipher.h]
5562      [clientloop.c compat.c compat.h compress.c compress.h crc32.c crc32.h]
5563      [deattack.c dispatch.c dsa.c fingerprint.c fingerprint.h getput.h hmac.c]
5564      [kex.c log-client.c log-server.c login.c match.c mpaux.c mpaux.h nchan.c]
5565      [nchan.h packet.c packet.h pty.c pty.h readconf.c readconf.h readpass.c]
5566      [rsa.c rsa.h scp.c servconf.c servconf.h ssh-add.c ssh-keygen.c ssh.c]
5567      [ssh.h tildexpand.c ttymodes.c ttymodes.h uidswap.c xmalloc.c xmalloc.h]
5568      OpenBSD tag
5569    - markus@cvs.openbsd.org  2000/06/21 10:46:10
5570      sshconnect2.c missing free; nuke old comment
5571
5572 20000620
5573  - (djm) Replace use of '-o' and '-a' logical operators in configure tests
5574    with '||' and '&&'. As suggested by Jim Knoble <jmknoble@jmknoble.cx>
5575    to fix SCO Unixware problem reported by Gary E. Miller <gem@rellim.com>
5576  - (djm) Typo in loginrec.c
5577
5578 20000618
5579  - (djm) Add summary of configure options to end of ./configure run
5580  - (djm) Not all systems define RUSAGE_SELF & RUSAGE_CHILDREN. Report from
5581    Michael Stone <mstone@cs.loyola.edu>
5582  - (djm) rusage is a privileged operation on some Unices (incl.
5583    Solaris 2.5.1). Report from Paul D. Smith <pausmith@nortelnetworks.com>
5584  - (djm) Avoid PAM failures when running without a TTY. Report from
5585    Martin Petrak <petrak@spsknm.schools.sk>
5586  - (djm) Include sys/types.h when including netinet/in.h in configure tests.
5587    Patch from Jun-ichiro itojun Hagino <itojun@iijlab.net>
5588  - (djm) Started merge of Ben Lindstrom's <mouring@pconline.com> NeXT support
5589  - OpenBSD CVS updates:
5590    - deraadt@cvs.openbsd.org 2000/06/17 09:58:46
5591      [channels.c]
5592      everyone says "nix it" (remove protocol 2 debugging message)
5593    - markus@cvs.openbsd.org  2000/06/17 13:24:34
5594      [sshconnect.c]
5595      allow extended server banners
5596    - markus@cvs.openbsd.org  2000/06/17 14:30:10
5597      [sshconnect.c]
5598      missing atomicio, typo
5599    - jakob@cvs.openbsd.org   2000/06/17 16:52:34
5600      [servconf.c servconf.h session.c sshd.8 sshd_config]
5601      add support for ssh v2 subsystems. ok markus@.
5602    - deraadt@cvs.openbsd.org 2000/06/17 18:57:48
5603      [readconf.c servconf.c]
5604      include = in WHITESPACE; markus ok
5605    - markus@cvs.openbsd.org  2000/06/17 19:09:10
5606      [auth2.c]
5607      implement bug compatibility with ssh-2.0.13 pubkey, server side
5608    - markus@cvs.openbsd.org  2000/06/17 21:00:28
5609      [compat.c]
5610      initial support for ssh.com's 2.2.0
5611    - markus@cvs.openbsd.org  2000/06/17 21:16:09
5612      [scp.c]
5613      typo
5614    - markus@cvs.openbsd.org  2000/06/17 22:05:02
5615      [auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
5616      split auth-rsa option parsing into auth-options
5617      add options support to authorized_keys2
5618    - markus@cvs.openbsd.org  2000/06/17 22:42:54
5619      [session.c]
5620      typo
5621
5622 20000613
5623  - (djm) Fixes from Andrew McGill <andrewm@datrix.co.za>:
5624   - Platform define for SCO 3.x which breaks on /dev/ptmx
5625   - Detect and try to fix missing MAXPATHLEN
5626  - (djm) Fix short copy in loginrec.c (based on patch from Phill Camp
5627    <P.S.S.Camp@ukc.ac.uk>
5628
5629 20000612
5630  - (djm) Glob manpages in RPM spec files to catch compressed files
5631  - (djm) Full license in auth-pam.c
5632  - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
5633  - (andre) AIX, lastlog, configure fixes from Tom Bertelson <tbert@abac.com>:
5634   - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is
5635      def'd
5636   - Set AIX to use preformatted manpages
5637
5638 20000610
5639  - (djm) Minor doc tweaks
5640  - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>
5641
5642 20000609
5643  - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
5644    (in favour of utmpx) on Solaris 8
5645
5646 20000606
5647  - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
5648    list of commands (by default). Removed verbose debugging (by default).
5649  - (djm) Increased command entropy estimates and default entropy collection
5650    timeout
5651  - (djm) Remove duplicate headers from loginrec.c
5652  - (djm) Don't add /usr/local/lib to library search path on Irix
5653  - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
5654    <tibbs@math.uh.edu>
5655  - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
5656    <zack@wolery.cumb.org>
5657  - (djm) OpenBSD CVS updates:
5658   - todd@cvs.openbsd.org
5659     [sshconnect2.c]
5660     teach protocol v2 to count login failures properly and also enable an
5661     explanation of why the password prompt comes up again like v1; this is NOT
5662     crypto
5663   - markus@cvs.openbsd.org
5664     [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
5665     xauth_location support; pr 1234
5666     [readconf.c sshconnect2.c]
5667     typo, unused
5668     [session.c]
5669     allow use_login only for login sessions, otherwise remote commands are
5670     execed with uid==0
5671     [sshd.8]
5672     document UseLogin better
5673     [version.h]
5674     OpenSSH 2.1.1
5675     [auth-rsa.c]
5676     fix match_hostname() logic for auth-rsa: deny access if we have a
5677     negative match or no match at all
5678     [channels.c hostfile.c match.c]
5679     don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via
5680     kris@FreeBSD.org
5681
5682 20000606
5683  - (djm) Added --with-cflags, --with-ldflags and --with-libs options to
5684    configure.
5685
5686 20000604
5687  - Configure tweaking for new login code on Irix 5.3
5688  - (andre) login code changes based on djm feedback
5689
5690 20000603
5691  - (andre) New login code
5692     - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c
5693     - Add loginrec.[ch], logintest.c and autoconf code
5694
5695 20000531
5696  - Cleanup of auth.c, login.c and fake-*
5697  - Cleanup of auth-pam.c, save and print "account expired" error messages
5698  - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
5699  - Rewrote bsd-login to use proper utmp API if available. Major cleanup
5700    of fallback DIY code.
5701
5702 20000530
5703  - Define atexit for old Solaris
5704  - Fix buffer overrun in login.c for systems which use syslen in utmpx.
5705    patch from YOSHIFUJI Hideaki <yoshfuji@cerberus.nemoto.ecei.tohoku.ac.jp>
5706  - OpenBSD CVS updates:
5707   - markus@cvs.openbsd.org
5708     [session.c]
5709     make x11-fwd work w/ localhost (xauth add host/unix:11)
5710     [cipher.c compat.c readconf.c servconf.c]
5711     check strtok() != NULL; ok niels@
5712     [key.c]
5713     fix key_read() for uuencoded keys w/o '='
5714     [serverloop.c]
5715     group ssh1 vs. ssh2 in serverloop
5716     [kex.c kex.h myproposal.h sshconnect2.c sshd.c]
5717     split kexinit/kexdh, factor out common code
5718     [readconf.c ssh.1 ssh.c]
5719     forwardagent defaults to no, add ssh -A
5720   - theo@cvs.openbsd.org
5721     [session.c]
5722     just some line shortening
5723  - Released 2.1.0p3
5724
5725 20000520
5726  - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
5727  - Don't touch utmp if USE_UTMPX defined
5728  - SunOS 4.x support from Todd C. Miller <Todd.Miller@courtesan.com>
5729  - SIGCHLD fix for AIX and HPUX from Tom Bertelson <tbert@abac.com>
5730  - HPUX and Configure fixes from Lutz Jaenicke
5731    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5732  - Use mkinstalldirs script to make directories instead of non-portable
5733    "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5734  - Doc cleanup
5735
5736 20000518
5737  - Include Andre Lucas' fixprogs script. Forgot to "cvs add" it yesterday
5738  - OpenBSD CVS updates:
5739   - markus@cvs.openbsd.org
5740     [sshconnect.c]
5741     copy only ai_addrlen bytes; misiek@pld.org.pl
5742     [auth.c]
5743     accept an empty shell in authentication; bug reported by
5744     chris@tinker.ucr.edu
5745     [serverloop.c]
5746     we don't have stderr for interactive terminal sessions (fcntl errors)
5747
5748 20000517
5749  - Fix from Andre Lucas <andre.lucas@dial.pipex.com>
5750   - Fixes command line printing segfaults (spotter: Bladt Norbert)
5751   - Fixes erroneous printing of debug messages to syslog
5752   - Fixes utmp for MacOS X (spotter: Aristedes Maniatis)
5753   - Gives useful error message if PRNG initialisation fails
5754   - Reduced ssh startup delay
5755   - Measures cumulative command time rather than the time between reads
5756     after select()
5757   - 'fixprogs' perl script to eliminate non-working entropy commands, and
5758     optionally run 'ent' to measure command entropy
5759  - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
5760  - Avoid WCOREDUMP complation errors for systems that lack it
5761  - Avoid SIGCHLD warnings from entropy commands
5762  - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
5763  - OpenBSD CVS update:
5764   - markus@cvs.openbsd.org
5765     [ssh.c]
5766     fix usage()
5767     [ssh2.h]
5768     draft-ietf-secsh-architecture-05.txt
5769     [ssh.1]
5770     document ssh -T -N (ssh2 only)
5771     [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c]
5772     enable nonblocking IO for sshd w/ proto 1, too; split out common code
5773     [aux.c]
5774     missing include
5775  - Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
5776   - INSTALL typo and URL fix
5777   - Makefile fix
5778   - Solaris fixes
5779  - Checking for ssize_t and memmove. Based on patch from SAKAI Kiyotaka
5780    <ksakai@kso.netwk.ntt-at.co.jp>
5781  - RSAless operation patch from kevin_oconnor@standardandpoors.com
5782  - Detect OpenSSL seperatly from RSA
5783  - Better test for RSA (more compatible with RSAref). Based on work by
5784    Ed Eden <ede370@stl.rural.usda.gov>
5785
5786 20000513
5787  - Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
5788    <misiek@pld.org.pl>
5789
5790 20000511
5791  - Fix for prng_seed permissions checking from Lutz Jaenicke
5792    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5793  - "make host-key" fix for Irix
5794
5795 20000509
5796  - OpenBSD CVS update
5797   - markus@cvs.openbsd.org
5798     [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c]
5799     [ssh.h sshconnect1.c sshconnect2.c sshd.8]
5800     - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
5801   - hugh@cvs.openbsd.org
5802     [ssh.1]
5803     - zap typo
5804     [ssh-keygen.1]
5805     - One last nit fix. (markus approved)
5806     [sshd.8]
5807     - some markus certified spelling adjustments
5808   - markus@cvs.openbsd.org
5809     [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c]
5810     [sshconnect2.c ]
5811     - bug compat w/ ssh-2.0.13 x11, split out bugs
5812     [nchan.c]
5813     - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@
5814     [ssh-keygen.c]
5815     - handle escapes in real and original key format, ok millert@
5816     [version.h]
5817     - OpenSSH-2.1
5818  - Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
5819  - Doc updates
5820  - Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported
5821    by Andre Lucas <andre.lucas@dial.pipex.com>
5822
5823 20000508
5824  - Makefile and RPM spec fixes
5825  - Generate DSA host keys during "make key" or RPM installs
5826  - OpenBSD CVS update
5827   - markus@cvs.openbsd.org
5828     [clientloop.c sshconnect2.c]
5829     - make x11-fwd interop w/ ssh-2.0.13
5830     [README.openssh2]
5831     - interop w/ SecureFX
5832  - Release 2.0.0beta2
5833
5834  - Configure caching and cleanup patch from Andre Lucas'
5835    <andre.lucas@dial.pipex.com>
5836
5837 20000507
5838  - Remove references to SSLeay.
5839  - Big OpenBSD CVS update
5840   - markus@cvs.openbsd.org
5841     [clientloop.c]
5842     - typo
5843     [session.c]
5844     - update proctitle on pty alloc/dealloc, e.g. w/ windows client
5845     [session.c]
5846     - update proctitle for proto 1, too
5847     [channels.h nchan.c serverloop.c session.c sshd.c]
5848     - use c-style comments
5849   - deraadt@cvs.openbsd.org
5850     [scp.c]
5851     - more atomicio
5852   - markus@cvs.openbsd.org
5853     [channels.c]
5854     - set O_NONBLOCK
5855     [ssh.1]
5856     - update AUTHOR
5857     [readconf.c ssh-keygen.c ssh.h]
5858     - default DSA key file ~/.ssh/id_dsa
5859     [clientloop.c]
5860     - typo, rm verbose debug
5861   - deraadt@cvs.openbsd.org
5862     [ssh-keygen.1]
5863     - document DSA use of ssh-keygen
5864     [sshd.8]
5865     - a start at describing what i understand of the DSA side
5866     [ssh-keygen.1]
5867     - document -X and -x
5868     [ssh-keygen.c]
5869     - simplify usage
5870   - markus@cvs.openbsd.org
5871     [sshd.8]
5872     - there is no rhosts_dsa
5873     [ssh-keygen.1]
5874     - document -y, update -X,-x
5875     [nchan.c]
5876     - fix close for non-open ssh1 channels
5877     [servconf.c servconf.h ssh.h sshd.8 sshd.c ]
5878     - s/DsaKey/HostDSAKey/, document option
5879     [sshconnect2.c]
5880     - respect number_of_password_prompts
5881     [channels.c channels.h servconf.c servconf.h session.c sshd.8]
5882     - GatewayPorts for sshd, ok deraadt@
5883     [ssh-add.1 ssh-agent.1 ssh.1]
5884     - more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
5885     [ssh.1]
5886     - more info on proto 2
5887     [sshd.8]
5888     - sync AUTHOR w/ ssh.1
5889     [key.c key.h sshconnect.c]
5890     - print key type when talking about host keys
5891     [packet.c]
5892     - clear padding in ssh2
5893     [dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
5894     - replace broken uuencode w/ libc b64_ntop
5895     [auth2.c]
5896     - log failure before sending the reply
5897     [key.c radix.c uuencode.c]
5898     - remote trailing comments before calling __b64_pton
5899     [auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
5900     [sshconnect2.c sshd.8]
5901     - add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
5902  - Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
5903
5904 20000502
5905  - OpenBSD CVS update
5906    [channels.c]
5907    - init all fds, close all fds.
5908    [sshconnect2.c]
5909    - check whether file exists before asking for passphrase
5910    [servconf.c servconf.h sshd.8 sshd.c]
5911    - PidFile, pr 1210
5912    [channels.c]
5913    - EINTR
5914    [channels.c]
5915    - unbreak, ok niels@
5916    [sshd.c]
5917    - unlink pid file, ok niels@
5918    [auth2.c]
5919    - Add missing #ifdefs; ok - markus
5920  - Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy
5921    gathering commands from a text file
5922  - Release 2.0.0beta1
5923
5924 20000501
5925  - OpenBSD CVS update
5926    [packet.c]
5927    - send debug messages in SSH2 format
5928    [scp.c]
5929    - fix very rare EAGAIN/EINTR issues; based on work by djm
5930    [packet.c]
5931    - less debug, rm unused
5932    [auth2.c]
5933    - disable kerb,s/key in ssh2
5934    [sshd.8]
5935    - Minor tweaks and typo fixes.
5936    [ssh-keygen.c]
5937    - Put -d into usage and reorder. markus ok.
5938  - Include missing headers for OpenSSL tests. Fix from Phil Karn
5939    <karn@ka9q.ampr.org>
5940  - Fixed __progname symbol collisions reported by Andre Lucas
5941    <andre.lucas@dial.pipex.com>
5942  - Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
5943    <gd@hilb1.medat.de>
5944  - Add some missing ifdefs to auth2.c
5945  - Deprecate perl-tk askpass.
5946  - Irix portability fixes - don't include netinet headers more than once
5947  - Make sure we don't save PRNG seed more than once
5948
5949 20000430
5950  - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
5951  - Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
5952    patch.
5953    - Adds timeout to entropy collection
5954    - Disables slow entropy sources
5955    - Load and save seed file
5956  - Changed entropy seed code to user per-user seeds only (server seed is
5957    saved in root's .ssh directory)
5958  - Use atexit() and fatal cleanups to save seed on exit
5959  - More OpenBSD updates:
5960    [session.c]
5961    - don't call chan_write_failed() if we are not writing
5962    [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
5963    - keysize warnings error() -> log()
5964
5965 20000429
5966  - Merge big update to OpenSSH-2.0 from OpenBSD CVS
5967    [README.openssh2]
5968    - interop w/ F-secure windows client
5969    - sync documentation
5970    - ssh_host_dsa_key not ssh_dsa_key
5971    [auth-rsa.c]
5972    - missing fclose
5973    [auth.c authfile.c compat.c dsa.c dsa.h hostfile.c key.c key.h radix.c]
5974    [readconf.c readconf.h ssh-add.c ssh-keygen.c ssh.c ssh.h sshconnect.c]
5975    [sshd.c uuencode.c uuencode.h authfile.h]
5976    - add DSA pubkey auth and other SSH2 fixes.  use ssh-keygen -[xX]
5977      for trading keys with the real and the original SSH, directly from the
5978      people who invented the SSH protocol.
5979    [auth.c auth.h authfile.c sshconnect.c auth1.c auth2.c sshconnect.h]
5980    [sshconnect1.c sshconnect2.c]
5981    - split auth/sshconnect in one file per protocol version
5982    [sshconnect2.c]
5983    - remove debug
5984    [uuencode.c]
5985    - add trailing =
5986    [version.h]
5987    - OpenSSH-2.0
5988    [ssh-keygen.1 ssh-keygen.c]
5989    - add -R flag: exit code indicates if RSA is alive
5990    [sshd.c]
5991    - remove unused
5992      silent if -Q is specified
5993    [ssh.h]
5994    - host key becomes /etc/ssh_host_dsa_key
5995    [readconf.c servconf.c ]
5996    - ssh/sshd default to proto 1 and 2
5997    [uuencode.c]
5998    - remove debug
5999    [auth2.c ssh-keygen.c sshconnect2.c sshd.c]
6000    - xfree DSA blobs
6001    [auth2.c serverloop.c session.c]
6002    - cleanup logging for sshd/2, respect PasswordAuth no
6003    [sshconnect2.c]
6004    - less debug, respect .ssh/config
6005    [README.openssh2 channels.c channels.h]
6006    - clientloop.c session.c ssh.c
6007    - support for x11-fwding, client+server
6008
6009 20000421
6010  - Merge fix from OpenBSD CVS
6011   [ssh-agent.c]
6012   - Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>
6013     via Debian bug #59926
6014  - Define __progname in session.c if libc doesn't
6015  - Remove indentation on autoconf #include statements to avoid bug in
6016    DEC Tru64 compiler. Report and fix from David Del Piero
6017    <David.DelPiero@qed.qld.gov.au>
6018
6019 20000420
6020  - Make fixpaths work with perl4, patch from Andre Lucas
6021    <andre.lucas@dial.pipex.com>
6022  - Sync with OpenBSD CVS:
6023   [clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
6024   - pid_t
6025   [session.c]
6026   - remove bogus chan_read_failed. this could cause data
6027     corruption (missing data) at end of a SSH2 session.
6028  - Merge fixes from Debian patch from Phil Hands <phil@hands.com>
6029   - Allow setting of PAM service name through CFLAGS (SSHD_PAM_SERVICE)
6030   - Use vhangup to clean up Linux ttys
6031   - Force posix getopt processing on GNU libc systems
6032  - Debian bug #55910 - remove references to ssl(8) manpages
6033  - Debian bug #58031 - ssh_config lies about default cipher
6034
6035 20000419
6036  - OpenBSD CVS updates
6037    [channels.c]
6038    - fix pr 1196, listen_port and port_to_connect interchanged
6039    [scp.c]
6040    - after completion, replace the progress bar ETA counter with a final
6041      elapsed time; my idea, aaron wrote the patch
6042    [ssh_config sshd_config]
6043    - show 'Protocol' as an example, ok markus@
6044    [sshd.c]
6045    - missing xfree()
6046  - Add missing header to bsd-misc.c
6047
6048 20000416
6049  - Reduce diff against OpenBSD source
6050    - All OpenSSL includes are now unconditionally referenced as
6051      openssl/foo.h
6052    - Pick up formatting changes
6053    - Other minor changed (typecasts, etc) that I missed
6054
6055 20000415
6056  - OpenBSD CVS updates.
6057    [ssh.1 ssh.c]
6058    - ssh -2
6059    [auth.c channels.c clientloop.c packet.c packet.h serverloop.c]
6060    [session.c sshconnect.c]
6061    - check payload for (illegal) extra data
6062    [ALL]
6063    whitespace cleanup
6064
6065 20000413
6066  - INSTALL doc updates
6067  - Merged OpenBSD updates to include paths.
6068
6069 20000412
6070  - OpenBSD CVS updates:
6071    - [channels.c]
6072      repair x11-fwd
6073    - [sshconnect.c]
6074      fix passwd prompt for ssh2, less debugging output.
6075    - [clientloop.c compat.c dsa.c kex.c sshd.c]
6076      less debugging output
6077    - [kex.c kex.h sshconnect.c sshd.c]
6078      check for reasonable public DH values
6079    - [README.openssh2 cipher.c cipher.h compat.c compat.h readconf.c]
6080      [readconf.h servconf.c servconf.h ssh.c ssh.h sshconnect.c sshd.c]
6081      add Cipher and Protocol options to ssh/sshd, e.g.:
6082      ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers
6083      arcfour,3des-cbc'
6084    - [sshd.c]
6085      print 1.99 only if server supports both
6086
6087 20000408
6088  - Avoid some compiler warnings in fake-get*.c
6089  - Add IPTOS macros for systems which lack them
6090  - Only set define entropy collection macros if they are found
6091  - More large OpenBSD CVS updates:
6092    - [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
6093      [session.h ssh.h sshd.c README.openssh2]
6094      ssh2 server side, see README.openssh2; enable with 'sshd -2'
6095    - [channels.c]
6096      no adjust after close
6097    - [sshd.c compat.c ]
6098      interop w/ latest ssh.com windows client.
6099
6100 20000406
6101  - OpenBSD CVS update:
6102    - [channels.c]
6103      close efd on eof
6104    - [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
6105      ssh2 client implementation, interops w/ ssh.com and lsh servers.
6106    - [sshconnect.c]
6107      missing free.
6108    - [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
6109      remove unused argument, split cipher_mask()
6110    - [clientloop.c]
6111      re-order: group ssh1 vs. ssh2
6112  - Make Redhat spec require openssl >= 0.9.5a
6113
6114 20000404
6115  - Add tests for RAND_add function when searching for OpenSSL
6116  - OpenBSD CVS update:
6117    - [packet.h packet.c]
6118      ssh2 packet format
6119    - [packet.h packet.c nchan2.ms nchan.h compat.h compat.c]
6120      [channels.h channels.c]
6121      channel layer support for ssh2
6122    - [kex.h kex.c hmac.h hmac.c dsa.c dsa.h]
6123      DSA, keyexchange, algorithm agreement for ssh2
6124  - Generate manpages before make install not at the end of make all
6125  - Don't seed the rng quite so often
6126  - Always reseed rng when requested
6127
6128 20000403
6129  - Wrote entropy collection routines for systems that lack /dev/random
6130    and EGD
6131  - Disable tests and typedefs for 64 bit types. They are currently unused.
6132
6133 20000401
6134  - Big OpenBSD CVS update (mainly beginnings of SSH2 infrastructure)
6135    - [auth.c session.c sshd.c auth.h]
6136      split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
6137    - [bufaux.c bufaux.h]
6138      support ssh2 bignums
6139    - [channels.c channels.h clientloop.c sshd.c nchan.c nchan.h packet.c]
6140      [readconf.c ssh.c ssh.h serverloop.c]
6141      replace big switch() with function tables (prepare for ssh2)
6142    - [ssh2.h]
6143      ssh2 message type codes
6144    - [sshd.8]
6145      reorder Xr to avoid cutting
6146    - [serverloop.c]
6147      close(fdin) if fdin != fdout, shutdown otherwise, ok theo@
6148    - [channels.c]
6149      missing close
6150      allow bigger packets
6151    - [cipher.c cipher.h]
6152      support ssh2 ciphers
6153    - [compress.c]
6154      cleanup, less code
6155    - [dispatch.c dispatch.h]
6156      function tables for different message types
6157    - [log-server.c]
6158      do not log() if debuggin to stderr
6159      rename a cpp symbol, to avoid param.h collision
6160    - [mpaux.c]
6161      KNF
6162    - [nchan.c]
6163      sync w/ channels.c
6164
6165 20000326
6166  - Better tests for OpenSSL w/ RSAref
6167  - Added replacement setenv() function from OpenBSD libc. Suggested by
6168    Ben Lindstrom <mouring@pconline.com>
6169  - OpenBSD CVS update
6170    - [auth-krb4.c]
6171      -Wall
6172    - [auth-rh-rsa.c auth-rsa.c hostfile.c hostfile.h key.c key.h match.c]
6173      [match.h ssh.c ssh.h sshconnect.c sshd.c]
6174      initial support for DSA keys. ok deraadt@, niels@
6175    - [cipher.c cipher.h]
6176      remove unused cipher_attack_detected code
6177    - [scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
6178      Fix some formatting problems I missed before.
6179    - [ssh.1 sshd.8]
6180      fix spelling errors, From: FreeBSD
6181    - [ssh.c]
6182      switch to raw mode only if he _get_ a pty (not if we _want_ a pty).
6183
6184 20000324
6185  - Released 1.2.3
6186
6187 20000317
6188  - Clarified --with-default-path option.
6189  - Added -blibpath handling for AIX to work around stupid runtime linking.
6190    Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
6191    <jmknoble@jmknoble.cx>
6192  - Checks for 64 bit int types. Problem report from Mats Fredholm
6193    <matsf@init.se>
6194  - OpenBSD CVS updates:
6195    - [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c]
6196      [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c]
6197      [sshd.c]
6198      pedantic: signed vs. unsigned, void*-arithm, etc
6199    - [ssh.1 sshd.8]
6200      Various cleanups and standardizations.
6201  - Runtime error fix for HPUX from Otmar Stahl
6202    <O.Stahl@lsw.uni-heidelberg.de>
6203
6204 20000316
6205  - Fixed configure not passing LDFLAGS to Solaris. Report from David G.
6206    Hesprich <dghespri@sprintparanet.com>
6207  - Propogate LD through to Makefile
6208  - Doc cleanups
6209  - Added blurb about "scp: command not found" errors to UPGRADING
6210
6211 20000315
6212  - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list
6213    problems with gcc/Solaris.
6214  - Don't free argument to putenv() after use (in setenv() replacement).
6215    Report from Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp>
6216  - Created contrib/ subdirectory. Included helpers from Phil Hands'
6217    Debian package, README file and chroot patch from Ricardo Cerqueira
6218    <rmcc@clix.pt>
6219  - Moved gnome-ssh-askpass.c to contrib directory and removed config
6220    option.
6221  - Slight cleanup to doc files
6222  - Configure fix from Bratislav ILICH <bilic@zepter.ru>
6223
6224 20000314
6225  - Include macro for IN6_IS_ADDR_V4MAPPED. Report from
6226    peter@frontierflying.com
6227  - Include /usr/local/include and /usr/local/lib for systems that don't
6228    do it themselves
6229  - -R/usr/local/lib for Solaris
6230  - Fix RSAref detection
6231  - Fix IN6_IS_ADDR_V4MAPPED macro
6232
6233 20000311
6234  - Detect RSAref
6235  - OpenBSD CVS change
6236    [sshd.c]
6237     - disallow guessing of root password
6238  - More configure fixes
6239  - IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
6240
6241 20000309
6242  - OpenBSD CVS updates to v1.2.3
6243    [ssh.h atomicio.c]
6244     - int atomicio -> ssize_t (for alpha). ok deraadt@
6245    [auth-rsa.c]
6246     - delay MD5 computation until client sends response, free() early, cleanup.
6247    [cipher.c]
6248     - void* -> unsigned char*, ok niels@
6249    [hostfile.c]
6250     - remove unused variable 'len'. fix comments.
6251     - remove unused variable
6252    [log-client.c log-server.c]
6253     - rename a cpp symbol, to avoid param.h collision
6254    [packet.c]
6255     - missing xfree()
6256     - getsockname() requires initialized tolen; andy@guildsoftware.com
6257     - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
6258    from Holger.Trapp@Informatik.TU-Chemnitz.DE
6259    [pty.c pty.h]
6260     - register cleanup for pty earlier. move code for pty-owner handling to
6261       pty.c ok provos@, dugsong@
6262    [readconf.c]
6263     - turn off x11-fwd for the client, too.
6264    [rsa.c]
6265     - PKCS#1 padding
6266    [scp.c]
6267     - allow '.' in usernames; from jedgar@fxp.org
6268    [servconf.c]
6269     - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
6270     - sync with sshd_config
6271    [ssh-keygen.c]
6272     - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
6273    [ssh.1]
6274     - Change invalid 'CHAT' loglevel to 'VERBOSE'
6275    [ssh.c]
6276     - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
6277     - turn off x11-fwd for the client, too.
6278    [sshconnect.c]
6279     - missing xfree()
6280     - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
6281     - read error vs. "Connection closed by remote host"
6282    [sshd.8]
6283     - ie. -> i.e.,
6284     - do not link to a commercial page..
6285     - sync with sshd_config
6286    [sshd.c]
6287     - no need for poll.h; from bright@wintelcom.net
6288     - log with level log() not fatal() if peer behaves badly.
6289     - don't panic if client behaves strange. ok deraadt@
6290     - make no-port-forwarding for RSA keys deny both -L and -R style fwding
6291     - delay close() of pty until the pty has been chowned back to root
6292     - oops, fix comment, too.
6293     - missing xfree()
6294     - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
6295       (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
6296     - register cleanup for pty earlier. move code for pty-owner handling to
6297       pty.c ok provos@, dugsong@
6298     - create x11 cookie file
6299     - fix pr 1113, fclose() -> pclose(), todo: remote popen()
6300     - version 1.2.3
6301  - Cleaned up
6302  - Removed warning workaround for Linux and devpts filesystems (no longer
6303    required after OpenBSD updates)
6304
6305 20000308
6306  - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
6307
6308 20000307
6309  - Released 1.2.2p1
6310
6311 20000305
6312  - Fix DEC compile fix
6313  - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
6314  - Check for getpagesize in libucb.a if not found in libc. Fix for old
6315    Solaris from Andre Lucas <andre.lucas@dial.pipex.com>
6316  - Check for libwrap if --with-tcp-wrappers option specified. Suggestion
6317    Mate Wierdl <mw@moni.msci.memphis.edu>
6318
6319 20000303
6320  - Added "make host-key" target, Suggestion from Dominik Brettnacher
6321  <domi@saargate.de>
6322  - Don't permanently fail on bind() if getaddrinfo has more choices left for
6323    us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
6324    Miskiewicz <misiek@pld.org.pl>
6325  - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
6326  - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
6327
6328 20000302
6329  - Big cleanup of autoconf code
6330    - Rearranged to be a little more logical
6331    - Added -R option for Solaris
6332    - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program
6333      to detect library and header location _and_ ensure library has proper
6334      RSA support built in (this is a problem with OpenSSL 0.9.5).
6335  - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de
6336  - Avoid warning message with Unix98 ptys
6337  - Warning was valid - possible race condition on PTYs. Avoided using
6338    platform-specific code.
6339  - Document some common problems
6340  - Allow root access to any key. Patch from
6341    markus.friedl@informatik.uni-erlangen.de
6342
6343 20000207
6344  - Removed SOCKS code. Will support through a ProxyCommand.
6345
6346 20000203
6347  - Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
6348  - Add --with-ssl-dir option
6349
6350 20000202
6351  - Fix lastlog code for directory based lastlogs. Fix from Josh Durham
6352    <jmd@aoe.vt.edu>
6353  - Documentation fixes from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
6354  - Added URLs to Japanese translations of documents by HARUYAMA Seigo
6355    <haruyama@nt.phys.s.u-tokyo.ac.jp>
6356
6357 20000201
6358  - Use socket pairs by default (instead of pipes). Prevents race condition
6359    on several (buggy) OSs. Report and fix from tridge@linuxcare.com
6360
6361 20000127
6362  - Seed OpenSSL's random number generator before generating RSA keypairs
6363  - Split random collector into seperate file
6364  - Compile fix from Andre Lucas <andre.lucas@dial.pipex.com>
6365
6366 20000126
6367  - Released 1.2.2 stable
6368
6369  - NeXT keeps it lastlog in /usr/adm. Report from
6370    mouring@newton.pconline.com
6371  - Added note in UPGRADING re interop with commercial SSH using idea.
6372    Report from Jim Knoble <jmknoble@jmknoble.cx>
6373  - Fix linking order for Kerberos/AFS. Fix from Holget Trapp
6374    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6375
6376 20000125
6377  - Fix NULL pointer dereference in login.c. Fix from Andre Lucas
6378    <andre.lucas@dial.pipex.com>
6379  - Reorder PAM initialisation so it does not mess up lastlog. Reported
6380    by Andre Lucas <andre.lucas@dial.pipex.com>
6381  - Use preformatted manpages on SCO, report from Gary E. Miller
6382    <gem@rellim.com>
6383  - New URL for x11-ssh-askpass.
6384  - Fixpaths was missing /etc/ssh_known_hosts. Report from Jim Knoble
6385    <jmknoble@jmknoble.cx>
6386  - Added 'DESTDIR' option to Makefile to ease package building. Patch from
6387    Jim Knoble <jmknoble@jmknoble.cx>
6388  - Updated RPM spec files to use DESTDIR
6389
6390 20000124
6391  - Pick up version 1.2.2 from OpenBSD CVS (no changes, just version number
6392    increment)
6393
6394 20000123
6395  - OpenBSD CVS:
6396    - [packet.c]
6397      getsockname() requires initialized tolen; andy@guildsoftware.com
6398  - AIX patch from Matt Richards <v2matt@btv.ibm.com> and David Rankin
6399    <drankin@bohemians.lexington.ky.us>
6400  - Fix lastlog support, patch from Andre Lucas <andre.lucas@dial.pipex.com>
6401
6402 20000122
6403  - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
6404    <bent@clark.net>
6405  - Merge preformatted manpage patch from Andre Lucas
6406    <andre.lucas@dial.pipex.com>
6407  - Make IPv4 use the default in RPM packages
6408  - Irix uses preformatted manpages
6409  - Missing htons() in bsd-bindresvport.c, fix from Holger Trapp
6410    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6411  - OpenBSD CVS updates:
6412    - [packet.c]
6413      use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
6414      from Holger.Trapp@Informatik.TU-Chemnitz.DE
6415    - [sshd.c]
6416      log with level log() not fatal() if peer behaves badly.
6417    - [readpass.c]
6418      instead of blocking SIGINT, catch it ourselves, so that we can clean
6419      the tty modes up and kill ourselves -- instead of our process group
6420      leader (scp, cvs, ...) going away and leaving us in noecho mode.
6421      people with cbreak shells never even noticed..
6422    - [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
6423      ie. -> i.e.,
6424
6425 20000120
6426  - Don't use getaddrinfo on AIX
6427  - Update to latest OpenBSD CVS:
6428    - [auth-rsa.c]
6429      - fix user/1056, sshd keeps restrictions; dbt@meat.net
6430    - [sshconnect.c]
6431      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
6432      - destroy keys earlier
6433      - split key exchange (kex) and user authentication (user-auth),
6434        ok: provos@
6435    - [sshd.c]
6436      - no need for poll.h; from bright@wintelcom.net
6437      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
6438      - split key exchange (kex) and user authentication (user-auth),
6439        ok: provos@
6440  - Big manpage and config file cleanup from Andre Lucas
6441    <andre.lucas@dial.pipex.com>
6442    - Re-added latest (unmodified) OpenBSD manpages
6443  - Doc updates
6444  - NetBSD patch from David Rankin <drankin@bohemians.lexington.ky.us> and
6445    Christos Zoulas <christos@netbsd.org>
6446
6447 20000119
6448  - SCO compile fixes from Gary E. Miller <gem@rellim.com>
6449  - Compile fix from Darren_Hall@progressive.com
6450  - Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
6451    addresses using getaddrinfo(). Added a configure switch to make the
6452    default lookup mode AF_INET
6453
6454 20000118
6455  - Fixed --with-pid-dir option
6456  - Makefile fix from Gary E. Miller <gem@rellim.com>
6457  - Compile fix for HPUX and Solaris from Andre Lucas
6458    <andre.lucas@dial.pipex.com>
6459
6460 20000117
6461  - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
6462    port, ignore EINVAL errors (Linux) when searching for free port.
6463  - Revert __snprintf -> snprintf aliasing. Apparently Solaris
6464    __snprintf isn't. Report from Theo de Raadt <theo@cvs.openbsd.org>
6465  - Document location of Redhat PAM file in INSTALL.
6466  - Fixed X11 forwarding bug on Linux. libc advertises AF_INET6
6467    INADDR_ANY_INIT addresses via getaddrinfo, but may not be able to
6468    deliver (no IPv6 kernel support)
6469  - Released 1.2.1pre27
6470
6471  - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
6472  - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
6473    <jhuuskon@hytti.uku.fi>
6474  - Fix hang on logout if processes are still using the pty. Needs
6475    further testing.
6476  - Patch from Christos Zoulas <christos@zoulas.com>
6477    - Try $prefix first when looking for OpenSSL.
6478    - Include sys/types.h when including sys/socket.h in test programs
6479  - Substitute PID directory in sshd.8. Suggestion from Andrew
6480    Stribblehill <a.d.stribblehill@durham.ac.uk>
6481
6482 20000116
6483  - Renamed --with-xauth-path to --with-xauth
6484  - Added --with-pid-dir option
6485  - Released 1.2.1pre26
6486
6487  - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
6488  - Fixed broken bugfix for /dev/ptmx on Linux systems which lack
6489    openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
6490
6491 20000115
6492  - Add --with-xauth-path configure directive and explicit test for
6493    /usr/openwin/bin/xauth for Solaris systems. Report from Anders
6494    Nordby <anders@fix.no>
6495  - Fix incorrect detection of /dev/ptmx on Linux systems that lack
6496    openpty. Report from John Seifarth <john@waw.be>
6497  - Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
6498    sys/types.h. Fixes problems on SCO, report from Gary E. Miller
6499    <gem@rellim.com>
6500  - Use __snprintf and __vnsprintf if they are found where snprintf and
6501    vnsprintf are lacking. Suggested by Ben Taylor <bent@shell.clark.net>
6502    and others.
6503
6504 20000114
6505  - Merged OpenBSD IPv6 patch:
6506    - [sshd.c sshd.8 sshconnect.c ssh.h ssh.c servconf.h servconf.c scp.1]
6507      [scp.c packet.h packet.c login.c log.c canohost.c channels.c]
6508      [hostfile.c sshd_config]
6509      ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new
6510      features: sshd allows multiple ListenAddress and Port options. note
6511      that libwrap is not IPv6-ready. (based on patches from
6512      fujiwara@rcac.tdi.co.jp)
6513    - [ssh.c canohost.c]
6514      more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo,
6515      from itojun@
6516    - [channels.c]
6517      listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)
6518    - [packet.h]
6519      allow auth-kerberos for IPv4 only
6520    - [scp.1 sshd.8 servconf.h scp.c]
6521      document -4, -6, and 'ssh -L 2022/::1/22'
6522    - [ssh.c]
6523      'ssh @host' is illegal (null user name), from
6524      karsten@gedankenpolizei.de
6525    - [sshconnect.c]
6526      better error message
6527    - [sshd.c]
6528      allow auth-kerberos for IPv4 only
6529  - Big IPv6 merge:
6530    - Cleanup overrun in sockaddr copying on RHL 6.1
6531    - Replacements for getaddrinfo, getnameinfo, etc based on versions
6532      from patch from KIKUCHI Takahiro <kick@kyoto.wide.ad.jp>
6533    - Replacement for missing structures on systems that lack IPv6
6534    - record_login needed to know about AF_INET6 addresses
6535    - Borrowed more code from OpenBSD: rresvport_af and requisites
6536
6537 20000110
6538  - Fixes to auth-skey to enable it to use the standard OpenSSL libraries
6539
6540 20000107
6541  - New config.sub and config.guess to fix problems on SCO. Supplied
6542    by Gary E. Miller <gem@rellim.com>
6543  - SCO build fix from Gary E. Miller <gem@rellim.com>
6544  - Released 1.2.1pre25
6545
6546 20000106
6547  - Documentation update & cleanup
6548  - Better KrbIV / AFS detection, based on patch from:
6549    Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6550
6551 20000105
6552  - Fixed annoying DES corruption problem. libcrypt has been
6553    overriding symbols in libcrypto. Removed libcrypt and crypt.h
6554    altogether (libcrypto includes its own crypt(1) replacement)
6555  - Added platform-specific rules for Irix 6.x. Included warning that
6556    they are untested.
6557
6558 20000103
6559  - Add explicit make rules for files proccessed by fixpaths.
6560  - Fix "make install" in RPM spec files. Report from Tenkou N. Hattori
6561    <tnh@kondara.org>
6562  - Removed "nullok" directive from default PAM configuration files.
6563    Added information on enabling EmptyPasswords on openssh+PAM in
6564    UPGRADING file.
6565  - OpenBSD CVS updates
6566    - [ssh-agent.c]
6567      cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and
6568      dgaudet@arctic.org
6569    - [sshconnect.c]
6570      compare correct version for 1.3 compat mode
6571
6572 20000102
6573  - Prevent multiple inclusion of config.h and defines.h. Suggested
6574    by Andre Lucas <andre.lucas@dial.pipex.com>
6575  - Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
6576    <dgaudet@arctic.org>
6577
6578 19991231
6579  - Fix password support on systems with a mixture of shadowed and
6580    non-shadowed passwords (e.g. NIS). Report and fix from
6581    HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
6582  - Fix broken autoconf typedef detection. Report from Marc G.
6583    Fournier <marc.fournier@acadiau.ca>
6584  - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
6585    <Franz.Sirl-kernel@lauterbach.com>
6586  - Prevent typedefs from being compiled more than once. Report from
6587    Marc G. Fournier <marc.fournier@acadiau.ca>
6588  - Fill in ut_utaddr utmp field. Report from Benjamin Charron
6589    <iretd@bigfoot.com>
6590  - Really fix broken default path. Fix from Jim Knoble
6591    <jmknoble@jmknoble.cx>
6592  - Remove test for quad_t. No longer needed.
6593  - Released 1.2.1pre24
6594
6595  - Added support for directory-based lastlogs
6596  - Really fix typedefs, patch from Ben Taylor <bent@clark.net>
6597
6598 19991230
6599  - OpenBSD CVS updates:
6600    - [auth-passwd.c]
6601      check for NULL 1st
6602  - Removed most of the pam code into its own file auth-pam.[ch]. This
6603    cleaned up sshd.c up significantly.
6604  - PAM authentication was incorrectly interpreting
6605    "PermitRootLogin without-password". Report from Matthias Andree
6606    <ma@dt.e-technik.uni-dortmund.de
6607  - Several other cleanups
6608  - Merged Dante SOCKS support patch from David Rankin
6609   <drankin@bohemians.lexington.ky.us>
6610  - Updated documentation with ./configure options
6611  - Released 1.2.1pre23
6612
6613 19991229
6614  - Applied another NetBSD portability patch from David Rankin
6615    <drankin@bohemians.lexington.ky.us>
6616  - Fix --with-default-path option.
6617  - Autodetect perl, patch from David Rankin
6618    <drankin@bohemians.lexington.ky.us>
6619  - Print whether OpenSSH was compiled with RSARef, patch from
6620    Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
6621  - Calls to pam_setcred, patch from Nalin Dahyabhai
6622    <nalin@thermo.stat.ncsu.edu>
6623  - Detect missing size_t and typedef it.
6624  - Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
6625  - Minor Makefile cleaning
6626
6627 19991228
6628  - Replacement for getpagesize() for systems which lack it
6629  - NetBSD login.c compile fix from David Rankin
6630   <drankin@bohemians.lexington.ky.us>
6631  - Fully set ut_tv if present in utmp or utmpx
6632  - Portability fixes for Irix 5.3 (now compiles OK!)
6633  - autoconf and other misc cleanups
6634  - Merged AIX patch from Darren Hall <dhall@virage.org>
6635  - Cleaned up defines.h
6636  - Released 1.2.1pre22
6637
6638 19991227
6639  - Automatically correct paths in manpages and configuration files. Patch
6640    and script from Andre Lucas <andre.lucas@dial.pipex.com>
6641  - Removed credits from README to CREDITS file, updated.
6642  - Added --with-default-path to specify custom path for server
6643  - Removed #ifdef trickery from acconfig.h into defines.h
6644  - PAM bugfix. PermitEmptyPassword was being ignored.
6645  - Fixed PAM config files to allow empty passwords if server does.
6646  - Explained spurious PAM auth warning workaround in UPGRADING
6647  - Use last few chars of tty line as ut_id
6648  - New SuSE RPM spec file from Chris Saia <csaia@wtower.com>
6649  - OpenBSD CVS updates:
6650    - [packet.h auth-rhosts.c]
6651      check format string for packet_disconnect and packet_send_debug, too
6652    - [channels.c]
6653      use packet_get_maxsize for channels. consistence.
6654
6655 19991226
6656  - Enabled utmpx support by default for Solaris
6657  - Cleanup sshd.c PAM a little more
6658  - Revised RPM package to include Jim Knoble's <jmknoble@jmknoble.cx>
6659    X11 ssh-askpass program.
6660  - Disable logging of PAM success and failures, PAM is verbose enough.
6661    Unfortunatly there is currently no way to disable auth failure
6662    messages. Mention this in UPGRADING file and sent message to PAM
6663    developers
6664  - OpenBSD CVS update:
6665    - [ssh-keygen.1 ssh.1]
6666      remove ref to .ssh/random_seed, mention .ssh/environment in
6667      .Sh FILES, too
6668  - Released 1.2.1pre21
6669  - Fixed implicit '.' in default path, report from Jim Knoble
6670    <jmknoble@jmknoble.cx>
6671  - Redhat RPM spec fixes from Jim Knoble <jmknoble@jmknoble.cx>
6672
6673 19991225
6674  - More fixes from Andre Lucas <andre.lucas@dial.pipex.com>
6675  - Cleanup of auth-passwd.c for shadow and MD5 passwords
6676  - Cleanup and bugfix of PAM authentication code
6677  - Released 1.2.1pre20
6678
6679  - Merged fixes from Ben Taylor <bent@clark.net>
6680  - Fixed configure support for PAM. Reported by Naz <96na@eng.cam.ac.uk>
6681  - Disabled logging of PAM password authentication failures when password
6682    is empty. (e.g start of authentication loop). Reported by Naz
6683    <96na@eng.cam.ac.uk>)
6684
6685 19991223
6686  - Merged later HPUX patch from Andre Lucas
6687    <andre.lucas@dial.pipex.com>
6688  - Above patch included better utmpx support from Ben Taylor
6689    <bent@clark.net>
6690
6691 19991222
6692  - Fix undefined fd_set type in ssh.h from Povl H. Pedersen
6693    <pope@netguide.dk>
6694  - Fix login.c breakage on systems which lack ut_host in struct
6695    utmp. Reported by Willard Dawson <willard.dawson@sbs.siemens.com>
6696
6697 19991221
6698  - Integration of large HPUX patch from Andre Lucas
6699    <andre.lucas@dial.pipex.com>. Integrating it had a few other
6700    benefits:
6701    - Ability to disable shadow passwords at configure time
6702    - Ability to disable lastlog support at configure time
6703    - Support for IP address in $DISPLAY
6704  - OpenBSD CVS update:
6705    - [sshconnect.c]
6706    say "REMOTE HOST IDENTIFICATION HAS CHANGED"
6707  - Fix DISABLE_SHADOW support
6708  - Allow MD5 passwords even if shadow passwords are disabled
6709  - Release 1.2.1pre19
6710
6711 19991218
6712  - Redhat init script patch from Chun-Chung Chen
6713    <cjj@u.washington.edu>
6714  - Avoid breakage on systems without IPv6 headers
6715
6716 19991216
6717  - Makefile changes for Solaris from Peter Kocks
6718    <peter.kocks@baygate.com>
6719  - Minor updates to docs
6720  - Merged OpenBSD CVS changes:
6721    - [authfd.c ssh-agent.c]
6722      keysize warnings talk about identity files
6723    - [packet.c]
6724      "Connection closed by x.x.x.x": fatal() -> log()
6725  - Correctly handle empty passwords in shadow file. Patch from:
6726    "Chris, the Young One" <cky@pobox.com>
6727  - Released 1.2.1pre18
6728
6729 19991215
6730  - Integrated patchs from Juergen Keil <jk@tools.de>
6731    - Avoid void* pointer arithmatic
6732    - Use LDFLAGS correctly
6733    - Fix SIGIO error in scp
6734    - Simplify status line printing in scp
6735  - Added better test for inline functions compiler support from
6736    Darren_Hall@progressive.com
6737
6738 19991214
6739  - OpenBSD CVS Changes
6740    - [canohost.c]
6741      fix get_remote_port() and friends for sshd -i;
6742      Holger.Trapp@Informatik.TU-Chemnitz.DE
6743    - [mpaux.c]
6744      make code simpler. no need for memcpy. niels@ ok
6745    - [pty.c]
6746      namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
6747      fix proto; markus
6748    - [ssh.1]
6749       typo; mark.baushke@solipsa.com
6750    - [channels.c ssh.c ssh.h sshd.c]
6751      type conflict for 'extern Type *options' in channels.c; dot@dotat.at
6752    - [sshconnect.c]
6753      move checking of hostkey into own function.
6754    - [version.h]
6755      OpenSSH-1.2.1
6756  - Clean up broken includes in pty.c
6757  - Some older systems don't have poll.h, they use sys/poll.h instead
6758  - Doc updates
6759
6760 19991211
6761  - Fix compilation on systems with AFS. Reported by
6762    aloomis@glue.umd.edu
6763  - Fix installation on Solaris. Reported by
6764    Gordon Rowell <gordonr@gormand.com.au>
6765  - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
6766    patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
6767  - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
6768  - Compile fix from David Agraz <dagraz@jahoopa.com>
6769  - Avoid compiler warning in bsd-snprintf.c
6770  - Added pam_limits.so to default PAM config. Suggested by
6771    Jim Knoble <jmknoble@jmknoble.cx>
6772
6773 19991209
6774  - Import of patch from Ben Taylor <bent@clark.net>:
6775    - Improved PAM support
6776    - "uninstall" rule for Makefile
6777    - utmpx support
6778    - Should fix PAM problems on Solaris
6779  - OpenBSD CVS updates:
6780    - [readpass.c]
6781      avoid stdio; based on work by markus, millert, and I
6782    - [sshd.c]
6783      make sure the client selects a supported cipher
6784    - [sshd.c]
6785      fix sighup handling.  accept would just restart and daemon handled
6786      sighup only after the next connection was accepted. use poll on
6787      listen sock now.
6788    - [sshd.c]
6789      make that a fatal
6790  - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
6791    to fix libwrap support on NetBSD
6792  - Released 1.2pre17
6793
6794 19991208
6795  - Compile fix for Solaris with /dev/ptmx from
6796    David Agraz <dagraz@jahoopa.com>
6797
6798 19991207
6799  - sshd Redhat init script patch from Jim Knoble <jmknoble@jmknoble.cx>
6800    fixes compatability with 4.x and 5.x
6801  - Fixed default SSH_ASKPASS
6802  - Fix PAM account and session being called multiple times. Problem
6803    reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
6804  - Merged more OpenBSD changes:
6805    - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
6806      move atomicio into it's own file.  wrap all socket write()s which
6807      were doing write(sock, buf, len) != len, with atomicio() calls.
6808    - [auth-skey.c]
6809      fd leak
6810    - [authfile.c]
6811      properly name fd variable
6812    - [channels.c]
6813      display great hatred towards strcpy
6814    - [pty.c pty.h sshd.c]
6815      use openpty() if it exists (it does on BSD4_4)
6816    - [tildexpand.c]
6817      check for ~ expansion past MAXPATHLEN
6818  - Modified helper.c to use new atomicio function.
6819  - Reformat Makefile a little
6820  - Moved RC4 routines from rc4.[ch] into helper.c
6821  - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
6822  - Updated SuSE spec from Chris Saia <csaia@wtower.com>
6823  - Tweaked Redhat spec
6824  - Clean up bad imports of a few files (forgot -kb)
6825  - Released 1.2pre16
6826
6827 19991204
6828  - Small cleanup of PAM code in sshd.c
6829  - Merged OpenBSD CVS changes:
6830    - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
6831      move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
6832    - [auth-rsa.c]
6833      warn only about mismatch if key is _used_
6834      warn about keysize-mismatch with log() not error()
6835      channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
6836      ports are u_short
6837    - [hostfile.c]
6838      indent, shorter warning
6839    - [nchan.c]
6840      use error() for internal errors
6841    - [packet.c]
6842      set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
6843      serverloop.c
6844      indent
6845    - [ssh-add.1 ssh-add.c ssh.h]
6846      document $SSH_ASKPASS, reasonable default
6847    - [ssh.1]
6848      CheckHostIP is not available for connects via proxy command
6849    - [sshconnect.c]
6850      typo
6851      easier to read client code for passwd and skey auth
6852      turn of checkhostip for proxy connects, since we don't know the remote ip
6853
6854 19991126
6855  - Add definition for __P()
6856  - Added [v]snprintf() replacement for systems that lack it
6857
6858 19991125
6859  - More reformatting merged from OpenBSD CVS
6860  - Merged OpenBSD CVS changes:
6861    - [channels.c]
6862      fix packet_integrity_check() for !have_hostname_in_open.
6863      report from mrwizard@psu.edu via djm@ibs.com.au
6864    - [channels.c]
6865      set SO_REUSEADDR and SO_LINGER for forwarded ports.
6866      chip@valinux.com via damien@ibs.com.au
6867    - [nchan.c]
6868      it's not an error() if shutdown_write failes in nchan.
6869    - [readconf.c]
6870      remove dead #ifdef-0-code
6871    - [readconf.c servconf.c]
6872      strcasecmp instead of tolower
6873    - [scp.c]
6874      progress meter overflow fix from damien@ibs.com.au
6875    - [ssh-add.1 ssh-add.c]
6876      SSH_ASKPASS support
6877    - [ssh.1 ssh.c]
6878      postpone fork_after_authentication until command execution,
6879      request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
6880      plus: use daemon() for backgrounding
6881  - Added BSD compatible install program and autoconf test, thanks to
6882    Niels Kristian Bech Jensen <nkbj@image.dk>
6883  - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
6884  - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
6885  - Release 1.2pre15
6886
6887 19991124
6888  - Merged very large OpenBSD source code reformat
6889  - OpenBSD CVS updates
6890    - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
6891      [ssh.h sshd.8 sshd.c]
6892      syslog changes:
6893      * Unified Logmessage for all auth-types, for success and for failed
6894      * Standard connections get only ONE line in the LOG when level==LOG:
6895        Auth-attempts are logged only, if authentication is:
6896           a) successfull or
6897           b) with passwd or
6898           c) we had more than AUTH_FAIL_LOG failues
6899      * many log() became verbose()
6900      * old behaviour with level=VERBOSE
6901    - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
6902      tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
6903      messages. allows use of s/key in windows (ttssh, securecrt) and
6904      ssh-1.2.27 clients without 'ssh -v', ok: niels@
6905    - [sshd.8]
6906      -V, for fallback to openssh in SSH2 compatibility mode
6907    - [sshd.c]
6908      fix sigchld race; cjc5@po.cwru.edu
6909
6910 19991123
6911  - Added SuSE package files from Chris Saia <csaia@wtower.com>
6912  - Restructured package-related files under packages/*
6913  - Added generic PAM config
6914  - Numerous little Solaris fixes
6915  - Add recommendation to use GNU make to INSTALL document
6916
6917 19991122
6918  - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
6919  - OpenBSD CVS Changes
6920    - [ssh-keygen.c]
6921      don't create ~/.ssh only if the user wants to store the private
6922      key there. show fingerprint instead of public-key after
6923      keygeneration. ok niels@
6924  - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
6925  - Added timersub() macro
6926  - Tidy RCSIDs of bsd-*.c
6927  - Added autoconf test and macro to deal with old PAM libraries
6928    pam_strerror definition (one arg vs two).
6929  - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
6930  - Retry /dev/urandom reads interrupted by signal (report from
6931    Robert Hardy <rhardy@webcon.net>)
6932  - Added a setenv replacement for systems which lack it
6933  - Only display public key comment when presenting ssh-askpass dialog
6934  - Released 1.2pre14
6935
6936  - Configure, Make and changelog corrections from Tudor Bosman
6937    <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
6938
6939 19991121
6940  - OpenBSD CVS Changes:
6941    - [channels.c]
6942      make this compile, bad markus
6943    - [log.c readconf.c servconf.c ssh.h]
6944      bugfix: loglevels are per host in clientconfig,
6945      factor out common log-level parsing code.
6946    - [servconf.c]
6947      remove unused index (-Wall)
6948    - [ssh-agent.c]
6949      only one 'extern char *__progname'
6950    - [sshd.8]
6951      document SIGHUP, -Q to synopsis
6952    - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
6953      [channels.c clientloop.c]
6954      SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
6955      [hope this time my ISP stays alive during commit]
6956    - [OVERVIEW README] typos; green@freebsd
6957    - [ssh-keygen.c]
6958      replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
6959      exit if writing the key fails (no infinit loop)
6960      print usage() everytime we get bad options
6961    - [ssh-keygen.c] overflow, djm@mindrot.org
6962    - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
6963
6964 19991120
6965  - Merged more Solaris support from Marc G. Fournier
6966    <marc.fournier@acadiau.ca>
6967  - Wrote autoconf tests for integer bit-types
6968  - Fixed enabling kerberos support
6969  - Fix segfault in ssh-keygen caused by buffer overrun in filename
6970    handling.
6971
6972 19991119
6973  - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
6974  - Merged OpenBSD CVS changes
6975    - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
6976      more %d vs. %s in fmt-strings
6977    - [authfd.c]
6978      Integers should not be printed with %s
6979  - EGD uses a socket, not a named pipe. Duh.
6980  - Fix includes in fingerprint.c
6981  - Fix scp progress bar bug again.
6982  - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
6983    David Rankin <drankin@bohemians.lexington.ky.us>
6984  - Added autoconf option to enable Kerberos 4 support (untested)
6985  - Added autoconf option to enable AFS support (untested)
6986  - Added autoconf option to enable S/Key support (untested)
6987  - Added autoconf option to enable TCP wrappers support (compiles OK)
6988  - Renamed BSD helper function files to bsd-*
6989  - Added tests for login and daemon and enable OpenBSD replacements for
6990    when they are absent.
6991  - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
6992
6993 19991118
6994  - Merged OpenBSD CVS changes
6995    - [scp.c] foregroundproc() in scp
6996    - [sshconnect.h] include fingerprint.h
6997    - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
6998      changes.
6999    - [ssh.1] Spell my name right.
7000  - Added openssh.com info to README
7001
7002 19991117
7003  - Merged OpenBSD CVS changes
7004    - [ChangeLog.Ylonen] noone needs this anymore
7005    - [authfd.c] close-on-exec for auth-socket, ok deraadt
7006    - [hostfile.c]
7007      in known_hosts key lookup the entry for the bits does not need
7008      to match, all the information is contained in n and e. This
7009      solves the problem with buggy servers announcing the wrong
7010      modulus length.  markus and me.
7011    - [serverloop.c]
7012      bugfix: check for space if child has terminated, from:
7013      iedowse@maths.tcd.ie
7014    - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
7015      [fingerprint.c fingerprint.h]
7016      rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
7017    - [ssh-agent.1] typo
7018    - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
7019    - [sshd.c]
7020      force logging to stderr while loading private key file
7021      (lost while converting to new log-levels)
7022
7023 19991116
7024  - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
7025  - Merged OpenBSD CVS changes:
7026    - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
7027      [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
7028      the keysize of rsa-parameter 'n' is passed implizit,
7029      a few more checks and warnings about 'pretended' keysizes.
7030    - [cipher.c cipher.h packet.c packet.h sshd.c]
7031      remove support for cipher RC4
7032    - [ssh.c]
7033      a note for legay systems about secuity issues with permanently_set_uid(),
7034      the private hostkey and ptrace()
7035    - [sshconnect.c]
7036      more detailed messages about adding and checking hostkeys
7037
7038 19991115
7039  - Merged OpenBSD CVS changes:
7040    - [ssh-add.c] change passphrase loop logic and remove ref to
7041      $DISPLAY, ok niels
7042  - Changed to ssh-add.c broke askpass support. Revised it to be a little more
7043    modular.
7044  - Revised autoconf support for enabling/disabling askpass support.
7045  - Merged more OpenBSD CVS changes:
7046    [auth-krb4.c]
7047      - disconnect if getpeername() fails
7048      - missing xfree(*client)
7049    [canohost.c]
7050      - disconnect if getpeername() fails
7051      - fix comment: we _do_ disconnect if ip-options are set
7052    [sshd.c]
7053      - disconnect if getpeername() fails
7054      - move checking of remote port to central place
7055    [auth-rhosts.c] move checking of remote port to central place
7056    [log-server.c] avoid extra fd per sshd, from millert@
7057    [readconf.c] print _all_ bad config-options in ssh(1), too
7058    [readconf.h] print _all_ bad config-options in ssh(1), too
7059    [ssh.c] print _all_ bad config-options in ssh(1), too
7060    [sshconnect.c] disconnect if getpeername() fails
7061  - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
7062  - Various small cleanups to bring diff (against OpenBSD) size down.
7063  - Merged more Solaris compability from Marc G. Fournier
7064    <marc.fournier@acadiau.ca>
7065  - Wrote autoconf tests for __progname symbol
7066  - RPM spec file fixes from Jim Knoble <jmknoble@jmknoble.cx>
7067  - Released 1.2pre12
7068
7069  - Another OpenBSD CVS update:
7070    - [ssh-keygen.1] fix .Xr
7071
7072 19991114
7073  - Solaris compilation fixes (still imcomplete)
7074
7075 19991113
7076  - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
7077    - Don't install config files if they already exist
7078    - Fix inclusion of additional preprocessor directives from acconfig.h
7079  - Removed redundant inclusions of config.h
7080  - Added 'Obsoletes' lines to RPM spec file
7081  - Merged OpenBSD CVS changes:
7082    - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
7083    - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
7084      totalsize, ok niels,aaron
7085  - Delay fork (-f option) in ssh until after port forwarded connections
7086    have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
7087  - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
7088  - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
7089  - Tidied default config file some more
7090  - Revised Redhat initscript to fix bug: sshd (re)start would fail
7091    if executed from inside a ssh login.
7092
7093 19991112
7094  - Merged changes from OpenBSD CVS
7095    - [sshd.c] session_key_int may be zero
7096    - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
7097      IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
7098      deraadt,millert
7099  - Brought default sshd_config more in line with OpenBSD's
7100  - Grab server in gnome-ssh-askpass (Debian bug #49872)
7101  - Released 1.2pre10
7102
7103  - Added INSTALL documentation
7104  - Merged yet more changes from OpenBSD CVS
7105    - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
7106      [ssh.c ssh.h sshconnect.c sshd.c]
7107      make all access to options via 'extern Options options'
7108      and 'extern ServerOptions options' respectively;
7109      options are no longer passed as arguments:
7110       * make options handling more consistent
7111       * remove #include "readconf.h" from ssh.h
7112       * readconf.h is only included if necessary
7113    - [mpaux.c] clear temp buffer
7114    - [servconf.c] print _all_ bad options found in configfile
7115  - Make ssh-askpass support optional through autoconf
7116  - Fix nasty division-by-zero error in scp.c
7117  - Released 1.2pre11
7118
7119 19991111
7120  - Added (untested) Entropy Gathering Daemon (EGD) support
7121  - Fixed /dev/urandom fd leak (Debian bug #49722)
7122  - Merged OpenBSD CVS changes:
7123    - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7124    - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7125    - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7126  - Fix integer overflow which was messing up scp's progress bar for large
7127    file transfers. Fix submitted to OpenBSD developers. Report and fix
7128    from Kees Cook <cook@cpoint.net>
7129  - Merged more OpenBSD CVS changes:
7130    - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
7131      + krb-cleanup cleanup
7132    - [clientloop.c log-client.c log-server.c ]
7133      [readconf.c readconf.h servconf.c servconf.h ]
7134      [ssh.1 ssh.c ssh.h sshd.8]
7135      add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
7136      obsoletes QuietMode and FascistLogging in sshd.
7137    - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
7138      allow session_key_int != sizeof(session_key)
7139      [this should fix the pre-assert-removal-core-files]
7140  - Updated default config file to use new LogLevel option and to improve
7141    readability
7142
7143 19991110
7144  - Merged several minor fixes:
7145    - ssh-agent commandline parsing
7146    - RPM spec file now installs ssh setuid root
7147    - Makefile creates libdir
7148    - Merged beginnings of Solaris compability from Marc G. Fournier
7149      <marc.fournier@acadiau.ca>
7150
7151 19991109
7152  - Autodetection of SSL/Crypto library location via autoconf
7153  - Fixed location of ssh-askpass to follow autoconf
7154  - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
7155  - Autodetection of RSAref library for US users
7156  - Minor doc updates
7157  - Merged OpenBSD CVS changes:
7158    - [rsa.c] bugfix: use correct size for memset()
7159    - [sshconnect.c] warn if announced size of modulus 'n' != real size
7160  - Added GNOME passphrase requestor (use --with-gnome-askpass)
7161  - RPM build now creates subpackages
7162  - Released 1.2pre9
7163
7164 19991108
7165  - Removed debian/ directory. This is now being maintained separately.
7166  - Added symlinks for slogin in RPM spec file
7167  - Fixed permissions on manpages in RPM spec file
7168  - Added references to required libraries in README file
7169  - Removed config.h.in from CVS
7170  - Removed pwdb support (better pluggable auth is provided by glibc)
7171  - Made PAM and requisite libdl optional
7172  - Removed lots of unnecessary checks from autoconf
7173  - Added support and autoconf test for openpty() function (Unix98 pty support)
7174  - Fix for scp not finding ssh if not installed as /usr/bin/ssh
7175  - Added TODO file
7176  - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
7177    - Added ssh-askpass program
7178    - Added ssh-askpass support to ssh-add.c
7179    - Create symlinks for slogin on install
7180    - Fix "distclean" target in makefile
7181    - Added example for ssh-agent to manpage
7182    - Added support for PAM_TEXT_INFO messages
7183    - Disable internal /etc/nologin support if PAM enabled
7184  - Merged latest OpenBSD CVS changes:
7185    - [all] replace assert() with error, fatal or packet_disconnect
7186    - [sshd.c] don't send fail-msg but disconnect if too many authentication
7187      failures
7188    - [sshd.c] remove unused argument. ok dugsong
7189    - [sshd.c] typo
7190    - [rsa.c] clear buffers used for encryption. ok: niels
7191    - [rsa.c] replace assert() with error, fatal or packet_disconnect
7192    - [auth-krb4.c] remove unused argument. ok dugsong
7193  - Fixed coredump after merge of OpenBSD rsa.c patch
7194  - Released 1.2pre8
7195
7196 19991102
7197  - Merged change from OpenBSD CVS
7198   - One-line cleanup in sshd.c
7199
7200 19991030
7201  - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
7202  - Merged latest updates for OpenBSD CVS:
7203    - channels.[ch] - remove broken x11 fix and document istate/ostate
7204    - ssh-agent.c - call setsid() regardless of argv[]
7205    - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
7206  - Documentation cleanups
7207  - Renamed README -> README.Ylonen
7208  - Renamed README.openssh ->README
7209
7210 19991029
7211  - Renamed openssh* back to ssh* at request of Theo de Raadt
7212  - Incorporated latest changes from OpenBSD's CVS
7213  - Integrated Makefile patch from  Niels Kristian Bech Jensen <nkbj@image.dk>
7214  - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
7215  - Make distclean now removed configure script
7216  - Improved PAM logging
7217  - Added some debug() calls for PAM
7218  - Removed redundant subdirectories
7219  - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
7220    building on Debian.
7221  - Fixed off-by-one error in PAM env patch
7222  - Released 1.2pre6
7223
7224 19991028
7225  - Further PAM enhancements.
7226    - Much cleaner
7227    - Now uses account and session modules for all logins.
7228  - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
7229    - Build fixes
7230    - Autoconf
7231    - Change binary names to open*
7232  - Fixed autoconf script to detect PAM on RH6.1
7233  - Added tests for libpwdb, and OpenBSD functions to autoconf
7234  - Released 1.2pre4
7235
7236  - Imported latest OpenBSD CVS code
7237  - Updated README.openssh
7238  - Released 1.2pre5
7239
7240 19991027
7241  - Adapted PAM patch.
7242  - Released 1.0pre2
7243
7244  - Excised my buggy replacements for strlcpy and mkdtemp
7245  - Imported correct OpenBSD strlcpy and mkdtemp routines.
7246  - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
7247  - Picked up correct version number from OpenBSD
7248  - Added sshd.pam PAM configuration file
7249  - Added sshd.init Redhat init script
7250  - Added openssh.spec RPM spec file
7251  - Released 1.2pre3
7252
7253 19991026
7254  - Fixed include paths of OpenSSL functions
7255  - Use OpenSSL MD5 routines
7256  - Imported RC4 code from nanocrypt
7257  - Wrote replacements for OpenBSD arc4random* functions
7258  - Wrote replacements for strlcpy and mkdtemp
7259  - Released 1.0pre1
7260
7261 $Id$
This page took 1.034243 seconds and 5 git commands to generate.