1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 2003-2018, 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 #define ATTRIBUTE_UNUSED __attribute__((unused))
36 /* Ensure access to errno is thread safe. */
42 #if defined (__FreeBSD__) || defined (__DragonFly__) \
43 || defined (__NetBSD__) || defined (__OpenBSD__)
44 typedef unsigned int IOCTL_Req_T
;
46 typedef int IOCTL_Req_T
;
49 #if defined(HAVE_SOCKETS)
51 /* Include all the necessary system-specific headers and define the
52 * necessary macros (shared with gen-oscons).
55 #if !defined(SO_NOSIGPIPE) && !defined (MSG_NOSIGNAL)
58 /* Required if we will be calling signal() in __gnat_disable_all_sigpipes() */
61 /* Required for __gnat_malloc() */
64 /* Required for memcpy() */
66 extern void __gnat_disable_sigpipe (int fd
);
67 extern void __gnat_disable_all_sigpipes (void);
68 extern int __gnat_create_signalling_fds (int *fds
);
69 extern int __gnat_read_signalling_fd (int rsig
);
70 extern int __gnat_write_signalling_fd (int wsig
);
71 extern void __gnat_close_signalling_fd (int sig
);
72 extern void __gnat_last_socket_in_set (fd_set
*, int *);
73 extern void __gnat_get_socket_from_set (fd_set
*, int *, int *);
74 extern void __gnat_insert_socket_in_set (fd_set
*, int);
75 extern int __gnat_is_socket_in_set (fd_set
*, int);
76 extern fd_set
*__gnat_new_socket_set (fd_set
*);
77 extern void __gnat_remove_socket_from_set (fd_set
*, int);
78 extern void __gnat_reset_socket_set (fd_set
*);
79 extern int __gnat_get_h_errno (void);
80 extern int __gnat_socket_ioctl (int, IOCTL_Req_T
, int *);
82 extern char * __gnat_servent_s_name (struct servent
*);
83 extern char * __gnat_servent_s_alias (struct servent
*, int index
);
84 extern unsigned short __gnat_servent_s_port (struct servent
*);
85 extern char * __gnat_servent_s_proto (struct servent
*);
87 extern char * __gnat_hostent_h_name (struct hostent
*);
88 extern char * __gnat_hostent_h_alias (struct hostent
*, int);
89 extern int __gnat_hostent_h_addrtype (struct hostent
*);
90 extern int __gnat_hostent_h_length (struct hostent
*);
91 extern char * __gnat_hostent_h_addr (struct hostent
*, int);
93 #ifndef HAVE_INET_PTON
94 extern int __gnat_inet_pton (int, const char *, void *);
97 /* Disable the sending of SIGPIPE for writes on a broken stream */
100 __gnat_disable_sigpipe (int fd ATTRIBUTE_UNUSED
)
104 (void) setsockopt (fd
, SOL_SOCKET
, SO_NOSIGPIPE
, &val
, sizeof val
);
109 __gnat_disable_all_sigpipes (void)
111 #if !defined(SO_NOSIGPIPE) && !defined(MSG_NOSIGNAL) && defined(SIGPIPE)
112 (void) signal (SIGPIPE
, SIG_IGN
);
116 #if defined (_WIN32) || defined (__vxworks)
118 * Signalling FDs operations are implemented in Ada for these platforms
119 * (see subunit GNAT.Sockets.Thin.Signalling_Fds).
123 * Create a pair of connected file descriptors fds[0] and fds[1] used for
124 * signalling by a Selector object. fds[0] is the read end, and fds[1] the
128 __gnat_create_signalling_fds (int *fds
) {
133 * Read one byte of data from rsig, the read end of a pair of signalling fds
134 * created by __gnat_create_signalling_fds.
137 __gnat_read_signalling_fd (int rsig
) {
139 return read (rsig
, &c
, 1);
143 * Write one byte of data to wsig, the write end of a pair of signalling fds
144 * created by __gnat_create_signalling_fds.
147 __gnat_write_signalling_fd (int wsig
) {
149 return write (wsig
, &c
, 1);
153 * Close one end of a pair of signalling fds
156 __gnat_close_signalling_fd (int sig
) {
162 * Handling of gethostbyname, gethostbyaddr, getservbyname and getservbyport
163 * =========================================================================
165 * This module exposes __gnat_getXXXbyYYY operations with the same signature
166 * as the reentrant variant getXXXbyYYY_r.
168 * On platforms where getXXXbyYYY is intrinsically reentrant, the provided user
169 * buffer argument is ignored.
171 * When getXXXbyYYY is not reentrant but getXXXbyYYY_r exists, the latter is
172 * used, and the provided buffer argument must point to a valid, thread-local
173 * buffer (usually on the caller's stack).
175 * When getXXXbyYYY is not reentrant and no reentrant getXXXbyYYY_r variant
176 * is available, the non-reentrant getXXXbyYYY is called, the provided user
177 * buffer is ignored, and the caller is expected to take care of mutual
181 #ifdef HAVE_GETxxxBYyyy_R
183 __gnat_gethostbyname (const char *name
,
184 struct hostent
*ret
, char *buf
, size_t buflen
,
190 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
191 (void) gethostbyname_r (name
, ret
, buf
, buflen
, &rh
, h_errnop
);
193 rh
= gethostbyname_r (name
, ret
, buf
, buflen
, h_errnop
);
195 ri
= (rh
== NULL
) ? -1 : 0;
200 __gnat_gethostbyaddr (const char *addr
, int len
, int type
,
201 struct hostent
*ret
, char *buf
, size_t buflen
,
207 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
208 (void) gethostbyaddr_r (addr
, len
, type
, ret
, buf
, buflen
, &rh
, h_errnop
);
210 rh
= gethostbyaddr_r (addr
, len
, type
, ret
, buf
, buflen
, h_errnop
);
212 ri
= (rh
== NULL
) ? -1 : 0;
217 __gnat_getservbyname (const char *name
, const char *proto
,
218 struct servent
*ret
, char *buf
, size_t buflen
)
223 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
224 (void) getservbyname_r (name
, proto
, ret
, buf
, buflen
, &rh
);
226 rh
= getservbyname_r (name
, proto
, ret
, buf
, buflen
);
228 ri
= (rh
== NULL
) ? -1 : 0;
233 __gnat_getservbyport (int port
, const char *proto
,
234 struct servent
*ret
, char *buf
, size_t buflen
)
239 #if defined(__linux__) || defined(__GLIBC__) || defined(__rtems__)
240 (void) getservbyport_r (port
, proto
, ret
, buf
, buflen
, &rh
);
242 rh
= getservbyport_r (port
, proto
, ret
, buf
, buflen
);
244 ri
= (rh
== NULL
) ? -1 : 0;
247 #elif defined (__vxworks)
248 static char vxw_h_name
[MAXHOSTNAMELEN
+ 1];
249 static char *vxw_h_aliases
[1] = { NULL
};
250 static int vxw_h_addr
;
251 static char *vxw_h_addr_list
[2] = { (char*) &vxw_h_addr
, NULL
};
254 __gnat_gethostbyname (const char *name
,
255 struct hostent
*ret
, char *buf
, size_t buflen
,
258 vxw_h_addr
= hostGetByName (name
);
259 if (vxw_h_addr
== ERROR
) {
260 *h_errnop
= __gnat_get_h_errno ();
264 ret
->h_aliases
= &vxw_h_aliases
;
265 ret
->h_addrtype
= AF_INET
;
267 ret
->h_addr_list
= &vxw_h_addr_list
;
272 __gnat_gethostbyaddr (const char *addr
, int len
, int type
,
273 struct hostent
*ret
, char *buf
, size_t buflen
,
276 if (type
!= AF_INET
) {
277 *h_errnop
= EAFNOSUPPORT
;
281 if (addr
== NULL
|| len
!= 4) {
286 if (hostGetByAddr (*(int*)addr
, &vxw_h_name
) != OK
) {
287 *h_errnop
= __gnat_get_h_errno ();
293 ret
->h_name
= &vxw_h_name
;
294 ret
->h_aliases
= &vxw_h_aliases
;
295 ret
->h_addrtype
= AF_INET
;
297 ret
->h_addr_list
= &vxw_h_addr_list
;
301 __gnat_getservbyname (const char *name
, const char *proto
,
302 struct servent
*ret
, char *buf
, size_t buflen
)
304 /* Not available under VxWorks */
309 __gnat_getservbyport (int port
, const char *proto
,
310 struct servent
*ret
, char *buf
, size_t buflen
)
312 /* Not available under VxWorks */
317 __gnat_gethostbyname (const char *name
,
318 struct hostent
*ret
, char *buf
, size_t buflen
,
322 rh
= gethostbyname (name
);
324 *h_errnop
= __gnat_get_h_errno ();
333 __gnat_gethostbyaddr (const char *addr
, int len
, int type
,
334 struct hostent
*ret
, char *buf
, size_t buflen
,
338 rh
= gethostbyaddr (addr
, len
, type
);
340 *h_errnop
= __gnat_get_h_errno ();
349 __gnat_getservbyname (const char *name
, const char *proto
,
350 struct servent
*ret
, char *buf
, size_t buflen
)
353 rh
= getservbyname (name
, proto
);
361 __gnat_getservbyport (int port
, const char *proto
,
362 struct servent
*ret
, char *buf
, size_t buflen
)
365 rh
= getservbyport (port
, proto
);
373 /* Find the largest socket in the socket set SET. This is needed for
374 `select'. LAST is the maximum value for the largest socket. This hint is
375 used to avoid scanning very large socket sets. On return, LAST is the
376 actual largest socket in the socket set. */
379 __gnat_last_socket_in_set (fd_set
*set
, int *last
)
386 /* More efficient method for NT. */
387 for (s
= 0; s
< set
->fd_count
; s
++)
388 if ((int) set
->fd_array
[s
] > l
)
389 l
= set
->fd_array
[s
];
393 for (s
= *last
; s
!= -1; s
--)
394 if (FD_ISSET (s
, set
))
404 /* Get last socket and remove it from the socket set SET. LAST is the
405 maximum value of the largest socket. This hint is used to avoid scanning
406 very large socket sets. On return, LAST is set to the actual largest
407 socket in the socket set. */
410 __gnat_get_socket_from_set (fd_set
*set
, int *last
, int *socket
)
413 FD_CLR (*socket
, set
);
414 __gnat_last_socket_in_set (set
, last
);
417 /* Insert SOCKET in the socket set SET. */
420 __gnat_insert_socket_in_set (fd_set
*set
, int socket
)
422 FD_SET (socket
, set
);
425 /* Check whether a given SOCKET is in the socket set SET. */
428 __gnat_is_socket_in_set (fd_set
*set
, int socket
)
430 return FD_ISSET (socket
, set
);
433 /* Remove SOCKET from the socket set SET. */
436 __gnat_remove_socket_from_set (fd_set
*set
, int socket
)
438 FD_CLR (socket
, set
);
443 __gnat_reset_socket_set (fd_set
*set
)
448 /* Get the value of the last host error */
451 __gnat_get_h_errno (void) {
453 int vxw_errno
= errno
;
459 #ifdef S_hostLib_HOST_NOT_FOUND
460 case S_hostLib_HOST_NOT_FOUND
:
462 case S_hostLib_UNKNOWN_HOST
:
463 return HOST_NOT_FOUND
;
465 #ifdef S_hostLib_TRY_AGAIN
466 case S_hostLib_TRY_AGAIN
:
470 #ifdef S_hostLib_NO_RECOVERY
471 case S_hostLib_NO_RECOVERY
:
473 #ifdef S_hostLib_NETDB_INTERNAL
474 case S_hostLib_NETDB_INTERNAL
:
476 case S_hostLib_INVALID_PARAMETER
:
483 #elif defined (__rtems__)
484 /* At this stage in the tool build, no networking .h files are available.
485 * Newlib does not provide networking .h files and RTEMS is not built yet.
486 * So we need to explicitly extern h_errno to access it.
496 /* Wrapper for ioctl(2), which is a variadic function */
499 __gnat_socket_ioctl (int fd
, IOCTL_Req_T req
, int *arg
) {
501 return ioctlsocket (fd
, req
, arg
);
502 #elif defined (__APPLE__)
504 * On Darwin, req is an unsigned long, and we want to convert without sign
505 * extension to get the proper bit pattern in the case of a 64 bit kernel.
507 return ioctl (fd
, (unsigned int) req
, arg
);
509 return ioctl (fd
, req
, arg
);
513 #ifndef HAVE_INET_PTON
516 __gnat_inet_pton (int af
, const char *src
, void *dst
) {
518 #if defined (_WIN32) && defined (AF_INET6)
524 errno
= EAFNOSUPPORT
;
528 #if defined (__vxworks)
529 return (inet_aton (src
, dst
) == OK
);
531 #elif defined (_WIN32)
532 struct sockaddr_storage ss
;
533 int sslen
= sizeof ss
;
537 rc
= WSAStringToAddressA (src
, af
, NULL
, (struct sockaddr
*)&ss
, &sslen
);
541 *(struct in_addr
*)dst
= ((struct sockaddr_in
*)&ss
)->sin_addr
;
545 *(struct in6_addr
*)dst
= ((struct sockaddr_in6
*)&ss
)->sin6_addr
;
552 #elif defined (__hpux__)
556 if (src
== NULL
|| dst
== NULL
) {
559 } else if (!strcmp (src
, "255.255.255.255")) {
564 addr
= inet_addr (src
);
565 rc
= (addr
!= 0xffffffff);
568 *(in_addr_t
*)dst
= addr
;
576 * Accessor functions for struct hostent.
579 char * __gnat_hostent_h_name (struct hostent
* h
) {
583 char * __gnat_hostent_h_alias (struct hostent
* h
, int index
) {
584 return h
->h_aliases
[index
];
587 int __gnat_hostent_h_addrtype (struct hostent
* h
) {
588 return h
->h_addrtype
;
591 int __gnat_hostent_h_length (struct hostent
* h
) {
595 char * __gnat_hostent_h_addr (struct hostent
* h
, int index
) {
596 return h
->h_addr_list
[index
];
600 * Accessor functions for struct servent.
602 * These are needed because servent has different representations on different
603 * platforms, and we don't want to deal with that on the Ada side. For example,
604 * on Linux, we have (see /usr/include netdb.h):
614 * and on Windows (see mingw's socket.h):
630 __gnat_servent_s_name (struct servent
* s
)
636 __gnat_servent_s_alias (struct servent
* s
, int index
)
638 return s
->s_aliases
[index
];
642 __gnat_servent_s_port (struct servent
* s
)
648 __gnat_servent_s_proto (struct servent
* s
)
653 #endif /* defined(HAVE_SOCKETS) */