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