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