(no commit message)
[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 2, 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_server_lib.h"
32 #include "gnunet_service_lib.h"
33 #include "gnunet_statistics_service.h"
34 #include "gnunet_transport_service.h"
35 #include "gnunet_resolver_service.h"
36 #include "gnunet_server_lib.h"
37 #include "gnunet_container_lib.h"
38 #include "plugin_transport.h"
39 #include "gnunet_os_lib.h"
40 #include "microhttpd.h"
41 #include <curl/curl.h>
42
43
44 #define DEBUG_CURL GNUNET_YES
45 #define DEBUG_HTTP GNUNET_NO
46 #define HTTP_CONNECT_TIMEOUT_DBG 10
47
48 /**
49  * Text of the response sent back after the last bytes of a PUT
50  * request have been received (just to formally obey the HTTP
51  * protocol).
52  */
53 #define HTTP_PUT_RESPONSE "Thank you!"
54
55 /**
56  * After how long do we expire an address that we
57  * learned from another peer if it is not reconfirmed
58  * by anyone?
59  */
60 #define LEARNED_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
61
62 /**
63  * Page returned if request invalid
64  */
65 #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>"
66
67 /**
68  * Timeout for a http connect
69  */
70 #define HTTP_CONNECT_TIMEOUT 30
71
72 /**
73  * Network format for IPv4 addresses.
74  */
75 struct IPv4HttpAddress
76 {
77   /**
78    * IPv4 address, in network byte order.
79    */
80   uint32_t ipv4_addr;
81
82   /**
83    * Port number, in network byte order.
84    */
85   uint16_t u_port;
86
87 };
88
89
90 /**
91  * Network format for IPv6 addresses.
92  */
93 struct IPv6HttpAddress
94 {
95   /**
96    * IPv6 address.
97    */
98   struct in6_addr ipv6_addr;
99
100   /**
101    * Port number, in network byte order.
102    */
103   uint16_t u6_port;
104
105 };
106
107
108 /**
109  *  Message to send using http
110  */
111 struct HTTP_Message
112 {
113   /**
114    * next pointer for double linked list
115    */
116   struct HTTP_Message * next;
117
118   /**
119    * previous pointer for double linked list
120    */
121   struct HTTP_Message * prev;
122
123   /**
124    * buffer containing data to send
125    */
126   char *buf;
127
128   /**
129    * amount of data already sent
130    */
131   size_t pos;
132
133   /**
134    * buffer length
135    */
136   size_t size;
137   
138   /**
139    * Continuation function to call once the transmission buffer
140    * has again space available.  NULL if there is no
141    * continuation to call.
142    */
143   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
144
145   /**
146    * Closure for transmit_cont.
147    */
148   void *transmit_cont_cls;
149 };
150
151
152 struct HTTP_Connection_out
153 {
154   struct HTTP_Connection_out * next;
155
156   struct HTTP_Connection_out * prev;
157
158   void * addr;
159   size_t addrlen;
160
161   struct HTTP_Message * pending_msgs_head;
162   struct HTTP_Message * pending_msgs_tail;
163
164   char * url;
165   unsigned int connected;
166   unsigned int send_paused;
167
168   /**
169    * curl handle for this ransmission
170    */
171   CURL *curl_handle;
172   struct Session * session;
173 };
174
175 struct HTTP_Connection_in
176 {
177   struct HTTP_Connection_in * next;
178
179   struct HTTP_Connection_in * prev;
180
181   void * addr;
182   size_t addrlen;
183
184   unsigned int connected;
185   unsigned int send_paused;
186
187   struct GNUNET_SERVER_MessageStreamTokenizer * msgtok;
188
189   struct Session * session;
190
191   /**
192    * Is there a HTTP/PUT in progress?
193    */
194   int is_put_in_progress;
195
196   /**
197    * Is the http request invalid?
198    */
199   int is_bad_request;
200 };
201
202
203 /**
204  * Session handle for connections.
205  */
206 struct Session
207 {
208
209   /**
210    * API requirement.
211    */
212   struct SessionHeader header;
213
214   /**
215    * Stored in a linked list.
216    */
217   struct Session *next;
218
219   /**
220    * Pointer to the global plugin struct.
221    */
222   struct Plugin *plugin;
223
224   /**
225    * To whom are we talking to (set to our identity
226    * if we are still waiting for the welcome message)
227    */
228   struct GNUNET_PeerIdentity identity;
229
230   /**
231    * Sender's ip address to distinguish between incoming connections
232    */
233   void * addr_in;
234
235   size_t addr_in_len;
236
237   void * addr_out;
238
239   size_t addr_out_len;
240
241   /**
242    * Did we initiate the connection (GNUNET_YES) or the other peer (GNUNET_NO)?
243    */
244   int is_client;
245
246   /**
247    * At what time did we reset last_received last?
248    */
249   struct GNUNET_TIME_Absolute last_quota_update;
250
251   /**
252    * How many bytes have we received since the "last_quota_update"
253    * timestamp?
254    */
255   uint64_t last_received;
256
257   /**
258    * Number of bytes per ms that this peer is allowed
259    * to send to us.
260    */
261   uint32_t quota;
262
263   /**
264    * Encoded hash
265    */
266   struct GNUNET_CRYPTO_HashAsciiEncoded hash;
267
268   /**
269    * curl handle for outbound transmissions
270    */
271   CURL *curl_handle;
272
273   /**
274    * Message tokenizer for incoming data
275    */
276   //struct GNUNET_SERVER_MessageStreamTokenizer * msgtok;
277
278   struct HTTP_Connection_out *outbound_connections_head;
279   struct HTTP_Connection_out *outbound_connections_tail;
280
281   struct HTTP_Connection_in *inbound_connections_head;
282   struct HTTP_Connection_in *inbound_connections_tail;
283 };
284
285 /**
286  * Encapsulation of all of the state of the plugin.
287  */
288 struct Plugin
289 {
290   /**
291    * Our environment.
292    */
293   struct GNUNET_TRANSPORT_PluginEnvironment *env;
294
295   unsigned int port_inbound;
296
297   /**
298    * Hashmap for all existing sessions.
299    */
300   struct GNUNET_CONTAINER_MultiHashMap *sessions;
301
302   /**
303    * Daemon for listening for new IPv4 connections.
304    */
305   struct MHD_Daemon *http_server_daemon_v4;
306
307   /**
308    * Daemon for listening for new IPv6connections.
309    */
310   struct MHD_Daemon *http_server_daemon_v6;
311
312   /**
313    * Our primary task for http daemon handling IPv4 connections
314    */
315   GNUNET_SCHEDULER_TaskIdentifier http_server_task_v4;
316
317   /**
318    * Our primary task for http daemon handling IPv6 connections
319    */
320   GNUNET_SCHEDULER_TaskIdentifier http_server_task_v6;
321
322   /**
323    * The task sending data
324    */
325   GNUNET_SCHEDULER_TaskIdentifier http_server_task_send;
326
327   /**
328    * cURL Multihandle
329    */
330   CURLM * multi_handle;
331
332   /**
333    * Our ASCII encoded, hashed peer identity
334    * This string is used to distinguish between connections and is added to the urls
335    */
336   struct GNUNET_CRYPTO_HashAsciiEncoded my_ascii_hash_ident;
337 };
338
339
340 /**
341  * Create a new session
342  *
343  * @param addr_in address the peer is using inbound
344  * @param addr_out address the peer is using outbound
345  * @param peer identity
346  * @return created session object
347  */
348 static struct Session * 
349 create_session (void * cls, 
350                 char * addr_in, 
351                 size_t addrlen_in,
352                 char * addr_out, 
353                 size_t addrlen_out, 
354                 const struct GNUNET_PeerIdentity *peer)
355 {
356   struct Plugin *plugin = cls;
357   struct Session * cs = GNUNET_malloc ( sizeof( struct Session) );
358
359   GNUNET_assert(cls !=NULL);
360   if (addrlen_in != 0)
361   {
362     cs->addr_in = GNUNET_malloc (addrlen_in);
363     cs->addr_in_len = addrlen_in;
364     memcpy(cs->addr_in,addr_in,addrlen_in);
365   }
366
367   if (addrlen_out != 0)
368   {
369     cs->addr_out = GNUNET_malloc (addrlen_out);
370     cs->addr_out_len = addrlen_out;
371     memcpy(cs->addr_out,addr_out,addrlen_out);
372   }
373   cs->plugin = plugin;
374   memcpy(&cs->identity, peer, sizeof (struct GNUNET_PeerIdentity));
375   GNUNET_CRYPTO_hash_to_enc(&cs->identity.hashPubKey,&(cs->hash));
376   cs->outbound_connections_head = NULL;
377   cs->outbound_connections_tail = NULL;
378   return cs;
379 }
380
381 /**
382  * Check if session for this peer is already existing, otherwise create it
383  * @param cls the plugin used
384  * @param p peer to get session for
385  * @return session found or created
386  */
387 static struct Session * session_get (void * cls, const struct GNUNET_PeerIdentity *p)
388 {
389   struct Plugin *plugin = cls;
390   struct Session *cs;
391   unsigned int res;
392
393   cs = GNUNET_CONTAINER_multihashmap_get (plugin->sessions, &p->hashPubKey);
394   if (cs != NULL)
395   {
396     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
397                 "Session `%s' found\n", GNUNET_i2s(p));
398   }
399   if (cs == NULL)
400   {
401     cs = create_session(plugin, NULL, 0, NULL, 0, p);
402     res = GNUNET_CONTAINER_multihashmap_put ( plugin->sessions,
403                                         &cs->identity.hashPubKey,
404                                         cs,
405                                         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
406     if (res == GNUNET_OK)
407       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
408                   "New Session `%s' inserted\n", GNUNET_i2s(p));
409   }
410   return cs;
411 }
412
413 static char * create_url(void * cls, const void * addr, size_t addrlen)
414 {
415   struct Plugin *plugin = cls;
416   char *address;
417   char *url = NULL;
418
419   GNUNET_assert ((addr!=NULL) && (addrlen != 0));
420   if (addrlen == (sizeof (struct IPv4HttpAddress)))
421   {
422     address = GNUNET_malloc(INET_ADDRSTRLEN + 1);
423     inet_ntop(AF_INET, &((struct IPv4HttpAddress *) addr)->ipv4_addr,address,INET_ADDRSTRLEN);
424     GNUNET_asprintf (&url,
425                      "http://%s:%u/%s",
426                      address,
427                      ntohs(((struct IPv4HttpAddress *) addr)->u_port),
428                      (char *) (&plugin->my_ascii_hash_ident));
429     GNUNET_free(address);
430   }
431   else if (addrlen == (sizeof (struct IPv6HttpAddress)))
432   {
433     address = GNUNET_malloc(INET6_ADDRSTRLEN + 1);
434     inet_ntop(AF_INET6, &((struct IPv6HttpAddress *) addr)->ipv6_addr,address,INET6_ADDRSTRLEN);
435     GNUNET_asprintf(&url,
436                     "http://%s:%u/%s",
437                     address,
438                     ntohs(((struct IPv6HttpAddress *) addr)->u6_port),
439                     (char *) (&plugin->my_ascii_hash_ident));
440     GNUNET_free(address);
441   }
442   return url;
443 }
444
445 /**
446  * Check if session already knows this address for a outbound connection to this peer
447  * If address not in session, add it to the session
448  * @param cls the plugin used
449  * @param p the session
450  * @param addr address
451  * @param addr_len address length
452  * @return the found or created address
453  */
454 static struct HTTP_Connection_out * session_check_outbound_address (void * cls, struct Session *cs, const void * addr, size_t addr_len)
455 {
456   struct Plugin *plugin = cls;
457   struct HTTP_Connection_out * cc = cs->outbound_connections_head;
458   struct HTTP_Connection_out * con = NULL;
459
460   GNUNET_assert((addr_len == sizeof (struct IPv4HttpAddress)) || (addr_len == sizeof (struct IPv6HttpAddress)));
461
462   while (cc!=NULL)
463   {
464     if (addr_len == cc->addrlen)
465     {
466       if (0 == memcmp(cc->addr, addr, addr_len))
467       {
468         con = cc;
469         break;
470       }
471     }
472     cc=cc->next;
473   }
474   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No connection info for this address was found\n",GNUNET_i2s(&cs->identity));
475   if (con==NULL)
476   {
477     con = GNUNET_malloc(sizeof(struct HTTP_Connection_out) + addr_len);
478     con->addrlen = addr_len;
479     con->addr=&con[1];
480     con->url=create_url(plugin, addr, addr_len);
481     con->connected = GNUNET_NO;
482     con->session = cs;
483     memcpy(con->addr, addr, addr_len);
484     GNUNET_CONTAINER_DLL_insert(cs->outbound_connections_head,cs->outbound_connections_tail,con);
485   }
486   return con;
487 }
488
489
490 /**
491  * Check if session already knows this address for a inbound connection to this peer
492  * If address not in session, add it to the session
493  * @param cls the plugin used
494  * @param p the session
495  * @param addr address
496  * @param addr_len address length
497  * @return the found or created address
498  */
499 static struct HTTP_Connection_in * session_check_inbound_address (void * cls, struct Session *cs, const void * addr, size_t addr_len)
500 {
501   //struct Plugin *plugin = cls;
502   struct HTTP_Connection_in * cc = cs->inbound_connections_head;
503   struct HTTP_Connection_in * con = NULL;
504
505   GNUNET_assert((addr_len == sizeof (struct IPv4HttpAddress)) || (addr_len == sizeof (struct IPv6HttpAddress)));
506
507   while (cc!=NULL)
508   {
509     if (addr_len == cc->addrlen)
510     {
511       if (0 == memcmp(cc->addr, addr, addr_len))
512       {
513         con = cc;
514         break;
515       }
516     }
517     cc=cc->next;
518   }
519   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No connection info for this address was found\n",GNUNET_i2s(&cs->identity));
520   if (con==NULL)
521   {
522     con = GNUNET_malloc(sizeof(struct HTTP_Connection_in) + addr_len);
523     con->addrlen = addr_len;
524     con->addr=&con[1];
525     con->connected = GNUNET_NO;
526     con->session = cs;
527     memcpy(con->addr, addr, addr_len);
528     GNUNET_CONTAINER_DLL_insert(cs->inbound_connections_head,cs->inbound_connections_tail,con);
529   }
530   return con;
531 }
532
533
534 /**
535  * Callback called by MHD when a connection is terminated
536  */
537 static void requestCompletedCallback (void *cls, struct MHD_Connection * connection, void **httpSessionCache)
538 {
539   struct HTTP_Connection_in * con;
540
541   con = *httpSessionCache;
542   if (con == NULL)
543     return;
544   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection from peer `%s' was terminated\n",GNUNET_i2s(&con->session->identity));
545   /* session set to inactive */
546   con->is_put_in_progress = GNUNET_NO;
547   con->is_bad_request = GNUNET_NO;
548 }
549
550
551 static void messageTokenizerCallback (void *cls,
552                                       void *client,
553                                       const struct GNUNET_MessageHeader *message)
554 {
555   struct HTTP_Connection_in * con = cls;
556   GNUNET_assert(con != NULL);
557
558   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
559               "Received message with type %u and size %u from `%s'\n",
560               ntohs(message->type),
561               ntohs(message->size),
562               GNUNET_i2s(&(con->session->identity)));
563   con->session->plugin->env->receive (con->session->plugin->env->cls,
564                             &con->session->identity,
565                             message, 1, con->session,
566                             NULL,
567                             0);
568 }
569
570 /**
571  * Check if ip is allowed to connect.
572  */
573 static int
574 acceptPolicyCallback (void *cls,
575                       const struct sockaddr *addr, socklen_t addr_len)
576 {
577 #if 0
578   struct Plugin *plugin = cls;
579 #endif
580   /* Every connection is accepted, nothing more to do here */
581   return MHD_YES;
582 }
583
584 /**
585  * Process GET or PUT request received via MHD.  For
586  * GET, queue response that will send back our pending
587  * messages.  For PUT, process incoming data and send
588  * to GNUnet core.  In either case, check if a session
589  * already exists and create a new one if not.
590  */
591 static int
592 accessHandlerCallback (void *cls,
593                        struct MHD_Connection *mhd_connection,
594                        const char *url,
595                        const char *method,
596                        const char *version,
597                        const char *upload_data,
598                        size_t * upload_data_size, void **httpSessionCache)
599 {
600   struct Plugin *plugin = cls;
601   struct MHD_Response *response;
602   struct Session * cs;
603   struct HTTP_Connection_in * con;
604   const union MHD_ConnectionInfo * conn_info;
605   struct sockaddr_in  *addrin;
606   struct sockaddr_in6 *addrin6;
607   char address[INET6_ADDRSTRLEN+14];
608   struct GNUNET_PeerIdentity pi_in;
609   int res = GNUNET_NO;
610   int send_error_to_client;
611   struct IPv4HttpAddress ipv4addr;
612   struct IPv6HttpAddress ipv6addr;
613
614   GNUNET_assert(cls !=NULL);
615   send_error_to_client = GNUNET_NO;
616
617   if ( NULL == *httpSessionCache)
618   {
619     /* check url for peer identity , if invalid send HTTP 404*/
620     res = GNUNET_CRYPTO_hash_from_string ( &url[1], &(pi_in.hashPubKey));
621     if ( GNUNET_SYSERR == res )
622     {
623       response = MHD_create_response_from_data (strlen (HTTP_ERROR_RESPONSE),HTTP_ERROR_RESPONSE, MHD_NO, MHD_NO);
624       res = MHD_queue_response (mhd_connection, MHD_HTTP_NOT_FOUND, response);
625       MHD_destroy_response (response);
626       if (res == MHD_YES)
627         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Peer has no valid ident, sent HTTP 1.1/404\n");
628       else
629         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Peer has no valid ident, could not send error\n");
630       return res;
631     }
632
633     /* get session for peer identity */
634     cs = session_get (plugin ,&pi_in);
635
636     conn_info = MHD_get_connection_info(mhd_connection, MHD_CONNECTION_INFO_CLIENT_ADDRESS );
637     /* Incoming IPv4 connection */
638     if ( AF_INET == conn_info->client_addr->sin_family)
639     {
640       addrin = conn_info->client_addr;
641       inet_ntop(addrin->sin_family, &(addrin->sin_addr),address,INET_ADDRSTRLEN);
642       memcpy(&ipv4addr.ipv4_addr,&(addrin->sin_addr),sizeof(struct in_addr));
643       ipv4addr.u_port = addrin->sin_port;
644       con = session_check_inbound_address (plugin, cs, (const void *) &ipv4addr, sizeof (struct IPv4HttpAddress));
645     }
646     /* Incoming IPv6 connection */
647     if ( AF_INET6 == conn_info->client_addr->sin_family)
648     {
649       addrin6 = (struct sockaddr_in6 *) conn_info->client_addr;
650       inet_ntop(addrin6->sin6_family, &(addrin6->sin6_addr),address,INET6_ADDRSTRLEN);
651       memcpy(&ipv6addr.ipv6_addr,&(addrin6->sin6_addr),sizeof(struct in_addr));
652       ipv6addr.u6_port = addrin6->sin6_port;
653       con = session_check_inbound_address (plugin, cs, &ipv6addr, sizeof (struct IPv6HttpAddress));
654     }
655     /* Set closure and update current session*/
656
657     *httpSessionCache = con;
658     if (con->msgtok==NULL)
659       con->msgtok = GNUNET_SERVER_mst_create (GNUNET_SERVER_MAX_MESSAGE_SIZE - 1, &messageTokenizerCallback, con);
660
661     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"HTTP Daemon has new an incoming `%s' request from peer `%s'@`%s'\n",method, GNUNET_i2s(&cs->identity),address);
662   }
663   else
664   {
665     con = *httpSessionCache;
666     cs = con->session;
667   }
668
669   /* Is it a PUT or a GET request */
670   if (0 == strcmp (MHD_HTTP_METHOD_PUT, method))
671   {
672     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"PUT, Upload size: %u addrlen %u\n", *upload_data_size, con->addrlen);
673     if ((*upload_data_size == 0) && (con->is_put_in_progress==GNUNET_NO))
674     {
675       con->is_put_in_progress = GNUNET_YES;
676       return MHD_YES;
677     }
678
679     /* Transmission of all data complete */
680     if ((*upload_data_size == 0) && (con->is_put_in_progress == GNUNET_YES))
681     {
682         response = MHD_create_response_from_data (strlen (HTTP_PUT_RESPONSE),HTTP_PUT_RESPONSE, MHD_NO, MHD_NO);
683         res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
684         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Sent HTTP/1.1: 200 OK as PUT Response\n",HTTP_PUT_RESPONSE, strlen (HTTP_PUT_RESPONSE), res );
685         MHD_destroy_response (response);
686         return MHD_YES;
687
688       con->is_put_in_progress = GNUNET_NO;
689       con->is_bad_request = GNUNET_NO;
690       return res;
691     }
692
693     /* Transmission of all data complete */
694     if ((*upload_data_size > 0) && (con->is_put_in_progress == GNUNET_YES))
695     {
696       res = GNUNET_SERVER_mst_receive(con->msgtok, cs, upload_data,*upload_data_size, GNUNET_YES, GNUNET_NO);
697       (*upload_data_size) = 0;
698       return MHD_YES;
699     }
700     else
701       return MHD_NO;
702   }
703   if ( 0 == strcmp (MHD_HTTP_METHOD_GET, method) )
704   {
705     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Got GET Request\n");
706     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"URL: `%s'\n",url);
707     response = MHD_create_response_from_data (strlen (HTTP_PUT_RESPONSE),HTTP_PUT_RESPONSE, MHD_NO, MHD_NO);
708     res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
709     MHD_destroy_response (response);
710     return res;
711   }
712   return MHD_NO;
713 }
714
715
716 /**
717  * Call MHD to process pending ipv4 requests and then go back
718  * and schedule the next run.
719  */
720 static void http_server_daemon_v4_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
721 /**
722  * Call MHD to process pending ipv6 requests and then go back
723  * and schedule the next run.
724  */
725 static void http_server_daemon_v6_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
726
727 /**
728  * Function that queries MHD's select sets and
729  * starts the task waiting for them.
730  */
731 static GNUNET_SCHEDULER_TaskIdentifier
732 http_server_daemon_prepare (void * cls, struct MHD_Daemon *daemon_handle)
733 {
734   struct Plugin *plugin = cls;
735   GNUNET_SCHEDULER_TaskIdentifier ret;
736   fd_set rs;
737   fd_set ws;
738   fd_set es;
739   struct GNUNET_NETWORK_FDSet *wrs;
740   struct GNUNET_NETWORK_FDSet *wws;
741   struct GNUNET_NETWORK_FDSet *wes;
742   int max;
743   unsigned long long timeout;
744   int haveto;
745   struct GNUNET_TIME_Relative tv;
746
747   GNUNET_assert(cls !=NULL);
748   ret = GNUNET_SCHEDULER_NO_TASK;
749   FD_ZERO(&rs);
750   FD_ZERO(&ws);
751   FD_ZERO(&es);
752   wrs = GNUNET_NETWORK_fdset_create ();
753   wes = GNUNET_NETWORK_fdset_create ();
754   wws = GNUNET_NETWORK_fdset_create ();
755   max = -1;
756   GNUNET_assert (MHD_YES ==
757                  MHD_get_fdset (daemon_handle,
758                                 &rs,
759                                 &ws,
760                                 &es,
761                                 &max));
762   haveto = MHD_get_timeout (daemon_handle, &timeout);
763   if (haveto == MHD_YES)
764     tv.value = (uint64_t) timeout;
765   else
766     tv = GNUNET_TIME_UNIT_FOREVER_REL;
767   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max);
768   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max);
769   GNUNET_NETWORK_fdset_copy_native (wes, &es, max);
770   if (daemon_handle == plugin->http_server_daemon_v4)
771   {
772     ret = GNUNET_SCHEDULER_add_select (plugin->env->sched,
773                                        GNUNET_SCHEDULER_PRIORITY_DEFAULT,
774                                        GNUNET_SCHEDULER_NO_TASK,
775                                        tv,
776                                        wrs,
777                                        wws,
778                                        &http_server_daemon_v4_run,
779                                        plugin);
780   }
781   if (daemon_handle == plugin->http_server_daemon_v6)
782   {
783     ret = GNUNET_SCHEDULER_add_select (plugin->env->sched,
784                                        GNUNET_SCHEDULER_PRIORITY_DEFAULT,
785                                        GNUNET_SCHEDULER_NO_TASK,
786                                        tv,
787                                        wrs,
788                                        wws,
789                                        &http_server_daemon_v6_run,
790                                        plugin);
791   }
792   GNUNET_NETWORK_fdset_destroy (wrs);
793   GNUNET_NETWORK_fdset_destroy (wws);
794   GNUNET_NETWORK_fdset_destroy (wes);
795   return ret;
796 }
797
798 /**
799  * Call MHD to process pending requests and then go back
800  * and schedule the next run.
801  */
802 static void http_server_daemon_v4_run (void *cls,
803                              const struct GNUNET_SCHEDULER_TaskContext *tc)
804 {
805   struct Plugin *plugin = cls;
806
807   GNUNET_assert(cls !=NULL);
808   if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
809     plugin->http_server_task_v4 = GNUNET_SCHEDULER_NO_TASK;
810
811   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
812     return;
813
814   GNUNET_assert (MHD_YES == MHD_run (plugin->http_server_daemon_v4));
815   plugin->http_server_task_v4 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v4);
816   return;
817 }
818
819
820 /**
821  * Call MHD to process pending requests and then go back
822  * and schedule the next run.
823  */
824 static void http_server_daemon_v6_run (void *cls,
825                              const struct GNUNET_SCHEDULER_TaskContext *tc)
826 {
827   struct Plugin *plugin = cls;
828
829   GNUNET_assert(cls !=NULL);
830   if (plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK)
831     plugin->http_server_task_v6 = GNUNET_SCHEDULER_NO_TASK;
832
833   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
834     return;
835
836   GNUNET_assert (MHD_YES == MHD_run (plugin->http_server_daemon_v6));
837   plugin->http_server_task_v6 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v6);
838   return;
839 }
840
841 /**
842  * Removes a message from the linked list of messages
843  * @param ses session to remove message from
844  * @param msg message to remove
845  * @return GNUNET_SYSERR if msg not found, GNUNET_OK on success
846  */
847
848 static int remove_http_message(struct HTTP_Connection_out * con, struct HTTP_Message * msg)
849 {
850   GNUNET_CONTAINER_DLL_remove(con->pending_msgs_head,con->pending_msgs_tail,msg);
851   GNUNET_free(msg);
852   return GNUNET_OK;
853 }
854
855
856 static size_t header_function( void *ptr, size_t size, size_t nmemb, void *stream)
857 {
858   char * tmp;
859   size_t len = size * nmemb;
860
861   tmp = NULL;
862   if ((size * nmemb) < SIZE_MAX)
863     tmp = GNUNET_malloc (len+1);
864
865   if ((tmp != NULL) && (len > 0))
866   {
867     memcpy(tmp,ptr,len);
868     if (len>=2)
869     {
870       if (tmp[len-2] == 13)
871         tmp[len-2]= '\0';
872     }
873 #if DEBUG_HTTP
874     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Header: `%s'\n",tmp);
875 #endif
876   }
877   if (NULL != tmp)
878     GNUNET_free (tmp);
879
880   return size * nmemb;
881 }
882
883 /**
884  * Callback method used with libcurl
885  * Method is called when libcurl needs to read data during sending
886  * @param stream pointer where to write data
887  * @param size size of an individual element
888  * @param nmemb count of elements that can be written to the buffer
889  * @param ptr source pointer, passed to the libcurl handle
890  * @return bytes written to stream
891  */
892 static size_t send_read_callback(void *stream, size_t size, size_t nmemb, void *ptr)
893 {
894   struct HTTP_Connection_out * con = ptr;
895   struct HTTP_Message * msg = con->pending_msgs_tail;
896   size_t bytes_sent;
897   size_t len;
898
899   if (con->pending_msgs_tail == NULL)
900   {
901     con->send_paused = GNUNET_YES;
902     return CURL_READFUNC_PAUSE;
903   }
904
905   msg = con->pending_msgs_tail;
906   /* data to send */
907   if (msg->pos < msg->size)
908   {
909     /* data fit in buffer */
910     if ((msg->size - msg->pos) <= (size * nmemb))
911     {
912       len = (msg->size - msg->pos);
913       memcpy(stream, &msg->buf[msg->pos], len);
914       msg->pos += len;
915       bytes_sent = len;
916     }
917     else
918     {
919       len = size*nmemb;
920       memcpy(stream, &msg->buf[msg->pos], len);
921       msg->pos += len;
922       bytes_sent = len;
923     }
924   }
925   /* no data to send */
926   else
927   {
928     bytes_sent = 0;
929   }
930
931   if ( msg->pos == msg->size)
932   {
933     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Messge %u bytes sent, removing message from queue \n", msg->pos);
934     /* Calling transmit continuation  */
935     if (( NULL != con->pending_msgs_tail) && (NULL != con->pending_msgs_tail->transmit_cont))
936       msg->transmit_cont (con->pending_msgs_tail->transmit_cont_cls,&(con->session)->identity,GNUNET_OK);
937     remove_http_message(con, msg);
938   }
939   return bytes_sent;
940 }
941
942 /**
943 * Callback method used with libcurl
944 * Method is called when libcurl needs to write data during sending
945 * @param stream pointer where to write data
946 * @param size size of an individual element
947 * @param nmemb count of elements that can be written to the buffer
948 * @param ptr destination pointer, passed to the libcurl handle
949 * @return bytes read from stream
950 */
951 static size_t send_write_callback( void *stream, size_t size, size_t nmemb, void *ptr)
952 {
953   char * data = NULL;
954
955   if ((size * nmemb) < SIZE_MAX)
956     data = GNUNET_malloc(size*nmemb +1);
957   if (data != NULL)
958   {
959     memcpy( data, stream, size*nmemb);
960     data[size*nmemb] = '\0';
961     free (data);
962   }
963   return (size * nmemb);
964
965 }
966
967 /**
968  * Function setting up file descriptors and scheduling task to run
969  * @param ses session to send data to
970  * @return bytes sent to peer
971  */
972 static size_t send_schedule(void *cls, struct Session* ses );
973
974 /**
975  * Function setting up curl handle and selecting message to send
976  * @param ses session to send data to
977  * @return bytes sent to peer
978  */
979 static ssize_t send_initiate (void *cls, struct Session* ses , struct HTTP_Connection_out *con)
980 {
981   struct Plugin *plugin = cls;
982   int bytes_sent = 0;
983   CURLMcode mret;
984   struct HTTP_Message * msg;
985   struct GNUNET_TIME_Relative timeout = GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT;
986
987   /* already connected, no need to initiate connection */
988   if ((con->connected == GNUNET_YES) && (con->curl_handle != NULL) && (con->send_paused == GNUNET_NO))
989     return bytes_sent;
990
991   if ((con->connected == GNUNET_YES) && (con->curl_handle != NULL) && (con->send_paused == GNUNET_YES))
992   {
993     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"UNPAUSING\n");
994     curl_easy_pause(con->curl_handle,CURLPAUSE_CONT);
995     return bytes_sent;
996   }
997
998   /* not connected, initiate connection */
999   GNUNET_assert(cls !=NULL);
1000
1001   if ( NULL == con->curl_handle)
1002     con->curl_handle = curl_easy_init();
1003   GNUNET_assert (con->curl_handle != NULL);
1004
1005
1006
1007   GNUNET_assert (NULL != con->pending_msgs_tail);
1008   msg = con->pending_msgs_tail;
1009
1010 #if DEBUG_CURL
1011   curl_easy_setopt(con->curl_handle, CURLOPT_VERBOSE, 1L);
1012 #endif
1013   curl_easy_setopt(con->curl_handle, CURLOPT_URL, con->url);
1014   curl_easy_setopt(con->curl_handle, CURLOPT_PUT, 1L);
1015   curl_easy_setopt(con->curl_handle, CURLOPT_HEADERFUNCTION, &header_function);
1016   curl_easy_setopt(con->curl_handle, CURLOPT_WRITEHEADER, con);
1017   curl_easy_setopt(con->curl_handle, CURLOPT_READFUNCTION, send_read_callback);
1018   curl_easy_setopt(con->curl_handle, CURLOPT_READDATA, con);
1019   curl_easy_setopt(con->curl_handle, CURLOPT_WRITEFUNCTION, send_write_callback);
1020   curl_easy_setopt(con->curl_handle, CURLOPT_READDATA, con);
1021   curl_easy_setopt(con->curl_handle, CURLOPT_TIMEOUT, (long) timeout.value);
1022   curl_easy_setopt(con->curl_handle, CURLOPT_PRIVATE, con);
1023   curl_easy_setopt(con->curl_handle, CURLOPT_CONNECTTIMEOUT, HTTP_CONNECT_TIMEOUT_DBG);
1024   curl_easy_setopt(con->curl_handle, CURLOPT_BUFFERSIZE, GNUNET_SERVER_MAX_MESSAGE_SIZE);
1025
1026   mret = curl_multi_add_handle(plugin->multi_handle, con->curl_handle);
1027   if (mret != CURLM_OK)
1028   {
1029     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1030                 _("%s failed at %s:%d: `%s'\n"),
1031                 "curl_multi_add_handle", __FILE__, __LINE__,
1032                 curl_multi_strerror (mret));
1033     return -1;
1034   }
1035
1036   con->connected = GNUNET_YES;
1037
1038   bytes_sent = send_schedule (plugin, ses);
1039   return bytes_sent;
1040 }
1041
1042 static void send_execute (void *cls,
1043              const struct GNUNET_SCHEDULER_TaskContext *tc)
1044 {
1045   struct Plugin *plugin = cls;
1046   static unsigned int handles_last_run;
1047   int running;
1048   struct CURLMsg *msg;
1049   CURLMcode mret;
1050   struct HTTP_Connection_out * con = NULL;
1051   struct Session * cs = NULL;
1052   long http_result;
1053
1054   GNUNET_assert(cls !=NULL);
1055   plugin->http_server_task_send = GNUNET_SCHEDULER_NO_TASK;
1056   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1057     return;
1058
1059   do
1060     {
1061       running = 0;
1062       mret = curl_multi_perform (plugin->multi_handle, &running);
1063       if (running < handles_last_run)
1064         {
1065           do
1066             {
1067
1068               msg = curl_multi_info_read (plugin->multi_handle, &running);
1069               GNUNET_break (msg != NULL);
1070               if (msg == NULL)
1071                 break;
1072               /* get session for affected curl handle */
1073               GNUNET_assert ( msg->easy_handle != NULL );
1074               curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char *) &con);
1075               GNUNET_assert ( con != NULL );
1076               cs = con->session;
1077               GNUNET_assert ( cs != NULL );
1078               switch (msg->msg)
1079                 {
1080
1081                 case CURLMSG_DONE:
1082                   if ( (msg->data.result != CURLE_OK) &&
1083                        (msg->data.result != CURLE_GOT_NOTHING) )
1084                   {
1085                     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
1086                                _("%s failed for `%s' at %s:%d: `%s'\n"),
1087                                "curl_multi_perform",
1088                                GNUNET_i2s(&cs->identity),
1089                                __FILE__,
1090                                __LINE__,
1091                                curl_easy_strerror (msg->data.result));
1092                     /* sending msg failed*/
1093                     con->connected = GNUNET_NO;
1094                     if (( NULL != con->pending_msgs_tail) && ( NULL != con->pending_msgs_tail->transmit_cont))
1095                       con->pending_msgs_tail->transmit_cont (con->pending_msgs_tail->transmit_cont_cls,&con->session->identity,GNUNET_SYSERR);
1096
1097                   }
1098                   else
1099                   {
1100                     GNUNET_assert (CURLE_OK == curl_easy_getinfo(msg->easy_handle, CURLINFO_RESPONSE_CODE, &http_result));
1101                     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1102                                 "Send to peer `%s' completed with code %u\n", GNUNET_i2s(&cs->identity), http_result );
1103
1104                     curl_easy_cleanup(con->curl_handle);
1105                     con->connected = GNUNET_NO;
1106                     con->curl_handle=NULL;
1107
1108                     /* Calling transmit continuation  */
1109                     if (( NULL != con->pending_msgs_tail) && (NULL != con->pending_msgs_tail->transmit_cont))
1110                     {
1111                       /* HTTP 1xx : Last message before here was informational */
1112                       if ((http_result >=100) && (http_result < 200))
1113                         con->pending_msgs_tail->transmit_cont (con->pending_msgs_tail->transmit_cont_cls,&cs->identity,GNUNET_OK);
1114                       /* HTTP 2xx: successful operations */
1115                       if ((http_result >=200) && (http_result < 300))
1116                         con->pending_msgs_tail->transmit_cont (con->pending_msgs_tail->transmit_cont_cls,&cs->identity,GNUNET_OK);
1117                       /* HTTP 3xx..5xx: error */
1118                       if ((http_result >=300) && (http_result < 600))
1119                         con->pending_msgs_tail->transmit_cont (con->pending_msgs_tail->transmit_cont_cls,&cs->identity,GNUNET_SYSERR);
1120                     }
1121                   }
1122                   if (con->pending_msgs_tail != NULL)
1123                   {
1124                     if (con->pending_msgs_tail->pos>0)
1125                       remove_http_message(con, con->pending_msgs_tail);
1126                     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message could not be removed from session `%s'\n", GNUNET_i2s(&cs->identity));
1127                   }
1128                   return;
1129                 default:
1130                   break;
1131                 }
1132
1133             }
1134           while ( (running > 0) );
1135         }
1136       handles_last_run = running;
1137     }
1138   while (mret == CURLM_CALL_MULTI_PERFORM);
1139   send_schedule(plugin, cls);
1140 }
1141
1142
1143 /**
1144  * Function setting up file descriptors and scheduling task to run
1145  * @param ses session to send data to
1146  * @return bytes sent to peer
1147  */
1148 static size_t send_schedule(void *cls, struct Session* ses )
1149 {
1150   struct Plugin *plugin = cls;
1151   fd_set rs;
1152   fd_set ws;
1153   fd_set es;
1154   int max;
1155   struct GNUNET_NETWORK_FDSet *grs;
1156   struct GNUNET_NETWORK_FDSet *gws;
1157   long to;
1158   CURLMcode mret;
1159
1160   GNUNET_assert(cls !=NULL);
1161   max = -1;
1162   FD_ZERO (&rs);
1163   FD_ZERO (&ws);
1164   FD_ZERO (&es);
1165   mret = curl_multi_fdset (plugin->multi_handle, &rs, &ws, &es, &max);
1166   if (mret != CURLM_OK)
1167     {
1168       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1169                   _("%s failed at %s:%d: `%s'\n"),
1170                   "curl_multi_fdset", __FILE__, __LINE__,
1171                   curl_multi_strerror (mret));
1172       return -1;
1173     }
1174   mret = curl_multi_timeout (plugin->multi_handle, &to);
1175   if (mret != CURLM_OK)
1176     {
1177       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1178                   _("%s failed at %s:%d: `%s'\n"),
1179                   "curl_multi_timeout", __FILE__, __LINE__,
1180                   curl_multi_strerror (mret));
1181       return -1;
1182     }
1183
1184   grs = GNUNET_NETWORK_fdset_create ();
1185   gws = GNUNET_NETWORK_fdset_create ();
1186   GNUNET_NETWORK_fdset_copy_native (grs, &rs, max + 1);
1187   GNUNET_NETWORK_fdset_copy_native (gws, &ws, max + 1);
1188   plugin->http_server_task_send = GNUNET_SCHEDULER_add_select (plugin->env->sched,
1189                                    GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1190                                    GNUNET_SCHEDULER_NO_TASK,
1191                                    GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 0),
1192                                    grs,
1193                                    gws,
1194                                    &send_execute,
1195                                    plugin);
1196   GNUNET_NETWORK_fdset_destroy (gws);
1197   GNUNET_NETWORK_fdset_destroy (grs);
1198
1199   /* FIXME: return bytes REALLY sent */
1200   return 0;
1201 }
1202
1203
1204 /**
1205  * Function that can be used by the transport service to transmit
1206  * a message using the plugin.
1207  *
1208  * @param cls closure
1209  * @param target who should receive this message
1210  * @param priority how important is the message
1211  * @param msgbuf the message to transmit
1212  * @param msgbuf_size number of bytes in 'msgbuf'
1213  * @param to when should we time out
1214  * @param session which session must be used (or NULL for "any")
1215  * @param addr the address to use (can be NULL if the plugin
1216  *                is "on its own" (i.e. re-use existing TCP connection))
1217  * @param addrlen length of the address in bytes
1218  * @param force_address GNUNET_YES if the plugin MUST use the given address,
1219  *                otherwise the plugin may use other addresses or
1220  *                existing connections (if available)
1221  * @param cont continuation to call once the message has
1222  *        been transmitted (or if the transport is ready
1223  *        for the next transmission call; or if the
1224  *        peer disconnected...)
1225  * @param cont_cls closure for cont
1226  * @return number of bytes used (on the physical network, with overheads);
1227  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
1228  *         and does NOT mean that the message was not transmitted (DV)
1229  */
1230 static ssize_t
1231 http_plugin_send (void *cls,
1232                   const struct GNUNET_PeerIdentity *target,
1233                   const char *msgbuf,
1234                   size_t msgbuf_size,
1235                   unsigned int priority,
1236                   struct GNUNET_TIME_Relative to,
1237                   struct Session *session,
1238                   const void *addr,
1239                   size_t addrlen,
1240                   int force_address,
1241                   GNUNET_TRANSPORT_TransmitContinuation cont,
1242                   void *cont_cls)
1243 {
1244   struct Plugin *plugin = cls;
1245   char *address;
1246   char *url;
1247   struct Session *cs;
1248   struct HTTP_Message *msg;
1249   struct HTTP_Connection_out *con;
1250   //unsigned int ret;
1251
1252   GNUNET_assert(cls !=NULL);
1253   url = NULL;
1254   address = NULL;
1255
1256   /* get session from hashmap */
1257   cs = session_get(plugin, target);
1258   con = session_check_outbound_address(plugin, cs, addr, addrlen);
1259
1260   /* create msg */
1261   msg = GNUNET_malloc (sizeof (struct HTTP_Message) + msgbuf_size);
1262   msg->next = NULL;
1263   msg->size = msgbuf_size;
1264   msg->pos = 0;
1265   msg->buf = (char *) &msg[1];
1266   msg->transmit_cont = cont;
1267   msg->transmit_cont_cls = cont_cls;
1268   memcpy (msg->buf,msgbuf, msgbuf_size);
1269
1270   /* must use this address */
1271   if (force_address == GNUNET_YES)
1272   {
1273     /* enqueue in connection message queue */
1274     GNUNET_CONTAINER_DLL_insert(con->pending_msgs_head,con->pending_msgs_tail,msg);
1275   }
1276   /* can use existing connection to send */
1277   else
1278   {
1279     /* enqueue in connection message queue */
1280     GNUNET_CONTAINER_DLL_insert(con->pending_msgs_head,con->pending_msgs_tail,msg);
1281   }
1282   return send_initiate (plugin, cs, con);
1283 }
1284
1285
1286
1287 /**
1288  * Function that can be used to force the plugin to disconnect
1289  * from the given peer and cancel all previous transmissions
1290  * (and their continuationc).
1291  *
1292  * @param cls closure
1293  * @param target peer from which to disconnect
1294  */
1295 static void
1296 http_plugin_disconnect (void *cls,
1297                             const struct GNUNET_PeerIdentity *target)
1298 {
1299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"HTTP Plugin: http_plugin_disconnect\n");
1300   // struct Plugin *plugin = cls;
1301   // FIXME
1302 }
1303
1304
1305 /**
1306  * Convert the transports address to a nice, human-readable
1307  * format.
1308  *
1309  * @param cls closure
1310  * @param type name of the transport that generated the address
1311  * @param addr one of the addresses of the host, NULL for the last address
1312  *        the specific address format depends on the transport
1313  * @param addrlen length of the address
1314  * @param numeric should (IP) addresses be displayed in numeric form?
1315  * @param timeout after how long should we give up?
1316  * @param asc function to call on each string
1317  * @param asc_cls closure for asc
1318  */
1319 static void
1320 http_plugin_address_pretty_printer (void *cls,
1321                                         const char *type,
1322                                         const void *addr,
1323                                         size_t addrlen,
1324                                         int numeric,
1325                                         struct GNUNET_TIME_Relative timeout,
1326                                         GNUNET_TRANSPORT_AddressStringCallback
1327                                         asc, void *asc_cls)
1328 {
1329   const struct IPv4HttpAddress *t4;
1330   const struct IPv6HttpAddress *t6;
1331   struct sockaddr_in a4;
1332   struct sockaddr_in6 a6;
1333   char * address;
1334   char * ret;
1335   unsigned int port;
1336   unsigned int res;
1337
1338   GNUNET_assert(cls !=NULL);
1339   if (addrlen == sizeof (struct IPv6HttpAddress))
1340   {
1341     address = GNUNET_malloc (INET6_ADDRSTRLEN);
1342     t6 = addr;
1343     a6.sin6_addr = t6->ipv6_addr;
1344     inet_ntop(AF_INET6, &(a6.sin6_addr),address,INET6_ADDRSTRLEN);
1345     port = ntohs(t6->u6_port);
1346   }
1347   else if (addrlen == sizeof (struct IPv4HttpAddress))
1348   {
1349     address = GNUNET_malloc (INET_ADDRSTRLEN);
1350     t4 = addr;
1351     a4.sin_addr.s_addr =  t4->ipv4_addr;
1352     inet_ntop(AF_INET, &(a4.sin_addr),address,INET_ADDRSTRLEN);
1353     port = ntohs(t4->u_port);
1354   }
1355   else
1356   {
1357     /* invalid address */
1358     GNUNET_break_op (0);
1359     asc (asc_cls, NULL);
1360     return;
1361   }
1362   res = GNUNET_asprintf(&ret,"http://%s:%u/",address,port);
1363   GNUNET_free (address);
1364   GNUNET_assert(res != 0);
1365
1366   asc (asc_cls, ret);
1367 }
1368
1369
1370
1371 /**
1372  * Another peer has suggested an address for this
1373  * peer and transport plugin.  Check that this could be a valid
1374  * address.  If so, consider adding it to the list
1375  * of addresses.
1376  *
1377  * @param cls closure
1378  * @param addr pointer to the address
1379  * @param addrlen length of addr
1380  * @return GNUNET_OK if this is a plausible address for this peer
1381  *         and transport
1382  */
1383 static int
1384 http_plugin_address_suggested (void *cls,
1385                                const void *addr, size_t addrlen)
1386 {
1387   struct Plugin *plugin = cls;
1388   struct IPv4HttpAddress *v4;
1389   struct IPv6HttpAddress *v6;
1390   unsigned int port;
1391
1392   GNUNET_assert(cls !=NULL);
1393   if ((addrlen != sizeof (struct IPv4HttpAddress)) &&
1394       (addrlen != sizeof (struct IPv6HttpAddress)))
1395     {
1396       return GNUNET_SYSERR;
1397     }
1398   if (addrlen == sizeof (struct IPv4HttpAddress))
1399     {
1400       v4 = (struct IPv4HttpAddress *) addr;
1401       if (INADDR_LOOPBACK == ntohl(v4->ipv4_addr))
1402       {
1403         return GNUNET_SYSERR;
1404       }
1405       port = ntohs (v4->u_port);
1406       if (port != plugin->port_inbound)
1407       {
1408         return GNUNET_SYSERR;
1409       }
1410     }
1411   else
1412     {
1413       v6 = (struct IPv6HttpAddress *) addr;
1414       if (IN6_IS_ADDR_LINKLOCAL (&v6->ipv6_addr))
1415         {
1416           return GNUNET_SYSERR;
1417         }
1418       port = ntohs (v6->u6_port);
1419       if (port != plugin->port_inbound)
1420       {
1421         return GNUNET_SYSERR;
1422       }
1423     }
1424   return GNUNET_OK;
1425 }
1426
1427
1428 /**
1429  * Function called for a quick conversion of the binary address to
1430  * a numeric address.  Note that the caller must not free the
1431  * address and that the next call to this function is allowed
1432  * to override the address again.
1433  *
1434  * @param cls closure
1435  * @param addr binary address
1436  * @param addrlen length of the address
1437  * @return string representing the same address
1438  */
1439 static const char*
1440 http_plugin_address_to_string (void *cls,
1441                                    const void *addr,
1442                                    size_t addrlen)
1443 {
1444   const struct IPv4HttpAddress *t4;
1445   const struct IPv6HttpAddress *t6;
1446   struct sockaddr_in a4;
1447   struct sockaddr_in6 a6;
1448   char * address;
1449   char * ret;
1450   unsigned int port;
1451   unsigned int res;
1452
1453   GNUNET_assert(cls !=NULL);
1454   if (addrlen == sizeof (struct IPv6HttpAddress))
1455     {
1456       address = GNUNET_malloc (INET6_ADDRSTRLEN);
1457       t6 = addr;
1458       a6.sin6_addr = t6->ipv6_addr;
1459       inet_ntop(AF_INET6, &(a6.sin6_addr),address,INET6_ADDRSTRLEN);
1460       port = ntohs(t6->u6_port);
1461     }
1462   else if (addrlen == sizeof (struct IPv4HttpAddress))
1463     {
1464       address = GNUNET_malloc (INET_ADDRSTRLEN);
1465       t4 = addr;
1466       a4.sin_addr.s_addr =  t4->ipv4_addr;
1467       inet_ntop(AF_INET, &(a4.sin_addr),address,INET_ADDRSTRLEN);
1468       port = ntohs(t4->u_port);
1469     }
1470   else
1471     {
1472       /* invalid address */
1473       return NULL;
1474     }
1475   res = GNUNET_asprintf(&ret,"%s:%u",address,port);
1476   GNUNET_free (address);
1477   GNUNET_assert(res != 0);
1478   return ret;
1479 }
1480
1481 /**
1482  * Add the IP of our network interface to the list of
1483  * our external IP addresses.
1484  *
1485  * @param cls the 'struct Plugin*'
1486  * @param name name of the interface
1487  * @param isDefault do we think this may be our default interface
1488  * @param addr address of the interface
1489  * @param addrlen number of bytes in addr
1490  * @return GNUNET_OK to continue iterating
1491  */
1492 static int
1493 process_interfaces (void *cls,
1494                     const char *name,
1495                     int isDefault,
1496                     const struct sockaddr *addr, socklen_t addrlen)
1497 {
1498   struct Plugin *plugin = cls;
1499   struct IPv4HttpAddress t4;
1500   struct IPv6HttpAddress t6;
1501   int af;
1502   void *arg;
1503   uint16_t args;
1504
1505   GNUNET_assert(cls !=NULL);
1506   af = addr->sa_family;
1507   if (af == AF_INET)
1508     {
1509       if (INADDR_LOOPBACK == ntohl(((struct sockaddr_in *) addr)->sin_addr.s_addr))
1510       {
1511         /* skip loopback addresses */
1512         return GNUNET_OK;
1513       }
1514       t4.ipv4_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr;
1515       t4.u_port = htons (plugin->port_inbound);
1516       arg = &t4;
1517       args = sizeof (t4);
1518     }
1519   else if (af == AF_INET6)
1520     {
1521       if (IN6_IS_ADDR_LINKLOCAL (&((struct sockaddr_in6 *) addr)->sin6_addr))
1522         {
1523           /* skip link local addresses */
1524           return GNUNET_OK;
1525         }
1526       if (IN6_IS_ADDR_LOOPBACK (&((struct sockaddr_in6 *) addr)->sin6_addr))
1527         {
1528           /* skip loopback addresses */
1529           return GNUNET_OK;
1530         }
1531       memcpy (&t6.ipv6_addr,
1532               &((struct sockaddr_in6 *) addr)->sin6_addr,
1533               sizeof (struct in6_addr));
1534       t6.u6_port = htons (plugin->port_inbound);
1535       arg = &t6;
1536       args = sizeof (t6);
1537     }
1538   else
1539     {
1540       GNUNET_break (0);
1541       return GNUNET_OK;
1542     }
1543   plugin->env->notify_address(plugin->env->cls,"http",arg, args, GNUNET_TIME_UNIT_FOREVER_REL);
1544   return GNUNET_OK;
1545 }
1546
1547 int hashMapFreeIterator (void *cls, const GNUNET_HashCode *key, void *value)
1548 {
1549   struct Session * cs = value;
1550   struct HTTP_Connection_out * con = cs->outbound_connections_head;
1551   struct HTTP_Connection_out * tmp_con = cs->outbound_connections_head;
1552   struct HTTP_Message * msg = NULL;
1553   struct HTTP_Message * tmp_msg = NULL;
1554
1555   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Freeing session for peer `%s'\n",GNUNET_i2s(&cs->identity));
1556
1557   /* freeing connections */
1558   while (con!=NULL)
1559   {
1560     GNUNET_free(con->url);
1561     if (con->curl_handle!=NULL)
1562       curl_easy_cleanup(con->curl_handle);
1563     con->curl_handle = NULL;
1564     msg = con->pending_msgs_head;
1565     while (msg!=NULL)
1566     {
1567       tmp_msg=msg->next;
1568       GNUNET_free(msg);
1569       msg = tmp_msg;
1570     }
1571     tmp_con=con->next;
1572     GNUNET_free(con);
1573     con=tmp_con;
1574   }
1575   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"All sessions freed \n");
1576
1577   GNUNET_free (cs);
1578   return GNUNET_YES;
1579 }
1580
1581 /**
1582  * Exit point from the plugin.
1583  */
1584 void *
1585 libgnunet_plugin_transport_http_done (void *cls)
1586 {
1587   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1588   struct Plugin *plugin = api->cls;
1589   CURLMcode mret;
1590
1591   GNUNET_assert(cls !=NULL);
1592
1593
1594   if ( plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
1595   {
1596     GNUNET_SCHEDULER_cancel(plugin->env->sched, plugin->http_server_task_v4);
1597     plugin->http_server_task_v4 = GNUNET_SCHEDULER_NO_TASK;
1598   }
1599
1600   if ( plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK)
1601   {
1602     GNUNET_SCHEDULER_cancel(plugin->env->sched, plugin->http_server_task_v6);
1603     plugin->http_server_task_v6 = GNUNET_SCHEDULER_NO_TASK;
1604   }
1605
1606   if ( plugin->http_server_task_send != GNUNET_SCHEDULER_NO_TASK)
1607   {
1608     GNUNET_SCHEDULER_cancel(plugin->env->sched, plugin->http_server_task_send);
1609     plugin->http_server_task_send = GNUNET_SCHEDULER_NO_TASK;
1610   }
1611
1612   if (plugin->http_server_daemon_v4 != NULL)
1613   {
1614     MHD_stop_daemon (plugin->http_server_daemon_v4);
1615     plugin->http_server_daemon_v4 = NULL;
1616   }
1617   if (plugin->http_server_daemon_v6 != NULL)
1618   {
1619     MHD_stop_daemon (plugin->http_server_daemon_v6);
1620     plugin->http_server_daemon_v6 = NULL;
1621   }
1622
1623   /* free all sessions */
1624   GNUNET_CONTAINER_multihashmap_iterate (plugin->sessions,
1625                                          &hashMapFreeIterator,
1626                                          NULL);
1627
1628   GNUNET_CONTAINER_multihashmap_destroy (plugin->sessions);
1629
1630   mret = curl_multi_cleanup(plugin->multi_handle);
1631   if ( CURLM_OK != mret)
1632     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"curl multihandle clean up failed");
1633
1634   GNUNET_free (plugin);
1635   GNUNET_free (api);
1636   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Unload http plugin complete...\n");
1637   return NULL;
1638 }
1639
1640
1641 /**
1642  * Entry point for the plugin.
1643  */
1644 void *
1645 libgnunet_plugin_transport_http_init (void *cls)
1646 {
1647   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1648   struct Plugin *plugin;
1649   struct GNUNET_TRANSPORT_PluginFunctions *api;
1650   struct GNUNET_TIME_Relative gn_timeout;
1651   long long unsigned int port;
1652
1653   GNUNET_assert(cls !=NULL);
1654   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting http plugin...\n");
1655
1656   plugin = GNUNET_malloc (sizeof (struct Plugin));
1657   plugin->env = env;
1658   plugin->sessions = NULL;
1659
1660   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1661   api->cls = plugin;
1662   api->send = &http_plugin_send;
1663   api->disconnect = &http_plugin_disconnect;
1664   api->address_pretty_printer = &http_plugin_address_pretty_printer;
1665   api->check_address = &http_plugin_address_suggested;
1666   api->address_to_string = &http_plugin_address_to_string;
1667
1668   /* Hashing our identity to use it in URLs */
1669   GNUNET_CRYPTO_hash_to_enc ( &(plugin->env->my_identity->hashPubKey), &plugin->my_ascii_hash_ident);
1670
1671   /* Reading port number from config file */
1672   if ((GNUNET_OK !=
1673        GNUNET_CONFIGURATION_get_value_number (env->cfg,
1674                                               "transport-http",
1675                                               "PORT",
1676                                               &port)) ||
1677       (port > 65535) )
1678     {
1679       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
1680                        "http",
1681                        _
1682                        ("Require valid port number for transport plugin `%s' in configuration!\n"),
1683                        "transport-http");
1684       libgnunet_plugin_transport_http_done (api);
1685       return NULL;
1686     }
1687   GNUNET_assert ((port > 0) && (port <= 65535));
1688   plugin->port_inbound = port;
1689   gn_timeout = GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT;
1690   if ((plugin->http_server_daemon_v4 == NULL) && (plugin->http_server_daemon_v6 == NULL) && (port != 0))
1691     {
1692     plugin->http_server_daemon_v6 = MHD_start_daemon (MHD_USE_IPv6,
1693                                        port,
1694                                        &acceptPolicyCallback,
1695                                        plugin , &accessHandlerCallback, plugin,
1696                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
1697                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
1698                                        MHD_OPTION_CONNECTION_TIMEOUT, (gn_timeout.value / 1000),
1699                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
1700                                        MHD_OPTION_NOTIFY_COMPLETED, &requestCompletedCallback, NULL,
1701                                        MHD_OPTION_END);
1702     plugin->http_server_daemon_v4 = MHD_start_daemon (MHD_NO_FLAG,
1703                                        port,
1704                                        &acceptPolicyCallback,
1705                                        plugin , &accessHandlerCallback, plugin,
1706                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
1707                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
1708                                        MHD_OPTION_CONNECTION_TIMEOUT, (gn_timeout.value / 1000),
1709                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
1710                                        MHD_OPTION_NOTIFY_COMPLETED, &requestCompletedCallback, NULL,
1711                                        MHD_OPTION_END);
1712     }
1713   if (plugin->http_server_daemon_v4 != NULL)
1714     plugin->http_server_task_v4 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v4);
1715   if (plugin->http_server_daemon_v6 != NULL)
1716     plugin->http_server_task_v6 = http_server_daemon_prepare (plugin, plugin->http_server_daemon_v6);
1717
1718   if (plugin->http_server_task_v4 != GNUNET_SCHEDULER_NO_TASK)
1719     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 on port %u\n",port);
1720   else if (plugin->http_server_task_v6 != GNUNET_SCHEDULER_NO_TASK)
1721     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 and IPv6 on port %u\n",port);
1722   else
1723   {
1724     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"No MHD was started, transport plugin not functional!\n");
1725     libgnunet_plugin_transport_http_done (api);
1726     return NULL;
1727   }
1728
1729   /* Initializing cURL */
1730   curl_global_init(CURL_GLOBAL_ALL);
1731   plugin->multi_handle = curl_multi_init();
1732
1733   if ( NULL == plugin->multi_handle )
1734   {
1735     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
1736                      "http",
1737                      _("Could not initialize curl multi handle, failed to start http plugin!\n"),
1738                      "transport-http");
1739     libgnunet_plugin_transport_http_done (api);
1740     return NULL;
1741   }
1742
1743   plugin->sessions = GNUNET_CONTAINER_multihashmap_create (10);
1744   GNUNET_OS_network_interfaces_list (&process_interfaces, plugin);
1745
1746   return api;
1747 }
1748
1749 /* end of plugin_transport_http.c */