]> andersk Git - openssh.git/blob - ChangeLog
- djm@cvs.openbsd.org 2009/08/27 17:44:52
[openssh.git] / ChangeLog
1 20091007
2  - (dtucker) OpenBSD CVS Sync
3    - djm@cvs.openbsd.org 2009/08/12 00:13:00
4      [sftp.c sftp.1]
5      support most of scp(1)'s commandline arguments in sftp(1), as a first
6      step towards making sftp(1) a drop-in replacement for scp(1).
7      One conflicting option (-P) has not been changed, pending further
8      discussion.
9      Patch from carlosvsilvapt@gmail.com as part of his work in the
10      Google Summer of Code
11   - jmc@cvs.openbsd.org 2009/08/12 06:31:42
12      [sftp.1]
13      sort options;
14    - djm@cvs.openbsd.org 2009/08/13 01:11:19
15      [sftp.1 sftp.c]
16      Swizzle options: "-P sftp_server_path" moves to "-D sftp_server_path",
17      add "-P port" to match scp(1). Fortunately, the -P option is only really
18      used by our regression scripts.
19      part of larger patch from carlosvsilvapt@gmail.com for his Google Summer
20      of Code work; ok deraadt markus
21    - jmc@cvs.openbsd.org 2009/08/13 13:39:54
22      [sftp.1 sftp.c]
23      sync synopsis and usage();
24    - djm@cvs.openbsd.org 2009/08/14 18:17:49
25      [sftp-client.c]
26      make the "get_handle: ..." error messages vaguely useful by allowing
27      callers to specify their own error message strings.
28    - fgsch@cvs.openbsd.org 2009/08/15 18:56:34
29      [auth.h]
30      remove unused define. markus@ ok.
31      (Id sync only, Portable still uses this.)
32    - dtucker@cvs.openbsd.org 2009/08/16 23:29:26
33      [sshd_config.5]
34      Add PubkeyAuthentication to the list allowed in a Match block (bz #1577)
35    - djm@cvs.openbsd.org 2009/08/18 18:36:21
36      [sftp-client.h sftp.1 sftp-client.c sftp.c]
37      recursive transfer support for get/put and on the commandline
38      work mostly by carlosvsilvapt@gmail.com for the Google Summer of Code
39      with some tweaks by me; "go for it" deraadt@
40   - djm@cvs.openbsd.org 2009/08/18 21:15:59
41      [sftp.1]
42      fix "get" command usage, spotted by jmc@
43    - jmc@cvs.openbsd.org 2009/08/19 04:56:03
44      [sftp.1]
45      ether -> either;
46    - dtucker@cvs.openbsd.org 2009/08/20 23:54:28
47      [mux.c]
48      subsystem_flag is defined in ssh.c so it's extern; ok djm
49    - djm@cvs.openbsd.org 2009/08/27 17:28:52
50      [sftp-server.c]
51      allow setting an explicit umask on the commandline to override whatever
52      default the user has. bz#1229; ok dtucker@ deraadt@ markus@
53    - djm@cvs.openbsd.org 2009/08/27 17:33:49
54      [ssh-keygen.c]
55      force use of correct hash function for random-art signature display
56      as it was inheriting the wrong one when bubblebabble signatures were
57      activated; bz#1611 report and patch from fwojcik+openssh AT besh.com;
58      ok markus@
59    - djm@cvs.openbsd.org 2009/08/27 17:43:00
60      [sftp-server.8]
61      allow setting an explicit umask on the commandline to override whatever
62      default the user has. bz#1229; ok dtucker@ deraadt@ markus@
63    - djm@cvs.openbsd.org 2009/08/27 17:44:52
64      [authfd.c ssh-add.c authfd.h]
65      Do not fall back to adding keys without contraints (ssh-add -c / -t ...)
66      when the agent refuses the constrained add request. This was a useful
67      migration measure back in 2002 when constraints were new, but just
68      adds risk now.
69      bz #1612, report and patch from dkg AT fifthhorseman.net; ok markus@
70
71 20091002
72  - (djm) [Makefile.in] Mention readconf.o in ssh-keysign's make deps.
73    spotted by des AT des.no
74
75 20090926
76  - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
77          [contrib/suse/openssh.spec] Update for release
78  - (djm) [README] update relnotes URL
79  - (djm) [packet.c] Restore EWOULDBLOCK handling that got lost somewhere
80  - (djm) Release 5.3p1
81
82 20090911
83  - (dtucker) [configure.ac] Change the -lresolv check so it works on Mac OS X
84    10.6 (which doesn't have BIND8_COMPAT and thus uses res_9_query).  Patch
85    from jbasney at ncsa uiuc edu.
86
87 20090908
88  - (djm) [serverloop.c] Fix test for server-assigned remote forwarding port
89    (-R 0:...); bz#1578, spotted and fix by gavin AT emf.net; ok dtucker@
90
91 20090901
92  - (dtucker) [configure.ac] Bug #1639: use AC_PATH_PROG to search the path for
93    krb5-config if it's not in the location specified by --with-kerberos5.
94    Patch from jchadima at redhat.
95
96 20090829
97  - (dtucker) [README.platform] Add text about development packages, based on
98    text from Chris Pepper in bug #1631.
99
100 20090828
101  - dtucker [auth-sia.c] Roll back the change for bug #1241 as it apparently
102    causes problems in some Tru64 configurations.
103  - (djm) [sshd_config.5] downgrade mention of login.conf to be an example
104    and mention PAM as another provider for ChallengeResponseAuthentication;
105    bz#1408; ok dtucker@
106  - (djm) [sftp-server.c] bz#1535: accept ENOSYS as a fallback error when
107    attempting atomic rename(); ok dtucker@
108  - (djm) [Makefile.in] bz#1505: Solaris make(1) doesn't accept make variables
109    in argv, so pass them in the environment; ok dtucker@
110  - (dtucker) [channels.c configure.ac] Bug #1528: skip the tcgetattr call on
111     the pty master on Solaris, since it never succeeds and can hang if large
112     amounts of data is sent to the slave (eg a copy-paste).  Based on a patch
113     originally from Doke Scott, ok djm@
114  - (dtucker) [clientloop.c configure.ac defines.h] Make the client's IO buffer
115    size a compile-time option and set it to 64k on Cygwin, since Corinna
116    reports that it makes a significant difference to performance.  ok djm@
117  - (dtucker) [configure.ac] Fix the syntax of the Solaris tcgetattr entry.
118
119 20090820
120  - (dtucker) [includes.h] Bug #1634: do not include system glob.h if we're not
121    using it since the type conflicts can cause problems on FreeBSD.  Patch
122    from Jonathan Chen.
123  - (dtucker) [session.c openbsd-compat/port-aix.h] Bugs #1249 and #1567: move
124    the setpcred call on AIX to immediately before the permanently_set_uid().
125    Ensures that we still have privileges when we call chroot and
126    pam_open_sesson.  Based on a patch from David Leonard.
127
128 20090817
129  - (dtucker) [configure.ac] Check for headers before libraries for openssl an
130    zlib, which should make the errors slightly more meaningful on platforms
131    where there's separate "-devel" packages for those.
132  - (dtucker) [sshlogin.c openbsd-compat/port-aix.{c,h}] Bug #1595: make
133    PrintLastLog work on AIX.  Based in part on a patch from Miguel Sanders.
134
135 20090729
136  - (tim) [contrib/cygwin/ssh-user-config] Change script to call correct error
137    function. Patch from Corinna Vinschen.
138
139 20090713
140  - (dtucker) [openbsd-compat/getrrsetbyname.c] Reduce answer buffer size so it
141    fits into 16 bits to work around a bug in glibc's resolver where it masks
142    off the buffer size at 16 bits.  Patch from Hauke Lampe, ok djm jakob.
143
144 20090712
145  - (dtucker) [configure.ac] Include sys/param.h for the sys/mount.h test,
146    prevents configure complaining on older BSDs.
147  - (dtucker [contrib/cygwin/ssh-{host,user}-config] Add license text. Patch
148    from Corinna Vinschen.
149  - (dtucker) [auth-pam.c] Bug #1534: move the deletion of PAM credentials on
150    logout to after the session close.  Patch from Anicka Bernathova,
151    originally from Andreas Schwab via Novelll ok djm.
152
153 20090707
154  - (dtucker) [contrib/cygwin/ssh-host-config] better support for automated
155    scripts and fix usage of eval.  Patch from Corinna Vinschen.
156
157 20090705
158  - (dtucker) OpenBSD CVS Sync
159    - andreas@cvs.openbsd.org 2009/06/27 09:29:06
160      [packet.h packet.c]
161      packet_bacup_state() and packet_restore_state() will be used to
162      temporarily save the current state ren resuming a suspended connection.
163      ok markus@
164    - andreas@cvs.openbsd.org 2009/06/27 09:32:43
165      [roaming_common.c roaming.h]
166      It may be necessary to retransmit some data when resuming, so add it
167      to a buffer when roaming is enabled.
168      Most of this code was written by Martin Forssen, maf at appgate dot com.
169      ok markus@
170    - andreas@cvs.openbsd.org 2009/06/27 09:35:06
171      [readconf.h readconf.c]
172      Add client option UseRoaming. It doesn't do anything yet but will
173      control whether the client tries to use roaming if enabled on the
174      server. From Martin Forssen.
175      ok markus@
176    - markus@cvs.openbsd.org 2009/06/30 14:54:40
177      [version.h]
178      crank version; ok deraadt
179    - dtucker@cvs.openbsd.org 2009/07/02 02:11:47
180      [ssh.c]
181      allow for long home dir paths (bz #1615).  ok deraadt
182      (based in part on a patch from jchadima at redhat)
183    - stevesk@cvs.openbsd.org 2009/07/05 19:28:33
184      [clientloop.c]
185      only send SSH2_MSG_DISCONNECT if we're in compat20; from dtucker@
186      ok deraadt@ markus@
187
188 20090622
189  - (dtucker) OpenBSD CVS Sync
190    - dtucker@cvs.openbsd.org 2009/06/22 05:39:28
191      [monitor_wrap.c monitor_mm.c ssh-keygen.c auth2.c gss-genr.c sftp-client.c]
192      alphabetize includes; reduces diff vs portable and style(9).
193      ok stevesk djm
194      (Id sync only; these were already in order in -portable)
195
196 20090621
197  - (dtucker) OpenBSD CVS Sync
198    - markus@cvs.openbsd.org 2009/03/17 21:37:00
199      [ssh.c]
200      pass correct argv[0] to openlog(); ok djm@
201   - jmc@cvs.openbsd.org 2009/03/19 15:15:09
202      [ssh.1]
203      for "Ciphers", just point the reader to the keyword in ssh_config(5), just
204      as we do for "MACs": this stops us getting out of sync when the lists
205      change;
206      fixes documentation/6102, submitted by Peter J. Philipp
207      alternative fix proposed by djm
208      ok markus
209    - tobias@cvs.openbsd.org 2009/03/23 08:31:19
210      [ssh-agent.c]
211      Fixed a possible out-of-bounds memory access if the environment variable
212      SHELL is shorter than 3 characters.
213      with input by and ok dtucker
214    - tobias@cvs.openbsd.org 2009/03/23 19:38:04
215      [ssh-agent.c]
216      My previous commit didn't fix the problem at all, so stick at my first
217      version of the fix presented to dtucker.
218      Issue notified by Matthias Barkhoff (matthias dot barkhoff at gmx dot de).
219      ok dtucker
220    - sobrado@cvs.openbsd.org 2009/03/26 08:38:39
221      [sftp-server.8 sshd.8 ssh-agent.1]
222      fix a few typographical errors found by spell(1).
223      ok dtucker@, jmc@
224    - stevesk@cvs.openbsd.org 2009/04/13 19:07:44
225      [sshd_config.5]
226      fix possessive; ok djm@
227    - stevesk@cvs.openbsd.org 2009/04/14 16:33:42
228      [sftp-server.c]
229      remove unused option character from getopt() optstring; ok markus@
230    - jj@cvs.openbsd.org 2009/04/14 21:10:54
231      [servconf.c]
232      Fixed a few the-the misspellings in comments. Skipped a bunch in
233      binutils,gcc and so on. ok jmc@
234    - stevesk@cvs.openbsd.org 2009/04/17 19:23:06
235      [session.c]
236      use INTERNAL_SFTP_NAME for setproctitle() of in-process sftp-server;
237      ok djm@ markus@
238    - stevesk@cvs.openbsd.org 2009/04/17 19:40:17
239      [sshd_config.5]
240      clarify that even internal-sftp needs /dev/log for logging to work; ok
241      markus@
242    - jmc@cvs.openbsd.org 2009/04/18 18:39:10
243      [sshd_config.5]
244      tweak previous; ok stevesk
245    - stevesk@cvs.openbsd.org 2009/04/21 15:13:17
246      [sshd_config.5]
247      clarify we cd to user's home after chroot; ok markus@ on
248      earlier version; tweaks and ok jmc@
249    - andreas@cvs.openbsd.org 2009/05/25 06:48:01
250      [channels.c packet.c clientloop.c packet.h serverloop.c monitor_wrap.c
251      monitor.c]
252      Put the globals in packet.c into a struct and don't access it directly
253      from other files. No functional changes.
254      ok markus@ djm@
255    - andreas@cvs.openbsd.org 2009/05/27 06:31:25
256      [canohost.h canohost.c]
257      Add clear_cached_addr(), needed for upcoming changes allowing the peer
258      address to change.
259      ok markus@
260    - andreas@cvs.openbsd.org 2009/05/27 06:33:39
261      [clientloop.c]
262      Send SSH2_MSG_DISCONNECT when the client disconnects. From a larger
263      change from Martin Forssen, maf at appgate dot com.
264      ok markus@
265    - andreas@cvs.openbsd.org 2009/05/27 06:34:36
266      [kex.c kex.h]
267      Move the KEX_COOKIE_LEN define to kex.h
268      ok markus@
269    - andreas@cvs.openbsd.org 2009/05/27 06:36:07
270      [packet.h packet.c]
271      Add packet_put_int64() and packet_get_int64(), part of a larger change
272      from Martin Forssen.
273      ok markus@
274    - andreas@cvs.openbsd.org 2009/05/27 06:38:16
275      [sshconnect.h sshconnect.c]
276      Un-static ssh_exchange_identification(), part of a larger change from
277      Martin Forssen and needed for upcoming changes.
278      ok markus@
279    - andreas@cvs.openbsd.org 2009/05/28 16:50:16
280      [sshd.c packet.c serverloop.c monitor_wrap.c clientloop.c sshconnect.c
281      monitor.c Added roaming.h roaming_common.c roaming_dummy.c]
282      Keep track of number of bytes read and written. Needed for upcoming
283      changes. Most code from Martin Forssen, maf at appgate dot com.
284      ok markus@
285      Also, applied appropriate changes to Makefile.in
286    - andreas@cvs.openbsd.org 2009/06/12 20:43:22
287      [monitor.c packet.c]
288      Fix warnings found by chl@ and djm@ and change roaming_atomicio's
289      return type to match atomicio's
290      Diff from djm@, ok markus@
291    - andreas@cvs.openbsd.org 2009/06/12 20:58:32
292      [packet.c]
293      Move some more statics into session_state
294      ok markus@ djm@
295    - dtucker@cvs.openbsd.org 2009/06/21 07:37:15
296      [kexdhs.c kexgexs.c]
297      abort if key_sign fails, preventing possible null deref.  Based on report
298      from Paolo Ganci, ok markus@ djm@
299    - dtucker@cvs.openbsd.org 2009/06/21 09:04:03
300      [roaming.h roaming_common.c roaming_dummy.c]
301      Add  tags for the benefit of the sync scripts
302      Also: pull in the changes for 1.1->1.2 missed in the previous sync.
303  - (dtucker) [auth2-jpake.c auth2.c canohost.h session.c] Whitespace and
304    header-order changes to reduce diff vs OpenBSD.
305  - (dtucker) [servconf.c sshd.c] More whitespace sync.
306  - (dtucker) [roaming_common.c roaming_dummy.c] Wrap #include <inttypes.h> in
307    ifdef.
308
309 20090616
310  - (dtucker) [configure.ac defines.h] Bug #1607: handle the case where fsid_t
311    is a struct with a __val member.  Fixes build on, eg, Redhat 6.2.
312
313 20090504
314  - (dtucker) [sshlogin.c] Move the NO_SSH_LASTLOG #ifndef line to include
315    variable declarations.  Should prevent unused warnings anywhere it's set
316    (only Crays as far as I can tell) and be a no-op everywhere else.
317
318 20090318
319  - (tim) [configure.ac] Remove setting IP_TOS_IS_BROKEN for Cygwin. The problem
320    that setsockopt(IP_TOS) doesn't work on Cygwin has been fixed since 2005.
321    Based on patch from vinschen at redhat com.
322
323 20090308
324  - (dtucker) [auth-passwd.c auth1.c auth2-kbdint.c auth2-none.c auth2-passwd.c
325    auth2-pubkey.c session.c openbsd-compat/bsd-cygwin_util.{c,h}
326    openbsd-compat/daemon.c] Remove support for Windows 95/98/ME and very old
327    version of Cygwin.  Patch from vinschen at redhat com.
328
329 20090307
330  - (dtucker) [contrib/aix/buildbff.sh] Only try to rename ssh_prng_cmds if it
331    exists (it's not created if OpenSSL's PRNG is self-seeded, eg if the OS
332    has a /dev/random).
333  - (dtucker) [schnorr.c openbsd-compat/openssl-compat.{c,h}] Add
334    EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c
335    to use them.  Allows building with older OpenSSL versions.
336  - (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed.
337  - (dtucker) [configure.ac] Missing comma in type list.
338  - (dtucker) [configure.ac openbsd-compat/openssl-compat.{c,h}]
339    EVP_DigestUpdate does not exactly match the other OLD_EVP functions (eg
340    in openssl 0.9.6) so add an explicit test for it.
341
342 20090306
343  - (djm) OpenBSD CVS Sync
344    - djm@cvs.openbsd.org 2009/03/05 07:18:19
345      [auth2-jpake.c jpake.c jpake.h monitor_wrap.c monitor_wrap.h schnorr.c]
346      [sshconnect2.c]
347      refactor the (disabled) Schnorr proof code to make it a little more
348      generally useful
349    - djm@cvs.openbsd.org 2009/03/05 11:30:50
350      [uuencode.c]
351      document what these functions do so I don't ever have to recuse into
352      b64_pton/ntop to remember their return values
353
354 20090223
355  - (djm) OpenBSD CVS Sync
356    - djm@cvs.openbsd.org 2009/02/22 23:50:57
357      [ssh_config.5 sshd_config.5]
358      don't advertise experimental options
359    - djm@cvs.openbsd.org 2009/02/22 23:59:25
360      [sshd_config.5]
361      missing period
362    - djm@cvs.openbsd.org 2009/02/23 00:06:15
363      [version.h]
364      openssh-5.2
365  - (djm) [README] update for 5.2
366  - (djm) Release openssh-5.2p1
367
368 20090222
369  - (djm) OpenBSD CVS Sync
370    - tobias@cvs.openbsd.org 2009/02/21 19:32:04
371      [misc.c sftp-server-main.c ssh-keygen.c]
372      Added missing newlines in error messages.
373      ok dtucker
374
375 20090221
376  - (djm) OpenBSD CVS Sync
377    - djm@cvs.openbsd.org 2009/02/17 01:28:32
378      [ssh_config]
379      sync with revised default ciphers; pointed out by dkrause@
380    - djm@cvs.openbsd.org 2009/02/18 04:31:21
381      [schnorr.c]
382      signature should hash over the entire group, not just the generator
383      (this is still disabled code)
384  - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
385    [contrib/suse/openssh.spec] Prepare for 5.2p1
386
387 20090216
388  - (djm) [regress/conch-ciphers.sh regress/putty-ciphers.sh]
389    [regress/putty-kex.sh regress/putty-transfer.sh] Downgrade disabled
390    interop tests from FATAL error to a warning. Allows some interop
391    tests to proceed if others are missing necessary prerequisites.
392  - (djm) [configure.ac] support GNU/kFreeBSD and GNU/kOpensolaris
393    systems; patch from Aurelien Jarno via rmh AT aybabtu.com
394
395 20090214
396  - (djm) OpenBSD CVS Sync
397    - dtucker@cvs.openbsd.org 2009/02/02 11:15:14
398      [sftp.c]
399      Initialize a few variables to prevent spurious "may be used
400      uninitialized" warnings from newer gcc's.  ok djm@
401    - djm@cvs.openbsd.org 2009/02/12 03:00:56
402      [canohost.c canohost.h channels.c channels.h clientloop.c readconf.c]
403      [readconf.h serverloop.c ssh.c]
404      support remote port forwarding with a zero listen port (-R0:...) to
405      dyamically allocate a listen port at runtime (this is actually
406      specified in rfc4254); bz#1003 ok markus@
407    - djm@cvs.openbsd.org 2009/02/12 03:16:01
408      [serverloop.c]
409      tighten check for -R0:... forwarding: only allow dynamic allocation
410      if want_reply is set in the packet
411    - djm@cvs.openbsd.org 2009/02/12 03:26:22
412      [monitor.c]
413      some paranoia: check that the serialised key is really KEY_RSA before
414      diddling its internals
415    - djm@cvs.openbsd.org 2009/02/12 03:42:09
416      [ssh.1]
417      document -R0:... usage
418    - djm@cvs.openbsd.org 2009/02/12 03:44:25
419      [ssh.1]
420      consistency: Dq => Ql
421    - djm@cvs.openbsd.org 2009/02/12 03:46:17
422      [ssh_config.5]
423      document RemoteForward usage with 0 listen port
424    - jmc@cvs.openbsd.org 2009/02/12 07:34:20
425      [ssh_config.5]
426      kill trailing whitespace;
427    - markus@cvs.openbsd.org 2009/02/13 11:50:21
428      [packet.c]
429      check for enc !=NULL in packet_start_discard
430    - djm@cvs.openbsd.org 2009/02/14 06:35:49
431      [PROTOCOL]
432      mention that eow and no-more-sessions extensions are sent only to
433      OpenSSH peers
434
435 20090212
436  - (djm) [sshpty.c] bz#1419: OSX uses cloning ptys that automagically
437    set ownership and modes, so avoid explicitly setting them
438  - (djm) [configure.ac loginrec.c] bz#1421: fix lastlog support for OSX.
439    OSX provides a getlastlogxbyname function that automates the reading of
440    a lastlog file. Also, the pututxline function will update lastlog so
441    there is no need for loginrec.c to do it explicitly. Collapse some
442    overly verbose code while I'm in there.
443
444 20090201
445  - (dtucker) [defines.h sshconnect.c] INET6_ADDRSTRLEN is now needed in
446    channels.c too, so move the definition for non-IP6 platforms to defines.h
447    where it can be shared.
448
449 20090129
450  - (tim) [contrib/cygwin/ssh-host-config] Patch from Corinna Vinschen.
451    If the CYGWIN environment variable is empty, the installer script
452    should not install the service with an empty CYGWIN variable, but
453    rather without setting CYGWNI entirely.
454  - (tim) [contrib/cygwin/ssh-host-config] Whitespace cleanup. No code changes.
455
456 20090128
457  - (tim) [contrib/cygwin/ssh-host-config] Patch from Corinna Vinschen.
458    Changes to work on Cygwin 1.5.x as well as on the new Cygwin 1.7.x.
459    The information given for the setting of the CYGWIN environment variable
460    is wrong for both releases so I just removed it, together with the
461    unnecessary (Cygwin 1.5.x) or wrong (Cygwin 1.7.x) default setting.
462
463 20081228
464  - (djm) OpenBSD CVS Sync
465    - stevesk@cvs.openbsd.org 2008/12/09 03:20:42
466      [channels.c servconf.c]
467      channel_print_adm_permitted_opens() should deal with all the printing
468      for that config option.  suggested by markus@; ok markus@ djm@
469      dtucker@
470    - djm@cvs.openbsd.org 2008/12/09 04:32:22
471      [auth2-chall.c]
472      replace by-hand string building with xasprinf(); ok deraadt@
473    - sobrado@cvs.openbsd.org 2008/12/09 15:35:00
474      [sftp.1 sftp.c]
475      update for the synopses displayed by the 'help' command, there are a
476      few missing flags; add 'bye' to the output of 'help'; sorting and spacing.
477      jmc@ suggested replacing .Oo/.Oc with a single .Op macro.
478      ok jmc@
479    - stevesk@cvs.openbsd.org 2008/12/09 22:37:33
480      [clientloop.c]
481      fix typo in error message
482    - stevesk@cvs.openbsd.org 2008/12/10 03:55:20
483      [addrmatch.c]
484      o cannot be NULL here but use xfree() to be consistent; ok djm@
485    - stevesk@cvs.openbsd.org 2008/12/29 01:12:36
486      [ssh-keyscan.1]
487      fix example, default key type is rsa for 3+ years; from
488      frederic.perrin@resel.fr
489    - stevesk@cvs.openbsd.org 2008/12/29 02:23:26
490      [pathnames.h]
491      no need to escape single quotes in comments
492    - okan@cvs.openbsd.org 2008/12/30 00:46:56
493      [sshd_config.5]
494      add AllowAgentForwarding to available Match keywords list
495      ok djm
496    - djm@cvs.openbsd.org 2009/01/01 21:14:35
497      [channels.c]
498      call channel destroy callbacks on receipt of open failure messages.
499      fixes client hangs when connecting to a server that has MaxSessions=0
500      set spotted by imorgan AT nas.nasa.gov; ok markus@
501    - djm@cvs.openbsd.org 2009/01/01 21:17:36
502      [kexgexs.c]
503      fix hash calculation for KEXGEX: hash over the original client-supplied
504      values and not the sanity checked versions that we acutally use;
505      bz#1540 reported by john.smith AT arrows.demon.co.uk
506      ok markus@
507    - djm@cvs.openbsd.org 2009/01/14 01:38:06
508      [channels.c]
509      support SOCKS4A protocol, from dwmw2 AT infradead.org via bz#1482;
510      "looks ok" markus@
511    - stevesk@cvs.openbsd.org 2009/01/15 17:38:43
512      [readconf.c]
513      1) use obsolete instead of alias for consistency
514      2) oUserKnownHostsFile not obsolete but oGlobalKnownHostsFile2 is
515         so move the comment.
516      3) reorder so like options are together
517      ok djm@
518    - djm@cvs.openbsd.org 2009/01/22 09:46:01
519      [channels.c channels.h session.c]
520      make Channel->path an allocated string, saving a few bytes here and
521      there and fixing bz#1380 in the process; ok markus@
522    - djm@cvs.openbsd.org 2009/01/22 09:49:57
523      [channels.c]
524      oops! I committed the wrong version of the Channel->path diff,
525      it was missing some tweaks suggested by stevesk@
526    - djm@cvs.openbsd.org 2009/01/22 10:02:34
527      [clientloop.c misc.c readconf.c readconf.h servconf.c servconf.h]
528      [serverloop.c ssh-keyscan.c ssh.c sshd.c]
529      make a2port() return -1 when it encounters an invalid port number
530      rather than 0, which it will now treat as valid (needed for future work)
531      adjust current consumers of a2port() to check its return value is <= 0,
532      which in turn required some things to be converted from u_short => int
533      make use of int vs. u_short consistent in some other places too
534      feedback & ok markus@
535    - djm@cvs.openbsd.org 2009/01/22 10:09:16
536      [auth-options.c]
537      another chunk of a2port() diff that got away. wtfdjm??
538    - djm@cvs.openbsd.org 2009/01/23 07:58:11
539      [myproposal.h]
540      prefer CTR modes and revised arcfour (i.e w/ discard) modes to CBC
541      modes; ok markus@
542    - naddy@cvs.openbsd.org 2009/01/24 17:10:22
543      [ssh_config.5 sshd_config.5]
544      sync list of preferred ciphers; ok djm@
545    - markus@cvs.openbsd.org 2009/01/26 09:58:15
546      [cipher.c cipher.h packet.c]
547      Work around the CPNI-957037 Plaintext Recovery Attack by always
548      reading 256K of data on packet size or HMAC errors (in CBC mode only).
549      Help, feedback and ok djm@
550      Feedback from Martin Albrecht and Paterson Kenny
551
552 20090107
553  - (djm) [uidswap.c] bz#1412: Support >16 supplemental groups in OS X.
554    Patch based on one from vgiffin AT apple.com; ok dtucker@
555  - (djm) [channels.c] bz#1419: support "on demand" X11 forwarding via
556    launchd on OS X; patch from vgiffin AT apple.com, slightly tweaked;
557    ok dtucker@
558  - (djm) [contrib/ssh-copy-id.1 contrib/ssh-copy-id] bz#1492: Make
559    ssh-copy-id copy id_rsa.pub by default (instead of the legacy "identity"
560    key). Patch from cjwatson AT debian.org
561
562 20090107
563  - (tim) [configure.ac defines.h openbsd-compat/port-uw.c
564    openbsd-compat/xcrypt.c] Add SECUREWARE support to OpenServer 6 SVR5 ABI.
565    OK djm@ dtucker@
566  - (tim) [configure.ac] Move check_for_libcrypt_later=1 in *-*-sysv5*) section.
567    OpenServer 6 doesn't need libcrypt.
568
569 20081209
570  - (djm) OpenBSD CVS Sync
571    - djm@cvs.openbsd.org 2008/12/09 02:38:18
572      [clientloop.c]
573      The ~C escape handler does not work correctly for multiplexed sessions -
574      it opens a commandline on the master session, instead of on the slave
575      that requested it. Disable it on slave sessions until such time as it
576      is fixed; bz#1543 report from Adrian Bridgett via Colin Watson
577      ok markus@
578    - djm@cvs.openbsd.org 2008/12/09 02:39:59
579      [sftp.c]
580      Deal correctly with failures in remote stat() operation in sftp,
581      correcting fail-on-error behaviour in batchmode. bz#1541 report and
582      fix from anedvedicky AT gmail.com; ok markus@
583    - djm@cvs.openbsd.org 2008/12/09 02:58:16
584      [readconf.c]
585      don't leave junk (free'd) pointers around in Forward *fwd argument on
586      failure; avoids double-free in ~C -L handler when given an invalid
587      forwarding specification; bz#1539 report from adejong AT debian.org
588      via Colin Watson; ok markus@ dtucker@
589    - djm@cvs.openbsd.org 2008/12/09 03:02:37
590      [sftp.1 sftp.c]
591      correct sftp(1) and corresponding usage syntax;
592      bz#1518 patch from imorgan AT nas.nasa.gov; ok deraadt@ improved diff jmc@
593
594 20081208
595  - (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually
596    use some stack in main().
597    Report and suggested fix from vapier AT gentoo.org
598  - (djm) OpenBSD CVS Sync
599    - markus@cvs.openbsd.org 2008/12/02 19:01:07
600      [clientloop.c]
601      we have to use the recipient's channel number (RFC 4254) for
602      SSH2_MSG_CHANNEL_SUCCESS/SSH2_MSG_CHANNEL_FAILURE messages,
603      otherwise we trigger 'Non-public channel' error messages on sshd
604      systems with clientkeepalive enabled; noticed by sturm; ok djm;
605    - markus@cvs.openbsd.org 2008/12/02 19:08:59
606      [serverloop.c]
607      backout 1.149, since it's not necessary and openssh clients send
608      broken CHANNEL_FAILURE/SUCCESS messages since about 2004; ok djm@
609    - markus@cvs.openbsd.org 2008/12/02 19:09:38
610      [channels.c]
611      s/remote_id/id/ to be more consistent with other code; ok djm@
612
613 20081201
614  - (dtucker) [contrib/cygwin/{Makefile,ssh-host-config}]  Add new doc files
615    and tweak the is-sshd-running check in ssh-host-config.  Patch from
616    vinschen at redhat com.
617  - (dtucker) OpenBSD CVS Sync
618    - markus@cvs.openbsd.org 2008/11/21 15:47:38
619      [packet.c]
620      packet_disconnect() on padding error, too.  should reduce the success
621      probability for the CPNI-957037 Plaintext Recovery Attack to 2^-18
622      ok djm@
623    - dtucker@cvs.openbsd.org 2008/11/30 11:59:26
624      [monitor_fdpass.c]
625      Retry sendmsg/recvmsg on EAGAIN and EINTR; ok djm@
626
627 20081123
628  - (dtucker) [monitor_fdpass.c] Reduce diff vs OpenBSD by moving some
629     declarations, removing an unnecessary union member and adding whitespace.
630     cmsgbuf.tmp thing spotted by des at des no, ok djm some time ago.
631
632 20081118
633  - (tim) [addrmatch.c configure.ac] Some platforms do not have sin6_scope_id
634    member of sockaddr_in6. Also reported in Bug 1491 by David Leonard. OK and
635    feedback by djm@
636
637 20081111
638  - (dtucker) OpenBSD CVS Sync
639    - jmc@cvs.openbsd.org 2008/11/05 11:22:54
640      [servconf.c]
641      passord -> password;
642      fixes user/5975 from Rene Maroufi
643    - stevesk@cvs.openbsd.org 2008/11/07 00:42:12
644      [ssh-keygen.c]
645      spelling/typo in comment
646    - stevesk@cvs.openbsd.org 2008/11/07 18:50:18
647      [nchan.c]
648      add space to some log/debug messages for readability; ok djm@ markus@
649    - dtucker@cvs.openbsd.org 2008/11/07 23:34:48
650      [auth2-jpake.c]
651      Move JPAKE define to make life easier for portable.  ok djm@
652    - tobias@cvs.openbsd.org 2008/11/09 12:34:47
653      [session.c ssh.1]
654      typo fixed (overriden -> overridden)
655      ok espie, jmc
656    - stevesk@cvs.openbsd.org 2008/11/11 02:58:09
657      [servconf.c]
658      USE_AFS not referenced so remove #ifdef.  fixes sshd -T not printing
659      kerberosgetafstoken. ok dtucker@
660      (Id sync only, we still want the ifdef in portable)
661    - stevesk@cvs.openbsd.org 2008/11/11 03:55:11
662      [channels.c]
663      for sshd -T print 'permitopen any' vs. 'permitopen' for case of no
664      permitopen's; ok and input dtucker@
665    - djm@cvs.openbsd.org 2008/11/10 02:06:35
666      [regress/putty-ciphers.sh]
667      PuTTY supports AES CTR modes, so interop test against them too
668
669 20081105
670  - OpenBSD CVS Sync
671    - djm@cvs.openbsd.org 2008/11/03 08:59:41
672      [servconf.c]
673      include MaxSessions in sshd -T output; patch from imorgan AT nas.nasa.gov
674    - djm@cvs.openbsd.org 2008/11/04 07:58:09
675      [auth.c]
676      need unistd.h for close() prototype
677      (ID sync only)
678    - djm@cvs.openbsd.org 2008/11/04 08:22:13
679      [auth.h auth2.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h]
680      [readconf.c readconf.h servconf.c servconf.h ssh2.h ssh_config.5]
681      [sshconnect2.c sshd_config.5 jpake.c jpake.h schnorr.c auth2-jpake.c]
682      [Makefile.in]
683      Add support for an experimental zero-knowledge password authentication
684      method using the J-PAKE protocol described in F. Hao, P. Ryan,
685      "Password Authenticated Key Exchange by Juggling", 16th Workshop on
686      Security Protocols, Cambridge, April 2008.
687      
688      This method allows password-based authentication without exposing
689      the password to the server. Instead, the client and server exchange
690      cryptographic proofs to demonstrate of knowledge of the password while
691      revealing nothing useful to an attacker or compromised endpoint.
692      
693      This is experimental, work-in-progress code and is presently
694      compiled-time disabled (turn on -DJPAKE in Makefile.inc).
695      
696      "just commit it.  It isn't too intrusive." deraadt@
697    - stevesk@cvs.openbsd.org 2008/11/04 19:18:00
698      [readconf.c]
699      because parse_forward() is now used to parse all forward types (DLR),
700      and it malloc's space for host variables, we don't need to malloc
701      here.  fixes small memory leaks.
702      
703      previously dynamic forwards were not parsed in parse_forward() and
704      space was not malloc'd in that case.
705      
706      ok djm@
707    - stevesk@cvs.openbsd.org 2008/11/05 03:23:09
708      [clientloop.c ssh.1]
709      add dynamic forward escape command line; ok djm@
710
711 20081103
712  - OpenBSD CVS Sync
713    - sthen@cvs.openbsd.org 2008/07/24 23:55:30
714      [ssh-keygen.1]
715      Add "ssh-keygen -F -l" to synopsis (displays fingerprint from
716      known_hosts).  ok djm@
717    - grunk@cvs.openbsd.org 2008/07/25 06:56:35
718      [ssh_config]
719      Add VisualHostKey to example file, ok djm@
720    - grunk@cvs.openbsd.org 2008/07/25 07:05:16
721      [key.c]
722      In random art visualization, make sure to use the end marker only at the
723      end.  Initial diff by Dirk Loss, tweaks and ok djm@
724   - markus@cvs.openbsd.org 2008/07/31 14:48:28
725      [sshconnect2.c]
726      don't allocate space for empty banners; report t8m at centrum.cz;
727      ok deraadt
728    - krw@cvs.openbsd.org 2008/08/02 04:29:51
729      [ssh_config.5]
730      whitepsace -> whitespace. From Matthew Clarke via bugs@.
731    - djm@cvs.openbsd.org 2008/08/21 04:09:57
732      [session.c]
733      allow ForceCommand internal-sftp with arguments. based on patch from
734      michael.barabanov AT gmail.com; ok markus@
735    - djm@cvs.openbsd.org 2008/09/06 12:24:13
736      [kex.c]
737      OpenSSL 0.9.8h supplies a real EVP_sha256 so we do not need our
738      replacement anymore
739      (ID sync only for portable - we still need this)
740    - markus@cvs.openbsd.org 2008/09/11 14:22:37
741      [compat.c compat.h nchan.c ssh.c]
742      only send eow and no-more-sessions requests to openssh 5 and newer;
743      fixes interop problems with broken ssh v2 implementations; ok djm@
744    - millert@cvs.openbsd.org 2008/10/02 14:39:35
745      [session.c]
746      Convert an unchecked strdup to xstrdup.  OK deraadt@
747   - jmc@cvs.openbsd.org 2008/10/03 13:08:12
748      [sshd.8]
749      do not give an example of how to chmod files: we can presume the user
750      knows that. removes an ambiguity in the permission of authorized_keys;
751      ok deraadt
752    - deraadt@cvs.openbsd.org 2008/10/03 23:56:28
753      [sshconnect2.c]
754      Repair strnvis() buffersize of 4*n+1, with termination gauranteed by the
755      function.
756      spotted by des@freebsd, who commited an incorrect fix to the freebsd tree
757      and (as is fairly typical) did not report the problem to us.  But this fix
758      is correct.
759      ok djm
760    - djm@cvs.openbsd.org 2008/10/08 23:34:03
761      [ssh.1 ssh.c]
762      Add -y option to force logging via syslog rather than stderr.
763      Useful for daemonised ssh connection (ssh -f). Patch originally from
764      and ok'd by markus@
765    - djm@cvs.openbsd.org 2008/10/09 03:50:54
766      [servconf.c sshd_config.5]
767      support setting PermitEmptyPasswords in a Match block
768      requested in PR3891; ok dtucker@
769    - jmc@cvs.openbsd.org 2008/10/09 06:54:22
770      [ssh.c]
771      add -y to usage();
772    - stevesk@cvs.openbsd.org 2008/10/10 04:55:16
773      [scp.c]
774      spelling in comment; ok djm@
775    - stevesk@cvs.openbsd.org 2008/10/10 05:00:12
776      [key.c]
777      typo in error message; ok djm@
778    - stevesk@cvs.openbsd.org 2008/10/10 16:43:27
779      [ssh_config.5]
780      use 'Privileged ports can be forwarded only when logging in as root on
781      the remote machine.' for RemoteForward just like ssh.1 -R.
782      ok djm@ jmc@
783    - stevesk@cvs.openbsd.org 2008/10/14 18:11:33
784      [sshconnect.c]
785      use #define ROQUIET here; no binary change. ok dtucker@
786    - stevesk@cvs.openbsd.org 2008/10/17 18:36:24
787      [ssh_config.5]
788      correct and clarify VisualHostKey; ok jmc@
789    - stevesk@cvs.openbsd.org 2008/10/30 19:31:16
790      [clientloop.c sshd.c]
791      don't need to #include "monitor_fdpass.h"
792    - stevesk@cvs.openbsd.org 2008/10/31 15:05:34
793      [dispatch.c]
794      remove unused #define DISPATCH_MIN; ok markus@
795    - djm@cvs.openbsd.org 2008/11/01 04:50:08
796      [sshconnect2.c]
797      sprinkle ARGSUSED on dispatch handlers
798      nuke stale unusued prototype
799    - stevesk@cvs.openbsd.org 2008/11/01 06:43:33
800      [channels.c]
801      fix some typos in log messages; ok djm@
802    - sobrado@cvs.openbsd.org 2008/11/01 11:14:36
803      [ssh-keyscan.1 ssh-keyscan.c]
804      the ellipsis is not an optional argument; while here, improve spacing.
805    - stevesk@cvs.openbsd.org 2008/11/01 17:40:33
806      [clientloop.c readconf.c readconf.h ssh.c]
807      merge dynamic forward parsing into parse_forward();
808      'i think this is OK' djm@
809    - stevesk@cvs.openbsd.org 2008/11/02 00:16:16
810      [ttymodes.c]
811      protocol 2 tty modes support is now 7.5 years old so remove these
812      debug3()s; ok deraadt@
813    - stevesk@cvs.openbsd.org 2008/11/03 01:07:02
814      [readconf.c]
815      remove valueless comment
816    - stevesk@cvs.openbsd.org 2008/11/03 02:44:41
817      [readconf.c]
818      fix comment
819  - (djm) [contrib/caldera/ssh-host-keygen contrib/suse/rc.sshd]
820    Make example scripts generate keys with default sizes rather than fixed,
821    non-default 1024 bits; patch from imorgan AT nas.nasa.gov
822  - (djm) [contrib/sshd.pam.generic contrib/caldera/sshd.pam]
823    [contrib/redhat/sshd.pam] Move pam_nologin to account group from
824    incorrect auth group in example files;
825    patch from imorgan AT nas.nasa.gov
826
827 20080906
828  - (dtucker) [config.guess config.sub] Update to latest versions from
829    http://git.savannah.gnu.org/gitweb/ (2008-04-14 and 2008-06-16
830    respectively).
831
832 20080830
833  - (dtucker) [openbsd-compat/bsd-poll.c] correctly check for number of FDs
834    larger than FD_SETSIZE (OpenSSH only ever uses poll with one fd).  Patch
835    from Nicholas Marriott.
836
837 20080721
838  - (djm) OpenBSD CVS Sync
839    - djm@cvs.openbsd.org 2008/07/23 07:36:55
840      [servconf.c]
841      do not try to print options that have been compile-time disabled
842      in config test mode (sshd -T); report from nix-corp AT esperi.org.uk
843      ok dtucker@
844  - (djm) [servconf.c] Print UsePAM option in config test mode (when it
845    has been compiled in); report from nix-corp AT esperi.org.uk
846    ok dtucker@
847
848 20080721
849  - (djm) OpenBSD CVS Sync
850    - jmc@cvs.openbsd.org 2008/07/18 22:51:01
851      [sftp-server.8]
852      no need for .Pp before or after .Sh;
853    - djm@cvs.openbsd.org 2008/07/21 08:19:07
854      [version.h]
855      openssh-5.1
856  - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
857    [contrib/suse/openssh.spec] Update version number in README and RPM specs
858  - (djm) Release OpenSSH-5.1
859
860 20080717
861  - (djm) OpenBSD CVS Sync
862    - djm@cvs.openbsd.org 2008/07/17 08:48:00
863      [sshconnect2.c]
864      strnvis preauth banner; pointed out by mpf@ ok markus@
865    - djm@cvs.openbsd.org 2008/07/17 08:51:07
866      [auth2-hostbased.c]
867      strip trailing '.' from hostname when HostbasedUsesNameFromPacketOnly=yes
868      report and patch from res AT qoxp.net (bz#1200); ok markus@
869  - (dtucker) [openbsd-compat/bsd-cygwin_util.c]  Remove long-unneeded compat
870    code, replace with equivalent cygwin library call.  Patch from vinschen
871    at redhat.com, ok djm@.
872  - (djm) [sshconnect2.c] vis.h isn't available everywhere
873
874 20080716
875  - OpenBSD CVS Sync
876    - djm@cvs.openbsd.org 2008/07/15 02:23:14
877      [sftp.1]
878      number of pipelined requests is now 64;
879      prodded by Iain.Morgan AT nasa.gov
880    - djm@cvs.openbsd.org 2008/07/16 11:51:14
881      [clientloop.c]
882      rename variable first_gc -> last_gc (since it is actually the last
883      in the list).
884    - djm@cvs.openbsd.org 2008/07/16 11:52:19
885      [channels.c]
886      this loop index should be automatic, not static
887
888 20080714
889  - (djm) OpenBSD CVS Sync
890    - sthen@cvs.openbsd.org 2008/07/13 21:22:52
891      [ssh-keygen.c]
892      Change "ssh-keygen -F [host] -l" to not display random art unless
893      -v is also specified, making it consistent with the manual and other
894      uses of -l.
895      ok grunk@
896    - djm@cvs.openbsd.org 2008/07/13 22:13:07
897      [channels.c]
898      use struct sockaddr_storage instead of struct sockaddr for accept(2)
899      address argument. from visibilis AT yahoo.com in bz#1485; ok markus@
900    - djm@cvs.openbsd.org 2008/07/13 22:16:03
901      [sftp.c]
902      increase number of piplelined requests so they properly fill the
903      (recently increased) channel window. prompted by rapier AT psc.edu;
904      ok markus@
905    - djm@cvs.openbsd.org 2008/07/14 01:55:56
906      [sftp-server.8]
907      mention requirement for /dev/log inside chroot when using sftp-server
908      with ChrootDirectory
909  - (djm) [openbsd-compat/bindresvport.c] Rename variables s/sin/in/ to
910    avoid clash with sin(3) function; reported by
911    cristian.ionescu-idbohrn AT axis.com
912  - (djm) [openbsd-compat/rresvport.c] Add unistd.h for missing close()
913    prototype; reported by cristian.ionescu-idbohrn AT axis.com
914  - (djm) [umac.c] Rename variable s/buffer_ptr/bufp/ to avoid clash;
915    reported by cristian.ionescu-idbohrn AT axis.com
916  - (djm) [contrib/cygwin/Makefile contrib/cygwin/ssh-host-config]
917    [contrib/cygwin/ssh-user-config contrib/cygwin/sshd-inetd]
918    Revamped and simplified Cygwin ssh-host-config script that uses
919    unified csih configuration tool. Requires recent Cygwin.
920    Patch from vinschen AT redhat.com
921
922 20080712
923  - (djm) OpenBSD CVS Sync
924    - djm@cvs.openbsd.org 2008/07/12 04:52:50
925      [channels.c]
926      unbreak; move clearing of cctx struct to before first use
927      reported by dkrause@
928    - djm@cvs.openbsd.org 2008/07/12 05:33:41
929      [scp.1]
930      better description for -i flag:
931      s/RSA authentication/public key authentication/
932  - (djm) [openbsd-compat/fake-rfc2553.c openbsd-compat/fake-rfc2553.h]
933    return EAI_FAMILY when trying to lookup unsupported address family;
934    from vinschen AT redhat.com
935
936 20080711
937  - (djm) OpenBSD CVS Sync
938    - stevesk@cvs.openbsd.org 2008/07/07 00:31:41
939      [ttymodes.c]
940      we don't need arg after the debug3() was removed.  from lint.
941      ok djm@
942    - stevesk@cvs.openbsd.org 2008/07/07 23:32:51
943      [key.c]
944      /*NOTREACHED*/ for lint warning:
945        warning: function key_equal falls off bottom without returning value
946      ok djm@
947    - markus@cvs.openbsd.org 2008/07/10 18:05:58
948      [channels.c]
949      missing bzero; from mickey; ok djm@
950    - markus@cvs.openbsd.org 2008/07/10 18:08:11
951      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h sshd.c]
952      sync v1 and v2 traffic accounting; add it to sshd, too;
953      ok djm@, dtucker@
954
955 20080709
956  - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
957  - (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM
958    account check failure path. The vulnerable format buffer is supplied
959    from PAM and should not contain attacker-supplied data.
960  - (djm) [auth.c] Missing unistd.h for close()
961  - (djm) [configure.ac] Add -Wformat-security to CFLAGS for gcc 3.x and 4.x
962
963 20080705
964  - (djm) [auth.c] Fixed test for locked account on HP/UX with shadowed
965    passwords disabled. bz#1083 report & patch from senthilkumar_sen AT
966    hotpop.com, w/ dtucker@
967  - (djm) [atomicio.c configure.ac] Disable poll() fallback in atomiciov for
968    Tru64. readv doesn't seem to be a comparable object there.
969    bz#1386, patch from dtucker@ ok me
970  - (djm) [Makefile.in] Pass though pass to conch for interop tests
971  - (djm) [configure.ac] unbreak: remove extra closing brace
972  - (djm) OpenBSD CVS Sync
973    - djm@cvs.openbsd.org 2008/07/04 23:08:25
974      [packet.c]
975      handle EINTR in packet_write_poll()l ok dtucker@
976    - djm@cvs.openbsd.org 2008/07/04 23:30:16
977      [auth1.c auth2.c]
978      Make protocol 1 MaxAuthTries logic match protocol 2's.
979      Do not treat the first protocol 2 authentication attempt as
980      a failure IFF it is for method "none".
981      Makes MaxAuthTries' user-visible behaviour identical for
982      protocol 1 vs 2.
983      ok dtucker@
984    - djm@cvs.openbsd.org 2008/07/05 05:16:01
985      [PROTOCOL]
986      grammar
987
988 20080704
989  - (dtucker) OpenBSD CVS Sync
990    - djm@cvs.openbsd.org 2008/07/02 13:30:34
991      [auth2.c]
992      really really remove the freebie "none" auth try for protocol 2
993    - djm@cvs.openbsd.org 2008/07/02 13:47:39
994      [ssh.1 ssh.c]
995      When forking after authentication ("ssh -f") with ExitOnForwardFailure
996      enabled, delay the fork until after replies for any -R forwards have
997      been seen. Allows for robust detection of -R forward failure when
998      using -f (similar to bz#92); ok dtucker@
999    - otto@cvs.openbsd.org 2008/07/03 21:46:58
1000      [auth2-pubkey.c]
1001      avoid nasty double free; ok dtucker@ djm@
1002    - djm@cvs.openbsd.org 2008/07/04 03:44:59
1003      [servconf.c groupaccess.h groupaccess.c]
1004      support negation of groups in "Match group" block (bz#1315); ok dtucker@
1005    - dtucker@cvs.openbsd.org 2008/07/04 03:47:02
1006      [monitor.c]
1007      Make debug a little clearer.  ok djm@
1008    - djm@cvs.openbsd.org 2008/06/30 08:07:34
1009      [regress/key-options.sh]
1010      shell portability: use "=" instead of "==" in test(1) expressions,
1011      double-quote string with backslash escaped /
1012    - djm@cvs.openbsd.org 2008/06/30 10:31:11
1013      [regress/{putty-transfer,putty-kex,putty-ciphers}.sh]
1014      remove "set -e" left over from debugging
1015    - djm@cvs.openbsd.org 2008/06/30 10:43:03
1016      [regress/conch-ciphers.sh]
1017      explicitly disable conch options that could interfere with the test
1018  - (dtucker) [sftp-server.c] Bug #1447: fall back to racy rename if link
1019    returns EXDEV.  Patch from Mike Garrison, ok djm@
1020  - (djm) [atomicio.c channels.c clientloop.c defines.h includes.h]
1021    [packet.c scp.c serverloop.c sftp-client.c ssh-agent.c ssh-keyscan.c]
1022    [sshd.c] Explicitly handle EWOULDBLOCK wherever we handle EAGAIN, on
1023    some platforms (HP nonstop) it is a distinct errno;
1024    bz#1467 reported by sconeu AT yahoo.com; ok dtucker@
1025
1026 20080702
1027  - (dtucker) OpenBSD CVS Sync
1028     - djm@cvs.openbsd.org 2008/06/30 08:05:59
1029       [PROTOCOL.agent]
1030       typo: s/constraint_date/constraint_data/
1031    - djm@cvs.openbsd.org 2008/06/30 12:15:39
1032      [serverloop.c]
1033      only pass channel requests on session channels through to the session
1034      channel handler, avoiding spurious log messages; ok! markus@
1035    - djm@cvs.openbsd.org 2008/06/30 12:16:02
1036      [nchan.c]
1037      only send eow@openssh.com notifications for session channels; ok! markus@
1038    - djm@cvs.openbsd.org 2008/06/30 12:18:34
1039      [PROTOCOL]
1040      clarify that eow@openssh.com is only sent on session channels
1041    - dtucker@cvs.openbsd.org 2008/07/01 07:20:52
1042      [sshconnect.c]
1043      Check ExitOnForwardFailure if forwardings are disabled due to a failed
1044      host key check.  ok djm@
1045    - dtucker@cvs.openbsd.org 2008/07/01 07:24:22
1046      [sshconnect.c sshd.c]
1047      Send CR LF during protocol banner exchanges, but only for Protocol 2 only,
1048      in order to comply with RFC 4253.  bz #1443, ok djm@
1049    - stevesk@cvs.openbsd.org 2008/07/01 23:12:47
1050      [PROTOCOL.agent]
1051      fix some typos; ok djm@
1052    - djm@cvs.openbsd.org 2008/07/02 02:24:18
1053      [sshd_config sshd_config.5 sshd.8 servconf.c]
1054      increase default size of ssh protocol 1 ephemeral key from 768 to 1024
1055      bits; prodded by & ok dtucker@ ok deraadt@
1056    - dtucker@cvs.openbsd.org 2008/07/02 12:03:51
1057      [auth-rsa.c auth.c auth2-pubkey.c auth.h]
1058      Merge duplicate host key file checks, based in part on a patch from Rob
1059      Holland via bz #1348 .  Also checks for non-regular files during protocol
1060      1 RSA auth.  ok djm@
1061    - djm@cvs.openbsd.org 2008/07/02 12:36:39
1062      [auth2-none.c auth2.c]
1063      Make protocol 2 MaxAuthTries behaviour a little more sensible:
1064      Check whether client has exceeded MaxAuthTries before running
1065      an authentication method and skip it if they have, previously it
1066      would always allow one try (for "none" auth).
1067      Preincrement failure count before post-auth test - previously this
1068      checked and postincremented, also to allow one "none" try.
1069      Together, these two changes always count the "none" auth method
1070      which could be skipped by a malicious client (e.g. an SSH worm)
1071      to get an extra attempt at a real auth method. They also make
1072      MaxAuthTries=0 a useful way to block users entirely (esp. in a
1073      sshd_config Match block).
1074      Also, move sending of any preauth banner from "none" auth method
1075      to the first call to input_userauth_request(), so worms that skip
1076      the "none" method get to see it too.
1077
1078 20080630
1079  - (djm) OpenBSD CVS Sync
1080    - dtucker@cvs.openbsd.org 2008/06/10 23:13:43
1081      [regress/Makefile regress/key-options.sh]
1082      Add regress test for key options.  ok djm@
1083    - dtucker@cvs.openbsd.org 2008/06/11 23:11:40
1084      [regress/Makefile]
1085      Don't run cipher-speed test by default; mistakenly enabled by me
1086    - djm@cvs.openbsd.org 2008/06/28 13:57:25
1087      [regress/Makefile regress/test-exec.sh regress/conch-ciphers.sh]
1088      very basic regress test against Twisted Conch in "make interop"
1089      target (conch is available in ports/devel/py-twisted/conch);
1090      ok markus@
1091  - (djm) [regress/Makefile] search for conch by path, like we do putty
1092
1093 20080629
1094  - (djm) OpenBSD CVS Sync
1095    - martynas@cvs.openbsd.org 2008/06/21 07:46:46
1096      [sftp.c]
1097      use optopt to get invalid flag, instead of return value of getopt,
1098      which is always '?';  ok djm@
1099    - otto@cvs.openbsd.org 2008/06/25 11:13:43
1100      [key.c]
1101      add key length to visual fingerprint; zap magical constants;
1102      ok grunk@ djm@
1103    - djm@cvs.openbsd.org 2008/06/26 06:10:09
1104      [sftp-client.c sftp-server.c]
1105      allow the sftp chmod(2)-equivalent operation to set set[ug]id/sticky
1106      bits. Note that this only affects explicit setting of modes (e.g. via
1107      sftp(1)'s chmod command) and not file transfers. (bz#1310)
1108      ok deraadt@ at c2k8
1109    - djm@cvs.openbsd.org 2008/06/26 09:19:40
1110      [dh.c dh.h moduli.c]
1111      when loading moduli from /etc/moduli in sshd(8), check that they
1112      are of the expected "safe prime" structure and have had
1113      appropriate primality tests performed;
1114      feedback and ok dtucker@
1115    - grunk@cvs.openbsd.org 2008/06/26 11:46:31
1116      [readconf.c readconf.h ssh.1 ssh_config.5 sshconnect.c]
1117      Move SSH Fingerprint Visualization away from sharing the config option
1118      CheckHostIP to an own config option named VisualHostKey.
1119      While there, fix the behaviour that ssh would draw a random art picture
1120      on every newly seen host even when the option was not enabled.
1121      prodded by deraadt@, discussions,
1122      help and ok markus@ djm@ dtucker@
1123    - jmc@cvs.openbsd.org 2008/06/26 21:11:46
1124      [ssh.1]
1125      add VisualHostKey to the list of options listed in -o;
1126    - djm@cvs.openbsd.org 2008/06/28 07:25:07
1127      [PROTOCOL]
1128      spelling fixes
1129    - djm@cvs.openbsd.org 2008/06/28 13:58:23
1130      [ssh-agent.c]
1131      refuse to add a key that has unknown constraints specified;
1132      ok markus
1133    - djm@cvs.openbsd.org 2008/06/28 14:05:15
1134      [ssh-agent.c]
1135      reset global compat flag after processing a protocol 2 signature
1136      request with the legacy DSA encoding flag set; ok markus
1137    - djm@cvs.openbsd.org 2008/06/28 14:08:30
1138      [PROTOCOL PROTOCOL.agent]
1139      document the protocol used by ssh-agent; "looks ok" markus@
1140
1141 20080628
1142  - (djm) [RFC.nroff contrib/cygwin/Makefile contrib/suse/openssh.spec]
1143    RFC.nroff lacks a license, remove it (it is long gone in OpenBSD).
1144
1145 20080626
1146  - (djm) [Makefile.in moduli.5] Include moduli(5) manpage from OpenBSD.
1147    (bz#1372)
1148  - (djm) [ contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1149    [contrib/suse/openssh.spec] Include moduli.5 in RPM spec files.
1150
1151 20080616
1152  - (dtucker) OpenBSD CVS Sync
1153    - dtucker@cvs.openbsd.org 2008/06/16 13:22:53
1154      [session.c channels.c]
1155      Rename the isatty argument to is_tty so we don't shadow
1156      isatty(3).  ok markus@
1157  - (dtucker) [channels.c] isatty -> is_tty here too.
1158
1159 20080615
1160  - (dtucker) [configure.ac] Enable -fno-builtin-memset when using gcc.
1161  - OpenBSD CVS Sync
1162    - dtucker@cvs.openbsd.org 2008/06/14 15:49:48
1163      [sshd.c]
1164      wrap long line at 80 chars
1165    - dtucker@cvs.openbsd.org 2008/06/14 17:07:11
1166      [sshd.c]
1167      ensure default umask disallows at least group and world write; ok djm@
1168    - djm@cvs.openbsd.org 2008/06/14 18:33:43
1169      [session.c]
1170      suppress the warning message from chdir(homedir) failures
1171      when chrooted (bz#1461); ok dtucker
1172    - dtucker@cvs.openbsd.org 2008/06/14 19:42:10
1173      [scp.1]
1174      Mention that scp follows symlinks during -r.  bz #1466,
1175      from nectar at apple
1176    - dtucker@cvs.openbsd.org 2008/06/15 16:55:38
1177      [sshd_config.5]
1178      MaxSessions is allowed in a Match block too
1179    - dtucker@cvs.openbsd.org 2008/06/15 16:58:40
1180      [servconf.c sshd_config.5]
1181      Allow MaxAuthTries within a Match block.  ok djm@
1182    - djm@cvs.openbsd.org 2008/06/15 20:06:26
1183      [channels.c channels.h session.c]
1184      don't call isatty() on a pty master, instead pass a flag down to
1185      channel_set_fds() indicating that te fds refer to a tty. Fixes a
1186      hang on exit on Solaris (bz#1463) in portable but is actually
1187      a generic bug; ok dtucker deraadt markus
1188
1189 20080614
1190  - (djm) [openbsd-compat/sigact.c] Avoid NULL derefs in ancient sigaction
1191    replacement code; patch from ighighi AT gmail.com in bz#1240;
1192    ok dtucker
1193
1194 20080613
1195  - (dtucker) OpenBSD CVS Sync
1196    - deraadt@cvs.openbsd.org 2008/06/13 09:44:36
1197      [packet.c]
1198      compile on older gcc; no decl after code
1199    - dtucker@cvs.openbsd.org 2008/06/13 13:56:59
1200      [monitor.c]
1201      Clear key options in the monitor on failed authentication, prevents
1202      applying additional restrictions to non-pubkey authentications in
1203      the case where pubkey fails but another method subsequently succeeds.
1204      bz #1472, found by Colin Watson, ok markus@ djm@
1205    - dtucker@cvs.openbsd.org 2008/06/13 14:18:51
1206      [auth2-pubkey.c auth-rhosts.c]
1207      Include unistd.h for close(), prevents warnings in -portable
1208    - dtucker@cvs.openbsd.org 2008/06/13 17:21:20
1209      [mux.c]
1210      Friendlier error messages for mux fallback.  ok djm@
1211    - dtucker@cvs.openbsd.org 2008/06/13 18:55:22
1212      [scp.c]
1213      Prevent -Wsign-compare warnings on LP64 systems.  bz #1192, ok deraadt@
1214    - grunk@cvs.openbsd.org 2008/06/13 20:13:26
1215      [ssh.1]
1216      Explain the use of SSH fpr visualization using random art, and cite the
1217      original scientific paper inspiring that technique.
1218      Much help with English and nroff by jmc@, thanks.
1219  - (dtucker) [configure.ac] Bug #1276: avoid linking against libgssapi, which
1220    despite its name doesn't seem to implement all of GSSAPI.  Patch from
1221    Jan Engelhardt, sanity checked by Simon Wilkinson.
1222
1223 20080612
1224  - (dtucker) OpenBSD CVS Sync
1225    - jmc@cvs.openbsd.org 2008/06/11 07:30:37
1226      [sshd.8]
1227      kill trailing whitespace;
1228    - grunk@cvs.openbsd.org 2008/06/11 21:01:35
1229      [ssh_config.5 key.h readconf.c readconf.h ssh-keygen.1 ssh-keygen.c key.c
1230       sshconnect.c]
1231      Introduce SSH Fingerprint ASCII Visualization, a technique inspired by the
1232      graphical hash visualization schemes known as "random art", and by
1233      Dan Kaminsky's musings on the subject during a BlackOp talk at the
1234      23C3 in Berlin.
1235      Scientific publication (original paper):
1236      "Hash Visualization: a New Technique to improve Real-World Security",
1237      Perrig A. and Song D., 1999, International Workshop on Cryptographic
1238      Techniques and E-Commerce (CrypTEC '99)
1239      http://sparrow.ece.cmu.edu/~adrian/projects/validation/validation.pdf
1240      The algorithm used here is a worm crawling over a discrete plane,
1241      leaving a trace (augmenting the field) everywhere it goes.
1242      Movement is taken from dgst_raw 2bit-wise.  Bumping into walls
1243      makes the respective movement vector be ignored for this turn,
1244      thus switching to the other color of the chessboard.
1245      Graphs are not unambiguous for now, because circles in graphs can be
1246      walked in either direction.
1247      discussions with several people,
1248      help, corrections and ok markus@ djm@
1249    - grunk@cvs.openbsd.org 2008/06/11 21:38:25
1250      [ssh-keygen.c]
1251      ssh-keygen -lv -f /etc/ssh/ssh_host_rsa_key.pub
1252      would not display you the random art as intended, spotted by canacar@
1253    - grunk@cvs.openbsd.org 2008/06/11 22:20:46
1254      [ssh-keygen.c ssh-keygen.1]
1255      ssh-keygen would write fingerprints to STDOUT, and random art to STDERR,
1256      that is not how it was envisioned.
1257      Also correct manpage saying that -v is needed along with -l for it to work.
1258      spotted by naddy@
1259    - otto@cvs.openbsd.org 2008/06/11 23:02:22
1260      [key.c]
1261      simpler way of computing the augmentations; ok grunk@
1262    - grunk@cvs.openbsd.org 2008/06/11 23:03:56
1263      [ssh_config.5]
1264      CheckHostIP set to ``fingerprint'' will display both hex and random art
1265      spotted by naddy@
1266    - grunk@cvs.openbsd.org 2008/06/11 23:51:57
1267      [key.c]
1268      #define statements that are not atoms need braces around them, else they
1269      will cause trouble in some cases.
1270      Also do a computation of -1 once, and not in a loop several times.
1271      spotted by otto@
1272    - dtucker@cvs.openbsd.org 2008/06/12 00:03:49
1273      [dns.c canohost.c sshconnect.c]
1274      Do not pass "0" strings as ports to getaddrinfo because the lookups
1275      can slow things down and we never use the service info anyway. bz
1276      #859, patch from YOSHIFUJI Hideaki and John Devitofranceschi.  ok
1277      deraadt@ djm@
1278      djm belives that the reason for the "0" strings is to ensure that
1279      it's not possible to call getaddrinfo with both host and port being
1280      NULL.  In the case of canohost.c host is a local array.  In the
1281      case of sshconnect.c, it's checked for null immediately before use.
1282      In dns.c it ultimately comes from ssh.c:main() and is guaranteed to
1283      be non-null but it's not obvious, so I added a warning message in
1284      case it is ever passed a null.
1285    - grunk@cvs.openbsd.org 2008/06/12 00:13:55
1286      [sshconnect.c]
1287      Make ssh print the random art also when ssh'ing to a host using IP only.
1288      spotted by naddy@, ok and help djm@ dtucker@
1289    - otto@cvs.openbsd.org 2008/06/12 00:13:13
1290      [key.c]
1291      use an odd number of rows and columns and a separate start marker, looks
1292      better; ok grunk@
1293    - djm@cvs.openbsd.org 2008/06/12 03:40:52
1294      [clientloop.h mux.c channels.c clientloop.c channels.h]
1295      Enable ~ escapes for multiplex slave sessions; give each channel
1296      its own escape state and hook the escape filters up to muxed
1297      channels. bz #1331
1298      Mux slaves do not currently support the ~^Z and ~& escapes.
1299      NB. this change cranks the mux protocol version, so a new ssh
1300      mux client will not be able to connect to a running old ssh
1301      mux master.
1302      ok dtucker@
1303    - djm@cvs.openbsd.org 2008/06/12 04:06:00
1304      [clientloop.h ssh.c clientloop.c]
1305      maintain an ordered queue of outstanding global requests that we
1306      expect replies to, similar to the per-channel confirmation queue.
1307      Use this queue to verify success or failure for remote forward
1308      establishment in a race free way.
1309      ok dtucker@
1310    - djm@cvs.openbsd.org 2008/06/12 04:17:47
1311      [clientloop.c]
1312      thall shalt not code past the eightieth column
1313    - djm@cvs.openbsd.org 2008/06/12 04:24:06
1314      [ssh.c]
1315      thal shalt not code past the eightieth column
1316    - djm@cvs.openbsd.org 2008/06/12 05:15:41
1317      [PROTOCOL]
1318      document tun@openssh.com forwarding method
1319    - djm@cvs.openbsd.org 2008/06/12 05:32:30
1320      [mux.c]
1321      some more TODO for me
1322    - grunk@cvs.openbsd.org 2008/06/12 05:42:46
1323      [key.c]
1324      supply the key type (rsa1, rsa, dsa) as a caption in the frame of the
1325      random art.  while there, stress the fact that the field base should at
1326      least be 8 characters for the pictures to make sense.
1327      comment and ok djm@
1328    - grunk@cvs.openbsd.org 2008/06/12 06:32:59
1329      [key.c]
1330      We already mark the start of the worm, now also mark the end of the worm
1331      in our random art drawings.
1332      ok djm@
1333    - djm@cvs.openbsd.org 2008/06/12 15:19:17
1334      [clientloop.h channels.h clientloop.c channels.c mux.c]
1335      The multiplexing escape char handler commit last night introduced a
1336      small memory leak per session; plug it.
1337    - dtucker@cvs.openbsd.org 2008/06/12 16:35:31
1338      [ssh_config.5 ssh.c]
1339      keyword expansion for localcommand.  ok djm@
1340    - jmc@cvs.openbsd.org 2008/06/12 19:10:09
1341      [ssh_config.5 ssh-keygen.1]
1342      tweak the ascii art text; ok grunk
1343    - dtucker@cvs.openbsd.org 2008/06/12 20:38:28
1344      [sshd.c sshconnect.c packet.h misc.c misc.h packet.c]
1345      Make keepalive timeouts apply while waiting for a packet, particularly
1346      during key renegotiation (bz #1363).  With djm and Matt Day, ok djm@
1347    - djm@cvs.openbsd.org 2008/06/12 20:47:04
1348      [sftp-client.c]
1349      print extension revisions for extensions that we understand
1350    - djm@cvs.openbsd.org 2008/06/12 21:06:25
1351      [clientloop.c]
1352      I was coalescing expected global request confirmation replies at
1353      the wrong end of the queue - fix; prompted by markus@
1354    - grunk@cvs.openbsd.org 2008/06/12 21:14:46
1355      [ssh-keygen.c]
1356      make ssh-keygen -lf show the key type just as ssh-add -l would do it
1357      ok djm@ markus@
1358    - grunk@cvs.openbsd.org 2008/06/12 22:03:36
1359      [key.c]
1360      add my copyright, ok djm@
1361    - ian@cvs.openbsd.org 2008/06/12 23:24:58
1362      [sshconnect.c]
1363      tweak wording in message, ok deraadt@ jmc@
1364    - dtucker@cvs.openbsd.org 2008/06/13 00:12:02
1365      [sftp.h log.h]
1366      replace __dead with __attribute__((noreturn)), makes things
1367      a little easier to port.  Also, add it to sigdie().  ok djm@
1368    - djm@cvs.openbsd.org 2008/06/13 00:16:49
1369      [mux.c]
1370      fall back to creating a new TCP connection on most multiplexing errors
1371      (socket connect fail, invalid version, refused permittion, corrupted
1372      messages, etc.); bz #1329 ok dtucker@
1373    - dtucker@cvs.openbsd.org 2008/06/13 00:47:53
1374      [mux.c]
1375      upcast size_t to u_long to match format arg; ok djm@
1376    - dtucker@cvs.openbsd.org 2008/06/13 00:51:47
1377      [mac.c]
1378      upcast another size_t to u_long to match format
1379    - dtucker@cvs.openbsd.org 2008/06/13 01:38:23
1380      [misc.c]
1381      upcast uid to long with matching %ld, prevents warnings in portable
1382    - djm@cvs.openbsd.org 2008/06/13 04:40:22
1383      [auth2-pubkey.c auth-rhosts.c]
1384      refuse to read ~/.shosts or ~/.ssh/authorized_keys that are not
1385      regular files; report from Solar Designer via Colin Watson in bz#1471
1386      ok dtucker@ deraadt
1387   - (dtucker) [clientloop.c serverloop.c]  channel_register_filter now
1388     takes 2 more args.  with djm@
1389   - (dtucker) [defines.h] Bug #1112: __dead is, well dead. Based on a patch
1390     from Todd Vierling.
1391   - (dtucker) [auth-sia.c] Bug #1241: support password expiry on Tru64 SIA
1392     systems.  Patch from R. Scott Bailey.
1393   - (dtucker) [umac.c] STORE_UINT32_REVERSED and endian_convert are never used
1394     on big endian machines, so ifdef them for little-endian only to prevent
1395     unused function warnings on big-endians.
1396   - (dtucker) [openbsd-compat/setenv.c] Make offsets size_t to prevent
1397     compiler warnings on some platforms.  Based on a discussion with otto@
1398
1399 20080611
1400  - (djm) [channels.c configure.ac]
1401    Do not set SO_REUSEADDR on wildcard X11 listeners (X11UseLocalhost=no)
1402    bz#1464; ok dtucker 
1403
1404 20080610
1405  - (dtucker) OpenBSD CVS Sync
1406    - djm@cvs.openbsd.org 2008/06/10 03:57:27
1407      [servconf.c match.h sshd_config.5]
1408      support CIDR address matching in sshd_config "Match address" blocks, with
1409      full support for negation and fall-back to classic wildcard matching.
1410      For example:
1411      Match address 192.0.2.0/24,3ffe:ffff::/32,!10.*
1412          PasswordAuthentication yes
1413      addrmatch.c code mostly lifted from flowd's addr.c
1414      feedback and ok dtucker@
1415    - djm@cvs.openbsd.org 2008/06/10 04:17:46
1416      [sshd_config.5]
1417      better reference for pattern-list
1418    - dtucker@cvs.openbsd.org 2008/06/10 04:50:25
1419      [sshd.c channels.h channels.c log.c servconf.c log.h servconf.h sshd.8]
1420      Add extended test mode (-T) and connection parameters for test mode (-C).
1421      -T causes sshd to write its effective configuration to stdout and exit.
1422      -C causes any relevant Match rules to be applied before output.  The
1423      combination allows tesing of the parser and config files.  ok deraadt djm
1424    - jmc@cvs.openbsd.org 2008/06/10 07:12:00
1425      [sshd_config.5]
1426      tweak previous;
1427    - jmc@cvs.openbsd.org 2008/06/10 08:17:40
1428      [sshd.8 sshd.c]
1429      - update usage()
1430      - fix SYNOPSIS, and sort options
1431      - some minor additional fixes
1432    - dtucker@cvs.openbsd.org 2008/06/09 18:06:32
1433      [regress/test-exec.sh]
1434      Don't generate putty keys if we're not going to use them.  ok djm
1435    - dtucker@cvs.openbsd.org 2008/06/10 05:23:32
1436      [regress/addrmatch.sh regress/Makefile]
1437      Regress test for Match CIDR rules.  ok djm@
1438    - dtucker@cvs.openbsd.org 2008/06/10 15:21:41
1439      [test-exec.sh]
1440      Use a more portable construct for checking if we're running a putty test
1441    - dtucker@cvs.openbsd.org 2008/06/10 15:28:49
1442      [test-exec.sh]
1443      Add quotes
1444    - dtucker@cvs.openbsd.org 2008/06/10 18:21:24
1445      [ssh_config.5]
1446      clarify that Host patterns are space-separated.  ok deraadt
1447    - djm@cvs.openbsd.org 2008/06/10 22:15:23
1448      [PROTOCOL ssh.c serverloop.c]
1449      Add a no-more-sessions@openssh.com global request extension that the
1450      client sends when it knows that it will never request another session
1451      (i.e. when session multiplexing is disabled). This allows a server to
1452      disallow further session requests and terminate the session.
1453      Why would a non-multiplexing client ever issue additional session
1454      requests? It could have been attacked with something like SSH'jack:
1455      http://www.storm.net.nz/projects/7
1456      feedback & ok markus
1457    - djm@cvs.openbsd.org 2008/06/10 23:06:19
1458      [auth-options.c match.c servconf.c addrmatch.c sshd.8]
1459      support CIDR address matching in .ssh/authorized_keys from="..." stanzas
1460      ok and extensive testing dtucker@
1461    - dtucker@cvs.openbsd.org 2008/06/10 23:21:34
1462      [bufaux.c]
1463      Use '\0' for a nul byte rather than unadorned 0.  ok djm@
1464    - dtucker@cvs.openbsd.org 2008/06/10 23:13:43
1465      [Makefile regress/key-options.sh]
1466      Add regress test for key options.  ok djm@
1467  - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6
1468    since the new CIDR code in addmatch.c references it.
1469  - (dtucker) [Makefile.in configure.ac regress/addrmatch.sh] Skip IPv6
1470    specific tests on platforms that don't do IPv6.
1471  - (dtucker) [Makefile.in] Define TEST_SSH_IPV6 in make's arguments as well
1472    as environment.
1473  - (dtucker) [Makefile.in] Move addrmatch.o to libssh.a where it's needed now.
1474
1475 20080609
1476  - (dtucker) OpenBSD CVS Sync
1477    - dtucker@cvs.openbsd.org 2008/06/08 17:04:41
1478      [sftp-server.c]
1479      Add case for ENOSYS in errno_to_portable; ok deraadt
1480    - dtucker@cvs.openbsd.org 2008/06/08 20:15:29
1481      [sftp.c sftp-client.c sftp-client.h]
1482      Have the sftp client store the statvfs replies in wire format,
1483      which prevents problems when the server's native sizes exceed the
1484      client's.
1485      Also extends the sizes of the remaining 32bit wire format to 64bit,
1486      they're specified as unsigned long in the standard.
1487    - dtucker@cvs.openbsd.org 2008/06/09 13:02:39
1488      [sftp-server.c]
1489      Extend 32bit -> 64bit values for statvfs extension missed in previous
1490      commit.
1491    - dtucker@cvs.openbsd.org 2008/06/09 13:38:46
1492      [PROTOCOL]
1493      Use a $OpenBSD tag so our scripts will sync changes.
1494
1495 20080608
1496  - (dtucker) [configure.ac defines.h sftp-client.c sftp-server.c sftp.c
1497    openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h
1498    openbsd-compat/bsd-statvfs.{c,h}] Add a null implementation of statvfs and
1499    fstatvfs and remove #defines around statvfs code.  ok djm@
1500  - (dtucker) [configure.ac defines.h sftp-client.c M sftp-server.c] Add a
1501    macro to convert fsid to unsigned long for platforms where fsid is a
1502    2-member array.
1503
1504 20080607
1505  - (dtucker) [mux.c] Include paths.h inside ifdef HAVE_PATHS_H.
1506  - (dtucker) [configure.ac defines.h sftp-client.c sftp-server.c sftp.c]
1507    Do not enable statvfs extensions on platforms that do not have statvfs.
1508  - (dtucker) OpenBSD CVS Sync
1509    - djm@cvs.openbsd.org 2008/05/19 06:14:02
1510      [packet.c] unbreak protocol keepalive timeouts bz#1465; ok dtucker@
1511    - djm@cvs.openbsd.org 2008/05/19 15:45:07
1512      [sshtty.c ttymodes.c sshpty.h]
1513      Fix sending tty modes when stdin is not a tty (bz#1199). Previously
1514      we would send the modes corresponding to a zeroed struct termios,
1515      whereas we should have been sending an empty list of modes.
1516      Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
1517    - djm@cvs.openbsd.org 2008/05/19 15:46:31
1518      [ssh-keygen.c]
1519      support -l (print fingerprint) in combination with -F (find host) to
1520      search for a host in ~/.ssh/known_hosts and display its fingerprint;
1521      ok markus@
1522    - djm@cvs.openbsd.org 2008/05/19 20:53:52
1523      [clientloop.c]
1524      unbreak tree by committing this bit that I missed from:
1525      Fix sending tty modes when stdin is not a tty (bz#1199). Previously
1526      we would send the modes corresponding to a zeroed struct termios,
1527      whereas we should have been sending an empty list of modes.
1528      Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@ 
1529
1530 20080604
1531  - (djm) [openbsd-compat/bsd-arc4random.c] Fix math bug that caused bias
1532    in arc4random_uniform with upper_bound in (2^30,2*31). Note that 
1533    OpenSSH did not make requests with upper bounds in this range.
1534
1535 20080519
1536  - (djm) [configure.ac mux.c sftp.c openbsd-compat/Makefile.in]
1537    [openbsd-compat/fmt_scaled.c openbsd-compat/openbsd-compat.h]
1538    Fix compilation on Linux, including pulling in fmt_scaled(3)
1539    implementation from OpenBSD's libutil.
1540
1541 20080518
1542  - (djm) OpenBSD CVS Sync
1543    - djm@cvs.openbsd.org 2008/04/04 05:14:38
1544      [sshd_config.5]
1545      ChrootDirectory is supported in Match blocks (in fact, it is most useful
1546      there). Spotted by Minstrel AT minstrel.org.uk
1547    - djm@cvs.openbsd.org 2008/04/04 06:44:26
1548      [sshd_config.5]
1549      oops, some unrelated stuff crept into that commit - backout.
1550      spotted by jmc@
1551    - djm@cvs.openbsd.org 2008/04/05 02:46:02
1552      [sshd_config.5]
1553      HostbasedAuthentication is supported under Match too
1554  - (djm) [openbsd-compat/bsd-arc4random.c openbsd-compat/openbsd-compat.c]
1555      [configure.ac] Implement arc4random_buf(), import implementation of
1556      arc4random_uniform() from OpenBSD
1557  - (djm) [openbsd-compat/bsd-arc4random.c] Warning fixes
1558  - (djm) [openbsd-compat/port-tun.c] needs sys/queue.h
1559  - (djm) OpenBSD CVS Sync
1560    - djm@cvs.openbsd.org 2008/04/13 00:22:17
1561      [dh.c sshd.c]
1562      Use arc4random_buf() when requesting more than a single word of output
1563      Use arc4random_uniform() when the desired random number upper bound
1564      is not a power of two
1565      ok deraadt@ millert@
1566    - djm@cvs.openbsd.org 2008/04/18 12:32:11
1567      [sftp-client.c sftp-client.h sftp-server.c sftp.1 sftp.c sftp.h]
1568      introduce sftp extension methods statvfs@openssh.com and
1569      fstatvfs@openssh.com that implement statvfs(2)-like operations,
1570      based on a patch from miklos AT szeredi.hu (bz#1399)
1571      also add a "df" command to the sftp client that uses the
1572      statvfs@openssh.com to produce a df(1)-like display of filesystem
1573      space and inode utilisation
1574      ok markus@
1575    - jmc@cvs.openbsd.org 2008/04/18 17:15:47
1576      [sftp.1]
1577      macro fixage;
1578    - djm@cvs.openbsd.org 2008/04/18 22:01:33
1579      [session.c]
1580      remove unneccessary parentheses
1581    - otto@cvs.openbsd.org 2008/04/29 11:20:31
1582      [monitor_mm.h]
1583      garbage collect two unused fields in struct mm_master; ok markus@
1584    - djm@cvs.openbsd.org 2008/04/30 10:14:03
1585      [ssh-keyscan.1 ssh-keyscan.c]
1586      default to rsa (protocol 2) keys, instead of rsa1 keys; spotted by
1587      larsnooden AT openoffice.org
1588    - pyr@cvs.openbsd.org 2008/05/07 05:49:37
1589      [servconf.c servconf.h session.c sshd_config.5]
1590      Enable the AllowAgentForwarding option in sshd_config (global and match
1591      context), to specify if agents should be permitted on the server.
1592      As the man page states:
1593      ``Note that disabling Agent forwarding does not improve security
1594      unless users are also denied shell access, as they can always install
1595      their own forwarders.''
1596      ok djm@, ok and a mild frown markus@
1597    - pyr@cvs.openbsd.org 2008/05/07 06:43:35
1598      [sshd_config]
1599      push the sshd_config bits in, spotted by ajacoutot@
1600    - jmc@cvs.openbsd.org 2008/05/07 08:00:14
1601      [sshd_config.5]
1602      sort;
1603    - markus@cvs.openbsd.org 2008/05/08 06:59:01
1604      [bufaux.c buffer.h channels.c packet.c packet.h]
1605      avoid extra malloc/copy/free when receiving data over the net;
1606      ~10% speedup for localhost-scp; ok djm@
1607    - djm@cvs.openbsd.org 2008/05/08 12:02:23
1608      [auth-options.c auth1.c channels.c channels.h clientloop.c gss-serv.c]
1609      [monitor.c monitor_wrap.c nchan.c servconf.c serverloop.c session.c]
1610      [ssh.c sshd.c]
1611      Implement a channel success/failure status confirmation callback
1612      mechanism. Each channel maintains a queue of callbacks, which will
1613      be drained in order (RFC4253 guarantees confirm messages are not
1614      reordered within an channel).
1615      Also includes a abandonment callback to clean up if a channel is
1616      closed without sending confirmation messages. This probably
1617      shouldn't happen in compliant implementations, but it could be
1618      abused to leak memory.
1619      ok markus@ (as part of a larger diff)
1620    - djm@cvs.openbsd.org 2008/05/08 12:21:16
1621      [monitor.c monitor_wrap.c session.h servconf.c servconf.h session.c]
1622      [sshd_config sshd_config.5]
1623      Make the maximum number of sessions run-time controllable via
1624      a sshd_config MaxSessions knob. This is useful for disabling
1625      login/shell/subsystem access while leaving port-forwarding working
1626      (MaxSessions 0), disabling connection multiplexing (MaxSessions 1) or
1627      simply increasing the number of allows multiplexed sessions.
1628      Because some bozos are sure to configure MaxSessions in excess of the
1629      number of available file descriptors in sshd (which, at peak, might be
1630      as many as 9*MaxSessions), audit sshd to ensure that it doesn't leak fds
1631      on error paths, and make it fail gracefully on out-of-fd conditions -
1632      sending channel errors instead of than exiting with fatal().
1633      bz#1090; MaxSessions config bits and manpage from junyer AT gmail.com
1634      ok markus@
1635    - djm@cvs.openbsd.org 2008/05/08 13:06:11
1636      [clientloop.c clientloop.h ssh.c]
1637      Use new channel status confirmation callback system to properly deal
1638      with "important" channel requests that fail, in particular command exec,
1639      shell and subsystem requests. Previously we would optimistically assume
1640      that the requests would always succeed, which could cause hangs if they
1641      did not (e.g. when the server runs out of fds) or were unimplemented by
1642      the server (bz #1384)
1643      Also, properly report failing multiplex channel requests via the mux
1644      client stderr (subject to LogLevel in the mux master) - better than
1645      silently failing.
1646      most bits ok markus@ (as part of a larger diff)
1647    - djm@cvs.openbsd.org 2008/05/09 04:55:56
1648      [channels.c channels.h clientloop.c serverloop.c]
1649      Try additional addresses when connecting to a port forward destination
1650      whose DNS name resolves to more than one address. The previous behaviour
1651      was to try the first address and give up.
1652      Reported by stig AT venaas.com in bz#343
1653      great feedback and ok markus@
1654    - djm@cvs.openbsd.org 2008/05/09 14:18:44
1655      [clientloop.c clientloop.h ssh.c mux.c]
1656      tidy up session multiplexing code, moving it into its own file and
1657      making the function names more consistent - making ssh.c and
1658      clientloop.c a fair bit more readable.
1659      ok markus@
1660    - djm@cvs.openbsd.org 2008/05/09 14:26:08
1661      [ssh.c]
1662      dingo stole my diff hunk
1663    - markus@cvs.openbsd.org 2008/05/09 16:16:06
1664      [session.c]
1665      re-add the USE_PIPES code and enable it.
1666      without pipes shutdown-read from the sshd does not trigger
1667      a SIGPIPE when the forked program does a write.
1668      ok djm@
1669      (Id sync only, USE_PIPES never left portable OpenSSH)
1670    - markus@cvs.openbsd.org 2008/05/09 16:17:51
1671      [channels.c]
1672      error-fd race: don't enable the error fd in the select bitmask
1673      for channels with both in- and output closed, since the channel
1674      will go away before we call select();
1675      report, lots of debugging help and ok djm@
1676    - markus@cvs.openbsd.org 2008/05/09 16:21:13
1677      [channels.h clientloop.c nchan.c serverloop.c]
1678      unbreak
1679         ssh -2 localhost od /bin/ls | true
1680      ignoring SIGPIPE by adding a new channel message (EOW) that signals
1681      the peer that we're not interested in any data it might send.
1682      fixes bz #85; discussion, debugging and ok djm@
1683    - pvalchev@cvs.openbsd.org 2008/05/12 20:52:20
1684      [umac.c]
1685      Ensure nh_result lies on a 64-bit boundary (fixes warnings observed
1686      on Itanium on Linux); from Dale Talcott (bug #1462); ok djm@
1687    - djm@cvs.openbsd.org 2008/05/15 23:52:24
1688      [nchan2.ms]
1689      document eow message in ssh protocol 2 channel state machine;
1690      feedback and ok markus@
1691    - djm@cvs.openbsd.org 2008/05/18 21:29:05
1692      [sftp-server.c]
1693      comment extension announcement
1694    - djm@cvs.openbsd.org 2008/05/16 08:30:42
1695      [PROTOCOL]
1696      document our protocol extensions and deviations; ok markus@
1697    - djm@cvs.openbsd.org 2008/05/17 01:31:56
1698      [PROTOCOL]
1699      grammar and correctness fixes from stevesk@
1700
1701 20080403
1702  - (djm) [openbsd-compat/bsd-poll.c] Include stdlib.h to avoid compile-
1703    time warnings on LynxOS. Patch from ops AT iki.fi
1704  - (djm) Force string arguments to replacement setproctitle() though
1705    strnvis first. Ok dtucker@
1706
1707 20080403
1708  - (djm) OpenBSD CVS sync:
1709    - markus@cvs.openbsd.org 2008/04/02 15:36:51
1710      [channels.c]
1711      avoid possible hijacking of x11-forwarded connections (back out 1.183)
1712      CVE-2008-1483; ok djm@
1713    - jmc@cvs.openbsd.org 2008/03/27 22:37:57
1714      [sshd.8]
1715      remove trailing whitespace;
1716    - djm@cvs.openbsd.org 2008/04/03 09:50:14
1717      [version.h]
1718      openssh-5.0
1719  - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1720    [contrib/suse/openssh.spec] Crank version numbers in RPM spec files
1721  - (djm) [README] Update link to release notes
1722  - (djm) Release 5.0p1
This page took 0.167908 seconds and 5 git commands to generate.