2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / ada / socket.c
blobf88ed8cdd07b4348645ff2f8bdb88d259eba62aa
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * S O C K E T *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 2003-2008, Free Software Foundation, Inc. *
10 * *
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 2, 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. See the GNU General Public License *
17 * for more details. You should have received a copy of the GNU General *
18 * Public License distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 51 Franklin Street, Fifth Floor, *
20 * Boston, MA 02110-1301, USA. *
21 * *
22 * As a special exception, if you link this file with other files to *
23 * produce an executable, this file does not by itself cause the resulting *
24 * executable to be covered by the GNU General Public License. This except- *
25 * ion does not however invalidate any other reasons why the executable *
26 * file might be covered by the GNU Public License. *
27 * *
28 * GNAT was originally developed by the GNAT team at New York University. *
29 * Extensive contributions were provided by Ada Core Technologies Inc. *
30 * *
31 ****************************************************************************/
33 /* This file provides a portable binding to the sockets API */
34 #if defined (__nucleus__)
35 /* ??? Need proper implementation */
36 #warning Sockets not yet supported on Nucleus
37 #else
38 #include "gsocket.h"
39 /* Include all the necessary system-specific headers and define the
40 necessary macros (shared with gen-soccon). */
42 #if !defined(SO_NOSIGPIPE) && !defined (MSG_NOSIGNAL)
43 #include <signal.h>
44 #endif
45 /* Required if we will be calling signal() in __gnat_disable_all_sigpipes() */
47 #include "raise.h"
48 /* Required for __gnat_malloc() */
50 #include <string.h>
51 /* Required for memcpy() */
53 extern void __gnat_disable_sigpipe (int fd);
54 extern void __gnat_disable_all_sigpipes (void);
55 extern int __gnat_create_signalling_fds (int *fds);
56 extern int __gnat_read_signalling_fd (int rsig);
57 extern int __gnat_write_signalling_fd (int wsig);
58 extern void __gnat_close_signalling_fd (int sig);
59 extern void __gnat_free_socket_set (fd_set *);
60 extern void __gnat_last_socket_in_set (fd_set *, int *);
61 extern void __gnat_get_socket_from_set (fd_set *, int *, int *);
62 extern void __gnat_insert_socket_in_set (fd_set *, int);
63 extern int __gnat_is_socket_in_set (fd_set *, int);
64 extern fd_set *__gnat_new_socket_set (fd_set *);
65 extern void __gnat_remove_socket_from_set (fd_set *, int);
66 extern int __gnat_get_h_errno (void);
68 /* Disable the sending of SIGPIPE for writes on a broken stream */
70 void
71 __gnat_disable_sigpipe (int fd)
73 #ifdef SO_NOSIGPIPE
74 int val = 1;
75 (void) setsockopt (fd, SOL_SOCKET, SO_NOSIGPIPE, &val, sizeof val);
76 #endif
79 void
80 __gnat_disable_all_sigpipes (void)
82 #if !defined(SO_NOSIGPIPE) && !defined(MSG_NOSIGNAL) && defined(SIGPIPE)
83 (void) signal (SIGPIPE, SIG_IGN);
84 #endif
87 #if defined (_WIN32) || defined (__vxworks) || defined (VMS)
89 * Signalling FDs operations are implemented in Ada for these platforms
90 * (see subunit GNAT.Sockets.Thin.Signalling_Fds).
92 #else
94 * Create a pair of connected file descriptors fds[0] and fds[1] used for
95 * signalling by a Selector object. fds[0] is the read end, and fds[1] the
96 * write end.
98 int
99 __gnat_create_signalling_fds (int *fds) {
100 return pipe (fds);
104 * Read one byte of data from rsig, the read end of a pair of signalling fds
105 * created by __gnat_create_signalling_fds.
108 __gnat_read_signalling_fd (int rsig) {
109 char c;
110 return read (rsig, &c, 1);
114 * Write one byte of data to wsig, the write end of a pair of signalling fds
115 * created by __gnat_create_signalling_fds.
118 __gnat_write_signalling_fd (int wsig) {
119 char c = 0;
120 return write (wsig, &c, 1);
124 * Close one end of a pair of signalling fds
126 void
127 __gnat_close_signalling_fd (int sig) {
128 (void) close (sig);
130 #endif
133 * GetXXXbyYYY wrappers
134 * These functions are used by the default implementation of g-socthi,
135 * and also by the Windows version.
137 * They can be used for any platform that either provides an intrinsically
138 * task safe implementation of getXXXbyYYY, or a reentrant variant
139 * getXXXbyYYY_r. Otherwise, a task safe wrapper, including proper mutual
140 * exclusion if appropriate, must be implemented in the target specific
141 * version of g-socthi.
144 #ifdef HAVE_THREAD_SAFE_GETxxxBYyyy
146 __gnat_safe_gethostbyname (const char *name,
147 struct hostent *ret, char *buf, size_t buflen,
148 int *h_errnop)
150 struct hostent *rh;
151 rh = gethostbyname (name);
152 if (rh == NULL) {
153 *h_errnop = h_errno;
154 return -1;
156 *ret = *rh;
157 *h_errnop = 0;
158 return 0;
162 __gnat_safe_gethostbyaddr (const char *addr, int len, int type,
163 struct hostent *ret, char *buf, size_t buflen,
164 int *h_errnop)
166 struct hostent *rh;
167 rh = gethostbyaddr (addr, len, type);
168 if (rh == NULL) {
169 *h_errnop = h_errno;
170 return -1;
172 *ret = *rh;
173 *h_errnop = 0;
174 return 0;
178 __gnat_safe_getservbyname (const char *name, const char *proto,
179 struct servent *ret, char *buf, size_t buflen)
181 struct servent *rh;
182 rh = getservbyname (name, proto);
183 if (rh == NULL)
184 return -1;
185 *ret = *rh;
186 return 0;
190 __gnat_safe_getservbyport (int port, const char *proto,
191 struct servent *ret, char *buf, size_t buflen)
193 struct servent *rh;
194 rh = getservbyport (port, proto);
195 if (rh == NULL)
196 return -1;
197 *ret = *rh;
198 return 0;
200 #elif HAVE_GETxxxBYyyy_R
202 __gnat_safe_gethostbyname (const char *name,
203 struct hostent *ret, char *buf, size_t buflen,
204 int *h_errnop)
206 struct hostent *rh;
207 int ri;
209 #if defined(__linux__) || defined(__GLIBC__)
210 (void) gethostbyname_r (name, ret, buf, buflen, &rh, h_errnop);
211 #else
212 rh = gethostbyname_r (name, ret, buf, buflen, h_errnop);
213 #endif
214 ri = (rh == NULL) ? -1 : 0;
215 return ri;
219 __gnat_safe_gethostbyaddr (const char *addr, int len, int type,
220 struct hostent *ret, char *buf, size_t buflen,
221 int *h_errnop)
223 struct hostent *rh;
224 int ri;
226 #if defined(__linux__) || defined(__GLIBC__)
227 (void) gethostbyaddr_r (addr, len, type, ret, buf, buflen, &rh, h_errnop);
228 #else
229 rh = gethostbyaddr_r (addr, len, type, ret, buf, buflen, h_errnop);
230 #endif
231 ri = (rh == NULL) ? -1 : 0;
232 return ri;
236 __gnat_safe_getservbyname (const char *name, const char *proto,
237 struct servent *ret, char *buf, size_t buflen)
239 struct servent *rh;
240 int ri;
242 #if defined(__linux__) || defined(__GLIBC__)
243 (void) getservbyname_r (name, proto, ret, buf, buflen, &rh);
244 #else
245 rh = getservbyname_r (name, proto, ret, buf, buflen);
246 #endif
247 ri = (rh == NULL) ? -1 : 0;
248 return ri;
252 __gnat_safe_getservbyport (int port, const char *proto,
253 struct servent *ret, char *buf, size_t buflen)
255 struct servent *rh;
256 int ri;
258 #if defined(__linux__) || defined(__GLIBC__)
259 (void) getservbyport_r (port, proto, ret, buf, buflen, &rh);
260 #else
261 rh = getservbyport_r (port, proto, ret, buf, buflen);
262 #endif
263 ri = (rh == NULL) ? -1 : 0;
264 return ri;
266 #endif
268 /* Free socket set. */
270 void
271 __gnat_free_socket_set (fd_set *set)
273 __gnat_free (set);
276 /* Find the largest socket in the socket set SET. This is needed for
277 `select'. LAST is the maximum value for the largest socket. This hint is
278 used to avoid scanning very large socket sets. On return, LAST is the
279 actual largest socket in the socket set. */
281 void
282 __gnat_last_socket_in_set (fd_set *set, int *last)
284 int s;
285 int l;
286 l = -1;
288 #ifdef _WIN32
289 /* More efficient method for NT. */
290 for (s = 0; s < set->fd_count; s++)
291 if ((int) set->fd_array[s] > l)
292 l = set->fd_array[s];
294 #else
296 for (s = *last; s != -1; s--)
297 if (FD_ISSET (s, set))
299 l = s;
300 break;
302 #endif
304 *last = l;
307 /* Get last socket and remove it from the socket set SET. LAST is the
308 maximum value of the largest socket. This hint is used to avoid scanning
309 very large socket sets. On return, LAST is set to the actual largest
310 socket in the socket set. */
312 void
313 __gnat_get_socket_from_set (fd_set *set, int *last, int *socket)
315 *socket = *last;
316 FD_CLR (*socket, set);
317 __gnat_last_socket_in_set (set, last);
320 /* Insert SOCKET in the socket set SET. */
322 void
323 __gnat_insert_socket_in_set (fd_set *set, int socket)
325 FD_SET (socket, set);
328 /* Check whether a given SOCKET is in the socket set SET. */
331 __gnat_is_socket_in_set (fd_set *set, int socket)
333 return FD_ISSET (socket, set);
336 /* Allocate a new socket set and set it as empty. */
338 fd_set *
339 __gnat_new_socket_set (fd_set *set)
341 fd_set *new;
343 #ifdef VMS
344 extern void *__gnat_malloc32 (__SIZE_TYPE__);
345 new = (fd_set *) __gnat_malloc32 (sizeof (fd_set));
346 #else
347 new = (fd_set *) __gnat_malloc (sizeof (fd_set));
348 #endif
350 if (set)
351 memcpy (new, set, sizeof (fd_set));
352 else
353 FD_ZERO (new);
355 return new;
358 /* Remove SOCKET from the socket set SET. */
360 void
361 __gnat_remove_socket_from_set (fd_set *set, int socket)
363 FD_CLR (socket, set);
366 /* Get the value of the last host error */
369 __gnat_get_h_errno (void) {
370 #ifdef __vxworks
371 int vxw_errno = errno;
373 switch (vxw_errno) {
374 case 0:
375 return 0;
377 case S_resolvLib_HOST_NOT_FOUND:
378 case S_hostLib_UNKNOWN_HOST:
379 return HOST_NOT_FOUND;
381 case S_resolvLib_TRY_AGAIN:
382 return TRY_AGAIN;
384 case S_resolvLib_NO_RECOVERY:
385 case S_resolvLib_BUFFER_2_SMALL:
386 case S_resolvLib_INVALID_PARAMETER:
387 case S_resolvLib_INVALID_ADDRESS:
388 case S_hostLib_INVALID_PARAMETER:
389 return NO_RECOVERY;
391 case S_resolvLib_NO_DATA:
392 return NO_DATA;
394 default:
395 return -1;
398 #elif defined (VMS)
399 /* h_errno is defined as follows in OpenVMS' version of <netdb.h>.
400 * However this header file is not available when building the GNAT
401 * runtime library using GCC, so we are hardcoding the definition
402 * directly. Note that the returned address is thread-specific.
404 extern int *decc$h_errno_get_addr ();
405 return *decc$h_errno_get_addr ();
407 #elif defined (__rtems__)
408 /* At this stage in the tool build, no networking .h files are available.
409 * Newlib does not provide networking .h files and RTEMS is not built yet.
410 * So we need to explicitly extern h_errno to access it.
412 extern int h_errno;
413 return h_errno;
415 #else
416 return h_errno;
417 #endif
419 #endif /* __nucleus__ */