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