[openssh-commits] [openssh] branch master updated (1a6f9d2 -> 79e4829)

git+noreply at mindrot.org git+noreply at mindrot.org
Tue Nov 29 17:20:03 AEDT 2016


This is an automated email from the git hooks/post-receive script.

djm pushed a change to branch master
in repository openssh.

      from  1a6f9d2   upstream commit
       new  f0ddede   upstream commit
       new  a9c7460   upstream commit
       new  54d0220   upstream commit
       new  b0899ee   upstream commit
       new  36f58e6   upstream commit
       new  7da751d   upstream commit
       new  bd13017   upstream commit
       new  504c3a9   upstream commit
       new  79e4829   upstream commit

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Detailed log of new commits:

commit 79e4829ec81dead1b30999e1626eca589319a47f
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Fri Nov 25 03:02:01 2016 +0000

    upstream commit
    
    Allow PuTTY interop tests to run unattended.  bz#2639,
    patch from cjwatson at debian.org.
    
    Upstream-Regress-ID: 4345253558ac23b2082aebabccd48377433b6fe0

commit 504c3a9a1bf090f6b27260fc3e8ea7d984d163dc
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Fri Nov 25 02:56:49 2016 +0000

    upstream commit
    
    Reverse args to sshd-log-wrapper.  Matches change in
    portable, where it allows sshd do be optionally run under Valgrind.
    
    Upstream-Regress-ID: b438d1c6726dc5caa2a45153e6103a0393faa906

commit bd13017736ec2f8f9ca498fe109fb0035f322733
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Fri Nov 25 02:49:18 2016 +0000

    upstream commit
    
    Fix typo in trace message; from portable.
    
    Upstream-Regress-ID: 4c4a2ba0d37faf5fd230a91b4c7edb5699fbd73a

commit 7da751d8b007c7f3e814fd5737c2351440d78b4c
Author: tb at openbsd.org <tb at openbsd.org>
Date:   Tue Nov 1 13:43:27 2016 +0000

    upstream commit
    
    Clean up MALLOC_OPTIONS.  For the unittests, move
    MALLOC_OPTIONS and TEST_ENV to unittets/Makefile.inc.
    
    ok otto
    
    Upstream-Regress-ID: 890d497e0a38eeddfebb11cc429098d76cf29f12

commit 36f58e68221bced35e06d1cca8d97c48807a8b71
Author: tb at openbsd.org <tb at openbsd.org>
Date:   Mon Oct 31 23:45:08 2016 +0000

    upstream commit
    
    Remove the obsolete A and P flags from MALLOC_OPTIONS.
    
    ok dtucker
    
    Upstream-Regress-ID: 6cc25024c8174a87e5734a0dc830194be216dd59

commit b0899ee26a6630883c0f2350098b6a35e647f512
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date:   Tue Nov 29 03:54:50 2016 +0000

    upstream commit
    
    Factor out code to disconnect from controlling terminal
    into its own function.  ok djm@
    
    Upstream-ID: 39fd9e8ebd7222615a837312face5cc7ae962885

commit 54d022026aae4f53fa74cc636e4a032d9689b64d
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Fri Nov 25 23:24:45 2016 +0000

    upstream commit
    
    use sshbuf_allocate() to pre-allocate the buffer used for
    loading keys. This avoids implicit realloc inside the buffer code, which
    might theoretically leave fragments of the key on the heap. This doesn't
    appear to happen in practice for normal sized keys, but was observed for
    novelty oversize ones.
    
    Pointed out by Jann Horn of Project Zero; ok markus@
    
    Upstream-ID: d620e1d46a29fdea56aeadeda120879eddc60ab1

commit a9c746088787549bb5b1ae3add7d06a1b6d93d5e
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Fri Nov 25 23:22:04 2016 +0000

    upstream commit
    
    split allocation out of sshbuf_reserve() into a separate
    sshbuf_allocate() function; ok markus@
    
    Upstream-ID: 11b8a2795afeeb1418d508a2c8095b3355577ec2

commit f0ddedee460486fa0e32fefb2950548009e5026e
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Wed Nov 23 23:14:15 2016 +0000

    upstream commit
    
    allow ClientAlive{Interval,CountMax} in Match; ok dtucker,
    djm
    
    Upstream-ID: 8beb4c1eadd588f1080b58932281983864979f55

Summary of changes:
 authfile.c                          | 16 +++++++-
 regress/Makefile                    |  4 +-
 regress/connect-privsep.sh          |  4 +-
 regress/integrity.sh                |  2 +-
 regress/putty-ciphers.sh            |  4 +-
 regress/putty-kex.sh                |  5 +--
 regress/putty-transfer.sh           |  6 +--
 regress/test-exec.sh                | 12 ++++--
 regress/unittests/Makefile.inc      |  2 +-
 regress/unittests/bitmap/Makefile   |  4 +-
 regress/unittests/hostkeys/Makefile |  4 +-
 regress/unittests/kex/Makefile      |  4 +-
 regress/unittests/match/Makefile    |  4 +-
 regress/unittests/sshbuf/Makefile   |  2 +-
 regress/unittests/sshkey/Makefile   |  4 +-
 regress/unittests/utf8/Makefile     |  4 +-
 servconf.c                          |  8 ++--
 sshbuf.c                            | 76 +++++++++++++++++++++----------------
 sshbuf.h                            | 10 ++++-
 sshd.c                              | 19 ++--------
 sshd_config.5                       |  6 ++-
 sshpty.c                            | 16 +++++++-
 sshpty.h                            |  3 +-
 23 files changed, 124 insertions(+), 95 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list