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