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