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