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