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