(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_protocols.h"
29 #include "gnunet_connection_lib.h"
30 #include "gnunet_server_lib.h"
31 #include "gnunet_service_lib.h"
32 #include "gnunet_statistics_service.h"
33 #include "gnunet_transport_service.h"
34 #include "gnunet_resolver_service.h"
35 #include "plugin_transport.h"
36 #include "microhttpd.h"
37 #include <curl/curl.h>
38
39 #define DEBUG_HTTP GNUNET_NO
40
41 /**
42  * Text of the response sent back after the last bytes of a PUT
43  * request have been received (just to formally obey the HTTP
44  * protocol).
45  */
46 #define HTTP_PUT_RESPONSE "Thank you!"
47
48
49 /**
50  * After how long do we expire an address that we
51  * learned from another peer if it is not reconfirmed
52  * by anyone?
53  */
54 #define LEARNED_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
55
56
57 /**
58  * Encapsulation of all of the state of the plugin.
59  */
60 struct Plugin;
61
62
63 /**
64  * Session handle for connections.
65  */
66 struct Session
67 {
68
69   /**
70    * Stored in a linked list.
71    */
72   struct Session *next;
73
74   /**
75    * Pointer to the global plugin struct.
76    */
77   struct Plugin *plugin;
78
79   /**
80    * Continuation function to call once the transmission buffer
81    * has again space available.  NULL if there is no
82    * continuation to call.
83    */
84   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
85
86   /**
87    * Closure for transmit_cont.
88    */
89   void *transmit_cont_cls;
90
91   /**
92    * To whom are we talking to (set to our identity
93    * if we are still waiting for the welcome message)
94    */
95   struct GNUNET_PeerIdentity sender;
96
97   /**
98    * Sender's url
99    */
100   char * url;
101
102   /**
103    * Sender's ip address to distinguish between incoming connections
104    */
105   char * ip;
106
107   /**
108    * Sender's ip address to distinguish between incoming connections
109    */
110   struct sockaddr_in * addr;
111
112   /**
113    * Did we initiate the connection (GNUNET_YES) or the other peer (GNUNET_NO)?
114    */
115   unsigned int is_client;
116
117   /**
118    * Is the connection active (GNUNET_YES) or terminated (GNUNET_NO)?
119    */
120   unsigned int is_active;
121
122   /**
123    * At what time did we reset last_received last?
124    */
125   struct GNUNET_TIME_Absolute last_quota_update;
126
127   /**
128    * How many bytes have we received since the "last_quota_update"
129    * timestamp?
130    */
131   uint64_t last_received;
132
133   /**
134    * Number of bytes per ms that this peer is allowed
135    * to send to us.
136    */
137   uint32_t quota;
138
139 };
140
141 /**
142  * Encapsulation of all of the state of the plugin.
143  */
144 struct Plugin
145 {
146   /**
147    * Our environment.
148    */
149   struct GNUNET_TRANSPORT_PluginEnvironment *env;
150
151   /**
152    * List of open sessions.
153    */
154   struct Session *sessions;
155
156   /**
157    * Number of active sessions
158    */
159
160   unsigned int session_count;
161
162 };
163
164 /**
165  * Daemon for listening for new IPv4 connections.
166  */
167 static struct MHD_Daemon *http_daemon_v4;
168
169 /**
170  * Daemon for listening for new IPv6connections.
171  */
172 static struct MHD_Daemon *http_daemon_v6;
173
174 /**
175  * Our primary task for http daemon handling IPv4 connections
176  */
177 static GNUNET_SCHEDULER_TaskIdentifier http_task_v4;
178
179 /**
180  * Our primary task for http daemon handling IPv6 connections
181  */
182 static GNUNET_SCHEDULER_TaskIdentifier http_task_v6;
183
184
185 /**
186  * Pl
187  */
188 static struct Plugin *plugin;
189
190 /**
191  * cURL Multihandle
192  */
193 static CURLM *multi_handle;
194
195 /**
196  * Our hostname
197  */
198 static char * hostname;
199
200
201 /**
202  * Finds a http session in our linked list using peer identity as a key
203  * @param peer peeridentity
204  * @return http session corresponding to peer identity
205  */
206 static struct Session * find_session_by_pi( const struct GNUNET_PeerIdentity *peer )
207 {
208   struct Session * cur;
209   GNUNET_HashCode hc_peer;
210   GNUNET_HashCode hc_current;
211
212   cur = plugin->sessions;
213   hc_peer = peer->hashPubKey;
214   while (cur != NULL)
215   {
216     hc_current = cur->sender.hashPubKey;
217     if ( 0 == GNUNET_CRYPTO_hash_cmp( &hc_peer, &hc_current))
218       return cur;
219     cur = plugin->sessions->next;
220   }
221   return NULL;
222 }
223
224 #if 0
225 /**
226  * Finds a http session in our linked list using peer identity as a key
227  * @param peer peeridentity
228  * @return http session corresponding to peer identity
229  */
230 static struct Session * find_session_by_ip( char * ip )
231 {
232   /*
233   struct Session * cur;
234
235   cur = plugin->sessions;
236   while (cur != NULL)
237   {
238     hc_current = cur->sender.hashPubKey;
239     if ( 0 == GNUNET_CRYPTO_hash_cmp( &hc_peer, &hc_current))
240       return cur;
241     cur = plugin->sessions->next;
242   }
243   */
244   return NULL;
245 }
246 #endif
247
248 /**
249  * Creates a http session in our linked list by peer identity
250  * Only peer is set here, all other  fields have to be set by calling method
251  * @param peer peeridentity
252  * @return created http session
253  */
254 static struct Session * create_session_by_pi( const struct GNUNET_PeerIdentity *peer )
255 {
256   struct Session * cur;
257   struct Session * last_in_list;
258   /* Create a new session object */
259   cur = GNUNET_malloc (sizeof (struct Session));
260   memcpy( &(cur->sender), peer, sizeof( struct GNUNET_PeerIdentity ) );
261
262   cur->next = NULL;
263
264   /* Insert into linked list */
265   last_in_list = plugin->sessions;
266   while (last_in_list->next != NULL)
267   {
268     last_in_list = last_in_list->next;
269   }
270   last_in_list->next = cur;
271
272   return cur;
273 }
274
275 #if 0
276 /**
277  * Creates a http session in our linked list by ip address
278  * Only ip is set here, all other fields have to be set by calling method
279  * @param peer peeridentity
280  * @return created http session
281  */
282 static struct Session * create_session_by_ip ( struct sockaddr_in * addr )
283 {
284   struct Session * cur;
285   struct Session * last_in_list;
286   /* Create a new session object */
287   cur = GNUNET_malloc (sizeof (struct Session));
288   // FIXME: memcpy( &(cur->ip), , sizeof( struct GNUNET_PeerIdentity ) );
289
290   cur->next = NULL;
291
292   /* Insert into linked list */
293   last_in_list = plugin->sessions;
294   while (last_in_list->next != NULL)
295   {
296     last_in_list = last_in_list->next;
297   }
298   last_in_list->next = cur;
299
300   return cur;
301 }
302 #endif
303
304 /**
305  * Callback called by MHD when a connection is terminated
306  */
307 static void requestCompletedCallback (void *cls, struct MHD_Connection * connection, void **httpSessionCache)
308 {
309   struct Session * cs;
310
311   cs = *httpSessionCache;
312   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Connection `%s' was terminated\n",cs->ip);
313   /* session set to inactive */
314   cs->is_active = GNUNET_NO;
315
316   return;
317 }
318
319 /**
320  * Check if we are allowed to connect to the given IP.
321  */
322 static int
323 acceptPolicyCallback (void *cls,
324                       const struct sockaddr *addr, socklen_t addr_len)
325 {
326   /* Every connection is accepted, nothing more to do here */
327   return MHD_YES;
328 }
329
330
331 /**
332  * Process GET or PUT request received via MHD.  For
333  * GET, queue response that will send back our pending
334  * messages.  For PUT, process incoming data and send
335  * to GNUnet core.  In either case, check if a session
336  * already exists and create a new one if not.
337  */
338 static int
339 accessHandlerCallback (void *cls,
340                        struct MHD_Connection *session,
341                        const char *url,
342                        const char *method,
343                        const char *version,
344                        const char *upload_data,
345                        size_t * upload_data_size, void **httpSessionCache)
346 {
347   struct MHD_Response *response;
348   struct Session * cs;
349   struct Session * cs_temp;
350   const union MHD_ConnectionInfo * conn_info;
351   struct sockaddr_in  *addrin;
352   struct sockaddr_in6 *addrin6;
353   char * address = NULL;
354
355
356   conn_info = MHD_get_connection_info(session, MHD_CONNECTION_INFO_CLIENT_ADDRESS );
357
358   /* Incoming IPv4 connection */
359   if ( AF_INET == conn_info->client_addr->sin_family)
360   {
361     address = GNUNET_malloc (INET_ADDRSTRLEN);
362     addrin = conn_info->client_addr;
363     inet_ntop(addrin->sin_family, &(addrin->sin_addr),address,INET_ADDRSTRLEN);
364   }
365   /* Incoming IPv6 connection */
366   if ( AF_INET6 == conn_info->client_addr->sin_family)
367   {
368     address = GNUNET_malloc (INET6_ADDRSTRLEN);
369     addrin6 = (struct sockaddr_in6 *) conn_info->client_addr;
370     inet_ntop(addrin6->sin6_family, &(addrin6->sin6_addr),address,INET6_ADDRSTRLEN);
371   }
372
373
374   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"HTTP Daemon has an incoming `%s' request from `%s'\n",method, address);
375
376   /* find session for address */
377   cs = NULL;
378   if (plugin->session_count > 0)
379   {
380     cs = plugin->sessions;
381     while ( NULL != cs)
382     {
383       if ( 0 == memcmp(conn_info->client_addr,cs->addr, sizeof (struct sockaddr_in)))
384       {
385         /* existing session for this address found */
386         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Session `%s' found\n",address);
387         break;
388       }
389       cs = cs->next;
390     }
391   }
392
393   if (cs == NULL )
394   {
395     /* create new session object */
396     cs = GNUNET_malloc ( sizeof( struct Session) );
397     cs->ip = address;
398     cs->addr = conn_info->client_addr;
399     cs->next = NULL;
400     cs->is_active = GNUNET_YES;
401
402     /* Insert session into linked list */
403     if ( plugin->sessions == NULL)
404     {
405       plugin->sessions = cs;
406       plugin->session_count = 1;
407     }
408     cs_temp = plugin->sessions;
409     while ( cs_temp->next != NULL )
410     {
411       cs_temp = cs_temp->next;
412     }
413     if (cs_temp != cs )
414     {
415       cs_temp->next = cs;
416       plugin->session_count++;
417     }
418     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"New Session `%s' inserted, count %u \n", address, plugin->session_count);
419   }
420
421   /* Set closure */
422   if (*httpSessionCache == NULL)
423   {
424     *httpSessionCache = cs;
425   }
426
427
428   /* Is it a PUT or a GET request */
429   if ( 0 == strcmp (MHD_HTTP_METHOD_PUT, method) )
430   {
431     /* PUT method here */
432     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Got PUT Request with size %lu \n",(*upload_data_size));
433     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"URL: `%s'\n",url);
434     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"PUT Request: `%s'\n",upload_data);
435     /* No data left */
436     *upload_data_size = 0;
437     response = MHD_create_response_from_data (strlen (HTTP_PUT_RESPONSE),HTTP_PUT_RESPONSE, MHD_NO, MHD_NO);
438     MHD_queue_response (session, MHD_HTTP_OK, response);
439     MHD_destroy_response (response);
440   }
441   if ( 0 == strcmp (MHD_HTTP_METHOD_GET, method) )
442   {
443     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Got GET Request\n");
444   }
445
446   return MHD_YES;
447 }
448
449
450 /**
451  * Call MHD to process pending requests and then go back
452  * and schedule the next run.
453  */
454 static void http_daemon_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
455
456 /**
457  * Function that queries MHD's select sets and
458  * starts the task waiting for them.
459  */
460 static GNUNET_SCHEDULER_TaskIdentifier
461 http_daemon_prepare (struct MHD_Daemon *daemon_handle)
462 {
463   GNUNET_SCHEDULER_TaskIdentifier ret;
464   fd_set rs;
465   fd_set ws;
466   fd_set es;
467   struct GNUNET_NETWORK_FDSet *wrs;
468   struct GNUNET_NETWORK_FDSet *wws;
469   struct GNUNET_NETWORK_FDSet *wes;
470   int max;
471   unsigned long long timeout;
472   int haveto;
473   struct GNUNET_TIME_Relative tv;
474
475   FD_ZERO(&rs);
476   FD_ZERO(&ws);
477   FD_ZERO(&es);
478   wrs = GNUNET_NETWORK_fdset_create ();
479   wes = GNUNET_NETWORK_fdset_create ();
480   wws = GNUNET_NETWORK_fdset_create ();
481   max = -1;
482   GNUNET_assert (MHD_YES ==
483                  MHD_get_fdset (daemon_handle,
484                                 &rs,
485                                 &ws,
486                                 &es,
487                                 &max));
488   haveto = MHD_get_timeout (daemon_handle, &timeout);
489   if (haveto == MHD_YES)
490     tv.value = (uint64_t) timeout;
491   else
492     tv = GNUNET_TIME_UNIT_FOREVER_REL;
493   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max);
494   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max);
495   GNUNET_NETWORK_fdset_copy_native (wes, &es, max);
496   ret = GNUNET_SCHEDULER_add_select (plugin->env->sched,
497                                      GNUNET_SCHEDULER_PRIORITY_HIGH,
498                                      GNUNET_SCHEDULER_NO_TASK,
499                                      tv,
500                                      wrs,
501                                      wws,
502                                      &http_daemon_run,
503                                      daemon_handle);
504   GNUNET_NETWORK_fdset_destroy (wrs);
505   GNUNET_NETWORK_fdset_destroy (wws);
506   GNUNET_NETWORK_fdset_destroy (wes);
507   return ret;
508 }
509
510 /**
511  * Call MHD to process pending requests and then go back
512  * and schedule the next run.
513  */
514 static void
515 http_daemon_run (void *cls,
516             const struct GNUNET_SCHEDULER_TaskContext *tc)
517 {
518   struct MHD_Daemon *daemon_handle = cls;
519
520   if (daemon_handle == http_daemon_v4)
521     http_task_v4 = GNUNET_SCHEDULER_NO_TASK;
522
523   if (daemon_handle == http_daemon_v6)
524     http_task_v6 = GNUNET_SCHEDULER_NO_TASK;
525
526   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
527     return;
528
529
530
531   GNUNET_assert (MHD_YES == MHD_run (daemon_handle));
532   if (daemon_handle == http_daemon_v4)
533     http_task_v4 = http_daemon_prepare (daemon_handle);
534   if (daemon_handle == http_daemon_v6)
535     http_task_v6 = http_daemon_prepare (daemon_handle);
536   return;
537 }
538
539 static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *stream)
540 {
541   size_t retcode;
542   /*
543   fprintf(stdout, "*** Read callback: size %u, size nmemb: %u \n", size, nmemb);
544   retcode = fread(ptr, size, nmemb, stream);
545    */
546   retcode = 0;
547   return retcode;
548 }
549
550 /**
551  * Function that can be used by the transport service to transmit
552  * a message using the plugin.
553  *
554  * @param cls closure
555  * @param target who should receive this message
556  * @param priority how important is the message
557  * @param msgbuf the message to transmit
558  * @param msgbuf_size number of bytes in 'msgbuf'
559  * @param timeout when should we time out
560  * @param session which session must be used (or NULL for "any")
561  * @param addr the address to use (can be NULL if the plugin
562  *                is "on its own" (i.e. re-use existing TCP connection))
563  * @param addrlen length of the address in bytes
564  * @param force_address GNUNET_YES if the plugin MUST use the given address,
565  *                otherwise the plugin may use other addresses or
566  *                existing connections (if available)
567  * @param cont continuation to call once the message has
568  *        been transmitted (or if the transport is ready
569  *        for the next transmission call; or if the
570  *        peer disconnected...)
571  * @param cont_cls closure for cont
572  * @return number of bytes used (on the physical network, with overheads);
573  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
574  *         and does NOT mean that the message was not transmitted (DV)
575  */
576 static ssize_t
577 template_plugin_send (void *cls,
578                       const struct GNUNET_PeerIdentity *
579                       target,
580                       const char *msgbuf,
581                       size_t msgbuf_size,
582                       unsigned int priority,
583                       struct GNUNET_TIME_Relative timeout,
584                       struct Session *session,
585                       const void *addr,
586                       size_t addrlen,
587                       int force_address,
588                       GNUNET_TRANSPORT_TransmitContinuation
589                       cont, void *cont_cls)
590 {
591   struct Session* ses;
592   int bytes_sent = 0;
593   /*  struct Plugin *plugin = cls; */
594   CURL *curl_handle;
595   /* CURLcode res; */
596
597   /* find session for peer */
598   ses = find_session_by_pi (target);
599   if ( ses == NULL) create_session_by_pi (target);
600
601   char *url = "http://localhost:12389";
602
603   curl_handle = curl_easy_init();
604   if( NULL == curl_handle)
605   {
606     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Getting cURL handle failed\n");
607     return -1;
608   }
609   curl_easy_setopt(curl_handle, CURLOPT_VERBOSE, 1L);
610   curl_easy_setopt(curl_handle, CURLOPT_READFUNCTION, read_callback);
611   curl_easy_setopt(curl_handle, CURLOPT_UPLOAD, 1L);
612   curl_easy_setopt(curl_handle, CURLOPT_PUT, 1L);
613   curl_easy_setopt(curl_handle, CURLOPT_URL, url);
614   curl_easy_setopt(curl_handle, CURLOPT_READDATA, msgbuf);
615   curl_easy_setopt(curl_handle, CURLOPT_INFILESIZE_LARGE,
616                   (curl_off_t)msgbuf_size);
617
618
619
620   return bytes_sent;
621 }
622
623
624
625 /**
626  * Function that can be used to force the plugin to disconnect
627  * from the given peer and cancel all previous transmissions
628  * (and their continuationc).
629  *
630  * @param cls closure
631  * @param target peer from which to disconnect
632  */
633 static void
634 template_plugin_disconnect (void *cls,
635                             const struct GNUNET_PeerIdentity *target)
636 {
637   // struct Plugin *plugin = cls;
638   // FIXME
639 }
640
641
642 /**
643  * Convert the transports address to a nice, human-readable
644  * format.
645  *
646  * @param cls closure
647  * @param type name of the transport that generated the address
648  * @param addr one of the addresses of the host, NULL for the last address
649  *        the specific address format depends on the transport
650  * @param addrlen length of the address
651  * @param numeric should (IP) addresses be displayed in numeric form?
652  * @param timeout after how long should we give up?
653  * @param asc function to call on each string
654  * @param asc_cls closure for asc
655  */
656 static void
657 template_plugin_address_pretty_printer (void *cls,
658                                         const char *type,
659                                         const void *addr,
660                                         size_t addrlen,
661                                         int numeric,
662                                         struct GNUNET_TIME_Relative timeout,
663                                         GNUNET_TRANSPORT_AddressStringCallback
664                                         asc, void *asc_cls)
665 {
666   asc (asc_cls, NULL);
667 }
668
669
670
671 /**
672  * Another peer has suggested an address for this
673  * peer and transport plugin.  Check that this could be a valid
674  * address.  If so, consider adding it to the list
675  * of addresses.
676  *
677  * @param cls closure
678  * @param addr pointer to the address
679  * @param addrlen length of addr
680  * @return GNUNET_OK if this is a plausible address for this peer
681  *         and transport
682  */
683 static int
684 template_plugin_address_suggested (void *cls,
685                                   void *addr, size_t addrlen)
686 {
687   /* struct Plugin *plugin = cls; */
688
689   /* check if the address is plausible; if so,
690      add it to our list! */
691   return GNUNET_OK;
692 }
693
694
695 /**
696  * Function called for a quick conversion of the binary address to
697  * a numeric address.  Note that the caller must not free the
698  * address and that the next call to this function is allowed
699  * to override the address again.
700  *
701  * @param cls closure
702  * @param addr binary address
703  * @param addrlen length of the address
704  * @return string representing the same address
705  */
706 static const char*
707 template_plugin_address_to_string (void *cls,
708                                    const void *addr,
709                                    size_t addrlen)
710 {
711   GNUNET_break (0);
712   return NULL;
713 }
714
715 /**
716  * Exit point from the plugin.
717  */
718 void *
719 libgnunet_plugin_transport_http_done (void *cls)
720 {
721   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
722   struct Plugin *plugin = api->cls;
723   struct Session * cs;
724   struct Session * cs_next;
725
726   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Unloading http plugin...\n");
727
728   if ( http_task_v4 != GNUNET_SCHEDULER_NO_TASK)
729   {
730     GNUNET_SCHEDULER_cancel(plugin->env->sched, http_task_v4);
731     http_task_v4 = GNUNET_SCHEDULER_NO_TASK;
732   }
733
734   if ( http_task_v6 != GNUNET_SCHEDULER_NO_TASK)
735   {
736     GNUNET_SCHEDULER_cancel(plugin->env->sched, http_task_v6);
737     http_task_v6 = GNUNET_SCHEDULER_NO_TASK;
738   }
739
740   if (http_daemon_v4 != NULL)
741   {
742     MHD_stop_daemon (http_daemon_v4);
743     http_daemon_v4 = NULL;
744   }
745   if (http_daemon_v6 != NULL)
746   {
747     MHD_stop_daemon (http_daemon_v6);
748     http_daemon_v6 = NULL;
749   }
750
751   curl_multi_cleanup(multi_handle);
752
753   /* free all sessions */
754   cs = plugin->sessions;
755   while ( NULL != cs)
756     {
757       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Freeing session to `%s'\n",cs->ip);
758       cs_next = cs->next;
759       GNUNET_free (cs->ip);
760       GNUNET_free (cs->addr);
761       GNUNET_free (cs);
762       plugin->session_count--;
763       cs = cs_next;
764     }
765
766   GNUNET_free (plugin);
767   GNUNET_free (api);
768   return NULL;
769 }
770
771
772 /**
773  * Entry point for the plugin.
774  */
775 void *
776 libgnunet_plugin_transport_http_init (void *cls)
777 {
778   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
779   struct GNUNET_TRANSPORT_PluginFunctions *api;
780
781   long long unsigned int port;
782
783   plugin = GNUNET_malloc (sizeof (struct Plugin));
784   plugin->env = env;
785   plugin->sessions = NULL;
786   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
787   api->cls = plugin;
788   api->send = &template_plugin_send;
789   api->disconnect = &template_plugin_disconnect;
790   api->address_pretty_printer = &template_plugin_address_pretty_printer;
791   api->check_address = &template_plugin_address_suggested;
792   api->address_to_string = &template_plugin_address_to_string;
793
794   hostname = GNUNET_RESOLVER_local_fqdn_get ();
795
796   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting http plugin...\n");
797   /* Reading port number from config file */
798   if ((GNUNET_OK !=
799        GNUNET_CONFIGURATION_get_value_number (env->cfg,
800                                               "transport-http",
801                                               "PORT",
802                                               &port)) ||
803       (port > 65535) )
804     {
805       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
806                        "http",
807                        _
808                        ("Require valid port number for transport plugin `%s' in configuration!\n"),
809                        "transport-http");
810       libgnunet_plugin_transport_http_done (api);
811       return NULL;
812     }
813
814   if ((http_daemon_v4 == NULL) && (http_daemon_v6 == NULL) && (port != 0))
815     {
816     http_daemon_v6 = MHD_start_daemon (MHD_USE_IPv6,
817                                        port,
818                                        &acceptPolicyCallback,
819                                        NULL , &accessHandlerCallback, NULL,
820                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
821                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
822                                        MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
823                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
824                                        MHD_OPTION_NOTIFY_COMPLETED, &requestCompletedCallback, NULL,
825                                        MHD_OPTION_END);
826     http_daemon_v4 = MHD_start_daemon (MHD_NO_FLAG,
827                                        port,
828                                        &acceptPolicyCallback,
829                                        NULL , &accessHandlerCallback, NULL,
830                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
831                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
832                                        MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
833                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
834                                        MHD_OPTION_NOTIFY_COMPLETED, &requestCompletedCallback, NULL,
835                                        MHD_OPTION_END);
836     }
837   if (http_daemon_v4 != NULL)
838     http_task_v4 = http_daemon_prepare (http_daemon_v4);
839   if (http_daemon_v6 != NULL)
840     http_task_v6 = http_daemon_prepare (http_daemon_v6);
841
842   if (http_task_v4 != GNUNET_SCHEDULER_NO_TASK)
843     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 on port %u\n",port);
844   if (http_task_v6 != GNUNET_SCHEDULER_NO_TASK)
845     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Starting MHD with IPv4 and IPv6 on port %u\n",port);
846
847   /* Initializing cURL */
848   multi_handle = curl_multi_init();
849
850   return api;
851 }
852
853 /* end of plugin_transport_template.c */