* [PATCH] iotests: fix expected output from gnutls in NBD test
@ 2024-08-29 11:02 Daniel P. Berrangé
2024-08-29 11:14 ` Thomas Huth
0 siblings, 1 reply; 2+ messages in thread
From: Daniel P. Berrangé @ 2024-08-29 11:02 UTC (permalink / raw)
To: qemu-devel
Cc: Kevin Wolf, Thomas Huth, Philippe Mathieu-Daudé,
Markus Armbruster, Daniel P. Berrangé, Hyman Huang,
qemu-block, qemu-stable, Hanna Reitz, Eric Blake,
Marc-André Lureau, Laurent Vivier, Paolo Bonzini
Error reporting from gnutls was improved by:
commit 57941c9c86357a6a642f9ee3279d881df4043b6d
Author: Daniel P. Berrangé <berrange@redhat.com>
Date: Fri Mar 15 14:07:58 2024 +0000
crypto: push error reporting into TLS session I/O APIs
This has the effect of changing the output from one of the NBD
tests.
Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
NB, wrt qemu-stable this will be for the 9.1 stable branch once
that is created, no earlier releases will need this.
tests/qemu-iotests/233.out | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/qemu-iotests/233.out b/tests/qemu-iotests/233.out
index 1910f7df20..d498d55e0e 100644
--- a/tests/qemu-iotests/233.out
+++ b/tests/qemu-iotests/233.out
@@ -69,8 +69,8 @@ read 1048576/1048576 bytes at offset 1048576
1 MiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
== check TLS with authorization ==
-qemu-img: Could not open 'driver=nbd,host=127.0.0.1,port=PORT,tls-creds=tls0': Failed to read option reply: Cannot read from TLS channel: Software caused connection abort
-qemu-img: Could not open 'driver=nbd,host=127.0.0.1,port=PORT,tls-creds=tls0': Failed to read option reply: Cannot read from TLS channel: Software caused connection abort
+qemu-img: Could not open 'driver=nbd,host=127.0.0.1,port=PORT,tls-creds=tls0': Failed to read option reply: Cannot read from TLS channel: The TLS connection was non-properly terminated.
+qemu-img: Could not open 'driver=nbd,host=127.0.0.1,port=PORT,tls-creds=tls0': Failed to read option reply: Cannot read from TLS channel: The TLS connection was non-properly terminated.
== check TLS fail over UNIX with no hostname ==
qemu-img: Could not open 'driver=nbd,path=SOCK_DIR/qemu-nbd.sock,tls-creds=tls0': No hostname for certificate validation
@@ -103,14 +103,14 @@ qemu-img: Could not open 'driver=nbd,path=SOCK_DIR/qemu-nbd.sock,tls-creds=tls0'
qemu-nbd: TLS handshake failed: The TLS connection was non-properly terminated.
== final server log ==
-qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: Software caused connection abort
-qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: Software caused connection abort
+qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: The TLS connection was non-properly terminated.
+qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: The TLS connection was non-properly terminated.
qemu-nbd: option negotiation failed: Verify failed: No certificate was found.
qemu-nbd: option negotiation failed: Verify failed: No certificate was found.
qemu-nbd: option negotiation failed: TLS x509 authz check for DISTINGUISHED-NAME is denied
qemu-nbd: option negotiation failed: TLS x509 authz check for DISTINGUISHED-NAME is denied
-qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: Software caused connection abort
-qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: Software caused connection abort
+qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: The TLS connection was non-properly terminated.
+qemu-nbd: option negotiation failed: Failed to read opts magic: Cannot read from TLS channel: The TLS connection was non-properly terminated.
qemu-nbd: option negotiation failed: TLS handshake failed: An illegal parameter has been received.
qemu-nbd: option negotiation failed: TLS handshake failed: An illegal parameter has been received.
*** done
--
2.45.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] iotests: fix expected output from gnutls in NBD test
2024-08-29 11:02 [PATCH] iotests: fix expected output from gnutls in NBD test Daniel P. Berrangé
@ 2024-08-29 11:14 ` Thomas Huth
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Huth @ 2024-08-29 11:14 UTC (permalink / raw)
To: Daniel P. Berrangé, qemu-devel
Cc: Kevin Wolf, Philippe Mathieu-Daudé, Markus Armbruster,
Hyman Huang, qemu-block, qemu-stable, Hanna Reitz, Eric Blake,
Marc-André Lureau, Laurent Vivier, Paolo Bonzini
On 29/08/2024 13.02, Daniel P. Berrangé wrote:
> Error reporting from gnutls was improved by:
>
> commit 57941c9c86357a6a642f9ee3279d881df4043b6d
> Author: Daniel P. Berrangé <berrange@redhat.com>
> Date: Fri Mar 15 14:07:58 2024 +0000
>
> crypto: push error reporting into TLS session I/O APIs
>
> This has the effect of changing the output from one of the NBD
> tests.
>
> Reported-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
>
> NB, wrt qemu-stable this will be for the 9.1 stable branch once
> that is created, no earlier releases will need this.
>
> tests/qemu-iotests/233.out | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
Thanks, that fixes the issue, indeed.
Tested-by: Thomas Huth <thuth@redhat.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-08-29 11:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-29 11:02 [PATCH] iotests: fix expected output from gnutls in NBD test Daniel P. Berrangé
2024-08-29 11:14 ` Thomas Huth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).