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