-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathport_socket.c
749 lines (624 loc) · 16.5 KB
/
port_socket.c
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
/*
Copyright 2010-2015 Karl Robillard
This file is part of the Boron programming language.
Boron is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Boron is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Boron. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef _WIN32
#include <time.h>
#include <stdio.h>
#include <string.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#define ssize_t int
#define SOCKET_ERR WSAGetLastErrorMessage()
#define INVALID(s) (s == INVALID_SOCKET)
static char* WSAGetLastErrorMessage()
{
static char buf[40];
sprintf( buf, "%d", WSAGetLastError() );
return buf;
}
#else
#include <errno.h>
#include <string.h>
#include <sys/socket.h>
#include <netdb.h>
#include <fcntl.h>
#define SOCKET int
#define SOCKET_ERR strerror(errno)
#define INVALID(s) (s < 0)
#define closesocket close
#endif
#include "boron.h"
#include "os.h"
#define FD used
#define TCP elemSize
typedef struct
{
const UPortDevice* dev;
struct sockaddr addr;
socklen_t addrlen;
#ifdef _WIN32
HANDLE event;
#endif
}
SocketExt;
typedef struct
{
const char* node;
const char* service;
int socktype;
}
NodeServ;
UPortDevice port_listenSocket;
UPortDevice port_socket;
/*
Initialize NodeServ from strings like "myhost.net",
"udp://myhost.net:180", "tcp://:4600", etc.
Pointers are to the Boron temporary thread binary buffer.
*/
static void stringToNodeServ( UThread* ut, const UCell* strC, NodeServ* ns )
{
char* start;
char* cp;
ns->node = ns->service = 0;
ns->socktype = SOCK_STREAM;
start = boron_cstr( ut, strC, 0 );
if( start )
{
ns->node = start;
for( cp = start; *cp; ++cp )
{
if( *cp == ':' )
{
if( cp[1] == '/' && cp[2] == '/' )
{
if( start[0] == 'u' && start[1] == 'd' && start[2] == 'p' )
ns->socktype = SOCK_DGRAM;
if( cp[3] == ':' )
ns->node = 0;
else
ns->node = cp + 3;
cp += 2;
}
else
{
*cp++ = '\0';
ns->service = cp;
break;
}
}
}
}
//printf( "KR node: {%s} service: {%s}\n", ns->node, ns->service );
}
static int makeSockAddr( UThread* ut, SocketExt* ext, const NodeServ* ns )
{
struct addrinfo hints;
struct addrinfo* res;
int err;
memset( &hints, 0, sizeof(hints) );
hints.ai_family = AF_INET; // AF_UNSPEC
hints.ai_socktype = ns->socktype;
if( ! ns->node )
hints.ai_flags = AI_PASSIVE;
err = getaddrinfo( ns->node, ns->service, &hints, &res );
if( err )
{
return ur_error( ut, UR_ERR_SCRIPT, "getaddrinfo (%s)",
gai_strerror( err ) );
}
memcpy( &ext->addr, res->ai_addr, res->ai_addrlen );
ext->addrlen = res->ai_addrlen;
freeaddrinfo( res );
return UR_OK;
}
static SocketExt* _socketPort( UThread* ut, UCell* cell, const char* funcName )
{
SocketExt* ext;
UBuffer* pbuf = ur_buffer( cell->series.buf );
if( (pbuf->form == UR_PORT_EXT) && pbuf->ptr.v )
{
ext = ur_ptr(SocketExt, pbuf);
if( ext->dev == &port_socket )
return ext;
}
ur_error( ut, UR_ERR_SCRIPT, "%s expected socket port", funcName );
return 0;
}
/*-cf-
set-addr
socket port!
hostname string!
return: unset!
group: os
Set Internet address of socket.
*/
CFUNC_PUB( cfunc_set_addr )
{
const UCell* addr = a1+1;
ur_setId(res, UT_UNSET);
if( ur_is(a1, UT_PORT) )
{
SocketExt* ext = _socketPort( ut, a1, "set-addr" );
if( ! ext )
return UR_THROW;
if( ur_is(addr, UT_STRING) )
{
NodeServ ns;
stringToNodeServ( ut, addr, &ns );
return makeSockAddr( ut, ext, &ns );
}
}
return ur_error( ut, UR_ERR_TYPE, "set-addr expected port! string!" );
}
/*-cf-
hostname
socket none!/port!
return: string!
group: os
Get name of local host (if socket is none) or peer (if socket is a port).
*/
CFUNC_PUB( cfunc_hostname )
{
#define HLEN 80
#define SLEN 10
char host[ HLEN ];
char serv[ SLEN ];
UBuffer* str;
int len;
int sl;
if( ur_is(a1, UT_PORT) )
{
int err;
SocketExt* ext = _socketPort( ut, a1, "hostname" );
if( ! ext )
return UR_THROW;
err = getnameinfo( &ext->addr, ext->addrlen, host, HLEN, serv, SLEN,
/*NI_NUMERICHOST |*/ NI_NUMERICSERV );
if( ! err )
{
sl = strLen( serv );
goto makeStr;
}
return ur_error( ut, UR_ERR_ACCESS, "getnameinfo %s",
gai_strerror( err ) );
}
else if( ur_is(a1, UT_NONE) )
{
if( gethostname( host, HLEN ) == 0 )
{
sl = 0;
goto makeStr;
}
return ur_error( ut, UR_ERR_ACCESS, "gethostname %s", SOCKET_ERR );
}
return ur_error( ut, UR_ERR_TYPE, "hostname expected none!/port!" );
makeStr:
host[ HLEN - 1 ] = '\0';
len = strLen( host );
str = ur_makeStringCell( ut, UR_ENC_LATIN1, len + sl + 1, res );
memCpy( str->ptr.c, host, len );
if( sl )
{
str->ptr.c[ len++ ] = ':';
memCpy( str->ptr.c + len, serv, sl );
len += sl;
}
str->used = len;
return UR_OK;
}
/*
\param ext If non-zero, then bind socket to ext->addr.
*/
static int _openUdpSocket( UThread* ut, SocketExt* ext, int nowait )
{
SOCKET fd;
fd = socket( AF_INET, SOCK_DGRAM, 0 );
if( INVALID(fd) )
{
ur_error( ut, UR_ERR_ACCESS, "socket %s", SOCKET_ERR );
return -1;
}
if( nowait )
{
#ifdef _WIN32
u_long flags = 1;
ioctlsocket( fd, FIONBIO, &flags );
#else
fcntl( fd, F_SETFL, fcntl( fd, F_GETFL, 0 ) | O_NONBLOCK );
#endif
}
if( ext )
{
if( bind( fd, &ext->addr, ext->addrlen ) < 0 )
{
closesocket( fd );
ur_error( ut, UR_ERR_ACCESS, "bind %s", SOCKET_ERR );
return -1;
}
}
return fd;
}
static int _openTcpClient( UThread* ut, struct sockaddr* addr,
socklen_t addrlen )
{
SOCKET fd;
#ifdef __APPLE__
int yes = 1;
#endif
fd = socket( AF_INET, SOCK_STREAM, 0 );
if( INVALID(fd) )
{
ur_error( ut, UR_ERR_ACCESS, "socket %s", SOCKET_ERR );
return -1;
}
#ifdef __APPLE__
if( setsockopt( fd, SOL_SOCKET, SO_NOSIGPIPE, &yes, sizeof(int) ) != 0 )
{
closesocket( fd );
ur_error( ut, UR_ERR_ACCESS, "setsockopt %s", SOCKET_ERR );
return -1;
}
#endif
if( connect( fd, addr, addrlen ) < 0 )
{
closesocket( fd );
ur_error( ut, UR_ERR_ACCESS, "connect %s", SOCKET_ERR );
return -1;
}
return fd;
}
static int _openTcpServer( UThread* ut, struct sockaddr* addr,
socklen_t addrlen, int backlog )
{
SOCKET fd;
int yes = 1;
fd = socket( AF_INET, SOCK_STREAM, 0 );
if( INVALID(fd) )
{
ur_error( ut, UR_ERR_ACCESS, "socket %s", SOCKET_ERR );
return -1;
}
if( setsockopt( fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int) ) != 0 )
{
closesocket( fd );
ur_error( ut, UR_ERR_ACCESS, "setsockopt %s", SOCKET_ERR );
return -1;
}
if( bind( fd, addr, addrlen ) != 0 )
{
closesocket( fd );
ur_error( ut, UR_ERR_ACCESS, "bind %s", SOCKET_ERR );
return -1;
}
if( listen( fd, backlog ) != 0 )
{
closesocket( fd );
ur_error( ut, UR_ERR_ACCESS, "listen %s", SOCKET_ERR );
return -1;
}
return fd;
}
/*
"tcp://host:port"
"tcp://:port"
"udp://host:port"
"udp://:port"
*/
static int socket_open( UThread* ut, const UPortDevice* pdev,
const UCell* from, int opt, UCell* res )
{
NodeServ ns;
SocketExt* ext;
int socket;
int nowait = opt & UR_PORT_NOWAIT;
//int port = 0;
//int hostPort = 0;
//UCell* initAddr = 0;
if( ! ur_is(from, UT_STRING) )
return ur_error( ut, UR_ERR_TYPE, "socket open expected string" );
ext = (SocketExt*) memAlloc( sizeof(SocketExt) );
ext->addrlen = 0;
#ifdef _WIN32
ext->event = WSA_INVALID_EVENT;
#endif
//if( ur_is(from, UT_STRING) )
{
stringToNodeServ( ut, from, &ns );
if( ! makeSockAddr( ut, ext, &ns ) )
goto fail;
}
#if 0
else if( ur_is(from, UT_BLOCK) )
{
/*
['udp local-port]
['udp local-port "host" host-port 'nowait]
['tcp "host" host-port]
*/
UBlockIt bi;
UAtom atoms[3];
ur_internAtoms( ut, "tcp udp nowait", atoms );
ur_blockIt( ut, &bi, from );
ur_foreach( bi )
{
if( ur_is(bi.it, UT_INT) )
{
if( initAddr )
hostPort = ur_int(bi.it);
else
port = ur_int(bi.it);
}
else if( ur_is(bi.it, UT_STRING) )
{
stringToNodeServ( ut, bi.it, &ns );
}
else if( ur_is(bi.it, UT_WORD) )
{
UAtom atom = ur_atom(bi.it);
if( atom == atoms[0] )
ns.socktype = SOCK_STREAM;
else if( atom == atoms[1] )
ns.socktype = SOCK_DGRAM;
else if( atom == atoms[2] )
nowait = 1;
}
}
if( initAddr && hostPort )
{
if( ! makeSockAddr( ut, ext, &ns ) )
goto fail;
}
}
#endif
if( ! ns.service )
{
ur_error( ut, UR_ERR_SCRIPT,
"Socket port requires hostname and/or port" );
goto fail;
}
if( ! boron_requestAccess( ut, "Open socket %s", ns.service ) )
goto fail;
if( ns.socktype == SOCK_DGRAM )
{
socket = _openUdpSocket( ut, ns.node ? 0 : ext, nowait );
}
else
{
if( ns.node && ! (opt & UR_PORT_READ) )
{
socket = _openTcpClient( ut, &ext->addr, ext->addrlen );
}
else
{
socket = _openTcpServer( ut, &ext->addr, ext->addrlen, 10 );
pdev = &port_listenSocket;
}
}
if( socket > -1 )
{
UBuffer* pbuf;
pbuf = boron_makePort( ut, pdev, ext, res );
pbuf->TCP = (ns.socktype == SOCK_STREAM) ? 1 : 0;
pbuf->FD = socket;
//printf( "KR socket_open %d %d\n", pbuf->FD, pbuf->TCP );
return UR_OK;
}
fail:
memFree( ext );
return UR_THROW;
}
static void socket_close( UBuffer* pbuf )
{
//printf( "KR socket_close %d\n", pbuf->FD );
#ifdef _WIN32
SocketExt* ext = ur_ptr(SocketExt, pbuf);
if( ext->event != WSA_INVALID_EVENT )
{
WSACloseEvent( ext->event );
ext->event = WSA_INVALID_EVENT;
}
#endif
if( pbuf->FD > -1 )
{
closesocket( pbuf->FD );
pbuf->FD = -1;
}
memFree( pbuf->ptr.v );
//pbuf->ptr.v = 0; // Done by port_destroy().
}
/*
http://linac.fnal.gov/LINAC/software/locsys/syscode/ipsoftware/IPFragmentation.html
Maximum datagram size is 64K bytes.
Ethernet frame size limit is 1500 bytes.
Limit game packets to 1448 bytes?
*/
static int socket_read( UThread* ut, UBuffer* port, UCell* dest, int len )
{
SocketExt* ext;
ssize_t n;
SOCKET fd = port->FD;
UBuffer* buf = ur_buffer( dest->series.buf );
//printf( "KR socket_read fd:%d tcp:%d len:%d\n", fd, port->TCP, len );
if( port->TCP )
{
n = recv( fd, buf->ptr.c + buf->used, len, 0 ); // TCP
if( ! n )
{
// If blocking, zero means the peer has closed the connection.
closesocket( fd );
port->FD = -1;
}
}
else
{
ext = ur_ptr(SocketExt, port);
n = recvfrom( fd, buf->ptr.c + buf->used, len, 0,
&ext->addr, &ext->addrlen ); // UDP
}
if( n > 0 )
{
buf->used += n;
}
else if( n == -1 )
{
#ifdef _WIN32
int err = WSAGetLastError();
if( (err == WSAEWOULDBLOCK) || (err == WSAEINTR) )
#else
if( (errno == EAGAIN) || (errno == EINTR) )
#endif
{
ur_setId(dest, UT_NONE);
}
else
{
return ur_error( ut, UR_ERR_ACCESS,
"recvfrom %s", SOCKET_ERR );
}
}
else
{
ur_setId(dest, UT_NONE);
}
return UR_OK;
}
#ifdef _WIN32
static HANDLE _createSocketEvent( int socketFD, int accept )
{
HANDLE event = WSACreateEvent();
if( event != WSA_INVALID_EVENT )
{
long mask = accept ? FD_ACCEPT
: FD_CLOSE | FD_READ;
// NOTE: WSAEventSelect put the socket into non-blocking mode.
if( SOCKET_ERROR == WSAEventSelect( socketFD, event, mask ) )
{
WSACloseEvent( event );
event = WSA_INVALID_EVENT;
}
}
return event;
}
#endif
static int socket_accept( UThread* ut, UBuffer* port, UCell* dest, int part )
{
SOCKET fd;
SocketExt* ext;
UBuffer* buf;
(void) part;
ext = (SocketExt*) memAlloc( sizeof(SocketExt) );
ext->addrlen = sizeof(ext->addr);
fd = accept( port->FD, &ext->addr, &ext->addrlen );
if( INVALID(fd) )
{
memFree( ext );
return ur_error( ut, UR_ERR_INTERNAL, "accept %s", SOCKET_ERR );
}
#ifdef _WIN32
// Windows gives the accept fd the same WSAEventSelect association as
// the listener, so we must override it.
#if 0
ext->event = _createSocketEvent( fd, 0 );
#else
{
u_long flags = 0;
WSAEventSelect( fd, NULL, 0 );
ioctlsocket( fd, FIONBIO, &flags );
ext->event = WSA_INVALID_EVENT;
}
#endif
#endif
buf = boron_makePort( ut, &port_socket, ext, dest );
buf->TCP = 1;
buf->FD = fd;
return UR_OK;
}
extern int boron_sliceMem( UThread* ut, const UCell* cell, const void** ptr );
static int socket_write( UThread* ut, UBuffer* port, const UCell* data )
{
const void* buf;
int n;
ssize_t len = boron_sliceMem( ut, data, &buf );
#ifndef __linux__
#define MSG_NOSIGNAL 0
#endif
if( port->FD > -1 && len )
{
if( port->TCP )
{
n = send( port->FD, buf, len, MSG_NOSIGNAL );
}
else
{
SocketExt* ext = ur_ptr(SocketExt, port);
n = sendto( port->FD, buf, len, 0, &ext->addr, ext->addrlen );
}
if( n == -1 )
{
ur_error( ut, UR_ERR_ACCESS, "send %s", SOCKET_ERR );
// An error occured; the socket must not be used again.
closesocket( port->FD );
port->FD = -1;
return UR_THROW;
}
else if( n != len )
{
return ur_error( ut, UR_ERR_ACCESS,
"send only sent %d of %d bytes", n, len );
}
}
return UR_OK;
}
static int socket_seek( UThread* ut, UBuffer* port, UCell* pos, int where )
{
(void) port;
(void) pos;
(void) where;
return ur_error( ut, UR_ERR_SCRIPT, "Cannot seek on socket port" );
}
#ifdef _WIN32
static int socket_waitFD( UBuffer* port, void** handle )
{
int fd = port->FD;
if( fd > -1 )
{
SocketExt* ext = ur_ptr(SocketExt, port);
if( ext->event == WSA_INVALID_EVENT )
{
ext->event = _createSocketEvent(fd, ext->dev == &port_listenSocket);
}
*handle = ext->event;
}
return fd;
}
#else
static int socket_waitFD( UBuffer* port )
{
return port->FD;
}
#endif
UPortDevice port_socket =
{
socket_open, socket_close, socket_read, socket_write, socket_seek,
socket_waitFD, 2048
};
UPortDevice port_listenSocket =
{
socket_open, socket_close, socket_accept, socket_write, socket_seek,
socket_waitFD, 0
};
#ifdef CONFIG_SSL
#include "port_ssl.c"
#endif
/*EOF*/