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