[glib-networking/wip/pwithnall/dtls: 2/8] gnutls: Convert MTU-exceeded errors
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib-networking/wip/pwithnall/dtls: 2/8] gnutls: Convert MTU-exceeded errors
- Date: Mon, 11 Jan 2016 17:11:25 +0000 (UTC)
commit 0ff114cd53187de38674fa3e266396429935c53d
Author: Olivier CrĂȘte <olivier crete collabora com>
Date: Fri Mar 29 18:43:22 2013 -0400
gnutls: Convert MTU-exceeded errors
This is necessary for handling DTLS datagrams, as GnuTLS enforces an MTU
on them.
https://bugzilla.gnome.org/show_bug.cgi?id=697908
tls/gnutls/gtlsconnection-gnutls.c | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
---
diff --git a/tls/gnutls/gtlsconnection-gnutls.c b/tls/gnutls/gtlsconnection-gnutls.c
index 19eb019..4bef706 100644
--- a/tls/gnutls/gtlsconnection-gnutls.c
+++ b/tls/gnutls/gtlsconnection-gnutls.c
@@ -26,6 +26,7 @@
#include <errno.h>
#include <stdarg.h>
#include <gnutls/gnutls.h>
+#include <gnutls/dtls.h>
#include <gnutls/x509.h>
#include "gtlsconnection-gnutls.h"
@@ -1099,6 +1100,8 @@ set_gnutls_error (GTlsConnectionGnutls *gnutls,
gnutls_transport_set_errno (gnutls->priv->session, EINTR);
else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_TIMED_OUT))
gnutls_transport_set_errno (gnutls->priv->session, EINTR);
+ else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_MESSAGE_TOO_LARGE))
+ gnutls_transport_set_errno (gnutls->priv->session, EMSGSIZE);
else
gnutls_transport_set_errno (gnutls->priv->session, EIO);
}
@@ -1655,10 +1658,22 @@ g_tls_connection_gnutls_write (GTlsConnectionGnutls *gnutls,
blocking, cancellable, error))
return -1;
+ if (gnutls_dtls_get_data_mtu (gnutls->priv->session) < count)
+ {
+ ret = GNUTLS_E_LARGE_PACKET;
+ g_set_error (error, G_IO_ERROR, G_IO_ERROR_MESSAGE_TOO_LARGE,
+ _("Message of size %lu bytes is too large for "
+ "DTLS connection, maximum is %u bytes"),
+ count,
+ (guint) gnutls_dtls_get_data_mtu (gnutls->priv->session));
+ goto done;
+ }
+
BEGIN_GNUTLS_IO (gnutls, G_IO_OUT, blocking, cancellable);
ret = gnutls_record_send (gnutls->priv->session, buffer, count);
END_GNUTLS_IO (gnutls, G_IO_OUT, ret, _("Error writing data to TLS socket: %s"), error);
+ done:
yield_op (gnutls, G_TLS_CONNECTION_GNUTLS_OP_WRITE);
if (ret >= 0)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]