All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrange" <berrange@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PATCH PULL v2 00/11] Extract TLS handling code from VNC server
Date: Tue, 15 Sep 2015 11:16:56 +0100	[thread overview]
Message-ID: <1442312227-19153-1-git-send-email-berrange@redhat.com> (raw)

The following changes since commit 007e620a7576e4ce2ea6955541e87d8ae8ed32ae:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2015-09-14 18:51:09 +0100)

are available in the git repository at:

  git://github.com/berrange/qemu.git tags/vnc-crypto-v8-for-upstream

for you to fetch changes up to 63909633894a7d613aa80a32a827581da9bf5ad5:

  ui: convert VNC server to use QCryptoTLSSession (2015-09-15 11:08:52 +0100)

----------------------------------------------------------------
Merge vnc-crypto-v8

----------------------------------------------------------------
Daniel P. Berrange (11):
      qapi: allow override of default enum prefix naming
      tests: remove repetition in unit test object deps
      crypto: move crypto objects out of libqemuutil.la
      qom: allow QOM to be linked into tools binaries
      crypto: introduce new base module for TLS credentials
      crypto: introduce new module for TLS anonymous credentials
      crypto: introduce new module for TLS x509 credentials
      crypto: add sanity checking of TLS x509 credentials
      crypto: introduce new module for handling TLS sessions
      ui: fix return type for VNC I/O functions to be ssize_t
      ui: convert VNC server to use QCryptoTLSSession

 Makefile                                |   10 +-
 Makefile.objs                           |   10 +-
 Makefile.target                         |    4 +
 configure                               |   53 +-
 crypto/Makefile.objs                    |   14 +-
 crypto/tlscreds.c                       |  251 +++++++
 crypto/tlscredsanon.c                   |  223 +++++++
 crypto/tlscredspriv.h                   |   42 ++
 crypto/tlscredsx509.c                   |  809 ++++++++++++++++++++++
 crypto/tlssession.c                     |  574 ++++++++++++++++
 docs/qapi-code-gen.txt                  |    8 +
 include/crypto/tlscreds.h               |   68 ++
 include/crypto/tlscredsanon.h           |  112 ++++
 include/crypto/tlscredsx509.h           |  113 ++++
 include/crypto/tlssession.h             |  322 +++++++++
 qapi-schema.json                        |    3 +
 qapi/crypto.json                        |   21 +
 qemu-options.hx                         |   75 ++-
 qom/Makefile.objs                       |    7 +-
 scripts/qapi-types.py                   |   16 +-
 scripts/qapi.py                         |   10 +-
 tests/.gitignore                        |    7 +
 tests/Makefile                          |  106 +--
 tests/crypto-tls-x509-helpers.c         |  485 ++++++++++++++
 tests/crypto-tls-x509-helpers.h         |  133 ++++
 tests/pkix_asn1_tab.c                   | 1104 +++++++++++++++++++++++++++++++
 tests/qapi-schema/enum-bad-prefix.err   |    1 +
 tests/qapi-schema/enum-bad-prefix.exit  |    1 +
 tests/qapi-schema/enum-bad-prefix.json  |    2 +
 tests/qapi-schema/enum-bad-prefix.out   |    0
 tests/qapi-schema/qapi-schema-test.json |    5 +
 tests/qapi-schema/qapi-schema-test.out  |    2 +
 tests/test-crypto-tlscredsx509.c        |  731 ++++++++++++++++++++
 tests/test-crypto-tlssession.c          |  535 +++++++++++++++
 trace-events                            |   18 +
 ui/Makefile.objs                        |    2 +-
 ui/vnc-auth-sasl.c                      |   36 +-
 ui/vnc-auth-vencrypt.c                  |   80 ++-
 ui/vnc-tls.c                            |  474 -------------
 ui/vnc-tls.h                            |   69 --
 ui/vnc-ws.c                             |   84 +--
 ui/vnc-ws.h                             |    2 -
 ui/vnc.c                                |  362 ++++++----
 ui/vnc.h                                |   21 +-
 44 files changed, 6125 insertions(+), 880 deletions(-)
 create mode 100644 crypto/tlscreds.c
 create mode 100644 crypto/tlscredsanon.c
 create mode 100644 crypto/tlscredspriv.h
 create mode 100644 crypto/tlscredsx509.c
 create mode 100644 crypto/tlssession.c
 create mode 100644 include/crypto/tlscreds.h
 create mode 100644 include/crypto/tlscredsanon.h
 create mode 100644 include/crypto/tlscredsx509.h
 create mode 100644 include/crypto/tlssession.h
 create mode 100644 qapi/crypto.json
 create mode 100644 tests/crypto-tls-x509-helpers.c
 create mode 100644 tests/crypto-tls-x509-helpers.h
 create mode 100644 tests/pkix_asn1_tab.c
 create mode 100644 tests/qapi-schema/enum-bad-prefix.err
 create mode 100644 tests/qapi-schema/enum-bad-prefix.exit
 create mode 100644 tests/qapi-schema/enum-bad-prefix.json
 create mode 100644 tests/qapi-schema/enum-bad-prefix.out
 create mode 100644 tests/test-crypto-tlscredsx509.c
 create mode 100644 tests/test-crypto-tlssession.c
 delete mode 100644 ui/vnc-tls.c
 delete mode 100644 ui/vnc-tls.h

-- 
2.4.3

             reply	other threads:[~2015-09-15 10:17 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-15 10:16 Daniel P. Berrange [this message]
2015-09-15 10:16 ` [Qemu-devel] [PATCH PULL v2 01/11] qapi: allow override of default enum prefix naming Daniel P. Berrange
2015-09-15 14:00   ` Eric Blake
2015-09-15 10:16 ` [Qemu-devel] [PATCH PULL v2 02/11] tests: remove repetition in unit test object deps Daniel P. Berrange
2015-09-15 10:16 ` [Qemu-devel] [PATCH PULL v2 03/11] crypto: move crypto objects out of libqemuutil.la Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 04/11] qom: allow QOM to be linked into tools binaries Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 05/11] crypto: introduce new base module for TLS credentials Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 06/11] crypto: introduce new module for TLS anonymous credentials Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 07/11] crypto: introduce new module for TLS x509 credentials Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 08/11] crypto: add sanity checking of " Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 09/11] crypto: introduce new module for handling TLS sessions Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 10/11] ui: fix return type for VNC I/O functions to be ssize_t Daniel P. Berrange
2015-09-15 10:17 ` [Qemu-devel] [PATCH PULL v2 11/11] ui: convert VNC server to use QCryptoTLSSession Daniel P. Berrange
2015-09-15 11:23 ` [Qemu-devel] [PATCH PULL v2 00/11] Extract TLS handling code from VNC server Peter Maydell
2015-09-15 11:41   ` Daniel P. Berrange
2015-09-15 14:36     ` Daniel P. Berrange

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1442312227-19153-1-git-send-email-berrange@redhat.com \
    --to=berrange@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.