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