This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
msgio.cpp
522 lines (427 loc) · 10.5 KB
/
msgio.cpp
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
/*
Copyright 2018 Intel Corporation
This software and the related documents are Intel copyrighted materials,
and your use of them is governed by the express license under which they
were provided to you (License). Unless the License provides otherwise,
you may not use, modify, copy, publish, distribute, disclose or transmit
this software or the related documents without Intel's prior written
permission.
This software and the related documents are provided as is, with no
express or implied warranties, other than those that are expressly stated
in the License.
*/
#ifdef _WIN32
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif
# include <WinSock2.h>
# include <WS2tcpip.h>
typedef DWORD ssize_t;
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sgx_urts.h>
#ifdef _WIN32
# pragma comment(lib, "Ws2_32.lib")
# pragma comment(lib, "Mswsock.lib")
# pragma comment(lib, "AdvApi32.lib")
#else
# include <arpa/inet.h>
# include <sys/socket.h>
# include <netdb.h>
# include <unistd.h>
#endif
#include <exception>
#include <stdexcept>
#include <string>
#include "hexutil.h"
#include "msgio.h"
#include "common.h"
using namespace std;
static char *buffer = NULL;
static uint32_t buffer_size = MSGIO_BUFFER_SZ;
#ifndef _WIN32
# ifndef INVALID_SOCKET
# define INVALID_SOCKET -1
# endif
#endif
/* With no arguments, we read/write to stdin/stdout using stdio */
MsgIO::MsgIO()
{
use_stdio = true;
s= -1;
ls= -1;
}
/* Connect to a remote server and port, and use socket IO */
MsgIO::MsgIO(const char *peer, const char *port)
{
#ifdef _WIN32
WSADATA wsa;
#endif
int rv, proto;
struct addrinfo *addrs, *addr, hints;
s= ls= -1;
use_stdio= false;
#ifdef _WIN32
rv = WSAStartup(MAKEWORD(2, 2), &wsa);
if (rv != 0) {
eprintf("WSAStartup: %d\n", rv);
throw std::runtime_error("WSAStartup failed");
}
#endif
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
if (peer == NULL) hints.ai_flags = AI_PASSIVE; // Server here
hints.ai_protocol = IPPROTO_TCP;
rv= getaddrinfo(peer, port, &hints, &addrs);
if (rv != 0) {
eprintf("getaddrinfo: %s\n", gai_strerror(rv));
throw std::runtime_error("getaddrinfo failed");
}
for (addr= addrs; addr != NULL; addr= addr->ai_next)
{
proto= addr->ai_family;
s= socket(addr->ai_family, addr->ai_socktype,
addr->ai_protocol);
if ( s == -1 ) {
perror("socket");
continue;
}
if ( peer == NULL ) { // We're the server
int enable = 1;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&enable, sizeof(enable));
#ifdef SO_REUSEPORT
setsockopt(s, SOL_SOCKET, SO_REUSEPORT, &enable, sizeof(enable));
#endif
#ifdef IPV6_V6ONLY
// If we have an IPV6 socket, make sure it will accept IPv4 connections, too
if (addr->ai_family == AF_INET6) {
int disable = 0;
setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, (char *)&disable, sizeof(disable));
}
#endif
if ( bind(s, addr->ai_addr, (int) addr->ai_addrlen) == 0 ) break;
} else { // We're the client
if ( connect(s, addr->ai_addr, (int) addr->ai_addrlen) == 0 ) break;
}
#ifdef _WIN32
closesocket(s);
#else
close(s);
#endif
s = INVALID_SOCKET;
}
freeaddrinfo(addrs);
if ( s == INVALID_SOCKET ) {
if ( peer == NULL ) {
#ifdef _WIN32
eprintf("bind: failed on error %ld\n", WSAGetLastError());
#else
perror("bind");
#endif
} else {
eprintf("%s: ", peer);
#ifdef _WIN32
eprintf("connect: failed on error %ld\n", WSAGetLastError());
#else
perror("connect");
#endif
}
throw std::runtime_error("could not establish socket");
}
if ( peer == NULL ) { // Server here. Create our listening socket.
int enable= 1;
ls= s; // Use 'ls' to refer to the listening socket
s = INVALID_SOCKET; // and 's' as the session socket.
if ( listen(ls, 5) == -1 ) { // The "traditional" backlog value in UNIX
perror("listen");
#ifdef _WIN32
closesocket(ls);
#else
close(ls);
#endif
throw std::runtime_error("could not listen on socket");
}
// We have a very simple server: it will block until we get a
// connection.
eprintf("Listening for connections on port %s\n", port);
} else { // Client here
}
}
MsgIO::~MsgIO()
{
// Shutdown our socket(s)
if ( s != -1 ) {
#ifdef _WIN32
shutdown(s, 2);
closesocket(s);
#else
shutdown(s, SHUT_RDWR);
close(s);
#endif
}
if ( ls != -1 ) {
#ifdef _WIN32
shutdown(ls, 2);
closesocket(ls);
#else
shutdown(ls, SHUT_RDWR);
close(ls);
#endif
}
}
int MsgIO::server_loop ()
{
int proto;
struct sockaddr_in6 cliaddr; // Large enough for an IP4 or IP6 peer
socklen_t slen = sizeof(struct sockaddr_in6);
if ( use_stdio ) return 1;
// This will block until we get a client.
printf("Waiting for a client to connect...\n");
fflush(stdout);
s = accept(ls, (sockaddr *) &cliaddr, &slen);
if (s == INVALID_SOCKET) {
#ifdef _WIN32
closesocket(ls);
eprintf("accept: %d\n", WSAGetLastError());
#else
close(ls);
perror("accept");
#endif
return 0;
}
proto = cliaddr.sin6_family;
eprintf("Connection from ");
// A client has connected.
if ( proto == AF_INET ) {
char clihost[INET_ADDRSTRLEN];
sockaddr_in *sa = (sockaddr_in *) &cliaddr;
memset(clihost, 0, sizeof(clihost));
if ( inet_ntop(proto, &sa->sin_addr, clihost,
sizeof(clihost)) != NULL ) {
eprintf("%s", clihost);
} else eprintf("(could not translate network address)");
} else if ( proto == AF_INET6 ) {
char clihost[INET6_ADDRSTRLEN];
memset(clihost, 0, sizeof(clihost));
if ( inet_ntop(proto, &cliaddr.sin6_addr, clihost,
sizeof(clihost)) != NULL ) {
eprintf("%s", clihost);
} else eprintf("(could not translate network address)");
}
eprintf("\n");
return 1;
}
void MsgIO::disconnect ()
{
if ( use_stdio ) return;
if ( s != -1 ) {
#ifdef _WIN32
shutdown(s, 2);
closesocket(s);
#else
shutdown(s, SHUT_RDWR);
close(s);
#endif
}
}
int MsgIO::read(void **dest, size_t *sz)
{
ssize_t bread= 0;
bool repeat= true;
int ws;
if (use_stdio) return read_msg(dest, sz);
/*
* We don't know how many bytes are coming, so read until we find a
* newline.
*/
if ( sz ) *sz= 0;
while (repeat) {
again:
bread= recv(s, lbuffer, sizeof(lbuffer), 0);
if ( bread == -1 ) {
if ( errno == EINTR ) goto again;
perror("recv");
return -1;
}
if ( bread > 0 ) {
size_t idx;
if ( debug ) eprintf("+++ read %ld bytes from socket\n", bread);
rbuffer.append(lbuffer, bread);
idx= rbuffer.find("\r\n");
if ( idx == string::npos ) {
idx= rbuffer.find('\n');
if ( idx == string::npos ) continue;
ws= 1;
} else ws= 2;
if ( idx == 0 ) return 1;
else if ( idx %2 ) {
eprintf("read odd byte count %zu\n", idx);
return 0;
}
if ( sz != NULL ) *sz= idx;
*dest= (char *) malloc(idx/2);
if ( *dest == NULL ) {
perror("malloc");
return -1;
}
if (debug) {
edividerWithText("read buffer");
fwrite(rbuffer.c_str(), 1, idx, stdout);
printf("\n");
edivider();
}
from_hexstring((unsigned char *) *dest, rbuffer.c_str(), idx/2);
rbuffer.erase(0, idx+ws);
return 1;
} else return 0;
}
return -1;
}
void MsgIO::send(void *src, size_t sz)
{
ssize_t bsent;
size_t len;
if (use_stdio) {
send_msg(src, sz);
return;
}
wbuffer.append(hexstring(src, sz));
wbuffer.append("\n");
while ( len= wbuffer.length() ) {
again:
bsent= ::send(s, wbuffer.c_str(), (int) len, 0);
if ( bsent == -1 ) {
if (errno == EINTR) goto again;
perror("send");
return;
}
fwrite(wbuffer.c_str(), 1, bsent, stdout);
if ( bsent == len ) {
wbuffer.clear();
return;
}
wbuffer.erase(0, bsent);
}
}
void MsgIO::send_partial(void *src, size_t sz)
{
if (use_stdio) {
send_msg_partial(src, sz);
return;
}
wbuffer.append(hexstring(src, sz));
}
/*
* Read a msg from stdin. There's a fixed portion and a variable-length
* payload.
*
* Our destination buffer is the entire message plus the payload,
* returned to the caller. This lets them cast it as an sgx_ra_msgN_t
* structure, and take advantage of the flexible array member at the
* end (if it has one, as sgx_ra_msg2_t and sgx_ra_msg3_t do).
*
* All messages are base16 encoded (ASCII hex strings) for simplicity
* and readability. We decode the message into the destination.
*
* We do not allow any whitespace in the incoming message, save for the
* terminating newline.
*
*/
/* Note that these were written back when this was pure C */
int read_msg(void **dest, size_t *sz)
{
size_t bread;
int repeat = 1;
if (buffer == NULL) {
buffer = (char *)malloc(buffer_size);
if (buffer == NULL) {
perror("malloc");
return -1;
}
}
bread = 0;
while (repeat) {
if (fgets(&buffer[bread], (int)(buffer_size - bread), stdin) == NULL) {
if (ferror(stdin)) {
perror("fgets");
return -1;
}
else {
fprintf(stderr, "EOF received\n");
return 0;
}
}
/* If the last char is not a newline, we have more reading to do */
bread = strlen(buffer);
if (bread == 0) {
fprintf(stderr, "EOF received\n");
return 0;
}
if (buffer[bread - 1] == '\n') {
repeat = 0;
--bread; /* Discard the newline */
}
else {
buffer_size += MSGIO_BUFFER_SZ;
buffer = (char *) realloc(buffer, buffer_size);
if (buffer == NULL) return -1;
}
}
/* Make sure we didn't get \r\n */
if (bread && buffer[bread - 1] == '\r') --bread;
if (bread % 2) {
fprintf(stderr, "read odd byte count %zu\n", bread);
return 0; /* base16 encoding = even number of bytes */
}
*dest = malloc(bread / 2);
if (*dest == NULL) return -1;
if (debug) {
edividerWithText("read buffer");
eputs(buffer);
edivider();
}
from_hexstring((unsigned char *) *dest, buffer, bread / 2);
if (sz != NULL) *sz = bread;
return 1;
}
/* Send a partial message (no newline) */
void send_msg_partial(void *src, size_t sz) {
if (sz) print_hexstring(stdout, src, sz);
#ifndef _WIN32
/*
* If were aren't writing to a tty, also print the message to stderr
* so you can still see the output.
*/
if (!isatty(fileno(stdout))) print_hexstring(stderr, src, sz);
#endif
}
void send_msg(void *src, size_t sz)
{
if (sz) print_hexstring(stdout, src, sz);
printf("\n");
#ifndef _WIN32
/* As above */
if (!isatty(fileno(stdout))) {
print_hexstring(stderr, src, sz);
fprintf(stderr, "\n");
}
#endif
/*
* Since we have both stdout and stderr, flush stdout to keep the
* the output stream synchronized.
*/
fflush(stdout);
}
/* Send a partial message (no newline) */
void fsend_msg_partial(FILE *fp, void *src, size_t sz) {
if (sz) print_hexstring(fp, src, sz);
}
void fsend_msg(FILE *fp, void *src, size_t sz)
{
if (sz) print_hexstring(fp, src, sz);
fprintf(fp, "\n");
fflush(fp);
}