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