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