mbox

[PULL,0/5] Misc next patches

Message ID 20190719132549.14726-1-berrange@redhat.com
State New
Headers show

Pull-request

https://github.com/berrange/qemu tags/misc-next-pull-request

Message

Daniel P. Berrangé July 19, 2019, 1:25 p.m. UTC
The following changes since commit 0274f45bdef73283f2c213610f11d4e5dcba43b6:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging (2019-07-19 09:44:43 +0100)

are available in the Git repository at:

  https://github.com/berrange/qemu tags/misc-next-pull-request

for you to fetch changes up to b7cbb8741b40b7cd4de9ad6bdb69baae4d6dadcf:

  crypto: Fix LGPL information in the file headers (2019-07-19 14:21:25 +0100)

----------------------------------------------------------------

 * Fixes crypto function signatures to be compatible with
   both old and new versions of nettle
 * Fixes deprecation warnings on new nettle
 * Fixes GPL license header typos
 * Documents security implications of monitor usage
 * Optimize linking of capstone to avoid it in tools

----------------------------------------------------------------

Daniel P. Berrangé (4):
  crypto: switch to modern nettle AES APIs
  crypto: fix function signatures for nettle 2.7 vs 3
  configure: only link capstone to emulation targets
  doc: document that the monitor console is a privileged control
    interface

Thomas Huth (1):
  crypto: Fix LGPL information in the file headers

 Makefile.target               |   1 +
 configure                     |   6 +-
 crypto/block-luks.c           |   2 +-
 crypto/block-luks.h           |   2 +-
 crypto/block-qcow.c           |   2 +-
 crypto/block-qcow.h           |   2 +-
 crypto/block.c                |   2 +-
 crypto/blockpriv.h            |   2 +-
 crypto/cipher-builtin.c       |   2 +-
 crypto/cipher-gcrypt.c        |   2 +-
 crypto/cipher-nettle.c        | 220 ++++++++++++++++++++++++++++------
 crypto/cipher.c               |   2 +-
 crypto/hash-gcrypt.c          |   2 +-
 crypto/hash-glib.c            |   2 +-
 crypto/hash-nettle.c          |  14 ++-
 crypto/hash.c                 |   2 +-
 crypto/hmac-nettle.c          |  17 ++-
 crypto/init.c                 |   2 +-
 crypto/ivgen-essiv.c          |   2 +-
 crypto/ivgen-essiv.h          |   2 +-
 crypto/ivgen-plain.c          |   2 +-
 crypto/ivgen-plain.h          |   2 +-
 crypto/ivgen-plain64.c        |   2 +-
 crypto/ivgen-plain64.h        |   2 +-
 crypto/ivgen.c                |   2 +-
 crypto/ivgenpriv.h            |   2 +-
 crypto/pbkdf-gcrypt.c         |   2 +-
 crypto/pbkdf-nettle.c         |   2 +-
 crypto/pbkdf-stub.c           |   2 +-
 crypto/pbkdf.c                |   2 +-
 crypto/random-gcrypt.c        |   2 +-
 crypto/random-gnutls.c        |   2 +-
 crypto/random-platform.c      |   2 +-
 crypto/secret.c               |   2 +-
 crypto/tlscreds.c             |   2 +-
 crypto/tlscredsanon.c         |   2 +-
 crypto/tlscredspriv.h         |   2 +-
 crypto/tlscredspsk.c          |   2 +-
 crypto/tlscredsx509.c         |   2 +-
 crypto/tlssession.c           |   2 +-
 crypto/xts.c                  |   2 +-
 docs/security.texi            |  36 ++++++
 include/crypto/block.h        |   2 +-
 include/crypto/cipher.h       |   2 +-
 include/crypto/hash.h         |   2 +-
 include/crypto/init.h         |   2 +-
 include/crypto/ivgen.h        |   2 +-
 include/crypto/pbkdf.h        |   2 +-
 include/crypto/random.h       |   2 +-
 include/crypto/secret.h       |   2 +-
 include/crypto/tlscreds.h     |   2 +-
 include/crypto/tlscredsanon.h |   2 +-
 include/crypto/tlscredspsk.h  |   2 +-
 include/crypto/tlscredsx509.h |   2 +-
 include/crypto/tlssession.h   |   2 +-
 include/crypto/xts.h          |   2 +-
 56 files changed, 298 insertions(+), 96 deletions(-)

Comments

Peter Maydell July 19, 2019, 1:58 p.m. UTC | #1
On Fri, 19 Jul 2019 at 14:26, Daniel P. Berrangé <berrange@redhat.com> wrote:
>
> The following changes since commit 0274f45bdef73283f2c213610f11d4e5dcba43b6:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-4.1-pull-request' into staging (2019-07-19 09:44:43 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/berrange/qemu tags/misc-next-pull-request
>
> for you to fetch changes up to b7cbb8741b40b7cd4de9ad6bdb69baae4d6dadcf:
>
>   crypto: Fix LGPL information in the file headers (2019-07-19 14:21:25 +0100)
>
> ----------------------------------------------------------------
>
>  * Fixes crypto function signatures to be compatible with
>    both old and new versions of nettle
>  * Fixes deprecation warnings on new nettle
>  * Fixes GPL license header typos
>  * Documents security implications of monitor usage
>  * Optimize linking of capstone to avoid it in tools
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

-- PMM