do not print error msg when we have no network connectivity
[oweals/gnunet.git] / src / transport / plugin_transport_udp_broadcasting.c
1 /*
2      This file is part of GNUnet
3      (C) 2010, 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/plugin_transport_udp_broadcasting.c
23  * @brief Neighbour discovery with UDP
24  * @author Christian Grothoff
25  * @author Matthias Wachs
26  */
27 #include "platform.h"
28 #include "plugin_transport_udp.h"
29 #include "gnunet_hello_lib.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_fragmentation_lib.h"
32 #include "gnunet_nat_lib.h"
33 #include "gnunet_protocols.h"
34 #include "gnunet_resolver_service.h"
35 #include "gnunet_signatures.h"
36 #include "gnunet_constants.h"
37 #include "gnunet_statistics_service.h"
38 #include "gnunet_transport_service.h"
39 #include "gnunet_transport_plugin.h"
40 #include "transport.h"
41
42 #define LOG(kind,...) GNUNET_log_from (kind, "transport-udp", __VA_ARGS__)
43
44
45 struct UDP_Beacon_Message
46 {
47  /**
48   * Message header.
49   */
50   struct GNUNET_MessageHeader header;
51
52  /**
53   * What is the identity of the sender
54   */
55   struct GNUNET_PeerIdentity sender;
56 };
57
58
59 struct BroadcastAddress
60 {
61   struct BroadcastAddress *next;
62   struct BroadcastAddress *prev;
63
64   void *addr;
65   socklen_t addrlen;
66 };
67
68
69 struct Mstv4Context
70 {
71   struct Plugin *plugin;
72
73   struct IPv4UdpAddress addr;
74   /**
75    * ATS network type in NBO
76    */
77   uint32_t ats_address_network_type;
78 };
79
80 struct Mstv6Context
81 {
82   struct Plugin *plugin;
83
84   struct IPv6UdpAddress addr;
85   /**
86    * ATS network type in NBO
87    */
88   uint32_t ats_address_network_type;
89 };
90
91
92
93 int
94 broadcast_ipv6_mst_cb (void *cls, void *client,
95                        const struct GNUNET_MessageHeader *message)
96 {
97
98   struct Plugin *plugin = cls;
99   struct Mstv6Context *mc = client;
100   const struct GNUNET_MessageHeader *hello;
101   struct UDP_Beacon_Message *msg;
102
103   msg = (struct UDP_Beacon_Message *) message;
104
105   if (GNUNET_MESSAGE_TYPE_TRANSPORT_BROADCAST_BEACON !=
106       ntohs (msg->header.type))
107     return GNUNET_OK;
108   LOG (GNUNET_ERROR_TYPE_DEBUG,
109        "Received beacon with %u bytes from peer `%s' via address `%s'\n",
110        ntohs (msg->header.size), GNUNET_i2s (&msg->sender),
111        udp_address_to_string (NULL, &mc->addr, sizeof (mc->addr)));
112   struct GNUNET_ATS_Information atsi[2];
113
114   /* setup ATS */
115   atsi[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
116   atsi[0].value = htonl (1);
117   atsi[1].type = htonl (GNUNET_ATS_NETWORK_TYPE);
118   atsi[1].value = mc->ats_address_network_type;
119   GNUNET_break (ntohl(mc->ats_address_network_type) != GNUNET_ATS_NET_UNSPECIFIED);
120
121   hello = (struct GNUNET_MessageHeader *) &msg[1];
122   plugin->env->receive (plugin->env->cls, &msg->sender, hello,
123                         (const struct GNUNET_ATS_Information *) &atsi, 2, NULL,
124                         (const char *) &mc->addr, sizeof (mc->addr));
125
126   GNUNET_STATISTICS_update (plugin->env->stats,
127                             _
128                             ("# IPv6 multicast HELLO beacons received via udp"),
129                             1, GNUNET_NO);
130   GNUNET_free (mc);
131   return GNUNET_OK;
132 }
133
134 int
135 broadcast_ipv4_mst_cb (void *cls, void *client,
136                        const struct GNUNET_MessageHeader *message)
137 {
138   struct Plugin *plugin = cls;
139   struct Mstv4Context *mc = client;
140   const struct GNUNET_MessageHeader *hello;
141   struct UDP_Beacon_Message *msg;
142
143   msg = (struct UDP_Beacon_Message *) message;
144
145   if (GNUNET_MESSAGE_TYPE_TRANSPORT_BROADCAST_BEACON !=
146       ntohs (msg->header.type))
147     return GNUNET_OK;
148   LOG (GNUNET_ERROR_TYPE_DEBUG,
149        "Received beacon with %u bytes from peer `%s' via address `%s'\n",
150        ntohs (msg->header.size), GNUNET_i2s (&msg->sender),
151        udp_address_to_string (NULL, &mc->addr, sizeof (mc->addr)));
152
153   struct GNUNET_ATS_Information atsi[2];
154
155   /* setup ATS */
156   atsi[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
157   atsi[0].value = htonl (1);
158   atsi[1].type = htonl (GNUNET_ATS_NETWORK_TYPE);
159   atsi[1].value = mc->ats_address_network_type;
160   GNUNET_break (ntohl(mc->ats_address_network_type) != GNUNET_ATS_NET_UNSPECIFIED);
161
162   hello = (struct GNUNET_MessageHeader *) &msg[1];
163   plugin->env->receive (plugin->env->cls, &msg->sender, hello,
164                         (const struct GNUNET_ATS_Information *) &atsi, 2, NULL,
165                         (const char *) &mc->addr, sizeof (mc->addr));
166
167   GNUNET_STATISTICS_update (plugin->env->stats,
168                             _
169                             ("# IPv4 broadcast HELLO beacons received via udp"),
170                             1, GNUNET_NO);
171   GNUNET_free (mc);
172   return GNUNET_OK;
173 }
174
175 void
176 udp_broadcast_receive (struct Plugin *plugin, const char * buf, ssize_t size, struct sockaddr *addr, size_t addrlen)
177 {
178   struct GNUNET_ATS_Information ats;
179
180   if ((GNUNET_YES == plugin->broadcast_ipv4) && (addrlen == sizeof (struct sockaddr_in)))
181   {
182     LOG (GNUNET_ERROR_TYPE_DEBUG,
183          "Received IPv4 HELLO beacon broadcast with %i bytes from address %s\n",
184          size, GNUNET_a2s ((const struct sockaddr *) addr, addrlen));
185     struct Mstv4Context *mc;
186
187     mc = GNUNET_malloc (sizeof (struct Mstv4Context));
188     struct sockaddr_in *av4 = (struct sockaddr_in *) addr;
189
190     mc->addr.ipv4_addr = av4->sin_addr.s_addr;
191     mc->addr.u4_port = av4->sin_port;
192     ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) addr, addrlen);
193     mc->ats_address_network_type = ats.value;
194
195     GNUNET_assert (NULL != plugin->broadcast_ipv4_mst);
196     if (GNUNET_OK !=
197         GNUNET_SERVER_mst_receive (plugin->broadcast_ipv4_mst, mc, buf, size,
198                                    GNUNET_NO, GNUNET_NO))
199       GNUNET_free (mc);
200   }
201   else if ((GNUNET_YES == plugin->broadcast_ipv4) && (addrlen == sizeof (struct sockaddr_in6)))
202   {
203     LOG (GNUNET_ERROR_TYPE_DEBUG,
204          "Received IPv6 HELLO beacon broadcast with %i bytes from address %s\n",
205          size, GNUNET_a2s ((const struct sockaddr *) &addr, addrlen));
206     struct Mstv6Context *mc;
207
208     mc = GNUNET_malloc (sizeof (struct Mstv6Context));
209     struct sockaddr_in6 *av6 = (struct sockaddr_in6 *) addr;
210
211     mc->addr.ipv6_addr = av6->sin6_addr;
212     mc->addr.u6_port = av6->sin6_port;
213     ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) addr, addrlen);
214     mc->ats_address_network_type = ats.value;
215     GNUNET_assert (NULL != plugin->broadcast_ipv4_mst);
216     if (GNUNET_OK !=
217         GNUNET_SERVER_mst_receive (plugin->broadcast_ipv6_mst, mc, buf, size,
218                                    GNUNET_NO, GNUNET_NO))
219       GNUNET_free (mc);
220   }
221 }
222
223 static unsigned int
224 prepare_beacon (struct Plugin *plugin, struct UDP_Beacon_Message *msg)
225 {
226   uint16_t hello_size;
227   uint16_t msg_size;
228
229   const struct GNUNET_MessageHeader *hello;
230   hello = plugin->env->get_our_hello ();
231   hello_size = GNUNET_HELLO_size ((struct GNUNET_HELLO_Message *) hello);
232   msg_size = hello_size + sizeof (struct UDP_Beacon_Message);
233
234   if (hello_size < (sizeof (struct GNUNET_MessageHeader)) ||
235       (msg_size > (UDP_MTU)))
236     return 0;
237
238   msg->sender = *(plugin->env->my_identity);
239   msg->header.size = htons (msg_size);
240   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_BROADCAST_BEACON);
241   memcpy (&msg[1], hello, hello_size);
242   return msg_size;
243 }
244
245 static void
246 udp_ipv4_broadcast_send (void *cls,
247                          const struct GNUNET_SCHEDULER_TaskContext *tc)
248 {
249   struct Plugin *plugin = cls;
250   int sent;
251   uint16_t msg_size;
252   char buf[65536] GNUNET_ALIGN;
253   struct BroadcastAddress *baddr;
254
255   plugin->send_ipv4_broadcast_task = GNUNET_SCHEDULER_NO_TASK;
256
257   msg_size = prepare_beacon(plugin, (struct UDP_Beacon_Message *) &buf);
258   sent = 0;
259   baddr = plugin->ipv4_broadcast_head;
260   /* just IPv4 */
261   while ((baddr != NULL) && (baddr->addrlen == sizeof (struct sockaddr_in)))
262   {
263     struct sockaddr_in *addr = (struct sockaddr_in *) baddr->addr;
264
265     addr->sin_port = htons (plugin->port);
266
267     sent = GNUNET_NETWORK_socket_sendto (plugin->sockv4, &buf, msg_size,
268                                       (const struct sockaddr *) addr,
269                                       baddr->addrlen);
270     if (sent == GNUNET_SYSERR)
271     {
272       if ((ENETUNREACH == errno) || (ENETDOWN == errno))
273       {
274         /* "Network unreachable" or "Network down"
275          *
276          * This indicates that we just do not have network connectivity
277          */
278         GNUNET_log (GNUNET_ERROR_TYPE_BULK | GNUNET_ERROR_TYPE_WARNING,
279             "Network connectivity is down, cannot send beacon!\n");
280       }
281       else
282         GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "sendto");
283     }
284     else
285     {
286       LOG (GNUNET_ERROR_TYPE_DEBUG,
287            "Sent HELLO beacon broadcast with %i bytes to address %s\n", sent,
288            GNUNET_a2s (baddr->addr, baddr->addrlen));
289     }
290     baddr = baddr->next;
291   }
292
293   plugin->send_ipv4_broadcast_task =
294       GNUNET_SCHEDULER_add_delayed (plugin->broadcast_interval,
295                                     &udp_ipv4_broadcast_send, plugin);
296 }
297
298 static void
299 udp_ipv6_broadcast_send (void *cls,
300                          const struct GNUNET_SCHEDULER_TaskContext *tc)
301 {
302   struct Plugin *plugin = cls;
303   int sent;
304   uint16_t msg_size;
305   char buf[65536] GNUNET_ALIGN;
306
307   plugin->send_ipv6_broadcast_task = GNUNET_SCHEDULER_NO_TASK;
308
309   msg_size = prepare_beacon(plugin, (struct UDP_Beacon_Message *) &buf);
310   sent = 0;
311   sent = GNUNET_NETWORK_socket_sendto (plugin->sockv6, &buf, msg_size,
312                                     (const struct sockaddr *)
313                                     &plugin->ipv6_multicast_address,
314                                     sizeof (struct sockaddr_in6));
315   if (sent == GNUNET_SYSERR)
316   {
317     if ((ENETUNREACH == errno) || (ENETDOWN == errno))
318     {
319       /* "Network unreachable" or "Network down"
320        *
321        * This indicates that this system is IPv6 enabled, but does not
322        * have a valid global IPv6 address assigned
323        */
324       GNUNET_log (GNUNET_ERROR_TYPE_BULK | GNUNET_ERROR_TYPE_WARNING,
325           "Network connectivity is down, cannot send beacon!\n");
326     }
327     else
328       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "sendto");
329   }
330   else
331   {
332     LOG (GNUNET_ERROR_TYPE_DEBUG,
333          "Sending IPv6 HELLO beacon broadcast with  %i bytes to address %s\n",
334          sent,
335          GNUNET_a2s ((const struct sockaddr *) &plugin->ipv6_multicast_address,
336                      sizeof (struct sockaddr_in6)));
337   }
338   plugin->send_ipv6_broadcast_task =
339       GNUNET_SCHEDULER_add_delayed (plugin->broadcast_interval,
340                                     &udp_ipv6_broadcast_send, plugin);
341 }
342
343
344 static int
345 iface_proc (void *cls, const char *name, int isDefault,
346             const struct sockaddr *addr, const struct sockaddr *broadcast_addr,
347             const struct sockaddr *netmask, socklen_t addrlen)
348 {
349   struct Plugin *plugin = cls;
350
351   if (addr != NULL)
352   {
353     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "address %s for interface %s %p\n ",
354                 GNUNET_a2s (addr, addrlen), name, addr);
355     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
356                 "broadcast address %s for interface %s %p\n ",
357                 GNUNET_a2s (broadcast_addr, addrlen), name, broadcast_addr);
358     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "netmask %s for interface %s %p\n ",
359                 GNUNET_a2s (netmask, addrlen), name, netmask);
360
361     /* Collecting broadcast addresses */
362     if (broadcast_addr != NULL)
363     {
364       struct BroadcastAddress *ba =
365           GNUNET_malloc (sizeof (struct BroadcastAddress));
366       ba->addr = GNUNET_malloc (addrlen);
367       memcpy (ba->addr, broadcast_addr, addrlen);
368       ba->addrlen = addrlen;
369       GNUNET_CONTAINER_DLL_insert (plugin->ipv4_broadcast_head,
370                                    plugin->ipv4_broadcast_tail, ba);
371     }
372   }
373   return GNUNET_OK;
374 }
375
376
377 void
378 setup_broadcast (struct Plugin *plugin, struct sockaddr_in6 *serverAddrv6, struct sockaddr_in *serverAddrv4)
379 {
380   /* create IPv4 broadcast socket */
381   plugin->broadcast_ipv4 = GNUNET_NO;
382   if (plugin->sockv4 != NULL)
383   {
384     int yes = 1;
385
386     if (GNUNET_NETWORK_socket_setsockopt
387         (plugin->sockv4, SOL_SOCKET, SO_BROADCAST, &yes,
388          sizeof (int)) != GNUNET_OK)
389     {
390       LOG (GNUNET_ERROR_TYPE_WARNING,
391            _
392            ("Failed to set IPv4 broadcast option for broadcast socket on port %d\n"),
393            ntohs (serverAddrv4->sin_port));
394     }
395     else
396     {
397       GNUNET_OS_network_interfaces_list (iface_proc, plugin);
398       plugin->send_ipv4_broadcast_task =
399           GNUNET_SCHEDULER_add_now (&udp_ipv4_broadcast_send, plugin);
400
401       plugin->broadcast_ipv4_mst =
402           GNUNET_SERVER_mst_create (broadcast_ipv4_mst_cb, plugin);
403
404       LOG (GNUNET_ERROR_TYPE_DEBUG, "IPv4 Broadcasting running\n");
405       plugin->broadcast_ipv4 = GNUNET_YES;
406     }
407   }
408
409   plugin->broadcast_ipv6 = GNUNET_NO;
410   if (plugin->sockv6 != NULL)
411   {
412     memset (&plugin->ipv6_multicast_address, 0, sizeof (struct sockaddr_in6));
413     GNUNET_assert (1 ==
414                    inet_pton (AF_INET6, "FF05::13B",
415                               &plugin->ipv6_multicast_address.sin6_addr));
416
417     plugin->ipv6_multicast_address.sin6_family = AF_INET6;
418     plugin->ipv6_multicast_address.sin6_port = htons (plugin->port);
419
420     plugin->broadcast_ipv6_mst =
421         GNUNET_SERVER_mst_create (broadcast_ipv6_mst_cb, plugin);
422
423     /* Create IPv6 multicast request */
424     struct ipv6_mreq multicastRequest;
425
426     multicastRequest.ipv6mr_multiaddr =
427         plugin->ipv6_multicast_address.sin6_addr;
428     /* TODO: 0 selects the "best" interface, tweak to use all interfaces
429      *
430      * http://tools.ietf.org/html/rfc2553#section-5.2:
431      *
432      * IPV6_JOIN_GROUP
433      *
434      * Join a multicast group on a specified local interface.  If the
435      * interface index is specified as 0, the kernel chooses the local
436      * interface.  For example, some kernels look up the multicast
437      * group in the normal IPv6 routing table and using the resulting
438      * interface.
439      * */
440     multicastRequest.ipv6mr_interface = 0;
441
442     /* Join the multicast group */
443     if (GNUNET_NETWORK_socket_setsockopt
444         (plugin->sockv6, IPPROTO_IPV6, IPV6_JOIN_GROUP,
445          (char *) &multicastRequest, sizeof (multicastRequest)) != GNUNET_OK)
446     {
447       LOG (GNUNET_ERROR_TYPE_WARNING,
448       "Failed to join IPv6 multicast group: IPv6 broadcasting not running\n");
449     }
450     else
451     {
452       LOG (GNUNET_ERROR_TYPE_DEBUG, "IPv6 broadcasting running\n");
453       plugin->send_ipv6_broadcast_task =
454           GNUNET_SCHEDULER_add_now (&udp_ipv6_broadcast_send, plugin);
455       plugin->broadcast_ipv6 = GNUNET_YES;
456     }
457   }
458 }
459
460 void
461 stop_broadcast (struct Plugin *plugin)
462 {
463   if (plugin->broadcast_ipv4)
464   {
465     if (plugin->send_ipv4_broadcast_task != GNUNET_SCHEDULER_NO_TASK)
466     {
467       GNUNET_SCHEDULER_cancel (plugin->send_ipv4_broadcast_task);
468       plugin->send_ipv4_broadcast_task = GNUNET_SCHEDULER_NO_TASK;
469     }
470
471     if (plugin->broadcast_ipv4_mst != NULL)
472       GNUNET_SERVER_mst_destroy (plugin->broadcast_ipv4_mst);
473
474     while (plugin->ipv4_broadcast_head != NULL)
475     {
476       struct BroadcastAddress *p = plugin->ipv4_broadcast_head;
477
478       GNUNET_CONTAINER_DLL_remove (plugin->ipv4_broadcast_head,
479                                    plugin->ipv4_broadcast_tail, p);
480       GNUNET_free (p->addr);
481       GNUNET_free (p);
482     }
483   }
484
485   if (plugin->broadcast_ipv6)
486   {
487     /* Create IPv6 multicast request */
488     struct ipv6_mreq multicastRequest;
489
490     multicastRequest.ipv6mr_multiaddr =
491         plugin->ipv6_multicast_address.sin6_addr;
492     multicastRequest.ipv6mr_interface = 0;
493
494     /* Join the multicast address */
495     if (GNUNET_NETWORK_socket_setsockopt
496         (plugin->sockv6, IPPROTO_IPV6, IPV6_LEAVE_GROUP,
497         (char *) &multicastRequest, sizeof (multicastRequest)) != GNUNET_OK)
498     {
499        GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, setsockopt);
500     }
501     else
502     {
503       LOG (GNUNET_ERROR_TYPE_DEBUG, "IPv6 Broadcasting stopped\n");
504     }
505
506     if (plugin->send_ipv6_broadcast_task != GNUNET_SCHEDULER_NO_TASK)
507     {
508       GNUNET_SCHEDULER_cancel (plugin->send_ipv6_broadcast_task);
509       plugin->send_ipv6_broadcast_task = GNUNET_SCHEDULER_NO_TASK;
510     }
511     if (plugin->broadcast_ipv6_mst != NULL)
512       GNUNET_SERVER_mst_destroy (plugin->broadcast_ipv6_mst);
513   }
514
515 }
516
517 /* end of plugin_transport_udp_broadcasting.c */