fixes
[oweals/gnunet.git] / src / hostlist / hostlist-client.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2009 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 2, 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 hostlist/hostlist-client.c
23  * @brief hostlist support.  Downloads HELLOs via HTTP.
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "hostlist-client.h"
29 #include "gnunet_core_service.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_transport_service.h"
32 #include <curl/curl.h>
33
34 /**
35  * Number of connections that we must have to NOT download
36  * hostlists anymore.
37  */
38 #define MIN_CONNECTIONS 4
39
40 /**
41  * Our configuration.
42  */
43 static const struct GNUNET_CONFIGURATION_Handle *cfg;
44
45 /**
46  * Our scheduler.
47  */
48 static struct GNUNET_SCHEDULER_Handle *sched;
49
50 /**
51  * Statistics handle.
52  */
53 struct GNUNET_STATISTICS_Handle *stats; 
54
55 /**
56  * Transport handle.
57  */
58 struct GNUNET_TRANSPORT_Handle *transport;
59                        
60 /**
61  * Proxy that we are using (can be NULL).
62  */
63 static char *proxy;
64
65 /**
66  * Buffer for data downloaded via HTTP.
67  */
68 static char download_buffer[GNUNET_SERVER_MAX_MESSAGE_SIZE];
69
70 /**
71  * Number of bytes valid in 'download_buffer'.
72  */
73 static size_t download_pos;
74
75 /**
76  * Current URL that we are using.
77  */
78 static char *current_url;
79
80 /**
81  * Current CURL handle.
82  */
83 static CURL *curl;
84
85 /**
86  * Current multi-CURL handle.
87  */
88 static CURLM *multi;
89
90 /**
91  * ID of the current task scheduled.
92  */
93 static GNUNET_SCHEDULER_TaskIdentifier current_task;
94
95 /**
96  * Amount of time we wait between hostlist downloads.
97  */
98 static struct GNUNET_TIME_Relative hostlist_delay;
99
100 /**
101  * Set to GNUNET_YES if the current URL had some problems.
102  */ 
103 static int bogus_url;
104
105 /**
106  * Number of active connections (according to core service).
107  */
108 static unsigned int connection_count;
109
110
111 /**
112  * Process downloaded bits by calling callback on each HELLO.
113  *
114  * @param ptr buffer with downloaded data
115  * @param size size of a record
116  * @param nmemb number of records downloaded
117  * @param ctx unused
118  * @return number of bytes that were processed (always size*nmemb)
119  */
120 static size_t
121 download_hostlist_processor (void *ptr, 
122                              size_t size, 
123                              size_t nmemb, 
124                              void *ctx)
125 {
126   const char * cbuf = ptr;
127   const struct GNUNET_MessageHeader *msg;
128   size_t total;
129   size_t cpy;
130   size_t left;
131   uint16_t msize;
132
133   total = size * nmemb;
134   if ( (total == 0) || (bogus_url) )
135     return total;  /* ok, no data or bogus data */
136   left = total;
137   while (left > 0)
138     {
139       cpy = GNUNET_MIN (total, GNUNET_SERVER_MAX_MESSAGE_SIZE - download_pos);
140       GNUNET_assert (cpy > 0);
141       memcpy (&download_buffer[download_pos],
142               cbuf,
143               cpy);
144       cbuf += cpy;
145       download_pos += cpy;
146       left -= cpy;
147       if (download_pos < sizeof(struct GNUNET_MessageHeader))
148         break;
149       msg = (const struct GNUNET_MessageHeader *) download_buffer;
150       msize = ntohs(msg->size);
151       if (msize < sizeof(struct GNUNET_MessageHeader))
152         {        
153           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
154                       _("Invalid `%s' message received from hostlist at `%s'\n"),
155                       "HELLO",
156                       current_url); 
157           bogus_url = 1;
158           return total;
159         }
160       if (download_pos < msize)
161         break;
162       if (GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message*)msg) == msize)
163         {
164           GNUNET_TRANSPORT_offer_hello (transport, msg);
165         }
166       else
167         {
168           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
169                       _("Invalid `%s' message received from hostlist at `%s'\n"),
170                       "HELLO",
171                       current_url);
172           bogus_url = 1;
173           return total;
174         }
175       memmove (download_buffer,
176                &download_buffer[msize],
177                download_pos - msize);
178       download_pos -= msize;
179     }
180   return total;
181 }
182
183
184 /**
185  * Obtain a hostlist URL that we should use.
186  *
187  * @return NULL if there is no URL available
188  */
189 static char *
190 get_url ()
191 {
192   char *servers;
193   char *ret;
194   size_t urls;
195   size_t pos;
196
197   if (GNUNET_OK != 
198       GNUNET_CONFIGURATION_get_value_string (cfg,
199                                              "HOSTLIST",
200                                              "SERVERS",
201                                              &servers))
202     {
203       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
204                   _("No `%s' specified in `%s' configuration, will not bootstrap.\n"),
205                   "SERVERS", "HOSTLIST");
206       return NULL;
207     }
208
209   urls = 0;
210   if (strlen (servers) > 0)
211     {
212       urls++;
213       pos = strlen (servers) - 1;
214       while (pos > 0)
215         {
216           if (servers[pos] == ' ')
217             urls++;
218           pos--;
219         }
220     }
221   if (urls == 0)
222     {
223       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
224                   _("No `%s' specified in `%s' configuration, will not bootstrap.\n"),
225                   "SERVERS", "HOSTLIST");
226       GNUNET_free (servers);
227       return NULL;
228     }
229
230   urls = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, urls) + 1;
231   pos = strlen (servers) - 1;
232   while (pos > 0)
233     {
234       if (servers[pos] == ' ')
235         {
236           urls--;
237           servers[pos] = '\0';
238         }
239       if (urls == 0)
240         {
241           pos++;
242           break;
243         }
244       pos--;    
245     }
246   ret = GNUNET_strdup (&servers[pos]);
247   GNUNET_free (servers);
248   return ret;
249 }
250
251
252 #define CURL_EASY_SETOPT(c, a, b) do { ret = curl_easy_setopt(c, a, b); if (ret != CURLE_OK) GNUNET_log(GNUNET_ERROR_TYPE_WARNING, _("%s failed at %s:%d: `%s'\n"), "curl_easy_setopt", __FILE__, __LINE__, curl_easy_strerror(ret)); } while (0);
253
254
255 /**
256  * Schedule the background task that will (possibly)
257  * download a hostlist.
258  */
259 static void
260 schedule_hostlist_task (void);
261
262
263 /**
264  * Clean up the state from the task that downloaded the
265  * hostlist and schedule the next task.
266  */
267 static void 
268 clean_up ()
269 {
270   CURLMcode mret;
271
272   if (multi != NULL)
273     {
274       mret = curl_multi_remove_handle (multi, curl);
275       if (mret != CURLM_OK)
276         {
277           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
278                       _("%s failed at %s:%d: `%s'\n"),
279                       "curl_multi_remove_handle", __FILE__, __LINE__,
280                       curl_multi_strerror (mret));
281         }
282       mret = curl_multi_cleanup (multi);
283       if (mret != CURLM_OK)
284         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
285                     _("%s failed at %s:%d: `%s'\n"),
286                     "curl_multi_cleanup", __FILE__, __LINE__,
287                     curl_multi_strerror (mret));
288       multi = NULL;
289     }
290   if (curl != NULL)
291     {
292       curl_easy_cleanup (curl);
293       curl = NULL;
294     }  
295   if (transport != NULL)
296     {
297       GNUNET_TRANSPORT_disconnect (transport);
298       transport = NULL;
299     }
300   GNUNET_free_non_null (current_url);
301   current_url = NULL;
302   schedule_hostlist_task ();
303 }
304
305
306 /**
307  * Task that is run when we are ready to receive more data from the hostlist
308  * server. 
309  *
310  * @param tc
311  */
312 static void
313 multi_ready (void *cls,
314              const struct GNUNET_SCHEDULER_TaskContext *tc)
315 {
316   int running;
317   struct CURLMsg *msg;
318   CURLMcode mret;
319
320   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_TIMEOUT))
321     {
322       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
323                   _("Timeout trying to download hostlist from `%s'\n"),
324                   current_url);
325       clean_up ();
326       return;
327     }
328   do 
329     {
330       running = 0;
331       mret = curl_multi_perform (multi, &running);
332       if (running == 0)
333         {
334           do
335             {
336               msg = curl_multi_info_read (multi, &running);
337               GNUNET_break (msg != NULL);
338               if (msg == NULL)
339                 break;
340               switch (msg->msg)
341                 {
342                 case CURLMSG_DONE:
343                   if (msg->data.result != CURLE_OK)
344                     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
345                                _("%s failed at %s:%d: `%s'\n"),
346                                "curl_multi_perform", __FILE__,
347                                __LINE__,
348                                curl_easy_strerror (msg->data.result));
349                   break;
350                 default:
351                   break;
352                 }
353             }
354           while (running > 0);
355         }
356     }
357   while (mret == CURLM_CALL_MULTI_PERFORM);
358   if (mret != CURLM_OK)
359     {
360       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
361                   _("%s failed at %s:%d: `%s'\n"),
362                   "curl_multi_perform", __FILE__, __LINE__,
363                   curl_multi_strerror (mret));
364       clean_up ();
365       return;
366     }
367   clean_up ();
368 }
369
370
371 /**
372  * Ask CURL for the select set and then schedule the
373  * receiving task with the scheduler.
374  */
375 static void
376 run_multi () 
377 {
378   CURLMcode mret;
379   fd_set rs;
380   fd_set ws;
381   fd_set es;
382   int max;
383   struct GNUNET_NETWORK_FDSet *grs;
384   struct GNUNET_NETWORK_FDSet *gws;
385   struct GNUNET_NETWORK_FDSet *ges;
386   
387   max = 0;
388   FD_ZERO (&rs);
389   FD_ZERO (&ws);
390   FD_ZERO (&es);
391   grs = GNUNET_NETWORK_fdset_create ();
392   gws = GNUNET_NETWORK_fdset_create ();
393   ges = GNUNET_NETWORK_fdset_create ();
394   mret = curl_multi_fdset (multi, &rs, &ws, &es, &max);
395   if (mret != CURLM_OK)
396     {
397       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
398                   _("%s failed at %s:%d: `%s'\n"),
399                   "curl_multi_fdset", __FILE__, __LINE__,
400                   curl_multi_strerror (mret));
401       clean_up ();
402       return;
403     }
404   GNUNET_NETWORK_fdset_copy_native (grs, &rs, max);
405   GNUNET_NETWORK_fdset_copy_native (gws, &ws, max);
406   GNUNET_NETWORK_fdset_copy_native (ges, &es, max);
407   current_task 
408     = GNUNET_SCHEDULER_add_select (sched,
409                                    GNUNET_NO,
410                                    GNUNET_SCHEDULER_PRIORITY_DEFAULT,
411                                    GNUNET_SCHEDULER_NO_TASK,
412                                    GNUNET_TIME_UNIT_MINUTES,
413                                    grs,
414                                    gws,
415                                    &multi_ready,
416                                    multi);
417   GNUNET_NETWORK_fdset_destroy (ges);
418   GNUNET_NETWORK_fdset_destroy (gws);
419   GNUNET_NETWORK_fdset_destroy (grs);
420 }
421
422
423 /**
424  * Main function that will download a hostlist and process its
425  * data.
426  */
427 static void
428 download_hostlist () 
429 {
430   CURLcode ret;
431   CURLMcode mret;
432
433   curl = curl_easy_init ();
434   multi = NULL;
435   if (curl == NULL)
436     {
437       GNUNET_break (0);
438       clean_up ();
439       return;
440     }
441   transport = GNUNET_TRANSPORT_connect (sched, cfg, NULL, NULL, NULL, NULL);
442   current_url = get_url ();
443   GNUNET_log (GNUNET_ERROR_TYPE_INFO | GNUNET_ERROR_TYPE_BULK,
444               _("Bootstrapping using hostlist at `%s'.\n"), 
445               current_url);
446
447   if (proxy != NULL)
448     CURL_EASY_SETOPT (curl, CURLOPT_PROXY, proxy);    
449   download_pos = 0;
450   bogus_url = 0;
451   CURL_EASY_SETOPT (curl,
452                     CURLOPT_WRITEFUNCTION, 
453                     &download_hostlist_processor);
454   if (ret != CURLE_OK)
455     {
456       clean_up ();
457       return;
458     }
459   CURL_EASY_SETOPT (curl,
460                     CURLOPT_WRITEDATA, 
461                     NULL);
462   if (ret != CURLE_OK)
463     {
464       clean_up ();
465       return;
466     }
467   CURL_EASY_SETOPT (curl, 
468                     CURLOPT_URL, 
469                     current_url);
470   if (ret != CURLE_OK)
471     {
472       clean_up ();
473       return;
474     }
475   CURL_EASY_SETOPT (curl, 
476                     CURLOPT_FAILONERROR, 
477                     1);
478   CURL_EASY_SETOPT (curl, 
479                     CURLOPT_BUFFERSIZE, 
480                     GNUNET_SERVER_MAX_MESSAGE_SIZE);
481   if (0 == strncmp (current_url, "http", 4))
482     CURL_EASY_SETOPT (curl, CURLOPT_USERAGENT, "GNUnet");
483   CURL_EASY_SETOPT (curl, 
484                     CURLOPT_CONNECTTIMEOUT, 
485                     150L);
486   CURL_EASY_SETOPT (curl,
487                     CURLOPT_NOSIGNAL, 
488                     1);
489   multi = curl_multi_init ();
490   if (multi == NULL)
491     {
492       GNUNET_break (0);
493       clean_up ();
494       return;
495     }
496   mret = curl_multi_add_handle (multi, curl);
497   if (mret != CURLM_OK)
498     {
499       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
500                   _("%s failed at %s:%d: `%s'\n"),
501                   "curl_multi_add_handle", __FILE__, __LINE__,
502                   curl_multi_strerror (mret));
503       mret = curl_multi_cleanup (multi);
504       if (mret != CURLM_OK)
505         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
506                     _("%s failed at %s:%d: `%s'\n"),
507                     "curl_multi_cleanup", __FILE__, __LINE__,
508                     curl_multi_strerror (mret));
509       multi = NULL;
510       clean_up ();
511       return;
512     }
513   run_multi (multi);
514 }  
515
516
517 /**
518  * Task that checks if we should try to download a hostlist.
519  * If so, we initiate the download, otherwise we schedule
520  * this task again for a later time.
521  */
522 static void
523 check_task (void *cls,
524             const struct GNUNET_SCHEDULER_TaskContext *tc)
525 {
526   if (connection_count < MIN_CONNECTIONS)
527     download_hostlist ();
528   else
529     schedule_hostlist_task ();
530 }
531
532
533 /**
534  * Compute when we should check the next time about downloading
535  * a hostlist; then schedule the task accordingly.
536  */
537 static void
538 schedule_hostlist_task ()
539 {
540   struct GNUNET_TIME_Relative delay;
541
542   delay = hostlist_delay;
543   if (hostlist_delay.value == 0)
544     hostlist_delay = GNUNET_TIME_UNIT_SECONDS;
545   else
546     hostlist_delay = GNUNET_TIME_relative_multiply (hostlist_delay, 2);
547   if (hostlist_delay.value > GNUNET_TIME_UNIT_HOURS.value * connection_count)
548     hostlist_delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_DAYS,
549                                                     connection_count);
550   GNUNET_STATISTICS_set (stats,
551                          gettext_noop("Minimum time between hostlist downloads"),
552                          hostlist_delay.value,
553                          GNUNET_YES);
554   current_task = GNUNET_SCHEDULER_add_delayed (sched,
555                                                GNUNET_NO,
556                                                GNUNET_SCHEDULER_PRIORITY_IDLE,
557                                                GNUNET_SCHEDULER_NO_TASK,
558                                                delay,
559                                                &check_task,
560                                                NULL);
561 }
562
563
564 /**
565  * Method called whenever a given peer connects.
566  *
567  * @param cls closure
568  * @param peer peer identity this notification is about
569  */
570 static void
571 connect_handler (void *cls,
572                  const struct
573                  GNUNET_PeerIdentity * peer)
574 {
575   connection_count++;
576 }
577
578
579 /**
580  * Method called whenever a given peer connects.
581  *
582  * @param cls closure
583  * @param peer peer identity this notification is about
584  */
585 static void
586 disconnect_handler (void *cls,
587                     const struct
588                     GNUNET_PeerIdentity * peer)
589 {
590   connection_count--;
591 }
592
593
594 /**
595  * Continuation called by the statistics code once 
596  * we go the stat.  Initiates hostlist download scheduling.
597  *
598  * @param cls closure
599  * @param success GNUNET_OK if statistics were
600  *        successfully obtained, GNUNET_SYSERR if not.
601  */
602 static void
603 primary_task (void *cls, int success)
604 {
605   schedule_hostlist_task ();
606 }
607
608
609 static int
610 process_stat (void *cls,
611               const char *subsystem,
612               const char *name,
613               unsigned long long value,
614               int is_persistent)
615 {
616   hostlist_delay.value = (uint64_t) value;
617   return GNUNET_OK;
618 }
619
620
621 /**
622  * Start downloading hostlists from hostlist servers as necessary.
623  */
624 int
625 GNUNET_HOSTLIST_client_start (const struct GNUNET_CONFIGURATION_Handle *c,
626                               struct GNUNET_SCHEDULER_Handle *s,
627                               struct GNUNET_STATISTICS_Handle *st,
628                               GNUNET_CORE_ClientEventHandler *ch,
629                               GNUNET_CORE_ClientEventHandler *dh)
630 {
631   if (0 != curl_global_init (CURL_GLOBAL_WIN32))
632     {
633       GNUNET_break (0);
634       return GNUNET_SYSERR;
635     }
636   cfg = c;
637   sched = s;
638   stats = st;
639   if (GNUNET_OK !=
640       GNUNET_CONFIGURATION_get_value_string (cfg,
641                                              "HOSTLIST",
642                                              "HTTP-PROXY", 
643                                              &proxy))
644     proxy = NULL;
645   *ch = &connect_handler;
646   *dh = &disconnect_handler;
647   GNUNET_STATISTICS_get (stats,
648                          "hostlist",
649                          gettext_noop("Minimum time between hostlist downloads"),
650                          GNUNET_TIME_UNIT_MINUTES,
651                          &primary_task,
652                          &process_stat,
653                          NULL);
654   return GNUNET_OK;
655 }
656
657
658 /**
659  * Stop downloading hostlists from hostlist servers as necessary.
660  */
661 void
662 GNUNET_HOSTLIST_client_stop ()
663 {
664   GNUNET_SCHEDULER_cancel (sched,
665                            current_task);
666   GNUNET_free_non_null (proxy);
667   proxy = NULL;
668   if (sched != NULL)
669     curl_global_cleanup ();
670   cfg = NULL;
671   sched = NULL;
672 }
673
674 /* end of hostlist-client.c */