-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathNetTCP.cpp
1063 lines (918 loc) · 34.6 KB
/
NetTCP.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
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
/* ######################################################################### */
/* ## ## */
/* ## Dynamo / NetTCP.cpp ## */
/* ## ## */
/* ## ------------------------------------------------------------------- ## */
/* ## ## */
/* ## Job .......: Implements the NetAsyncTCP class for asynchronous ## */
/* ## TCP/IP sockets for communicating between network ## */
/* ## workers. ## */
/* ## ## */
/* ## ------------------------------------------------------------------- ## */
/* ## ## */
/* ## Intel Open Source License ## */
/* ## ## */
/* ## Copyright (c) 2001 Intel Corporation ## */
/* ## All rights reserved. ## */
/* ## Redistribution and use in source and binary forms, with or ## */
/* ## without modification, are permitted provided that the following ## */
/* ## conditions are met: ## */
/* ## ## */
/* ## Redistributions of source code must retain the above copyright ## */
/* ## notice, this list of conditions and the following disclaimer. ## */
/* ## ## */
/* ## Redistributions in binary form must reproduce the above copyright ## */
/* ## notice, this list of conditions and the following disclaimer in ## */
/* ## the documentation and/or other materials provided with the ## */
/* ## distribution. ## */
/* ## ## */
/* ## Neither the name of the Intel Corporation nor the names of its ## */
/* ## contributors may be used to endorse or promote products derived ## */
/* ## from this software without specific prior written permission. ## */
/* ## ## */
/* ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ## */
/* ## CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, ## */
/* ## INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ## */
/* ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ## */
/* ## DISCLAIMED. IN NO EVENT SHALL THE INTEL OR ITS CONTRIBUTORS BE ## */
/* ## LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ## */
/* ## OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, ## */
/* ## PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, ## */
/* ## OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ## */
/* ## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR ## */
/* ## TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT ## */
/* ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY ## */
/* ## OF SUCH DAMAGE. ## */
/* ## ## */
/* ## ------------------------------------------------------------------- ## */
/* ## ## */
/* ## Remarks ...: <none> ## */
/* ## ## */
/* ## ------------------------------------------------------------------- ## */
/* ## ## */
/* ## Changes ...: 2005-04-18 ([email protected]) ## */
/* ## - Support for MacOS X ## */
/* ## 2005-04-07 ([email protected]) ## */
/* ## - Cast from SOCKET to CONNECTION in NetAsyncTCP() ## */
/* ## 2005-01-12 ([email protected]) ## */
/* ## - Changed include files for Windows DDK. ## */
/* ## 2004-09-01 ([email protected]) ## */
/* ## - Changed SOCKET to CONNECTION for greater clarity, ## */
/* ## because SOCKET has a standard meaning outside ## */
/* ## Iometer. ## */
/* ## 2004-03-27 ([email protected]) ## */
/* ## - Code cleanup to ensure common style. ## */
/* ## - Applied Thayne Harmon's patch for supporting ## */
/* ## Netware support (on I386). ## */
/* ## 2003-07-19 ([email protected]) ## */
/* ## - Assimilated the patch from Robert Jones which is ## */
/* ## needed to build under Solaris 9 on x86 (i386). ## */
/* ## 2003-07-18 ([email protected]) ## */
/* ## - Moved to the use of the IOMTR_[OSFAMILY|OS|CPU]_* ## */
/* ## global defines. ## */
/* ## - Integrated the License Statement into this header. ## */
/* ## - Added new header holding the changelog. ## */
/* ## ## */
/* ######################################################################### */
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
#include <afx.h>
#endif
#include "NetTCP.h"
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
#if defined(USING_DDK)
#include "winsock.h"
#else
#include "mswsock.h"
#endif
#elif defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS) || defined(IOMTR_OS_NETWARE)
#include <sys/socket.h>
#if defined(IOMTR_OS_NETWARE)
#include <sys/select.h>
#endif
#include <netinet/in.h>
#include <arpa/inet.h>
#if !defined(IOMTR_OS_NETWARE)
#include <netinet/tcp.h>
#endif
#define SD_SEND 0x01
#define WSAENOTCONN ENOTCONN
#define WSA_IO_PENDING ERROR_IO_PENDING
#define wsprintf sprintf
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
//////////////////////////////////////////////////////////////////////
// Static data member initialization.
//////////////////////////////////////////////////////////////////////
LONG NetAsyncTCP::sockets_in_use = 0;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
NetAsyncTCP::NetAsyncTCP()
{
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
int retval;
WSADATA wd;
#endif
server_socket = (CONNECTION)INVALID_SOCKET;
client_socket = (CONNECTION)INVALID_SOCKET;
#if defined(IOMTR_OSFAMILY_UNIX)
server_fp.fd = client_fp.fd = -1;
server_socket = (CONNECTION)&server_fp;
client_socket = (CONNECTION)&client_fp;
maxfd = sysconf(_SC_OPEN_MAX); // the max # of file descriptors that select() handles.
#endif // IOMTR_OSFAMILY_UNIX
#if defined(IOMTR_OSFAMILY_NETWARE)
server_fp.fd = client_fp.fd = -1;
server_socket = (CONNECTION)&server_fp;
client_socket = (CONNECTION)&client_fp;
#endif
server_address.sin_family = AF_INET; // use Internet Protocol
client_address.sin_family = AF_INET; // use Internet Protocol
SetTimeout( 0, 0 );
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
// Initialize WinSock if it has not yet been initialized in this process.
if ( InterlockedIncrement ( &sockets_in_use ) == 1 )
{
#if NETWORK_DETAILS || defined(_DEBUG)
cout << "Initializing WinSock." << endl;
#endif
// request WinSock version 2.0
retval = WSAStartup( MAKEWORD(2, 0), &wd );
if ( retval != 0 )
{
*errmsg << "*** Could not initialize WinSock! Error "
<< retval << ends;
OutputErrMsg();
InterlockedDecrement ( &sockets_in_use );
}
}
#endif
}
NetAsyncTCP::~NetAsyncTCP()
{
Destroy();
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
// Clean up WinSock if nobody else is using it in this process.
if ( InterlockedDecrement ( &sockets_in_use ) == 0 )
{
#if NETWORK_DETAILS || defined(_DEBUG)
cout << "Cleaning up WinSock." << endl;
#endif
// Reset the error code.
if ( WSACleanup() != 0 )
{
*errmsg << "*** Could not clean up WinSock! Error "
<< WSAGetLastError() << ends;
OutputErrMsg();
}
}
#endif
}
void NetAsyncTCP::SetAddress( BOOL set_server, const char *ip_address,
unsigned short port_num )
{
SOCKADDR_IN *address;
if ( set_server )
{
address = &server_address;
}
else
{
address = &client_address;
}
address->sin_family = AF_INET; // use Internet Protocol
if ( ip_address )
{
// accept connections on specified address
address->sin_addr.s_addr = inet_addr( ip_address );
}
else
{
// accept connections on any available address
address->sin_addr.s_addr = htonl(INADDR_ANY);
}
// listen at specified port (0 = system assigns port number)
address->sin_port = htons ( port_num );
}
//
// Creates the server and client sockets, and binds the server socket.
//
ReturnVal NetAsyncTCP::Create( BOOL create_server )
{
CONNECTION *s;
SOCKADDR_IN *address;
if ( create_server )
{
s = &server_socket;
address = &server_address;
}
else
{
s = &client_socket;
address = &client_address;
}
if ( CreateSocket( s ) != ReturnSuccess ||
BindSocket( s, address ) != ReturnSuccess )
{
return ReturnError;
}
return ReturnSuccess;
}
//
// Creates a socket.
//
ReturnVal NetAsyncTCP::CreateSocket( CONNECTION *s )
{
#if NETWORK_DETAILS || _DETAILS
cout << "Creating socket." << endl;
#endif
// Create socket.
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
struct File *fp;
fp = (struct File *)*s;
fp->fd = socket(AF_INET, SOCK_STREAM, PF_UNSPEC);
if ( fp->fd < 0 )
{
*errmsg << "*** Could not create socket in NetAsyncTCP::"
<< "CreateSocket(), error: " << WSAGetLastError() << ends;
OutputErrMsg();
fp->fd = (int) INVALID_SOCKET;
return ReturnError;
}
#elif defined(IOMTR_OSFAMILY_WINDOWS)
*s = socket( AF_INET, SOCK_STREAM, PF_UNSPEC );
if ( *s == INVALID_SOCKET )
{
*errmsg << "*** Could not create socket in NetAsyncTCP::"
<< "CreateSocket(), error: " << WSAGetLastError() << ends;
OutputErrMsg();
return ReturnError;
}
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
// Set and verify socket options.
SetOptions( s );
return ReturnSuccess;
}
//
// Binds a socket to the address specified.
// The SOCKADDR_IN structure must have been filled in
// before calling this function (use SetAddress).
//
ReturnVal NetAsyncTCP::BindSocket( CONNECTION *s, SOCKADDR_IN *address )
{
socklen_t buflen;
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
struct File *fp = (struct File *)*s;
#endif
#if NETWORK_DETAILS || _DETAILS
cout << "Binding to socket." << endl;
#endif
// Bind socket.
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
if ( bind ( fp->fd, (struct sockaddr *) address, sizeof(*address) ) != 0 )
#elif defined(IOMTR_OSFAMILY_WINDOWS)
if ( bind ( *s, (struct sockaddr *) address, sizeof(*address) ) != 0 )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
*errmsg << "*** Error " << Error( WSAGetLastError() )
<< " binding to socket in NetAsyncTCP::BindSocket()." << ends;
OutputErrMsg();
return ReturnError;
}
// get actual port number in use
buflen = sizeof(*address);
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
if ( getsockname ( fp->fd, (struct sockaddr *) address, &buflen ) != 0 )
#elif defined(IOMTR_OSFAMILY_WINDOWS)
if ( getsockname ( *s, (struct sockaddr *) address, &buflen ) != 0 )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
*errmsg << "*** Error " << WSAGetLastError() << " getting information "
<< "about socket in NetAsyncTCP::BindSocket()." << ends;
OutputErrMsg();
return ReturnError;
}
#if NETWORK_DETAILS || defined(_DEBUG)
cout << "Bound socket on port " << ntohs(address->sin_port) << "." << endl;
#endif
return ReturnSuccess;
}
//
// Connect client_socket to specified address.
//
ReturnVal NetAsyncTCP::ConnectSocket( SOCKADDR_IN *address )
{
// attempt to connect.
#if NETWORK_DETAILS || _DETAILS
cout << "Attempting to connect to socket at "
<< inet_ntoa( address->sin_addr ) << ":"
<< ntohs( address->sin_port ) << "." << endl;
#endif
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
if ( connect(((struct File *)client_socket)->fd, (struct sockaddr *) address, sizeof(*address)) == SOCKET_ERROR )
#elif defined(IOMTR_OSFAMILY_WINDOWS)
if ( connect(client_socket, (struct sockaddr *) address, sizeof(*address)) == SOCKET_ERROR )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
#if NETWORK_DETAILS || defined(_DEBUG)
// WSAECONNREFUSED means the server isn't up yet or is busy,
// don't print an error message
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
if ( errno != ECONNREFUSED )
#elif defined(IOMTR_OSFAMILY_WINDOWS)
if ( WSAGetLastError() != WSAECONNREFUSED )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
*errmsg << "*** Error " << WSAGetLastError()
<< " connecting to " << "socket "
<< inet_ntoa( address->sin_addr ) << ":"
<< ntohs( address->sin_port )
<< " in NetAsyncTCP::ConnectSocket()." << ends;
OutputErrMsg();
}
#endif
// Expand error checking here for better handling.
return ReturnRetry;
}
return ReturnSuccess;
}
//
// Attempts to connect the client socket to the address specified.
// Returns immediately, reguardless of success.
//
ReturnVal NetAsyncTCP::Connect( const char *ip_address,
unsigned short port_number )
{
struct sockaddr_in address;
ReturnVal result;
// specify protocol, port, and address to connect to.
address.sin_family = AF_INET; // use Internet Protocol
address.sin_addr.s_addr = inet_addr(ip_address); // connect to this server
address.sin_port = htons(port_number); // connect to this port
result = ConnectSocket( &address );
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
if ( result != ReturnSuccess )
{
// According to connect(3XN):
// If connect() fails, the state of the socket
// is unspecified. Portable applications
// should close the file descriptor and
// create a new socket before attempting to
// reconnect.
Close( CLIENT );
if ( Create( CLIENT ) != ReturnSuccess )
{
cout << "*** Failed to re-create TCP client socket." << endl;
return ReturnError;
}
}
#endif // IOMTR_OSFAMILY_UNIX
return result;
}
//
// Sets the time to wait on the select call in the
// Accept() function.
//
void NetAsyncTCP::SetTimeout( int sec, int usec )
{
timeout.tv_sec = sec;
timeout.tv_usec = usec;
}
//
// Begin accepting a connection to an existing port. Used by server.
// Returns TRUE for success or FALSE if any error occurs.
// Call IsAcceptComplete() to determine if it has completed,
// and GetAcceptResult() to get result.
//
ReturnVal NetAsyncTCP::Accept()
{
fd_set sock_set; // used by select function.
socklen_t addr_len;
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
struct File *fp = (struct File *)server_socket;
#endif
// Listen to socket.
#if NETWORK_DETAILS || _DETAILS
cout << "Listening to socket "
<< inet_ntoa( server_address.sin_addr )
<< ":" << ntohs( server_address.sin_port ) << "." << endl;
#endif
// It's ok to listen more than once on a socket.
// allow only a single connection.
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
if ( listen ( fp->fd, 1 ) != 0 )
#elif defined(IOMTR_OSFAMILY_WINDOWS)
if ( listen ( server_socket, 1 ) != 0 )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
*errmsg << "*** Error " << WSAGetLastError()
<< " listening to socket in NetAsyncTCP::Listen()." << ends;
OutputErrMsg();
return ReturnError;
}
// Accept connections to socket.
#if NETWORK_DETAILS || defined(_DEBUG)
cout << "Accepting connections to socket." << endl;
#endif
// Check the server socket for a connection request.
FD_ZERO( &sock_set ); // clear the fd_set structure.
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
FD_SET( fp->fd, &sock_set);
// if timeout is NULL, operation blocks until successful.
switch ( select( maxfd, &sock_set, NULL, NULL, &timeout ) )
#elif defined(IOMTR_OSFAMILY_WINDOWS)
FD_SET( server_socket, &sock_set ); // Add the server socket to it.
// if timeout is NULL, operation blocks until successful.
switch ( select( 0, &sock_set, NULL, NULL, &timeout ) )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
case 1:
// A connection was requested. Accept it.
addr_len = sizeof( client_address );
// Create client socket.
#if NETWORK_DETAILS || defined(_DEBUG)
cout << "Creating client socket." << endl;
#endif
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
((struct File *)client_socket)->fd = accept (fp->fd,
(struct sockaddr *) &client_address, &addr_len);
if (((struct File *)client_socket)->fd < 0)
{
*errmsg << "*** Could not create socket in NetAsyncTCP::"
<< "CreateSocket(), error: " << WSAGetLastError() << ends;
OutputErrMsg();
((struct File *)client_socket)->fd = (int)INVALID_SOCKET;
return ReturnError;
}
#elif defined(IOMTR_OSFAMILY_WINDOWS)
client_socket = accept ( server_socket,
(struct sockaddr *) &client_address, &addr_len );
if ( client_socket== INVALID_SOCKET )
{
*errmsg << "*** Could not create socket in NetAsyncTCP::"
<< "CreateSocket(), error: " << WSAGetLastError() << ends;
OutputErrMsg();
return ReturnError;
}
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
// Set and verify socket options.
SetOptions( &client_socket );
return ReturnSuccess;
case 0:
// opperation timed out.
return ReturnRetry;
default:
// error.
*errmsg << "*** select() failed in NetAsyncTCP::Accept(): "
<< WSAGetLastError() << ends;
OutputErrMsg();
return ReturnError;
}
}
//
// Wait to receive notification that the remote end disconnected.
//
ReturnVal NetAsyncTCP::WaitForDisconnect()
{
struct sockaddr address;
socklen_t addr_len = sizeof( address );
fd_set readfds;
int res;
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
struct File *fp = (struct File *)client_socket;
#endif
#if NETWORK_DETAILS || _DETAILS
cout << "Waiting for other end to disconnect." << endl;
#endif
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
if ( client_socket == INVALID_SOCKET )
#elif defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_NETWARE) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
if ( fp->fd == (int)INVALID_SOCKET )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
#if NETWORK_DETAILS || _DETAILS
cout << "Socket is already closed." << endl;
#endif
return ReturnSuccess;
}
// If we're not connected to anything, return.
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
res = getpeername(fp->fd, &address, &addr_len);
#elif defined(IOMTR_OSFAMILY_WINDOWS)
res = getpeername(client_socket, &address, &addr_len);
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
if (res == SOCKET_ERROR) {
#if NETWORK_DETAILS || _DETAILS
cout << "Not connected to anything. Aborting WaitForDisconnect()." << endl;
#endif
return ReturnSuccess;
}
SetTimeout(1, 0);
FD_ZERO(&readfds);
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
FD_SET(fp->fd, &readfds);
res = select(maxfd, &readfds, NULL, NULL, &timeout);
#elif defined(IOMTR_OSFAMILY_WINDOWS)
FD_SET(client_socket, &readfds);
SetTimeout(1, 0); // wait 1 second for the connection to close
res = select(0, &readfds, NULL, NULL, &timeout);
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
if (res) {
// This must mean that client_socket was closed.
return ReturnSuccess;
} else {
// The socket still wasn't closed after one second.
return ReturnRetry;
}
}
//
// Close both the server and client sockets. Calls shutdown first.
//
ReturnVal NetAsyncTCP::Destroy()
{
ReturnVal client_closed, server_closed;
client_closed = Close( CLIENT );
server_closed = Close( SERVER );
if ( client_closed == ReturnSuccess && server_closed == ReturnSuccess )
return ReturnSuccess;
else
return ReturnError;
}
//
// Receive on client socket.
//
ReturnVal NetAsyncTCP::Receive( LPVOID buffer, DWORD bytes, LPDWORD return_value,
LPOVERLAPPED asynchronous_io, DWORD flags )
{
#if NETWORK_DETAILS || _DETAILS
cout << "* Receiving " << bytes << " bytes from socket." << endl;
#endif
// specify the file pointer (meaningless for a socket, but must be set)
asynchronous_io->Offset = 0;
asynchronous_io->OffsetHigh = 0;
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
wsa_buf.len = bytes;
wsa_buf.buf = (char*)buffer;
// Do the read.
if ( WSARecv( (client_socket), &wsa_buf, 1, return_value, &flags,
asynchronous_io, NULL ) == 0 )
#elif defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
if ( ReadFile( client_socket, buffer, bytes, return_value, asynchronous_io ) )
#elif defined(IOMTR_OS_NETWARE)
if ( *return_value = read( (int)client_socket, buffer, (unsigned int)bytes) )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
// Read succeeded.
#if NETWORK_DETAILS || _DETAILS
cout << "* Received " << *return_value << " of " << bytes
<< " bytes from socket." << endl;
#endif
return ReturnSuccess;
}
// See if the read was queued.
if ( WSAGetLastError() == WSA_IO_PENDING )
{
#if NETWORK_DETAILS || _DETAILS
cout << "* Queued receive for " << *return_value << " of "
<< bytes << " bytes from socket." << endl;
#endif
return ReturnPending;
}
// Read failed!
*return_value = WSAGetLastError();
#if NETWORK_DETAILS || _DETAILS
*errmsg << "*** Error " << *return_value << " receiving "
<< bytes << " bytes from socket." << ends;
OutputErrMsg();
#endif
return ReturnError;
}
//
// Send on client socket.
//
ReturnVal NetAsyncTCP::Send( LPVOID buffer, DWORD bytes, LPDWORD return_value,
LPOVERLAPPED asynchronous_io, DWORD flags )
{
#if NETWORK_DETAILS || _DETAILS
cout << "* Sending " << bytes << " bytes to socket." << endl;
#endif
// specify the file pointer (meaningless for a socket, but must be set)
asynchronous_io->Offset = 0;
asynchronous_io->OffsetHigh = 0;
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
wsa_buf.len = bytes;
wsa_buf.buf = (char*)buffer;
// Do the write.
if ( WSASend( (client_socket), &wsa_buf, 1, return_value, NULL,
asynchronous_io, NULL ) == 0 )
#elif defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
if ( WriteFile( client_socket, buffer, bytes, return_value, asynchronous_io ) )
#elif defined(IOMTR_OS_NETWARE)
if ( *return_value = write( (int)client_socket, (void *)buffer, (unsigned int)bytes) )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
// Write succeeded.
#if NETWORK_DETAILS || _DETAILS
cout << "* Sent " << *return_value << " of " << bytes
<< " bytes to socket." << endl;
#endif
return ReturnSuccess;
}
// See if the write was queued.
if ( WSAGetLastError() == WSA_IO_PENDING )
{
#if NETWORK_DETAILS || _DETAILS
cout << "* Queued send for " << *return_value << " of "
<< bytes << " bytes to socket." << endl;
#endif
return ReturnPending;
}
// Write failed.
*return_value = WSAGetLastError();
#if NETWORK_DETAILS || _DETAILS
*errmsg << "*** Error " << *return_value << " sending "
<< bytes << " bytes to socket." << ends;
OutputErrMsg();
#endif
return ReturnError;
}
//
// Non blocking call which reads data from a connected port without
// removing it. Note that a process does not receive data from itself.
// Returns the number of bytes available to be read.
//
// **** This function has not been tested.
DWORD NetAsyncTCP::Peek()
{
DWORD bytes_available = 0;
// we have to provide a buffer, so we provide just one character of buffer
char buf[1];
int res = 0, t = 0;
#if defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_NETWARE) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
res = (int)recv(((struct File *)client_socket)->fd, buf, sizeof(buf), MSG_PEEK);
if (res > 0) {
bytes_available = res;
res = ReturnSuccess;
} else
t = errno;
#elif defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
wsa_buf.buf = buf;
wsa_buf.len = sizeof(buf);
res = Receive(buf, 1, &bytes_available, NULL, MSG_PEEK);
if (res != ReturnSuccess)
t = WSAGetLastError();
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
if (res == ReturnSuccess) {
#if NETWORK_DETAILS || _DETAILS
cout << "* Peeked " << bytes_available << " bytes from socket." << endl;
#endif
return bytes_available;
} else {
#if NETWORK_DETAILS || defined(_DEBUG)
*errmsg << "*** Error " << t << " peeking from socket in NetAsyncTCP::Peek()." << ends;
OutputErrMsg();
#endif
return 0; // no data available at this time, maybe later
}
}
//
// Utility function to close a socket.
//
ReturnVal NetAsyncTCP::CloseSocket( CONNECTION *s )
{
#if NETWORK_DETAILS || _DETAILS
cout << "Closing socket." << endl;
#endif
#if defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_NETWARE) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
if ( ((struct File *)*s)->fd == (int)INVALID_SOCKET )
#elif defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
if ( *s == INVALID_SOCKET )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
#if NETWORK_DETAILS || _DETAILS
cout << "Socket is already closed." << endl;
#endif
return ReturnSuccess;
}
#if NETWORK_DETAILS || defined(_DEBUG)
cout << "Closing socket." << endl;
#endif
#if defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_NETWARE) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
WSASetLastError(0);
if ( close ( ((struct File *)*s)->fd ) != 0 )
#elif defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
if ( closesocket ( *s ) != 0 )
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
{
*errmsg << "*** Error " << WSAGetLastError()
<< " closing socket in NetAsyncTCP::CloseSocket()." << ends;
OutputErrMsg();
return ReturnError;
}
#if defined(IOMTR_OS_LINUX) || defined(IOMTR_OS_NETWARE) || defined(IOMTR_OS_OSX) || defined(IOMTR_OS_SOLARIS)
((struct File *)*s)->fd = (int)INVALID_SOCKET;
#elif defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
*s = INVALID_SOCKET;
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
return ReturnSuccess;
}
//
// Perform an abortive close of the specified socket.
//
ReturnVal NetAsyncTCP::Close( BOOL close_server )
{
CONNECTION *s;
if ( close_server )
{
s = &server_socket;
}
else
s = &client_socket;
return CloseSocket( s );
}
//
// Set socket options.
//
void NetAsyncTCP::SetOptions( CONNECTION *s )
{
static BOOL setoption = TRUE;
LINGER lstruct = {TRUE, 0};
#if (NETWORK_DETAILS || defined(_DEBUG)) && defined(IOMTR_OS_FAMILY_WINDOWS)
BOOL CHECK_setoption;
LINGER CHECK_lstruct;
int size;
#endif
// SET the socket option settings
///////////////////////////////////
#if defined(IOMTR_OSFAMILY_NETWARE) || defined(IOMTR_OSFAMILY_UNIX)
struct File *fp = (struct File *) *s;
// When closing the connection, do a hard close.
if ( setsockopt( fp->fd, SOL_SOCKET, SO_LINGER, (char *) &lstruct, sizeof(lstruct) ) == SOCKET_ERROR )
cout << "*** Couldn't set SO_LINGER option" << endl;
// Reuse socket addresses
if ( setsockopt( fp->fd, SOL_SOCKET, SO_REUSEADDR, (char *) &setoption, sizeof(setoption) ) == SOCKET_ERROR )
cout << "*** Couldn't set SO_REUSEADDR option" << endl;
// Don't delay sending data.
if ( setsockopt( fp->fd, IPPROTO_TCP, TCP_NODELAY, (char *) &setoption, sizeof(setoption) ) == SOCKET_ERROR )
cout << "*** Couldn't set TCP_NODELAY option" << endl;
#elif defined(IOMTR_OSFAMILY_WINDOWS)
// When closing the connection, do a hard close.
if ( setsockopt( *s, SOL_SOCKET, SO_LINGER, (char *) &lstruct, sizeof(lstruct) ) == SOCKET_ERROR )
cout << "*** Couldn't set SO_LINGER option" << endl;
// Reuse socket addresses
if ( setsockopt( *s, SOL_SOCKET, SO_REUSEADDR, (char *) &setoption, sizeof(setoption) ) == SOCKET_ERROR )
cout << "*** Couldn't set SO_REUSEADDR option" << endl;
// Don't delay sending data.
if ( setsockopt( *s, IPPROTO_TCP, TCP_NODELAY, (char *) &setoption, sizeof(setoption) ) == SOCKET_ERROR )
cout << "*** Couldn't set TCP_NODELAY option" << endl;
#else
#warning ===> WARNING: You have to do some coding here to get the port done!
#endif
// CHECK the socket option settings
/////////////////////////////////////
#if defined(IOMTR_OS_FAMILY_WINDOWS)
#if NETWORK_DETAILS || defined(_DEBUG)
// When closing the connection, do a hard close.
size = sizeof(CHECK_lstruct);
if ( getsockopt( *s, SOL_SOCKET, SO_LINGER, (char *) &CHECK_lstruct, &size ) == SOCKET_ERROR )
cout << "*** Couldn't get SO_LINGER option" << endl;
else if ( memcmp( &lstruct, &CHECK_lstruct, sizeof(lstruct) ) )
cout << "*** SO_LINGER was not set correctly" << endl;
// Reuse socket addresses
size = sizeof(CHECK_setoption);
if ( getsockopt( *s, SOL_SOCKET, SO_REUSEADDR, (char *) &CHECK_setoption, &size ) == SOCKET_ERROR )
cout << "*** Couldn't get SO_REUSEADDR option" << endl;
else if ( setoption != CHECK_setoption )
cout << "*** SO_REUSEADDR was not set correctly" << endl;
// Don't delay sending data.
size = sizeof(CHECK_setoption);
if ( getsockopt( *s, IPPROTO_TCP, TCP_NODELAY, (char *) &CHECK_setoption, &size ) == SOCKET_ERROR )
cout << "*** Couldn't get TCP_NODELAY option" << endl;
else if ( setoption != CHECK_setoption )
cout << "*** TCP_NODELAY was not set correctly" << endl;
#endif
#endif
}
//
// Handy debugger function. Call like so:
//
// cout << "*** Error: " << Error( WSAGetLastError() ) << endl;
//
char *NetAsyncTCP::Error(int error_num)
{
static char errmsg[2048];
switch (error_num)
{
#if defined(IOMTR_OS_WIN32) || defined(IOMTR_OS_WIN64)
case WSANOTINITIALISED:
wsprintf( errmsg, "WSANOTINITIALIZED - WinSock not initialized." );
break;
case WSAENETDOWN:
wsprintf( errmsg, "WSAENETDOWN - The network subsystem has failed." );
break;
case WSAEADDRINUSE:
wsprintf( errmsg, "WSAEADDRINUSE - The socket's local port number is already in use." );
break;
case WSAEINTR:
wsprintf( errmsg, "WSAEINTR - The (blocking) Windows Socket 1.1 call was canceled "
"through WSACancelBlockingCall." );
break;
case WSAEINPROGRESS:
wsprintf( errmsg, "WSAEINPROGRESS - A blocking Windows Sockets 1.1 call is in progress, "