]> git.saurik.com Git - wxWidgets.git/blame - src/unix/gsocket.cpp
Removed temp OS/2 fix. Header now fixed.
[wxWidgets.git] / src / unix / gsocket.cpp
CommitLineData
97e6ee04
DE
1/* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket) for WX
3 * Name: gsocket.c
5c289601
DE
4 * Authors: David Elliott (C++ conversion, maintainer)
5 * Guilhem Lavaux,
6 * Guillermo Rodriguez Garcia <guille@iies.es>
97e6ee04 7 * Purpose: GSocket main Unix and OS/2 file
d2d9c803 8 * Licence: The wxWindows licence
97e6ee04
DE
9 * CVSID: $Id$
10 * -------------------------------------------------------------------------
11 */
12
ba2a81d7
DE
13/*
14 * PLEASE don't put C++ comments here - this is a C source file.
15 */
16
17#ifndef __GSOCKET_STANDALONE__
18#include "wx/setup.h"
19#endif
97e6ee04
DE
20
21#if defined(__VISAGECPP__)
22/* Seems to be needed by Visual Age C++, though I don't see how it manages
23 to not break on including a C++ header into a plain C source file */
24#include "wx/defs.h"
25#define BSD_SELECT /* use Berkley Sockets select */
26#endif
27
28#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
29
30#include <assert.h>
31#include <sys/types.h>
32#ifdef __VISAGECPP__
33#include <string.h>
34#include <sys/time.h>
35#include <types.h>
36#include <netinet/in.h>
37#endif
38#include <netdb.h>
39#include <sys/ioctl.h>
40
41#ifdef __VMS__
42#include <socket.h>
43struct sockaddr_un
44{
45 u_char sun_len; /* sockaddr len including null */
46 u_char sun_family; /* AF_UNIX */
47 char sun_path[108]; /* path name (gag) */
48};
49#else
50#include <sys/socket.h>
51#include <sys/un.h>
52#endif
53
54#ifndef __VISAGECPP__
55#include <sys/time.h>
56#include <netinet/in.h>
57#include <arpa/inet.h>
58#include <errno.h>
59#include <string.h>
60#include <unistd.h>
61#else
62#include <nerrno.h>
63# if __IBMCPP__ < 400
64#include <machine/endian.h>
65#include <socket.h>
66#include <ioctl.h>
67#include <select.h>
68#include <unistd.h>
69
70#define EBADF SOCEBADF
71
72# ifdef min
73# undef min
74# endif
75# else
76#include <sys/socket.h>
77#include <sys/ioctl.h>
78#include <sys/select.h>
79
80#define close(a) soclose(a)
81#define select(a,b,c,d,e) bsdselect(a,b,c,d,e)
82int _System bsdselect(int,
83 struct fd_set *,
84 struct fd_set *,
85 struct fd_set *,
86 struct timeval *);
87int _System soclose(int);
88# endif
89#endif
ebdab982
SN
90#ifdef __EMX__
91#include <sys/select.h>
92#endif
93
97e6ee04
DE
94#include <stdio.h>
95#include <stdlib.h>
96#include <stddef.h>
97#include <ctype.h>
98#ifdef sun
99# include <sys/filio.h>
100#endif
101#ifdef sgi
102# include <bstring.h>
103#endif
104#include <signal.h>
105
106#ifndef SOCKLEN_T
107
108#ifdef VMS
109# define SOCKLEN_T unsigned int
110#else
111# ifdef __GLIBC__
112# if __GLIBC__ == 2
113# define SOCKLEN_T socklen_t
114# endif
115# else
116# define SOCKLEN_T int
117# endif
118#endif
119
f6bc1c74 120#else
e6e1f517
RN
121 /* undefine for OSX - its really an int */
122# ifdef __DARWIN__
123# undef SOCKLEN_T
124# define SOCKLEN_T int
125# endif
97e6ee04
DE
126#endif /* SOCKLEN_T */
127
128/*
129 * MSW defines this, Unices don't.
130 */
131#ifndef INVALID_SOCKET
132#define INVALID_SOCKET -1
133#endif
134
135/* UnixWare reportedly needs this for FIONBIO definition */
136#ifdef __UNIXWARE__
137#include <sys/filio.h>
138#endif
139
140/*
141 * INADDR_BROADCAST is identical to INADDR_NONE which is not defined
142 * on all systems. INADDR_BROADCAST should be fine to indicate an error.
143 */
144#ifndef INADDR_NONE
145#define INADDR_NONE INADDR_BROADCAST
146#endif
147
148#define MASK_SIGNAL() \
149{ \
150 void (*old_handler)(int); \
151 \
152 old_handler = signal(SIGPIPE, SIG_IGN);
153
154#define UNMASK_SIGNAL() \
155 signal(SIGPIPE, old_handler); \
156}
157
158
159#ifndef __GSOCKET_STANDALONE__
160# include "wx/unix/gsockunx.h"
161# include "wx/gsocket.h"
162#else
163# include "gsockunx.h"
164# include "gsocket.h"
165#endif /* __GSOCKET_STANDALONE__ */
166
167/* debugging helpers */
168#ifdef __GSOCKET_DEBUG__
169# define GSocket_Debug(args) printf args
170#else
171# define GSocket_Debug(args)
172#endif /* __GSOCKET_DEBUG__ */
173
ba2a81d7
DE
174/* Table of GUI-related functions. We must call them indirectly because
175 * of wxBase and GUI separation: */
444cb1fd 176
3e1400ac 177static GSocketGUIFunctionsTable *gs_gui_functions;
b082b524 178
ba2a81d7 179class GSocketGUIFunctionsTableNull: public GSocketGUIFunctionsTable
444cb1fd 180{
ba2a81d7
DE
181public:
182 virtual bool OnInit();
183 virtual void OnExit();
184 virtual bool CanUseEventLoop();
185 virtual bool Init_Socket(GSocket *socket);
186 virtual void Destroy_Socket(GSocket *socket);
187 virtual void Install_Callback(GSocket *socket, GSocketEvent event);
ba2a81d7
DE
188 virtual void Uninstall_Callback(GSocket *socket, GSocketEvent event);
189 virtual void Enable_Events(GSocket *socket);
190 virtual void Disable_Events(GSocket *socket);
191};
444cb1fd 192
ba2a81d7
DE
193bool GSocketGUIFunctionsTableNull::OnInit()
194{ return true; }
195void GSocketGUIFunctionsTableNull::OnExit()
196{}
197bool GSocketGUIFunctionsTableNull::CanUseEventLoop()
198{ return false; }
199bool GSocketGUIFunctionsTableNull::Init_Socket(GSocket *socket)
200{ return true; }
201void GSocketGUIFunctionsTableNull::Destroy_Socket(GSocket *socket)
202{}
203void GSocketGUIFunctionsTableNull::Install_Callback(GSocket *socket, GSocketEvent event)
204{}
205void GSocketGUIFunctionsTableNull::Uninstall_Callback(GSocket *socket, GSocketEvent event)
206{}
207void GSocketGUIFunctionsTableNull::Enable_Events(GSocket *socket)
208{}
209void GSocketGUIFunctionsTableNull::Disable_Events(GSocket *socket)
210{}
211/* Global initialisers */
444cb1fd 212
3e1400ac 213void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable *guifunc)
444cb1fd 214{
ba2a81d7 215 gs_gui_functions = guifunc;
444cb1fd
DE
216}
217
97e6ee04
DE
218int GSocket_Init(void)
219{
ba2a81d7
DE
220 if (!gs_gui_functions)
221 {
3e1400ac 222 static GSocketGUIFunctionsTableNull table;
ba2a81d7
DE
223 gs_gui_functions = &table;
224 }
225 if ( !gs_gui_functions->OnInit() )
226 return 0;
227 return 1;
97e6ee04
DE
228}
229
230void GSocket_Cleanup(void)
231{
ba2a81d7
DE
232 if (gs_gui_functions)
233 {
234 gs_gui_functions->OnExit();
235 }
97e6ee04
DE
236}
237
ba2a81d7
DE
238/* Constructors / Destructors for GSocket */
239
240GSocket::GSocket()
97e6ee04 241{
09e6e5ec 242 int i;
97e6ee04 243
09e6e5ec 244 m_fd = INVALID_SOCKET;
97e6ee04
DE
245 for (i=0;i<GSOCK_MAX_EVENT;i++)
246 {
09e6e5ec 247 m_cbacks[i] = NULL;
97e6ee04 248 }
09e6e5ec
DE
249 m_detected = 0;
250 m_local = NULL;
251 m_peer = NULL;
252 m_error = GSOCK_NOERROR;
948c96ef
DE
253 m_server = false;
254 m_stream = true;
09e6e5ec 255 m_gui_dependent = NULL;
948c96ef 256 m_non_blocking = false;
1eef64d8 257 m_reusable = false;
09e6e5ec 258 m_timeout = 10*60*1000;
97e6ee04 259 /* 10 minutes * 60 sec * 1000 millisec */
948c96ef 260 m_establishing = false;
97e6ee04 261
ba2a81d7
DE
262 assert(gs_gui_functions);
263 /* Per-socket GUI-specific initialization */
264 m_ok = gs_gui_functions->Init_Socket(this);
97e6ee04
DE
265}
266
ba2a81d7 267void GSocket::Close()
97e6ee04 268{
ba2a81d7
DE
269 gs_gui_functions->Disable_Events(this);
270 /* gsockosx.c calls CFSocketInvalidate which closes the socket for us */
97e6ee04 271#if !(defined(__DARWIN__) && (defined(__WXMAC__) || defined(__WXCOCOA__)))
09e6e5ec 272 close(m_fd);
97e6ee04 273#endif
09e6e5ec 274 m_fd = INVALID_SOCKET;
97e6ee04
DE
275}
276
ba2a81d7 277GSocket::~GSocket()
97e6ee04 278{
ba2a81d7
DE
279 assert(this);
280
281 /* Check that the socket is really shutdowned */
282 if (m_fd != INVALID_SOCKET)
283 Shutdown();
284
285 /* Per-socket GUI-specific cleanup */
286 gs_gui_functions->Destroy_Socket(this);
287
97e6ee04 288 /* Destroy private addresses */
09e6e5ec
DE
289 if (m_local)
290 GAddress_destroy(m_local);
97e6ee04 291
09e6e5ec
DE
292 if (m_peer)
293 GAddress_destroy(m_peer);
97e6ee04
DE
294}
295
296/* GSocket_Shutdown:
297 * Disallow further read/write operations on this socket, close
298 * the fd and disable all callbacks.
299 */
ba2a81d7 300void GSocket::Shutdown()
97e6ee04
DE
301{
302 int evt;
303
09e6e5ec 304 assert(this);
97e6ee04
DE
305
306 /* If socket has been created, shutdown it */
09e6e5ec 307 if (m_fd != INVALID_SOCKET)
97e6ee04 308 {
09e6e5ec
DE
309 shutdown(m_fd, 2);
310 Close();
97e6ee04
DE
311 }
312
313 /* Disable GUI callbacks */
314 for (evt = 0; evt < GSOCK_MAX_EVENT; evt++)
09e6e5ec 315 m_cbacks[evt] = NULL;
97e6ee04 316
09e6e5ec 317 m_detected = GSOCK_LOST_FLAG;
97e6ee04
DE
318}
319
320/* Address handling */
321
322/* GSocket_SetLocal:
323 * GSocket_GetLocal:
324 * GSocket_SetPeer:
325 * GSocket_GetPeer:
326 * Set or get the local or peer address for this socket. The 'set'
327 * functions return GSOCK_NOERROR on success, an error code otherwise.
328 * The 'get' functions return a pointer to a GAddress object on success,
329 * or NULL otherwise, in which case they set the error code of the
330 * corresponding GSocket.
331 *
332 * Error codes:
333 * GSOCK_INVSOCK - the socket is not valid.
334 * GSOCK_INVADDR - the address is not valid.
335 */
ba2a81d7 336GSocketError GSocket::SetLocal(GAddress *address)
97e6ee04 337{
09e6e5ec 338 assert(this);
97e6ee04
DE
339
340 /* the socket must be initialized, or it must be a server */
09e6e5ec 341 if ((m_fd != INVALID_SOCKET && !m_server))
97e6ee04 342 {
09e6e5ec 343 m_error = GSOCK_INVSOCK;
97e6ee04
DE
344 return GSOCK_INVSOCK;
345 }
346
347 /* check address */
348 if (address == NULL || address->m_family == GSOCK_NOFAMILY)
349 {
09e6e5ec 350 m_error = GSOCK_INVADDR;
97e6ee04
DE
351 return GSOCK_INVADDR;
352 }
353
09e6e5ec
DE
354 if (m_local)
355 GAddress_destroy(m_local);
97e6ee04 356
09e6e5ec 357 m_local = GAddress_copy(address);
97e6ee04
DE
358
359 return GSOCK_NOERROR;
360}
361
ba2a81d7 362GSocketError GSocket::SetPeer(GAddress *address)
97e6ee04 363{
09e6e5ec 364 assert(this);
97e6ee04
DE
365
366 /* check address */
367 if (address == NULL || address->m_family == GSOCK_NOFAMILY)
368 {
09e6e5ec 369 m_error = GSOCK_INVADDR;
97e6ee04
DE
370 return GSOCK_INVADDR;
371 }
372
09e6e5ec
DE
373 if (m_peer)
374 GAddress_destroy(m_peer);
97e6ee04 375
09e6e5ec 376 m_peer = GAddress_copy(address);
97e6ee04
DE
377
378 return GSOCK_NOERROR;
379}
380
ba2a81d7 381GAddress *GSocket::GetLocal()
97e6ee04
DE
382{
383 GAddress *address;
384 struct sockaddr addr;
385 SOCKLEN_T size = sizeof(addr);
386 GSocketError err;
387
09e6e5ec 388 assert(this);
97e6ee04
DE
389
390 /* try to get it from the m_local var first */
09e6e5ec
DE
391 if (m_local)
392 return GAddress_copy(m_local);
97e6ee04
DE
393
394 /* else, if the socket is initialized, try getsockname */
09e6e5ec 395 if (m_fd == INVALID_SOCKET)
97e6ee04 396 {
09e6e5ec 397 m_error = GSOCK_INVSOCK;
97e6ee04
DE
398 return NULL;
399 }
400
09e6e5ec 401 if (getsockname(m_fd, &addr, (SOCKLEN_T *) &size) < 0)
97e6ee04 402 {
09e6e5ec 403 m_error = GSOCK_IOERR;
97e6ee04
DE
404 return NULL;
405 }
406
407 /* got a valid address from getsockname, create a GAddress object */
408 address = GAddress_new();
409 if (address == NULL)
410 {
09e6e5ec 411 m_error = GSOCK_MEMERR;
97e6ee04
DE
412 return NULL;
413 }
414
415 err = _GAddress_translate_from(address, &addr, size);
416 if (err != GSOCK_NOERROR)
417 {
418 GAddress_destroy(address);
09e6e5ec 419 m_error = err;
97e6ee04
DE
420 return NULL;
421 }
422
423 return address;
424}
425
ba2a81d7 426GAddress *GSocket::GetPeer()
97e6ee04 427{
09e6e5ec 428 assert(this);
97e6ee04
DE
429
430 /* try to get it from the m_peer var */
09e6e5ec
DE
431 if (m_peer)
432 return GAddress_copy(m_peer);
97e6ee04
DE
433
434 return NULL;
435}
436
437/* Server specific parts */
438
439/* GSocket_SetServer:
440 * Sets up this socket as a server. The local address must have been
441 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
442 * Returns GSOCK_NOERROR on success, one of the following otherwise:
b082b524 443 *
97e6ee04
DE
444 * Error codes:
445 * GSOCK_INVSOCK - the socket is in use.
446 * GSOCK_INVADDR - the local address has not been set.
b082b524 447 * GSOCK_IOERR - low-level error.
97e6ee04 448 */
ba2a81d7 449GSocketError GSocket::SetServer()
97e6ee04
DE
450{
451 int arg = 1;
452
09e6e5ec 453 assert(this);
97e6ee04
DE
454
455 /* must not be in use */
09e6e5ec 456 if (m_fd != INVALID_SOCKET)
97e6ee04 457 {
09e6e5ec 458 m_error = GSOCK_INVSOCK;
97e6ee04
DE
459 return GSOCK_INVSOCK;
460 }
461
462 /* the local addr must have been set */
09e6e5ec 463 if (!m_local)
97e6ee04 464 {
09e6e5ec 465 m_error = GSOCK_INVADDR;
97e6ee04
DE
466 return GSOCK_INVADDR;
467 }
468
469 /* Initialize all fields */
948c96ef
DE
470 m_stream = true;
471 m_server = true;
97e6ee04
DE
472
473 /* Create the socket */
09e6e5ec 474 m_fd = socket(m_local->m_realfamily, SOCK_STREAM, 0);
97e6ee04 475
09e6e5ec 476 if (m_fd == INVALID_SOCKET)
97e6ee04 477 {
09e6e5ec 478 m_error = GSOCK_IOERR;
97e6ee04
DE
479 return GSOCK_IOERR;
480 }
09e6e5ec 481 ioctl(m_fd, FIONBIO, &arg);
ba2a81d7 482 gs_gui_functions->Enable_Events(this);
97e6ee04
DE
483
484 /* allow a socket to re-bind if the socket is in the TIME_WAIT
485 state after being previously closed.
486 */
ba2a81d7 487 if (m_reusable)
b082b524 488 setsockopt(m_fd, SOL_SOCKET, SO_REUSEADDR, (const char*)&arg, sizeof(u_long));
97e6ee04
DE
489
490 /* Bind to the local address,
491 * retrieve the actual address bound,
492 * and listen up to 5 connections.
493 */
09e6e5ec
DE
494 if ((bind(m_fd, m_local->m_addr, m_local->m_len) != 0) ||
495 (getsockname(m_fd,
496 m_local->m_addr,
497 (SOCKLEN_T *) &m_local->m_len) != 0) ||
498 (listen(m_fd, 5) != 0))
97e6ee04 499 {
09e6e5ec
DE
500 Close();
501 m_error = GSOCK_IOERR;
97e6ee04
DE
502 return GSOCK_IOERR;
503 }
504
505 return GSOCK_NOERROR;
506}
507
508/* GSocket_WaitConnection:
509 * Waits for an incoming client connection. Returns a pointer to
510 * a GSocket object, or NULL if there was an error, in which case
511 * the last error field will be updated for the calling GSocket.
512 *
513 * Error codes (set in the calling GSocket)
514 * GSOCK_INVSOCK - the socket is not valid or not a server.
515 * GSOCK_TIMEDOUT - timeout, no incoming connections.
516 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
517 * GSOCK_MEMERR - couldn't allocate memory.
b082b524 518 * GSOCK_IOERR - low-level error.
97e6ee04 519 */
ba2a81d7 520GSocket *GSocket::WaitConnection()
97e6ee04
DE
521{
522 struct sockaddr from;
523 SOCKLEN_T fromlen = sizeof(from);
524 GSocket *connection;
525 GSocketError err;
526 int arg = 1;
527
09e6e5ec 528 assert(this);
97e6ee04
DE
529
530 /* Reenable CONNECTION events */
09e6e5ec 531 Enable(GSOCK_CONNECTION);
97e6ee04
DE
532
533 /* If the socket has already been created, we exit immediately */
09e6e5ec 534 if (m_fd == INVALID_SOCKET || !m_server)
97e6ee04 535 {
09e6e5ec 536 m_error = GSOCK_INVSOCK;
97e6ee04
DE
537 return NULL;
538 }
539
540 /* Create a GSocket object for the new connection */
444cb1fd 541 connection = GSocket_new();
97e6ee04 542
444cb1fd 543 if (!connection)
97e6ee04 544 {
09e6e5ec 545 m_error = GSOCK_MEMERR;
97e6ee04
DE
546 return NULL;
547 }
548
549 /* Wait for a connection (with timeout) */
09e6e5ec 550 if (Input_Timeout() == GSOCK_TIMEDOUT)
97e6ee04 551 {
85431efa 552 delete connection;
09e6e5ec 553 /* m_error set by _GSocket_Input_Timeout */
97e6ee04
DE
554 return NULL;
555 }
556
09e6e5ec 557 connection->m_fd = accept(m_fd, &from, (SOCKLEN_T *) &fromlen);
97e6ee04
DE
558
559 if (connection->m_fd == INVALID_SOCKET)
560 {
561 if (errno == EWOULDBLOCK)
09e6e5ec 562 m_error = GSOCK_WOULDBLOCK;
97e6ee04 563 else
09e6e5ec 564 m_error = GSOCK_IOERR;
97e6ee04 565
85431efa 566 delete connection;
97e6ee04
DE
567 return NULL;
568 }
569
570 /* Initialize all fields */
948c96ef
DE
571 connection->m_server = false;
572 connection->m_stream = true;
97e6ee04
DE
573
574 /* Setup the peer address field */
575 connection->m_peer = GAddress_new();
576 if (!connection->m_peer)
577 {
85431efa 578 delete connection;
09e6e5ec 579 m_error = GSOCK_MEMERR;
97e6ee04
DE
580 return NULL;
581 }
582 err = _GAddress_translate_from(connection->m_peer, &from, fromlen);
583 if (err != GSOCK_NOERROR)
584 {
585 GAddress_destroy(connection->m_peer);
85431efa 586 delete connection;
09e6e5ec 587 m_error = err;
97e6ee04
DE
588 return NULL;
589 }
590#if defined(__EMX__) || defined(__VISAGECPP__)
591 ioctl(connection->m_fd, FIONBIO, (char*)&arg, sizeof(arg));
592#else
593 ioctl(connection->m_fd, FIONBIO, &arg);
594#endif
ba2a81d7 595 gs_gui_functions->Enable_Events(connection);
97e6ee04
DE
596
597 return connection;
598}
599
948c96ef 600bool GSocket::SetReusable()
b082b524
DE
601{
602 /* socket must not be null, and must not be in use/already bound */
ba2a81d7 603 if (this && m_fd == INVALID_SOCKET) {
948c96ef
DE
604 m_reusable = true;
605 return true;
b082b524 606 }
948c96ef 607 return false;
b082b524
DE
608}
609
97e6ee04
DE
610/* Client specific parts */
611
612/* GSocket_Connect:
613 * For stream (connection oriented) sockets, GSocket_Connect() tries
614 * to establish a client connection to a server using the peer address
615 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
616 * connection has been succesfully established, or one of the error
617 * codes listed below. Note that for nonblocking sockets, a return
618 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
619 * request can be completed later; you should use GSocket_Select()
620 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
621 * corresponding asynchronous events.
622 *
623 * For datagram (non connection oriented) sockets, GSocket_Connect()
624 * just sets the peer address established with GSocket_SetPeer() as
625 * default destination.
626 *
627 * Error codes:
628 * GSOCK_INVSOCK - the socket is in use or not valid.
629 * GSOCK_INVADDR - the peer address has not been established.
630 * GSOCK_TIMEDOUT - timeout, the connection failed.
631 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
632 * GSOCK_MEMERR - couldn't allocate memory.
b082b524 633 * GSOCK_IOERR - low-level error.
97e6ee04 634 */
ba2a81d7 635GSocketError GSocket::Connect(GSocketStream stream)
97e6ee04
DE
636{
637 int err, ret;
638 int arg = 1;
639
09e6e5ec 640 assert(this);
97e6ee04
DE
641
642 /* Enable CONNECTION events (needed for nonblocking connections) */
09e6e5ec 643 Enable(GSOCK_CONNECTION);
97e6ee04 644
09e6e5ec 645 if (m_fd != INVALID_SOCKET)
97e6ee04 646 {
09e6e5ec 647 m_error = GSOCK_INVSOCK;
97e6ee04
DE
648 return GSOCK_INVSOCK;
649 }
650
09e6e5ec 651 if (!m_peer)
97e6ee04 652 {
09e6e5ec 653 m_error = GSOCK_INVADDR;
97e6ee04
DE
654 return GSOCK_INVADDR;
655 }
656
657 /* Streamed or dgram socket? */
09e6e5ec 658 m_stream = (stream == GSOCK_STREAMED);
948c96ef
DE
659 m_server = false;
660 m_establishing = false;
97e6ee04
DE
661
662 /* Create the socket */
09e6e5ec
DE
663 m_fd = socket(m_peer->m_realfamily,
664 m_stream? SOCK_STREAM : SOCK_DGRAM, 0);
97e6ee04 665
09e6e5ec 666 if (m_fd == INVALID_SOCKET)
97e6ee04 667 {
09e6e5ec 668 m_error = GSOCK_IOERR;
97e6ee04
DE
669 return GSOCK_IOERR;
670 }
671#if defined(__EMX__) || defined(__VISAGECPP__)
09e6e5ec 672 ioctl(m_fd, FIONBIO, (char*)&arg, sizeof(arg));
97e6ee04 673#else
09e6e5ec 674 ioctl(m_fd, FIONBIO, &arg);
97e6ee04 675#endif
ba2a81d7 676 gs_gui_functions->Enable_Events(this);
97e6ee04
DE
677
678 /* Connect it to the peer address, with a timeout (see below) */
09e6e5ec 679 ret = connect(m_fd, m_peer->m_addr, m_peer->m_len);
97e6ee04
DE
680
681 if (ret == -1)
682 {
683 err = errno;
684
685 /* If connect failed with EINPROGRESS and the GSocket object
686 * is in blocking mode, we select() for the specified timeout
687 * checking for writability to see if the connection request
688 * completes.
689 */
09e6e5ec 690 if ((err == EINPROGRESS) && (!m_non_blocking))
97e6ee04 691 {
09e6e5ec 692 if (Output_Timeout() == GSOCK_TIMEDOUT)
97e6ee04 693 {
09e6e5ec
DE
694 Close();
695 /* m_error is set in _GSocket_Output_Timeout */
97e6ee04
DE
696 return GSOCK_TIMEDOUT;
697 }
698 else
699 {
700 int error;
701 SOCKLEN_T len = sizeof(error);
702
09e6e5ec 703 getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (void*) &error, &len);
97e6ee04
DE
704
705 if (!error)
706 return GSOCK_NOERROR;
707 }
708 }
709
710 /* If connect failed with EINPROGRESS and the GSocket object
711 * is set to nonblocking, we set m_error to GSOCK_WOULDBLOCK
712 * (and return GSOCK_WOULDBLOCK) but we don't close the socket;
713 * this way if the connection completes, a GSOCK_CONNECTION
714 * event will be generated, if enabled.
715 */
09e6e5ec 716 if ((err == EINPROGRESS) && (m_non_blocking))
97e6ee04 717 {
948c96ef 718 m_establishing = true;
09e6e5ec 719 m_error = GSOCK_WOULDBLOCK;
97e6ee04
DE
720 return GSOCK_WOULDBLOCK;
721 }
722
723 /* If connect failed with an error other than EINPROGRESS,
724 * then the call to GSocket_Connect has failed.
725 */
09e6e5ec
DE
726 Close();
727 m_error = GSOCK_IOERR;
97e6ee04
DE
728 return GSOCK_IOERR;
729 }
730
731 return GSOCK_NOERROR;
732}
733
734/* Datagram sockets */
735
736/* GSocket_SetNonOriented:
737 * Sets up this socket as a non-connection oriented (datagram) socket.
738 * Before using this function, the local address must have been set
739 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
740 * on success, or one of the following otherwise.
741 *
742 * Error codes:
743 * GSOCK_INVSOCK - the socket is in use.
744 * GSOCK_INVADDR - the local address has not been set.
745 * GSOCK_IOERR - low-level error.
746 */
ba2a81d7 747GSocketError GSocket::SetNonOriented()
97e6ee04
DE
748{
749 int arg = 1;
750
09e6e5ec 751 assert(this);
97e6ee04 752
09e6e5ec 753 if (m_fd != INVALID_SOCKET)
97e6ee04 754 {
09e6e5ec 755 m_error = GSOCK_INVSOCK;
97e6ee04
DE
756 return GSOCK_INVSOCK;
757 }
758
09e6e5ec 759 if (!m_local)
97e6ee04 760 {
09e6e5ec 761 m_error = GSOCK_INVADDR;
97e6ee04
DE
762 return GSOCK_INVADDR;
763 }
764
765 /* Initialize all fields */
948c96ef
DE
766 m_stream = false;
767 m_server = false;
97e6ee04
DE
768
769 /* Create the socket */
09e6e5ec 770 m_fd = socket(m_local->m_realfamily, SOCK_DGRAM, 0);
97e6ee04 771
09e6e5ec 772 if (m_fd == INVALID_SOCKET)
97e6ee04 773 {
09e6e5ec 774 m_error = GSOCK_IOERR;
97e6ee04
DE
775 return GSOCK_IOERR;
776 }
777#if defined(__EMX__) || defined(__VISAGECPP__)
09e6e5ec 778 ioctl(m_fd, FIONBIO, (char*)&arg, sizeof(arg));
97e6ee04 779#else
09e6e5ec 780 ioctl(m_fd, FIONBIO, &arg);
97e6ee04 781#endif
ba2a81d7 782 gs_gui_functions->Enable_Events(this);
97e6ee04
DE
783
784 /* Bind to the local address,
785 * and retrieve the actual address bound.
786 */
09e6e5ec
DE
787 if ((bind(m_fd, m_local->m_addr, m_local->m_len) != 0) ||
788 (getsockname(m_fd,
789 m_local->m_addr,
790 (SOCKLEN_T *) &m_local->m_len) != 0))
97e6ee04 791 {
09e6e5ec
DE
792 Close();
793 m_error = GSOCK_IOERR;
97e6ee04
DE
794 return GSOCK_IOERR;
795 }
796
797 return GSOCK_NOERROR;
798}
799
800/* Generic IO */
801
802/* Like recv(), send(), ... */
ba2a81d7 803int GSocket::Read(char *buffer, int size)
97e6ee04
DE
804{
805 int ret;
806
09e6e5ec 807 assert(this);
97e6ee04 808
09e6e5ec 809 if (m_fd == INVALID_SOCKET || m_server)
97e6ee04 810 {
09e6e5ec 811 m_error = GSOCK_INVSOCK;
97e6ee04
DE
812 return -1;
813 }
814
9d715960
DE
815 /* Disable events during query of socket status */
816 Disable(GSOCK_INPUT);
b082b524 817
97e6ee04 818 /* If the socket is blocking, wait for data (with a timeout) */
09e6e5ec 819 if (Input_Timeout() == GSOCK_TIMEDOUT)
9d715960
DE
820 /* We no longer return here immediately, otherwise socket events would not be re-enabled! */
821 ret = -1;
822 else {
823 /* Read the data */
824 if (m_stream)
825 ret = Recv_Stream(buffer, size);
826 else
827 ret = Recv_Dgram(buffer, size);
828 }
b082b524 829
97e6ee04
DE
830 if (ret == -1)
831 {
832 if (errno == EWOULDBLOCK)
09e6e5ec 833 m_error = GSOCK_WOULDBLOCK;
97e6ee04 834 else
09e6e5ec 835 m_error = GSOCK_IOERR;
97e6ee04 836 }
b082b524 837
9d715960 838 /* Enable events again now that we are done processing */
09e6e5ec 839 Enable(GSOCK_INPUT);
97e6ee04
DE
840
841 return ret;
842}
843
ba2a81d7 844int GSocket::Write(const char *buffer, int size)
b082b524 845{
97e6ee04
DE
846 int ret;
847
09e6e5ec 848 assert(this);
b082b524 849
97e6ee04
DE
850 GSocket_Debug(( "GSocket_Write #1, size %d\n", size ));
851
09e6e5ec 852 if (m_fd == INVALID_SOCKET || m_server)
97e6ee04 853 {
09e6e5ec 854 m_error = GSOCK_INVSOCK;
97e6ee04
DE
855 return -1;
856 }
857
858 GSocket_Debug(( "GSocket_Write #2, size %d\n", size ));
859
860 /* If the socket is blocking, wait for writability (with a timeout) */
09e6e5ec 861 if (Output_Timeout() == GSOCK_TIMEDOUT)
97e6ee04
DE
862 return -1;
863
864 GSocket_Debug(( "GSocket_Write #3, size %d\n", size ));
865
866 /* Write the data */
09e6e5ec
DE
867 if (m_stream)
868 ret = Send_Stream(buffer, size);
97e6ee04 869 else
09e6e5ec 870 ret = Send_Dgram(buffer, size);
b082b524 871
97e6ee04
DE
872 GSocket_Debug(( "GSocket_Write #4, size %d\n", size ));
873
874 if (ret == -1)
875 {
876 if (errno == EWOULDBLOCK)
877 {
09e6e5ec 878 m_error = GSOCK_WOULDBLOCK;
97e6ee04
DE
879 GSocket_Debug(( "GSocket_Write error WOULDBLOCK\n" ));
880 }
881 else
882 {
09e6e5ec 883 m_error = GSOCK_IOERR;
97e6ee04
DE
884 GSocket_Debug(( "GSocket_Write error IOERR\n" ));
885 }
886
887 /* Only reenable OUTPUT events after an error (just like WSAAsyncSelect
888 * in MSW). Once the first OUTPUT event is received, users can assume
889 * that the socket is writable until a read operation fails. Only then
890 * will further OUTPUT events be posted.
891 */
09e6e5ec 892 Enable(GSOCK_OUTPUT);
97e6ee04
DE
893 return -1;
894 }
b082b524 895
97e6ee04
DE
896 GSocket_Debug(( "GSocket_Write #5, size %d ret %d\n", size, ret ));
897
898 return ret;
899}
900
901/* GSocket_Select:
902 * Polls the socket to determine its status. This function will
903 * check for the events specified in the 'flags' parameter, and
904 * it will return a mask indicating which operations can be
905 * performed. This function won't block, regardless of the
906 * mode (blocking | nonblocking) of the socket.
907 */
ba2a81d7 908GSocketEventFlags GSocket::Select(GSocketEventFlags flags)
97e6ee04 909{
ba2a81d7 910 if (!gs_gui_functions->CanUseEventLoop())
97e6ee04
DE
911 {
912
913 GSocketEventFlags result = 0;
914 fd_set readfds;
915 fd_set writefds;
916 fd_set exceptfds;
917 struct timeval tv;
918
9d715960
DE
919 assert(this);
920
97e6ee04 921 /* Do not use a static struct, Linux can garble it */
09e6e5ec 922 tv.tv_sec = m_timeout / 1000;
7488a05e 923 tv.tv_usec = (m_timeout % 1000) * 1000;
97e6ee04 924
97e6ee04
DE
925 FD_ZERO(&readfds);
926 FD_ZERO(&writefds);
927 FD_ZERO(&exceptfds);
09e6e5ec 928 FD_SET(m_fd, &readfds);
9d715960 929 if (flags & GSOCK_OUTPUT_FLAG || flags & GSOCK_CONNECTION_FLAG)
09e6e5ec
DE
930 FD_SET(m_fd, &writefds);
931 FD_SET(m_fd, &exceptfds);
97e6ee04
DE
932
933 /* Check 'sticky' CONNECTION flag first */
09e6e5ec 934 result |= (GSOCK_CONNECTION_FLAG & m_detected);
97e6ee04
DE
935
936 /* If we have already detected a LOST event, then don't try
937 * to do any further processing.
938 */
09e6e5ec 939 if ((m_detected & GSOCK_LOST_FLAG) != 0)
97e6ee04 940 {
948c96ef 941 m_establishing = false;
97e6ee04
DE
942
943 return (GSOCK_LOST_FLAG & flags);
944 }
945
946 /* Try select now */
09e6e5ec 947 if (select(m_fd + 1, &readfds, &writefds, &exceptfds, &tv) <= 0)
97e6ee04
DE
948 {
949 /* What to do here? */
950 return (result & flags);
951 }
952
953 /* Check for readability */
09e6e5ec 954 if (FD_ISSET(m_fd, &readfds))
97e6ee04
DE
955 {
956 char c;
957
09e6e5ec 958 if (recv(m_fd, &c, 1, MSG_PEEK) > 0)
97e6ee04
DE
959 {
960 result |= GSOCK_INPUT_FLAG;
961 }
962 else
963 {
09e6e5ec 964 if (m_server && m_stream)
97e6ee04
DE
965 {
966 result |= GSOCK_CONNECTION_FLAG;
09e6e5ec 967 m_detected |= GSOCK_CONNECTION_FLAG;
97e6ee04
DE
968 }
969 else
970 {
09e6e5ec 971 m_detected = GSOCK_LOST_FLAG;
948c96ef 972 m_establishing = false;
b082b524 973
97e6ee04
DE
974 /* LOST event: Abort any further processing */
975 return (GSOCK_LOST_FLAG & flags);
976 }
977 }
978 }
979
980 /* Check for writability */
09e6e5ec 981 if (FD_ISSET(m_fd, &writefds))
97e6ee04 982 {
09e6e5ec 983 if (m_establishing && !m_server)
97e6ee04
DE
984 {
985 int error;
986 SOCKLEN_T len = sizeof(error);
987
948c96ef 988 m_establishing = false;
97e6ee04 989
09e6e5ec 990 getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (void*)&error, &len);
97e6ee04
DE
991
992 if (error)
993 {
09e6e5ec 994 m_detected = GSOCK_LOST_FLAG;
97e6ee04
DE
995
996 /* LOST event: Abort any further processing */
997 return (GSOCK_LOST_FLAG & flags);
998 }
999 else
1000 {
1001 result |= GSOCK_CONNECTION_FLAG;
09e6e5ec 1002 m_detected |= GSOCK_CONNECTION_FLAG;
97e6ee04
DE
1003 }
1004 }
1005 else
1006 {
1007 result |= GSOCK_OUTPUT_FLAG;
1008 }
1009 }
1010
1011 /* Check for exceptions and errors (is this useful in Unices?) */
09e6e5ec 1012 if (FD_ISSET(m_fd, &exceptfds))
97e6ee04 1013 {
948c96ef 1014 m_establishing = false;
09e6e5ec 1015 m_detected = GSOCK_LOST_FLAG;
97e6ee04
DE
1016
1017 /* LOST event: Abort any further processing */
1018 return (GSOCK_LOST_FLAG & flags);
1019 }
1020
1021 return (result & flags);
1022
1023 }
1024 else
1025 {
1026
09e6e5ec
DE
1027 assert(this);
1028 return flags & m_detected;
97e6ee04
DE
1029
1030 }
1031}
1032
1033/* Flags */
1034
1035/* GSocket_SetNonBlocking:
1036 * Sets the socket to non-blocking mode. All IO calls will return
1037 * immediately.
1038 */
948c96ef 1039void GSocket::SetNonBlocking(bool non_block)
97e6ee04 1040{
09e6e5ec 1041 assert(this);
97e6ee04
DE
1042
1043 GSocket_Debug( ("GSocket_SetNonBlocking: %d\n", (int)non_block) );
1044
09e6e5ec 1045 m_non_blocking = non_block;
97e6ee04
DE
1046}
1047
1048/* GSocket_SetTimeout:
1049 * Sets the timeout for blocking calls. Time is expressed in
1050 * milliseconds.
1051 */
ba2a81d7 1052void GSocket::SetTimeout(unsigned long millisec)
97e6ee04 1053{
09e6e5ec 1054 assert(this);
97e6ee04 1055
09e6e5ec 1056 m_timeout = millisec;
97e6ee04
DE
1057}
1058
1059/* GSocket_GetError:
1060 * Returns the last error occured for this socket. Note that successful
1061 * operations do not clear this back to GSOCK_NOERROR, so use it only
1062 * after an error.
1063 */
ba2a81d7 1064GSocketError WXDLLIMPEXP_NET GSocket::GetError()
97e6ee04 1065{
09e6e5ec 1066 assert(this);
97e6ee04 1067
09e6e5ec 1068 return m_error;
97e6ee04
DE
1069}
1070
1071/* Callbacks */
1072
1073/* GSOCK_INPUT:
1074 * There is data to be read in the input buffer. If, after a read
1075 * operation, there is still data available, the callback function will
1076 * be called again.
1077 * GSOCK_OUTPUT:
b082b524 1078 * The socket is available for writing. That is, the next write call
97e6ee04
DE
1079 * won't block. This event is generated only once, when the connection is
1080 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
1081 * when the output buffer empties again. This means that the app should
1082 * assume that it can write since the first OUTPUT event, and no more
1083 * OUTPUT events will be generated unless an error occurs.
1084 * GSOCK_CONNECTION:
1085 * Connection succesfully established, for client sockets, or incoming
1086 * client connection, for server sockets. Wait for this event (also watch
1087 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
1088 * GSOCK_LOST:
1089 * The connection is lost (or a connection request failed); this could
1090 * be due to a failure, or due to the peer closing it gracefully.
1091 */
1092
1093/* GSocket_SetCallback:
1094 * Enables the callbacks specified by 'flags'. Note that 'flags'
1095 * may be a combination of flags OR'ed toghether, so the same
1096 * callback function can be made to accept different events.
1097 * The callback function must have the following prototype:
1098 *
1099 * void function(GSocket *socket, GSocketEvent event, char *cdata)
1100 */
ba2a81d7 1101void GSocket::SetCallback(GSocketEventFlags flags,
97e6ee04
DE
1102 GSocketCallback callback, char *cdata)
1103{
1104 int count;
1105
09e6e5ec 1106 assert(this);
97e6ee04
DE
1107
1108 for (count = 0; count < GSOCK_MAX_EVENT; count++)
1109 {
1110 if ((flags & (1 << count)) != 0)
1111 {
09e6e5ec
DE
1112 m_cbacks[count] = callback;
1113 m_data[count] = cdata;
97e6ee04
DE
1114 }
1115 }
1116}
1117
1118/* GSocket_UnsetCallback:
1119 * Disables all callbacks specified by 'flags', which may be a
1120 * combination of flags OR'ed toghether.
1121 */
ba2a81d7 1122void GSocket::UnsetCallback(GSocketEventFlags flags)
97e6ee04
DE
1123{
1124 int count;
1125
09e6e5ec 1126 assert(this);
97e6ee04
DE
1127
1128 for (count = 0; count < GSOCK_MAX_EVENT; count++)
1129 {
1130 if ((flags & (1 << count)) != 0)
1131 {
09e6e5ec
DE
1132 m_cbacks[count] = NULL;
1133 m_data[count] = NULL;
97e6ee04
DE
1134 }
1135 }
1136}
1137
ba2a81d7 1138GSocketError GSocket::GetSockOpt(int level, int optname,
b082b524
DE
1139 void *optval, int *optlen)
1140{
9a7e4a56 1141 if (getsockopt(m_fd, level, optname, optval, (SOCKLEN_T*)optlen) == 0)
b082b524
DE
1142 {
1143 return GSOCK_NOERROR;
1144 }
1145 return GSOCK_OPTERR;
1146}
1147
ba2a81d7 1148GSocketError GSocket::SetSockOpt(int level, int optname,
b082b524
DE
1149 const void *optval, int optlen)
1150{
1151 if (setsockopt(m_fd, level, optname, optval, optlen) == 0)
1152 {
1153 return GSOCK_NOERROR;
1154 }
1155 return GSOCK_OPTERR;
1156}
1157
ba2a81d7 1158#define CALL_CALLBACK(socket, event) { \
9a7e4a56 1159 socket->Disable(event); \
ba2a81d7
DE
1160 if (socket->m_cbacks[event]) \
1161 socket->m_cbacks[event](socket, event, socket->m_data[event]); \
97e6ee04
DE
1162}
1163
1164
ba2a81d7 1165void GSocket::Enable(GSocketEvent event)
97e6ee04 1166{
09e6e5ec 1167 m_detected &= ~(1 << event);
ba2a81d7 1168 gs_gui_functions->Install_Callback(this, event);
97e6ee04
DE
1169}
1170
ba2a81d7 1171void GSocket::Disable(GSocketEvent event)
97e6ee04 1172{
09e6e5ec 1173 m_detected |= (1 << event);
ba2a81d7 1174 gs_gui_functions->Uninstall_Callback(this, event);
97e6ee04
DE
1175}
1176
1177/* _GSocket_Input_Timeout:
1178 * For blocking sockets, wait until data is available or
1179 * until timeout ellapses.
1180 */
ba2a81d7 1181GSocketError GSocket::Input_Timeout()
97e6ee04
DE
1182{
1183 struct timeval tv;
1184 fd_set readfds;
1185 int ret;
1186
1187 /* Linux select() will overwrite the struct on return */
09e6e5ec
DE
1188 tv.tv_sec = (m_timeout / 1000);
1189 tv.tv_usec = (m_timeout % 1000) * 1000;
97e6ee04 1190
09e6e5ec 1191 if (!m_non_blocking)
97e6ee04
DE
1192 {
1193 FD_ZERO(&readfds);
09e6e5ec
DE
1194 FD_SET(m_fd, &readfds);
1195 ret = select(m_fd + 1, &readfds, NULL, NULL, &tv);
97e6ee04
DE
1196 if (ret == 0)
1197 {
1198 GSocket_Debug(( "GSocket_Input_Timeout, select returned 0\n" ));
09e6e5ec 1199 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1200 return GSOCK_TIMEDOUT;
1201 }
1202 if (ret == -1)
1203 {
1204 GSocket_Debug(( "GSocket_Input_Timeout, select returned -1\n" ));
1205 if (errno == EBADF) { GSocket_Debug(( "Invalid file descriptor\n" )); }
1206 if (errno == EINTR) { GSocket_Debug(( "A non blocked signal was caught\n" )); }
1207 if (errno == EINVAL) { GSocket_Debug(( "The highest number descriptor is negative\n" )); }
1208 if (errno == ENOMEM) { GSocket_Debug(( "Not enough memory\n" )); }
09e6e5ec 1209 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1210 return GSOCK_TIMEDOUT;
1211 }
1212 }
1213 return GSOCK_NOERROR;
1214}
1215
1216/* _GSocket_Output_Timeout:
1217 * For blocking sockets, wait until data can be sent without
1218 * blocking or until timeout ellapses.
1219 */
ba2a81d7 1220GSocketError GSocket::Output_Timeout()
97e6ee04
DE
1221{
1222 struct timeval tv;
1223 fd_set writefds;
1224 int ret;
1225
1226 /* Linux select() will overwrite the struct on return */
09e6e5ec
DE
1227 tv.tv_sec = (m_timeout / 1000);
1228 tv.tv_usec = (m_timeout % 1000) * 1000;
97e6ee04 1229
09e6e5ec 1230 GSocket_Debug( ("m_non_blocking has: %d\n", (int)m_non_blocking) );
97e6ee04 1231
09e6e5ec 1232 if (!m_non_blocking)
97e6ee04
DE
1233 {
1234 FD_ZERO(&writefds);
09e6e5ec
DE
1235 FD_SET(m_fd, &writefds);
1236 ret = select(m_fd + 1, NULL, &writefds, NULL, &tv);
97e6ee04
DE
1237 if (ret == 0)
1238 {
1239 GSocket_Debug(( "GSocket_Output_Timeout, select returned 0\n" ));
09e6e5ec 1240 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1241 return GSOCK_TIMEDOUT;
1242 }
1243 if (ret == -1)
1244 {
1245 GSocket_Debug(( "GSocket_Output_Timeout, select returned -1\n" ));
1246 if (errno == EBADF) { GSocket_Debug(( "Invalid file descriptor\n" )); }
1247 if (errno == EINTR) { GSocket_Debug(( "A non blocked signal was caught\n" )); }
1248 if (errno == EINVAL) { GSocket_Debug(( "The highest number descriptor is negative\n" )); }
1249 if (errno == ENOMEM) { GSocket_Debug(( "Not enough memory\n" )); }
09e6e5ec 1250 m_error = GSOCK_TIMEDOUT;
97e6ee04
DE
1251 return GSOCK_TIMEDOUT;
1252 }
09e6e5ec 1253 if ( ! FD_ISSET(m_fd, &writefds) ) {
97e6ee04
DE
1254 GSocket_Debug(( "GSocket_Output_Timeout is buggy!\n" ));
1255 }
1256 else {
1257 GSocket_Debug(( "GSocket_Output_Timeout seems correct\n" ));
1258 }
1259 }
1260 else
1261 {
1262 GSocket_Debug(( "GSocket_Output_Timeout, didn't try select!\n" ));
1263 }
1264
1265 return GSOCK_NOERROR;
1266}
1267
ba2a81d7 1268int GSocket::Recv_Stream(char *buffer, int size)
97e6ee04 1269{
09e6e5ec 1270 return recv(m_fd, buffer, size, 0);
97e6ee04
DE
1271}
1272
ba2a81d7 1273int GSocket::Recv_Dgram(char *buffer, int size)
97e6ee04
DE
1274{
1275 struct sockaddr from;
1276 SOCKLEN_T fromlen = sizeof(from);
1277 int ret;
1278 GSocketError err;
1279
1280 fromlen = sizeof(from);
1281
09e6e5ec 1282 ret = recvfrom(m_fd, buffer, size, 0, &from, (SOCKLEN_T *) &fromlen);
97e6ee04
DE
1283
1284 if (ret == -1)
1285 return -1;
1286
1287 /* Translate a system address into a GSocket address */
09e6e5ec 1288 if (!m_peer)
97e6ee04 1289 {
09e6e5ec
DE
1290 m_peer = GAddress_new();
1291 if (!m_peer)
97e6ee04 1292 {
09e6e5ec 1293 m_error = GSOCK_MEMERR;
97e6ee04
DE
1294 return -1;
1295 }
1296 }
09e6e5ec 1297 err = _GAddress_translate_from(m_peer, &from, fromlen);
97e6ee04
DE
1298 if (err != GSOCK_NOERROR)
1299 {
09e6e5ec
DE
1300 GAddress_destroy(m_peer);
1301 m_peer = NULL;
1302 m_error = err;
97e6ee04
DE
1303 return -1;
1304 }
1305
1306 return ret;
1307}
1308
ba2a81d7 1309int GSocket::Send_Stream(const char *buffer, int size)
97e6ee04
DE
1310{
1311 int ret;
1312
1313#ifndef __VISAGECPP__
1314 MASK_SIGNAL();
09e6e5ec 1315 ret = send(m_fd, buffer, size, 0);
97e6ee04
DE
1316 UNMASK_SIGNAL();
1317#else
09e6e5ec 1318 ret = send(m_fd, (char *)buffer, size, 0);
97e6ee04
DE
1319#endif
1320
1321 return ret;
1322}
1323
ba2a81d7 1324int GSocket::Send_Dgram(const char *buffer, int size)
97e6ee04
DE
1325{
1326 struct sockaddr *addr;
1327 int len, ret;
1328 GSocketError err;
1329
09e6e5ec 1330 if (!m_peer)
97e6ee04 1331 {
09e6e5ec 1332 m_error = GSOCK_INVADDR;
97e6ee04
DE
1333 return -1;
1334 }
1335
09e6e5ec 1336 err = _GAddress_translate_to(m_peer, &addr, &len);
97e6ee04
DE
1337 if (err != GSOCK_NOERROR)
1338 {
09e6e5ec 1339 m_error = err;
97e6ee04
DE
1340 return -1;
1341 }
1342
1343#ifndef __VISAGECPP__
1344 MASK_SIGNAL();
09e6e5ec 1345 ret = sendto(m_fd, buffer, size, 0, addr, len);
97e6ee04
DE
1346 UNMASK_SIGNAL();
1347#else
09e6e5ec 1348 ret = sendto(m_fd, (char *)buffer, size, 0, addr, len);
97e6ee04
DE
1349#endif
1350
1351 /* Frees memory allocated from _GAddress_translate_to */
1352 free(addr);
1353
1354 return ret;
1355}
1356
ba2a81d7 1357void GSocket::Detected_Read()
97e6ee04
DE
1358{
1359 char c;
1360
1361 /* If we have already detected a LOST event, then don't try
1362 * to do any further processing.
1363 */
09e6e5ec 1364 if ((m_detected & GSOCK_LOST_FLAG) != 0)
97e6ee04 1365 {
948c96ef 1366 m_establishing = false;
97e6ee04 1367
ba2a81d7 1368 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1369 Shutdown();
97e6ee04
DE
1370 return;
1371 }
1372
09e6e5ec 1373 if (recv(m_fd, &c, 1, MSG_PEEK) > 0)
97e6ee04 1374 {
ba2a81d7 1375 CALL_CALLBACK(this, GSOCK_INPUT);
97e6ee04
DE
1376 }
1377 else
1378 {
09e6e5ec 1379 if (m_server && m_stream)
97e6ee04 1380 {
ba2a81d7 1381 CALL_CALLBACK(this, GSOCK_CONNECTION);
97e6ee04
DE
1382 }
1383 else
1384 {
ba2a81d7 1385 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1386 Shutdown();
97e6ee04
DE
1387 }
1388 }
1389}
1390
ba2a81d7 1391void GSocket::Detected_Write()
97e6ee04
DE
1392{
1393 /* If we have already detected a LOST event, then don't try
1394 * to do any further processing.
1395 */
09e6e5ec 1396 if ((m_detected & GSOCK_LOST_FLAG) != 0)
97e6ee04 1397 {
948c96ef 1398 m_establishing = false;
97e6ee04 1399
ba2a81d7 1400 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1401 Shutdown();
97e6ee04
DE
1402 return;
1403 }
1404
09e6e5ec 1405 if (m_establishing && !m_server)
97e6ee04
DE
1406 {
1407 int error;
1408 SOCKLEN_T len = sizeof(error);
1409
948c96ef 1410 m_establishing = false;
97e6ee04 1411
54d5abee 1412 getsockopt(m_fd, SOL_SOCKET, SO_ERROR, (void*)&error, &len);
97e6ee04
DE
1413
1414 if (error)
1415 {
ba2a81d7 1416 CALL_CALLBACK(this, GSOCK_LOST);
09e6e5ec 1417 Shutdown();
97e6ee04
DE
1418 }
1419 else
1420 {
ba2a81d7 1421 CALL_CALLBACK(this, GSOCK_CONNECTION);
97e6ee04
DE
1422 /* We have to fire this event by hand because CONNECTION (for clients)
1423 * and OUTPUT are internally the same and we just disabled CONNECTION
1424 * events with the above macro.
1425 */
ba2a81d7 1426 CALL_CALLBACK(this, GSOCK_OUTPUT);
97e6ee04
DE
1427 }
1428 }
1429 else
1430 {
ba2a81d7 1431 CALL_CALLBACK(this, GSOCK_OUTPUT);
97e6ee04
DE
1432 }
1433}
1434
09e6e5ec
DE
1435/* Compatibility functions for GSocket */
1436GSocket *GSocket_new(void)
1437{
ba2a81d7 1438 GSocket *newsocket = new GSocket();
09e6e5ec
DE
1439 if(newsocket->IsOk())
1440 return newsocket;
1441 delete newsocket;
1442 return NULL;
1443}
1444
97e6ee04
DE
1445/*
1446 * -------------------------------------------------------------------------
1447 * GAddress
1448 * -------------------------------------------------------------------------
1449 */
1450
1451/* CHECK_ADDRESS verifies that the current address family is either
1452 * GSOCK_NOFAMILY or GSOCK_*family*, and if it is GSOCK_NOFAMILY, it
1453 * initalizes it to be a GSOCK_*family*. In other cases, it returns
1454 * an appropiate error code.
1455 *
1456 * CHECK_ADDRESS_RETVAL does the same but returning 'retval' on error.
1457 */
1458#define CHECK_ADDRESS(address, family) \
1459{ \
1460 if (address->m_family == GSOCK_NOFAMILY) \
1461 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1462 return address->m_error; \
1463 if (address->m_family != GSOCK_##family) \
1464 { \
1465 address->m_error = GSOCK_INVADDR; \
1466 return GSOCK_INVADDR; \
1467 } \
1468}
1469
1470#define CHECK_ADDRESS_RETVAL(address, family, retval) \
1471{ \
1472 if (address->m_family == GSOCK_NOFAMILY) \
1473 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1474 return retval; \
1475 if (address->m_family != GSOCK_##family) \
1476 { \
1477 address->m_error = GSOCK_INVADDR; \
1478 return retval; \
1479 } \
1480}
1481
1482
1483GAddress *GAddress_new(void)
1484{
1485 GAddress *address;
1486
1487 if ((address = (GAddress *) malloc(sizeof(GAddress))) == NULL)
1488 return NULL;
1489
1490 address->m_family = GSOCK_NOFAMILY;
1491 address->m_addr = NULL;
1492 address->m_len = 0;
1493
1494 return address;
1495}
1496
1497GAddress *GAddress_copy(GAddress *address)
1498{
1499 GAddress *addr2;
1500
1501 assert(address != NULL);
1502
1503 if ((addr2 = (GAddress *) malloc(sizeof(GAddress))) == NULL)
1504 return NULL;
1505
1506 memcpy(addr2, address, sizeof(GAddress));
1507
1508 if (address->m_addr && address->m_len > 0)
1509 {
1510 addr2->m_addr = (struct sockaddr *)malloc(addr2->m_len);
1511 if (addr2->m_addr == NULL)
1512 {
1513 free(addr2);
1514 return NULL;
1515 }
1516 memcpy(addr2->m_addr, address->m_addr, addr2->m_len);
1517 }
1518
1519 return addr2;
1520}
1521
1522void GAddress_destroy(GAddress *address)
1523{
1524 assert(address != NULL);
1525
1526 if (address->m_addr)
1527 free(address->m_addr);
1528
1529 free(address);
1530}
1531
1532void GAddress_SetFamily(GAddress *address, GAddressType type)
1533{
1534 assert(address != NULL);
1535
1536 address->m_family = type;
1537}
1538
1539GAddressType GAddress_GetFamily(GAddress *address)
1540{
1541 assert(address != NULL);
1542
1543 return address->m_family;
1544}
1545
1546GSocketError _GAddress_translate_from(GAddress *address,
1547 struct sockaddr *addr, int len)
1548{
1549 address->m_realfamily = addr->sa_family;
1550 switch (addr->sa_family)
1551 {
1552 case AF_INET:
1553 address->m_family = GSOCK_INET;
1554 break;
1555 case AF_UNIX:
1556 address->m_family = GSOCK_UNIX;
1557 break;
1558#ifdef AF_INET6
1559 case AF_INET6:
1560 address->m_family = GSOCK_INET6;
1561 break;
1562#endif
1563 default:
1564 {
1565 address->m_error = GSOCK_INVOP;
1566 return GSOCK_INVOP;
1567 }
1568 }
1569
1570 if (address->m_addr)
1571 free(address->m_addr);
1572
1573 address->m_len = len;
1574 address->m_addr = (struct sockaddr *)malloc(len);
1575
1576 if (address->m_addr == NULL)
1577 {
1578 address->m_error = GSOCK_MEMERR;
1579 return GSOCK_MEMERR;
1580 }
1581 memcpy(address->m_addr, addr, len);
1582
1583 return GSOCK_NOERROR;
1584}
1585
1586GSocketError _GAddress_translate_to(GAddress *address,
1587 struct sockaddr **addr, int *len)
1588{
1589 if (!address->m_addr)
1590 {
1591 address->m_error = GSOCK_INVADDR;
1592 return GSOCK_INVADDR;
1593 }
1594
1595 *len = address->m_len;
1596 *addr = (struct sockaddr *)malloc(address->m_len);
1597 if (*addr == NULL)
1598 {
1599 address->m_error = GSOCK_MEMERR;
1600 return GSOCK_MEMERR;
1601 }
1602
1603 memcpy(*addr, address->m_addr, address->m_len);
1604 return GSOCK_NOERROR;
1605}
1606
1607/*
1608 * -------------------------------------------------------------------------
1609 * Internet address family
1610 * -------------------------------------------------------------------------
1611 */
1612
1613GSocketError _GAddress_Init_INET(GAddress *address)
1614{
1615 address->m_len = sizeof(struct sockaddr_in);
1616 address->m_addr = (struct sockaddr *) malloc(address->m_len);
1617 if (address->m_addr == NULL)
1618 {
1619 address->m_error = GSOCK_MEMERR;
1620 return GSOCK_MEMERR;
1621 }
1622
1623 address->m_family = GSOCK_INET;
1624 address->m_realfamily = PF_INET;
1625 ((struct sockaddr_in *)address->m_addr)->sin_family = AF_INET;
1626 ((struct sockaddr_in *)address->m_addr)->sin_addr.s_addr = INADDR_ANY;
1627
1628 return GSOCK_NOERROR;
1629}
1630
1631GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
1632{
1633 struct hostent *he;
1634 struct in_addr *addr;
1635
1636 assert(address != NULL);
1637
1638 CHECK_ADDRESS(address, INET);
1639
1640 addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
1641
1642 /* If it is a numeric host name, convert it now */
1643#if defined(HAVE_INET_ATON)
1644 if (inet_aton(hostname, addr) == 0)
1645 {
1646#elif defined(HAVE_INET_ADDR)
1647 if ( (addr->s_addr = inet_addr(hostname)) == -1 )
1648 {
1649#else
1650 /* Use gethostbyname by default */
9d715960 1651#ifndef __WXMAC__
ba2a81d7 1652 int val = 1; /* VA doesn't like constants in conditional expressions */
97e6ee04 1653 if (val)
9d715960 1654#endif
97e6ee04
DE
1655 {
1656#endif
1657 struct in_addr *array_addr;
1658
1659 /* It is a real name, we solve it */
1660 if ((he = gethostbyname(hostname)) == NULL)
1661 {
1662 /* Reset to invalid address */
1663 addr->s_addr = INADDR_NONE;
1664 address->m_error = GSOCK_NOHOST;
1665 return GSOCK_NOHOST;
1666 }
1667 array_addr = (struct in_addr *) *(he->h_addr_list);
1668 addr->s_addr = array_addr[0].s_addr;
1669 }
1670 return GSOCK_NOERROR;
1671}
1672
1673GSocketError GAddress_INET_SetAnyAddress(GAddress *address)
1674{
1675 return GAddress_INET_SetHostAddress(address, INADDR_ANY);
1676}
1677
1678GSocketError GAddress_INET_SetHostAddress(GAddress *address,
1679 unsigned long hostaddr)
1680{
1681 struct in_addr *addr;
1682
1683 assert(address != NULL);
1684
1685 CHECK_ADDRESS(address, INET);
1686
1687 addr = &(((struct sockaddr_in *)address->m_addr)->sin_addr);
9d715960 1688 addr->s_addr = htonl(hostaddr);
97e6ee04
DE
1689
1690 return GSOCK_NOERROR;
1691}
1692
1693GSocketError GAddress_INET_SetPortName(GAddress *address, const char *port,
1694 const char *protocol)
1695{
1696 struct servent *se;
1697 struct sockaddr_in *addr;
1698
1699 assert(address != NULL);
1700 CHECK_ADDRESS(address, INET);
1701
1702 if (!port)
1703 {
1704 address->m_error = GSOCK_INVPORT;
1705 return GSOCK_INVPORT;
1706 }
b082b524 1707
f6bc1c74
DW
1708#if defined(__WXPM__) && defined(__EMX__)
1709 se = getservbyname(port, (char*)protocol);
1710#else
97e6ee04 1711 se = getservbyname(port, protocol);
f6bc1c74 1712#endif
97e6ee04
DE
1713 if (!se)
1714 {
1715 /* the cast to int suppresses compiler warnings about subscript having the
1716 type char */
1717 if (isdigit((int)port[0]))
1718 {
1719 int port_int;
1720
1721 port_int = atoi(port);
1722 addr = (struct sockaddr_in *)address->m_addr;
1723 addr->sin_port = htons(port_int);
1724 return GSOCK_NOERROR;
1725 }
1726
1727 address->m_error = GSOCK_INVPORT;
1728 return GSOCK_INVPORT;
1729 }
1730
1731 addr = (struct sockaddr_in *)address->m_addr;
1732 addr->sin_port = se->s_port;
1733
1734 return GSOCK_NOERROR;
1735}
1736
1737GSocketError GAddress_INET_SetPort(GAddress *address, unsigned short port)
1738{
1739 struct sockaddr_in *addr;
1740
1741 assert(address != NULL);
1742 CHECK_ADDRESS(address, INET);
b082b524 1743
97e6ee04
DE
1744 addr = (struct sockaddr_in *)address->m_addr;
1745 addr->sin_port = htons(port);
1746
1747 return GSOCK_NOERROR;
1748}
1749
1750GSocketError GAddress_INET_GetHostName(GAddress *address, char *hostname, size_t sbuf)
1751{
1752 struct hostent *he;
1753 char *addr_buf;
1754 struct sockaddr_in *addr;
1755
b082b524 1756 assert(address != NULL);
97e6ee04
DE
1757 CHECK_ADDRESS(address, INET);
1758
1759 addr = (struct sockaddr_in *)address->m_addr;
1760 addr_buf = (char *)&(addr->sin_addr);
1761
1762 he = gethostbyaddr(addr_buf, sizeof(addr->sin_addr), AF_INET);
1763 if (he == NULL)
1764 {
1765 address->m_error = GSOCK_NOHOST;
1766 return GSOCK_NOHOST;
1767 }
1768
1769 strncpy(hostname, he->h_name, sbuf);
1770
1771 return GSOCK_NOERROR;
1772}
1773
1774unsigned long GAddress_INET_GetHostAddress(GAddress *address)
1775{
1776 struct sockaddr_in *addr;
1777
b082b524
DE
1778 assert(address != NULL);
1779 CHECK_ADDRESS_RETVAL(address, INET, 0);
97e6ee04
DE
1780
1781 addr = (struct sockaddr_in *)address->m_addr;
1782
9d715960 1783 return ntohl(addr->sin_addr.s_addr);
97e6ee04
DE
1784}
1785
1786unsigned short GAddress_INET_GetPort(GAddress *address)
1787{
1788 struct sockaddr_in *addr;
1789
b082b524
DE
1790 assert(address != NULL);
1791 CHECK_ADDRESS_RETVAL(address, INET, 0);
97e6ee04
DE
1792
1793 addr = (struct sockaddr_in *)address->m_addr;
1794 return ntohs(addr->sin_port);
1795}
1796
1797/*
1798 * -------------------------------------------------------------------------
1799 * Unix address family
1800 * -------------------------------------------------------------------------
1801 */
1802
1803#ifndef __VISAGECPP__
1804GSocketError _GAddress_Init_UNIX(GAddress *address)
1805{
1806 address->m_len = sizeof(struct sockaddr_un);
1807 address->m_addr = (struct sockaddr *)malloc(address->m_len);
1808 if (address->m_addr == NULL)
1809 {
1810 address->m_error = GSOCK_MEMERR;
1811 return GSOCK_MEMERR;
1812 }
1813
1814 address->m_family = GSOCK_UNIX;
1815 address->m_realfamily = PF_UNIX;
1816 ((struct sockaddr_un *)address->m_addr)->sun_family = AF_UNIX;
1817 ((struct sockaddr_un *)address->m_addr)->sun_path[0] = 0;
1818
1819 return GSOCK_NOERROR;
1820}
1821
1822#define UNIX_SOCK_PATHLEN (sizeof(addr->sun_path)/sizeof(addr->sun_path[0]))
1823
1824GSocketError GAddress_UNIX_SetPath(GAddress *address, const char *path)
1825{
1826 struct sockaddr_un *addr;
1827
b082b524 1828 assert(address != NULL);
97e6ee04 1829
b082b524 1830 CHECK_ADDRESS(address, UNIX);
97e6ee04
DE
1831
1832 addr = ((struct sockaddr_un *)address->m_addr);
1833 strncpy(addr->sun_path, path, UNIX_SOCK_PATHLEN);
1834 addr->sun_path[UNIX_SOCK_PATHLEN - 1] = '\0';
1835
1836 return GSOCK_NOERROR;
1837}
1838
1839GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf)
1840{
1841 struct sockaddr_un *addr;
1842
1843 assert(address != NULL);
1844 CHECK_ADDRESS(address, UNIX);
1845
1846 addr = (struct sockaddr_un *)address->m_addr;
1847
1848 strncpy(path, addr->sun_path, sbuf);
1849
1850 return GSOCK_NOERROR;
1851}
1852#endif /* !defined(__VISAGECPP__) */
1853#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
1854