1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#include "utils/s2n_socket.h"
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <unistd.h>
#include "tls/s2n_connection.h"
#include "utils/s2n_safety.h"
#if TCP_CORK
#define S2N_CORK TCP_CORK
#define S2N_CORK_ON 1
#define S2N_CORK_OFF 0
#elif TCP_NOPUSH
#define S2N_CORK TCP_NOPUSH
#define S2N_CORK_ON 1
#define S2N_CORK_OFF 0
#elif TCP_NODELAY
#define S2N_CORK TCP_NODELAY
#define S2N_CORK_ON 0
#define S2N_CORK_OFF 1
#endif
int s2n_socket_quickack(struct s2n_connection *conn)
{
#ifdef TCP_QUICKACK
POSIX_ENSURE_REF(conn);
if (!conn->managed_recv_io) {
return 0;
}
struct s2n_socket_read_io_context *r_io_ctx = (struct s2n_socket_read_io_context *) conn->recv_io_context;
POSIX_ENSURE_REF(r_io_ctx);
if (r_io_ctx->tcp_quickack_set) {
return 0;
}
/* Ignore the return value, if it fails it fails */
int optval = 1;
if (setsockopt(r_io_ctx->fd, IPPROTO_TCP, TCP_QUICKACK, &optval, sizeof(optval)) == 0) {
r_io_ctx->tcp_quickack_set = 1;
}
#endif
return 0;
}
int s2n_socket_write_snapshot(struct s2n_connection *conn)
{
#ifdef S2N_CORK
socklen_t corklen = sizeof(int);
POSIX_ENSURE_REF(conn);
struct s2n_socket_write_io_context *w_io_ctx = (struct s2n_socket_write_io_context *) conn->send_io_context;
POSIX_ENSURE_REF(w_io_ctx);
getsockopt(w_io_ctx->fd, IPPROTO_TCP, S2N_CORK, &w_io_ctx->original_cork_val, &corklen);
POSIX_ENSURE_EQ(corklen, sizeof(int));
w_io_ctx->original_cork_is_set = 1;
#endif
return 0;
}
int s2n_socket_read_snapshot(struct s2n_connection *conn)
{
#ifdef SO_RCVLOWAT
socklen_t watlen = sizeof(int);
POSIX_ENSURE_REF(conn);
struct s2n_socket_read_io_context *r_io_ctx = (struct s2n_socket_read_io_context *) conn->recv_io_context;
POSIX_ENSURE_REF(r_io_ctx);
getsockopt(r_io_ctx->fd, SOL_SOCKET, SO_RCVLOWAT, &r_io_ctx->original_rcvlowat_val, &watlen);
POSIX_ENSURE_EQ(watlen, sizeof(int));
r_io_ctx->original_rcvlowat_is_set = 1;
#endif
return 0;
}
int s2n_socket_write_restore(struct s2n_connection *conn)
{
#ifdef S2N_CORK
POSIX_ENSURE_REF(conn);
struct s2n_socket_write_io_context *w_io_ctx = (struct s2n_socket_write_io_context *) conn->send_io_context;
POSIX_ENSURE_REF(w_io_ctx);
if (!w_io_ctx->original_cork_is_set) {
return 0;
}
setsockopt(w_io_ctx->fd, IPPROTO_TCP, S2N_CORK, &w_io_ctx->original_cork_val, sizeof(w_io_ctx->original_cork_val));
w_io_ctx->original_cork_is_set = 0;
#endif
return 0;
}
int s2n_socket_read_restore(struct s2n_connection *conn)
{
#ifdef SO_RCVLOWAT
POSIX_ENSURE_REF(conn);
struct s2n_socket_read_io_context *r_io_ctx = (struct s2n_socket_read_io_context *) conn->recv_io_context;
POSIX_ENSURE_REF(r_io_ctx);
if (!r_io_ctx->original_rcvlowat_is_set) {
return 0;
}
setsockopt(r_io_ctx->fd, SOL_SOCKET, SO_RCVLOWAT, &r_io_ctx->original_rcvlowat_val, sizeof(r_io_ctx->original_rcvlowat_val));
r_io_ctx->original_rcvlowat_is_set = 0;
#endif
return 0;
}
int s2n_socket_was_corked(struct s2n_connection *conn)
{
POSIX_ENSURE_REF(conn);
/* If we're not using custom I/O and a send fd has not been set yet, return false*/
if (!conn->managed_send_io || !conn->send) {
return 0;
}
struct s2n_socket_write_io_context *io_ctx = (struct s2n_socket_write_io_context *) conn->send_io_context;
POSIX_ENSURE_REF(io_ctx);
return io_ctx->original_cork_val;
}
int s2n_socket_write_cork(struct s2n_connection *conn)
{
#ifdef S2N_CORK
POSIX_ENSURE_REF(conn);
int optval = S2N_CORK_ON;
struct s2n_socket_write_io_context *w_io_ctx = (struct s2n_socket_write_io_context *) conn->send_io_context;
POSIX_ENSURE_REF(w_io_ctx);
/* Ignore the return value, if it fails it fails */
setsockopt(w_io_ctx->fd, IPPROTO_TCP, S2N_CORK, &optval, sizeof(optval));
#endif
return 0;
}
int s2n_socket_write_uncork(struct s2n_connection *conn)
{
#ifdef S2N_CORK
POSIX_ENSURE_REF(conn);
int optval = S2N_CORK_OFF;
struct s2n_socket_write_io_context *w_io_ctx = (struct s2n_socket_write_io_context *) conn->send_io_context;
POSIX_ENSURE_REF(w_io_ctx);
/* Ignore the return value, if it fails it fails */
setsockopt(w_io_ctx->fd, IPPROTO_TCP, S2N_CORK, &optval, sizeof(optval));
#endif
return 0;
}
int s2n_socket_set_read_size(struct s2n_connection *conn, int size)
{
#ifdef SO_RCVLOWAT
POSIX_ENSURE_REF(conn);
struct s2n_socket_read_io_context *r_io_ctx = (struct s2n_socket_read_io_context *) conn->recv_io_context;
POSIX_ENSURE_REF(r_io_ctx);
setsockopt(r_io_ctx->fd, SOL_SOCKET, SO_RCVLOWAT, &size, sizeof(size));
#endif
return 0;
}
int s2n_socket_read(void *io_context, uint8_t *buf, uint32_t len)
{
POSIX_ENSURE_REF(io_context);
POSIX_ENSURE_REF(buf);
int rfd = ((struct s2n_socket_read_io_context *) io_context)->fd;
if (rfd < 0) {
errno = EBADF;
POSIX_BAIL(S2N_ERR_BAD_FD);
}
/* Clear the quickack flag so we know to reset it */
((struct s2n_socket_read_io_context *) io_context)->tcp_quickack_set = 0;
/* On success, the number of bytes read is returned. On failure, -1 is
* returned and errno is set appropriately. */
ssize_t result = read(rfd, buf, len);
POSIX_ENSURE_INCLUSIVE_RANGE(INT_MIN, result, INT_MAX);
return result;
}
int s2n_socket_write(void *io_context, const uint8_t *buf, uint32_t len)
{
POSIX_ENSURE_REF(io_context);
POSIX_ENSURE_REF(buf);
int wfd = ((struct s2n_socket_write_io_context *) io_context)->fd;
if (wfd < 0) {
errno = EBADF;
POSIX_BAIL(S2N_ERR_BAD_FD);
}
/* On success, the number of bytes written is returned. On failure, -1 is
* returned and errno is set appropriately. */
ssize_t result = write(wfd, buf, len);
POSIX_ENSURE_INCLUSIVE_RANGE(INT_MIN, result, INT_MAX);
return result;
}
int s2n_socket_is_ipv6(int fd, uint8_t *ipv6)
{
POSIX_ENSURE_REF(ipv6);
socklen_t len;
struct sockaddr_storage addr;
len = sizeof(addr);
POSIX_GUARD(getpeername(fd, (struct sockaddr *) &addr, &len));
*ipv6 = 0;
if (AF_INET6 == addr.ss_family) {
*ipv6 = 1;
}
return 0;
}
|