forked from allinurl/goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
websocket.h
341 lines (301 loc) · 10 KB
/
websocket.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/**
* _______ _______ __ __
* / ____/ | / / ___/____ _____/ /_____ / /_
* / / __ | | /| / /\__ \/ __ \/ ___/ //_/ _ \/ __/
* / /_/ / | |/ |/ /___/ / /_/ / /__/ ,< / __/ /_
* \____/ |__/|__//____/\____/\___/_/|_|\___/\__/
*
* The MIT License (MIT)
* Copyright (c) 2009-2016 Gerardo Orellana <hello @ goaccess.io>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef WEBSOCKET_H_INCLUDED
#define WEBSOCKET_H_INCLUDED
#include <netinet/in.h>
#include <limits.h>
#include <sys/select.h>
#if HAVE_LIBSSL
#include <openssl/crypto.h>
#include <openssl/err.h>
#include <openssl/ssl.h>
#endif
#if defined(__linux__) || defined(__CYGWIN__)
# include <endian.h>
#if ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 9))
#if defined(__BYTE_ORDER) && (__BYTE_ORDER == __LITTLE_ENDIAN)
# include <arpa/inet.h>
# define htobe16(x) htons(x)
# define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | \
(((uint64_t)htonl(((uint32_t)(x)))) << 32))
# define be16toh(x) ntohs(x)
# define be32toh(x) ntohl(x)
# define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | \
(((uint64_t)ntohl(((uint32_t)(x)))) << 32))
#else
# error Byte Order not supported!
#endif
#endif
#elif defined(__sun__)
# include <sys/byteorder.h>
# define htobe16(x) BE_16(x)
# define htobe64(x) BE_64(x)
# define be16toh(x) BE_IN16(x)
# define be32toh(x) BE_IN32(x)
# define be64toh(x) BE_IN64(x)
#elif defined(__FreeBSD__) || defined(__NetBSD__)
# include <sys/endian.h>
#elif defined(__OpenBSD__)
# include <sys/types.h>
# if !defined(be16toh)
# define be16toh(x) betoh16(x)
# endif
# if !defined(be32toh)
# define be32toh(x) betoh32(x)
# endif
# if !defined(be64toh)
# define be64toh(x) betoh64(x)
# endif
#elif defined(__APPLE__)
# include <libkern/OSByteOrder.h>
# define htobe16(x) OSSwapHostToBigInt16(x)
# define htobe64(x) OSSwapHostToBigInt64(x)
# define be16toh(x) OSSwapBigToHostInt16(x)
# define be32toh(x) OSSwapBigToHostInt32(x)
# define be64toh(x) OSSwapBigToHostInt64(x)
#else
# error Platform not supported!
#endif
#define MAX(a,b) (((a)>(b))?(a):(b))
#include "gslist.h"
#define WS_PIPEIN "/tmp/wspipein.fifo"
#define WS_PIPEOUT "/tmp/wspipeout.fifo"
#define WS_BAD_REQUEST_STR "HTTP/1.1 400 Invalid Request\r\n\r\n"
#define WS_SWITCH_PROTO_STR "HTTP/1.1 101 Switching Protocols"
#define WS_TOO_BUSY_STR "HTTP/1.1 503 Service Unavailable\r\n\r\n"
#define CRLF "\r\n"
#define SHA_DIGEST_LENGTH 20
/* packet header is 3 unit32_t : type, size, listener */
#define HDR_SIZE 3 * 4
#define WS_MAX_FRM_SZ 1048576 /* 1 MiB max frame size */
#define WS_THROTTLE_THLD 2097152 /* 2 MiB throttle threshold */
#define WS_MAGIC_STR "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
#define WS_PAYLOAD_EXT16 126
#define WS_PAYLOAD_EXT64 127
#define WS_PAYLOAD_FULL 125
#define WS_FRM_HEAD_SZ 16 /* frame header size */
#define WS_FRM_FIN(x) (((x) >> 7) & 0x01)
#define WS_FRM_MASK(x) (((x) >> 7) & 0x01)
#define WS_FRM_R1(x) (((x) >> 6) & 0x01)
#define WS_FRM_R2(x) (((x) >> 5) & 0x01)
#define WS_FRM_R3(x) (((x) >> 4) & 0x01)
#define WS_FRM_OPCODE(x) ((x) & 0x0F)
#define WS_FRM_PAYLOAD(x) ((x) & 0x7F)
#define WS_CLOSE_NORMAL 1000
#define WS_CLOSE_GOING_AWAY 1001
#define WS_CLOSE_PROTO_ERR 1002
#define WS_CLOSE_INVALID_UTF8 1007
#define WS_CLOSE_TOO_LARGE 1009
#define WS_CLOSE_UNEXPECTED 1011
typedef enum WSSTATUS
{
WS_OK = 0,
WS_ERR = (1 << 0),
WS_CLOSE = (1 << 1),
WS_READING = (1 << 2),
WS_SENDING = (1 << 3),
WS_THROTTLING = (1 << 4),
WS_TLS_ACCEPTING = (1 << 5),
WS_TLS_READING = (1 << 6),
WS_TLS_WRITING = (1 << 7),
WS_TLS_SHUTTING = (1 << 8),
} WSStatus;
typedef enum WSOPCODE
{
WS_OPCODE_CONTINUATION = 0x00,
WS_OPCODE_TEXT = 0x01,
WS_OPCODE_BIN = 0x02,
WS_OPCODE_END = 0x03,
WS_OPCODE_CLOSE = 0x08,
WS_OPCODE_PING = 0x09,
WS_OPCODE_PONG = 0x0A,
} WSOpcode;
typedef struct WSQueue_
{
char *queued; /* queue data */
int qlen; /* queue length */
} WSQueue;
typedef struct WSPacket_
{
uint32_t type; /* packet type (fixed-size) */
uint32_t size; /* payload size in bytes (fixed-size) */
char *data; /* payload */
int len; /* payload buffer len */
} WSPacket;
/* WS HTTP Headers */
typedef struct WSHeaders_
{
int reading;
int buflen;
char buf[BUFSIZ + 1];
char *agent;
char *path;
char *method;
char *protocol;
char *host;
char *origin;
char *upgrade;
char *referer;
char *connection;
char *ws_protocol;
char *ws_key;
char *ws_sock_ver;
char *ws_accept;
char *ws_resp;
} WSHeaders;
/* A WebSocket Message */
typedef struct WSFrame_
{
/* frame format */
WSOpcode opcode; /* frame opcode */
unsigned char fin; /* frame fin flag */
unsigned char mask[4]; /* mask key */
uint8_t res; /* extensions */
int payload_offset; /* end of header/start of payload */
int payloadlen; /* payload length (for each frame) */
/* status flags */
int reading; /* still reading frame's header part? */
int masking; /* are we masking the frame? */
char buf[WS_FRM_HEAD_SZ + 1]; /* frame's header */
int buflen; /* recv'd buf length so far (for each frame) */
} WSFrame;
/* A WebSocket Message */
typedef struct WSMessage_
{
WSOpcode opcode; /* frame opcode */
int fragmented; /* reading a fragmented frame */
int mask_offset; /* for fragmented frames */
char *payload; /* payload message */
int payloadsz; /* total payload size (whole message) */
int buflen; /* recv'd buf length so far (for each frame) */
} WSMessage;
/* FD event states */
typedef struct WSEState_
{
fd_set master;
fd_set rfds;
fd_set wfds;
} WSEState;
/* A WebSocket Client */
typedef struct WSClient_
{
/* socket data */
int listener; /* socket */
char remote_ip[INET6_ADDRSTRLEN]; /* client IP */
WSQueue *sockqueue; /* sending buffer */
WSEState *state; /* FDs states */
WSHeaders *headers; /* HTTP headers */
WSFrame *frame; /* frame headers */
WSMessage *message; /* message */
WSStatus status; /* connection status */
struct timeval start_proc;
struct timeval end_proc;
#ifdef HAVE_LIBSSL
SSL *ssl;
WSStatus sslstatus; /* ssl connection status */
#endif
} WSClient;
/* Config OOptions */
typedef struct WSPipeIn_
{
int fd; /* named pipe FD */
WSPacket *packet; /* FIFO data's buffer */
WSEState *state; /* FDs states */
char hdr[HDR_SIZE]; /* FIFO header's buffer */
int hlen;
} WSPipeIn;
/* Pipe Out */
typedef struct WSPipeOut_
{
int fd; /* named pipe FD */
WSEState *state; /* FDs states */
WSQueue *fifoqueue; /* FIFO out queue */
WSStatus status; /* connection status */
} WSPipeOut;
/* Config OOptions */
typedef struct WSConfig_
{
/* Config Options */
const char *accesslog;
const char *host;
const char *origin;
const char *pipein;
const char *pipeout;
const char *port;
const char *sslcert;
const char *sslkey;
int echomode;
int strict;
int max_frm_size;
int use_ssl;
} WSConfig;
/* A WebSocket Instance */
typedef struct WSServer_
{
/* Server Status */
int closing;
/* Callbacks */
int (*onclose) (WSPipeOut * pipeout, WSClient * client);
int (*onmessage) (WSPipeOut * pipeout, WSClient * client);
int (*onopen) (WSPipeOut * pipeout, WSClient * client);
/* self-pipe */
int self_pipe[2];
/* FIFO reader */
WSPipeIn *pipein;
/* FIFO writer */
WSPipeOut *pipeout;
/* Connected Clients */
GSLList *colist;
#ifdef HAVE_LIBSSL
SSL_CTX *ctx;
#endif
} WSServer;
int ws_read_fifo (int fd, char *buf, int *buflen, int pos, int need);
int ws_send_data (WSClient * client, WSOpcode opcode, const char *p, int sz);
int ws_setfifo (const char *pipename);
int ws_validate_string (const char *str, int len);
int ws_write_fifo (WSPipeOut * pipeout, char *buffer, int len);
size_t pack_uint32 (void *buf, uint32_t val);
size_t unpack_uint32 (const void *buf, uint32_t * val);
void set_nonblocking (int listener);
void ws_set_config_accesslog (const char *accesslog);
void ws_set_config_echomode (int echomode);
void ws_set_config_frame_size (int max_frm_size);
void ws_set_config_host (const char *host);
void ws_set_config_origin (const char *origin);
void ws_set_config_pipein (const char *pipein);
void ws_set_config_pipeout (const char *pipeout);
void ws_set_config_port (const char *port);
void ws_set_config_sslcert (const char *sslcert);
void ws_set_config_sslkey (const char *sslkey);
void ws_set_config_strict (int strict);
void ws_start (WSServer * server);
void ws_stop (WSServer * server);
WSServer *ws_init (const char *host, const char *port);
#endif // for #ifndef WEBSOCKET_H