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