-fix compiler warning
[oweals/gnunet.git] / src / transport / plugin_transport_http_client.c
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 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 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_http_client.c
23  * @brief HTTP/S client transport plugin
24  * @author Matthias Wachs
25  */
26
27 #if BUILD_HTTPS
28 #define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_https_client_init
29 #define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_https_client_done
30 #else
31 #define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_http_client_init
32 #define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_http_client_done
33 #endif
34
35 #define VERBOSE_CURL GNUNET_YES
36
37 #define PUT_DISCONNECT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 2)
38
39 #define ENABLE_PUT GNUNET_YES
40 #define ENABLE_GET GNUNET_YES
41
42 #include "platform.h"
43 #include "gnunet_protocols.h"
44 #include "gnunet_common.h"
45 #include "gnunet_server_lib.h"
46 #include "gnunet_transport_plugin.h"
47 #include "plugin_transport_http_common.h"
48 #include <curl/curl.h>
49
50
51 /**
52  * Encapsulation of all of the state of the plugin.
53  */
54 struct HTTP_Client_Plugin;
55
56
57 /**
58  *  Message to send using http
59  */
60 struct HTTP_Message
61 {
62   /**
63    * next pointer for double linked list
64    */
65   struct HTTP_Message *next;
66
67   /**
68    * previous pointer for double linked list
69    */
70   struct HTTP_Message *prev;
71
72   /**
73    * buffer containing data to send
74    */
75   char *buf;
76
77   /**
78    * amount of data already sent
79    */
80   size_t pos;
81
82   /**
83    * buffer length
84    */
85   size_t size;
86
87   /**
88    * Continuation function to call once the transmission buffer
89    * has again space available.  NULL if there is no
90    * continuation to call.
91    */
92   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
93
94   /**
95    * Closure for transmit_cont.
96    */
97   void *transmit_cont_cls;
98 };
99
100
101 /**
102  * Session handle for connections.
103  */
104 struct Session
105 {
106   /**
107    * To whom are we talking to (set to our identity
108    * if we are still waiting for the welcome message)
109    */
110   struct GNUNET_PeerIdentity target;
111
112   /**
113    * Stored in a linked list.
114    */
115   struct Session *next;
116
117   /**
118    * Stored in a linked list.
119    */
120   struct Session *prev;
121
122   /**
123    * The URL to connect to
124    */
125   char *url;
126
127   /**
128    * Address
129    */
130   void *addr;
131
132   /**
133    * Address length
134    */
135   size_t addrlen;
136
137   /**
138    * ATS network type in NBO
139    */
140   uint32_t ats_address_network_type;
141
142   /**
143    * Pointer to the global plugin struct.
144    */
145   struct HTTP_Client_Plugin *plugin;
146
147   /**
148    * Is client send handle paused since there are no data to send?
149    * GNUNET_YES/NO
150    */
151   int client_put_paused;
152
153   /**
154    * Is client send handle to be disconnected due to inactivity
155    */
156   int client_put_disconnect;
157
158   /**
159    * Was session given to transport service?
160    */
161  // int session_passed;
162
163   /**
164    * Client send handle
165    */
166   void *client_put;
167
168   /**
169    * Client receive handle
170    */
171   void *client_get;
172
173   /**
174    * next pointer for double linked list
175    */
176   struct HTTP_Message *msg_head;
177
178   /**
179    * previous pointer for double linked list
180    */
181   struct HTTP_Message *msg_tail;
182
183   /**
184    * Message stream tokenizer for incoming data
185    */
186   struct GNUNET_SERVER_MessageStreamTokenizer *msg_tk;
187
188   /**
189    * Session timeout task
190    */
191   GNUNET_SCHEDULER_TaskIdentifier put_disconnect_task;
192
193   /**
194    * Session timeout task
195    */
196   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
197
198   /**
199    * Task to wake up client receive handle when receiving is allowed again
200    */
201   GNUNET_SCHEDULER_TaskIdentifier recv_wakeup_task;
202
203   /**
204   * Absolute time when to receive data again
205   * Used for receive throttling
206   */
207  struct GNUNET_TIME_Absolute next_receive;
208 };
209
210
211 /**
212  * Encapsulation of all of the state of the plugin.
213  */
214 struct HTTP_Client_Plugin
215 {
216   /**
217    * Our environment.
218    */
219   struct GNUNET_TRANSPORT_PluginEnvironment *env;
220
221   /**
222    * Linked list head of open sessions.
223    */
224   struct Session *head;
225
226   /**
227    * Linked list tail of open sessions.
228    */
229   struct Session *tail;
230
231   /**
232    * Plugin name
233    */
234   char *name;
235
236   /**
237    * Protocol
238    */
239   char *protocol;
240
241   /**
242    * Maximum number of sockets the plugin can use
243    * Each http inbound /outbound connections are two connections
244    */
245   unsigned int max_connections;
246
247   /**
248    * Current number of sockets the plugin can use
249    * Each http inbound /outbound connections are two connections
250    */
251   unsigned int cur_connections;
252
253   /**
254    * Last used unique HTTP connection tag
255    */
256   uint32_t last_tag;
257
258   /**
259    * use IPv6
260    */
261   uint16_t use_ipv6;
262
263   /**
264    * use IPv4
265    */
266   uint16_t use_ipv4;
267
268   /**
269    * cURL Multihandle
270    */
271   CURLM *curl_multi_handle;
272
273   /**
274    * curl perform task
275    */
276   GNUNET_SCHEDULER_TaskIdentifier client_perform_task;
277 };
278
279
280 /**
281  * Encapsulation of all of the state of the plugin.
282  */
283 struct HTTP_Client_Plugin *p;
284
285
286 /**
287  * Start session timeout for a session
288  * @param s the session
289  */
290 static void
291 client_start_session_timeout (struct Session *s);
292
293
294 /**
295  * Increment session timeout due to activity for a session
296  * @param s the session
297  */
298 static void
299 client_reschedule_session_timeout (struct Session *s);
300
301
302 /**
303  * Cancel timeout for a session
304  * @param s the session
305  */
306 static void
307 client_stop_session_timeout (struct Session *s);
308
309
310 /**
311  * Function setting up file descriptors and scheduling task to run
312  *
313  * @param  plugin plugin as closure
314  * @param now schedule task in 1ms, regardless of what curl may say
315  * @return GNUNET_SYSERR for hard failure, GNUNET_OK for ok
316  */
317 static int
318 client_schedule (struct HTTP_Client_Plugin *plugin, int now);
319
320 static int
321 client_connect_put (struct Session *s);
322
323 /**
324  * Does a session s exists?
325  *
326  * @param plugin the plugin
327  * @param s desired session
328  * @return GNUNET_YES or GNUNET_NO
329  */
330 static int
331 client_exist_session (struct HTTP_Client_Plugin *plugin, struct Session *s)
332 {
333   struct Session * head;
334
335   GNUNET_assert (NULL != plugin);
336   GNUNET_assert (NULL != s);
337
338   for (head = plugin->head; head != NULL; head = head->next)
339   {
340     if (head == s)
341       return GNUNET_YES;
342   }
343   return GNUNET_NO;
344 }
345
346 #if VERBOSE_CURL
347 /**
348  * Function to log curl debug messages with GNUNET_log
349  *
350  * @param curl handle
351  * @param type curl_infotype
352  * @param data data
353  * @param size size
354  * @param cls  closure
355  * @return 0
356  */
357 static int
358 client_log (CURL * curl, curl_infotype type, char *data, size_t size, void *cls)
359 {
360   char *ttype;
361   if ((type == CURLINFO_TEXT) || (type == CURLINFO_HEADER_IN) || (type == CURLINFO_HEADER_OUT))
362   {
363     char text[size + 2];
364
365     switch (type) {
366       case CURLINFO_TEXT:
367         ttype = "TEXT";
368         break;
369       case CURLINFO_HEADER_IN:
370         ttype = "HEADER_IN";
371         break;
372       case CURLINFO_HEADER_OUT:
373         ttype = "HEADER_OUT";
374         break;
375       default:
376         break;
377     }
378
379     memcpy (text, data, size);
380     if (text[size - 1] == '\n')
381       text[size] = '\0';
382     else
383     {
384       text[size] = '\n';
385       text[size + 1] = '\0';
386     }
387 #if BUILD_HTTPS
388     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-https_client",
389                      "Connection %p %s: %s", cls, ttype, text);
390 #else
391     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-http_client",
392                      "Connection %p %s: %s", cls, ttype, text);
393 #endif
394   }
395   return 0;
396 }
397 #endif
398
399
400 /**
401  * Function that can be used by the transport service to transmit
402  * a message using the plugin.   Note that in the case of a
403  * peer disconnecting, the continuation MUST be called
404  * prior to the disconnect notification itself.  This function
405  * will be called with this peer's HELLO message to initiate
406  * a fresh connection to another peer.
407  *
408  * @param cls closure
409  * @param session which session must be used
410  * @param msgbuf the message to transmit
411  * @param msgbuf_size number of bytes in 'msgbuf'
412  * @param priority how important is the message (most plugins will
413  *                 ignore message priority and just FIFO)
414  * @param to how long to wait at most for the transmission (does not
415  *                require plugins to discard the message after the timeout,
416  *                just advisory for the desired delay; most plugins will ignore
417  *                this as well)
418  * @param cont continuation to call once the message has
419  *        been transmitted (or if the transport is ready
420  *        for the next transmission call; or if the
421  *        peer disconnected...); can be NULL
422  * @param cont_cls closure for cont
423  * @return number of bytes used (on the physical network, with overheads);
424  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
425  *         and does NOT mean that the message was not transmitted (DV)
426  */
427 static ssize_t
428 http_client_plugin_send (void *cls,
429                   struct Session *session,
430                   const char *msgbuf, size_t msgbuf_size,
431                   unsigned int priority,
432                   struct GNUNET_TIME_Relative to,
433                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
434 {
435   struct HTTP_Client_Plugin *plugin = cls;
436   struct HTTP_Message *msg;
437
438   GNUNET_assert (plugin != NULL);
439   GNUNET_assert (session != NULL);
440
441   /* lookup if session is really existing */
442   if (GNUNET_YES != client_exist_session (plugin, session))
443   {
444     GNUNET_break (0);
445     return GNUNET_SYSERR;
446   }
447
448   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, session->plugin->name,
449                    "Session %p/connection %p: Sending message with %u to peer `%s' with \n",
450                    session, session->client_put,
451                    msgbuf_size, GNUNET_i2s (&session->target));
452
453   /* create new message and schedule */
454   msg = GNUNET_malloc (sizeof (struct HTTP_Message) + msgbuf_size);
455   msg->next = NULL;
456   msg->size = msgbuf_size;
457   msg->pos = 0;
458   msg->buf = (char *) &msg[1];
459   msg->transmit_cont = cont;
460   msg->transmit_cont_cls = cont_cls;
461   memcpy (msg->buf, msgbuf, msgbuf_size);
462   GNUNET_CONTAINER_DLL_insert_tail (session->msg_head, session->msg_tail, msg);
463
464   if (GNUNET_YES == session->client_put_disconnect)
465   {
466       session->client_put_disconnect = GNUNET_NO;
467       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, session->plugin->name,
468                        "Session %p: Reconnecting PUT connection\n",
469                        session);
470       client_connect_put (session);
471   }
472
473   if (GNUNET_YES == session->client_put_paused)
474   {
475     GNUNET_assert (session->put_disconnect_task != GNUNET_SCHEDULER_NO_TASK);
476     GNUNET_SCHEDULER_cancel (session->put_disconnect_task);
477     session->put_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
478     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, session->plugin->name,
479                      "Session %p/connection %p: unpausing connection\n",
480                      session, session->client_put);
481     session->client_put_paused = GNUNET_NO;
482     curl_easy_pause (session->client_put, CURLPAUSE_CONT);
483   }
484   client_schedule (session->plugin, GNUNET_YES);
485   client_reschedule_session_timeout (session);
486   return msgbuf_size;
487 }
488
489
490 /**
491  * Delete session s
492  *
493  * @param s the session to delete
494  */
495 static void
496 client_delete_session (struct Session *s)
497 {
498   struct HTTP_Client_Plugin *plugin = s->plugin;
499   struct HTTP_Message *pos;
500   struct HTTP_Message *next;
501
502   client_stop_session_timeout (s);
503
504   if (GNUNET_SCHEDULER_NO_TASK != s->put_disconnect_task)
505   {
506       GNUNET_SCHEDULER_cancel (s->put_disconnect_task);
507       s->put_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
508   }
509
510   GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
511
512   next = s->msg_head;
513   while (NULL != (pos = next))
514   {
515     next = pos->next;
516     GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, pos);
517     if (pos->transmit_cont != NULL)
518       pos->transmit_cont (pos->transmit_cont_cls, &s->target, GNUNET_SYSERR);
519     GNUNET_free (pos);
520   }
521
522   if (s->msg_tk != NULL)
523   {
524     GNUNET_SERVER_mst_destroy (s->msg_tk);
525     s->msg_tk = NULL;
526   }
527   GNUNET_free (s->addr);
528   GNUNET_free (s->url);
529   GNUNET_free (s);
530 }
531
532
533
534 /**
535  * Disconnect a session
536  *
537  * @param s session
538  * @return GNUNET_OK on success, GNUNET_SYSERR on error
539  */
540 static int
541 client_disconnect (struct Session *s)
542 {
543   struct HTTP_Client_Plugin *plugin = s->plugin;
544   struct HTTP_Message *msg;
545   struct HTTP_Message *t;
546   int res = GNUNET_OK;
547   CURLMcode mret;
548
549   if (GNUNET_YES != client_exist_session (plugin, s))
550   {
551     GNUNET_break (0);
552     return GNUNET_SYSERR;
553   }
554
555   if (s->client_put != NULL)
556   {
557     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
558                      "Session %p/connection %p: disconnecting PUT connection to peer `%s'\n",
559                      s, s->client_put, GNUNET_i2s (&s->target));
560
561     /* remove curl handle from multi handle */
562     mret = curl_multi_remove_handle (plugin->curl_multi_handle, s->client_put);
563     if (mret != CURLM_OK)
564     {
565       /* clean up easy handle, handle is now invalid and free'd */
566       res = GNUNET_SYSERR;
567       GNUNET_break (0);
568     }
569     curl_easy_cleanup (s->client_put);
570     s->client_put = NULL;
571   }
572
573
574   if (s->recv_wakeup_task != GNUNET_SCHEDULER_NO_TASK)
575   {
576     GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
577     s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
578   }
579
580   if (s->client_get != NULL)
581   {
582       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
583                        "Session %p/connection %p: disconnecting GET connection to peer `%s'\n",
584                        s, s->client_get, GNUNET_i2s (&s->target));
585
586     /* remove curl handle from multi handle */
587     mret = curl_multi_remove_handle (plugin->curl_multi_handle, s->client_get);
588     if (mret != CURLM_OK)
589     {
590       /* clean up easy handle, handle is now invalid and free'd */
591       res = GNUNET_SYSERR;
592       GNUNET_break (0);
593     }
594     curl_easy_cleanup (s->client_get);
595     s->client_get = NULL;
596   }
597
598   msg = s->msg_head;
599   while (msg != NULL)
600   {
601     t = msg->next;
602     if (NULL != msg->transmit_cont)
603       msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
604     GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
605     GNUNET_free (msg);
606     msg = t;
607   }
608
609   GNUNET_assert (plugin->cur_connections >= 2);
610   plugin->cur_connections -= 2;
611   GNUNET_STATISTICS_set (plugin->env->stats,
612       "# HTTP client sessions",
613       plugin->cur_connections,
614       GNUNET_NO);
615
616   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
617                    "Session %p: notifying transport about ending session\n",s);
618
619   plugin->env->session_end (plugin->env->cls, &s->target, s);
620   client_delete_session (s);
621
622   /* Re-schedule since handles have changed */
623   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
624   {
625     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
626     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
627   }
628   client_schedule (plugin, GNUNET_YES);
629
630   return res;
631 }
632
633
634 /**
635  * Function that can be used to force the plugin to disconnect
636  * from the given peer and cancel all previous transmissions
637  * (and their continuationc).
638  *
639  * @param cls closure
640  * @param target peer from which to disconnect
641  */
642 static void
643 http_client_plugin_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
644 {
645   struct HTTP_Client_Plugin *plugin = cls;
646   struct Session *next = NULL;
647   struct Session *pos = NULL;
648
649   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
650                    "Transport tells me to disconnect `%s'\n",
651                    GNUNET_i2s (target));
652
653   next = plugin->head;
654   while (NULL != (pos = next))
655   {
656     next = pos->next;
657     if (0 == memcmp (target, &pos->target, sizeof (struct GNUNET_PeerIdentity)))
658     {
659       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
660                        "Disconnecting session %p to `%pos'\n",
661                        pos, GNUNET_i2s (target));
662       GNUNET_assert (GNUNET_OK == client_disconnect (pos));
663     }
664   }
665
666 }
667
668
669 static struct Session *
670 client_lookup_session (struct HTTP_Client_Plugin *plugin,
671                        const struct GNUNET_HELLO_Address *address)
672 {
673   struct Session *pos;
674
675   for (pos = plugin->head; NULL != pos; pos = pos->next)
676     if ((0 == memcmp (&address->peer, &pos->target, sizeof (struct GNUNET_PeerIdentity))) &&
677         (address->address_length == pos->addrlen) &&
678         (0 == memcmp (address->address, pos->addr, pos->addrlen)))
679       return pos;
680   return NULL;
681 }
682
683 static void
684 client_put_disconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
685 {
686   struct Session *s = cls;
687   s->put_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
688   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name,
689                    "Session %p/connection %p: will be disconnected due to no activity\n",
690                    s, s->client_put);
691   s->client_put_disconnect = GNUNET_YES;
692   s->client_put_paused = GNUNET_NO;
693   curl_easy_pause (s->client_put, CURLPAUSE_CONT);
694   client_schedule (s->plugin, GNUNET_YES);
695 }
696
697 /**
698  * Callback method used with libcurl
699  * Method is called when libcurl needs to read data during sending
700  *
701  * @param stream pointer where to write data
702  * @param size size of an individual element
703  * @param nmemb count of elements that can be written to the buffer
704  * @param cls source pointer, passed to the libcurl handle
705  * @return bytes written to stream, returning 0 will terminate connection!
706  */
707 static size_t
708 client_send_cb (void *stream, size_t size, size_t nmemb, void *cls)
709 {
710   struct Session *s = cls;
711   struct HTTP_Client_Plugin *plugin = s->plugin;
712   struct HTTP_Message *msg = s->msg_head;
713   size_t len;
714
715   if (GNUNET_YES != client_exist_session (plugin, s))
716   {
717     GNUNET_break (0);
718     return 0;
719   }
720   if (GNUNET_YES == s->client_put_disconnect)
721   {
722       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name,
723                        "Session %p/connection %p: disconnect due to inactivity\n",
724                        s, s->client_put);
725       return 0;
726   }
727
728   if (NULL == msg)
729   {
730     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
731                      "Session %p/connection %p: nothing to send, suspending\n",
732                      s, s->client_put);
733     s->put_disconnect_task = GNUNET_SCHEDULER_add_delayed (PUT_DISCONNECT_TIMEOUT, &client_put_disconnect, s);
734     s->client_put_disconnect = GNUNET_NO;
735     s->client_put_paused = GNUNET_YES;
736     return CURL_READFUNC_PAUSE;
737   }
738   /* data to send */
739   GNUNET_assert (msg->pos < msg->size);
740   /* calculate how much fits in buffer */
741   len = GNUNET_MIN (msg->size - msg->pos,
742                     size * nmemb);
743   memcpy (stream, &msg->buf[msg->pos], len);
744   msg->pos += len;
745   if (msg->pos == msg->size)
746   {
747     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
748                      "Session %p/connection %p: sent message with %u bytes sent, removing message from queue\n",
749                      s, s->client_put, msg->size, msg->pos);
750     /* Calling transmit continuation  */
751     GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
752     if (NULL != msg->transmit_cont)
753       msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_OK);
754     GNUNET_free (msg);
755   }
756   client_reschedule_session_timeout (s);
757   return len;
758 }
759
760
761 /**
762  * Wake up a curl handle which was suspended
763  *
764  * @param cls the session
765  * @param tc task context
766  */
767 static void
768 client_wake_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
769 {
770   struct Session *s = cls;
771
772   if (GNUNET_YES != client_exist_session(p, s))
773   {
774     GNUNET_break (0);
775     return;
776   }
777   s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
778   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
779     return;
780   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name,
781                    "Session %p/connection %p: Waking up GET handle\n", s, s->client_get);
782   if (s->client_get != NULL)
783     curl_easy_pause (s->client_get, CURLPAUSE_CONT);
784 }
785
786
787 /**
788  * Callback for message stream tokenizer
789  *
790  * @param cls the session
791  * @param client not used
792  * @param message the message received
793  * @return always GNUNET_OK
794  */
795 static int
796 client_receive_mst_cb (void *cls, void *client,
797                        const struct GNUNET_MessageHeader *message)
798 {
799   struct Session *s = cls;
800   struct HTTP_Client_Plugin *plugin;
801   struct GNUNET_TIME_Relative delay;
802   struct GNUNET_ATS_Information atsi[2];
803   //GNUNET_break (0);
804   if (GNUNET_YES != client_exist_session(p, s))
805   {
806     GNUNET_break (0);
807     return GNUNET_OK;
808   }
809   plugin = s->plugin;
810   //GNUNET_break (0);
811   atsi[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
812   atsi[0].value = htonl (1);
813   atsi[1].type = htonl (GNUNET_ATS_NETWORK_TYPE);
814   atsi[1].value = s->ats_address_network_type;
815   GNUNET_break (s->ats_address_network_type != ntohl (GNUNET_ATS_NET_UNSPECIFIED));
816
817   delay = s->plugin->env->receive (plugin->env->cls, &s->target, message,
818                                    (const struct GNUNET_ATS_Information *) &atsi, 2,
819                                    s, s->addr, s->addrlen);
820   s->next_receive =
821       GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (), delay);
822
823   if (GNUNET_TIME_absolute_get ().abs_value < s->next_receive.abs_value)
824   {
825
826     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
827                      "Client: peer `%s' address `%s' next read delayed for %llu ms\n",
828                      GNUNET_i2s (&s->target), GNUNET_a2s (s->addr, s->addrlen),
829                      delay);
830   }
831   client_reschedule_session_timeout (s);
832   return GNUNET_OK;
833 }
834
835
836
837 /**
838  * Callback method used with libcurl
839  * Method is called when libcurl needs to write data during sending
840  *
841  * @param stream pointer where to write data
842  * @param size size of an individual element
843  * @param nmemb count of elements that can be written to the buffer
844  * @param cls destination pointer, passed to the libcurl handle
845  * @return bytes read from stream
846  */
847 static size_t
848 client_receive (void *stream, size_t size, size_t nmemb, void *cls)
849 {
850   struct Session *s = cls;
851   struct GNUNET_TIME_Absolute now;
852   size_t len = size * nmemb;
853   struct HTTP_Client_Plugin *plugin = s->plugin;
854
855   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
856                    "Received %u bytes from peer `%s'\n", len,
857                    GNUNET_i2s (&s->target));
858   now = GNUNET_TIME_absolute_get ();
859   if (now.abs_value < s->next_receive.abs_value)
860   {
861     struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get ();
862     struct GNUNET_TIME_Relative delta =
863         GNUNET_TIME_absolute_get_difference (now, s->next_receive);
864     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
865                      "No inbound bandwidth for session %p available! Next read was delayed for %llu ms\n",
866                      s, delta.rel_value);
867     if (s->recv_wakeup_task != GNUNET_SCHEDULER_NO_TASK)
868     {
869       GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
870       s->recv_wakeup_task = GNUNET_SCHEDULER_NO_TASK;
871     }
872     s->recv_wakeup_task =
873         GNUNET_SCHEDULER_add_delayed (delta, &client_wake_up, s);
874     return CURLPAUSE_ALL;
875   }
876   if (NULL == s->msg_tk)
877     s->msg_tk = GNUNET_SERVER_mst_create (&client_receive_mst_cb, s);
878   (void) GNUNET_SERVER_mst_receive (s->msg_tk, s, stream, len, GNUNET_NO, GNUNET_NO);
879   return len;
880
881 }
882
883
884 /**
885  * Task performing curl operations
886  *
887  * @param cls plugin as closure
888  * @param tc gnunet scheduler task context
889  */
890 static void
891 client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
892
893
894 /**
895  * Function setting up file descriptors and scheduling task to run
896  *
897  * @param  plugin plugin as closure
898  * @param now schedule task in 1ms, regardless of what curl may say
899  * @return GNUNET_SYSERR for hard failure, GNUNET_OK for ok
900  */
901 static int
902 client_schedule (struct HTTP_Client_Plugin *plugin, int now)
903 {
904   fd_set rs;
905   fd_set ws;
906   fd_set es;
907   int max;
908   struct GNUNET_NETWORK_FDSet *grs;
909   struct GNUNET_NETWORK_FDSet *gws;
910   long to;
911   CURLMcode mret;
912   struct GNUNET_TIME_Relative timeout;
913
914   /* Cancel previous scheduled task */
915   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
916   {
917     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
918     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
919   }
920   max = -1;
921   FD_ZERO (&rs);
922   FD_ZERO (&ws);
923   FD_ZERO (&es);
924   mret = curl_multi_fdset (plugin->curl_multi_handle, &rs, &ws, &es, &max);
925   if (mret != CURLM_OK)
926   {
927     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("%s failed at %s:%d: `%s'\n"),
928                 "curl_multi_fdset", __FILE__, __LINE__,
929                 curl_multi_strerror (mret));
930     return GNUNET_SYSERR;
931   }
932   mret = curl_multi_timeout (plugin->curl_multi_handle, &to);
933   if (to == -1)
934     timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1);
935   else
936     timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, to);
937   if (now == GNUNET_YES)
938     timeout = GNUNET_TIME_UNIT_MILLISECONDS;
939
940   if (mret != CURLM_OK)
941   {
942     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("%s failed at %s:%d: `%s'\n"),
943                 "curl_multi_timeout", __FILE__, __LINE__,
944                 curl_multi_strerror (mret));
945     return GNUNET_SYSERR;
946   }
947
948   grs = GNUNET_NETWORK_fdset_create ();
949   gws = GNUNET_NETWORK_fdset_create ();
950   GNUNET_NETWORK_fdset_copy_native (grs, &rs, max + 1);
951   GNUNET_NETWORK_fdset_copy_native (gws, &ws, max + 1);
952
953   plugin->client_perform_task =
954       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
955                                    timeout, grs, gws,
956                                    &client_run, plugin);
957   GNUNET_NETWORK_fdset_destroy (gws);
958   GNUNET_NETWORK_fdset_destroy (grs);
959   return GNUNET_OK;
960 }
961
962
963 /**
964  * Task performing curl operations
965  *
966  * @param cls plugin as closure
967  * @param tc gnunet scheduler task context
968  */
969 static void
970 client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
971 {
972   struct HTTP_Client_Plugin *plugin = cls;
973   int running;
974   CURLMcode mret;
975
976   GNUNET_assert (cls != NULL);
977
978   plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
979   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
980     return;
981
982   do
983   {
984     running = 0;
985     mret = curl_multi_perform (plugin->curl_multi_handle, &running);
986
987     CURLMsg *msg;
988     int msgs_left;
989
990     while ((msg = curl_multi_info_read (plugin->curl_multi_handle, &msgs_left)))
991     {
992       CURL *easy_h = msg->easy_handle;
993       struct Session *s = NULL;
994       char *d = (char *) s;
995
996       if (easy_h == NULL)
997       {
998         GNUNET_break (0);
999         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1000                          "Client: connection to ended with reason %i: `%s', %i handles running\n",
1001                          msg->data.result,
1002                          curl_easy_strerror (msg->data.result), running);
1003         continue;
1004       }
1005
1006       GNUNET_assert (CURLE_OK ==
1007                      curl_easy_getinfo (easy_h, CURLINFO_PRIVATE, &d));
1008       s = (struct Session *) d;
1009
1010       if (GNUNET_YES != client_exist_session(plugin, s))
1011       {
1012         GNUNET_break (0);
1013         return;
1014       }
1015
1016       GNUNET_assert (s != NULL);
1017       if (msg->msg == CURLMSG_DONE)
1018       {
1019         if (easy_h == s->client_put)
1020         {
1021             GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1022                 "Session %p/connection %p: PUT connection to `%s' ended with reason %i: `%s'\n",
1023                 s, msg->easy_handle, GNUNET_i2s (&s->target),
1024                 msg->data.result,
1025                 curl_easy_strerror (msg->data.result));
1026             if (s->client_get == NULL)
1027             {
1028               /* Disconnect other transmission direction and tell transport */
1029               //client_disconnect (s);
1030             }
1031         }
1032         if (easy_h == s->client_get)
1033         {
1034             GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1035                 "Session %p/connection %p: GET connection to `%s' ended with reason %i: `%s'\n",
1036                 s, msg->easy_handle, GNUNET_i2s (&s->target),
1037                 msg->data.result,
1038                 curl_easy_strerror (msg->data.result));
1039
1040             /* Disconnect other transmission direction and tell transport */
1041             client_disconnect (s);
1042         }
1043       }
1044     }
1045   }
1046   while (mret == CURLM_CALL_MULTI_PERFORM);
1047   client_schedule (plugin, GNUNET_NO);
1048 }
1049
1050 static int
1051 client_connect_get (struct Session *s)
1052 {
1053   CURLMcode mret;
1054   /* create get connection */
1055   s->client_get = curl_easy_init ();
1056 #if VERBOSE_CURL
1057   curl_easy_setopt (s->client_get, CURLOPT_VERBOSE, 1L);
1058   curl_easy_setopt (s->client_get, CURLOPT_DEBUGFUNCTION, &client_log);
1059   curl_easy_setopt (s->client_get, CURLOPT_DEBUGDATA, s->client_get);
1060 #endif
1061 #if BUILD_HTTPS
1062   curl_easy_setopt (s->client_get, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
1063   curl_easy_setopt (s->client_get, CURLOPT_SSL_VERIFYPEER, 0);
1064   curl_easy_setopt (s->client_get, CURLOPT_SSL_VERIFYHOST, 0);
1065 #endif
1066   curl_easy_setopt (s->client_get, CURLOPT_URL, s->url);
1067   //curl_easy_setopt (s->client_get, CURLOPT_HEADERFUNCTION, &curl_get_header_cb);
1068   //curl_easy_setopt (s->client_get, CURLOPT_WRITEHEADER, ps);
1069   curl_easy_setopt (s->client_get, CURLOPT_READFUNCTION, client_send_cb);
1070   curl_easy_setopt (s->client_get, CURLOPT_READDATA, s);
1071   curl_easy_setopt (s->client_get, CURLOPT_WRITEFUNCTION, client_receive);
1072   curl_easy_setopt (s->client_get, CURLOPT_WRITEDATA, s);
1073   /* No timeout by default, timeout done with session timeout */
1074   curl_easy_setopt (s->client_get, CURLOPT_TIMEOUT, 0);
1075   curl_easy_setopt (s->client_get, CURLOPT_PRIVATE, s);
1076   curl_easy_setopt (s->client_get, CURLOPT_CONNECTTIMEOUT_MS,
1077                     (long) HTTP_CLIENT_NOT_VALIDATED_TIMEOUT.rel_value);
1078   curl_easy_setopt (s->client_get, CURLOPT_BUFFERSIZE,
1079                     2 * GNUNET_SERVER_MAX_MESSAGE_SIZE);
1080 #if CURL_TCP_NODELAY
1081   curl_easy_setopt (ps->recv_endpoint, CURLOPT_TCP_NODELAY, 1);
1082 #endif
1083   mret = curl_multi_add_handle (s->plugin->curl_multi_handle, s->client_get);
1084   if (mret != CURLM_OK)
1085   {
1086     curl_easy_cleanup (s->client_get);
1087     GNUNET_break (0);
1088     return GNUNET_SYSERR;
1089   }
1090
1091   return GNUNET_OK;
1092 }
1093
1094 static int
1095 client_connect_put (struct Session *s)
1096 {
1097   CURLMcode mret;
1098   /* create put connection */
1099   s->client_put = curl_easy_init ();
1100 #if VERBOSE_CURL
1101   curl_easy_setopt (s->client_put, CURLOPT_VERBOSE, 1L);
1102   curl_easy_setopt (s->client_put, CURLOPT_DEBUGFUNCTION, &client_log);
1103   curl_easy_setopt (s->client_put, CURLOPT_DEBUGDATA, s->client_put);
1104 #endif
1105 #if BUILD_HTTPS
1106   curl_easy_setopt (s->client_put, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
1107   curl_easy_setopt (s->client_put, CURLOPT_SSL_VERIFYPEER, 0);
1108   curl_easy_setopt (s->client_put, CURLOPT_SSL_VERIFYHOST, 0);
1109 #endif
1110   curl_easy_setopt (s->client_put, CURLOPT_URL, s->url);
1111   curl_easy_setopt (s->client_put, CURLOPT_UPLOAD, 1L);
1112   /*
1113   struct curl_slist *m_headerlist;
1114   m_headerlist = NULL;
1115   m_headerlist = curl_slist_append(m_headerlist, "Transfer-Encoding: chunked");
1116   curl_easy_setopt(s->client_put, CURLOPT_HTTPHEADER, m_headerlist);*/
1117   //curl_easy_setopt (s->client_put, CURLOPT_HEADERFUNCTION, &client_curl_header);
1118   //curl_easy_setopt (s->client_put, CURLOPT_WRITEHEADER, ps);
1119   curl_easy_setopt (s->client_put, CURLOPT_READFUNCTION, client_send_cb);
1120   curl_easy_setopt (s->client_put, CURLOPT_READDATA, s);
1121   curl_easy_setopt (s->client_put, CURLOPT_WRITEFUNCTION, client_receive);
1122   curl_easy_setopt (s->client_put, CURLOPT_WRITEDATA, s);
1123   /* No timeout by default, timeout done with session timeout */
1124   curl_easy_setopt (s->client_put, CURLOPT_TIMEOUT, 0);
1125   curl_easy_setopt (s->client_put, CURLOPT_PRIVATE, s);
1126   curl_easy_setopt (s->client_put, CURLOPT_CONNECTTIMEOUT_MS,
1127                     (long) HTTP_CLIENT_NOT_VALIDATED_TIMEOUT.rel_value);
1128   curl_easy_setopt (s->client_put, CURLOPT_BUFFERSIZE,
1129                     2 * GNUNET_SERVER_MAX_MESSAGE_SIZE);
1130 #if CURL_TCP_NODELAY
1131   curl_easy_setopt (s->client_put, CURLOPT_TCP_NODELAY, 1);
1132 #endif
1133
1134   mret = curl_multi_add_handle (s->plugin->curl_multi_handle, s->client_put);
1135   if (mret != CURLM_OK)
1136   {
1137     curl_easy_cleanup (s->client_put);
1138     GNUNET_break (0);
1139     return GNUNET_SYSERR;
1140   }
1141   return GNUNET_OK;
1142 }
1143
1144 static int
1145 client_connect (struct Session *s)
1146 {
1147
1148   struct HTTP_Client_Plugin *plugin = s->plugin;
1149   int res = GNUNET_OK;
1150
1151
1152   /* create url */
1153   if (NULL == http_common_plugin_address_to_string (NULL, s->addr, s->addrlen))
1154   {
1155     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1156                      "Invalid address peer `%s'\n",
1157                      GNUNET_i2s (&s->target));
1158     return GNUNET_SYSERR;
1159   }
1160
1161   GNUNET_asprintf (&s->url, "%s/%s;%u",
1162       http_common_plugin_address_to_string (plugin, s->addr, s->addrlen),
1163                    GNUNET_h2s_full (&plugin->env->my_identity->hashPubKey),
1164                    plugin->last_tag);
1165
1166   plugin->last_tag++;
1167
1168   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1169                    "Initiating outbound session peer `%s' using address `%s'\n",
1170                    GNUNET_i2s (&s->target), s->url);
1171
1172   if ((GNUNET_SYSERR == client_connect_get (s)) ||
1173       (GNUNET_SYSERR == client_connect_put (s)))
1174   {
1175       GNUNET_break (0);
1176       return GNUNET_SYSERR;
1177   }
1178
1179   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1180                "Session %p: connected with connections GET %p and PUT %p\n",
1181                s, s->client_get, s->client_put);
1182
1183   /* Perform connect */
1184   plugin->cur_connections += 2;
1185   GNUNET_STATISTICS_set (plugin->env->stats,
1186       "# HTTP client connections",
1187       plugin->cur_connections,
1188       GNUNET_NO);
1189
1190   /* Re-schedule since handles have changed */
1191   if (plugin->client_perform_task != GNUNET_SCHEDULER_NO_TASK)
1192   {
1193     GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
1194     plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
1195   }
1196   plugin->client_perform_task = GNUNET_SCHEDULER_add_now (client_run, plugin);
1197   return res;
1198 }
1199
1200
1201 /**
1202  * Creates a new outbound session the transport service will use to send data to the
1203  * peer
1204  *
1205  * @param cls the plugin
1206  * @param address the address
1207  * @return the session or NULL of max connections exceeded
1208  */
1209 static struct Session *
1210 http_client_plugin_get_session (void *cls,
1211                   const struct GNUNET_HELLO_Address *address)
1212 {
1213   struct HTTP_Client_Plugin *plugin = cls;
1214   struct Session * s = NULL;
1215   struct sockaddr *sa;
1216   struct GNUNET_ATS_Information ats;
1217   size_t salen = 0;
1218   int res;
1219
1220   GNUNET_assert (plugin != NULL);
1221   GNUNET_assert (address != NULL);
1222   GNUNET_assert (address->address != NULL);
1223
1224   /* find existing session */
1225   s = client_lookup_session (plugin, address);
1226   if (s != NULL)
1227     return s;
1228
1229   if (plugin->max_connections <= plugin->cur_connections)
1230   {
1231     GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
1232                      "Maximum number of connections (%u) reached: "
1233                      "cannot connect to peer `%s'\n",
1234                      plugin->max_connections,
1235                      GNUNET_i2s (&address->peer));
1236     return NULL;
1237   }
1238
1239   ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
1240   ats.value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
1241   sa = http_common_socket_from_address (address->address, address->address_length, &res);
1242
1243   if (GNUNET_SYSERR == res)
1244   {
1245       return NULL;
1246   }
1247   else if (GNUNET_YES == res)
1248   {
1249       GNUNET_assert (NULL != sa);
1250       if (AF_INET == sa->sa_family)
1251       {
1252           salen = sizeof (struct sockaddr_in);
1253       }
1254       else if (AF_INET == sa->sa_family)
1255       {
1256           salen = sizeof (struct sockaddr_in6);
1257       }
1258       ats = plugin->env->get_address_type (plugin->env->cls, sa, salen);
1259       GNUNET_free (sa);
1260   }
1261   else if (GNUNET_NO == res)
1262   {
1263       ats.value = htonl (GNUNET_ATS_COST_WAN);
1264   }
1265
1266   if (GNUNET_ATS_NET_UNSPECIFIED == ntohl(ats.value))
1267   {
1268       GNUNET_break (0);
1269       return NULL;
1270   }
1271
1272   s = GNUNET_malloc (sizeof (struct Session));
1273   memcpy (&s->target, &address->peer, sizeof (struct GNUNET_PeerIdentity));
1274   s->plugin = plugin;
1275   s->addr = GNUNET_malloc (address->address_length);
1276   memcpy (s->addr, address->address, address->address_length);
1277   s->addrlen = address->address_length;
1278   s->ats_address_network_type = ats.value;
1279
1280   client_start_session_timeout (s);
1281
1282   /* add new session */
1283   GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
1284
1285   /* initiate new connection */
1286   if (GNUNET_SYSERR == client_connect (s))
1287   {
1288     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1289                      "Cannot connect to peer `%s' address `%s''\n",
1290                      http_common_plugin_address_to_string (NULL, s->addr, s->addrlen),
1291                      GNUNET_i2s (&s->target));
1292     client_delete_session (s);
1293     return NULL;
1294   }
1295   return s;
1296 }
1297
1298
1299 /**
1300  * Setup http_client plugin
1301  *
1302  * @param plugin the plugin handle
1303  * @return GNUNET_OK on success, GNUNET_SYSERR on error
1304  */
1305 static int
1306 client_start (struct HTTP_Client_Plugin *plugin)
1307 {
1308   curl_global_init (CURL_GLOBAL_ALL);
1309   plugin->curl_multi_handle = curl_multi_init ();
1310
1311   if (NULL == plugin->curl_multi_handle)
1312   {
1313     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1314                      _("Could not initialize curl multi handle, failed to start %s plugin!\n"),
1315                      plugin->name);
1316     return GNUNET_SYSERR;
1317   }
1318   return GNUNET_OK;
1319 }
1320
1321 /**
1322  * Session was idle, so disconnect it
1323  */
1324 static void
1325 client_session_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1326 {
1327   GNUNET_assert (NULL != cls);
1328   struct Session *s = cls;
1329
1330   s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1331   GNUNET_log (TIMEOUT_LOG,
1332               "Session %p was idle for %llu ms, disconnecting\n",
1333               s, (unsigned long long) CLIENT_SESSION_TIMEOUT.rel_value);
1334
1335   /* call session destroy function */
1336   GNUNET_assert (GNUNET_OK == client_disconnect (s));
1337 }
1338
1339
1340 /**
1341  * Start session timeout for session s
1342  *
1343  * @param s the session
1344  */
1345 static void
1346 client_start_session_timeout (struct Session *s)
1347 {
1348
1349  GNUNET_assert (NULL != s);
1350  GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task);
1351  s->timeout_task =  GNUNET_SCHEDULER_add_delayed (CLIENT_SESSION_TIMEOUT,
1352                                                   &client_session_timeout,
1353                                                   s);
1354  GNUNET_log (TIMEOUT_LOG,
1355              "Timeout for session %p set to %llu ms\n",
1356              s,  (unsigned long long) CLIENT_SESSION_TIMEOUT.rel_value);
1357 }
1358
1359
1360 /**
1361  * Increment session timeout due to activity for session s
1362  *
1363  * param s the session
1364  */
1365 static void
1366 client_reschedule_session_timeout (struct Session *s)
1367 {
1368
1369  GNUNET_assert (NULL != s);
1370  GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != s->timeout_task);
1371
1372  GNUNET_SCHEDULER_cancel (s->timeout_task);
1373  s->timeout_task =  GNUNET_SCHEDULER_add_delayed (CLIENT_SESSION_TIMEOUT,
1374                                                   &client_session_timeout,
1375                                                   s);
1376  GNUNET_log (TIMEOUT_LOG,
1377              "Timeout rescheduled for session %p set to %llu ms\n",
1378              s, (unsigned long long) CLIENT_SESSION_TIMEOUT.rel_value);
1379 }
1380
1381
1382 /**
1383  * Cancel timeout due to activity for session s
1384  *
1385  * param s the session
1386  */
1387 static void
1388 client_stop_session_timeout (struct Session *s)
1389 {
1390  GNUNET_assert (NULL != s);
1391
1392  if (GNUNET_SCHEDULER_NO_TASK != s->timeout_task)
1393  {
1394    GNUNET_SCHEDULER_cancel (s->timeout_task);
1395    s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1396    GNUNET_log (TIMEOUT_LOG, "Timeout stopped for session %p\n", s);
1397  }
1398 }
1399
1400
1401 /**
1402  * Another peer has suggested an address for this
1403  * peer and transport plugin.  Check that this could be a valid
1404  * address.  If so, consider adding it to the list
1405  * of addresses.
1406  *
1407  * @param cls closure
1408  * @param addr pointer to the address
1409  * @param addrlen length of addr
1410  * @return GNUNET_OK if this is a plausible address for this peer
1411  *         and transport
1412  */
1413 static int
1414 http_client_plugin_address_suggested (void *cls, const void *addr, size_t addrlen)
1415 {
1416   /* struct Plugin *plugin = cls; */
1417
1418   /* A HTTP/S client does not have any valid address so:*/
1419   return GNUNET_NO;
1420 }
1421
1422
1423 /**
1424  * Exit point from the plugin.
1425  *
1426  * @param cls api as closure
1427  * @return NULL
1428  */
1429 void *
1430 LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
1431 {
1432   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1433   struct HTTP_Client_Plugin *plugin = api->cls;
1434   struct Session *pos;
1435   struct Session *next;
1436
1437   if (NULL == api->cls)
1438   {
1439     /* Stub shutdown */
1440     GNUNET_free (api);
1441     return NULL;
1442   }
1443
1444   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1445                    _("Shutting down plugin `%s'\n"),
1446                    plugin->name);
1447
1448
1449   next = plugin->head;
1450   while (NULL != (pos = next))
1451   {
1452       next = pos->next;
1453       client_disconnect (pos);
1454   }
1455   if (GNUNET_SCHEDULER_NO_TASK != plugin->client_perform_task)
1456   {
1457       GNUNET_SCHEDULER_cancel (plugin->client_perform_task);
1458       plugin->client_perform_task = GNUNET_SCHEDULER_NO_TASK;
1459   }
1460
1461
1462   if (NULL != plugin->curl_multi_handle)
1463   {
1464     curl_multi_cleanup (plugin->curl_multi_handle);
1465     plugin->curl_multi_handle = NULL;
1466   }
1467   curl_global_cleanup ();
1468
1469   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1470                    _("Shutdown for plugin `%s' complete\n"),
1471                    plugin->name);
1472
1473   GNUNET_free (plugin);
1474   GNUNET_free (api);
1475   return NULL;
1476 }
1477
1478
1479 /**
1480  * Configure plugin
1481  *
1482  * @param plugin the plugin handle
1483  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
1484  */
1485 static int
1486 client_configure_plugin (struct HTTP_Client_Plugin *plugin)
1487 {
1488   unsigned long long max_connections;
1489
1490   /* Optional parameters */
1491   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg,
1492                       plugin->name,
1493                       "MAX_CONNECTIONS", &max_connections))
1494     max_connections = 128;
1495   plugin->max_connections = max_connections;
1496
1497   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1498                    _("Maximum number of connections is %u\n"),
1499                    plugin->max_connections);
1500   return GNUNET_OK;
1501 }
1502
1503 /**
1504  * Entry point for the plugin.
1505  */
1506 void *
1507 LIBGNUNET_PLUGIN_TRANSPORT_INIT (void *cls)
1508 {
1509   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1510   struct GNUNET_TRANSPORT_PluginFunctions *api;
1511   struct HTTP_Client_Plugin *plugin;
1512
1513   if (NULL == env->receive)
1514   {
1515     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
1516        initialze the plugin or the API */
1517     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1518     api->cls = NULL;
1519     api->address_to_string = &http_common_plugin_address_to_string;
1520     api->string_to_address = &http_common_plugin_string_to_address;
1521     api->address_pretty_printer = &http_common_plugin_address_pretty_printer;
1522     return api;
1523   }
1524
1525   plugin = GNUNET_malloc (sizeof (struct HTTP_Client_Plugin));
1526   p = plugin;
1527   plugin->env = env;
1528   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1529   api->cls = plugin;
1530   api->send = &http_client_plugin_send;
1531   api->disconnect = &http_client_plugin_disconnect;
1532   api->check_address = &http_client_plugin_address_suggested;
1533   api->get_session = &http_client_plugin_get_session;
1534   api->address_to_string = &http_common_plugin_address_to_string;
1535   api->string_to_address = &http_common_plugin_string_to_address;
1536   api->address_pretty_printer = &http_common_plugin_address_pretty_printer;
1537
1538
1539 #if BUILD_HTTPS
1540   plugin->name = "transport-https_client";
1541   plugin->protocol = "https";
1542 #else
1543   plugin->name = "transport-http_client";
1544   plugin->protocol = "http";
1545 #endif
1546   plugin->last_tag = 1;
1547
1548   if (GNUNET_SYSERR == client_configure_plugin (plugin))
1549   {
1550       LIBGNUNET_PLUGIN_TRANSPORT_DONE (api);
1551       return NULL;
1552   }
1553
1554   /* Start client */
1555   if (GNUNET_SYSERR == client_start (plugin))
1556   {
1557       LIBGNUNET_PLUGIN_TRANSPORT_DONE (api);
1558       return NULL;
1559   }
1560   return api;
1561 }
1562
1563 /* end of plugin_transport_http_client.c */