[openssh-commits] [openssh] branch master updated (17ad5b34 -> 151c6e43)

git+noreply at mindrot.org git+noreply at mindrot.org
Thu Jun 1 15:27:02 AEST 2017


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

djm pushed a change to branch master
in repository openssh.

      from  17ad5b34  upstream commit
       new  92e9fe63  upstream commit
       new  1e0cdf8e  upstream commit
       new  dc5dc456  upstream commit
       new  9e509d4e  upstream commit
       new  84008608  upstream commit
       new  75b8af8d  upstream commit
       new  4b2e2d3f  upstream commit
       new  01e6f789  add *.0 manpage droppings
       new  151c6e43  add recallocarray replacement and dependency

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 151c6e433a5f5af761c78de87d7b5d30a453cf5e
Author: Damien Miller <djm at mindrot.org>
Date:   Thu Jun 1 15:25:13 2017 +1000

    add recallocarray replacement and dependency
    
    recallocarray() needs getpagesize() so add a tiny replacement for that.

commit 01e6f78924da308447e71e9a32c8a6104ef4e888
Author: Damien Miller <djm at mindrot.org>
Date:   Thu Jun 1 15:16:24 2017 +1000

    add *.0 manpage droppings

commit 4b2e2d3fd9dccff357e1e26ce9a5f2e103837a36
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Thu Jun 1 04:51:58 2017 +0000

    upstream commit
    
    fix casts re constness
    
    Upstream-ID: e38f2bac162b37dbaf784d349c8327a6626fa266

commit 75b8af8de805c0694b37fcf80ce82783b2acc86f
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Wed May 31 10:54:00 2017 +0000

    upstream commit
    
    make sure we don't pass a NULL string to vfprintf
    (triggered by the principals-command regress test); ok bluhm
    
    Upstream-ID: eb49854f274ab37a0b57056a6af379a0b7111990

commit 84008608c9ee944d9f72f5100f31ccff743b10f2
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Wed May 31 10:04:29 2017 +0000

    upstream commit
    
    use SO_ZEROIZE for privsep communication (if available)
    
    Upstream-ID: abcbb6d2f8039fc4367a6a78096e5d5c39de4a62

commit 9e509d4ec97cb3d71696f1a2f1fdad254cbbce11
Author: deraadt at openbsd.org <deraadt at openbsd.org>
Date:   Wed May 31 09:15:42 2017 +0000

    upstream commit
    
    Switch to recallocarray() for a few operations.  Both
    growth and shrinkage are handled safely, and there also is no need for
    preallocation dances. Future changes in this area will be less error prone.
    Review and one bug found by markus
    
    Upstream-ID: 822d664d6a5a1d10eccb23acdd53578a679d5065

commit dc5dc45662773c0f7745c29cf77ae2d52723e55e
Author: deraadt at openbsd.org <deraadt at openbsd.org>
Date:   Wed May 31 08:58:52 2017 +0000

    upstream commit
    
    These shutdown() SHUT_RDWR are not needed before close()
    ok djm markus claudio
    
    Upstream-ID: 36f13ae4ba10f5618cb9347933101eb4a98dbcb5

commit 1e0cdf8efb745d0d1116e1aa22bdc99ee731695e
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Wed May 31 08:09:45 2017 +0000

    upstream commit
    
    clear session keys from memory; ok djm@
    
    Upstream-ID: ecd178819868975affd5fd6637458b7c712b6a0f

commit 92e9fe633130376a95dd533df6e5e6a578c1e6b8
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Wed May 31 07:00:13 2017 +0000

    upstream commit
    
    remove now obsolete ctx from ssh_dispatch_run; ok djm@
    
    Upstream-ID: 9870aabf7f4d71660c31fda91b942b19a8e68d29

Summary of changes:
 .gitignore                       |  1 +
 auth-options.c                   |  5 ++-
 auth-options.h                   |  4 +-
 auth2-pubkey.c                   | 16 +++----
 auth2.c                          |  4 +-
 authfile.c                       | 16 +------
 bitmap.c                         |  4 +-
 channels.c                       |  4 +-
 clientloop.c                     | 12 ++---
 configure.ac                     |  2 +
 dispatch.c                       | 13 +++---
 dispatch.h                       |  8 ++--
 hostfile.c                       |  4 +-
 krl.c                            |  4 +-
 misc.c                           |  4 +-
 monitor.c                        | 22 +++++++++-
 monitor_wrap.h                   |  4 +-
 opacket.h                        |  2 +
 openbsd-compat/Makefile.in       |  4 +-
 openbsd-compat/bsd-getpagesize.c | 23 ++++++++++
 openbsd-compat/openbsd-compat.h  |  8 ++++
 openbsd-compat/recallocarray.c   | 88 +++++++++++++++++++++++++++++++++++++
 packet.c                         | 95 +++++++++++++++++++++++++---------------
 packet.h                         |  4 +-
 scp.c                            |  8 +---
 serverloop.c                     |  4 +-
 session.c                        | 11 ++---
 ssh-keyscan.c                    |  4 +-
 ssh-pkcs11.c                     |  6 +--
 sshbuf-getput-basic.c            |  4 +-
 sshbuf.c                         | 16 +++----
 sshconnect2.c                    |  6 +--
 sshd.c                           |  6 ++-
 sshkey.c                         |  7 +--
 umac.c                           |  8 +++-
 utf8.c                           |  4 +-
 xmalloc.c                        | 14 +++++-
 xmalloc.h                        |  3 +-
 38 files changed, 312 insertions(+), 140 deletions(-)
 create mode 100644 openbsd-compat/bsd-getpagesize.c
 create mode 100644 openbsd-compat/recallocarray.c

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


More information about the openssh-commits mailing list