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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <map>
#include <string>
#include "echo_server.h"
#include "gtest/gtest.h"
#include "nacl_io/kernel_intercept.h"
#include "nacl_io/kernel_proxy.h"
#include "nacl_io/ossocket.h"
#include "nacl_io/ostypes.h"
#include "ppapi/cpp/message_loop.h"
#include "ppapi_simple/ps.h"
#ifdef PROVIDES_SOCKET_API
using namespace nacl_io;
using namespace sdk_util;
#define LOCAL_HOST 0x7F000001
#define PORT1 4006
#define PORT2 4007
#define ANY_PORT 0
namespace {
void IP4ToSockAddr(uint32_t ip, uint16_t port, struct sockaddr_in* addr) {
memset(addr, 0, sizeof(*addr));
addr->sin_family = AF_INET;
addr->sin_port = htons(port);
addr->sin_addr.s_addr = htonl(ip);
}
static int ki_fcntl_wrapper(int fd, int request, ...) {
va_list ap;
va_start(ap, request);
int rtn = ki_fcntl(fd, request, ap);
va_end(ap);
return rtn;
}
static void SetNonBlocking(int sock) {
int flags = ki_fcntl_wrapper(sock, F_GETFL);
ASSERT_NE(-1, flags);
flags |= O_NONBLOCK;
ASSERT_EQ(0, ki_fcntl_wrapper(sock, F_SETFL, flags));
ASSERT_EQ(flags, ki_fcntl_wrapper(sock, F_GETFL));
}
class SocketTest : public ::testing::Test {
public:
SocketTest() : sock1_(-1), sock2_(-1) {}
void TearDown() {
if (sock1_ != -1)
EXPECT_EQ(0, ki_close(sock1_));
if (sock2_ != -1)
EXPECT_EQ(0, ki_close(sock2_));
}
int Bind(int fd, uint32_t ip, uint16_t port) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
IP4ToSockAddr(ip, port, &addr);
int err = ki_bind(fd, (sockaddr*)&addr, addrlen);
if (err == -1)
return errno;
return 0;
}
protected:
int sock1_;
int sock2_;
};
class SocketTestUDP : public SocketTest {
public:
SocketTestUDP() {}
void SetUp() {
sock1_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
sock2_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
EXPECT_GT(sock1_, -1);
EXPECT_GT(sock2_, -1);
}
};
class SocketTestTCP : public SocketTest {
public:
SocketTestTCP() {}
void SetUp() {
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
sock2_ = ki_socket(AF_INET, SOCK_STREAM, 0);
EXPECT_GT(sock1_, -1);
EXPECT_GT(sock2_, -1);
}
};
class SocketTestWithServer : public ::testing::Test {
public:
SocketTestWithServer() : instance_(PSGetInstanceId()) {
pthread_mutex_init(&ready_lock_, NULL);
pthread_cond_init(&ready_cond_, NULL);
}
void ServerThreadMain() {
loop_.AttachToCurrentThread();
pp::Instance instance(PSGetInstanceId());
EchoServer server(&instance, PORT1, ServerLog, &ready_cond_, &ready_lock_);
loop_.Run();
}
static void* ServerThreadMainStatic(void* arg) {
SocketTestWithServer* test = (SocketTestWithServer*)arg;
test->ServerThreadMain();
return NULL;
}
void SetUp() {
loop_ = pp::MessageLoop(&instance_);
pthread_mutex_lock(&ready_lock_);
// Start an echo server on a background thread.
pthread_create(&server_thread_, NULL, ServerThreadMainStatic, this);
// Wait for thread to signal that it is ready to accept connections.
pthread_cond_wait(&ready_cond_, &ready_lock_);
pthread_mutex_unlock(&ready_lock_);
sock_ = ki_socket(AF_INET, SOCK_STREAM, 0);
EXPECT_GT(sock_, -1);
}
void TearDown() {
// Stop the echo server and the background thread it runs on
loop_.PostQuit(true);
pthread_join(server_thread_, NULL);
ASSERT_EQ(0, ki_close(sock_));
}
static void ServerLog(const char* msg) {
// Uncomment to see logs of echo server on stdout
//printf("server: %s\n", msg);
}
protected:
int sock_;
pp::MessageLoop loop_;
pp::Instance instance_;
pthread_cond_t ready_cond_;
pthread_mutex_t ready_lock_;
pthread_t server_thread_;
};
} // namespace
TEST(SocketTestSimple, Socket) {
EXPECT_EQ(-1, ki_socket(AF_UNIX, SOCK_STREAM, 0));
EXPECT_EQ(errno, EAFNOSUPPORT);
// We don't support RAW sockets
EXPECT_EQ(-1, ki_socket(AF_INET, SOCK_RAW, IPPROTO_TCP));
EXPECT_EQ(EPROTONOSUPPORT, errno);
// Invalid type
EXPECT_EQ(-1, ki_socket(AF_INET, -1, 0));
EXPECT_EQ(EINVAL, errno);
int sock1_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
EXPECT_NE(-1, sock1_);
int sock2_ = ki_socket(AF_INET6, SOCK_DGRAM, 0);
EXPECT_NE(-1, sock2_);
int sock3 = ki_socket(AF_INET, SOCK_STREAM, 0);
EXPECT_NE(-1, sock3);
int sock4 = ki_socket(AF_INET6, SOCK_STREAM, 0);
EXPECT_NE(-1, sock4);
ki_close(sock1_);
ki_close(sock2_);
ki_close(sock3);
ki_close(sock4);
}
TEST_F(SocketTestUDP, Bind) {
// Bind away.
EXPECT_EQ(0, Bind(sock1_, LOCAL_HOST, PORT1));
// Invalid to rebind a socket.
EXPECT_EQ(EINVAL, Bind(sock1_, LOCAL_HOST, PORT1));
// Addr in use.
EXPECT_EQ(EADDRINUSE, Bind(sock2_, LOCAL_HOST, PORT1));
// Bind with a wildcard.
EXPECT_EQ(0, Bind(sock2_, LOCAL_HOST, ANY_PORT));
// Invalid to rebind after wildcard
EXPECT_EQ(EINVAL, Bind(sock2_, LOCAL_HOST, PORT1));
}
TEST_F(SocketTestUDP, SendRecv) {
char outbuf[256];
char inbuf[512];
memset(outbuf, 1, sizeof(outbuf));
memset(inbuf, 0, sizeof(inbuf));
EXPECT_EQ(0, Bind(sock1_, LOCAL_HOST, PORT1));
EXPECT_EQ(0, Bind(sock2_, LOCAL_HOST, PORT2));
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
IP4ToSockAddr(LOCAL_HOST, PORT2, &addr);
int len1 =
ki_sendto(sock1_, outbuf, sizeof(outbuf), 0, (sockaddr*) &addr, addrlen);
EXPECT_EQ(sizeof(outbuf), len1);
// Ensure the buffers are different
EXPECT_NE(0, memcmp(outbuf, inbuf, sizeof(outbuf)));
memset(&addr, 0, sizeof(addr));
// Try to receive the previously sent packet
int len2 =
ki_recvfrom(sock2_, inbuf, sizeof(inbuf), 0, (sockaddr*) &addr, &addrlen);
EXPECT_EQ(sizeof(outbuf), len2);
EXPECT_EQ(sizeof(sockaddr_in), addrlen);
EXPECT_EQ(PORT1, htons(addr.sin_port));
// Now they should be the same
EXPECT_EQ(0, memcmp(outbuf, inbuf, sizeof(outbuf)));
}
TEST_F(SocketTestUDP, SendRecvUnbound) {
char outbuf[256];
char inbuf[512];
memset(outbuf, 1, sizeof(outbuf));
memset(inbuf, 0, sizeof(inbuf));
// Don't bind sock1_, this will automatically bind sock1_ to a random port
// at the time of the first send.
EXPECT_EQ(0, Bind(sock2_, LOCAL_HOST, PORT2));
sockaddr_in addr;
sockaddr_in addr2;
socklen_t addrlen = sizeof(addr2);
IP4ToSockAddr(LOCAL_HOST, PORT2, &addr2);
// The first send hasn't occurred, so the socket is not yet bound.
socklen_t out_addrlen = sizeof(addr);
ASSERT_EQ(0, ki_getsockname(sock1_, (sockaddr*)&addr, &out_addrlen));
EXPECT_EQ(addrlen, out_addrlen);
EXPECT_EQ(0, htonl(addr.sin_addr.s_addr));
EXPECT_EQ(0, htons(addr.sin_port));
int len1 =
ki_sendto(sock1_, outbuf, sizeof(outbuf), 0, (sockaddr*) &addr2, addrlen);
EXPECT_EQ(sizeof(outbuf), len1);
// After the first send, the socket should be bound; the port is set, but
// the address is still 0.
ASSERT_EQ(0, ki_getsockname(sock1_, (sockaddr*)&addr, &out_addrlen));
EXPECT_EQ(addrlen, out_addrlen);
EXPECT_EQ(0, htonl(addr.sin_addr.s_addr));
EXPECT_NE(0, htons(addr.sin_port));
// Ensure the buffers are different
EXPECT_NE(0, memcmp(outbuf, inbuf, sizeof(outbuf)));
// Try to receive the previously sent packet
int len2 =
ki_recvfrom(sock2_, inbuf, sizeof(inbuf), 0, (sockaddr*) &addr, &addrlen);
EXPECT_EQ(sizeof(outbuf), len2);
EXPECT_EQ(sizeof(sockaddr_in), addrlen);
EXPECT_EQ(LOCAL_HOST, htonl(addr.sin_addr.s_addr));
EXPECT_NE(0, htons(addr.sin_port));
// Now they should be the same
EXPECT_EQ(0, memcmp(outbuf, inbuf, sizeof(outbuf)));
}
const size_t kQueueSize = 65536 * 8;
TEST_F(SocketTestUDP, FullFifo) {
char outbuf[16 * 1024];
ASSERT_EQ(0, Bind(sock1_, LOCAL_HOST, PORT1));
ASSERT_EQ(0, Bind(sock2_, LOCAL_HOST, PORT2));
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
IP4ToSockAddr(LOCAL_HOST, PORT2, &addr);
size_t total = 0;
while (total < kQueueSize * 8) {
int len = ki_sendto(sock1_, outbuf, sizeof(outbuf), MSG_DONTWAIT,
(sockaddr*) &addr, addrlen);
if (len <= 0) {
EXPECT_EQ(-1, len);
EXPECT_EQ(EWOULDBLOCK, errno);
break;
}
if (len >= 0) {
EXPECT_EQ(sizeof(outbuf), len);
total += len;
}
}
EXPECT_GT(total, kQueueSize - 1);
EXPECT_LT(total, kQueueSize * 8);
}
TEST_F(SocketTestWithServer, TCPConnect) {
char outbuf[256];
char inbuf[512];
memset(outbuf, 1, sizeof(outbuf));
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
ASSERT_EQ(0, ki_connect(sock_, (sockaddr*) &addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
// Send two different messages to the echo server and verify the
// response matches.
strcpy(outbuf, "hello");
memset(inbuf, 0, sizeof(inbuf));
ASSERT_EQ(sizeof(outbuf), ki_write(sock_, outbuf, sizeof(outbuf)))
<< "socket write failed with: " << strerror(errno);
ASSERT_EQ(sizeof(outbuf), ki_read(sock_, inbuf, sizeof(inbuf)));
EXPECT_EQ(0, memcmp(outbuf, inbuf, sizeof(outbuf)));
strcpy(outbuf, "world");
memset(inbuf, 0, sizeof(inbuf));
ASSERT_EQ(sizeof(outbuf), ki_write(sock_, outbuf, sizeof(outbuf)));
ASSERT_EQ(sizeof(outbuf), ki_read(sock_, inbuf, sizeof(inbuf)));
EXPECT_EQ(0, memcmp(outbuf, inbuf, sizeof(outbuf)));
}
TEST_F(SocketTestWithServer, TCPConnectNonBlock) {
char outbuf[256];
//char inbuf[512];
memset(outbuf, 1, sizeof(outbuf));
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
SetNonBlocking(sock_);
ASSERT_EQ(-1, ki_connect(sock_, (sockaddr*) &addr, addrlen));
ASSERT_EQ(EINPROGRESS, errno)
<< "expected EINPROGRESS but got: " << strerror(errno);
ASSERT_EQ(-1, ki_connect(sock_, (sockaddr*) &addr, addrlen));
ASSERT_EQ(EALREADY, errno);
// Wait for the socket connection to complete using poll()
struct pollfd pollfd = { sock_, POLLIN|POLLOUT, 0 };
ASSERT_EQ(1, ki_poll(&pollfd, 1, -1));
ASSERT_EQ(POLLOUT, pollfd.revents);
// Attempts to connect again should yield EISCONN
ASSERT_EQ(-1, ki_connect(sock_, (sockaddr*) &addr, addrlen));
ASSERT_EQ(EISCONN, errno);
// And SO_ERROR should be 0.
}
TEST_F(SocketTestTCP, TCPConnectFails) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
// 10 is an unassigned well-known port, nothing should be bound to it.
IP4ToSockAddr(LOCAL_HOST, 10, &addr);
ASSERT_EQ(-1, ki_connect(sock1_, (sockaddr*) &addr, addrlen));
ASSERT_EQ(ECONNREFUSED, errno);
}
TEST_F(SocketTest, Getsockopt) {
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
EXPECT_GT(sock1_, -1);
sock2_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
EXPECT_GT(sock1_, -1);
int socket_error = 99;
socklen_t len = sizeof(socket_error);
// Test for valid option (SO_ERROR) which should be 0 when a socket
// is first created.
ASSERT_EQ(0, ki_getsockopt(sock1_, SOL_SOCKET, SO_ERROR,
&socket_error, &len));
ASSERT_EQ(0, socket_error);
ASSERT_EQ(sizeof(socket_error), len);
// Check SO_TYPE for TCP sockets
int socket_type = 0;
len = sizeof(socket_type);
ASSERT_EQ(0, ki_getsockopt(sock1_, SOL_SOCKET, SO_TYPE, &socket_type, &len));
ASSERT_EQ(SOCK_STREAM, socket_type);
ASSERT_EQ(sizeof(socket_type), len);
// Check SO_TYPE for UDP sockets
socket_type = 0;
len = sizeof(socket_type);
ASSERT_EQ(0, ki_getsockopt(sock2_, SOL_SOCKET, SO_TYPE, &socket_type, &len));
ASSERT_EQ(SOCK_DGRAM, socket_type);
ASSERT_EQ(sizeof(socket_type), len);
// Test for an invalid option (-1)
ASSERT_EQ(-1, ki_getsockopt(sock1_, SOL_SOCKET, -1, &socket_error, &len));
ASSERT_EQ(ENOPROTOOPT, errno);
}
TEST_F(SocketTest, Setsockopt) {
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
EXPECT_GT(sock1_, -1);
// It should not be possible to set SO_ERROR using setsockopt.
int socket_error = 10;
socklen_t len = sizeof(socket_error);
ASSERT_EQ(-1, ki_setsockopt(sock1_, SOL_SOCKET, SO_ERROR,
&socket_error, len));
ASSERT_EQ(ENOPROTOOPT, errno);
}
TEST_F(SocketTest, Sockopt_TCP_NODELAY) {
int option = 0;
socklen_t len = sizeof(option);
// Getting and setting TCP_NODELAY on UDP socket should fail
sock1_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
ASSERT_EQ(-1, ki_setsockopt(sock1_, IPPROTO_TCP, TCP_NODELAY, &option, len));
ASSERT_EQ(ENOPROTOOPT, errno);
ASSERT_EQ(-1, ki_getsockopt(sock1_, IPPROTO_TCP, TCP_NODELAY, &option, &len));
ASSERT_EQ(ENOPROTOOPT, errno);
// Getting and setting TCP_NODELAY on TCP socket should preserve value
sock2_ = ki_socket(AF_INET, SOCK_STREAM, 0);
ASSERT_EQ(0, ki_getsockopt(sock2_, IPPROTO_TCP, TCP_NODELAY, &option, &len));
ASSERT_EQ(0, option);
ASSERT_EQ(sizeof(option), len);
option = 1;
len = sizeof(option);
ASSERT_EQ(0, ki_setsockopt(sock2_, IPPROTO_TCP, TCP_NODELAY, &option, len))
<< "Failed with " << errno << ": " << strerror(errno);
ASSERT_EQ(1, option);
}
TEST_F(SocketTest, Sockopt_KEEPALIVE) {
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
ASSERT_GT(sock1_, -1);
sock2_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
ASSERT_GT(sock2_, -1);
int value = 0;
socklen_t len = sizeof(value);
ASSERT_EQ(0, ki_getsockopt(sock1_, SOL_SOCKET, SO_KEEPALIVE, &value, &len));
ASSERT_EQ(0, value);
ASSERT_EQ(sizeof(int), len);
}
// Disabled until we support SO_LINGER (i.e. syncronouse close()/shutdown())
// TODO(sbc): re-enable once we fix http://crbug.com/312401
TEST_F(SocketTest, DISABLED_Sockopt_LINGER) {
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
ASSERT_GT(sock1_, -1);
sock2_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
ASSERT_GT(sock2_, -1);
struct linger linger = { 7, 8 };
socklen_t len = sizeof(linger);
ASSERT_EQ(0, ki_getsockopt(sock1_, SOL_SOCKET, SO_LINGER, &linger, &len));
ASSERT_EQ(0, linger.l_onoff);
ASSERT_EQ(0, linger.l_linger);
ASSERT_EQ(sizeof(struct linger), len);
ASSERT_EQ(0, ki_getsockopt(sock2_, SOL_SOCKET, SO_LINGER, &linger, &len));
ASSERT_EQ(0, linger.l_onoff);
ASSERT_EQ(0, linger.l_linger);
ASSERT_EQ(sizeof(struct linger), len);
linger.l_onoff = 1;
linger.l_linger = 77;
len = sizeof(linger);
ASSERT_EQ(0, ki_setsockopt(sock1_, SOL_SOCKET, SO_LINGER, &linger, len));
linger.l_onoff = 1;
linger.l_linger = 88;
ASSERT_EQ(0, ki_setsockopt(sock2_, SOL_SOCKET, SO_LINGER, &linger, len));
len = sizeof(linger);
ASSERT_EQ(0, ki_getsockopt(sock1_, SOL_SOCKET, SO_LINGER, &linger, &len));
ASSERT_EQ(1, linger.l_onoff);
ASSERT_EQ(77, linger.l_linger);
ASSERT_EQ(sizeof(struct linger), len);
ASSERT_EQ(0, ki_getsockopt(sock2_, SOL_SOCKET, SO_LINGER, &linger, &len));
ASSERT_EQ(1, linger.l_onoff);
ASSERT_EQ(88, linger.l_linger);
ASSERT_EQ(sizeof(struct linger), len);
}
TEST_F(SocketTest, Sockopt_REUSEADDR) {
int value = 1;
socklen_t len = sizeof(value);
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
ASSERT_GT(sock1_, -1);
ASSERT_EQ(0, ki_setsockopt(sock1_, SOL_SOCKET, SO_REUSEADDR, &value, len));
value = 0;
len = sizeof(value);
ASSERT_EQ(0, ki_getsockopt(sock1_, SOL_SOCKET, SO_REUSEADDR, &value, &len));
ASSERT_EQ(1, value);
ASSERT_EQ(sizeof(int), len);
}
// The size of the data to send is deliberately chosen to be
// larger than the TCP buffer in nacl_io.
// TODO(sbc): use ioctl to discover the actual buffer size at
// runtime.
#define LARGE_SEND_BYTES (800 * 1024)
TEST_F(SocketTestWithServer, LargeSend) {
char* outbuf = (char*)malloc(LARGE_SEND_BYTES);
char* inbuf = (char*)malloc(LARGE_SEND_BYTES);
int bytes_sent = 0;
int bytes_received = 0;
// Fill output buffer with ascending integers
int* outbuf_int = (int*)outbuf;
int* inbuf_int = (int*)inbuf;
for (int i = 0; i < LARGE_SEND_BYTES/sizeof(int); i++) {
outbuf_int[i] = i;
}
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
ASSERT_EQ(0, ki_connect(sock_, (sockaddr*) &addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
// Call send an recv until all bytes have been transfered.
while (bytes_received < LARGE_SEND_BYTES) {
if (bytes_sent < LARGE_SEND_BYTES) {
int sent = ki_send(sock_, outbuf + bytes_sent,
LARGE_SEND_BYTES - bytes_sent, MSG_DONTWAIT);
if (sent < 0)
ASSERT_EQ(EWOULDBLOCK, errno) << "send failed: " << strerror(errno);
else
bytes_sent += sent;
}
int received = ki_recv(sock_, inbuf + bytes_received,
LARGE_SEND_BYTES - bytes_received, MSG_DONTWAIT);
if (received < 0)
ASSERT_EQ(EWOULDBLOCK, errno) << "recv failed: " << strerror(errno);
else
bytes_received += received;
}
// Make sure there is nothing else to recv at this point
char dummy[10];
ASSERT_EQ(-1, ki_recv(sock_, dummy, 10, MSG_DONTWAIT));
ASSERT_EQ(EWOULDBLOCK, errno);
int errors = 0;
for (int i = 0; i < LARGE_SEND_BYTES/4; i++) {
if (inbuf_int[i] != outbuf_int[i]) {
printf("%d: in=%d out=%d\n", i, inbuf_int[i], outbuf_int[i]);
if (errors++ > 50)
break;
}
}
for (int i = 0; i < LARGE_SEND_BYTES; i++) {
ASSERT_EQ(outbuf[i], inbuf[i]) << "cmp failed at " << i;
}
ASSERT_EQ(0, memcmp(inbuf, outbuf, LARGE_SEND_BYTES));
free(inbuf);
free(outbuf);
}
TEST_F(SocketTestUDP, Listen) {
EXPECT_EQ(-1, ki_listen(sock1_, 10));
EXPECT_EQ(errno, EOPNOTSUPP);
}
TEST_F(SocketTestUDP, Sockopt_BUFSIZE) {
int option = 1024*1024;
socklen_t len = sizeof(option);
ASSERT_EQ(0, Bind(sock1_, LOCAL_HOST, ANY_PORT));
// Modify the test to verify the change by calling getsockopt
// once UDPInterface supports GetOption() call
ASSERT_EQ(0, ki_setsockopt(sock1_, SOL_SOCKET, SO_RCVBUF, &option, len))
<< "failed with: " << strerror(errno);
ASSERT_EQ(0, ki_setsockopt(sock1_, SOL_SOCKET, SO_SNDBUF, &option, len))
<< "failed with: " << strerror(errno);
}
TEST_F(SocketTestUDP, Sockopt_BROADCAST) {
int option = 1;
socklen_t len = sizeof(option);
ASSERT_EQ(0, Bind(sock1_, LOCAL_HOST, ANY_PORT));
// Modify the test to verify the change by calling getsockopt
// once UDPInterface supports GetOption() call
ASSERT_EQ(0, ki_setsockopt(sock1_, SOL_SOCKET, SO_BROADCAST, &option, len))
<< "failed with: " << strerror(errno);
}
TEST_F(SocketTestTCP, AcceptNoParams) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
int server_sock = sock1_;
// Bind and Listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10));
// Connect to listening socket
int client_sock = sock2_;
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
addrlen = sizeof(addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
// Accept without addr and len should succeed
int new_socket = ki_accept(server_sock, NULL, NULL);
ASSERT_GT(new_socket, -1);
ASSERT_EQ(0, ki_close(new_socket));
}
TEST_F(SocketTestTCP, Listen) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
const char* client_greeting = "hello";
const char* server_reply = "reply";
const int greeting_len = strlen(client_greeting);
const int reply_len = strlen(server_reply);
int server_sock = sock1_;
// Accept before listen should fail
ASSERT_EQ(-1, ki_accept(server_sock, (sockaddr*)&addr, &addrlen));
// Listen should fail on unbound socket
ASSERT_EQ(-1, ki_listen(server_sock, 10));
// Bind and Listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10))
<< "listen failed with: " << strerror(errno);
// Connect to listening socket, and send greeting
int client_sock = sock2_;
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
addrlen = sizeof(addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
ASSERT_EQ(greeting_len, ki_send(client_sock, client_greeting,
greeting_len, 0));
// Pass in addrlen that is larger than our actual address to make
// sure that it is correctly set back to sizeof(sockaddr_in)
sockaddr_in client_addr[2];
sockaddr_in cmp_addr;
memset(&client_addr[0], 0, sizeof(client_addr[0]));
memset(&client_addr[1], 0xab, sizeof(client_addr[1]));
memset(&cmp_addr, 0xab, sizeof(cmp_addr));
addrlen = sizeof(client_addr[0]) + 10;
int new_socket = ki_accept(server_sock, (sockaddr*)&client_addr[0],
&addrlen);
ASSERT_GT(new_socket, -1)
<< "accept failed with " << errno << ": " << strerror(errno);
ASSERT_EQ(addrlen, sizeof(sockaddr_in));
// Check that client_addr[1] and cmp_addr are the same (not overwritten).
ASSERT_EQ(0, memcmp(&client_addr[1], &cmp_addr, sizeof(cmp_addr)));
ASSERT_EQ(0xabab, client_addr[1].sin_port);
// Verify addr and addrlen were set correctly
ASSERT_EQ(addrlen, sizeof(sockaddr_in));
ASSERT_EQ(0, ki_getsockname(client_sock, (sockaddr*)&client_addr[1],
&addrlen));
ASSERT_EQ(client_addr[1].sin_family, client_addr[0].sin_family);
ASSERT_EQ(client_addr[1].sin_port, client_addr[0].sin_port);
ASSERT_EQ(client_addr[1].sin_addr.s_addr, client_addr[0].sin_addr.s_addr);
// Try a call where the supplied len is smaller than the expected length.
// The API should only write up to that amount, but should return the
// expected length.
sockaddr_in client_addr2;
memset(&client_addr2, 0, sizeof(client_addr2));
// truncated_len is the size of the structure up to and including sin_family.
// TODO(sbc): Fix this test so it doesn't depend on the layout of the
// sockaddr_in structure.
socklen_t truncated_len = offsetof(sockaddr_in, sin_family) +
sizeof(client_addr2.sin_family);
ASSERT_GT(sizeof(sockaddr_in), truncated_len);
ASSERT_EQ(0, ki_getsockname(client_sock, (sockaddr*)&client_addr2,
&truncated_len));
ASSERT_EQ(sizeof(sockaddr_in), truncated_len);
ASSERT_EQ(client_addr2.sin_family, client_addr[0].sin_family);
ASSERT_EQ(client_addr2.sin_port, 0);
ASSERT_EQ(client_addr2.sin_addr.s_addr, 0);
// Recv greeting from client and send reply
char inbuf[512];
ASSERT_EQ(greeting_len, ki_recv(new_socket, inbuf, sizeof(inbuf), 0));
inbuf[greeting_len] = 0;
ASSERT_STREQ(inbuf, client_greeting);
ASSERT_EQ(reply_len, ki_send(new_socket, server_reply, reply_len, 0));
// Recv reply on client socket
ASSERT_EQ(reply_len, ki_recv(client_sock, inbuf, sizeof(inbuf), 0));
inbuf[reply_len] = 0;
ASSERT_STREQ(inbuf, server_reply);
ASSERT_EQ(0, ki_close(new_socket));
}
TEST_F(SocketTestTCP, BindAndGetSockName) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
// Bind
ASSERT_EQ(0, Bind(sock1_, LOCAL_HOST, 0));
EXPECT_EQ(0, ki_getsockname(sock1_, (struct sockaddr*)&addr, &addrlen));
EXPECT_NE(0, addr.sin_port);
}
TEST_F(SocketTestTCP, ListenNonBlocking) {
int server_sock = sock1_;
// Set non-blocking
SetNonBlocking(server_sock);
// bind and listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10))
<< "listen failed with: " << strerror(errno);
// Accept should fail with EAGAIN since there is no incomming
// connection.
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
ASSERT_EQ(-1, ki_accept(server_sock, (sockaddr*)&addr, &addrlen));
ASSERT_EQ(EAGAIN, errno);
// If we poll the listening socket it should also return
// not readable to indicate that no connections are available
// to accept.
struct pollfd pollfd = { server_sock, POLLIN|POLLOUT, 0 };
ASSERT_EQ(0, ki_poll(&pollfd, 1, 0));
// Connect to listening socket
int client_sock = sock2_;
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
addrlen = sizeof(addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
// Not poll again but with an infintie timeout.
pollfd.fd = server_sock;
pollfd.events = POLLIN | POLLOUT;
ASSERT_EQ(1, ki_poll(&pollfd, 1, -1));
// Now non-blocking accept should return the new socket
int new_socket = ki_accept(server_sock, (sockaddr*)&addr, &addrlen);
ASSERT_NE(-1, new_socket)
<< "accept failed with: " << strerror(errno);
ASSERT_EQ(0, ki_close(new_socket));
// Accept calls should once again fail with EAGAIN
ASSERT_EQ(-1, ki_accept(server_sock, (sockaddr*)&addr, &addrlen));
ASSERT_EQ(EAGAIN, errno);
// As should polling the listening socket
pollfd.fd = server_sock;
pollfd.events = POLLIN | POLLOUT;
ASSERT_EQ(0, ki_poll(&pollfd, 1, 0));
}
TEST_F(SocketTestTCP, SendRecvAfterRemoteShutdown) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
int server_sock = sock1_;
int client_sock = sock2_;
// bind and listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10))
<< "listen failed with: " << strerror(errno);
// connect to listening socket
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
addrlen = sizeof(addr);
int new_sock = ki_accept(server_sock, (sockaddr*)&addr, &addrlen);
ASSERT_NE(-1, new_sock);
const char* send_buf = "hello world";
ASSERT_EQ(strlen(send_buf), ki_send(new_sock, send_buf, strlen(send_buf), 0));
// Recv first 10 bytes
char buf[256];
ASSERT_EQ(10, ki_recv(client_sock, buf, 10, 0));
// Close the new socket
ASSERT_EQ(0, ki_close(new_sock));
// Sleep for 10 milliseconds. This is designed to allow the shutdown
// event to make its way to the client socket beofre the recv below().
// TODO(sbc): Find a way to test this that doesn't rely on arbitrary sleep.
usleep(100 * 1000);
// Recv remainder
int bytes_remaining = strlen(send_buf) - 10;
ASSERT_EQ(bytes_remaining, ki_recv(client_sock, buf, 256, 0));
// Attempt to read/write after remote shutdown, with no bytes remaining
ASSERT_EQ(0, ki_recv(client_sock, buf, 10, 0));
ASSERT_EQ(0, ki_recv(client_sock, buf, 10, 0));
// It is still legal to send to the remote socket, even after it is closed.
ASSERT_EQ(10, ki_send(client_sock, buf, 10, 0));
}
TEST_F(SocketTestTCP, SendRecvAfterLocalShutdown) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
int server_sock = sock1_;
int client_sock = sock2_;
// bind and listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10))
<< "listen failed with: " << strerror(errno);
// connect to listening socket
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
addrlen = sizeof(addr);
int new_sock = ki_accept(server_sock, (sockaddr*)&addr, &addrlen);
ASSERT_NE(-1, new_sock);
// Close the new socket
ASSERT_EQ(0, ki_shutdown(client_sock, SHUT_RDWR));
// Attempt to read/write after shutdown
char buffer[10];
ASSERT_EQ(0, ki_recv(client_sock, buffer, sizeof(buffer), 0));
ASSERT_EQ(-1, ki_send(client_sock, buffer, sizeof(buffer), 0));
ASSERT_EQ(errno, EPIPE);
}
#define SEND_BYTES (1024)
TEST_F(SocketTestTCP, SendBufferedDataAfterShutdown) {
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
int server_sock = sock1_;
int client_sock = sock2_;
// bind and listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10))
<< "listen failed with: " << strerror(errno);
// connect to listening socket
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
addrlen = sizeof(addr);
int new_sock = ki_accept(server_sock, (sockaddr*)&addr, &addrlen);
ASSERT_NE(-1, new_sock);
// send a fairly large amount of data and immediately close
// the socket.
void* buffer = alloca(SEND_BYTES);
ASSERT_EQ(SEND_BYTES, ki_send(client_sock, buffer, SEND_BYTES, 0));
ASSERT_EQ(0, ki_close(client_sock));
// avoid double close of sock2_
sock2_ = -1;
// Attempt to recv() all the sent data. None should be lost.
int remainder = SEND_BYTES;
while (remainder > 0) {
int rtn = ki_recv(new_sock, buffer, remainder, 0);
ASSERT_GT(rtn, 0);
remainder -= rtn;
}
ASSERT_EQ(0, ki_close(new_sock));
}
TEST_F(SocketTestTCP, Sockopt_BUFSIZE) {
int option = 1024*1024;
socklen_t len = sizeof(option);
sockaddr_in addr;
socklen_t addrlen = sizeof(addr);
int server_sock = sock1_;
int client_sock = sock2_;
// bind and listen
ASSERT_EQ(0, Bind(server_sock, LOCAL_HOST, PORT1));
ASSERT_EQ(0, ki_listen(server_sock, 10))
<< "listen failed with: " << strerror(errno);
// connect to listening socket
IP4ToSockAddr(LOCAL_HOST, PORT1, &addr);
ASSERT_EQ(0, ki_connect(client_sock, (sockaddr*)&addr, addrlen))
<< "Failed with " << errno << ": " << strerror(errno);
addrlen = sizeof(addr);
int new_sock = ki_accept(server_sock, (sockaddr*)&addr, &addrlen);
ASSERT_NE(-1, new_sock);
// Modify the test to verify the change by calling getsockopt
// once TCPInterface supports GetOption() call
ASSERT_EQ(0, ki_setsockopt(sock2_, SOL_SOCKET, SO_RCVBUF, &option, len))
<< "failed with: " << strerror(errno);
ASSERT_EQ(0, ki_setsockopt(sock2_, SOL_SOCKET, SO_SNDBUF, &option, len))
<< "failed with: " << strerror(errno);
}
TEST_F(SocketTest, Sockopt_IP_MULTICAST) {
int ttl = 1;
socklen_t ttl_len = sizeof(ttl);
int loop = 1;
socklen_t loop_len = sizeof(loop);
// Modify the test to verify the change by calling getsockopt
// once UDPInterface supports GetOption() call
//
// Setting multicast options on TCP socket should fail
sock1_ = ki_socket(AF_INET, SOCK_STREAM, 0);
ASSERT_GT(sock1_, -1);
ASSERT_EQ(-1,
ki_setsockopt(sock1_, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, ttl_len));
ASSERT_EQ(ENOPROTOOPT, errno);
ASSERT_EQ(-1, ki_setsockopt(sock1_, IPPROTO_IP, IP_MULTICAST_LOOP, &loop,
loop_len));
ASSERT_EQ(ENOPROTOOPT, errno);
EXPECT_EQ(0, Bind(sock1_, LOCAL_HOST, PORT1));
// Setting SO_BROADCAST on UDP socket should work
sock2_ = ki_socket(AF_INET, SOCK_DGRAM, 0);
ASSERT_GT(sock2_, -1);
// Test invalid values for IP_MULTICAST_TTL (0 <= ttl < 256)
ttl = -1;
ASSERT_EQ(-1,
ki_setsockopt(sock2_, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, ttl_len));
ASSERT_EQ(EINVAL, errno);
ttl = 256;
ASSERT_EQ(-1,
ki_setsockopt(sock2_, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, ttl_len));
ASSERT_EQ(EINVAL, errno);
// Valid IP_MULTICAST_TTL value
ttl = 1;
ASSERT_EQ(0,
ki_setsockopt(sock2_, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, ttl_len));
ASSERT_EQ(1, ttl);
ASSERT_EQ(sizeof(ttl), ttl_len);
// IP_MULTICAST_LOOP
ASSERT_EQ(
0, ki_setsockopt(sock2_, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, loop_len));
ASSERT_EQ(1, loop);
ASSERT_EQ(sizeof(loop), loop_len);
EXPECT_EQ(0, Bind(sock2_, LOCAL_HOST, PORT2));
}
#endif // PROVIDES_SOCKET_API
|