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