[openssh-commits] [openssh] branch master updated (d85e062 -> c78a578)

git+noreply at mindrot.org git+noreply at mindrot.org
Tue Jan 20 09:50:48 EST 2015


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

djm pushed a change to branch master
in repository openssh.

      from  d85e062   upstream commit
       new  4e62cc6   upstream commit
       new  091c302   upstream commit
       new  3fdc88a   upstream commit
       new  57d10cb   upstream commit
       new  48b3b2b   upstream commit
       new  f582f0e   upstream commit
       new  3f79765   upstream commit
       new  d3716ca   upstream commit
       new  31821d7   upstream commit
       new  c78a578   upstream commit

The 10 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 c78a578107c7e6dcf5d30a2f34cb6581bef14029
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:45:25 2015 +0000

    upstream commit
    
    finally enable the KEX tests I wrote some years ago...

commit 31821d7217e686667d04935aeec99e1fc4a46e7e
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:42:31 2015 +0000

    upstream commit
    
    adapt to new error message (SSH_ERR_MAC_INVALID)

commit d3716ca19e510e95d956ae14d5b367e364bff7f1
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Mon Jan 19 17:31:13 2015 +0000

    upstream commit
    
    this test was broken in at least two ways, such that it
     wasn't checking that a KRL was not excluding valid keys

commit 3f797653748e7c2b037dacb57574c01d9ef3b4d3
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:32:39 2015 +0000

    upstream commit
    
    switch ssh-keyscan from setjmp to multiple ssh transport
     layer instances ok djm@

commit f582f0e917bb0017b00944783cd5f408bf4b0b5e
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:30:23 2015 +0000

    upstream commit
    
    add experimental api for packet layer; ok djm@

commit 48b3b2ba75181f11fca7f327058a591f4426cade
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:20:20 2015 +0000

    upstream commit
    
    store compat flags in struct ssh; ok djm@

commit 57d10cbe861a235dd269c74fb2fe248469ecee9d
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:16:15 2015 +0000

    upstream commit
    
    adapt kex to sshbuf and struct ssh; ok djm@

commit 3fdc88a0def4f86aa88a5846ac079dc964c0546a
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 20:07:45 2015 +0000

    upstream commit
    
    move dispatch to struct ssh; ok djm@

commit 091c302829210c41e7f57c3f094c7b9c054306f0
Author: markus at openbsd.org <markus at openbsd.org>
Date:   Mon Jan 19 19:52:16 2015 +0000

    upstream commit
    
    update packet.c & isolate, introduce struct ssh a) switch
     packet.c to buffer api and isolate per-connection info into struct ssh b)
     (de)serialization of the state is moved from monitor to packet.c c) the old
     packet.c API is implemented in opacket.[ch] d) compress.c/h is removed and
     integrated into packet.c with and ok djm@

commit 4e62cc68ce4ba20245d208b252e74e91d3785b74
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Mon Jan 19 17:35:48 2015 +0000

    upstream commit
    
    fix format strings in (disabled) debugging

Summary of changes:
 Makefile.in                |   39 +-
 auth.h                     |   13 +-
 auth2-chall.c              |    7 +-
 auth2-gss.c                |   22 +-
 auth2.c                    |   12 +-
 channels.c                 |   63 +-
 channels.h                 |   28 +-
 clientloop.c               |   47 +-
 compat.c                   |   15 +-
 compat.h                   |    4 +-
 compress.c                 |  167 ---
 compress.h                 |   25 -
 deattack.c                 |   82 +-
 deattack.h                 |   11 +-
 dh.c                       |   59 +-
 dh.h                       |    6 +-
 dispatch.c                 |  102 +-
 dispatch.h                 |   35 +-
 kex.c                      |  626 ++++++-----
 kex.h                      |  156 +--
 kexc25519.c                |   94 +-
 kexc25519c.c               |  159 ++-
 kexc25519s.c               |  133 ++-
 kexdh.c                    |   87 +-
 kexdhc.c                   |  194 ++--
 kexdhs.c                   |  186 +--
 kexecdh.c                  |   81 +-
 kexecdhc.c                 |  207 ++--
 kexecdhs.c                 |  190 ++--
 kexgex.c                   |  105 +-
 kexgexc.c                  |  287 +++--
 kexgexs.c                  |  257 +++--
 krl.c                      |    8 +-
 monitor.c                  |  291 +----
 monitor.h                  |    4 +-
 monitor_wrap.c             |  248 +---
 monitor_wrap.h             |    7 +-
 opacket.c                  |  279 +++++
 opacket.h                  |  173 +++
 packet.c                   | 2677 ++++++++++++++++++++++++++++----------------
 packet.h                   |  259 +++--
 regress/integrity.sh       |    4 +-
 regress/krl.sh             |   16 +-
 regress/unittests/Makefile |    5 +-
 roaming_dummy.c            |   13 +-
 serverloop.c               |   34 +-
 ssh-keyscan.c              |  147 +--
 ssh_api.c                  |  527 +++++++++
 ssh_api.h                  |  136 +++
 sshconnect.c               |    4 +-
 sshconnect2.c              |   67 +-
 sshd.c                     |   58 +-
 52 files changed, 5236 insertions(+), 3220 deletions(-)
 delete mode 100644 compress.c
 delete mode 100644 compress.h
 create mode 100644 opacket.c
 create mode 100644 opacket.h
 create mode 100644 ssh_api.c
 create mode 100644 ssh_api.h

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


More information about the openssh-commits mailing list