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