eae422cc911c42b43da6b5fd005ef1f2df3d0817
[oweals/gnunet.git] / src / transport / plugin_transport_http.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.c
23  * @brief http transport service plugin
24  * @author Matthias Wachs
25  */
26
27 #include "platform.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_connection_lib.h"
31 #include "gnunet_service_lib.h"
32 #include "gnunet_statistics_service.h"
33 #include "gnunet_transport_service.h"
34 #include "gnunet_resolver_service.h"
35 #include "gnunet_server_lib.h"
36 #include "gnunet_container_lib.h"
37 #include "plugin_transport.h"
38 #include "gnunet_os_lib.h"
39 #include "microhttpd.h"
40 #include <curl/curl.h>
41
42
43 #define DEBUG_CURL GNUNET_NO
44 #define DEBUG_HTTP GNUNET_NO
45 #define DEBUG_CONNECTIONS GNUNET_YES
46
47 #define INBOUND GNUNET_NO
48 #define OUTBOUND GNUNET_YES
49
50 /**
51  * Text of the response sent back after the last bytes of a PUT
52  * request have been received (just to formally obey the HTTP
53  * protocol).
54  */
55 #define HTTP_PUT_RESPONSE "Thank you!"
56
57 /**
58  * After how long do we expire an address that we
59  * learned from another peer if it is not reconfirmed
60  * by anyone?
61  */
62 #define LEARNED_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
63
64 /**
65  * Page returned if request invalid
66  */
67 #define HTTP_ERROR_RESPONSE "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\"><HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD><BODY><H1>Not Found</H1>The requested URL was not found on this server.<P><HR><ADDRESS></ADDRESS></BODY></HTML>"
68
69 /**
70  * Timeout for a http connect
71  */
72 #define HTTP_CONNECT_TIMEOUT 30
73
74 /**
75  * Network format for IPv4 addresses.
76  */
77 struct IPv4HttpAddress
78 {
79   /**
80    * IPv4 address, in network byte order.
81    */
82   uint32_t ipv4_addr GNUNET_PACKED;
83
84   /**
85    * Port number, in network byte order.
86    */
87   uint16_t u_port GNUNET_PACKED;
88
89 };
90
91
92 /**
93  * Network format for IPv6 addresses.
94  */
95 struct IPv6HttpAddress
96 {
97   /**
98    * IPv6 address.
99    */
100   struct in6_addr ipv6_addr GNUNET_PACKED;
101
102   /**
103    * Port number, in network byte order.
104    */
105   uint16_t u6_port GNUNET_PACKED;
106
107 };
108
109
110 /**
111  *  Message to send using http
112  */
113 struct HTTP_Message
114 {
115   /**
116    * next pointer for double linked list
117    */
118   struct HTTP_Message * next;
119
120   /**
121    * previous pointer for double linked list
122    */
123   struct HTTP_Message * prev;
124
125   /**
126    * buffer containing data to send
127    */
128   char *buf;
129
130   /**
131    * amount of data already sent
132    */
133   size_t pos;
134
135   /**
136    * buffer length
137    */
138   size_t size;
139
140   /**
141    * Continuation function to call once the transmission buffer
142    * has again space available.  NULL if there is no
143    * continuation to call.
144    */
145   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
146
147   /**
148    * Closure for transmit_cont.
149    */
150   void *transmit_cont_cls;
151 };
152
153
154 struct HTTP_PeerContext
155 {
156   /**
157    * peer's identity
158    */
159   struct GNUNET_PeerIdentity identity;
160
161   /**
162    * Pointer to the global plugin struct.
163    */
164   struct Plugin *plugin;
165
166   /**
167    * Linked list of connections with this peer
168    * head
169    */
170   struct Session * head;
171
172   /**
173    * Linked list of connections with this peer
174    * tail
175    */
176   struct Session * tail;
177
178   /**
179    * id for next session
180    */
181   size_t session_id_counter;
182 };
183
184
185 struct Session
186 {
187   /**
188    * API requirement.
189    */
190   struct SessionHeader header;
191
192   /**
193    * next session in linked list
194    */
195   struct Session * next;
196
197   /**
198    * previous session in linked list
199    */
200   struct Session * prev;
201
202   /**
203    * address of this session
204    */
205   void * addr;
206
207   /**
208    * address length
209    */
210   size_t addrlen;
211
212   /**
213    * target url
214    */
215   char * url;
216
217   /**
218    * Message queue for outbound messages
219    * head of queue
220    */
221   struct HTTP_Message * pending_msgs_head;
222
223   /**
224    * Message queue for outbound messages
225    * tail of queue
226    */
227   struct HTTP_Message * pending_msgs_tail;
228
229   /**
230    * partner peer this connection belongs to
231    */
232   struct HTTP_PeerContext * peercontext;
233
234   /**
235    * message stream tokenizer for incoming data
236    */
237   struct GNUNET_SERVER_MessageStreamTokenizer *msgtok;
238
239   /**
240    * session direction
241    * outbound: OUTBOUND (GNUNET_YES)
242    * inbound : INBOUND (GNUNET_NO)
243    */
244   unsigned int direction;
245
246   /**
247    * is session connected to send data?
248    */
249   unsigned int send_connected;
250
251   /**
252    * is send connection active?
253    */
254   unsigned int send_active;
255
256   /**
257    * connection disconnect forced (e.g. from transport)
258    */
259   unsigned int send_force_disconnect;
260
261   /**
262    * is session connected to receive data?
263    */
264   unsigned int recv_connected;
265
266   /**
267    * is receive connection active?
268    */
269   unsigned int recv_active;
270
271   /**
272    * connection disconnect forced (e.g. from transport)
273    */
274   unsigned int recv_force_disconnect;
275
276   /**
277    * id for next session
278    * NOTE: 0 is not an ID, zero is not defined. A correct ID is always > 0
279    */
280   size_t session_id;
281
282   /**
283    * entity managing sending data
284    * outbound session: CURL *
285    * inbound session: mhd_connection *
286    */
287   void * send_endpoint;
288
289   /**
290    * entity managing recieving data
291    * outbound session: CURL *
292    * inbound session: mhd_connection *
293    */
294   void * recv_endpoint;
295 };
296
297 /**
298  * Encapsulation of all of the state of the plugin.
299  */
300 struct Plugin
301 {
302   /**
303    * Our environment.
304    */
305   struct GNUNET_TRANSPORT_PluginEnvironment *env;
306
307   unsigned int port_inbound;
308
309   struct GNUNET_CONTAINER_MultiHashMap *peers;
310
311   /**
312    * Daemon for listening for new IPv4 connections.
313    */
314   struct MHD_Daemon *http_server_daemon_v4;
315
316   /**
317    * Daemon for listening for new IPv6connections.
318    */
319   struct MHD_Daemon *http_server_daemon_v6;
320
321   /**
322    * Our primary task for http daemon handling IPv4 connections
323    */
324   GNUNET_SCHEDULER_TaskIdentifier http_server_task_v4;
325
326   /**
327    * Our primary task for http daemon handling IPv6 connections
328    */
329   GNUNET_SCHEDULER_TaskIdentifier http_server_task_v6;
330
331   /**
332    * The task sending data
333    */
334   GNUNET_SCHEDULER_TaskIdentifier http_server_task_send;
335
336   /**
337    * cURL Multihandle
338    */
339   CURLM * multi_handle;
340
341   /**
342    * Our ASCII encoded, hashed peer identity
343    * This string is used to distinguish between connections and is added to the urls
344    */
345   struct GNUNET_CRYPTO_HashAsciiEncoded my_ascii_hash_ident;
346 };
347
348
349 /**
350  * Function called for a quick conversion of the binary address to
351  * a numeric address.  Note that the caller must not free the
352  * address and that the next call to this function is allowed
353  * to override the address again.
354  *
355  * @param cls closure
356  * @param addr binary address
357  * @param addrlen length of the address
358  * @return string representing the same address
359  */
360 static const char*
361 http_plugin_address_to_string (void *cls,
362                                    const void *addr,
363                                    size_t addrlen);
364
365 static char * create_url(void * cls, const void * addr, size_t addrlen, size_t id)
366 {
367   struct Plugin *plugin = cls;
368   char *url = NULL;
369
370   GNUNET_assert ((addr!=NULL) && (addrlen != 0));
371   GNUNET_asprintf(&url,
372                   "http://%s/%s;%u",
373                   http_plugin_address_to_string(NULL, addr, addrlen),
374                   (char *) (&plugin->my_ascii_hash_ident),id);
375
376   return url;
377 }
378
379 /**
380  * Removes a message from the linked list of messages
381  * @param con connection to remove message from
382  * @param msg message to remove
383  * @return GNUNET_SYSERR if msg not found, GNUNET_OK on success
384  */
385 static int remove_http_message (struct Session * ps, struct HTTP_Message * msg)
386 {
387   GNUNET_CONTAINER_DLL_remove(ps->pending_msgs_head,ps->pending_msgs_tail,msg);
388   GNUNET_free(msg);
389   return GNUNET_OK;
390 }
391
392 /**
393  * Removes a session from the linked list of sessions
394  * @param pc peer context
395  * @param ps session
396  * @param call_msg_cont GNUNET_YES to call pending message continuations, otherwise no
397  * @param call_msg_cont_result, result to call message continuations with
398  * @return GNUNET_SYSERR if msg not found, GNUNET_OK on success
399  */
400 static int remove_session (struct HTTP_PeerContext * pc, struct Session * ps,  int call_msg_cont, int call_msg_cont_result)
401 {
402   struct HTTP_Message * msg;
403   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: removing %s session with id %u\n", ps, (ps->direction == INBOUND) ? "inbound" : "outbound",ps->session_id);
404   GNUNET_free_non_null (ps->addr);
405   GNUNET_SERVER_mst_destroy (ps->msgtok);
406   GNUNET_free(ps->url);
407
408   msg = ps->pending_msgs_head;
409   while (msg!=NULL)
410   {
411     if ((call_msg_cont == GNUNET_YES) && (msg->transmit_cont!=NULL))
412     {
413       msg->transmit_cont (msg->transmit_cont_cls,&pc->identity,call_msg_cont_result);
414     }
415     GNUNET_free(msg);
416     GNUNET_CONTAINER_DLL_remove(ps->pending_msgs_head,ps->pending_msgs_head,msg);
417   }
418
419   GNUNET_CONTAINER_DLL_remove(pc->head,pc->tail,ps);
420   GNUNET_free(ps);
421   ps = NULL;
422   return GNUNET_OK;
423 }
424
425 static struct Session * get_Session (void * cls, struct HTTP_PeerContext *pc, const void * addr, size_t addr_len)
426 {
427   struct Session * cc = pc->head;
428   struct Session * con = NULL;
429   unsigned int count = 0;
430
431   GNUNET_assert((addr_len == sizeof (struct IPv4HttpAddress)) || (addr_len == sizeof (struct IPv6HttpAddress)));
432   while (cc!=NULL)
433   {
434     if (addr_len == cc->addrlen)
435     {
436       if (0 == memcmp(cc->addr, addr, addr_len))
437       {
438         /* connection can not be used, since it is disconnected */
439         if ((cc->recv_force_disconnect==GNUNET_NO) && (cc->send_force_disconnect==GNUNET_NO))
440           con = cc;
441         break;
442       }
443     }
444     count++;
445     cc=cc->next;
446   }
447   return con;
448 }
449
450
451 /**
452  * Callback called by MHD when a connection is terminated
453  */
454 static void mhd_termination_cb (void *cls, struct MHD_Connection * connection, void **httpSessionCache)
455 {
456   struct Session * ps = *httpSessionCache;
457   if (ps == NULL)
458     return;
459   struct HTTP_PeerContext * pc = ps->peercontext;
460
461   if (connection==ps->recv_endpoint)
462   {
463 #if DEBUG_CONNECTIONS
464     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: inbound connection from peer `%s' was terminated\n", ps, GNUNET_i2s(&pc->identity));
465 #endif
466     ps->recv_active = GNUNET_NO;
467     ps->recv_connected = GNUNET_NO;
468     ps->recv_endpoint = NULL;
469   }
470   if (connection==ps->send_endpoint)
471   {
472
473     ps->send_active = GNUNET_NO;
474     ps->send_connected = GNUNET_NO;
475     ps->send_endpoint = NULL;
476 #if DEBUG_CONNECTIONS
477     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: outbound connection from peer `%s' was terminated\n", ps, GNUNET_i2s(&pc->identity));
478 #endif
479   }
480
481   /* if both connections disconnected, remove session */
482   if ((ps->send_connected == GNUNET_NO) && (ps->recv_connected == GNUNET_NO))
483   {
484     remove_session(pc,ps,GNUNET_YES,GNUNET_SYSERR);
485   }
486 }
487
488 static void mhd_write_mst_cb (void *cls,
489                               void *client,
490                               const struct GNUNET_MessageHeader *message)
491 {
492
493   struct Session *ps  = cls;
494   struct HTTP_PeerContext *pc = ps->peercontext;
495   GNUNET_assert(ps != NULL);
496   GNUNET_assert(pc != NULL);
497
498   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
499               "Connection %X: Forwarding message to transport service, type %u and size %u from `%s' (`%s')\n",
500               ps,
501               ntohs(message->type),
502               ntohs(message->size),
503               GNUNET_i2s(&(ps->peercontext)->identity),http_plugin_address_to_string(NULL,ps->addr,ps->addrlen));
504
505   pc->plugin->env->receive (ps->peercontext->plugin->env->cls,
506                             &pc->identity,
507                             message, 1, ps,
508                             ps->addr,
509                             ps->addrlen);
510 }
511
512 static void curl_receive_mst_cb  (void *cls,
513                                 void *client,
514                                 const struct GNUNET_MessageHeader *message)
515 {
516   struct Session *ps  = cls;
517   struct HTTP_PeerContext *pc = ps->peercontext;
518   GNUNET_assert(ps != NULL);
519   GNUNET_assert(pc != NULL);
520
521   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
522               "Forwarding message to transport service, type %u and size %u from `%s' (`%s')\n",
523               ntohs(message->type),
524               ntohs(message->size),
525               GNUNET_i2s(&(pc->identity)),http_plugin_address_to_string(NULL,ps->addr,ps->addrlen));
526
527   pc->plugin->env->receive (pc->plugin->env->cls,
528                             &pc->identity,
529                             message, 1, ps,
530                             ps->addr,
531                             ps->addrlen);
532 }
533
534
535 /**
536  * Check if ip is allowed to connect.
537  */
538 static int
539 mhd_accept_cb (void *cls,
540                       const struct sockaddr *addr, socklen_t addr_len)
541 {
542 #if 0
543   struct Plugin *plugin = cls;
544 #endif
545   /* Every connection is accepted, nothing more to do here */
546   return MHD_YES;
547 }
548
549 int mhd_send_callback (void *cls, uint64_t pos, char *buf, int max)
550 {
551   int bytes_read = 0;
552
553   struct Session * ps = cls;
554   struct HTTP_PeerContext * pc;
555   struct HTTP_Message * msg;
556   int res;res=5;
557
558   GNUNET_assert (ps!=NULL);
559   pc = ps->peercontext;
560   msg = ps->pending_msgs_tail;
561   if (ps->send_force_disconnect==GNUNET_YES)
562   {
563 #if DEBUG_CONNECTIONS
564     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: outbound forced to disconnect\n",ps);
565 #endif
566     return -1;
567   }
568
569   if (msg!=NULL)
570   {
571     if ((msg->size-msg->pos) <= max)
572     {
573       memcpy(buf,&msg->buf[msg->pos],(msg->size-msg->pos));
574       bytes_read = msg->size-msg->pos;
575       msg->pos+=(msg->size-msg->pos);
576     }
577     else
578     {
579       memcpy(buf,&msg->buf[msg->pos],max);
580       msg->pos+=max;
581       bytes_read = max;
582     }
583
584     if (msg->pos==msg->size)
585     {
586       if (NULL!=msg->transmit_cont)
587         msg->transmit_cont (msg->transmit_cont_cls,&pc->identity,GNUNET_OK);
588       res = remove_http_message(ps,msg);
589     }
590   }
591   return bytes_read;
592 }
593
594 /**
595  * Process GET or PUT request received via MHD.  For
596  * GET, queue response that will send back our pending
597  * messages.  For PUT, process incoming data and send
598  * to GNUnet core.  In either case, check if a session
599  * already exists and create a new one if not.
600  */
601 static int
602 mdh_access_cb (void *cls,
603                        struct MHD_Connection *mhd_connection,
604                        const char *url,
605                        const char *method,
606                        const char *version,
607                        const char *upload_data,
608                        size_t * upload_data_size, void **httpSessionCache)
609 {
610   struct Plugin *plugin = cls;
611   struct MHD_Response *response;
612   const union MHD_ConnectionInfo * conn_info;
613
614   struct sockaddr_in  *addrin;
615   struct sockaddr_in6 *addrin6;
616
617   char address[INET6_ADDRSTRLEN+14];
618   struct GNUNET_PeerIdentity pi_in;
619   size_t id_num = 0;
620
621   struct IPv4HttpAddress ipv4addr;
622   struct IPv6HttpAddress ipv6addr;
623
624   struct HTTP_PeerContext *pc;
625   struct Session *ps;
626   struct Session *ps_tmp;
627
628   int res = GNUNET_NO;
629   int send_error_to_client;
630   void * addr;
631   size_t addr_len;
632
633   GNUNET_assert(cls !=NULL);
634   send_error_to_client = GNUNET_NO;
635
636   if (NULL == *httpSessionCache)
637   {
638     /* check url for peer identity , if invalid send HTTP 404*/
639     size_t len = strlen(&url[1]);
640     char * peer = GNUNET_malloc(104+1);
641
642     if ((len>104) && (url[104]==';'))
643     {
644         char * id = GNUNET_malloc((len-104)+1);
645         strcpy(id,&url[105]);
646         memcpy(peer,&url[1],103);
647         peer[103] = '\0';
648         id_num = strtoul ( id, NULL , 10);
649         GNUNET_free(id);
650     }
651     res = GNUNET_CRYPTO_hash_from_string (peer, &(pi_in.hashPubKey));
652     GNUNET_free(peer);
653     if ( GNUNET_SYSERR == res )
654     {
655       response = MHD_create_response_from_data (strlen (HTTP_ERROR_RESPONSE),HTTP_ERROR_RESPONSE, MHD_NO, MHD_NO);
656       res = MHD_queue_response (mhd_connection, MHD_HTTP_NOT_FOUND, response);
657       MHD_destroy_response (response);
658       if (res == MHD_YES)
659         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Peer has no valid ident, sent HTTP 1.1/404\n");
660       else
661         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Peer has no valid ident, could not send error\n");
662       return res;
663     }
664   }
665   else
666   {
667     ps = *httpSessionCache;
668     pc = ps->peercontext;
669   }
670
671   if (NULL == *httpSessionCache)
672   {
673     /* get peer context */
674     pc = GNUNET_CONTAINER_multihashmap_get (plugin->peers, &pi_in.hashPubKey);
675     /* Peer unknown */
676     if (pc==NULL)
677     {
678       pc = GNUNET_malloc(sizeof (struct HTTP_PeerContext));
679       pc->plugin = plugin;
680       pc->session_id_counter=1;
681       memcpy(&pc->identity, &pi_in, sizeof(struct GNUNET_PeerIdentity));
682       GNUNET_CONTAINER_multihashmap_put(plugin->peers, &pc->identity.hashPubKey, pc, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
683     }
684
685     conn_info = MHD_get_connection_info(mhd_connection, MHD_CONNECTION_INFO_CLIENT_ADDRESS );
686     /* Incoming IPv4 connection */
687     if ( AF_INET == conn_info->client_addr->sin_family)
688     {
689       addrin = conn_info->client_addr;
690       inet_ntop(addrin->sin_family, &(addrin->sin_addr),address,INET_ADDRSTRLEN);
691       memcpy(&ipv4addr.ipv4_addr,&(addrin->sin_addr),sizeof(struct in_addr));
692       ipv4addr.u_port = addrin->sin_port;
693       addr = &ipv4addr;
694       addr_len = sizeof(struct IPv4HttpAddress);
695     }
696     /* Incoming IPv6 connection */
697     if ( AF_INET6 == conn_info->client_addr->sin_family)
698     {
699       addrin6 = (struct sockaddr_in6 *) conn_info->client_addr;
700       inet_ntop(addrin6->sin6_family, &(addrin6->sin6_addr),address,INET6_ADDRSTRLEN);
701       memcpy(&ipv6addr.ipv6_addr,&(addrin6->sin6_addr),sizeof(struct in6_addr));
702       ipv6addr.u6_port = addrin6->sin6_port;
703       addr = &ipv6addr;
704       addr_len = sizeof(struct IPv6HttpAddress);
705     }
706
707
708     //ps = get_Session(plugin, pc, addr, addr_len);
709     ps = NULL;
710     /* only inbound sessions here */
711
712     ps_tmp = pc->head;
713     while (ps_tmp!=NULL)
714     {
715       if ((ps_tmp->direction==INBOUND) && (ps_tmp->session_id == id_num) && (id_num!=0))
716       {
717         if ((ps_tmp->recv_force_disconnect!=GNUNET_YES) && (ps_tmp->send_force_disconnect!=GNUNET_YES))
718         ps=ps_tmp;
719         break;
720       }
721       ps_tmp=ps_tmp->next;
722     }
723
724     if (ps==NULL)
725     {
726       ps = GNUNET_malloc(sizeof (struct Session));
727       ps->addr = GNUNET_malloc(addr_len);
728       memcpy(ps->addr,addr,addr_len);
729       ps->addrlen = addr_len;
730       ps->direction=INBOUND;
731       ps->pending_msgs_head = NULL;
732       ps->pending_msgs_tail = NULL;
733       ps->send_connected=GNUNET_NO;
734       ps->send_active=GNUNET_NO;
735       ps->recv_connected=GNUNET_NO;
736       ps->recv_active=GNUNET_NO;
737       ps->peercontext=pc;
738       ps->session_id =id_num;
739       ps->url = create_url (plugin, ps->addr, ps->addrlen, ps->session_id);
740       GNUNET_CONTAINER_DLL_insert(pc->head,pc->tail,ps);
741     }
742
743     *httpSessionCache = ps;
744     if (ps->msgtok==NULL)
745       ps->msgtok = GNUNET_SERVER_mst_create (&mhd_write_mst_cb, ps);
746
747     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: HTTP Daemon has new an incoming `%s' request from peer `%s' (`%s')\n",
748                 ps,
749                 method,
750                 GNUNET_i2s(&pc->identity),
751                 http_plugin_address_to_string(NULL, ps->addr, ps->addrlen));
752   }
753
754   /* Is it a PUT or a GET request */
755   if (0 == strcmp (MHD_HTTP_METHOD_PUT, method))
756   {
757     if (ps->recv_force_disconnect)
758     {
759 #if DEBUG_CONNECTIONS
760       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: inbound connection was forced to disconnect\n",ps);
761 #endif
762       ps->recv_active = GNUNET_NO;
763       return MHD_NO;
764     }
765     if ((*upload_data_size == 0) && (ps->recv_active==GNUNET_NO))
766     {
767       ps->recv_endpoint = mhd_connection;
768       ps->recv_connected = GNUNET_YES;
769       ps->recv_active = GNUNET_YES;
770 #if DEBUG_CONNECTIONS
771       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: inbound PUT connection connected\n",ps);
772 #endif
773       return MHD_YES;
774     }
775
776     /* Transmission of all data complete */
777     if ((*upload_data_size == 0) && (ps->recv_active == GNUNET_YES))
778     {
779       response = MHD_create_response_from_data (strlen (HTTP_PUT_RESPONSE),HTTP_PUT_RESPONSE, MHD_NO, MHD_NO);
780       res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
781 #if DEBUG_CONNECTIONS
782       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: Sent HTTP/1.1: 200 OK as PUT Response\n",ps);
783 #endif
784       MHD_destroy_response (response);
785       ps->recv_active=GNUNET_NO;
786       return MHD_YES;
787     }
788
789     /* Recieving data */
790     if ((*upload_data_size > 0) && (ps->recv_active == GNUNET_YES))
791     {
792       res = GNUNET_SERVER_mst_receive(ps->msgtok, ps, upload_data,*upload_data_size, GNUNET_NO, GNUNET_NO);
793       (*upload_data_size) = 0;
794       return MHD_YES;
795     }
796     else
797       return MHD_NO;
798   }
799   if ( 0 == strcmp (MHD_HTTP_METHOD_GET, method) )
800   {
801     if (ps->send_force_disconnect)
802     {
803 #if DEBUG_CONNECTIONS
804       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: outbound connection was  forced to disconnect\n",ps);
805 #endif
806       ps->send_active = GNUNET_NO;
807       return MHD_NO;
808     }
809     ps->send_connected = GNUNET_YES;
810     ps->send_active = GNUNET_YES;
811     ps->send_endpoint = mhd_connection;
812 #if DEBUG_CONNECTIONS
813       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: inbound GET connection connected\n",ps);
814 #endif
815     response = MHD_create_response_from_callback(-1,32 * 1024, &mhd_send_callback, ps, NULL);
816     res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
817     MHD_destroy_response (response);
818     return MHD_YES;
819   }
820   return MHD_NO;
821 }
822
823
824 /**
825  * Call MHD to process pending ipv4 requests and then go back
826  * and schedule the next run.
827  */
828 static void http_server_daemon_v4_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
829 /**
830  * Call MHD to process pending ipv6 requests and then go back
831  * and schedule the next run.
832  */
833 static void http_server_daemon_v6_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
834
835 /**
836  * Function that queries MHD's select sets and
837  * starts the task waiting for them.
838  */
839 static GNUNET_SCHEDULER_TaskIdentifier
840 http_server_daemon_prepare (void * cls, struct MHD_Daemon *daemon_handle)
841 {
842   struct Plugin *plugin = cls;
843   GNUNET_SCHEDULER_TaskIdentifier ret;
844   fd_set rs;
845   fd_set ws;
846   fd_set es;
847   struct GNUNET_NETWORK_FDSet *wrs;
848   struct GNUNET_NETWORK_FDSet *wws;
849   struct GNUNET_NETWORK_FDSet *wes;
850   int max;
851   unsigned long long timeout;
852   int haveto;
853   struct GNUNET_TIME_Relative tv;
854
855   GNUNET_assert(cls !=NULL);
856   ret = GNUNET_SCHEDULER_NO_TASK;
857   FD_ZERO(&rs);
858   FD_ZERO(&ws);
859   FD_ZERO(&es);
860   wrs = GNUNET_NETWORK_fdset_create ();
861   wes = GNUNET_NETWORK_fdset_create ();
862   wws = GNUNET_NETWORK_fdset_create ();
863   max = -1;
864   GNUNET_assert (MHD_YES ==
865                  MHD_get_fdset (daemon_handle,
866                                 &rs,
867                                 &ws,
868                                 &es,
869                                 &max));
870   haveto = MHD_get_timeout (daemon_handle, &timeout);
871   if (haveto == MHD_YES)
872     tv.value = (uint64_t) timeout;
873   else
874     tv = GNUNET_TIME_UNIT_FOREVER_REL;
875   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max);
876   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max);
877   GNUNET_NETWORK_fdset_copy_native (wes, &es, max);
878   if (daemon_handle == plugin->http_server_daemon_v4)
879   {
880     ret = GNUNET_SCHEDULER_add_select (plugin->env->sched,
881                                        GNUNET_SCHEDULER_PRIORITY_DEFAULT,
882                                        GNUNET_SCHEDULER_NO_TASK,
883                                        tv,
884                                        wrs,
885                                        wws,
886                                        &http_server_daemon_v4_run,
887                                        plugin);
888   }
889   if (daemon_handle == plugin->http_server_daemon_v6)
890   {
891     ret = GNUNET_SCHEDULER_add_select (plugin->env->sched,
892                                        GNUNET_SCHEDULER_PRIORITY_DEFAULT,
893                                        GNUNET_SCHEDULER_NO_TASK,
894                                        tv,
895                                        wrs,
896                                        wws,
897                                        &http_server_daemon_v6_run,
898                                        plugin);
899   }
900   GNUNET_NETWORK_fdset_destroy (wrs);
901   GNUNET_NETWORK_fdset_destroy (wws);
902   GNUNET_NETWORK_fdset_destroy (wes);
903   return ret;
904 }
905
906 /**
907  * Call MHD to process pending requests and then go back
908  * and schedule the next run.
909  */
910 static void http_server_daemon_v4_run (void *cls,
911                              const struct GNUNET_SCHEDULER_TaskContext *tc)
912 {
913   struct Plugin *plugin = cls;
914
915   GNUNET_assert(cls !=NULL);
916   if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
917     plugin->http_server_task_v4 = GNUNET_SCHEDULER_NO_TASK;
918
919   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
920     return;
921
922   GNUNET_assert (MHD_YES == MHD_run (plugin->http_server_daemon_v4));
923   plugin->http_server_task_v4 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v4);
924   return;
925 }
926
927
928 /**
929  * Call MHD to process pending requests and then go back
930  * and schedule the next run.
931  */
932 static void http_server_daemon_v6_run (void *cls,
933                              const struct GNUNET_SCHEDULER_TaskContext *tc)
934 {
935   struct Plugin *plugin = cls;
936
937   GNUNET_assert(cls !=NULL);
938   if (plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK)
939     plugin->http_server_task_v6 = GNUNET_SCHEDULER_NO_TASK;
940
941   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
942     return;
943
944   GNUNET_assert (MHD_YES == MHD_run (plugin->http_server_daemon_v6));
945   plugin->http_server_task_v6 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v6);
946   return;
947 }
948
949 /**
950  * Function setting up curl handle and selecting message to send
951  * @param cls plugin
952  * @param ses session to send data to
953  * @param con connection
954  * @return bytes sent to peer
955  */
956 static ssize_t send_check_connections (void *cls, struct Session *ps);
957
958 static size_t curl_get_header_function( void *ptr, size_t size, size_t nmemb, void *stream)
959 {
960   struct Session * ps = stream;
961
962   char * tmp;
963   size_t len = size * nmemb;
964   long http_result = 0;
965   int res;
966   /* Getting last http result code */
967   if (ps->recv_connected==GNUNET_NO)
968   {
969     GNUNET_assert(NULL!=ps);
970     res = curl_easy_getinfo(ps->recv_endpoint, CURLINFO_RESPONSE_CODE, &http_result);
971     if (CURLE_OK == res)
972     {
973       if (http_result == 200)
974       {
975         ps->recv_connected = GNUNET_YES;
976         ps->recv_active = GNUNET_YES;
977 #if DEBUG_CONNECTIONS
978         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: connected to recieve data\n",ps);
979 #endif
980         // Calling send_check_connections again since receive is established
981         send_check_connections (ps->peercontext->plugin, ps);
982       }
983     }
984   }
985
986   tmp = NULL;
987   if ((size * nmemb) < SIZE_MAX)
988     tmp = GNUNET_malloc (len+1);
989
990   if ((tmp != NULL) && (len > 0))
991   {
992     memcpy(tmp,ptr,len);
993     if (len>=2)
994     {
995       if (tmp[len-2] == 13)
996         tmp[len-2]= '\0';
997     }
998 #if DEBUG_HTTP
999     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Header: `%s' %u \n",tmp, http_result);
1000 #endif
1001   }
1002   if (NULL != tmp)
1003     GNUNET_free (tmp);
1004
1005   return size * nmemb;
1006 }
1007
1008 static size_t curl_put_header_function( void *ptr, size_t size, size_t nmemb, void *stream)
1009 {
1010   struct Session * ps = stream;
1011
1012   char * tmp;
1013   size_t len = size * nmemb;
1014   long http_result = 0;
1015   int res;
1016
1017   /* Getting last http result code */
1018   GNUNET_assert(NULL!=ps);
1019   res = curl_easy_getinfo(ps->send_endpoint, CURLINFO_RESPONSE_CODE, &http_result);
1020   if (CURLE_OK == res)
1021   {
1022     if ((http_result == 100) && (ps->send_connected==GNUNET_NO))
1023     {
1024       ps->send_connected = GNUNET_YES;
1025       ps->send_active = GNUNET_YES;
1026 #if DEBUG_CONNECTIONS
1027       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: connected to send data\n",ps);
1028 #endif
1029     }
1030     if ((http_result == 200) && (ps->send_connected==GNUNET_YES))
1031     {
1032       ps->send_connected = GNUNET_NO;
1033       ps->send_active = GNUNET_NO;
1034 #if DEBUG_CONNECTIONS
1035       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: sending disconnected\n",ps);
1036 #endif
1037     }
1038   }
1039
1040   tmp = NULL;
1041   if ((size * nmemb) < SIZE_MAX)
1042     tmp = GNUNET_malloc (len+1);
1043
1044   if ((tmp != NULL) && (len > 0))
1045   {
1046     memcpy(tmp,ptr,len);
1047     if (len>=2)
1048     {
1049       if (tmp[len-2] == 13)
1050         tmp[len-2]= '\0';
1051     }
1052 #if DEBUG_HTTP
1053     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Header: `%s' %u \n",tmp, http_result);
1054 #endif
1055   }
1056   if (NULL != tmp)
1057     GNUNET_free (tmp);
1058
1059   return size * nmemb;
1060 }
1061
1062 /**
1063  * Callback method used with libcurl
1064  * Method is called when libcurl needs to read data during sending
1065  * @param stream pointer where to write data
1066  * @param size size of an individual element
1067  * @param nmemb count of elements that can be written to the buffer
1068  * @param ptr source pointer, passed to the libcurl handle
1069  * @return bytes written to stream
1070  */
1071 static size_t curl_send_cb(void *stream, size_t size, size_t nmemb, void *ptr)
1072 {
1073   struct Session * ps = ptr;
1074   struct HTTP_Message * msg = ps->pending_msgs_tail;
1075   size_t bytes_sent;
1076   size_t len;
1077
1078   if (ps->pending_msgs_tail == NULL)
1079   {
1080 #if DEBUG_CONNECTIONS
1081     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: No Message to send, pausing connection\n",ps);
1082 #endif
1083     ps->send_active = GNUNET_NO;
1084     return CURL_READFUNC_PAUSE;
1085   }
1086
1087   msg = ps->pending_msgs_tail;
1088   /* data to send */
1089   if (msg->pos < msg->size)
1090   {
1091     /* data fit in buffer */
1092     if ((msg->size - msg->pos) <= (size * nmemb))
1093     {
1094       len = (msg->size - msg->pos);
1095       memcpy(stream, &msg->buf[msg->pos], len);
1096       msg->pos += len;
1097       bytes_sent = len;
1098     }
1099     else
1100     {
1101       len = size*nmemb;
1102       memcpy(stream, &msg->buf[msg->pos], len);
1103       msg->pos += len;
1104       bytes_sent = len;
1105     }
1106   }
1107   /* no data to send */
1108   else
1109   {
1110     bytes_sent = 0;
1111   }
1112
1113   if ( msg->pos == msg->size)
1114   {
1115 #if DEBUG_CONNECTIONS
1116     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: Message with %u bytes sent, removing message from queue \n",ps, msg->pos);
1117 #endif
1118     /* Calling transmit continuation  */
1119     if (( NULL != ps->pending_msgs_tail) && (NULL != ps->pending_msgs_tail->transmit_cont))
1120       msg->transmit_cont (ps->pending_msgs_tail->transmit_cont_cls,&(ps->peercontext)->identity,GNUNET_OK);
1121     remove_http_message(ps, msg);
1122   }
1123   return bytes_sent;
1124 }
1125
1126 /**
1127 * Callback method used with libcurl
1128 * Method is called when libcurl needs to write data during sending
1129 * @param stream pointer where to write data
1130 * @param size size of an individual element
1131 * @param nmemb count of elements that can be written to the buffer
1132 * @param ptr destination pointer, passed to the libcurl handle
1133 * @return bytes read from stream
1134 */
1135 static size_t curl_receive_cb( void *stream, size_t size, size_t nmemb, void *ptr)
1136 {
1137   struct Session * ps = ptr;
1138 #if DEBUG_CONNECTIONS
1139   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: %u bytes received\n",ps, size*nmemb);
1140 #endif
1141   GNUNET_SERVER_mst_receive(ps->msgtok, ps, stream, size*nmemb, GNUNET_NO, GNUNET_NO);
1142   return (size * nmemb);
1143
1144 }
1145
1146 /**
1147  * Function setting up file descriptors and scheduling task to run
1148  * @param cls closure
1149  * @param ses session to send data to
1150  * @return bytes sent to peer
1151  */
1152 static size_t send_schedule(void *cls, struct Session* ses );
1153
1154
1155
1156 /**
1157  * Function setting up curl handle and selecting message to send
1158  * @param cls plugin
1159  * @param ses session to send data to
1160  * @param con connection
1161  * @return bytes sent to peer
1162  */
1163 static ssize_t send_check_connections (void *cls, struct Session *ps)
1164 {
1165   struct Plugin *plugin = cls;
1166   int bytes_sent = 0;
1167   CURLMcode mret;
1168   struct HTTP_Message * msg;
1169   struct GNUNET_TIME_Relative timeout = GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT;
1170
1171   GNUNET_assert(cls !=NULL);
1172
1173   if (ps->direction == OUTBOUND)
1174   {
1175     /* RECV DIRECTION */
1176     /* Check if session is connected to receive data, otherwise connect to peer */
1177     if (ps->recv_connected == GNUNET_NO)
1178     {
1179         if (ps->recv_endpoint == NULL)
1180         {
1181           ps->recv_endpoint = curl_easy_init();
1182 #if DEBUG_CURL
1183         curl_easy_setopt(ps->recv_endpoint, CURLOPT_VERBOSE, 1L);
1184 #endif
1185         curl_easy_setopt(ps->recv_endpoint, CURLOPT_URL, ps->url);
1186         curl_easy_setopt(ps->recv_endpoint, CURLOPT_HEADERFUNCTION, &curl_get_header_function);
1187         curl_easy_setopt(ps->recv_endpoint, CURLOPT_WRITEHEADER, ps);
1188         curl_easy_setopt(ps->recv_endpoint, CURLOPT_READFUNCTION, curl_send_cb);
1189         curl_easy_setopt(ps->recv_endpoint, CURLOPT_READDATA, ps);
1190         curl_easy_setopt(ps->recv_endpoint, CURLOPT_WRITEFUNCTION, curl_receive_cb);
1191         curl_easy_setopt(ps->recv_endpoint, CURLOPT_WRITEDATA, ps);
1192         curl_easy_setopt(ps->recv_endpoint, CURLOPT_TIMEOUT, (long) timeout.value);
1193         curl_easy_setopt(ps->recv_endpoint, CURLOPT_PRIVATE, ps);
1194         curl_easy_setopt(ps->recv_endpoint, CURLOPT_CONNECTTIMEOUT, HTTP_CONNECT_TIMEOUT);
1195         curl_easy_setopt(ps->recv_endpoint, CURLOPT_BUFFERSIZE, GNUNET_SERVER_MAX_MESSAGE_SIZE);
1196
1197         mret = curl_multi_add_handle(plugin->multi_handle, ps->recv_endpoint);
1198         if (mret != CURLM_OK)
1199         {
1200           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1201                       _("%s failed at %s:%d: `%s'\n"),
1202                       "curl_multi_add_handle", __FILE__, __LINE__,
1203                       curl_multi_strerror (mret));
1204           return -1;
1205         }
1206         bytes_sent = send_schedule (plugin, NULL);
1207 #if DEBUG_CONNECTIONS
1208         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: inbound not connected, initiating connection\n",ps);
1209 #endif
1210       }
1211     }
1212
1213     /* waiting for receive direction */
1214     if (ps->recv_connected==GNUNET_NO)
1215       return 0;
1216
1217     /* SEND DIRECTION */
1218     /* Check if session is connected to send data, otherwise connect to peer */
1219     if ((ps->send_connected == GNUNET_YES) && (ps->send_endpoint!= NULL))
1220     {
1221       if (ps->send_active == GNUNET_YES)
1222       {
1223 #if DEBUG_CONNECTIONS
1224         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: outbound active, enqueueing message\n",ps);
1225 #endif
1226         return bytes_sent;
1227       }
1228       if (ps->send_active == GNUNET_NO)
1229       {
1230 #if DEBUG_CONNECTIONS
1231         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: outbound paused, unpausing existing connection and enqueueing message\n",ps);
1232 #endif
1233         curl_easy_pause(ps->send_endpoint,CURLPAUSE_CONT);
1234         ps->send_active=GNUNET_YES;
1235         return bytes_sent;
1236       }
1237     }
1238     /* not connected, initiate connection */
1239     if ((ps->send_connected==GNUNET_NO) && (NULL == ps->send_endpoint))
1240       ps->send_endpoint = curl_easy_init();
1241     GNUNET_assert (ps->send_endpoint != NULL);
1242     GNUNET_assert (NULL != ps->pending_msgs_tail);
1243 #if DEBUG_CONNECTIONS
1244     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection %X: outbound not connected, initiating connection\n",ps);
1245 #endif
1246     ps->send_active = GNUNET_NO;
1247     msg = ps->pending_msgs_tail;
1248
1249   #if DEBUG_CURL
1250     curl_easy_setopt(ps->send_endpoint, CURLOPT_VERBOSE, 1L);
1251   #endif
1252     curl_easy_setopt(ps->send_endpoint, CURLOPT_URL, ps->url);
1253     curl_easy_setopt(ps->send_endpoint, CURLOPT_PUT, 1L);
1254     curl_easy_setopt(ps->send_endpoint, CURLOPT_HEADERFUNCTION, &curl_put_header_function);
1255     curl_easy_setopt(ps->send_endpoint, CURLOPT_WRITEHEADER, ps);
1256     curl_easy_setopt(ps->send_endpoint, CURLOPT_READFUNCTION, curl_send_cb);
1257     curl_easy_setopt(ps->send_endpoint, CURLOPT_READDATA, ps);
1258     curl_easy_setopt(ps->send_endpoint, CURLOPT_WRITEFUNCTION, curl_receive_cb);
1259     curl_easy_setopt(ps->send_endpoint, CURLOPT_READDATA, ps);
1260     curl_easy_setopt(ps->send_endpoint, CURLOPT_TIMEOUT, (long) timeout.value);
1261     curl_easy_setopt(ps->send_endpoint, CURLOPT_PRIVATE, ps);
1262     curl_easy_setopt(ps->send_endpoint, CURLOPT_CONNECTTIMEOUT, HTTP_CONNECT_TIMEOUT);
1263     curl_easy_setopt(ps->send_endpoint, CURLOPT_BUFFERSIZE, GNUNET_SERVER_MAX_MESSAGE_SIZE);
1264
1265     mret = curl_multi_add_handle(plugin->multi_handle, ps->send_endpoint);
1266     if (mret != CURLM_OK)
1267     {
1268       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1269                   _("%s failed at %s:%d: `%s'\n"),
1270                   "curl_multi_add_handle", __FILE__, __LINE__,
1271                   curl_multi_strerror (mret));
1272       return -1;
1273     }
1274     bytes_sent = send_schedule (plugin, NULL);
1275     return bytes_sent;
1276   }
1277   if (ps->direction == INBOUND)
1278   {
1279     GNUNET_assert (NULL != ps->pending_msgs_tail);
1280     bytes_sent = 0;
1281     msg = ps->pending_msgs_tail;
1282     if ((ps->recv_connected==GNUNET_YES) && (ps->send_connected==GNUNET_YES))
1283         bytes_sent = msg->size;
1284     return bytes_sent;
1285   }
1286   return 0;
1287 }
1288
1289 static void send_execute (void *cls,
1290              const struct GNUNET_SCHEDULER_TaskContext *tc)
1291 {
1292   struct Plugin *plugin = cls;
1293   static unsigned int handles_last_run;
1294   int running;
1295   struct CURLMsg *msg;
1296   CURLMcode mret;
1297   struct Session *ps = NULL;
1298   struct HTTP_PeerContext *pc = NULL;
1299   struct HTTP_Message * cur_msg = NULL;
1300   long http_result;
1301
1302   GNUNET_assert(cls !=NULL);
1303   plugin->http_server_task_send = GNUNET_SCHEDULER_NO_TASK;
1304   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1305     return;
1306
1307   do
1308     {
1309       running = 0;
1310       mret = curl_multi_perform (plugin->multi_handle, &running);
1311       if (running < handles_last_run)
1312         {
1313           do
1314             {
1315
1316               msg = curl_multi_info_read (plugin->multi_handle, &running);
1317               if (msg == NULL)
1318                 break;
1319               /* get session for affected curl handle */
1320               GNUNET_assert ( msg->easy_handle != NULL );
1321               curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char *) &ps);
1322               GNUNET_assert ( ps != NULL );
1323               pc = ps->peercontext;
1324               GNUNET_assert ( pc != NULL );
1325               switch (msg->msg)
1326                 {
1327
1328                 case CURLMSG_DONE:
1329                   if ( (msg->data.result != CURLE_OK) &&
1330                        (msg->data.result != CURLE_GOT_NOTHING) )
1331                   {
1332                     /* sending msg failed*/
1333                     if (msg->easy_handle == ps->send_endpoint)
1334                     {
1335 #if DEBUG_CONNECTIONS
1336                       GNUNET_log(GNUNET_ERROR_TYPE_INFO,
1337                                  _("Connection %X: HTTP PUT to peer `%s' (`%s') failed: `%s' `%s'\n"),
1338                                  ps,
1339                                  GNUNET_i2s(&pc->identity),
1340                                  http_plugin_address_to_string(NULL, ps->addr, ps->addrlen),
1341                                  "curl_multi_perform",
1342                                  curl_easy_strerror (msg->data.result));
1343 #endif
1344                       ps->send_connected = GNUNET_NO;
1345                       ps->send_active = GNUNET_NO;
1346                       curl_multi_remove_handle(plugin->multi_handle,msg->easy_handle);
1347                       curl_easy_cleanup(ps->send_endpoint);
1348                       ps->send_endpoint=NULL;
1349                       cur_msg = ps->pending_msgs_tail;
1350                       if (( NULL != cur_msg) && ( NULL != cur_msg->transmit_cont))
1351                         cur_msg->transmit_cont (cur_msg->transmit_cont_cls,&pc->identity,GNUNET_SYSERR);
1352                     }
1353                     /* GET connection failed */
1354                     if (msg->easy_handle == ps->recv_endpoint)
1355                     {
1356 #if DEBUG_CONNECTIONS
1357                       GNUNET_log(GNUNET_ERROR_TYPE_INFO,
1358                            _("Connection %X: HTTP GET to peer `%s' (`%s') failed: `%s' `%s'\n"),
1359                            ps,
1360                            GNUNET_i2s(&pc->identity),
1361                            http_plugin_address_to_string(NULL, ps->addr, ps->addrlen),
1362                            "curl_multi_perform",
1363                            curl_easy_strerror (msg->data.result));
1364 #endif
1365                       ps->recv_connected = GNUNET_NO;
1366                       ps->recv_active = GNUNET_NO;
1367                       curl_multi_remove_handle(plugin->multi_handle,msg->easy_handle);
1368                       curl_easy_cleanup(ps->recv_endpoint);
1369                       ps->recv_endpoint=NULL;
1370                     }
1371                   }
1372                   else
1373                   {
1374                     if (msg->easy_handle == ps->send_endpoint)
1375                     {
1376                       GNUNET_assert (CURLE_OK == curl_easy_getinfo(msg->easy_handle, CURLINFO_RESPONSE_CODE, &http_result));
1377 #if DEBUG_CONNECTIONS
1378                       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1379                                   "Connection %X: HTTP PUT connection to peer `%s' (`%s') was closed with HTTP code %u\n",
1380                                    ps,
1381                                    GNUNET_i2s(&pc->identity),
1382                                    http_plugin_address_to_string(NULL, ps->addr, ps->addrlen),
1383                                    http_result);
1384 #endif
1385                       /* Calling transmit continuation  */
1386                       cur_msg = ps->pending_msgs_tail;
1387                       if (( NULL != cur_msg) && (NULL != cur_msg->transmit_cont))
1388                       {
1389                         /* HTTP 1xx : Last message before here was informational */
1390                         if ((http_result >=100) && (http_result < 200))
1391                           cur_msg->transmit_cont (cur_msg->transmit_cont_cls,&pc->identity,GNUNET_OK);
1392                         /* HTTP 2xx: successful operations */
1393                         if ((http_result >=200) && (http_result < 300))
1394                           cur_msg->transmit_cont (cur_msg->transmit_cont_cls,&pc->identity,GNUNET_OK);
1395                         /* HTTP 3xx..5xx: error */
1396                         if ((http_result >=300) && (http_result < 600))
1397                           cur_msg->transmit_cont (cur_msg->transmit_cont_cls,&pc->identity,GNUNET_SYSERR);
1398                       }
1399                       ps->send_connected = GNUNET_NO;
1400                       ps->send_active = GNUNET_NO;
1401                       curl_multi_remove_handle(plugin->multi_handle,msg->easy_handle);
1402                       curl_easy_cleanup(ps->send_endpoint);
1403                       ps->send_endpoint =NULL;
1404                     }
1405                     if (msg->easy_handle == ps->recv_endpoint)
1406                     {
1407 #if DEBUG_CONNECTIONS
1408                       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1409                                   "Connection %X: HTTP GET connection to peer `%s' (`%s') was closed with HTTP code %u\n",
1410                                    ps,
1411                                    GNUNET_i2s(&pc->identity),
1412                                    http_plugin_address_to_string(NULL, ps->addr, ps->addrlen),
1413                                    http_result);
1414 #endif
1415                       ps->recv_connected = GNUNET_NO;
1416                       ps->recv_active = GNUNET_NO;
1417                       curl_multi_remove_handle(plugin->multi_handle,msg->easy_handle);
1418                       curl_easy_cleanup(ps->recv_endpoint);
1419                       ps->recv_endpoint=NULL;
1420                     }
1421                   }
1422                   if ((ps->recv_connected == GNUNET_NO) && (ps->send_connected == GNUNET_NO))
1423                     remove_session (pc, ps, GNUNET_YES, GNUNET_SYSERR);
1424                   return;
1425                 default:
1426                   break;
1427                 }
1428
1429             }
1430           while ( (running > 0) );
1431         }
1432       handles_last_run = running;
1433     }
1434   while (mret == CURLM_CALL_MULTI_PERFORM);
1435   send_schedule(plugin, cls);
1436 }
1437
1438
1439 /**
1440  * Function setting up file descriptors and scheduling task to run
1441  * @param ses session to send data to
1442  * @return bytes sent to peer
1443  */
1444 static size_t send_schedule(void *cls, struct Session* ses )
1445 {
1446   struct Plugin *plugin = cls;
1447   fd_set rs;
1448   fd_set ws;
1449   fd_set es;
1450   int max;
1451   struct GNUNET_NETWORK_FDSet *grs;
1452   struct GNUNET_NETWORK_FDSet *gws;
1453   long to;
1454   CURLMcode mret;
1455
1456   GNUNET_assert(cls !=NULL);
1457   max = -1;
1458   FD_ZERO (&rs);
1459   FD_ZERO (&ws);
1460   FD_ZERO (&es);
1461   mret = curl_multi_fdset (plugin->multi_handle, &rs, &ws, &es, &max);
1462   if (mret != CURLM_OK)
1463     {
1464       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1465                   _("%s failed at %s:%d: `%s'\n"),
1466                   "curl_multi_fdset", __FILE__, __LINE__,
1467                   curl_multi_strerror (mret));
1468       return -1;
1469     }
1470   mret = curl_multi_timeout (plugin->multi_handle, &to);
1471   if (mret != CURLM_OK)
1472     {
1473       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1474                   _("%s failed at %s:%d: `%s'\n"),
1475                   "curl_multi_timeout", __FILE__, __LINE__,
1476                   curl_multi_strerror (mret));
1477       return -1;
1478     }
1479
1480   grs = GNUNET_NETWORK_fdset_create ();
1481   gws = GNUNET_NETWORK_fdset_create ();
1482   GNUNET_NETWORK_fdset_copy_native (grs, &rs, max + 1);
1483   GNUNET_NETWORK_fdset_copy_native (gws, &ws, max + 1);
1484   plugin->http_server_task_send = GNUNET_SCHEDULER_add_select (plugin->env->sched,
1485                                    GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1486                                    GNUNET_SCHEDULER_NO_TASK,
1487                                    GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 0),
1488                                    grs,
1489                                    gws,
1490                                    &send_execute,
1491                                    plugin);
1492   GNUNET_NETWORK_fdset_destroy (gws);
1493   GNUNET_NETWORK_fdset_destroy (grs);
1494
1495   /* FIXME: return bytes REALLY sent */
1496   return 0;
1497 }
1498
1499
1500 /**
1501  * Function that can be used by the transport service to transmit
1502  * a message using the plugin.   Note that in the case of a
1503  * peer disconnecting, the continuation MUST be called
1504  * prior to the disconnect notification itself.  This function
1505  * will be called with this peer's HELLO message to initiate
1506  * a fresh connection to another peer.
1507  *
1508  * @param cls closure
1509  * @param target who should receive this message
1510  * @param msgbuf the message to transmit
1511  * @param msgbuf_size number of bytes in 'msgbuf'
1512  * @param priority how important is the message (most plugins will
1513  *                 ignore message priority and just FIFO)
1514  * @param timeout how long to wait at most for the transmission (does not
1515  *                require plugins to discard the message after the timeout,
1516  *                just advisory for the desired delay; most plugins will ignore
1517  *                this as well)
1518  * @param session which session must be used (or NULL for "any")
1519  * @param addr the address to use (can be NULL if the plugin
1520  *                is "on its own" (i.e. re-use existing TCP connection))
1521  * @param addrlen length of the address in bytes
1522  * @param force_address GNUNET_YES if the plugin MUST use the given address,
1523  *                GNUNET_NO means the plugin may use any other address and
1524  *                GNUNET_SYSERR means that only reliable existing
1525  *                bi-directional connections should be used (regardless
1526  *                of address)
1527  * @param cont continuation to call once the message has
1528  *        been transmitted (or if the transport is ready
1529  *        for the next transmission call; or if the
1530  *        peer disconnected...); can be NULL
1531  * @param cont_cls closure for cont
1532  * @return number of bytes used (on the physical network, with overheads);
1533  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
1534  *         and does NOT mean that the message was not transmitted (DV)
1535  */
1536 static ssize_t
1537 http_plugin_send (void *cls,
1538                   const struct GNUNET_PeerIdentity *target,
1539                   const char *msgbuf,
1540                   size_t msgbuf_size,
1541                   unsigned int priority,
1542                   struct GNUNET_TIME_Relative to,
1543                   struct Session *session,
1544                   const void *addr,
1545                   size_t addrlen,
1546                   int force_address,
1547                   GNUNET_TRANSPORT_TransmitContinuation cont,
1548                   void *cont_cls)
1549 {
1550   struct Plugin *plugin = cls;
1551   struct HTTP_Message *msg;
1552
1553   struct HTTP_PeerContext * pc;
1554   struct Session * ps = NULL;
1555   struct Session * ps_tmp = NULL;
1556
1557   GNUNET_assert(cls !=NULL);
1558
1559   char * force = GNUNET_malloc(40);
1560   if (force_address == GNUNET_YES)
1561     strcpy(force,"forced addr.");
1562   if (force_address == GNUNET_NO)
1563     strcpy(force,"any addr.");
1564   if (force_address == GNUNET_SYSERR)
1565     strcpy(force,"reliable bi-direc. address addr.");
1566   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Transport tells me to send %u bytes to `%s' using %s (%s) and session: %X\n",
1567                                       msgbuf_size,
1568                                       GNUNET_i2s(target),
1569                                       force,
1570                                       http_plugin_address_to_string(NULL, addr, addrlen),
1571                                       session);
1572   GNUNET_free(force);
1573
1574   pc = GNUNET_CONTAINER_multihashmap_get (plugin->peers, &target->hashPubKey);
1575   /* Peer unknown */
1576   if (pc==NULL)
1577   {
1578     pc = GNUNET_malloc(sizeof (struct HTTP_PeerContext));
1579     pc->plugin = plugin;
1580     pc->session_id_counter=1;
1581     memcpy(&pc->identity, target, sizeof(struct GNUNET_PeerIdentity));
1582     GNUNET_CONTAINER_multihashmap_put(plugin->peers, &pc->identity.hashPubKey, pc, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1583   }
1584
1585   /* Search for existing session using the passed address */
1586   if  ((addr!=NULL) && (addrlen != 0))
1587   {
1588     ps = get_Session(plugin, pc, addr, addrlen);
1589   }
1590   if (ps != NULL)
1591     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Found existing connection to peer %s with given address, using %X\n", GNUNET_i2s(target), ps);
1592
1593   /* Search for existing session using the passed session */
1594   if ((ps==NULL) && (force_address != GNUNET_YES))
1595   {
1596     ps_tmp = pc->head;
1597     while (ps_tmp!=NULL)
1598     {
1599       if ((ps_tmp==session) && (ps_tmp->recv_force_disconnect==GNUNET_NO) && (ps_tmp->send_force_disconnect==GNUNET_NO) &&
1600           (ps_tmp->recv_connected==GNUNET_YES) && (ps_tmp->send_connected==GNUNET_YES))
1601       {
1602         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Found existing connection to peer %s with given session, using inbound session %X\n", GNUNET_i2s(target), ps_tmp);
1603         ps = ps_tmp;
1604         break;
1605       }
1606       ps_tmp=ps_tmp->next;
1607     }
1608   }
1609
1610   /* session not existing, address not forced -> looking for other session */
1611   if ((ps==NULL) && (force_address != GNUNET_YES))
1612   {
1613     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No existing connection, but free to choose existing, searching for existing connection to peer %s\n", GNUNET_i2s(target));
1614     /* Choosing different session to peer when possible */
1615     struct Session * tmp = pc->head;
1616     while (tmp!=NULL)
1617     {
1618       if ((tmp->recv_connected) && (tmp->send_connected) && (tmp->recv_force_disconnect==GNUNET_NO) && (tmp->send_force_disconnect==GNUNET_NO))
1619       {
1620         ps = tmp;
1621       }
1622       tmp = tmp->next;
1623     }
1624     if (ps != NULL)
1625      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No existing connection to peer %s, selected connection %X\n", GNUNET_i2s(target),ps);
1626     else
1627       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No existing connection to peer %s, no connection found\n", GNUNET_i2s(target));
1628   }
1629
1630   /* session not existing, but address forced -> creating new session */
1631   if ((ps==NULL) || ((ps==NULL) && (force_address == GNUNET_YES)))
1632   {
1633     if ((addr!=NULL) && (addrlen!=0))
1634     {
1635       if (force_address == GNUNET_YES)
1636         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No existing connection & forced address: creating new connection to peer %s\n", GNUNET_i2s(target));
1637       if (force_address != GNUNET_YES)
1638         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No existing connection: creating new connection to peer %s\n", GNUNET_i2s(target));
1639
1640       ps = GNUNET_malloc(sizeof (struct Session));
1641       if ((addrlen!=0) && (addr!=NULL))
1642       {
1643       ps->addr = GNUNET_malloc(addrlen);
1644       memcpy(ps->addr,addr,addrlen);
1645       ps->addrlen = addrlen;
1646       }
1647       else
1648       {
1649         ps->addr = NULL;
1650         ps->addrlen = 0;
1651       }
1652       ps->direction=OUTBOUND;
1653       ps->recv_connected = GNUNET_NO;
1654       ps->recv_force_disconnect = GNUNET_NO;
1655       ps->send_connected = GNUNET_NO;
1656       ps->send_force_disconnect = GNUNET_NO;
1657       ps->pending_msgs_head = NULL;
1658       ps->pending_msgs_tail = NULL;
1659       ps->peercontext=pc;
1660       ps->session_id = pc->session_id_counter;
1661       pc->session_id_counter++;
1662       ps->url = create_url (plugin, ps->addr, ps->addrlen, ps->session_id);
1663       if (ps->msgtok == NULL)
1664         ps->msgtok = GNUNET_SERVER_mst_create (&curl_receive_mst_cb, ps);
1665       GNUNET_CONTAINER_DLL_insert(pc->head,pc->tail,ps);
1666     }
1667     else
1668     {
1669       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No existing session & and no address given: no way to send this message to peer `%s'!\n", GNUNET_i2s(target));
1670       return -1;
1671     }
1672   }
1673
1674   /* create msg */
1675   msg = GNUNET_malloc (sizeof (struct HTTP_Message) + msgbuf_size);
1676   msg->next = NULL;
1677   msg->size = msgbuf_size;
1678   msg->pos = 0;
1679   msg->buf = (char *) &msg[1];
1680   msg->transmit_cont = cont;
1681   msg->transmit_cont_cls = cont_cls;
1682   memcpy (msg->buf,msgbuf, msgbuf_size);
1683   GNUNET_CONTAINER_DLL_insert(ps->pending_msgs_head,ps->pending_msgs_tail,msg);
1684
1685   return send_check_connections (plugin, ps);
1686 }
1687
1688
1689
1690 /**
1691  * Function that can be used to force the plugin to disconnect
1692  * from the given peer and cancel all previous transmissions
1693  * (and their continuationc).
1694  *
1695  * @param cls closure
1696  * @param target peer from which to disconnect
1697  */
1698 static void
1699 http_plugin_disconnect (void *cls,
1700                             const struct GNUNET_PeerIdentity *target)
1701 {
1702
1703   struct Plugin *plugin = cls;
1704   struct HTTP_PeerContext *pc = NULL;
1705   struct Session *ps = NULL;
1706   //struct Session *tmp = NULL;
1707
1708   pc = GNUNET_CONTAINER_multihashmap_get (plugin->peers, &target->hashPubKey);
1709   if (pc==NULL)
1710     return;
1711   ps = pc->head;
1712
1713   while (ps!=NULL)
1714   {
1715
1716     if (ps->direction==OUTBOUND)
1717     {
1718       if (ps->send_endpoint!=NULL)
1719       {
1720         //curl_multi_remove_handle(plugin->multi_handle,ps->send_endpoint);
1721         //curl_easy_cleanup(ps->send_endpoint);
1722         //ps->send_endpoint=NULL;
1723         ps->send_force_disconnect = GNUNET_YES;
1724       }
1725       if (ps->recv_endpoint!=NULL)
1726       {
1727        //curl_multi_remove_handle(plugin->multi_handle,ps->recv_endpoint);
1728        //curl_easy_cleanup(ps->recv_endpoint);
1729        //ps->recv_endpoint=NULL;
1730        ps->recv_force_disconnect = GNUNET_YES;
1731       }
1732     }
1733
1734     if (ps->direction==INBOUND)
1735     {
1736       ps->recv_force_disconnect = GNUNET_YES;
1737       ps->send_force_disconnect = GNUNET_YES;
1738     }
1739
1740     while (ps->pending_msgs_head!=NULL)
1741     {
1742       remove_http_message(ps, ps->pending_msgs_head);
1743     }
1744     ps->recv_active = GNUNET_NO;
1745     ps->send_active = GNUNET_NO;
1746     ps=ps->next;
1747   }
1748 }
1749
1750
1751 /**
1752  * Convert the transports address to a nice, human-readable
1753  * format.
1754  *
1755  * @param cls closure
1756  * @param type name of the transport that generated the address
1757  * @param addr one of the addresses of the host, NULL for the last address
1758  *        the specific address format depends on the transport
1759  * @param addrlen length of the address
1760  * @param numeric should (IP) addresses be displayed in numeric form?
1761  * @param timeout after how long should we give up?
1762  * @param asc function to call on each string
1763  * @param asc_cls closure for asc
1764  */
1765 static void
1766 http_plugin_address_pretty_printer (void *cls,
1767                                         const char *type,
1768                                         const void *addr,
1769                                         size_t addrlen,
1770                                         int numeric,
1771                                         struct GNUNET_TIME_Relative timeout,
1772                                         GNUNET_TRANSPORT_AddressStringCallback
1773                                         asc, void *asc_cls)
1774 {
1775   const struct IPv4HttpAddress *t4;
1776   const struct IPv6HttpAddress *t6;
1777   struct sockaddr_in a4;
1778   struct sockaddr_in6 a6;
1779   char * address;
1780   char * ret;
1781   unsigned int port;
1782   unsigned int res;
1783
1784   GNUNET_assert(cls !=NULL);
1785   if (addrlen == sizeof (struct IPv6HttpAddress))
1786   {
1787     address = GNUNET_malloc (INET6_ADDRSTRLEN);
1788     t6 = addr;
1789     a6.sin6_addr = t6->ipv6_addr;
1790     inet_ntop(AF_INET6, &(a6.sin6_addr),address,INET6_ADDRSTRLEN);
1791     port = ntohs(t6->u6_port);
1792   }
1793   else if (addrlen == sizeof (struct IPv4HttpAddress))
1794   {
1795     address = GNUNET_malloc (INET_ADDRSTRLEN);
1796     t4 = addr;
1797     a4.sin_addr.s_addr =  t4->ipv4_addr;
1798     inet_ntop(AF_INET, &(a4.sin_addr),address,INET_ADDRSTRLEN);
1799     port = ntohs(t4->u_port);
1800   }
1801   else
1802   {
1803     /* invalid address */
1804     GNUNET_break_op (0);
1805     asc (asc_cls, NULL);
1806     return;
1807   }
1808   res = GNUNET_asprintf(&ret,"http://%s:%u/",address,port);
1809   GNUNET_free (address);
1810   GNUNET_assert(res != 0);
1811
1812   asc (asc_cls, ret);
1813 }
1814
1815
1816
1817 /**
1818  * Another peer has suggested an address for this
1819  * peer and transport plugin.  Check that this could be a valid
1820  * address.  If so, consider adding it to the list
1821  * of addresses.
1822  *
1823  * @param cls closure
1824  * @param addr pointer to the address
1825  * @param addrlen length of addr
1826  * @return GNUNET_OK if this is a plausible address for this peer
1827  *         and transport
1828  */
1829 static int
1830 http_plugin_address_suggested (void *cls,
1831                                const void *addr, size_t addrlen)
1832 {
1833   struct Plugin *plugin = cls;
1834   struct IPv4HttpAddress *v4;
1835   struct IPv6HttpAddress *v6;
1836   unsigned int port;
1837
1838   GNUNET_assert(cls !=NULL);
1839   if ((addrlen != sizeof (struct IPv4HttpAddress)) &&
1840       (addrlen != sizeof (struct IPv6HttpAddress)))
1841     {
1842       return GNUNET_SYSERR;
1843     }
1844   if (addrlen == sizeof (struct IPv4HttpAddress))
1845     {
1846       v4 = (struct IPv4HttpAddress *) addr;
1847       if (INADDR_LOOPBACK == ntohl(v4->ipv4_addr))
1848       {
1849         return GNUNET_SYSERR;
1850       }
1851       port = ntohs (v4->u_port);
1852       if (port != plugin->port_inbound)
1853       {
1854         return GNUNET_SYSERR;
1855       }
1856     }
1857   if (addrlen == sizeof (struct IPv6HttpAddress))
1858     {
1859       v6 = (struct IPv6HttpAddress *) addr;
1860       if (IN6_IS_ADDR_LINKLOCAL (&v6->ipv6_addr))
1861         {
1862           return GNUNET_SYSERR;
1863         }
1864       port = ntohs (v6->u6_port);
1865       if (port != plugin->port_inbound)
1866       {
1867         return GNUNET_SYSERR;
1868       }
1869     }
1870
1871   return GNUNET_OK;
1872 }
1873
1874
1875 /**
1876  * Function called for a quick conversion of the binary address to
1877  * a numeric address.  Note that the caller must not free the
1878  * address and that the next call to this function is allowed
1879  * to override the address again.
1880  *
1881  * @param cls closure
1882  * @param addr binary address
1883  * @param addrlen length of the address
1884  * @return string representing the same address
1885  */
1886 static const char*
1887 http_plugin_address_to_string (void *cls,
1888                                    const void *addr,
1889                                    size_t addrlen)
1890 {
1891   const struct IPv4HttpAddress *t4;
1892   const struct IPv6HttpAddress *t6;
1893   struct sockaddr_in a4;
1894   struct sockaddr_in6 a6;
1895   char * address;
1896   char * ret;
1897   uint16_t port;
1898   unsigned int res;
1899
1900   if (addrlen == sizeof (struct IPv6HttpAddress))
1901     {
1902       address = GNUNET_malloc (INET6_ADDRSTRLEN);
1903       t6 = addr;
1904       a6.sin6_addr = t6->ipv6_addr;
1905       inet_ntop(AF_INET6, &(a6.sin6_addr),address,INET6_ADDRSTRLEN);
1906       port = ntohs(t6->u6_port);
1907     }
1908   else if (addrlen == sizeof (struct IPv4HttpAddress))
1909     {
1910       address = GNUNET_malloc (INET_ADDRSTRLEN);
1911       t4 = addr;
1912       a4.sin_addr.s_addr =  t4->ipv4_addr;
1913       inet_ntop(AF_INET, &(a4.sin_addr),address,INET_ADDRSTRLEN);
1914       port = ntohs(t4->u_port);
1915     }
1916   else
1917     {
1918       /* invalid address */
1919       return NULL;
1920     }
1921   res = GNUNET_asprintf(&ret,"%s:%u",address,port);
1922   GNUNET_free (address);
1923   GNUNET_assert(res != 0);
1924   return ret;
1925 }
1926
1927 /**
1928  * Add the IP of our network interface to the list of
1929  * our external IP addresses.
1930  *
1931  * @param cls the 'struct Plugin*'
1932  * @param name name of the interface
1933  * @param isDefault do we think this may be our default interface
1934  * @param addr address of the interface
1935  * @param addrlen number of bytes in addr
1936  * @return GNUNET_OK to continue iterating
1937  */
1938 static int
1939 process_interfaces (void *cls,
1940                     const char *name,
1941                     int isDefault,
1942                     const struct sockaddr *addr, socklen_t addrlen)
1943 {
1944   struct Plugin *plugin = cls;
1945   struct IPv4HttpAddress * t4;
1946   struct IPv6HttpAddress * t6;
1947   int af;
1948
1949   GNUNET_assert(cls !=NULL);
1950   af = addr->sa_family;
1951   if (af == AF_INET)
1952     {
1953       t4 = GNUNET_malloc(sizeof(struct IPv4HttpAddress));
1954       if (INADDR_LOOPBACK == ntohl(((struct sockaddr_in *) addr)->sin_addr.s_addr))
1955       {
1956         /* skip loopback addresses */
1957         return GNUNET_OK;
1958       }
1959       t4->ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
1960       t4->u_port = htons (plugin->port_inbound);
1961       plugin->env->notify_address(plugin->env->cls,"http",t4, sizeof (struct IPv4HttpAddress), GNUNET_TIME_UNIT_FOREVER_REL);
1962
1963     }
1964   else if (af == AF_INET6)
1965     {
1966       t6 = GNUNET_malloc(sizeof(struct IPv6HttpAddress));
1967       if (IN6_IS_ADDR_LINKLOCAL (&((struct sockaddr_in6 *) addr)->sin6_addr))
1968         {
1969           /* skip link local addresses */
1970           return GNUNET_OK;
1971         }
1972       if (IN6_IS_ADDR_LOOPBACK (&((struct sockaddr_in6 *) addr)->sin6_addr))
1973         {
1974           /* skip loopback addresses */
1975           return GNUNET_OK;
1976         }
1977       memcpy (&t6->ipv6_addr,
1978               &((struct sockaddr_in6 *) addr)->sin6_addr,
1979               sizeof (struct in6_addr));
1980       t6->u6_port = htons (plugin->port_inbound);
1981       plugin->env->notify_address(plugin->env->cls,"http",t6,sizeof (struct IPv6HttpAddress) , GNUNET_TIME_UNIT_FOREVER_REL);
1982     }
1983   return GNUNET_OK;
1984 }
1985
1986 int remove_peer_context_Iterator (void *cls, const GNUNET_HashCode *key, void *value)
1987 {
1988   struct HTTP_PeerContext * pc = value;
1989   struct Session * ps = pc->head;
1990   struct Session * tmp = NULL;
1991   struct HTTP_Message * msg = NULL;
1992   struct HTTP_Message * msg_tmp = NULL;
1993
1994   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Freeing context for peer `%s'\n",GNUNET_i2s(&pc->identity));
1995
1996   while (ps!=NULL)
1997   {
1998     tmp = ps->next;
1999
2000     GNUNET_free_non_null (ps->addr);
2001     GNUNET_free(ps->url);
2002     if (ps->msgtok != NULL)
2003       GNUNET_SERVER_mst_destroy (ps->msgtok);
2004
2005     msg = ps->pending_msgs_head;
2006     while (msg!=NULL)
2007     {
2008       msg_tmp = msg->next;
2009       GNUNET_free(msg);
2010       msg = msg_tmp;
2011     }
2012     if (ps->direction==OUTBOUND)
2013     {
2014       if (ps->send_endpoint!=NULL)
2015         curl_easy_cleanup(ps->send_endpoint);
2016       if (ps->recv_endpoint!=NULL)
2017         curl_easy_cleanup(ps->recv_endpoint);
2018     }
2019
2020     GNUNET_free(ps);
2021     ps=tmp;
2022   }
2023   GNUNET_free(pc);
2024   return GNUNET_YES;
2025 }
2026
2027
2028 /**
2029  * Exit point from the plugin.
2030  */
2031 void *
2032 libgnunet_plugin_transport_http_done (void *cls)
2033 {
2034   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
2035   struct Plugin *plugin = api->cls;
2036   CURLMcode mret;
2037
2038   GNUNET_assert(cls !=NULL);
2039
2040   if (plugin->http_server_daemon_v4 != NULL)
2041   {
2042     MHD_stop_daemon (plugin->http_server_daemon_v4);
2043     plugin->http_server_daemon_v4 = NULL;
2044   }
2045   if (plugin->http_server_daemon_v6 != NULL)
2046   {
2047     MHD_stop_daemon (plugin->http_server_daemon_v6);
2048     plugin->http_server_daemon_v6 = NULL;
2049   }
2050
2051
2052
2053   if ( plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
2054   {
2055     GNUNET_SCHEDULER_cancel(plugin->env->sched, plugin->http_server_task_v4);
2056     plugin->http_server_task_v4 = GNUNET_SCHEDULER_NO_TASK;
2057   }
2058
2059   if ( plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK)
2060   {
2061     GNUNET_SCHEDULER_cancel(plugin->env->sched, plugin->http_server_task_v6);
2062     plugin->http_server_task_v6 = GNUNET_SCHEDULER_NO_TASK;
2063   }
2064
2065   if ( plugin->http_server_task_send != GNUNET_SCHEDULER_NO_TASK)
2066   {
2067     GNUNET_SCHEDULER_cancel(plugin->env->sched, plugin->http_server_task_send);
2068     plugin->http_server_task_send = GNUNET_SCHEDULER_NO_TASK;
2069   }
2070
2071   /* free all peer information */
2072   GNUNET_CONTAINER_multihashmap_iterate (plugin->peers,
2073                                          &remove_peer_context_Iterator,
2074                                          NULL);
2075   GNUNET_CONTAINER_multihashmap_destroy (plugin->peers);
2076
2077   mret = curl_multi_cleanup(plugin->multi_handle);
2078   if ( CURLM_OK != mret)
2079     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"curl multihandle clean up failed");
2080
2081   GNUNET_free (plugin);
2082   GNUNET_free (api);
2083   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Unload http plugin complete...\n");
2084   return NULL;
2085 }
2086
2087
2088 /**
2089  * Entry point for the plugin.
2090  */
2091 void *
2092 libgnunet_plugin_transport_http_init (void *cls)
2093 {
2094   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
2095   struct Plugin *plugin;
2096   struct GNUNET_TRANSPORT_PluginFunctions *api;
2097   struct GNUNET_TIME_Relative gn_timeout;
2098   long long unsigned int port;
2099
2100   GNUNET_assert(cls !=NULL);
2101   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting http plugin...\n");
2102
2103   plugin = GNUNET_malloc (sizeof (struct Plugin));
2104   plugin->env = env;
2105   plugin->peers = NULL;
2106
2107   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
2108   api->cls = plugin;
2109   api->send = &http_plugin_send;
2110   api->disconnect = &http_plugin_disconnect;
2111   api->address_pretty_printer = &http_plugin_address_pretty_printer;
2112   api->check_address = &http_plugin_address_suggested;
2113   api->address_to_string = &http_plugin_address_to_string;
2114
2115   /* Hashing our identity to use it in URLs */
2116   GNUNET_CRYPTO_hash_to_enc ( &(plugin->env->my_identity->hashPubKey), &plugin->my_ascii_hash_ident);
2117
2118   /* Reading port number from config file */
2119   if ((GNUNET_OK !=
2120        GNUNET_CONFIGURATION_get_value_number (env->cfg,
2121                                               "transport-http",
2122                                               "PORT",
2123                                               &port)) ||
2124       (port > 65535) )
2125     {
2126       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2127                        "http",
2128                        _
2129                        ("Require valid port number for transport plugin `%s' in configuration!\n"),
2130                        "transport-http");
2131       libgnunet_plugin_transport_http_done (api);
2132       return NULL;
2133     }
2134   GNUNET_assert ((port > 0) && (port <= 65535));
2135   plugin->port_inbound = port;
2136   gn_timeout = GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT;
2137   if ((plugin->http_server_daemon_v4 == NULL) && (plugin->http_server_daemon_v6 == NULL) && (port != 0))
2138     {
2139     plugin->http_server_daemon_v6 = MHD_start_daemon (MHD_USE_IPv6,
2140                                        port,
2141                                        &mhd_accept_cb,
2142                                        plugin , &mdh_access_cb, plugin,
2143                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
2144                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
2145                                        MHD_OPTION_CONNECTION_TIMEOUT, (gn_timeout.value / 1000),
2146                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
2147                                        MHD_OPTION_NOTIFY_COMPLETED, &mhd_termination_cb, NULL,
2148                                        MHD_OPTION_END);
2149     plugin->http_server_daemon_v4 = MHD_start_daemon (MHD_NO_FLAG,
2150                                        port,
2151                                        &mhd_accept_cb,
2152                                        plugin , &mdh_access_cb, plugin,
2153                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
2154                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
2155                                        MHD_OPTION_CONNECTION_TIMEOUT, (gn_timeout.value / 1000),
2156                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
2157                                        MHD_OPTION_NOTIFY_COMPLETED, &mhd_termination_cb, NULL,
2158                                        MHD_OPTION_END);
2159     }
2160   if (plugin->http_server_daemon_v4 != NULL)
2161     plugin->http_server_task_v4 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v4);
2162   if (plugin->http_server_daemon_v6 != NULL)
2163     plugin->http_server_task_v6 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v6);
2164
2165   if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
2166     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 on port %u\n",port);
2167   else if (plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK)
2168     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 and IPv6 on port %u\n",port);
2169   else
2170   {
2171     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No MHD was started, transport plugin not functional!\n");
2172     libgnunet_plugin_transport_http_done (api);
2173     return NULL;
2174   }
2175
2176   /* Initializing cURL */
2177   curl_global_init(CURL_GLOBAL_ALL);
2178   plugin->multi_handle = curl_multi_init();
2179
2180   if ( NULL == plugin->multi_handle )
2181   {
2182     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
2183                      "http",
2184                      _("Could not initialize curl multi handle, failed to start http plugin!\n"),
2185                      "transport-http");
2186     libgnunet_plugin_transport_http_done (api);
2187     return NULL;
2188   }
2189
2190   plugin->peers = GNUNET_CONTAINER_multihashmap_create (10);
2191   GNUNET_OS_network_interfaces_list (&process_interfaces, plugin);
2192
2193   return api;
2194 }
2195
2196 /* end of plugin_transport_http.c */