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