forked from swoole/swoole-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection.h
312 lines (279 loc) Β· 7.67 KB
/
connection.h
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef SW_CONNECTION_H_
#define SW_CONNECTION_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "buffer.h"
#ifdef SW_USE_OPENSSL
#include <openssl/bio.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/conf.h>
#include <openssl/ossl_typ.h>
#define SW_SSL_BUFFER 1
#define SW_SSL_CLIENT 2
typedef struct _swSSL_option
{
char *cert_file;
char *key_file;
char *passphrase;
char *client_cert_file;
#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
uint8_t disable_tls_host_name :1;
char *tls_host_name;
#endif
char *cafile;
char *capath;
uint8_t verify_depth;
uint8_t method;
uint8_t disable_compress :1;
uint8_t verify_peer :1;
uint8_t allow_self_signed :1;
} swSSL_option;
#endif
int swConnection_buffer_send(swConnection *conn);
int swConnection_sendfile(swConnection *conn, char *filename, off_t offset, size_t length);
int swConnection_onSendfile(swConnection *conn, swBuffer_chunk *chunk);
void swConnection_sendfile_destructor(swBuffer_chunk *chunk);
const char* swConnection_get_ip(swConnection *conn);
int swConnection_get_port(swConnection *conn);
static sw_inline swString *swConnection_get_buffer(swConnection *conn)
{
swString *buffer = conn->recv_buffer;
if (buffer == NULL)
{
buffer = swString_new(SW_BUFFER_SIZE_BIG);
//alloc memory failed.
if (!buffer)
{
return NULL;
}
conn->recv_buffer = buffer;
}
return buffer;
}
static sw_inline void swConnection_free_buffer(swConnection *conn)
{
if (conn->recv_buffer)
{
swString_free(conn->recv_buffer);
conn->recv_buffer = NULL;
}
}
#ifdef SW_USE_OPENSSL
enum swSSLState
{
SW_SSL_STATE_HANDSHAKE = 0,
SW_SSL_STATE_READY = 1,
SW_SSL_STATE_WAIT_STREAM = 2,
};
enum swSSLMethod
{
SW_SSLv23_METHOD = 0,
SW_SSLv3_METHOD,
SW_SSLv3_SERVER_METHOD,
SW_SSLv3_CLIENT_METHOD,
SW_SSLv23_SERVER_METHOD,
SW_SSLv23_CLIENT_METHOD,
SW_TLSv1_METHOD,
SW_TLSv1_SERVER_METHOD,
SW_TLSv1_CLIENT_METHOD,
#ifdef TLS1_1_VERSION
SW_TLSv1_1_METHOD,
SW_TLSv1_1_SERVER_METHOD,
SW_TLSv1_1_CLIENT_METHOD,
#endif
#ifdef TLS1_2_VERSION
SW_TLSv1_2_METHOD,
SW_TLSv1_2_SERVER_METHOD,
SW_TLSv1_2_CLIENT_METHOD,
#endif
SW_DTLSv1_METHOD,
SW_DTLSv1_SERVER_METHOD,
SW_DTLSv1_CLIENT_METHOD,
};
typedef struct
{
uint32_t http :1;
uint32_t http_v2 :1;
uint32_t prefer_server_ciphers :1;
uint32_t session_tickets :1;
uint32_t stapling :1;
uint32_t stapling_verify :1;
char *ciphers;
char *ecdh_curve;
char *session_cache;
char *dhparam;
} swSSL_config;
void swSSL_init(void);
void swSSL_init_thread_safety();
int swSSL_server_set_cipher(SSL_CTX* ssl_context, swSSL_config *cfg);
void swSSL_server_http_advise(SSL_CTX* ssl_context, swSSL_config *cfg);
SSL_CTX* swSSL_get_context(swSSL_option *option);
void swSSL_free_context(SSL_CTX* ssl_context);
int swSSL_create(swConnection *conn, SSL_CTX* ssl_context, int flags);
int swSSL_set_client_certificate(SSL_CTX *ctx, char *cert_file, int depth);
int swSSL_set_capath(swSSL_option *cfg, SSL_CTX *ctx);
int swSSL_check_host(swConnection *conn, char *tls_host_name);
int swSSL_get_client_certificate(SSL *ssl, char *buffer, size_t length);
int swSSL_verify(swConnection *conn, int allow_self_signed);
int swSSL_accept(swConnection *conn);
int swSSL_connect(swConnection *conn);
void swSSL_close(swConnection *conn);
ssize_t swSSL_recv(swConnection *conn, void *__buf, size_t __n);
ssize_t swSSL_send(swConnection *conn, void *__buf, size_t __n);
int swSSL_sendfile(swConnection *conn, int fd, off_t *offset, size_t size);
#endif
/**
* Receive data from connection
*/
static sw_inline ssize_t swConnection_recv(swConnection *conn, void *__buf, size_t __n, int __flags)
{
ssize_t total_bytes = 0;
do
{
#ifdef SW_USE_OPENSSL
if (conn->ssl)
{
ssize_t retval = 0;
while ((size_t) total_bytes < __n)
{
retval = swSSL_recv(conn, ((char*)__buf) + total_bytes, __n - total_bytes);
if (retval <= 0)
{
if (total_bytes == 0)
{
total_bytes = retval;
}
break;
}
else
{
total_bytes += retval;
if (!(conn->nonblock || (__flags & MSG_WAITALL)))
{
break;
}
}
}
}
else
#endif
{
total_bytes = recv(conn->fd, __buf, __n, __flags);
}
}
while (total_bytes < 0 && errno == EINTR);
#ifdef SW_DEBUG
if (total_bytes > 0)
{
conn->total_recv_bytes += total_bytes;
}
#endif
swTraceLog(SW_TRACE_SOCKET, "recv %ld/%ld bytes, errno=%d", total_bytes, __n, errno);
return total_bytes;
}
/**
* Send data to connection
*/
static sw_inline ssize_t swConnection_send(swConnection *conn, void *__buf, size_t __n, int __flags)
{
ssize_t retval;
do
{
#ifdef SW_USE_OPENSSL
if (conn->ssl)
{
retval = swSSL_send(conn, __buf, __n);
}
else
#endif
{
retval = send(conn->fd, __buf, __n, __flags);
}
}
while (retval < 0 && errno == EINTR);
#ifdef SW_DEBUG
if (retval > 0)
{
conn->total_send_bytes += retval;
}
#endif
swTraceLog(SW_TRACE_SOCKET, "send %ld/%ld bytes, errno=%d", retval, __n, errno);
return retval;
}
/**
* Receive data from connection
*/
static sw_inline ssize_t swConnection_peek(swConnection *conn, void *__buf, size_t __n, int __flags)
{
ssize_t retval;
__flags |= MSG_PEEK;
do
{
#ifdef SW_USE_OPENSSL
if (conn->ssl)
{
retval = SSL_peek(conn->ssl, __buf, __n);
}
else
#endif
{
retval = recv(conn->fd, __buf, __n, __flags);
}
}
while (retval < 0 && errno == EINTR);
swTraceLog(SW_TRACE_SOCKET, "peek %ld/%ld bytes, errno=%d", retval, __n, errno);
return retval;
}
static sw_inline int swConnection_error(int err)
{
switch (err)
{
case EFAULT:
abort();
return SW_ERROR;
case EBADF:
case ECONNRESET:
#ifdef __CYGWIN__
case ECONNABORTED:
#endif
case EPIPE:
case ENOTCONN:
case ETIMEDOUT:
case ECONNREFUSED:
case ENETDOWN:
case ENETUNREACH:
case EHOSTDOWN:
case EHOSTUNREACH:
case SW_ERROR_SSL_BAD_CLIENT:
return SW_CLOSE;
case EAGAIN:
#ifdef HAVE_KQUEUE
case ENOBUFS:
#endif
case 0:
return SW_WAIT;
default:
return SW_ERROR;
}
}
#ifdef __cplusplus
}
#endif
#endif /* SW_CONNECTION_H_ */