1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 2003-2014, Free Software Foundation, Inc. *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 3, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
30 ****************************************************************************/
32 /* This file provides a portable binding to the sockets API */
34 /* Ensure access to errno is thread safe. */
40 #if defined(__FreeBSD__)
41 typedef unsigned int IOCTL_Req_T
;
43 typedef int IOCTL_Req_T
;
46 #if defined(HAVE_SOCKETS)
48 /* Include all the necessary system-specific headers and define the
49 * necessary macros (shared with gen-oscons).
52 #if !defined(SO_NOSIGPIPE) && !defined (MSG_NOSIGNAL)
55 /* Required if we will be calling signal() in __gnat_disable_all_sigpipes() */
58 /* Required for __gnat_malloc() */
61 /* Required for memcpy() */
63 extern void __gnat_disable_sigpipe (int fd
);
64 extern void __gnat_disable_all_sigpipes (void);
65 extern int __gnat_create_signalling_fds (int *fds
);
66 extern int __gnat_read_signalling_fd (int rsig
);
67 extern int __gnat_write_signalling_fd (int wsig
);
68 extern void __gnat_close_signalling_fd (int sig
);
69 extern void __gnat_last_socket_in_set (fd_set
*, int *);
70 extern void __gnat_get_socket_from_set (fd_set
*, int *, int *);
71 extern void __gnat_insert_socket_in_set (fd_set
*, int);
72 extern int __gnat_is_socket_in_set (fd_set
*, int);
73 extern fd_set
*__gnat_new_socket_set (fd_set
*);
74 extern void __gnat_remove_socket_from_set (fd_set
*, int);
75 extern void __gnat_reset_socket_set (fd_set
*);
76 extern int __gnat_get_h_errno (void);
77 extern int __gnat_socket_ioctl (int, IOCTL_Req_T
, int *);
79 extern char * __gnat_servent_s_name (struct servent
*);
80 extern char * __gnat_servent_s_alias (struct servent
*, int index
);
81 extern unsigned short __gnat_servent_s_port (struct servent
*);
82 extern char * __gnat_servent_s_proto (struct servent
*);
84 extern char * __gnat_hostent_h_name (struct hostent
*);
85 extern char * __gnat_hostent_h_alias (struct hostent
*, int);
86 extern int __gnat_hostent_h_addrtype (struct hostent
*);
87 extern int __gnat_hostent_h_length (struct hostent
*);
88 extern char * __gnat_hostent_h_addr (struct hostent
*, int);
90 #ifndef HAVE_INET_PTON
91 extern int __gnat_inet_pton (int, const char *, void *);
94 /* Disable the sending of SIGPIPE for writes on a broken stream */
97 __gnat_disable_sigpipe (int fd
)
101 (void) setsockopt (fd
, SOL_SOCKET
, SO_NOSIGPIPE
, &val
, sizeof val
);
106 __gnat_disable_all_sigpipes (void)
108 #if !defined(SO_NOSIGPIPE) && !defined(MSG_NOSIGNAL) && defined(SIGPIPE)
109 (void) signal (SIGPIPE
, SIG_IGN
);
113 #if defined (_WIN32) || defined (__vxworks)
115 * Signalling FDs operations are implemented in Ada for these platforms
116 * (see subunit GNAT.Sockets.Thin.Signalling_Fds).
120 * Create a pair of connected file descriptors fds[0] and fds[1] used for
121 * signalling by a Selector object. fds[0] is the read end, and fds[1] the
125 __gnat_create_signalling_fds (int *fds
) {
130 * Read one byte of data from rsig, the read end of a pair of signalling fds
131 * created by __gnat_create_signalling_fds.
134 __gnat_read_signalling_fd (int rsig
) {
136 return read (rsig
, &c
, 1);
140 * Write one byte of data to wsig, the write end of a pair of signalling fds
141 * created by __gnat_create_signalling_fds.
144 __gnat_write_signalling_fd (int wsig
) {
146 return write (wsig
, &c
, 1);
150 * Close one end of a pair of signalling fds
153 __gnat_close_signalling_fd (int sig
) {
159 * Handling of gethostbyname, gethostbyaddr, getservbyname and getservbyport
160 * =========================================================================
162 * This module exposes __gnat_getXXXbyYYY operations with the same signature
163 * as the reentrant variant getXXXbyYYY_r.
165 * On platforms where getXXXbyYYY is intrinsically reentrant, the provided user
166 * buffer argument is ignored.
168 * When getXXXbyYYY is not reentrant but getXXXbyYYY_r exists, the latter is
169 * used, and the provided buffer argument must point to a valid, thread-local
170 * buffer (usually on the caller's stack).
172 * When getXXXbyYYY is not reentrant and no reentrant getXXXbyYYY_r variant
173 * is available, the non-reentrant getXXXbyYYY is called, the provided user
174 * buffer is ignored, and the caller is expected to take care of mutual
178 #ifdef HAVE_GETxxxBYyyy_R
180 __gnat_gethostbyname (const char *name
,
181 struct hostent
*ret
, char *buf
, size_t buflen
,
187 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
188 (void) gethostbyname_r (name
, ret
, buf
, buflen
, &rh
, h_errnop
);
190 rh
= gethostbyname_r (name
, ret
, buf
, buflen
, h_errnop
);
192 ri
= (rh
== NULL
) ? -1 : 0;
197 __gnat_gethostbyaddr (const char *addr
, int len
, int type
,
198 struct hostent
*ret
, char *buf
, size_t buflen
,
204 #if defined(__linux__) || defined(__GLIBC__)
205 (void) gethostbyaddr_r (addr
, len
, type
, ret
, buf
, buflen
, &rh
, h_errnop
);
207 rh
= gethostbyaddr_r (addr
, len
, type
, ret
, buf
, buflen
, h_errnop
);
209 ri
= (rh
== NULL
) ? -1 : 0;
214 __gnat_getservbyname (const char *name
, const char *proto
,
215 struct servent
*ret
, char *buf
, size_t buflen
)
220 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
221 (void) getservbyname_r (name
, proto
, ret
, buf
, buflen
, &rh
);
223 rh
= getservbyname_r (name
, proto
, ret
, buf
, buflen
);
225 ri
= (rh
== NULL
) ? -1 : 0;
230 __gnat_getservbyport (int port
, const char *proto
,
231 struct servent
*ret
, char *buf
, size_t buflen
)
236 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
237 (void) getservbyport_r (port
, proto
, ret
, buf
, buflen
, &rh
);
239 rh
= getservbyport_r (port
, proto
, ret
, buf
, buflen
);
241 ri
= (rh
== NULL
) ? -1 : 0;
244 #elif defined (__vxworks)
245 static char vxw_h_name
[MAXHOSTNAMELEN
+ 1];
246 static char *vxw_h_aliases
[1] = { NULL
};
247 static int vxw_h_addr
;
248 static char *vxw_h_addr_list
[2] = { (char*) &vxw_h_addr
, NULL
};
251 __gnat_gethostbyname (const char *name
,
252 struct hostent
*ret
, char *buf
, size_t buflen
,
255 vxw_h_addr
= hostGetByName (name
);
256 if (vxw_h_addr
== ERROR
) {
257 *h_errnop
= __gnat_get_h_errno ();
261 ret
->h_aliases
= &vxw_h_aliases
;
262 ret
->h_addrtype
= AF_INET
;
264 ret
->h_addr_list
= &vxw_h_addr_list
;
269 __gnat_gethostbyaddr (const char *addr
, int len
, int type
,
270 struct hostent
*ret
, char *buf
, size_t buflen
,
273 if (type
!= AF_INET
) {
274 *h_errnop
= EAFNOSUPPORT
;
278 if (addr
== NULL
|| len
!= 4) {
283 if (hostGetByAddr (*(int*)addr
, &vxw_h_name
) != OK
) {
284 *h_errnop
= __gnat_get_h_errno ();
290 ret
->h_name
= &vxw_h_name
;
291 ret
->h_aliases
= &vxw_h_aliases
;
292 ret
->h_addrtype
= AF_INET
;
294 ret
->h_addr_list
= &vxw_h_addr_list
;
298 __gnat_getservbyname (const char *name
, const char *proto
,
299 struct servent
*ret
, char *buf
, size_t buflen
)
301 /* Not available under VxWorks */
306 __gnat_getservbyport (int port
, const char *proto
,
307 struct servent
*ret
, char *buf
, size_t buflen
)
309 /* Not available under VxWorks */
314 __gnat_gethostbyname (const char *name
,
315 struct hostent
*ret
, char *buf
, size_t buflen
,
319 rh
= gethostbyname (name
);
321 *h_errnop
= __gnat_get_h_errno ();
330 __gnat_gethostbyaddr (const char *addr
, int len
, int type
,
331 struct hostent
*ret
, char *buf
, size_t buflen
,
335 rh
= gethostbyaddr (addr
, len
, type
);
337 *h_errnop
= __gnat_get_h_errno ();
346 __gnat_getservbyname (const char *name
, const char *proto
,
347 struct servent
*ret
, char *buf
, size_t buflen
)
350 rh
= getservbyname (name
, proto
);
358 __gnat_getservbyport (int port
, const char *proto
,
359 struct servent
*ret
, char *buf
, size_t buflen
)
362 rh
= getservbyport (port
, proto
);
370 /* Find the largest socket in the socket set SET. This is needed for
371 `select'. LAST is the maximum value for the largest socket. This hint is
372 used to avoid scanning very large socket sets. On return, LAST is the
373 actual largest socket in the socket set. */
376 __gnat_last_socket_in_set (fd_set
*set
, int *last
)
383 /* More efficient method for NT. */
384 for (s
= 0; s
< set
->fd_count
; s
++)
385 if ((int) set
->fd_array
[s
] > l
)
386 l
= set
->fd_array
[s
];
390 for (s
= *last
; s
!= -1; s
--)
391 if (FD_ISSET (s
, set
))
401 /* Get last socket and remove it from the socket set SET. LAST is the
402 maximum value of the largest socket. This hint is used to avoid scanning
403 very large socket sets. On return, LAST is set to the actual largest
404 socket in the socket set. */
407 __gnat_get_socket_from_set (fd_set
*set
, int *last
, int *socket
)
410 FD_CLR (*socket
, set
);
411 __gnat_last_socket_in_set (set
, last
);
414 /* Insert SOCKET in the socket set SET. */
417 __gnat_insert_socket_in_set (fd_set
*set
, int socket
)
419 FD_SET (socket
, set
);
422 /* Check whether a given SOCKET is in the socket set SET. */
425 __gnat_is_socket_in_set (fd_set
*set
, int socket
)
427 return FD_ISSET (socket
, set
);
430 /* Remove SOCKET from the socket set SET. */
433 __gnat_remove_socket_from_set (fd_set
*set
, int socket
)
435 FD_CLR (socket
, set
);
440 __gnat_reset_socket_set (fd_set
*set
)
445 /* Get the value of the last host error */
448 __gnat_get_h_errno (void) {
450 int vxw_errno
= errno
;
456 #ifdef S_hostLib_HOST_NOT_FOUND
457 case S_hostLib_HOST_NOT_FOUND
:
459 case S_hostLib_UNKNOWN_HOST
:
460 return HOST_NOT_FOUND
;
462 #ifdef S_hostLib_TRY_AGAIN
463 case S_hostLib_TRY_AGAIN
:
467 #ifdef S_hostLib_NO_RECOVERY
468 case S_hostLib_NO_RECOVERY
:
470 #ifdef S_hostLib_NETDB_INTERNAL
471 case S_hostLib_NETDB_INTERNAL
:
473 case S_hostLib_INVALID_PARAMETER
:
480 #elif defined (__rtems__)
481 /* At this stage in the tool build, no networking .h files are available.
482 * Newlib does not provide networking .h files and RTEMS is not built yet.
483 * So we need to explicitly extern h_errno to access it.
493 /* Wrapper for ioctl(2), which is a variadic function */
496 __gnat_socket_ioctl (int fd
, IOCTL_Req_T req
, int *arg
) {
498 return ioctlsocket (fd
, req
, arg
);
499 #elif defined (__APPLE__)
501 * On Darwin, req is an unsigned long, and we want to convert without sign
502 * extension to get the proper bit pattern in the case of a 64 bit kernel.
504 return ioctl (fd
, (unsigned int) req
, arg
);
506 return ioctl (fd
, req
, arg
);
510 #ifndef HAVE_INET_PTON
513 __gnat_inet_pton (int af
, const char *src
, void *dst
) {
515 #if defined (_WIN32) && defined (AF_INET6)
521 errno
= EAFNOSUPPORT
;
525 #if defined (__vxworks)
526 return (inet_aton (src
, dst
) == OK
);
528 #elif defined (_WIN32)
529 struct sockaddr_storage ss
;
530 int sslen
= sizeof ss
;
534 rc
= WSAStringToAddressA (src
, af
, NULL
, (struct sockaddr
*)&ss
, &sslen
);
538 *(struct in_addr
*)dst
= ((struct sockaddr_in
*)&ss
)->sin_addr
;
542 *(struct in6_addr
*)dst
= ((struct sockaddr_in6
*)&ss
)->sin6_addr
;
549 #elif defined (__hpux__)
553 if (src
== NULL
|| dst
== NULL
) {
556 } else if (!strcmp (src
, "255.255.255.255")) {
561 addr
= inet_addr (src
);
562 rc
= (addr
!= 0xffffffff);
565 *(in_addr_t
*)dst
= addr
;
573 * Accessor functions for struct hostent.
576 char * __gnat_hostent_h_name (struct hostent
* h
) {
580 char * __gnat_hostent_h_alias (struct hostent
* h
, int index
) {
581 return h
->h_aliases
[index
];
584 int __gnat_hostent_h_addrtype (struct hostent
* h
) {
585 return h
->h_addrtype
;
588 int __gnat_hostent_h_length (struct hostent
* h
) {
592 char * __gnat_hostent_h_addr (struct hostent
* h
, int index
) {
593 return h
->h_addr_list
[index
];
597 * Accessor functions for struct servent.
599 * These are needed because servent has different representations on different
600 * platforms, and we don't want to deal with that on the Ada side. For example,
601 * on Linux, we have (see /usr/include netdb.h):
611 * and on Windows (see mingw's socket.h):
627 __gnat_servent_s_name (struct servent
* s
)
633 __gnat_servent_s_alias (struct servent
* s
, int index
)
635 return s
->s_aliases
[index
];
639 __gnat_servent_s_port (struct servent
* s
)
645 __gnat_servent_s_proto (struct servent
* s
)
650 #endif /* defined(HAVE_SOCKETS) */