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