GNUnet 0.22.1
network.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009-2013 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
27#include "platform.h"
28#include "gnunet_common.h"
29#include "disk.h"
30
31#define LOG(kind, ...) GNUNET_log_from (kind, "util-network", __VA_ARGS__)
32#define LOG_STRERROR_FILE(kind, syscall, \
33 filename) GNUNET_log_from_strerror_file (kind, \
34 "util-network", \
35 syscall, \
36 filename)
37#define LOG_STRERROR(kind, syscall) GNUNET_log_from_strerror (kind, \
38 "util-network", \
39 syscall)
40
41#define DEBUG_NETWORK GNUNET_EXTRA_LOGGING
42
43
44#ifndef INVALID_SOCKET
45#define INVALID_SOCKET -1
46#endif
47
48
53{
54 int fd;
55
59 int af;
60
64 int type;
65
69 socklen_t addrlen;
70
74 struct sockaddr *addr;
75};
76
77
80{
81 static int cache_v4 = -1;
82 static int cache_v6 = -1;
83 static int cache_un = -1;
84 int s;
85 int ret;
86
87 switch (pf)
88 {
89 case PF_INET:
90 if (-1 != cache_v4)
91 return cache_v4;
92 break;
93
94 case PF_INET6:
95 if (-1 != cache_v6)
96 return cache_v6;
97 break;
98
99#ifdef PF_UNIX
100 case PF_UNIX:
101 if (-1 != cache_un)
102 return cache_un;
103 break;
104#endif
105 }
106 s = socket (pf, SOCK_STREAM, 0);
107 if (-1 == s)
108 {
109 if (EAFNOSUPPORT != errno)
110 {
112 "socket");
113 return GNUNET_SYSERR;
114 }
115 ret = GNUNET_NO;
116 }
117 else
118 {
119 GNUNET_break (0 == close (s));
120 ret = GNUNET_OK;
121 }
122 switch (pf)
123 {
124 case PF_INET:
125 cache_v4 = ret;
126 break;
127
128 case PF_INET6:
129 cache_v6 = ret;
130 break;
131
132#ifdef PF_UNIX
133 case PF_UNIX:
134 cache_un = ret;
135 break;
136#endif
137 }
138 return ret;
139}
140
141
142char *
144{
145 struct sockaddr_un dummy;
146 size_t slen;
147 char *end;
148 struct GNUNET_HashCode sh;
150 size_t upm;
151
152 upm = sizeof(dummy.sun_path);
153 slen = strlen (unixpath);
154 if (slen < upm)
155 return unixpath; /* no shortening required */
156 GNUNET_CRYPTO_hash (unixpath, slen, &sh);
157 while (16 + strlen (unixpath) >= upm)
158 {
159 if (NULL == (end = strrchr (unixpath, '/')))
160 {
162 _ (
163 "Unable to shorten unix path `%s' while keeping name unique\n"),
164 unixpath);
165 GNUNET_free (unixpath);
166 return NULL;
167 }
168 *end = '\0';
169 }
171 ae.encoding[16] = '\0';
172 strcat (unixpath, (char *) ae.encoding);
173 return unixpath;
174}
175
176
177void
178GNUNET_NETWORK_unix_precheck (const struct sockaddr_un *un)
179{
180 int s;
181 int eno;
182 struct stat sbuf;
183 int ret;
184
185 s = socket (AF_UNIX, SOCK_STREAM, 0);
186 if (-1 == s)
187 {
189 "Failed to open AF_UNIX socket");
190 return;
191 }
192 ret = connect (s,
193 (struct sockaddr *) un,
194 sizeof(struct sockaddr_un));
195 eno = errno;
196 GNUNET_break (0 == close (s));
197 if (0 == ret)
198 return; /* another process is listening, do not remove! */
199 if (ECONNREFUSED != eno)
200 return; /* some other error, likely "no such file or directory" -- all well */
201 /* should unlink, but sanity checks first */
202 if (0 != stat (un->sun_path,
203 &sbuf))
204 return; /* failed to 'stat', likely does not exist after all */
205 if (S_IFSOCK != (S_IFMT & sbuf.st_mode))
206 return; /* refuse to unlink anything except sockets */
207 /* finally, really unlink */
209 "Removing left-over `%s' from previous execution\n",
210 un->sun_path);
211 if (0 != unlink (un->sun_path))
213 "unlink",
214 un->sun_path);
215}
216
217
218#ifndef FD_COPY
219#define FD_COPY(s, d) do { GNUNET_memcpy ((d), (s), sizeof(fd_set)); } while (0)
220#endif
221
222
225 int doBlock)
226{
227 int flags = fcntl (fd->fd, F_GETFL);
228
229 if (flags == -1)
230 {
232 "fcntl");
233 return GNUNET_SYSERR;
234 }
235 if (doBlock)
236 flags &= ~O_NONBLOCK;
237
238 else
239 flags |= O_NONBLOCK;
240 if (0 != fcntl (fd->fd,
241 F_SETFL,
242 flags))
243
244 {
246 "fcntl");
247 return GNUNET_SYSERR;
248 }
249 return GNUNET_OK;
250}
251
252
260static int
262{
263 int i;
264 i = fcntl (h->fd, F_GETFD);
265 if (i < 0)
266 return GNUNET_SYSERR;
267 if (i == (i | FD_CLOEXEC))
268 return GNUNET_OK;
269 i |= FD_CLOEXEC;
270 if (fcntl (h->fd, F_SETFD, i) < 0)
271 return GNUNET_SYSERR;
272
273 return GNUNET_OK;
274}
275
276
277#ifdef DARWIN
283static int
284socket_set_nosigpipe (const struct GNUNET_NETWORK_Handle *h)
285{
286 int abs_value = 1;
287
288 if (0 !=
289 setsockopt (h->fd, SOL_SOCKET, SO_NOSIGPIPE,
290 (const void *) &abs_value,
291 sizeof(abs_value)))
292 return GNUNET_SYSERR;
293 return GNUNET_OK;
294}
295
296
297#endif
298
299
307static void
309{
310 int value = 1;
311
312 if (0 !=
313 setsockopt (h->fd,
314 IPPROTO_TCP,
315 TCP_NODELAY,
316 &value, sizeof(value)))
318 "setsockopt");
319}
320
321
334static int
336 int af,
337 int type)
338{
339 int eno;
340
341 h->af = af;
342 h->type = type;
343 if (h->fd == INVALID_SOCKET)
344 {
345 eno = errno;
346 GNUNET_free (h);
347 errno = eno;
348 return GNUNET_SYSERR;
349 }
350
351 if (h->fd >= FD_SETSIZE)
352 {
355 errno = EMFILE;
356 return GNUNET_SYSERR;
357 }
358
361 "socket_set_inheritable");
362
364 {
365 eno = errno;
366 GNUNET_break (0);
368 errno = eno;
369 return GNUNET_SYSERR;
370 }
371#ifdef DARWIN
372 if (GNUNET_SYSERR == socket_set_nosigpipe (h))
373 {
374 eno = errno;
375 GNUNET_break (0);
377 errno = eno;
378 return GNUNET_SYSERR;
379 }
380#endif
381 if ((type == SOCK_STREAM)
382#ifdef AF_UNIX
383 && (af != AF_UNIX)
384#endif
385 )
387 return GNUNET_OK;
388}
389
390
393 struct sockaddr *address,
394 socklen_t *address_len)
395{
397 int eno;
398
400#if DEBUG_NETWORK
401 {
402 struct sockaddr_storage name;
403 socklen_t namelen = sizeof(name);
404
405 int gsn = getsockname (desc->fd,
406 (struct sockaddr *) &name,
407 &namelen);
408
409 if (0 == gsn)
411 "Accepting connection on `%s'\n",
412 GNUNET_a2s ((const struct sockaddr *) &name,
413 namelen));
414 }
415#endif
416 ret->fd = accept (desc->fd,
417 address,
418 address_len);
419 if (-1 == ret->fd)
420 {
421 eno = errno;
423 errno = eno;
424 return NULL;
425 }
426 if (GNUNET_OK !=
428 (NULL != address) ? address->sa_family :
429 desc->af,
430 SOCK_STREAM))
431 {
432 return NULL;
433 }
434 return ret;
435}
436
437
440 const struct sockaddr *address,
441 socklen_t address_len)
442{
443 int ret;
444
445#ifdef IPV6_V6ONLY
446#ifdef IPPROTO_IPV6
447 {
448 const int on = 1;
449
450 if (AF_INET6 == desc->af)
451 if (setsockopt (desc->fd,
452 IPPROTO_IPV6,
453 IPV6_V6ONLY,
454 (const void *) &on,
455 sizeof(on)))
457 "setsockopt");
458 }
459#endif
460#endif
461 if (AF_UNIX == address->sa_family)
462 GNUNET_NETWORK_unix_precheck ((const struct sockaddr_un *) address);
463
464 {
465 const int on = 1;
466
467 if ( (SOCK_STREAM == desc->type) &&
468 (0 != setsockopt (desc->fd,
469 SOL_SOCKET,
470 SO_REUSEADDR,
471 &on, sizeof(on))) )
473 "setsockopt");
474 }
475 {
476 /* set permissions of newly created non-abstract UNIX domain socket to
477 "user-only"; applications can choose to relax this later */
478 mode_t old_mask = 0; /* assigned to make compiler happy */
479 const struct sockaddr_un *un = (const struct sockaddr_un *) address;
480 int not_abstract = 0;
481
482 if ((AF_UNIX == address->sa_family)
483 && ('\0' != un->sun_path[0])) /* Not an abstract socket */
484 not_abstract = 1;
485 if (not_abstract)
486 old_mask = umask (S_IWGRP | S_IRGRP | S_IXGRP | S_IWOTH | S_IROTH
487 | S_IXOTH);
488
489 ret = bind (desc->fd,
490 address,
491 address_len);
492
493 if (not_abstract)
494 (void) umask (old_mask);
495 }
496 if (0 != ret)
497 return GNUNET_SYSERR;
498
499 desc->addr = GNUNET_malloc (address_len);
500 GNUNET_memcpy (desc->addr, address, address_len);
501 desc->addrlen = address_len;
502
503 return GNUNET_OK;
504}
505
506
509{
510 int ret;
511 const struct sockaddr_un *un;
512
513 ret = close (desc->fd);
514
515 un = (const struct sockaddr_un *) desc->addr;
516
517 /* Cleanup the UNIX domain socket and its parent directories in case of non
518 abstract sockets */
519 if ((AF_UNIX == desc->af) &&
520 (NULL != desc->addr) &&
521 ('\0' != un->sun_path[0]))
522 {
523 char *dirname = GNUNET_strndup (un->sun_path,
524 sizeof(un->sun_path));
525
526 if (0 != unlink (dirname))
527 {
529 "unlink",
530 dirname);
531 }
532 else
533 {
534 size_t len;
535
536 len = strlen (dirname);
537 while ((len > 0) && (dirname[len] != DIR_SEPARATOR))
538 len--;
539 dirname[len] = '\0';
540 if ((0 != len) && (0 != rmdir (dirname)))
541 {
542 switch (errno)
543 {
544 case EACCES:
545 case ENOTEMPTY:
546 case EPERM:
547 /* these are normal and can just be ignored */
548 break;
549
550 default:
552 "rmdir",
553 dirname);
554 break;
555 }
556 }
557 }
558 GNUNET_free (dirname);
559 }
561 return (ret == 0) ? GNUNET_OK : GNUNET_SYSERR;
562}
563
564
565void
567{
568 GNUNET_free (desc->addr);
569 GNUNET_free (desc);
570}
571
572
581{
583
584 if (fcntl (fd, F_GETFD) < 0)
585 return NULL; /* invalid FD */
587 ret->fd = fd;
588 ret->af = AF_UNSPEC;
589 return ret;
590}
591
592
603 const struct sockaddr *address,
604 socklen_t address_len)
605{
606 int ret;
607
608 ret = connect (desc->fd,
609 address,
610 address_len);
611
612 return ret == 0 ? GNUNET_OK : GNUNET_SYSERR;
613}
614
615
628 int level,
629 int optname,
630 void *optval,
631 socklen_t *optlen)
632{
633 int ret;
634
635 ret = getsockopt (desc->fd,
636 level,
637 optname,
638 optval, optlen);
639
640 return ret == 0 ? GNUNET_OK : GNUNET_SYSERR;
641}
642
643
653 int backlog)
654{
655 int ret;
656
657 ret = listen (desc->fd,
658 backlog);
659
660 return ret == 0 ? GNUNET_OK : GNUNET_SYSERR;
661}
662
663
670ssize_t
672{
673 int error;
674
675 /* How much is there to be read? */
676 int pending;
677
678 error = ioctl (desc->fd,
679 FIONREAD,
680 &pending);
681 if (0 == error)
682 return (ssize_t) pending;
683 return GNUNET_SYSERR;
684}
685
686
687ssize_t
689 void *buffer,
690 size_t length,
691 struct sockaddr *src_addr,
692 socklen_t *addrlen)
693{
694 int flags = 0;
695
696#ifdef MSG_DONTWAIT
697 flags |= MSG_DONTWAIT;
698#endif
699 return recvfrom (desc->fd,
700 buffer,
701 length,
702 flags,
703 src_addr,
704 addrlen);
705}
706
707
716ssize_t
718 void *buffer,
719 size_t length)
720{
721 int ret;
722 int flags;
723
724 flags = 0;
725
726#ifdef MSG_DONTWAIT
727 flags |= MSG_DONTWAIT;
728#endif
729 ret = recv (desc->fd,
730 buffer,
731 length,
732 flags);
733 return ret;
734}
735
736
737ssize_t
739 const void *buffer,
740 size_t length)
741{
742 int ret;
743 int flags;
744
745 flags = 0;
746#ifdef MSG_DONTWAIT
747 flags |= MSG_DONTWAIT;
748#endif
749#ifdef MSG_NOSIGNAL
750 flags |= MSG_NOSIGNAL;
751#endif
752 ret = send (desc->fd,
753 buffer,
754 length,
755 flags);
756 return ret;
757}
758
759
771ssize_t
773 const void *message,
774 size_t length,
775 const struct sockaddr *dest_addr,
776 socklen_t dest_len)
777{
778 int flags = 0;
779
780#ifdef MSG_DONTWAIT
781 flags |= MSG_DONTWAIT;
782#endif
783#ifdef MSG_NOSIGNAL
784 flags |= MSG_NOSIGNAL;
785#endif
786 return sendto (desc->fd,
787 message,
788 length,
789 flags,
790 dest_addr,
791 dest_len);
792}
793
794
805int
807 int level,
808 int option_name,
809 const void *option_value,
810 socklen_t option_len)
811{
812 return (0 == setsockopt (fd->fd,
813 level,
814 option_name,
815 option_value,
816 option_len))
817 ? GNUNET_OK
819}
820
821
834 int type,
835 int protocol)
836{
838 int fd;
839
840 fd = socket (domain, type, protocol);
841 if (-1 == fd)
842 return NULL;
844 ret->fd = fd;
845 if (GNUNET_OK !=
847 domain,
848 type))
849 return NULL;
850 return ret;
851}
852
853
862 int how)
863{
864 int ret;
865
866 ret = shutdown (desc->fd, how);
867
868 return (0 == ret) ? GNUNET_OK : GNUNET_SYSERR;
869}
870
871
883{
884 int ret = 0;
885
886#ifdef __linux__
887 int value = 0;
888
889 if (0 !=
890 (ret =
891 setsockopt (desc->fd,
892 SOL_SOCKET,
893 SO_SNDBUF,
894 &value,
895 sizeof(value))))
897 "setsockopt");
898 if (0 !=
899 (ret =
900 setsockopt (desc->fd,
901 SOL_SOCKET,
902 SO_RCVBUF,
903 &value,
904 sizeof(value))))
906 "setsockopt");
907#endif
908 return ret == 0 ? GNUNET_OK : GNUNET_SYSERR;
909}
910
911
917void
919{
920 FD_ZERO (&fds->sds);
921 fds->nsds = 0;
922}
923
924
931void
933 const struct GNUNET_NETWORK_Handle *desc)
934{
935 FD_SET (desc->fd,
936 &fds->sds);
937 fds->nsds = GNUNET_MAX (fds->nsds,
938 desc->fd + 1);
939}
940
941
949int
951 const struct GNUNET_NETWORK_Handle *desc)
952{
953 return FD_ISSET (desc->fd,
954 &fds->sds);
955}
956
957
964void
966 const struct GNUNET_NETWORK_FDSet *src)
967{
968 int nfds;
969
970 for (nfds = src->nsds; nfds >= 0; nfds--)
971 if (FD_ISSET (nfds, &src->sds))
972 FD_SET (nfds, &dst->sds);
973 dst->nsds = GNUNET_MAX (dst->nsds,
974 src->nsds);
975}
976
977
984void
986 const struct GNUNET_NETWORK_FDSet *from)
987{
988 FD_COPY (&from->sds,
989 &to->sds);
990 to->nsds = from->nsds;
991}
992
993
1000int
1002{
1003 return desc->fd;
1004}
1005
1006
1013struct sockaddr*
1015{
1016 return desc->addr;
1017}
1018
1019
1026socklen_t
1028{
1029 return desc->addrlen;
1030}
1031
1032
1040void
1042 const fd_set *from,
1043 int nfds)
1044{
1045 FD_COPY (from,
1046 &to->sds);
1047 to->nsds = nfds;
1048}
1049
1050
1057void
1059 int nfd)
1060{
1061 GNUNET_assert ((nfd >= 0) && (nfd < FD_SETSIZE));
1062 FD_SET (nfd, &to->sds);
1063 to->nsds = GNUNET_MAX (nfd + 1,
1064 to->nsds);
1065}
1066
1067
1075int
1077 int nfd)
1078{
1079 if ((-1 == nfd) ||
1080 (NULL == to))
1081 return GNUNET_NO;
1082 return FD_ISSET (nfd, &to->sds) ? GNUNET_YES : GNUNET_NO;
1083}
1084
1085
1091void
1093 const struct GNUNET_DISK_FileHandle *h)
1094{
1095 int fd;
1096
1099 &fd,
1100 sizeof(int)));
1101 FD_SET (fd,
1102 &fds->sds);
1103 fds->nsds = GNUNET_MAX (fd + 1,
1104 fds->nsds);
1105}
1106
1107
1113void
1115 const struct GNUNET_DISK_FileHandle *h)
1116{
1118}
1119
1120
1128int
1130 const struct GNUNET_DISK_FileHandle *h)
1131{
1132 return FD_ISSET (h->fd,
1133 &fds->sds);
1134}
1135
1136
1144int
1146 const struct GNUNET_NETWORK_FDSet *fds2)
1147{
1148 int nfds;
1149
1150 nfds = GNUNET_MIN (fds1->nsds,
1151 fds2->nsds);
1152 while (nfds > 0)
1153 {
1154 nfds--;
1155 if ((FD_ISSET (nfds,
1156 &fds1->sds)) &&
1157 (FD_ISSET (nfds,
1158 &fds2->sds)))
1159 return GNUNET_YES;
1160 }
1161 return GNUNET_NO;
1162}
1163
1164
1170struct GNUNET_NETWORK_FDSet *
1172{
1173 struct GNUNET_NETWORK_FDSet *fds;
1174
1175 fds = GNUNET_new (struct GNUNET_NETWORK_FDSet);
1177 return fds;
1178}
1179
1180
1186void
1188{
1189 GNUNET_free (fds);
1190}
1191
1192
1200int
1202 uint16_t port)
1203{
1204 struct GNUNET_NETWORK_Handle *socket;
1205 int bind_status;
1206 int socktype;
1207 char open_port_str[6];
1208 struct addrinfo hint;
1209 struct addrinfo *ret;
1210 struct addrinfo *ai;
1211
1212 GNUNET_snprintf (open_port_str,
1213 sizeof(open_port_str),
1214 "%u",
1215 (unsigned int) port);
1216 socktype = (IPPROTO_TCP == ipproto) ? SOCK_STREAM : SOCK_DGRAM;
1217 ret = NULL;
1218 memset (&hint, 0, sizeof(hint));
1219 hint.ai_family = AF_UNSPEC; /* IPv4 and IPv6 */
1220 hint.ai_socktype = socktype;
1221 hint.ai_protocol = ipproto;
1222 hint.ai_addrlen = 0;
1223 hint.ai_addr = NULL;
1224 hint.ai_canonname = NULL;
1225 hint.ai_next = NULL;
1226 hint.ai_flags = AI_PASSIVE | AI_NUMERICSERV; /* Wild card address */
1227 GNUNET_assert (0 == getaddrinfo (NULL,
1228 open_port_str,
1229 &hint,
1230 &ret));
1231 bind_status = GNUNET_NO;
1232 for (ai = ret; NULL != ai; ai = ai->ai_next)
1233 {
1234 socket = GNUNET_NETWORK_socket_create (ai->ai_family,
1235 ai->ai_socktype,
1236 ai->ai_protocol);
1237 if (NULL == socket)
1238 continue;
1239 bind_status = GNUNET_NETWORK_socket_bind (socket,
1240 ai->ai_addr,
1241 ai->ai_addrlen);
1243 if (GNUNET_OK != bind_status)
1244 break;
1245 }
1246 freeaddrinfo (ret);
1247 return bind_status;
1248}
1249
1250
1260int
1262 struct GNUNET_NETWORK_FDSet *wfds,
1263 struct GNUNET_NETWORK_FDSet *efds,
1264 const struct GNUNET_TIME_Relative timeout)
1265{
1266 int nfds;
1267 struct timeval tv;
1268
1269 if (NULL != rfds)
1270 nfds = rfds->nsds;
1271 else
1272 nfds = 0;
1273 if (NULL != wfds)
1274 nfds = GNUNET_MAX (nfds,
1275 wfds->nsds);
1276 if (NULL != efds)
1277 nfds = GNUNET_MAX (nfds,
1278 efds->nsds);
1279 if ((0 == nfds) &&
1281 {
1282 GNUNET_break (0);
1284 _ (
1285 "Fatal internal logic error, process hangs in `%s' (abort with CTRL-C)!\n"),
1286 "select");
1287 }
1288 if (timeout.rel_value_us / GNUNET_TIME_UNIT_SECONDS.rel_value_us > (unsigned
1289 long long)
1290 LONG_MAX)
1291 {
1292 tv.tv_sec = LONG_MAX;
1293 tv.tv_usec = 999999L;
1294 }
1295 else
1296 {
1297 tv.tv_sec = (long) (timeout.rel_value_us
1298 / GNUNET_TIME_UNIT_SECONDS.rel_value_us);
1299 tv.tv_usec =
1301 - (tv.tv_sec * GNUNET_TIME_UNIT_SECONDS.rel_value_us));
1302 }
1303 return select (nfds,
1304 (NULL != rfds) ? &rfds->sds : NULL,
1305 (NULL != wfds) ? &wfds->sds : NULL,
1306 (NULL != efds) ? &efds->sds : NULL,
1308 GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us) ? NULL : &tv);
1309}
1310
1311
1312/* end of network.c */
enum GNUNET_GenericReturnValue GNUNET_DISK_internal_file_handle_(const struct GNUNET_DISK_FileHandle *fh, void *dst, size_t dst_len)
Retrieve OS file handle.
Definition: disk.c:1635
Internal DISK related helper functions.
static struct GNUNET_ARM_Handle * h
Connection with ARM.
Definition: gnunet-arm.c:98
static int ret
Final status code.
Definition: gnunet-arm.c:93
static struct GNUNET_TIME_Relative timeout
User defined timestamp for completing operations.
Definition: gnunet-arm.c:118
static int end
Set if we are to shutdown all services (including ARM).
Definition: gnunet-arm.c:33
static uint16_t port
Port number.
Definition: gnunet-bcd.c:146
static struct GNUNET_TRANSPORT_AddressIdentifier * ai
Handle to the operation that publishes our address.
static char * address
GNS address for this phone.
static struct in_addr dummy
Target "dummy" address of the packet we pretend to respond to.
static struct GNUNET_IDENTITY_Handle * sh
Handle to IDENTITY service.
static char * name
Name (label) of the records to list.
static char * value
Value of the record to add/remove.
static uint32_t type
Type string converted to DNS type value.
static unsigned int pending
The number of DNS queries that are outstanding.
commonly used definitions; globals in this file are exempt from the rule that the module name ("commo...
void GNUNET_CRYPTO_hash(const void *block, size_t size, struct GNUNET_HashCode *ret)
Compute hash of a given block.
Definition: crypto_hash.c:41
void GNUNET_CRYPTO_hash_to_enc(const struct GNUNET_HashCode *block, struct GNUNET_CRYPTO_HashAsciiEncoded *result)
Convert hash to ASCII encoding.
Definition: crypto_hash.c:55
#define GNUNET_log(kind,...)
#define GNUNET_MAX(a, b)
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
GNUNET_GenericReturnValue
Named constants for return values.
#define GNUNET_MIN(a, b)
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
const char * GNUNET_a2s(const struct sockaddr *addr, socklen_t addrlen)
Convert a "struct sockaddr*" (IPv4 or IPv6 address) to a string (for printing debug messages).
#define GNUNET_log_strerror(level, cmd)
Log an error message at log-level 'level' that indicates a failure of the command 'cmd' with the mess...
#define GNUNET_log_strerror_file(level, cmd, filename)
Log an error message at log-level 'level' that indicates a failure of the command 'cmd' with the mess...
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_BULK
@ GNUNET_ERROR_TYPE_DEBUG
@ GNUNET_ERROR_TYPE_INFO
#define GNUNET_strndup(a, length)
Wrapper around GNUNET_xstrndup_.
int GNUNET_snprintf(char *buf, size_t size, const char *format,...) __attribute__((format(printf
Like snprintf, just aborts if the buffer is of insufficient size.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_free(ptr)
Wrapper around free.
struct sockaddr * GNUNET_NETWORK_get_addr(const struct GNUNET_NETWORK_Handle *desc)
Return sockaddr for this network handle.
Definition: network.c:1014
void GNUNET_NETWORK_fdset_handle_set_first(struct GNUNET_NETWORK_FDSet *fds, const struct GNUNET_DISK_FileHandle *h)
Add a file handle to the fd set.
Definition: network.c:1114
struct GNUNET_NETWORK_Handle * GNUNET_NETWORK_socket_accept(const struct GNUNET_NETWORK_Handle *desc, struct sockaddr *address, socklen_t *address_len)
Accept a new connection on a socket.
Definition: network.c:392
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_getsockopt(const struct GNUNET_NETWORK_Handle *desc, int level, int optname, void *optval, socklen_t *optlen)
Get socket options.
Definition: network.c:627
void GNUNET_NETWORK_fdset_zero(struct GNUNET_NETWORK_FDSet *fds)
Reset FD set.
Definition: network.c:918
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_close(struct GNUNET_NETWORK_Handle *desc)
Close a socket.
Definition: network.c:508
void GNUNET_NETWORK_fdset_destroy(struct GNUNET_NETWORK_FDSet *fds)
Releases the associated memory of an fd set.
Definition: network.c:1187
socklen_t GNUNET_NETWORK_get_addrlen(const struct GNUNET_NETWORK_Handle *desc)
Return sockaddr length for this network handle.
Definition: network.c:1027
int GNUNET_NETWORK_get_fd(const struct GNUNET_NETWORK_Handle *desc)
Return file descriptor for this network handle.
Definition: network.c:1001
void GNUNET_NETWORK_fdset_copy_native(struct GNUNET_NETWORK_FDSet *to, const fd_set *from, int nfds)
Copy a native fd set.
Definition: network.c:1041
int GNUNET_NETWORK_test_port_free(int ipproto, uint16_t port)
Test if the given port is available.
Definition: network.c:1201
int GNUNET_NETWORK_fdset_overlap(const struct GNUNET_NETWORK_FDSet *fds1, const struct GNUNET_NETWORK_FDSet *fds2)
Checks if two fd sets overlap.
Definition: network.c:1145
ssize_t GNUNET_NETWORK_socket_recv(const struct GNUNET_NETWORK_Handle *desc, void *buffer, size_t length)
Read data from a connected socket (always non-blocking).
Definition: network.c:717
char * GNUNET_NETWORK_shorten_unixpath(char *unixpath)
Given a unixpath that is too long (larger than UNIX_PATH_MAX), shorten it to an acceptable length whi...
Definition: network.c:143
ssize_t GNUNET_NETWORK_socket_recvfrom(const struct GNUNET_NETWORK_Handle *desc, void *buffer, size_t length, struct sockaddr *src_addr, socklen_t *addrlen)
Read data from a socket (always non-blocking).
Definition: network.c:688
struct GNUNET_NETWORK_FDSet * GNUNET_NETWORK_fdset_create()
Creates an fd set.
Definition: network.c:1171
void GNUNET_NETWORK_fdset_add(struct GNUNET_NETWORK_FDSet *dst, const struct GNUNET_NETWORK_FDSet *src)
Add one fd set to another.
Definition: network.c:965
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_set_blocking(struct GNUNET_NETWORK_Handle *fd, int doBlock)
Set if a socket should use blocking or non-blocking IO.
Definition: network.c:224
struct GNUNET_NETWORK_Handle * GNUNET_NETWORK_socket_box_native(int fd)
Box a native socket (and check that it is a socket).
Definition: network.c:580
void GNUNET_NETWORK_fdset_set_native(struct GNUNET_NETWORK_FDSet *to, int nfd)
Set a native fd in a set.
Definition: network.c:1058
struct GNUNET_NETWORK_Handle * GNUNET_NETWORK_socket_create(int domain, int type, int protocol)
Create a new socket.
Definition: network.c:833
void GNUNET_NETWORK_fdset_copy(struct GNUNET_NETWORK_FDSet *to, const struct GNUNET_NETWORK_FDSet *from)
Copy one fd set to another.
Definition: network.c:985
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_connect(const struct GNUNET_NETWORK_Handle *desc, const struct sockaddr *address, socklen_t address_len)
Connect a socket to some remote address.
Definition: network.c:602
ssize_t GNUNET_NETWORK_socket_recvfrom_amount(const struct GNUNET_NETWORK_Handle *desc)
How much data is available to be read on this descriptor?
Definition: network.c:671
int GNUNET_NETWORK_fdset_test_native(const struct GNUNET_NETWORK_FDSet *to, int nfd)
Test native fd in a set.
Definition: network.c:1076
void GNUNET_NETWORK_fdset_set(struct GNUNET_NETWORK_FDSet *fds, const struct GNUNET_NETWORK_Handle *desc)
Add a socket to the FD set.
Definition: network.c:932
void GNUNET_NETWORK_socket_free_memory_only_(struct GNUNET_NETWORK_Handle *desc)
Only free memory of a socket, keep the file descriptor untouched.
Definition: network.c:566
ssize_t GNUNET_NETWORK_socket_send(const struct GNUNET_NETWORK_Handle *desc, const void *buffer, size_t length)
Send data (always non-blocking).
Definition: network.c:738
enum GNUNET_GenericReturnValue GNUNET_NETWORK_test_pf(int pf)
Test if the given protocol family is supported by this system.
Definition: network.c:79
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_bind(struct GNUNET_NETWORK_Handle *desc, const struct sockaddr *address, socklen_t address_len)
Bind a socket to a particular address.
Definition: network.c:439
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_listen(const struct GNUNET_NETWORK_Handle *desc, int backlog)
Listen on a socket.
Definition: network.c:652
void GNUNET_NETWORK_unix_precheck(const struct sockaddr_un *un)
If services crash, they can leave a unix domain socket file on the disk.
Definition: network.c:178
int GNUNET_NETWORK_fdset_handle_isset(const struct GNUNET_NETWORK_FDSet *fds, const struct GNUNET_DISK_FileHandle *h)
Check if a file handle is part of an fd set.
Definition: network.c:1129
int GNUNET_NETWORK_socket_select(struct GNUNET_NETWORK_FDSet *rfds, struct GNUNET_NETWORK_FDSet *wfds, struct GNUNET_NETWORK_FDSet *efds, const struct GNUNET_TIME_Relative timeout)
Check if sockets or pipes meet certain conditions.
Definition: network.c:1261
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_shutdown(struct GNUNET_NETWORK_Handle *desc, int how)
Shut down socket operations.
Definition: network.c:861
int GNUNET_NETWORK_socket_setsockopt(struct GNUNET_NETWORK_Handle *fd, int level, int option_name, const void *option_value, socklen_t option_len)
Set socket option.
Definition: network.c:806
ssize_t GNUNET_NETWORK_socket_sendto(const struct GNUNET_NETWORK_Handle *desc, const void *message, size_t length, const struct sockaddr *dest_addr, socklen_t dest_len)
Send data to a particular destination (always non-blocking).
Definition: network.c:772
int GNUNET_NETWORK_fdset_isset(const struct GNUNET_NETWORK_FDSet *fds, const struct GNUNET_NETWORK_Handle *desc)
Check whether a socket is part of the fd set.
Definition: network.c:950
enum GNUNET_GenericReturnValue GNUNET_NETWORK_socket_disable_corking(struct GNUNET_NETWORK_Handle *desc)
Disable the "CORK" feature for communication with the given socket, forcing the OS to immediately flu...
Definition: network.c:882
void GNUNET_NETWORK_fdset_handle_set(struct GNUNET_NETWORK_FDSet *fds, const struct GNUNET_DISK_FileHandle *h)
Add a file handle to the fd set.
Definition: network.c:1092
#define GNUNET_TIME_UNIT_FOREVER_REL
Constant used to specify "forever".
#define GNUNET_TIME_UNIT_SECONDS
One second.
static int initialize_network_handle(struct GNUNET_NETWORK_Handle *h, int af, int type)
Perform proper canonical initialization for a network handle.
Definition: network.c:335
#define INVALID_SOCKET
Definition: network.c:45
static void socket_set_nodelay(const struct GNUNET_NETWORK_Handle *h)
Disable delays when sending data via the socket.
Definition: network.c:308
#define LOG_STRERROR_FILE(kind, syscall, filename)
Definition: network.c:32
#define LOG(kind,...)
Definition: network.c:31
#define LOG_STRERROR(kind, syscall)
Definition: network.c:37
static int socket_set_inheritable(const struct GNUNET_NETWORK_Handle *h)
Make a socket non-inheritable to child processes.
Definition: network.c:261
#define FD_COPY(s, d)
Definition: network.c:219
#define DIR_SEPARATOR
Definition: platform.h:165
#define _(String)
GNU gettext support macro.
Definition: platform.h:178
#define AI_NUMERICSERV
AI_NUMERICSERV not defined in windows.
Definition: platform.h:219
0-terminated ASCII encoding of a struct GNUNET_HashCode.
Handle used to access files (and pipes).
A 512-bit hashcode.
collection of IO descriptors
int nsds
Maximum number of any socket descriptor in the set (plus one)
fd_set sds
Bitset with the descriptors.
handle to a socket
Definition: network.c:53
struct sockaddr * addr
Address we were bound to, or NULL.
Definition: network.c:74
int type
Type of the socket.
Definition: network.c:64
socklen_t addrlen
Number of bytes in addr.
Definition: network.c:69
int af
Address family / domain.
Definition: network.c:59
Time for relative time used by GNUnet, in microseconds.
uint64_t rel_value_us
The actual value.