summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2017-04-10 12:39:46 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2017-04-14 20:44:28 +0300
commit6735ca90e5b4e3d2f4434a76a5eb47592f7dc270 (patch)
treebf194811c0f39fee46956bd7e978657ecb442220
parent08fd00b680fe100b83a642b0711594c700bf4403 (diff)
downloadgnutls-6735ca90e5b4e3d2f4434a76a5eb47592f7dc270.tar.gz
lib/system/fastopen: Add TCP Fast Open for OSX
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
m---------devel/openssl0
-rw-r--r--lib/system/fastopen.c32
2 files changed, 27 insertions, 5 deletions
diff --git a/devel/openssl b/devel/openssl
-Subproject 6b02b586c35359e338cfa151341e49aeb01590d
+Subproject 988d11b64193da65e7f9bbf436ad2a08d8d5714
diff --git a/lib/system/fastopen.c b/lib/system/fastopen.c
index 146e8ec6e8..18e82ee446 100644
--- a/lib/system/fastopen.c
+++ b/lib/system/fastopen.c
@@ -35,6 +35,13 @@
# include <netinet/tcp.h>
#endif
+/* TCP Fast Open on OSX behaves differently from Linux, so define these helpers */
+#if defined __APPLE__ && defined __MACH__ && defined CONNECT_DATA_IDEMPOTENT && defined CONNECT_RESUME_ON_READ_WRITE
+# define TCP_FASTOPEN_OSX
+#elif defined TCP_FASTOPEN && defined MSG_FASTOPEN
+# define TCP_FASTOPEN_LINUX
+#endif
+
/* Do not use the gnulib functions for sending and receiving data.
* Using them makes gnutls only working with gnulib applications.
*/
@@ -85,7 +92,7 @@ tfo_writev(gnutls_transport_ptr_t ptr, const giovec_t * iovec, int iovec_cnt)
if (likely(!p->connect_addrlen))
return sendmsg(fd, &hdr, p->flags);
-#ifdef MSG_FASTOPEN
+# if defined(TCP_FASTOPEN_LINUX)
if (!p->connect_only) {
if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &on, sizeof(on)) == -1)
_gnutls_debug_log("Failed to set socket option FASTOPEN\n");
@@ -106,9 +113,7 @@ tfo_writev(gnutls_transport_ptr_t ptr, const giovec_t * iovec, int iovec_cnt)
goto connect_only;
}
}
- } else
-#endif
- {
+ } else {
connect_only:
ret = connect(fd, (struct sockaddr*)&p->connect_addr, p->connect_addrlen);
if (errno == ENOTCONN || errno == EINPROGRESS) {
@@ -119,6 +124,23 @@ tfo_writev(gnutls_transport_ptr_t ptr, const giovec_t * iovec, int iovec_cnt)
if (ret == 0)
p->connect_only = 0;
}
+# elif defined(TCP_FASTOPEN_OSX)
+ {
+ sa_endpoints_t endpoints = { .sae_dstaddr = (struct sockaddr*)&p->connect_addr, .sae_dstaddrlen = p->connect_addrlen };
+
+ ret = connectx(fd, &endpoints, SAE_ASSOCID_ANY, CONNECT_RESUME_ON_READ_WRITE | CONNECT_DATA_IDEMPOTENT, NULL, 0, NULL, NULL);
+ if (errno == ENOTCONN || errno == EINPROGRESS) {
+ gnutls_assert();
+ errno = EAGAIN;
+ }
+ }
+# else
+ ret = connect(fd, (struct sockaddr*)&p->connect_addr, p->connect_addrlen);
+ if (errno == ENOTCONN || errno == EINPROGRESS) {
+ gnutls_assert();
+ errno = EAGAIN;
+ }
+# endif
if (ret == 0 || errno != EAGAIN) {
/* This has to be called just once, connect info not needed any more */
@@ -127,7 +149,7 @@ tfo_writev(gnutls_transport_ptr_t ptr, const giovec_t * iovec, int iovec_cnt)
return ret;
}
-#endif
+#endif /* sendmsg */
static
int tfo_recv_timeout(gnutls_transport_ptr_t ptr, unsigned int ms)