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