Merge branch 'master' of gnunet.org:gnunet
[oweals/gnunet.git] / src / transport / plugin_transport_http_server.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2002-2014, 2017 GNUnet e.V.
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 3, 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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file transport/plugin_transport_http_server.c
23  * @brief HTTP/S server transport plugin
24  * @author Matthias Wachs
25  * @author David Barksdale
26  * @author Christian Grothoff
27  */
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_statistics_service.h"
31 #include "gnunet_transport_plugin.h"
32 #include "gnunet_nat_service.h"
33 #include "plugin_transport_http_common.h"
34 #include <microhttpd.h>
35 #include <regex.h>
36
37
38
39 #if BUILD_HTTPS
40 #define PLUGIN_NAME "https_server"
41 #define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_https_server_init
42 #define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_https_server_done
43 #else
44 #define PLUGIN_NAME "http_server"
45 #define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_http_server_init
46 #define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_http_server_done
47 #endif
48
49 #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>"
50 #define _RECEIVE 0
51 #define _SEND 1
52
53
54 #define LOG(kind,...) GNUNET_log_from (kind, "transport-" PLUGIN_NAME,__VA_ARGS__)
55
56
57 /**
58  * Information we keep with MHD for an HTTP request.
59  */
60 struct ServerRequest
61 {
62   /**
63    * The session this server request belongs to
64    * Can be NULL, when session was disconnected and freed
65    */
66   struct GNUNET_ATS_Session *session;
67
68   /**
69    * The MHD connection
70    */
71   struct MHD_Connection *mhd_conn;
72
73   /**
74    * The MHD daemon
75    */
76   struct MHD_Daemon *mhd_daemon;
77
78   /**
79    * Options requested by peer
80    */
81   uint32_t options;
82 #define OPTION_LONG_POLL 1 /* GET request wants long-poll semantics */
83
84   /**
85    * _RECV or _SEND
86    */
87   int direction;
88
89   /**
90    * For PUT requests: Is this the first or last callback with size 0
91    * For GET requests: Have we sent a message
92    */
93   int connected;
94
95 };
96
97
98 /**
99  * Wrapper to manage addresses
100  */
101 struct HttpAddressWrapper
102 {
103   /**
104    * Linked list next
105    */
106   struct HttpAddressWrapper *next;
107
108   /**
109    * Linked list previous
110    */
111   struct HttpAddressWrapper *prev;
112
113   /**
114    * An address we are using.
115    */
116   struct HttpAddress *address;
117
118   /**
119    * Length of the address.
120    */
121   size_t addrlen;
122 };
123
124
125 /**
126  *  Message to send using http
127  */
128 struct HTTP_Message
129 {
130   /**
131    * next pointer for double linked list
132    */
133   struct HTTP_Message *next;
134
135   /**
136    * previous pointer for double linked list
137    */
138   struct HTTP_Message *prev;
139
140   /**
141    * buffer containing data to send
142    */
143   char *buf;
144
145   /**
146    * amount of data already sent
147    */
148   size_t pos;
149
150   /**
151    * buffer length
152    */
153   size_t size;
154
155   /**
156    * HTTP/S specific overhead
157    */
158   size_t overhead;
159
160   /**
161    * Continuation function to call once the transmission buffer
162    * has again space available.  NULL if there is no
163    * continuation to call.
164    */
165   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
166
167   /**
168    * Closure for transmit_cont.
169    */
170   void *transmit_cont_cls;
171 };
172
173
174 /**
175  * Session handle for connections.
176  */
177 struct GNUNET_ATS_Session
178 {
179
180   /**
181    * To whom are we talking to (set to our identity
182    * if we are still waiting for the welcome message)
183    */
184   struct GNUNET_PeerIdentity target;
185
186   /**
187    * Pointer to the global plugin struct.
188    */
189   struct HTTP_Server_Plugin *plugin;
190
191   /**
192    * next pointer for double linked list
193    */
194   struct HTTP_Message *msg_head;
195
196   /**
197    * previous pointer for double linked list
198    */
199   struct HTTP_Message *msg_tail;
200
201   /**
202    * Message stream tokenizer for incoming data
203    */
204   struct GNUNET_MessageStreamTokenizer *msg_tk;
205
206   /**
207    * Client recv handle
208    */
209   struct ServerRequest *server_recv;
210
211   /**
212    * Client send handle
213    */
214   struct ServerRequest *server_send;
215
216   /**
217    * Address
218    */
219   struct GNUNET_HELLO_Address *address;
220
221   /**
222    * Absolute time when to receive data again
223    * Used for receive throttling
224    */
225   struct GNUNET_TIME_Absolute next_receive;
226
227   /**
228    * Absolute time when this connection will time out.
229    */
230   struct GNUNET_TIME_Absolute timeout;
231
232   /**
233    * Session timeout task
234    */
235   struct GNUNET_SCHEDULER_Task * timeout_task;
236
237   /**
238    * Task to resume MHD handling when receiving is allowed again
239    */
240   struct GNUNET_SCHEDULER_Task * recv_wakeup_task;
241
242   /**
243    * Number of bytes waiting for transmission to this peer.
244    */
245   unsigned long long bytes_in_queue;
246
247   /**
248    * Number of messages waiting for transmission to this peer.
249    */
250   unsigned int msgs_in_queue;
251
252   /**
253    * Unique HTTP/S connection tag for this connection
254    */
255   uint32_t tag;
256
257   /**
258    * ATS network type.
259    */
260   enum GNUNET_ATS_Network_Type scope;
261
262   /**
263    * #GNUNET_YES if this session is known to the service.
264    */
265   int known_to_service;
266
267 };
268
269
270 /**
271  * Encapsulation of all of the state of the plugin.
272  */
273 struct HTTP_Server_Plugin
274 {
275   /**
276    * Our environment.
277    */
278   struct GNUNET_TRANSPORT_PluginEnvironment *env;
279
280   /**
281    * Hash map of open sessions.
282    */
283   struct GNUNET_CONTAINER_MultiPeerMap *sessions;
284
285   /**
286    * Function to call about session status changes.
287    */
288   GNUNET_TRANSPORT_SessionInfoCallback sic;
289
290   /**
291    * Closure for @e sic.
292    */
293   void *sic_cls;
294
295   /**
296    * Plugin name
297    */
298   char *name;
299
300   /**
301    * Protocol
302    */
303   char *protocol;
304
305   /**
306    * External address
307    */
308   char *external_hostname;
309
310   /**
311    * External hostname the plugin can be connected to, can be different to
312    * the host's FQDN, used e.g. for reverse proxying
313    */
314   struct GNUNET_HELLO_Address *ext_addr;
315
316   /**
317    * NAT handle & address management
318    */
319   struct GNUNET_NAT_Handle *nat;
320
321   /**
322    * IPv4 addresses DLL head
323    */
324   struct HttpAddressWrapper *addr_head;
325
326   /**
327    * IPv4 addresses DLL tail
328    */
329   struct HttpAddressWrapper *addr_tail;
330
331   /**
332    * IPv4 server socket to bind to
333    */
334   struct sockaddr_in *server_addr_v4;
335
336   /**
337    * IPv6 server socket to bind to
338    */
339   struct sockaddr_in6 *server_addr_v6;
340
341   /**
342    * MHD IPv4 daemon
343    */
344   struct MHD_Daemon *server_v4;
345
346   /**
347    * MHD IPv4 daemon
348    */
349   struct MHD_Daemon *server_v6;
350
351 #if BUILD_HTTPS
352   /**
353    * Crypto related
354    *
355    * Example:
356    *
357    * Use RC4-128 instead of AES:
358    * NONE:+VERS-TLS1.0:+ARCFOUR-128:+SHA1:+RSA:+COMP-NULL
359    *
360    */
361   char *crypto_init;
362
363   /**
364    * TLS key
365    */
366   char *key;
367
368   /**
369    * TLS certificate
370    */
371   char *cert;
372 #endif
373
374   /**
375    * MHD IPv4 task
376    */
377   struct GNUNET_SCHEDULER_Task *server_v4_task;
378
379   /**
380    * MHD IPv6 task
381    */
382   struct GNUNET_SCHEDULER_Task *server_v6_task;
383
384   /**
385    * Task calling transport service about external address
386    */
387   struct GNUNET_SCHEDULER_Task *notify_ext_task;
388
389   /**
390    * Notify transport only about external address
391    */
392   unsigned int external_only;
393
394   /**
395    * The IPv4 server is scheduled to run asap
396    */
397   int server_v4_immediately;
398
399   /**
400    * The IPv6 server is scheduled to run asap
401    */
402   int server_v6_immediately;
403
404   /**
405    * Verify external address
406    */
407   int verify_external_hostname;
408
409   /**
410    * Maximum number of sockets the plugin can use
411    * Each http request /request connections are two connections
412    */
413   unsigned int max_request;
414
415   /**
416    * Current number of sockets the plugin can use
417    * Each http connection are two requests
418    */
419   unsigned int cur_request;
420
421   /**
422    * Did we immediately end the session in disconnect_cb
423    */
424   int in_shutdown;
425
426   /**
427    * Length of peer id
428    */
429   int peer_id_length;
430
431   /**
432    * My options to be included in the address
433    */
434   uint32_t options;
435
436   /**
437    * use IPv6
438    */
439   uint16_t use_ipv6;
440
441   /**
442    * use IPv4
443    */
444   uint16_t use_ipv4;
445
446   /**
447    * Port used
448    */
449   uint16_t port;
450
451   /**
452    * Regex for parsing URLs. FIXME: this seems overkill.
453    */
454   regex_t url_regex;
455
456 };
457
458
459 /**
460  * If a session monitor is attached, notify it about the new
461  * session state.
462  *
463  * @param plugin our plugin
464  * @param session session that changed state
465  * @param state new state of the session
466  */
467 static void
468 notify_session_monitor (struct HTTP_Server_Plugin *plugin,
469                         struct GNUNET_ATS_Session *session,
470                         enum GNUNET_TRANSPORT_SessionState state)
471 {
472   struct GNUNET_TRANSPORT_SessionInfo info;
473
474   if (NULL == plugin->sic)
475     return;
476   memset (&info, 0, sizeof (info));
477   info.state = state;
478   info.is_inbound = GNUNET_YES;
479   info.num_msg_pending = session->msgs_in_queue;
480   info.num_bytes_pending = session->bytes_in_queue;
481   info.receive_delay = session->next_receive;
482   info.session_timeout = session->timeout;
483   info.address = session->address;
484   plugin->sic (plugin->sic_cls,
485                session,
486                &info);
487 }
488
489
490 /**
491  * Wake up an MHD connection which was suspended
492  *
493  * @param cls the session
494  */
495 static void
496 server_wake_up (void *cls)
497 {
498   struct GNUNET_ATS_Session *s = cls;
499
500   s->recv_wakeup_task = NULL;
501   LOG (GNUNET_ERROR_TYPE_DEBUG,
502        "Session %p: Waking up PUT handle\n",
503        s);
504   MHD_resume_connection (s->server_recv->mhd_conn);
505 }
506
507
508 /**
509  * Reschedule the execution of both IPv4 and IPv6 server.
510  *
511  * @param plugin the plugin
512  * @param server which server to schedule v4 or v6?
513  * @param now #GNUNET_YES to schedule execution immediately, #GNUNET_NO to wait
514  * until timeout
515  */
516 static void
517 server_reschedule (struct HTTP_Server_Plugin *plugin,
518                    struct MHD_Daemon *server,
519                    int now);
520
521
522 /**
523  * Deletes the session.  Must not be used afterwards.
524  *
525  * @param s the session to delete
526  */
527 static void
528 server_delete_session (struct GNUNET_ATS_Session *s)
529 {
530   struct HTTP_Server_Plugin *plugin = s->plugin;
531   struct HTTP_Message *msg;
532
533   if (NULL != s->timeout_task)
534   {
535     GNUNET_SCHEDULER_cancel (s->timeout_task);
536     s->timeout_task = NULL;
537     s->timeout = GNUNET_TIME_UNIT_ZERO_ABS;
538   }
539   if (NULL != s->recv_wakeup_task)
540   {
541     GNUNET_SCHEDULER_cancel (s->recv_wakeup_task);
542     s->recv_wakeup_task = NULL;
543     if (NULL != s->server_recv)
544       MHD_resume_connection (s->server_recv->mhd_conn);
545   }
546   GNUNET_assert (GNUNET_OK ==
547                  GNUNET_CONTAINER_multipeermap_remove (plugin->sessions,
548                                                        &s->target,
549                                                        s));
550   while (NULL != (msg = s->msg_head))
551   {
552     GNUNET_CONTAINER_DLL_remove (s->msg_head,
553                                  s->msg_tail,
554                                  msg);
555     if (NULL != msg->transmit_cont)
556       msg->transmit_cont (msg->transmit_cont_cls,
557                           &s->target,
558                           GNUNET_SYSERR,
559                           msg->size,
560                           msg->pos + msg->overhead);
561     GNUNET_assert (s->msgs_in_queue > 0);
562     s->msgs_in_queue--;
563     GNUNET_assert (s->bytes_in_queue >= msg->size);
564     s->bytes_in_queue -= msg->size;
565     GNUNET_free (msg);
566   }
567
568   GNUNET_assert (0 == s->msgs_in_queue);
569   GNUNET_assert (0 == s->bytes_in_queue);
570
571   if (NULL != s->server_send)
572   {
573     LOG (GNUNET_ERROR_TYPE_DEBUG,
574          "Server: %p / %p Terminating inbound PUT session to peer `%s'\n",
575          s, s->server_send,
576          GNUNET_i2s (&s->target));
577     s->server_send->session = NULL;
578     MHD_set_connection_option (s->server_send->mhd_conn,
579                                MHD_CONNECTION_OPTION_TIMEOUT,
580                                1 /* 0 = no timeout, so this is MIN */);
581     server_reschedule (plugin,
582                        s->server_send->mhd_daemon,
583                        GNUNET_YES);
584   }
585
586   if (NULL != s->server_recv)
587   {
588     LOG (GNUNET_ERROR_TYPE_DEBUG,
589          "Server: %p / %p Terminating inbound GET session to peer `%s'\n",
590          s, s->server_recv, GNUNET_i2s (&s->target));
591     s->server_recv->session = NULL;
592     MHD_set_connection_option (s->server_recv->mhd_conn,
593                                MHD_CONNECTION_OPTION_TIMEOUT,
594                                1 /* 0 = no timeout, so this is MIN */);
595     server_reschedule (plugin,
596                        s->server_recv->mhd_daemon,
597                        GNUNET_YES);
598   }
599   notify_session_monitor (plugin,
600                           s,
601                           GNUNET_TRANSPORT_SS_DONE);
602   if (GNUNET_YES == s->known_to_service)
603   {
604     plugin->env->session_end (plugin->env->cls,
605                               s->address,
606                               s);
607     s->known_to_service = GNUNET_NO;
608   }
609   if (NULL != s->msg_tk)
610   {
611     GNUNET_MST_destroy (s->msg_tk);
612     s->msg_tk = NULL;
613   }
614   GNUNET_HELLO_address_free (s->address);
615   LOG (GNUNET_ERROR_TYPE_DEBUG,
616        "Session %p destroyed\n",
617        s);
618   GNUNET_free (s);
619 }
620
621
622 /**
623  * Disconnect session @a s by telling MHD to close the
624  * connections (reducing timeout, etc.).
625  *
626  * @param cls closure with the `struct HTTP_Server_Plugin`
627  * @param s the session
628  * @return #GNUNET_OK on success
629  */
630 static int
631 http_server_plugin_disconnect_session (void *cls,
632                                        struct GNUNET_ATS_Session *s)
633 {
634   server_delete_session (s);
635   return GNUNET_OK;
636 }
637
638
639 /**
640  * Session was idle, so disconnect it
641  *
642  * @param cls the session
643  */
644 static void
645 server_session_timeout (void *cls)
646 {
647   struct GNUNET_ATS_Session *s = cls;
648   struct GNUNET_TIME_Relative left;
649
650   s->timeout_task = NULL;
651   left = GNUNET_TIME_absolute_get_remaining (s->timeout);
652   if (0 != left.rel_value_us)
653   {
654     /* not actually our turn yet, but let's at least update
655        the monitor, it may think we're about to die ... */
656     notify_session_monitor (s->plugin,
657                             s,
658                             GNUNET_TRANSPORT_SS_UP);
659     s->timeout_task = GNUNET_SCHEDULER_add_delayed (left,
660                                                     &server_session_timeout,
661                                                     s);
662     return;
663   }
664   GNUNET_log (TIMEOUT_LOG,
665               "Session %p was idle for %s, disconnecting\n",
666               s,
667               GNUNET_STRINGS_relative_time_to_string (HTTP_SERVER_SESSION_TIMEOUT,
668                                                       GNUNET_YES));
669   server_delete_session (s);
670 }
671
672
673 /**
674  * Increment session timeout due to activity session @a s
675  *
676  * @param s the session
677  */
678 static void
679 server_reschedule_session_timeout (struct GNUNET_ATS_Session *s)
680 {
681  GNUNET_assert (NULL != s->timeout_task);
682   s->timeout = GNUNET_TIME_relative_to_absolute (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT);
683 }
684
685
686 /**
687  * Function that can be used by the transport service to transmit
688  * a message using the plugin.   Note that in the case of a
689  * peer disconnecting, the continuation MUST be called
690  * prior to the disconnect notification itself.  This function
691  * will be called with this peer's HELLO message to initiate
692  * a fresh connection to another peer.
693  *
694  * @param cls closure
695  * @param session which session must be used
696  * @param msgbuf the message to transmit
697  * @param msgbuf_size number of bytes in @a msgbuf
698  * @param priority how important is the message (most plugins will
699  *                 ignore message priority and just FIFO)
700  * @param to how long to wait at most for the transmission (does not
701  *                require plugins to discard the message after the timeout,
702  *                just advisory for the desired delay; most plugins will ignore
703  *                this as well)
704  * @param cont continuation to call once the message has
705  *        been transmitted (or if the transport is ready
706  *        for the next transmission call; or if the
707  *        peer disconnected...); can be NULL
708  * @param cont_cls closure for @a cont
709  * @return number of bytes used (on the physical network, with overheads);
710  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
711  *         and does NOT mean that the message was not transmitted (DV)
712  */
713 static ssize_t
714 http_server_plugin_send (void *cls,
715                          struct GNUNET_ATS_Session *session,
716                          const char *msgbuf,
717                          size_t msgbuf_size,
718                          unsigned int priority,
719                          struct GNUNET_TIME_Relative to,
720                          GNUNET_TRANSPORT_TransmitContinuation cont,
721                          void *cont_cls)
722 {
723   struct HTTP_Server_Plugin *plugin = cls;
724   struct HTTP_Message *msg;
725   ssize_t bytes_sent = 0;
726   char *stat_txt;
727
728   LOG (GNUNET_ERROR_TYPE_DEBUG,
729        "Session %p/request %p: Sending message with %u to peer `%s'\n",
730        session,
731        session->server_send,
732        msgbuf_size,
733        GNUNET_i2s (&session->target));
734
735   /* create new message and schedule */
736   bytes_sent = sizeof (struct HTTP_Message) + msgbuf_size;
737   msg = GNUNET_malloc (bytes_sent);
738   msg->next = NULL;
739   msg->size = msgbuf_size;
740   msg->pos = 0;
741   msg->buf = (char *) &msg[1];
742   msg->transmit_cont = cont;
743   msg->transmit_cont_cls = cont_cls;
744   GNUNET_memcpy (msg->buf,
745           msgbuf,
746           msgbuf_size);
747   GNUNET_CONTAINER_DLL_insert_tail (session->msg_head,
748                                     session->msg_tail,
749                                     msg);
750   session->msgs_in_queue++;
751   session->bytes_in_queue += msg->size;
752   notify_session_monitor (plugin,
753                           session,
754                           GNUNET_TRANSPORT_SS_UP);
755   GNUNET_asprintf (&stat_txt,
756                    "# bytes currently in %s_server buffers",
757                    plugin->protocol);
758   GNUNET_STATISTICS_update (plugin->env->stats,
759                             stat_txt, msgbuf_size, GNUNET_NO);
760   GNUNET_free (stat_txt);
761
762   if (NULL != session->server_send)
763     server_reschedule (session->plugin,
764                        session->server_send->mhd_daemon,
765                        GNUNET_YES);
766   return bytes_sent;
767 }
768
769
770 /**
771  * Terminate session during shutdown.
772  *
773  * @param cls the `struct HTTP_Server_Plugin *`
774  * @param peer for which this is a session
775  * @param value the `struct GNUNET_ATS_Session` to clean up
776  * @return #GNUNET_OK (continue to iterate)
777  */
778 static int
779 destroy_session_shutdown_cb (void *cls,
780                              const struct GNUNET_PeerIdentity *peer,
781                              void *value)
782 {
783   struct GNUNET_ATS_Session *s = value;
784   struct ServerRequest *sc_send;
785   struct ServerRequest *sc_recv;
786
787   sc_send = s->server_send;
788   sc_recv = s->server_recv;
789   server_delete_session (s);
790   if (NULL != sc_send)
791     sc_send->session = NULL;
792   if (NULL != sc_recv)
793     sc_recv->session = NULL;
794
795   return GNUNET_OK;
796 }
797
798
799 /**
800  * Terminate session.
801  *
802  * @param cls the `struct HTTP_Server_Plugin *`
803  * @param peer for which this is a session
804  * @param value the `struct GNUNET_ATS_Session` to clean up
805  * @return #GNUNET_OK (continue to iterate)
806  */
807 static int
808 destroy_session_cb (void *cls,
809                     const struct GNUNET_PeerIdentity *peer,
810                     void *value)
811 {
812   struct GNUNET_ATS_Session *s = value;
813
814   server_delete_session (s);
815   return GNUNET_OK;
816 }
817
818
819 /**
820  * Function that can be used to force the plugin to disconnect
821  * from the given peer and cancel all previous transmissions
822  * (and their continuationc).
823  *
824  * @param cls closure
825  * @param target peer from which to disconnect
826  */
827 static void
828 http_server_plugin_disconnect_peer (void *cls,
829                                     const struct GNUNET_PeerIdentity *target)
830 {
831   struct HTTP_Server_Plugin *plugin = cls;
832
833   LOG (GNUNET_ERROR_TYPE_DEBUG,
834        "Transport tells me to disconnect `%s'\n",
835        GNUNET_i2s (target));
836   GNUNET_CONTAINER_multipeermap_get_multiple (plugin->sessions,
837                                               target,
838                                               &destroy_session_cb,
839                                               plugin);
840 }
841
842
843 /**
844  * Another peer has suggested an address for this
845  * peer and transport plugin.  Check that this could be a valid
846  * address.  If so, consider adding it to the list
847  * of addresses.
848  *
849  * @param cls closure
850  * @param addr pointer to the address
851  * @param addrlen length of @a addr
852  * @return #GNUNET_OK if this is a plausible address for this peer
853  *         and transport
854  */
855 static int
856 http_server_plugin_address_suggested (void *cls,
857                                       const void *addr,
858                                       size_t addrlen)
859 {
860   struct HTTP_Server_Plugin *plugin = cls;
861   struct HttpAddressWrapper *next;
862   struct HttpAddressWrapper *pos;
863   const struct HttpAddress *haddr = addr;
864
865   if ((NULL != plugin->ext_addr) &&
866       GNUNET_YES == (http_common_cmp_addresses (addr, addrlen,
867                                                 plugin->ext_addr->address,
868                                                 plugin->ext_addr->address_length)))
869   {
870     /* Checking HTTP_OPTIONS_VERIFY_CERTIFICATE option for external hostname */
871     if ((ntohl (haddr->options) & HTTP_OPTIONS_VERIFY_CERTIFICATE) !=
872         (plugin->options & HTTP_OPTIONS_VERIFY_CERTIFICATE))
873       return GNUNET_NO; /* VERIFY option not set as required! */
874     return GNUNET_OK;
875   }
876   next  = plugin->addr_head;
877   while (NULL != (pos = next))
878   {
879     next = pos->next;
880     if (GNUNET_YES == (http_common_cmp_addresses(addr,
881                                                  addrlen,
882                                                  pos->address,
883                                                  pos->addrlen)))
884       return GNUNET_OK;
885   }
886   return GNUNET_NO;
887 }
888
889
890 /**
891  * Creates a new outbound session the transport
892  * service will use to send data to the peer.
893  *
894  * Since HTTP/S server cannot create sessions, always returns NULL.
895  *
896  * @param cls the plugin
897  * @param address the address
898  * @return always NULL
899  */
900 static struct GNUNET_ATS_Session *
901 http_server_plugin_get_session (void *cls,
902                                 const struct GNUNET_HELLO_Address *address)
903 {
904   return NULL;
905 }
906
907
908 /**
909  * Call MHD IPv4 to process pending requests and then go back
910  * and schedule the next run.
911  *
912  * @param cls plugin as closure
913  */
914 static void
915 server_v4_run (void *cls)
916 {
917   struct HTTP_Server_Plugin *plugin = cls;
918
919   plugin->server_v4_task = NULL;
920   plugin->server_v4_immediately = GNUNET_NO;
921   GNUNET_assert (MHD_YES == MHD_run (plugin->server_v4));
922   server_reschedule (plugin, plugin->server_v4, GNUNET_NO);
923 }
924
925
926 /**
927  * Call MHD IPv6 to process pending requests and then go back
928  * and schedule the next run.
929  *
930  * @param cls plugin as closure
931  */
932 static void
933 server_v6_run (void *cls)
934 {
935   struct HTTP_Server_Plugin *plugin = cls;
936
937   plugin->server_v6_task = NULL;
938   plugin->server_v6_immediately = GNUNET_NO;
939   GNUNET_assert (MHD_YES == MHD_run (plugin->server_v6));
940   server_reschedule (plugin, plugin->server_v6, GNUNET_NO);
941 }
942
943
944 /**
945  * Function that queries MHD's select sets and
946  * starts the task waiting for them.
947  *
948  * @param plugin plugin
949  * @param daemon_handle the MHD daemon handle
950  * @param now schedule now
951  * @return gnunet task identifier
952  */
953 static struct GNUNET_SCHEDULER_Task *
954 server_schedule (struct HTTP_Server_Plugin *plugin,
955                  struct MHD_Daemon *daemon_handle,
956                  int now)
957 {
958   struct GNUNET_SCHEDULER_Task * ret;
959   fd_set rs;
960   fd_set ws;
961   fd_set es;
962   struct GNUNET_NETWORK_FDSet *wrs;
963   struct GNUNET_NETWORK_FDSet *wws;
964   int max;
965   MHD_UNSIGNED_LONG_LONG timeout;
966   static unsigned long long last_timeout = 0;
967   int haveto;
968   struct GNUNET_TIME_Relative tv;
969
970   if (GNUNET_YES == plugin->in_shutdown)
971     return NULL;
972
973   ret = NULL;
974   FD_ZERO (&rs);
975   FD_ZERO (&ws);
976   FD_ZERO (&es);
977   wrs = GNUNET_NETWORK_fdset_create ();
978   wws = GNUNET_NETWORK_fdset_create ();
979   max = -1;
980   GNUNET_assert (MHD_YES ==
981                  MHD_get_fdset (daemon_handle,
982                                 &rs,
983                                 &ws,
984                                 &es,
985                                 &max));
986   haveto = MHD_get_timeout (daemon_handle, &timeout);
987   if (haveto == MHD_YES)
988   {
989     if (timeout != last_timeout)
990     {
991       LOG (GNUNET_ERROR_TYPE_DEBUG,
992            "SELECT Timeout changed from %llu to %llu (ms)\n",
993            last_timeout, timeout);
994       last_timeout = timeout;
995     }
996     if (timeout <= GNUNET_TIME_UNIT_SECONDS.rel_value_us / 1000LL)
997       tv.rel_value_us = (uint64_t) timeout * 1000LL;
998     else
999       tv = GNUNET_TIME_UNIT_SECONDS;
1000   }
1001   else
1002     tv = GNUNET_TIME_UNIT_SECONDS;
1003   /* Force immediate run, since we have outbound data to send */
1004   if (now == GNUNET_YES)
1005     tv = GNUNET_TIME_UNIT_MILLISECONDS;
1006   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
1007   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
1008
1009   if (daemon_handle == plugin->server_v4)
1010   {
1011     if (plugin->server_v4_task != NULL)
1012     {
1013       GNUNET_SCHEDULER_cancel (plugin->server_v4_task);
1014       plugin->server_v4_task = NULL;
1015     }
1016 #if 0
1017     LOG (GNUNET_ERROR_TYPE_DEBUG,
1018          "Scheduling IPv4 server task in %llu ms\n",
1019          tv);
1020 #endif
1021     ret =
1022         GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1023                                      tv, wrs, wws,
1024                                      &server_v4_run, plugin);
1025   }
1026   if (daemon_handle == plugin->server_v6)
1027   {
1028     if (plugin->server_v6_task != NULL)
1029     {
1030       GNUNET_SCHEDULER_cancel (plugin->server_v6_task);
1031       plugin->server_v6_task = NULL;
1032     }
1033 #if 0
1034     LOG (GNUNET_ERROR_TYPE_DEBUG,
1035          "Scheduling IPv6 server task in %llu ms\n", tv);
1036 #endif
1037     ret =
1038         GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1039                                      tv, wrs, wws,
1040                                      &server_v6_run, plugin);
1041   }
1042   GNUNET_NETWORK_fdset_destroy (wrs);
1043   GNUNET_NETWORK_fdset_destroy (wws);
1044   return ret;
1045 }
1046
1047
1048 /**
1049  * Reschedule the execution of both IPv4 and IPv6 server
1050  *
1051  * @param plugin the plugin
1052  * @param server which server to schedule v4 or v6?
1053  * @param now #GNUNET_YES to schedule execution immediately, #GNUNET_NO to wait
1054  * until timeout
1055  */
1056 static void
1057 server_reschedule (struct HTTP_Server_Plugin *plugin,
1058                    struct MHD_Daemon *server,
1059                    int now)
1060 {
1061   if ((server == plugin->server_v4) && (plugin->server_v4 != NULL))
1062   {
1063     if (GNUNET_YES == plugin->server_v4_immediately)
1064       return; /* No rescheduling, server will run asap */
1065
1066     if (GNUNET_YES == now)
1067       plugin->server_v4_immediately = GNUNET_YES;
1068
1069     if (plugin->server_v4_task != NULL)
1070     {
1071       GNUNET_SCHEDULER_cancel (plugin->server_v4_task);
1072       plugin->server_v4_task = NULL;
1073     }
1074     plugin->server_v4_task = server_schedule (plugin, plugin->server_v4, now);
1075   }
1076
1077   if ((server == plugin->server_v6) && (plugin->server_v6 != NULL))
1078   {
1079     if (GNUNET_YES == plugin->server_v6_immediately)
1080       return; /* No rescheduling, server will run asap */
1081
1082     if (GNUNET_YES == now)
1083       plugin->server_v6_immediately = GNUNET_YES;
1084
1085     if (plugin->server_v6_task != NULL)
1086     {
1087       GNUNET_SCHEDULER_cancel (plugin->server_v6_task);
1088       plugin->server_v6_task = NULL;
1089     }
1090     plugin->server_v6_task = server_schedule (plugin, plugin->server_v6, now);
1091   }
1092 }
1093
1094
1095 /**
1096  * Function that is called to get the keepalive factor.
1097  * GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT is divided by this number to
1098  * calculate the interval between keepalive packets.
1099  *
1100  * @param cls closure with the `struct HTTP_Server_Plugin`
1101  * @return keepalive factor
1102  */
1103 static unsigned int
1104 http_server_query_keepalive_factor (void *cls)
1105 {
1106   return 3;
1107 }
1108
1109
1110 /**
1111  * Function that will be called whenever the transport service wants to
1112  * notify the plugin that a session is still active and in use and
1113  * therefore the session timeout for this session has to be updated
1114  *
1115  * @param cls closure
1116  * @param peer which peer was the session for
1117  * @param session which session is being updated
1118  */
1119 static void
1120 http_server_plugin_update_session_timeout (void *cls,
1121                                            const struct GNUNET_PeerIdentity *peer,
1122                                            struct GNUNET_ATS_Session *session)
1123 {
1124   server_reschedule_session_timeout (session);
1125 }
1126
1127
1128 /**
1129  * Tell MHD that the connection should timeout after @a to seconds.
1130  *
1131  * @param plugin our plugin
1132  * @param s session for which the timeout changes
1133  * @param to timeout in seconds
1134  */
1135 static void
1136 server_mhd_connection_timeout (struct HTTP_Server_Plugin *plugin,
1137                                struct GNUNET_ATS_Session *s,
1138                                unsigned int to)
1139 {
1140   /* Setting timeouts for other connections */
1141   if (NULL != s->server_recv)
1142   {
1143     LOG (GNUNET_ERROR_TYPE_DEBUG,
1144          "Setting timeout for %p to %u sec.\n",
1145          s->server_recv, to);
1146     MHD_set_connection_option (s->server_recv->mhd_conn,
1147                                MHD_CONNECTION_OPTION_TIMEOUT,
1148                                to);
1149     server_reschedule (plugin, s->server_recv->mhd_daemon, GNUNET_NO);
1150   }
1151   if (NULL != s->server_send)
1152   {
1153     LOG (GNUNET_ERROR_TYPE_DEBUG,
1154          "Setting timeout for %p to %u sec.\n",
1155          s->server_send, to);
1156     MHD_set_connection_option (s->server_send->mhd_conn,
1157                                MHD_CONNECTION_OPTION_TIMEOUT,
1158                                to);
1159     server_reschedule (plugin, s->server_send->mhd_daemon, GNUNET_NO);
1160   }
1161 }
1162
1163
1164 /**
1165  * Parse incoming URL for tag and target
1166  *
1167  * @param plugin plugin
1168  * @param url incoming url
1169  * @param target where to store the target
1170  * @param tag where to store the tag
1171  * @param options where to store the options
1172  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1173  */
1174 static int
1175 server_parse_url (struct HTTP_Server_Plugin *plugin,
1176                   const char *url,
1177                   struct GNUNET_PeerIdentity *target,
1178                   uint32_t *tag,
1179                   uint32_t *options)
1180 {
1181   regmatch_t matches[4];
1182   const char *tag_start;
1183   const char *target_start;
1184   char *tag_end;
1185   char *options_end;
1186   size_t hash_length;
1187   unsigned long int rc;
1188
1189   /* URL parsing */
1190 #define URL_REGEX \
1191   ("^.*/([0-9A-Z]+);([0-9]+)(,[0-9]+)?$")
1192
1193   if (NULL == url)
1194   {
1195     GNUNET_break (0);
1196     return GNUNET_SYSERR;
1197   }
1198
1199   if (regexec(&plugin->url_regex, url, 4, matches, 0))
1200   {
1201     LOG (GNUNET_ERROR_TYPE_DEBUG,
1202          "URL `%s' did not match regex\n", url);
1203     return GNUNET_SYSERR;
1204   }
1205
1206   target_start = &url[matches[1].rm_so];
1207   tag_start = &url[matches[2].rm_so];
1208
1209   /* convert tag */
1210   rc = strtoul (tag_start, &tag_end, 10);
1211   if (&url[matches[2].rm_eo] != tag_end)
1212   {
1213     LOG (GNUNET_ERROR_TYPE_DEBUG,
1214          "URL tag did not line up with submatch\n");
1215     return GNUNET_SYSERR;
1216   }
1217   if (rc == 0)
1218   {
1219     LOG (GNUNET_ERROR_TYPE_DEBUG,
1220          "URL tag is zero\n");
1221     return GNUNET_SYSERR;
1222   }
1223   if ((rc == ULONG_MAX) && (ERANGE == errno))
1224   {
1225     LOG (GNUNET_ERROR_TYPE_DEBUG,
1226          "URL tag > ULONG_MAX\n");
1227     return GNUNET_SYSERR;
1228   }
1229   if (rc > UINT32_MAX)
1230   {
1231     LOG (GNUNET_ERROR_TYPE_DEBUG,
1232          "URL tag > UINT32_MAX\n");
1233     return GNUNET_SYSERR;
1234   }
1235   (*tag) = (uint32_t)rc;
1236   LOG (GNUNET_ERROR_TYPE_DEBUG,
1237        "Found tag `%u' in url\n",
1238        *tag);
1239
1240   /* convert peer id */
1241   hash_length = matches[1].rm_eo - matches[1].rm_so;
1242   if (hash_length != plugin->peer_id_length)
1243   {
1244     LOG (GNUNET_ERROR_TYPE_DEBUG,
1245          "URL target is %u bytes, expecting %u\n",
1246          hash_length, plugin->peer_id_length);
1247     return GNUNET_SYSERR;
1248   }
1249   if (GNUNET_OK !=
1250       GNUNET_CRYPTO_eddsa_public_key_from_string (target_start,
1251                                                      hash_length,
1252                                                      &target->public_key))
1253   {
1254     LOG (GNUNET_ERROR_TYPE_DEBUG,
1255          "URL target conversion failed\n");
1256     return GNUNET_SYSERR;
1257   }
1258   LOG (GNUNET_ERROR_TYPE_DEBUG,
1259        "Found target `%s' in URL\n",
1260        GNUNET_i2s_full (target));
1261
1262   /* convert options */
1263   if (-1 == matches[3].rm_so)
1264   {
1265     *options = 0;
1266   }
1267   else
1268   {
1269     rc = strtoul (&url[matches[3].rm_so + 1], &options_end, 10);
1270     if (&url[matches[3].rm_eo] != options_end)
1271     {
1272       LOG (GNUNET_ERROR_TYPE_DEBUG,
1273            "URL options did not line up with submatch\n");
1274       return GNUNET_SYSERR;
1275     }
1276     if ((rc == ULONG_MAX) && (ERANGE == errno))
1277     {
1278       LOG (GNUNET_ERROR_TYPE_DEBUG,
1279            "URL options > ULONG_MAX\n");
1280       return GNUNET_SYSERR;
1281     }
1282     if (rc > UINT32_MAX)
1283     {
1284       LOG (GNUNET_ERROR_TYPE_DEBUG,
1285            "URL options > UINT32_MAX\n");
1286       return GNUNET_SYSERR;
1287     }
1288     (*options) = (uint32_t) rc;
1289     LOG (GNUNET_ERROR_TYPE_DEBUG,
1290          "Found options `%u' in url\n",
1291          *options);
1292   }
1293   return GNUNET_OK;
1294 }
1295
1296
1297 /**
1298  * Closure for #session_tag_it().
1299  */
1300 struct GNUNET_ATS_SessionTagContext
1301 {
1302   /**
1303    * Set to session matching the tag.
1304    */
1305   struct GNUNET_ATS_Session *res;
1306
1307   /**
1308    * Tag we are looking for.
1309    */
1310   uint32_t tag;
1311 };
1312
1313
1314 /**
1315  * Find a session with a matching tag.
1316  *
1317  * @param cls the `struct GNUNET_ATS_SessionTagContext *`
1318  * @param key peer identity (unused)
1319  * @param value the `struct GNUNET_ATS_Session *`
1320  * @return #GNUNET_NO if we found the session, #GNUNET_OK if not
1321  */
1322 static int
1323 session_tag_it (void *cls,
1324                 const struct GNUNET_PeerIdentity *key,
1325                 void *value)
1326 {
1327   struct GNUNET_ATS_SessionTagContext *stc = cls;
1328   struct GNUNET_ATS_Session *s = value;
1329
1330   if (s->tag == stc->tag)
1331   {
1332     stc->res = s;
1333     return GNUNET_NO;
1334   }
1335   return GNUNET_YES;
1336 }
1337
1338
1339 /**
1340  * Lookup a mhd connection and create one if none is found
1341  *
1342  * @param plugin the plugin handle
1343  * @param mhd_connection the incoming mhd_connection
1344  * @param url incoming requested URL
1345  * @param method PUT or GET
1346  * @return the server connecetion
1347  */
1348 static struct ServerRequest *
1349 server_lookup_connection (struct HTTP_Server_Plugin *plugin,
1350                           struct MHD_Connection *mhd_connection,
1351                           const char *url,
1352                           const char *method)
1353 {
1354   struct GNUNET_ATS_Session *s = NULL;
1355   struct ServerRequest *sc = NULL;
1356   const union MHD_ConnectionInfo *conn_info;
1357   struct HttpAddress *addr;
1358   struct GNUNET_PeerIdentity target;
1359   size_t addr_len;
1360   struct GNUNET_ATS_SessionTagContext stc;
1361   uint32_t options;
1362   int direction = GNUNET_SYSERR;
1363   unsigned int to;
1364   enum GNUNET_ATS_Network_Type scope;
1365
1366   conn_info = MHD_get_connection_info (mhd_connection,
1367                                        MHD_CONNECTION_INFO_CLIENT_ADDRESS);
1368   if ((conn_info->client_addr->sa_family != AF_INET) &&
1369       (conn_info->client_addr->sa_family != AF_INET6))
1370     return NULL;
1371   LOG (GNUNET_ERROR_TYPE_DEBUG,
1372        "New %s request from %s\n",
1373        method,
1374        url);
1375   stc.tag = 0;
1376   options = 0; /* make gcc happy */
1377   if (GNUNET_SYSERR ==
1378       server_parse_url (plugin, url, &target, &stc.tag, &options))
1379   {
1380     LOG (GNUNET_ERROR_TYPE_DEBUG,
1381          "Invalid url %s\n", url);
1382     return NULL;
1383   }
1384   if (0 == strcmp (MHD_HTTP_METHOD_PUT, method))
1385     direction = _RECEIVE;
1386   else if (0 == strcmp (MHD_HTTP_METHOD_GET, method))
1387     direction = _SEND;
1388   else
1389   {
1390     LOG (GNUNET_ERROR_TYPE_DEBUG,
1391          "Invalid method %s for request from %s\n",
1392          method, url);
1393     return NULL;
1394   }
1395
1396   plugin->cur_request++;
1397   LOG (GNUNET_ERROR_TYPE_DEBUG,
1398        "New %s request from %s with tag %u (%u of %u)\n",
1399        method,
1400        GNUNET_i2s (&target),
1401        stc.tag,
1402        plugin->cur_request, plugin->max_request);
1403   /* find existing session */
1404   stc.res = NULL;
1405   GNUNET_CONTAINER_multipeermap_get_multiple (plugin->sessions,
1406                                               &target,
1407                                               &session_tag_it,
1408                                               &stc);
1409   if (NULL == (s = stc.res))
1410   {
1411     /* create new session */
1412     addr = NULL;
1413     switch (conn_info->client_addr->sa_family)
1414     {
1415     case (AF_INET):
1416       addr = http_common_address_from_socket (plugin->protocol,
1417                                               conn_info->client_addr,
1418                                               sizeof (struct sockaddr_in));
1419       addr_len = http_common_address_get_size (addr);
1420       scope = plugin->env->get_address_type (plugin->env->cls,
1421                                              conn_info->client_addr,
1422                                              sizeof (struct sockaddr_in));
1423       break;
1424     case (AF_INET6):
1425       addr = http_common_address_from_socket (plugin->protocol,
1426                                               conn_info->client_addr,
1427                                               sizeof (struct sockaddr_in6));
1428       addr_len = http_common_address_get_size (addr);
1429       scope = plugin->env->get_address_type (plugin->env->cls,
1430                                              conn_info->client_addr,
1431                                              sizeof (struct sockaddr_in6));
1432       break;
1433     default:
1434       /* external host name */
1435       return NULL;
1436     }
1437     s = GNUNET_new (struct GNUNET_ATS_Session);
1438     s->target = target;
1439     s->plugin = plugin;
1440     s->scope = scope;
1441     s->address = GNUNET_HELLO_address_allocate (&s->target,
1442                                                 PLUGIN_NAME,
1443                                                 addr,
1444                                                 addr_len,
1445                                                 GNUNET_HELLO_ADDRESS_INFO_INBOUND);
1446     s->next_receive = GNUNET_TIME_UNIT_ZERO_ABS;
1447     s->tag = stc.tag;
1448     s->timeout = GNUNET_TIME_relative_to_absolute (HTTP_SERVER_SESSION_TIMEOUT);
1449     s->timeout_task = GNUNET_SCHEDULER_add_delayed (HTTP_SERVER_SESSION_TIMEOUT,
1450                                                     &server_session_timeout,
1451                                                     s);
1452     (void) GNUNET_CONTAINER_multipeermap_put (plugin->sessions,
1453                                               &s->target,
1454                                               s,
1455                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1456     notify_session_monitor (plugin,
1457                             s,
1458                             GNUNET_TRANSPORT_SS_INIT);
1459     notify_session_monitor (plugin,
1460                             s,
1461                             GNUNET_TRANSPORT_SS_HANDSHAKE);
1462     LOG (GNUNET_ERROR_TYPE_DEBUG,
1463          "Creating new session %p for peer `%s' connecting from `%s'\n",
1464          s, GNUNET_i2s (&target),
1465          http_common_plugin_address_to_string (plugin->protocol,
1466                                                addr,
1467                                                addr_len));
1468     GNUNET_free_non_null (addr);
1469   }
1470
1471   if ( (_RECEIVE == direction) &&
1472        (NULL != s->server_recv) )
1473   {
1474     LOG (GNUNET_ERROR_TYPE_DEBUG,
1475          "Duplicate PUT request from `%s' tag %u, dismissing new request\n",
1476          GNUNET_i2s (&target),
1477          stc.tag);
1478     return NULL;
1479   }
1480   if ((_SEND == direction) && (NULL != s->server_send))
1481   {
1482     LOG (GNUNET_ERROR_TYPE_DEBUG,
1483          "Duplicate GET request from `%s' tag %u, dismissing new request\n",
1484          GNUNET_i2s (&target),
1485          stc.tag);
1486     return NULL;
1487   }
1488   sc = GNUNET_new (struct ServerRequest);
1489   if (conn_info->client_addr->sa_family == AF_INET)
1490     sc->mhd_daemon = plugin->server_v4;
1491   if (conn_info->client_addr->sa_family == AF_INET6)
1492     sc->mhd_daemon = plugin->server_v6;
1493   sc->mhd_conn = mhd_connection;
1494   sc->direction = direction;
1495   sc->connected = GNUNET_NO;
1496   sc->session = s;
1497   sc->options = options;
1498   if (direction == _SEND)
1499   {
1500     s->server_send = sc;
1501   }
1502   if (direction == _RECEIVE)
1503   {
1504     s->server_recv = sc;
1505   }
1506
1507   if ((GNUNET_NO == s->known_to_service) &&
1508       (NULL != s->server_send) &&
1509       (NULL != s->server_recv) )
1510   {
1511     s->known_to_service = GNUNET_YES;
1512     notify_session_monitor (plugin,
1513                             s,
1514                             GNUNET_TRANSPORT_SS_UP);
1515     plugin->env->session_start (plugin->env->cls,
1516                                 s->address,
1517                                 s,
1518                                 s->scope);
1519   }
1520
1521   to = (HTTP_SERVER_SESSION_TIMEOUT.rel_value_us / 1000LL / 1000LL);
1522   server_mhd_connection_timeout (plugin, s, to);
1523   return sc;
1524 }
1525
1526
1527 /**
1528  * Callback called by MHD when it needs data to send
1529  *
1530  * @param cls current session
1531  * @param pos position in buffer
1532  * @param buf the buffer to write data to
1533  * @param max max number of bytes available in @a buf
1534  * @return bytes written to @a buf
1535  */
1536 static ssize_t
1537 server_send_callback (void *cls,
1538                       uint64_t pos,
1539                       char *buf,
1540                       size_t max)
1541 {
1542   struct ServerRequest *sc = cls;
1543   struct GNUNET_ATS_Session *s = sc->session;
1544   ssize_t bytes_read = 0;
1545   struct HTTP_Message *msg;
1546   char *stat_txt;
1547
1548   if (NULL == s)
1549   {
1550     /* session is disconnecting */
1551     return 0;
1552   }
1553
1554   sc = s->server_send;
1555   if (NULL == sc)
1556     return 0;
1557   msg = s->msg_head;
1558   if (NULL != msg)
1559   {
1560     /* sending */
1561     bytes_read = GNUNET_MIN (msg->size - msg->pos,
1562                              max);
1563     GNUNET_memcpy (buf, &msg->buf[msg->pos], bytes_read);
1564     msg->pos += bytes_read;
1565
1566     /* removing message */
1567     if (msg->pos == msg->size)
1568     {
1569       GNUNET_CONTAINER_DLL_remove (s->msg_head,
1570                                    s->msg_tail,
1571                                    msg);
1572       if (NULL != msg->transmit_cont)
1573         msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_OK,
1574                             msg->size, msg->size + msg->overhead);
1575       GNUNET_assert (s->msgs_in_queue > 0);
1576       s->msgs_in_queue--;
1577       GNUNET_assert (s->bytes_in_queue >= msg->size);
1578       s->bytes_in_queue -= msg->size;
1579       GNUNET_free (msg);
1580       notify_session_monitor (s->plugin,
1581                               s,
1582                               GNUNET_TRANSPORT_SS_UPDATE);
1583     }
1584   }
1585   if (0 < bytes_read)
1586   {
1587     sc->connected = GNUNET_YES;
1588     LOG (GNUNET_ERROR_TYPE_DEBUG,
1589          "Sent %u bytes to peer `%s' with session %p \n",
1590          bytes_read,
1591          GNUNET_i2s (&s->target),
1592          s);
1593     GNUNET_asprintf (&stat_txt,
1594                      "# bytes currently in %s_server buffers",
1595                      s->plugin->protocol);
1596     GNUNET_STATISTICS_update (s->plugin->env->stats,
1597                               stat_txt,
1598                               - bytes_read,
1599                               GNUNET_NO);
1600     GNUNET_free (stat_txt);
1601     GNUNET_asprintf (&stat_txt,
1602                      "# bytes transmitted via %s_server",
1603                      s->plugin->protocol);
1604     GNUNET_STATISTICS_update (s->plugin->env->stats,
1605                               stat_txt, bytes_read, GNUNET_NO);
1606     GNUNET_free (stat_txt);
1607   }
1608   else if ((sc->options & OPTION_LONG_POLL) && sc->connected)
1609   {
1610     LOG (GNUNET_ERROR_TYPE_DEBUG,
1611          "Completing GET response to peer `%s' with session %p\n",
1612          GNUNET_i2s (&s->target),
1613          s);
1614     return MHD_CONTENT_READER_END_OF_STREAM;
1615   }
1616   return bytes_read;
1617 }
1618
1619
1620 /**
1621  * Callback called by MessageStreamTokenizer when a message has arrived
1622  *
1623  * @param cls current session as closure
1624  * @param message the message to be forwarded to transport service
1625  * @return #GNUNET_OK
1626  */
1627 static int
1628 server_receive_mst_cb (void *cls,
1629                        const struct GNUNET_MessageHeader *message)
1630 {
1631   struct GNUNET_ATS_Session *s = cls;
1632   struct HTTP_Server_Plugin *plugin = s->plugin;
1633   struct GNUNET_TIME_Relative delay;
1634   char *stat_txt;
1635
1636   if (GNUNET_NO == s->known_to_service)
1637   {
1638     s->known_to_service = GNUNET_YES;
1639     plugin->env->session_start (plugin->env->cls,
1640                                 s->address,
1641                                 s,
1642                                 s->scope);
1643     notify_session_monitor (plugin,
1644                             s,
1645                             GNUNET_TRANSPORT_SS_UP);
1646   }
1647   delay = plugin->env->receive (plugin->env->cls,
1648                                 s->address,
1649                                 s,
1650                                 message);
1651   GNUNET_asprintf (&stat_txt,
1652                    "# bytes received via %s_server",
1653                    plugin->protocol);
1654   GNUNET_STATISTICS_update (plugin->env->stats,
1655                             stat_txt,
1656                             ntohs (message->size),
1657                             GNUNET_NO);
1658   GNUNET_free (stat_txt);
1659   s->next_receive = GNUNET_TIME_relative_to_absolute (delay);
1660   if (delay.rel_value_us > 0)
1661   {
1662     LOG (GNUNET_ERROR_TYPE_DEBUG,
1663          "Peer `%s' address `%s' next read delayed for %s\n",
1664          GNUNET_i2s (&s->target),
1665          http_common_plugin_address_to_string (plugin->protocol,
1666                                                s->address->address,
1667                                                s->address->address_length),
1668          GNUNET_STRINGS_relative_time_to_string (delay,
1669                                                  GNUNET_YES));
1670   }
1671   server_reschedule_session_timeout (s);
1672   return GNUNET_OK;
1673 }
1674
1675
1676 /**
1677  * Add headers to a request indicating that we allow Cross-Origin Resource
1678  * Sharing.
1679  *
1680  * @param response response object to modify
1681  */
1682 static void
1683 add_cors_headers(struct MHD_Response *response)
1684 {
1685   MHD_add_response_header (response,
1686                            "Access-Control-Allow-Origin",
1687                            "*");
1688   MHD_add_response_header (response,
1689                            "Access-Control-Allow-Methods",
1690                            "GET, PUT, OPTIONS");
1691   MHD_add_response_header (response,
1692                            "Access-Control-Max-Age",
1693                            "86400");
1694 }
1695
1696
1697 /**
1698  * MHD callback for a new incoming connection
1699  *
1700  * @param cls the plugin handle
1701  * @param mhd_connection the mhd connection
1702  * @param url the requested URL
1703  * @param method GET or PUT
1704  * @param version HTTP version
1705  * @param upload_data upload data
1706  * @param upload_data_size size of @a upload_data
1707  * @param httpSessionCache the session cache to remember the connection
1708  * @return MHD_YES if connection is accepted, MHD_NO on reject
1709  */
1710 static int
1711 server_access_cb (void *cls,
1712                   struct MHD_Connection *mhd_connection,
1713                   const char *url,
1714                   const char *method,
1715                   const char *version,
1716                   const char *upload_data,
1717                   size_t *upload_data_size,
1718                   void **httpSessionCache)
1719 {
1720   struct HTTP_Server_Plugin *plugin = cls;
1721   struct ServerRequest *sc = *httpSessionCache;
1722   struct GNUNET_ATS_Session *s;
1723   struct MHD_Response *response;
1724   int res = MHD_YES;
1725
1726   LOG (GNUNET_ERROR_TYPE_DEBUG,
1727        _("Access from connection %p (%u of %u) for `%s' `%s' url `%s' with upload data size %u\n"),
1728        sc,
1729        plugin->cur_request,
1730        plugin->max_request,
1731        method,
1732        version,
1733        url,
1734        (*upload_data_size));
1735   if (NULL == sc)
1736   {
1737     /* CORS pre-flight request */
1738     if (0 == strcmp (MHD_HTTP_METHOD_OPTIONS, method))
1739     {
1740       response = MHD_create_response_from_buffer (0, NULL,
1741           MHD_RESPMEM_PERSISTENT);
1742       add_cors_headers(response);
1743       res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
1744       MHD_destroy_response (response);
1745       return res;
1746     }
1747     /* new connection */
1748     sc = server_lookup_connection (plugin, mhd_connection, url, method);
1749     if (NULL != sc)
1750     {
1751       /* attach to new / existing session */
1752       (*httpSessionCache) = sc;
1753     }
1754     else
1755     {
1756       /* existing session already has matching connection, refuse */
1757       response = MHD_create_response_from_buffer (strlen (HTTP_ERROR_RESPONSE),
1758                                                   HTTP_ERROR_RESPONSE,
1759                                                   MHD_RESPMEM_PERSISTENT);
1760       MHD_add_response_header (response,
1761                                MHD_HTTP_HEADER_CONTENT_TYPE,
1762                                "text/html");
1763       add_cors_headers(response);
1764       res = MHD_queue_response (mhd_connection, MHD_HTTP_NOT_FOUND, response);
1765       MHD_destroy_response (response);
1766       return res;
1767     }
1768   }
1769   /* 'old' connection */
1770   if (NULL == (s = sc->session))
1771   {
1772     /* Session was already disconnected;
1773        sent HTTP/1.1: 200 OK as response */
1774     response = MHD_create_response_from_buffer (strlen ("Thank you!"),
1775                                                 "Thank you!",
1776                                                 MHD_RESPMEM_PERSISTENT);
1777     add_cors_headers(response);
1778     MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
1779     MHD_destroy_response (response);
1780     return MHD_YES;
1781   }
1782
1783   if (sc->direction == _SEND)
1784   {
1785     response = MHD_create_response_from_callback (MHD_SIZE_UNKNOWN, 32 * 1024,
1786         &server_send_callback, sc, NULL);
1787     add_cors_headers(response);
1788     MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
1789     MHD_destroy_response (response);
1790     return MHD_YES;
1791   }
1792   if (sc->direction == _RECEIVE)
1793   {
1794     if ((*upload_data_size == 0) && (sc->connected == GNUNET_NO))
1795     {
1796       /* (*upload_data_size == 0) first callback when header are passed */
1797       LOG (GNUNET_ERROR_TYPE_DEBUG,
1798            "Session %p / Connection %p: Peer `%s' PUT on address `%s' connected\n",
1799            s, sc,
1800            GNUNET_i2s (&s->target),
1801            http_common_plugin_address_to_string (plugin->protocol,
1802                                                  s->address->address,
1803                                                  s->address->address_length));
1804       sc->connected = GNUNET_YES;
1805       return MHD_YES;
1806     }
1807     else if ((*upload_data_size == 0) && (sc->connected == GNUNET_YES))
1808     {
1809       /* (*upload_data_size == 0) when upload is complete */
1810       LOG (GNUNET_ERROR_TYPE_DEBUG,
1811            "Session %p / Connection %p: Peer `%s' PUT on address `%s' finished upload\n",
1812            s, sc,
1813            GNUNET_i2s (&s->target),
1814            http_common_plugin_address_to_string (plugin->protocol,
1815                                                  s->address->address,
1816                                                  s->address->address_length));
1817       sc->connected = GNUNET_NO;
1818       /* Sent HTTP/1.1: 200 OK as PUT Response\ */
1819       response = MHD_create_response_from_buffer (strlen ("Thank you!"),
1820                                                   "Thank you!",
1821                                                   MHD_RESPMEM_PERSISTENT);
1822       add_cors_headers(response);
1823       MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
1824       MHD_destroy_response (response);
1825       return MHD_YES;
1826     }
1827     else if ((*upload_data_size > 0) && (sc->connected == GNUNET_YES))
1828     {
1829       struct GNUNET_TIME_Relative delay;
1830
1831       /* (*upload_data_size > 0) for every segment received */
1832       LOG (GNUNET_ERROR_TYPE_DEBUG,
1833            "Session %p / Connection %p: Peer `%s' PUT on address `%s' received %u bytes\n",
1834            s, sc,
1835            GNUNET_i2s (&s->target),
1836            http_common_plugin_address_to_string (plugin->protocol,
1837                                                  s->address->address,
1838                                                  s->address->address_length),
1839            *upload_data_size);
1840       delay = GNUNET_TIME_absolute_get_remaining (s->next_receive);
1841       if (0 == delay.rel_value_us)
1842       {
1843         LOG (GNUNET_ERROR_TYPE_DEBUG,
1844              "PUT with %u bytes forwarded to MST\n",
1845              *upload_data_size);
1846         if (s->msg_tk == NULL)
1847         {
1848           s->msg_tk = GNUNET_MST_create (&server_receive_mst_cb,
1849                                          s);
1850         }
1851         GNUNET_MST_from_buffer (s->msg_tk,
1852                                 upload_data,
1853                                 *upload_data_size,
1854                                 GNUNET_NO, GNUNET_NO);
1855         server_mhd_connection_timeout (plugin, s,
1856                                        GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value_us / 1000LL
1857                                        / 1000LL);
1858         (*upload_data_size) = 0;
1859       }
1860       else
1861       {
1862         /* delay processing */
1863         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1864                     "Session %p / Connection %p: no inbound bandwidth available! Next read was delayed by %s\n",
1865                     s,
1866                     sc,
1867                     GNUNET_STRINGS_relative_time_to_string (delay,
1868                                                             GNUNET_YES));
1869         GNUNET_assert(s->server_recv->mhd_conn == mhd_connection);
1870         MHD_suspend_connection (s->server_recv->mhd_conn);
1871         if (NULL == s->recv_wakeup_task)
1872           s->recv_wakeup_task
1873             = GNUNET_SCHEDULER_add_delayed (delay,
1874                                             &server_wake_up,
1875                                             s);
1876       }
1877       return MHD_YES;
1878     }
1879     else
1880     {
1881       GNUNET_break (0);
1882       return MHD_NO;
1883     }
1884   }
1885   return res;
1886 }
1887
1888
1889 /**
1890  * Callback from MHD when a connection disconnects
1891  *
1892  * @param cls closure with the `struct HTTP_Server_Plugin *`
1893  * @param connection the disconnected MHD connection
1894  * @param httpSessionCache the pointer to distinguish
1895  */
1896 static void
1897 server_disconnect_cb (void *cls,
1898                       struct MHD_Connection *connection,
1899                       void **httpSessionCache)
1900 {
1901   struct HTTP_Server_Plugin *plugin = cls;
1902   struct ServerRequest *sc = *httpSessionCache;
1903
1904   LOG (GNUNET_ERROR_TYPE_DEBUG,
1905        "Disconnect for connection %p\n",
1906        sc);
1907   if (NULL == sc)
1908   {
1909     /* CORS pre-flight request finished */
1910     return;
1911   }
1912
1913   if (NULL != sc->session)
1914   {
1915     if (sc->direction == _SEND)
1916     {
1917       LOG (GNUNET_ERROR_TYPE_DEBUG,
1918            "Peer `%s' connection  %p, GET on address `%s' disconnected\n",
1919            GNUNET_i2s (&sc->session->target),
1920            sc->session->server_send,
1921            http_common_plugin_address_to_string (plugin->protocol,
1922                sc->session->address->address,
1923                sc->session->address->address_length));
1924
1925       sc->session->server_send = NULL;
1926     }
1927     else if (sc->direction == _RECEIVE)
1928     {
1929       LOG (GNUNET_ERROR_TYPE_DEBUG,
1930            "Peer `%s' connection %p PUT on address `%s' disconnected\n",
1931            GNUNET_i2s (&sc->session->target),
1932            sc->session->server_recv,
1933            http_common_plugin_address_to_string (plugin->protocol,
1934                sc->session->address->address,
1935                sc->session->address->address_length));
1936       sc->session->server_recv = NULL;
1937       if (NULL != sc->session->msg_tk)
1938       {
1939         GNUNET_MST_destroy (sc->session->msg_tk);
1940         sc->session->msg_tk = NULL;
1941       }
1942     }
1943   }
1944   GNUNET_free (sc);
1945   plugin->cur_request--;
1946 }
1947
1948
1949 /**
1950  * Check if incoming connection is accepted.
1951  *
1952  * @param cls plugin as closure
1953  * @param addr address of incoming connection
1954  * @param addr_len number of bytes in @a addr
1955  * @return MHD_YES if connection is accepted, MHD_NO if connection is rejected
1956  */
1957 static int
1958 server_accept_cb (void *cls,
1959                   const struct sockaddr *addr,
1960                   socklen_t addr_len)
1961 {
1962   struct HTTP_Server_Plugin *plugin = cls;
1963
1964   if (plugin->cur_request <= plugin->max_request)
1965   {
1966     LOG (GNUNET_ERROR_TYPE_DEBUG,
1967          _("Accepting connection (%u of %u) from `%s'\n"),
1968          plugin->cur_request, plugin->max_request,
1969          GNUNET_a2s (addr, addr_len));
1970     return MHD_YES;
1971   }
1972   else
1973   {
1974     LOG (GNUNET_ERROR_TYPE_WARNING,
1975          _("Server reached maximum number connections (%u), rejecting new connection\n"),
1976          plugin->max_request);
1977     return MHD_NO;
1978   }
1979 }
1980
1981
1982 /**
1983  * Log function called by MHD.
1984  *
1985  * @param arg NULL
1986  * @param fmt format string
1987  * @param ap arguments for the format string (va_start() and va_end()
1988  *           will be called by MHD)
1989  */
1990 static void
1991 server_log (void *arg,
1992             const char *fmt,
1993             va_list ap)
1994 {
1995   char text[1024];
1996
1997   vsnprintf (text,
1998              sizeof (text),
1999              fmt,
2000              ap);
2001   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2002               "Server: %s\n",
2003               text);
2004 }
2005
2006
2007 #if BUILD_HTTPS
2008 /**
2009  * Load ssl certificate from file
2010  *
2011  * @param file filename
2012  * @return content of the file
2013  */
2014 static char *
2015 server_load_file (const char *file)
2016 {
2017   struct GNUNET_DISK_FileHandle *gn_file;
2018   uint64_t fsize;
2019   char *text = NULL;
2020
2021   if (GNUNET_OK != GNUNET_DISK_file_size (file,
2022       &fsize, GNUNET_NO, GNUNET_YES))
2023     return NULL;
2024   text = GNUNET_malloc (fsize + 1);
2025   gn_file =
2026       GNUNET_DISK_file_open (file, GNUNET_DISK_OPEN_READ,
2027                              GNUNET_DISK_PERM_USER_READ);
2028   if (NULL == gn_file)
2029   {
2030     GNUNET_free (text);
2031     return NULL;
2032   }
2033   if (GNUNET_SYSERR == GNUNET_DISK_file_read (gn_file, text, fsize))
2034   {
2035     GNUNET_free (text);
2036     GNUNET_DISK_file_close (gn_file);
2037     return NULL;
2038   }
2039   text[fsize] = '\0';
2040   GNUNET_DISK_file_close (gn_file);
2041   return text;
2042 }
2043 #endif
2044
2045
2046 #if BUILD_HTTPS
2047 /**
2048  * Load ssl certificate
2049  *
2050  * @param plugin the plugin
2051  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
2052  */
2053 static int
2054 server_load_certificate (struct HTTP_Server_Plugin *plugin)
2055 {
2056   int res = GNUNET_OK;
2057   char *key_file;
2058   char *cert_file;
2059
2060
2061   if (GNUNET_OK !=
2062       GNUNET_CONFIGURATION_get_value_filename (plugin->env->cfg,
2063                                                plugin->name,
2064                                                "KEY_FILE", &key_file))
2065   {
2066     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
2067                                plugin->name, "CERT_FILE");
2068     return GNUNET_SYSERR;
2069   }
2070   if (GNUNET_OK !=
2071       GNUNET_CONFIGURATION_get_value_filename (plugin->env->cfg,
2072                                                plugin->name,
2073                                                "CERT_FILE", &cert_file))
2074   {
2075     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
2076                                plugin->name, "CERT_FILE");
2077     GNUNET_free (key_file);
2078     return GNUNET_SYSERR;
2079   }
2080   /* Get crypto init string from config. If not present, use
2081    * default values */
2082   if (GNUNET_OK ==
2083       GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg,
2084                                              plugin->name,
2085                                              "CRYPTO_INIT",
2086                                              &plugin->crypto_init))
2087     LOG (GNUNET_ERROR_TYPE_DEBUG,
2088          "Using crypto init string `%s'\n",
2089          plugin->crypto_init);
2090   else
2091     LOG (GNUNET_ERROR_TYPE_DEBUG,
2092          "Using default crypto init string \n");
2093
2094   /* read key & certificates from file */
2095   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2096               "Trying to loading TLS certificate from key-file `%s' cert-file`%s'\n",
2097               key_file, cert_file);
2098
2099   plugin->key = server_load_file (key_file);
2100   plugin->cert = server_load_file (cert_file);
2101
2102   if ((plugin->key == NULL) || (plugin->cert == NULL))
2103   {
2104     struct GNUNET_OS_Process *cert_creation;
2105
2106     GNUNET_free_non_null (plugin->key);
2107     plugin->key = NULL;
2108     GNUNET_free_non_null (plugin->cert);
2109     plugin->cert = NULL;
2110
2111     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2112                 "No usable TLS certificate found, creating certificate\n");
2113     errno = 0;
2114     cert_creation =
2115         GNUNET_OS_start_process (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
2116                                  NULL, NULL, NULL,
2117                                  "gnunet-transport-certificate-creation",
2118                                  "gnunet-transport-certificate-creation",
2119                                  key_file,
2120                                  cert_file,
2121                                  NULL);
2122     if (NULL == cert_creation)
2123     {
2124       LOG (GNUNET_ERROR_TYPE_ERROR,
2125            _("Could not create a new TLS certificate, program `gnunet-transport-certificate-creation' could not be started!\n"));
2126       GNUNET_free (key_file);
2127       GNUNET_free (cert_file);
2128
2129       GNUNET_free_non_null (plugin->key);
2130       plugin->key = NULL;
2131       GNUNET_free_non_null (plugin->cert);
2132       plugin->cert = NULL;
2133       GNUNET_free_non_null (plugin->crypto_init);
2134       plugin->crypto_init = NULL;
2135
2136       return GNUNET_SYSERR;
2137     }
2138     GNUNET_assert (GNUNET_OK == GNUNET_OS_process_wait (cert_creation));
2139     GNUNET_OS_process_destroy (cert_creation);
2140
2141     plugin->key = server_load_file (key_file);
2142     plugin->cert = server_load_file (cert_file);
2143   }
2144
2145   if ((plugin->key == NULL) || (plugin->cert == NULL))
2146   {
2147     LOG (GNUNET_ERROR_TYPE_ERROR,
2148          _("No usable TLS certificate found and creating one at `%s/%s' failed!\n"),
2149          key_file, cert_file);
2150     GNUNET_free (key_file);
2151     GNUNET_free (cert_file);
2152
2153     GNUNET_free_non_null (plugin->key);
2154     plugin->key = NULL;
2155     GNUNET_free_non_null (plugin->cert);
2156     plugin->cert = NULL;
2157     GNUNET_free_non_null (plugin->crypto_init);
2158     plugin->crypto_init = NULL;
2159
2160     return GNUNET_SYSERR;
2161   }
2162   GNUNET_free (key_file);
2163   GNUNET_free (cert_file);
2164   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2165               "TLS certificate loaded\n");
2166   return res;
2167 }
2168 #endif
2169
2170
2171 /**
2172  * Invoke `MHD_start_daemon` with the various options we need to
2173  * setup the HTTP server with the given listen address.
2174  *
2175  * @param plugin our plugin
2176  * @param addr listen address to use
2177  * @param v6 MHD_NO_FLAG or MHD_USE_IPv6, depending on context
2178  * @return NULL on error
2179  */
2180 static struct MHD_Daemon *
2181 run_mhd_start_daemon (struct HTTP_Server_Plugin *plugin,
2182                       const struct sockaddr_in *addr,
2183                       int v6)
2184 {
2185   struct MHD_Daemon *server;
2186   unsigned int timeout;
2187
2188 #if MHD_VERSION >= 0x00090E00
2189   timeout = HTTP_SERVER_NOT_VALIDATED_TIMEOUT.rel_value_us / 1000LL / 1000LL;
2190   LOG (GNUNET_ERROR_TYPE_DEBUG,
2191        "MHD can set timeout per connection! Default time out %u sec.\n",
2192        timeout);
2193 #else
2194   timeout = HTTP_SERVER_SESSION_TIMEOUT.rel_value_us / 1000LL / 1000LL;
2195   LOG (GNUNET_ERROR_TYPE_WARNING,
2196        "MHD cannot set timeout per connection! Default time out %u sec.\n",
2197        timeout);
2198 #endif
2199   server = MHD_start_daemon (
2200 #if VERBOSE_SERVER
2201                              MHD_USE_DEBUG |
2202 #endif
2203 #if BUILD_HTTPS
2204                              MHD_USE_SSL |
2205 #endif
2206                              MHD_USE_SUSPEND_RESUME |
2207                              v6,
2208                              plugin->port,
2209                              &server_accept_cb, plugin,
2210                              &server_access_cb, plugin,
2211                              MHD_OPTION_SOCK_ADDR,
2212                              addr,
2213                              MHD_OPTION_CONNECTION_LIMIT,
2214                              (unsigned int) plugin->max_request,
2215 #if BUILD_HTTPS
2216                              MHD_OPTION_HTTPS_PRIORITIES,
2217                              plugin->crypto_init,
2218                              MHD_OPTION_HTTPS_MEM_KEY,
2219                              plugin->key,
2220                              MHD_OPTION_HTTPS_MEM_CERT,
2221                              plugin->cert,
2222 #endif
2223                              MHD_OPTION_CONNECTION_TIMEOUT,
2224                              timeout,
2225                              MHD_OPTION_CONNECTION_MEMORY_LIMIT,
2226                              (size_t) (2 *
2227                                        GNUNET_MAX_MESSAGE_SIZE),
2228                              MHD_OPTION_NOTIFY_COMPLETED,
2229                              &server_disconnect_cb, plugin,
2230                              MHD_OPTION_EXTERNAL_LOGGER,
2231                              &server_log, NULL,
2232                              MHD_OPTION_END);
2233 #ifdef TCP_STEALTH
2234   if ( (NULL != server) &&
2235        (0 != (plugin->options & HTTP_OPTIONS_TCP_STEALTH)) )
2236   {
2237     const union MHD_DaemonInfo *di;
2238
2239     di = MHD_get_daemon_info (server,
2240                               MHD_DAEMON_INFO_LISTEN_FD,
2241                               NULL);
2242     if ( (0 != setsockopt ((int) di->listen_fd,
2243                            IPPROTO_TCP,
2244                            TCP_STEALTH,
2245                            plugin->env->my_identity,
2246                            sizeof (struct GNUNET_PeerIdentity))) )
2247     {
2248       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2249                   _("TCP_STEALTH not supported on this platform.\n"));
2250       MHD_stop_daemon (server);
2251       server = NULL;
2252     }
2253   }
2254 #endif
2255   return server;
2256 }
2257
2258
2259 /**
2260  * Start the HTTP server
2261  *
2262  * @param plugin the plugin handle
2263  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
2264  */
2265 static int
2266 server_start (struct HTTP_Server_Plugin *plugin)
2267 {
2268   const char *msg;
2269
2270   GNUNET_assert (NULL != plugin);
2271 #if BUILD_HTTPS
2272   if (GNUNET_SYSERR == server_load_certificate (plugin))
2273   {
2274     LOG (GNUNET_ERROR_TYPE_ERROR,
2275          _("Could not load or create server certificate! Loading plugin failed!\n"));
2276     return GNUNET_SYSERR;
2277   }
2278 #endif
2279
2280
2281
2282   plugin->server_v4 = NULL;
2283   if (GNUNET_YES == plugin->use_ipv4)
2284   {
2285     plugin->server_v4
2286       = run_mhd_start_daemon (plugin,
2287                               (const struct sockaddr_in *) plugin->server_addr_v4,
2288                               MHD_NO_FLAG);
2289
2290     if (NULL == plugin->server_v4)
2291     {
2292       LOG (GNUNET_ERROR_TYPE_ERROR,
2293            "Failed to start %s IPv4 server component on port %u\n",
2294            plugin->name,
2295            plugin->port);
2296     }
2297     else
2298       server_reschedule (plugin,
2299                          plugin->server_v4,
2300                          GNUNET_NO);
2301   }
2302
2303
2304   plugin->server_v6 = NULL;
2305   if (GNUNET_YES == plugin->use_ipv6)
2306   {
2307     plugin->server_v6
2308       = run_mhd_start_daemon (plugin,
2309                               (const struct sockaddr_in *) plugin->server_addr_v6,
2310                               MHD_USE_IPv6);
2311     if (NULL == plugin->server_v6)
2312     {
2313       LOG (GNUNET_ERROR_TYPE_ERROR,
2314            "Failed to start %s IPv6 server component on port %u\n",
2315            plugin->name,
2316            plugin->port);
2317     }
2318     else
2319     {
2320       server_reschedule (plugin,
2321                          plugin->server_v6,
2322                          GNUNET_NO);
2323     }
2324   }
2325   msg = "No";
2326   if ( (NULL == plugin->server_v6) &&
2327        (NULL == plugin->server_v4) )
2328   {
2329     LOG (GNUNET_ERROR_TYPE_ERROR,
2330          "%s %s server component started on port %u\n",
2331          msg,
2332          plugin->name,
2333          plugin->port);
2334     return GNUNET_SYSERR;
2335   }
2336   if ((NULL != plugin->server_v6) &&
2337       (NULL != plugin->server_v4))
2338     msg = "IPv4 and IPv6";
2339   else if (NULL != plugin->server_v6)
2340     msg = "IPv6";
2341   else if (NULL != plugin->server_v4)
2342     msg = "IPv4";
2343   LOG (GNUNET_ERROR_TYPE_DEBUG,
2344        "%s %s server component started on port %u\n",
2345        msg,
2346        plugin->name,
2347        plugin->port);
2348   return GNUNET_OK;
2349 }
2350
2351
2352 /**
2353  * Add an address to the server's set of addresses and notify transport
2354  *
2355  * @param cls the plugin handle
2356  * @param add_remove #GNUNET_YES on add, #GNUNET_NO on remove
2357  * @param addr the address
2358  * @param addrlen address length
2359  */
2360 static void
2361 server_add_address (void *cls,
2362                     int add_remove,
2363                     const struct sockaddr *addr,
2364                     socklen_t addrlen)
2365 {
2366   struct HTTP_Server_Plugin *plugin = cls;
2367   struct GNUNET_HELLO_Address *address;
2368   struct HttpAddressWrapper *w = NULL;
2369
2370   w = GNUNET_new (struct HttpAddressWrapper);
2371   w->address = http_common_address_from_socket (plugin->protocol,
2372                                                 addr,
2373                                                 addrlen);
2374   if (NULL == w->address)
2375   {
2376     GNUNET_free (w);
2377     return;
2378   }
2379   w->addrlen = http_common_address_get_size (w->address);
2380
2381   GNUNET_CONTAINER_DLL_insert (plugin->addr_head,
2382                                plugin->addr_tail,
2383                                w);
2384   LOG (GNUNET_ERROR_TYPE_DEBUG,
2385        "Notifying transport to add address `%s'\n",
2386        http_common_plugin_address_to_string (plugin->protocol,
2387                                              w->address,
2388                                              w->addrlen));
2389   /* modify our published address list */
2390 #if BUILD_HTTPS
2391   address = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
2392       "https_client", w->address, w->addrlen, GNUNET_HELLO_ADDRESS_INFO_NONE);
2393 #else
2394   address = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
2395       "http_client", w->address, w->addrlen, GNUNET_HELLO_ADDRESS_INFO_NONE);
2396 #endif
2397
2398   plugin->env->notify_address (plugin->env->cls,
2399                                add_remove,
2400                                address);
2401   GNUNET_HELLO_address_free (address);
2402 }
2403
2404
2405 /**
2406  * Remove an address from the server's set of addresses and notify transport
2407  *
2408  * @param cls the plugin handle
2409  * @param add_remove #GNUNET_YES on add, #GNUNET_NO on remove
2410  * @param addr the address
2411  * @param addrlen address length
2412  */
2413 static void
2414 server_remove_address (void *cls,
2415                        int add_remove,
2416                        const struct sockaddr *addr,
2417                        socklen_t addrlen)
2418 {
2419   struct HTTP_Server_Plugin *plugin = cls;
2420   struct GNUNET_HELLO_Address *address;
2421   struct HttpAddressWrapper *w = plugin->addr_head;
2422   size_t saddr_len;
2423   void * saddr;
2424
2425   saddr = http_common_address_from_socket (plugin->protocol,
2426                                            addr,
2427                                            addrlen);
2428   if (NULL == saddr)
2429     return;
2430   saddr_len = http_common_address_get_size (saddr);
2431
2432   while (NULL != w)
2433   {
2434     if (GNUNET_YES ==
2435         http_common_cmp_addresses (w->address,
2436                                    w->addrlen,
2437                                    saddr,
2438                                    saddr_len))
2439       break;
2440     w = w->next;
2441   }
2442   GNUNET_free (saddr);
2443
2444   if (NULL == w)
2445     return;
2446
2447   LOG (GNUNET_ERROR_TYPE_DEBUG,
2448        "Notifying transport to remove address `%s'\n",
2449        http_common_plugin_address_to_string (plugin->protocol,
2450                                              w->address,
2451                                              w->addrlen));
2452   GNUNET_CONTAINER_DLL_remove (plugin->addr_head,
2453                                plugin->addr_tail,
2454                                w);
2455   /* modify our published address list */
2456 #if BUILD_HTTPS
2457   address = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
2458       "https_client", w->address, w->addrlen, GNUNET_HELLO_ADDRESS_INFO_NONE);
2459 #else
2460   address = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
2461       "http_client", w->address, w->addrlen, GNUNET_HELLO_ADDRESS_INFO_NONE);
2462 #endif
2463   plugin->env->notify_address (plugin->env->cls, add_remove, address);
2464   GNUNET_HELLO_address_free (address);
2465   GNUNET_free (w->address);
2466   GNUNET_free (w);
2467 }
2468
2469
2470
2471 /**
2472  * Our external IP address/port mapping has changed.
2473  *
2474  * @param cls closure, the 'struct LocalAddrList'
2475  * @param add_remove #GNUNET_YES to mean the new public IP address, #GNUNET_NO to mean
2476  *     the previous (now invalid) one
2477  * @param ac address class the address belongs to
2478  * @param addr either the previous or the new public IP address
2479  * @param addrlen actual lenght of the address
2480  */
2481 static void
2482 server_nat_port_map_callback (void *cls,
2483                               int add_remove,
2484                               enum GNUNET_NAT_AddressClass ac,
2485                               const struct sockaddr *addr,
2486                               socklen_t addrlen)
2487 {
2488   struct HTTP_Server_Plugin *plugin = cls;
2489
2490   LOG (GNUNET_ERROR_TYPE_DEBUG,
2491        "NAT called to %s address `%s'\n",
2492        (add_remove == GNUNET_NO) ? "remove" : "add",
2493        GNUNET_a2s (addr, addrlen));
2494
2495   if (AF_INET == addr->sa_family)
2496   {
2497     struct sockaddr_in *s4 = (struct sockaddr_in *) addr;
2498
2499     if (GNUNET_NO == plugin->use_ipv4)
2500       return;
2501
2502     if ((NULL != plugin->server_addr_v4) &&
2503         (0 != memcmp (&plugin->server_addr_v4->sin_addr,
2504                       &s4->sin_addr,
2505                       sizeof (struct in_addr))))
2506     {
2507       LOG (GNUNET_ERROR_TYPE_DEBUG,
2508            "Skipping address `%s' (not bindto address)\n",
2509            GNUNET_a2s (addr, addrlen));
2510       return;
2511     }
2512   }
2513
2514   if (AF_INET6 == addr->sa_family)
2515   {
2516     struct sockaddr_in6 *s6 = (struct sockaddr_in6 *) addr;
2517     if (GNUNET_NO == plugin->use_ipv6)
2518       return;
2519
2520     if ((NULL != plugin->server_addr_v6) &&
2521         (0 != memcmp (&plugin->server_addr_v6->sin6_addr,
2522                       &s6->sin6_addr, sizeof (struct in6_addr))))
2523     {
2524       LOG (GNUNET_ERROR_TYPE_DEBUG,
2525            "Skipping address `%s' (not bindto address)\n",
2526            GNUNET_a2s (addr, addrlen));
2527       return;
2528     }
2529   }
2530
2531   switch (add_remove)
2532   {
2533   case GNUNET_YES:
2534     server_add_address (cls, add_remove, addr, addrlen);
2535     break;
2536   case GNUNET_NO:
2537     server_remove_address (cls, add_remove, addr, addrlen);
2538     break;
2539   }
2540 }
2541
2542
2543 /**
2544  * Get valid server addresses
2545  *
2546  * @param plugin the plugin handle
2547  * @param service_name the servicename
2548  * @param cfg configuration handle
2549  * @param addrs addresses
2550  * @param addr_lens address length
2551  * @return number of addresses
2552  */
2553 static int
2554 server_get_addresses (struct HTTP_Server_Plugin *plugin,
2555                       const char *service_name,
2556                       const struct GNUNET_CONFIGURATION_Handle *cfg,
2557                       struct sockaddr ***addrs,
2558                       socklen_t ** addr_lens)
2559 {
2560   int disablev6;
2561   unsigned long long port;
2562   struct addrinfo hints;
2563   struct addrinfo *res;
2564   struct addrinfo *pos;
2565   struct addrinfo *next;
2566   unsigned int i;
2567   int resi;
2568   int ret;
2569   struct sockaddr **saddrs;
2570   socklen_t *saddrlens;
2571   char *hostname;
2572
2573   *addrs = NULL;
2574   *addr_lens = NULL;
2575
2576   disablev6 = !plugin->use_ipv6;
2577
2578   port = 0;
2579   if (GNUNET_CONFIGURATION_have_value (cfg, service_name, "PORT"))
2580   {
2581     GNUNET_break (GNUNET_OK ==
2582                   GNUNET_CONFIGURATION_get_value_number (cfg, service_name,
2583                                                          "PORT", &port));
2584     if (port > 65535)
2585     {
2586       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2587                   _("Require valid port number for service in configuration!\n"));
2588       return GNUNET_SYSERR;
2589     }
2590   }
2591   if (0 == port)
2592   {
2593     LOG (GNUNET_ERROR_TYPE_INFO,
2594          "Starting in listen only mode\n");
2595     return -1; /* listen only */
2596   }
2597
2598
2599   if (GNUNET_CONFIGURATION_have_value (cfg, service_name,
2600                                        "BINDTO"))
2601   {
2602     GNUNET_break (GNUNET_OK ==
2603                   GNUNET_CONFIGURATION_get_value_string (cfg, service_name,
2604                                                          "BINDTO", &hostname));
2605   }
2606   else
2607     hostname = NULL;
2608
2609   if (NULL != hostname)
2610   {
2611     LOG (GNUNET_ERROR_TYPE_DEBUG,
2612          "Resolving `%s' since that is where `%s' will bind to.\n",
2613          hostname, service_name);
2614     memset (&hints, 0, sizeof (struct addrinfo));
2615     if (disablev6)
2616       hints.ai_family = AF_INET;
2617     if ((0 != (ret = getaddrinfo (hostname, NULL, &hints, &res))) ||
2618         (NULL == res))
2619     {
2620       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2621                   _("Failed to resolve `%s': %s\n"),
2622                   hostname,
2623                   gai_strerror (ret));
2624       GNUNET_free (hostname);
2625       return GNUNET_SYSERR;
2626     }
2627     next = res;
2628     i = 0;
2629     while (NULL != (pos = next))
2630     {
2631       next = pos->ai_next;
2632       if ((disablev6) && (pos->ai_family == AF_INET6))
2633         continue;
2634       i++;
2635     }
2636     if (0 == i)
2637     {
2638       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2639                   _("Failed to find %saddress for `%s'.\n"),
2640                   disablev6 ? "IPv4 " : "", hostname);
2641       freeaddrinfo (res);
2642       GNUNET_free (hostname);
2643       return GNUNET_SYSERR;
2644     }
2645     resi = i;
2646     saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
2647     saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
2648     i = 0;
2649     next = res;
2650     while (NULL != (pos = next))
2651     {
2652       next = pos->ai_next;
2653       if ((disablev6) && (pos->ai_family == AF_INET6))
2654         continue;
2655       if ((pos->ai_protocol != IPPROTO_TCP) && (0 != pos->ai_protocol))
2656         continue;               /* not TCP */
2657       if ((pos->ai_socktype != SOCK_STREAM) && (0 != pos->ai_socktype))
2658         continue;               /* huh? */
2659       LOG (GNUNET_ERROR_TYPE_DEBUG,
2660            "Service will bind to `%s'\n",
2661            GNUNET_a2s (pos->ai_addr,
2662                        pos->ai_addrlen));
2663       if (pos->ai_family == AF_INET)
2664       {
2665         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in));
2666         saddrlens[i] = pos->ai_addrlen;
2667         saddrs[i] = GNUNET_malloc (saddrlens[i]);
2668         GNUNET_memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
2669         ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
2670       }
2671       else
2672       {
2673         GNUNET_assert (pos->ai_family == AF_INET6);
2674         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in6));
2675         saddrlens[i] = pos->ai_addrlen;
2676         saddrs[i] = GNUNET_malloc (saddrlens[i]);
2677         GNUNET_memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
2678         ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
2679       }
2680       i++;
2681     }
2682     GNUNET_free (hostname);
2683     freeaddrinfo (res);
2684     resi = i;
2685   }
2686   else
2687   {
2688     /* will bind against everything, just set port */
2689     if (disablev6)
2690     {
2691       /* V4-only */
2692       resi = 1;
2693       i = 0;
2694       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
2695       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
2696
2697       saddrlens[i] = sizeof (struct sockaddr_in);
2698       saddrs[i] = GNUNET_malloc (saddrlens[i]);
2699 #if HAVE_SOCKADDR_IN_SIN_LEN
2700       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
2701 #endif
2702       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
2703       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
2704     }
2705     else
2706     {
2707       /* dual stack */
2708       resi = 2;
2709       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
2710       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
2711       i = 0;
2712       saddrlens[i] = sizeof (struct sockaddr_in6);
2713       saddrs[i] = GNUNET_malloc (saddrlens[i]);
2714 #if HAVE_SOCKADDR_IN_SIN_LEN
2715       ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
2716 #endif
2717       ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
2718       ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
2719       i++;
2720       saddrlens[i] = sizeof (struct sockaddr_in);
2721       saddrs[i] = GNUNET_malloc (saddrlens[i]);
2722 #if HAVE_SOCKADDR_IN_SIN_LEN
2723       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
2724 #endif
2725       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
2726       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
2727     }
2728   }
2729   *addrs = saddrs;
2730   *addr_lens = saddrlens;
2731   return resi;
2732 }
2733
2734
2735 /**
2736  * Ask NAT for addresses
2737  *
2738  * @param plugin the plugin handle
2739  */
2740 static void
2741 server_start_report_addresses (struct HTTP_Server_Plugin *plugin)
2742 {
2743   int res = GNUNET_OK;
2744   struct sockaddr **addrs;
2745   socklen_t *addrlens;
2746
2747   res = server_get_addresses (plugin,
2748                               plugin->name,
2749                               plugin->env->cfg,
2750                               &addrs, &addrlens);
2751   LOG (GNUNET_ERROR_TYPE_DEBUG,
2752        _("Found %u addresses to report to NAT service\n"),
2753        res);
2754
2755   if (GNUNET_SYSERR == res)
2756   {
2757     plugin->nat = NULL;
2758     return;
2759   }
2760
2761   plugin->nat
2762     = GNUNET_NAT_register (plugin->env->cfg,
2763                            "transport-http_server",
2764                            IPPROTO_TCP,
2765                            (unsigned int) res,
2766                            (const struct sockaddr **) addrs,
2767                            addrlens,
2768                            &server_nat_port_map_callback,
2769                            NULL,
2770                            plugin);
2771   while (res > 0)
2772   {
2773     res--;
2774     GNUNET_assert (NULL != addrs[res]);
2775     GNUNET_free (addrs[res]);
2776   }
2777   GNUNET_free_non_null (addrs);
2778   GNUNET_free_non_null (addrlens);
2779 }
2780
2781
2782 /**
2783  * Stop NAT for addresses
2784  *
2785  * @param plugin the plugin handle
2786  */
2787 static void
2788 server_stop_report_addresses (struct HTTP_Server_Plugin *plugin)
2789 {
2790   struct HttpAddressWrapper *w;
2791
2792   /* Stop NAT handle */
2793   if (NULL != plugin->nat)
2794   {
2795     GNUNET_NAT_unregister (plugin->nat);
2796     plugin->nat = NULL;
2797   }
2798   /* Clean up addresses */
2799   while (NULL != plugin->addr_head)
2800   {
2801     w = plugin->addr_head;
2802     GNUNET_CONTAINER_DLL_remove (plugin->addr_head,
2803                                  plugin->addr_tail,
2804                                  w);
2805     GNUNET_free (w->address);
2806     GNUNET_free (w);
2807   }
2808 }
2809
2810
2811 /**
2812  * Check if IPv6 supported on this system
2813  *
2814  * @param plugin the plugin handle
2815  * @return #GNUNET_YES on success, else #GNUNET_NO
2816  */
2817 static int
2818 server_check_ipv6_support (struct HTTP_Server_Plugin *plugin)
2819 {
2820   struct GNUNET_NETWORK_Handle *desc = NULL;
2821   int res = GNUNET_NO;
2822
2823   /* Probe IPv6 support */
2824   desc = GNUNET_NETWORK_socket_create (PF_INET6,
2825                                        SOCK_STREAM,
2826                                        0);
2827   if (NULL == desc)
2828   {
2829     if ( (errno == ENOBUFS) ||
2830          (errno == ENOMEM) ||
2831          (errno == ENFILE) ||
2832          (errno == EACCES) )
2833     {
2834       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
2835                            "socket");
2836     }
2837     LOG (GNUNET_ERROR_TYPE_WARNING,
2838          _("Disabling IPv6 since it is not supported on this system!\n"));
2839     res = GNUNET_NO;
2840   }
2841   else
2842   {
2843     GNUNET_break (GNUNET_OK ==
2844                   GNUNET_NETWORK_socket_close (desc));
2845     desc = NULL;
2846     res = GNUNET_YES;
2847   }
2848   LOG (GNUNET_ERROR_TYPE_DEBUG,
2849        "Testing IPv6 on this system: %s\n",
2850        (res == GNUNET_YES) ? "successful" : "failed");
2851   return res;
2852 }
2853
2854
2855 /**
2856  * Notify server about our external hostname
2857  *
2858  * @param cls plugin
2859  */
2860 static void
2861 server_notify_external_hostname (void *cls)
2862 {
2863   struct HTTP_Server_Plugin *plugin = cls;
2864   struct HttpAddress *ext_addr;
2865   size_t ext_addr_len;
2866   unsigned int urlen;
2867   char *url;
2868
2869   plugin->notify_ext_task = NULL;
2870   GNUNET_asprintf (&url,
2871                    "%s://%s",
2872                    plugin->protocol,
2873                    plugin->external_hostname);
2874   urlen = strlen (url) + 1;
2875   ext_addr = GNUNET_malloc (sizeof (struct HttpAddress) + urlen);
2876   ext_addr->options = htonl (plugin->options);
2877   ext_addr->urlen = htonl (urlen);
2878   ext_addr_len = sizeof (struct HttpAddress) + urlen;
2879   GNUNET_memcpy (&ext_addr[1], url, urlen);
2880   GNUNET_free (url);
2881
2882   LOG (GNUNET_ERROR_TYPE_DEBUG,
2883        "Notifying transport about external hostname address `%s'\n",
2884        plugin->external_hostname);
2885
2886 #if BUILD_HTTPS
2887   if (GNUNET_YES == plugin->verify_external_hostname)
2888     LOG (GNUNET_ERROR_TYPE_INFO,
2889          "Enabling SSL verification for external hostname address `%s'\n",
2890          plugin->external_hostname);
2891   plugin->ext_addr
2892     = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
2893                                      "https_client",
2894                                      ext_addr,
2895                                      ext_addr_len,
2896                                      GNUNET_HELLO_ADDRESS_INFO_NONE);
2897   plugin->env->notify_address (plugin->env->cls,
2898                                GNUNET_YES,
2899                                plugin->ext_addr);
2900   GNUNET_free (ext_addr);
2901 #else
2902   plugin->ext_addr
2903     = GNUNET_HELLO_address_allocate (plugin->env->my_identity,
2904                                      "http_client",
2905                                      ext_addr,
2906                                      ext_addr_len,
2907                                      GNUNET_HELLO_ADDRESS_INFO_NONE);
2908   plugin->env->notify_address (plugin->env->cls,
2909                                GNUNET_YES,
2910                                plugin->ext_addr);
2911   GNUNET_free (ext_addr);
2912 #endif
2913 }
2914
2915
2916 /**
2917  * Configure the plugin
2918  *
2919  * @param plugin plugin handle
2920  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
2921  */
2922 static int
2923 server_configure_plugin (struct HTTP_Server_Plugin *plugin)
2924 {
2925   unsigned long long port;
2926   unsigned long long max_connections;
2927   char *bind4_address = NULL;
2928   char *bind6_address = NULL;
2929   char *eh_tmp = NULL;
2930   int external_hostname_use_port;
2931
2932   /* Use IPv4? */
2933   if (GNUNET_CONFIGURATION_have_value
2934       (plugin->env->cfg, plugin->name, "USE_IPv4"))
2935   {
2936     plugin->use_ipv4 =
2937         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
2938                                               plugin->name,
2939                                               "USE_IPv4");
2940   }
2941   else
2942     plugin->use_ipv4 = GNUNET_YES;
2943   LOG (GNUNET_ERROR_TYPE_DEBUG,
2944        _("IPv4 support is %s\n"),
2945        (plugin->use_ipv4 == GNUNET_YES) ? "enabled" : "disabled");
2946
2947   /* Use IPv6? */
2948   if (GNUNET_CONFIGURATION_have_value
2949       (plugin->env->cfg, plugin->name, "USE_IPv6"))
2950   {
2951     plugin->use_ipv6 =
2952         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
2953                                               plugin->name,
2954                                               "USE_IPv6");
2955   }
2956   else
2957     plugin->use_ipv6 = GNUNET_YES;
2958   LOG (GNUNET_ERROR_TYPE_DEBUG,
2959        _("IPv6 support is %s\n"),
2960        (plugin->use_ipv6 == GNUNET_YES) ? "enabled" : "disabled");
2961
2962   if ((plugin->use_ipv4 == GNUNET_NO) && (plugin->use_ipv6 == GNUNET_NO))
2963   {
2964     LOG (GNUNET_ERROR_TYPE_ERROR,
2965          _("Neither IPv4 nor IPv6 are enabled! Fix in configuration\n"));
2966     return GNUNET_SYSERR;
2967   }
2968
2969   /* Reading port number from config file */
2970   if ((GNUNET_OK !=
2971        GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg,
2972                                               plugin->name,
2973                                               "PORT", &port)) || (port > 65535))
2974   {
2975     LOG (GNUNET_ERROR_TYPE_ERROR,
2976          _("Port is required! Fix in configuration\n"));
2977     return GNUNET_SYSERR;
2978   }
2979   plugin->port = port;
2980
2981   LOG (GNUNET_ERROR_TYPE_INFO,
2982        _("Using port %u\n"), plugin->port);
2983
2984   if ( (plugin->use_ipv4 == GNUNET_YES) &&
2985        (GNUNET_YES ==
2986         GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg,
2987                                                plugin->name,
2988                                                "BINDTO",
2989                                                &bind4_address)))
2990   {
2991     LOG (GNUNET_ERROR_TYPE_DEBUG,
2992          "Binding %s plugin to specific IPv4 address: `%s'\n",
2993          plugin->protocol,
2994          bind4_address);
2995     plugin->server_addr_v4 = GNUNET_new (struct sockaddr_in);
2996     if (1 != inet_pton (AF_INET,
2997                         bind4_address,
2998                         &plugin->server_addr_v4->sin_addr))
2999     {
3000       LOG (GNUNET_ERROR_TYPE_ERROR,
3001            _("Specific IPv4 address `%s' in configuration file is invalid!\n"),
3002            bind4_address);
3003       GNUNET_free (bind4_address);
3004       GNUNET_free (plugin->server_addr_v4);
3005       plugin->server_addr_v4 = NULL;
3006       return GNUNET_SYSERR;
3007     }
3008     else
3009     {
3010       LOG (GNUNET_ERROR_TYPE_DEBUG,
3011            "Binding to IPv4 address %s\n",
3012            bind4_address);
3013       plugin->server_addr_v4->sin_family = AF_INET;
3014       plugin->server_addr_v4->sin_port = htons (plugin->port);
3015     }
3016     GNUNET_free (bind4_address);
3017   }
3018
3019   if ((plugin->use_ipv6 == GNUNET_YES) &&
3020       (GNUNET_YES ==
3021        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg,
3022                                               plugin->name,
3023                                               "BINDTO6",
3024                                               &bind6_address)))
3025   {
3026     LOG (GNUNET_ERROR_TYPE_DEBUG,
3027          "Binding %s plugin to specific IPv6 address: `%s'\n",
3028          plugin->protocol, bind6_address);
3029     plugin->server_addr_v6 = GNUNET_new (struct sockaddr_in6);
3030     if (1 !=
3031         inet_pton (AF_INET6,
3032                    bind6_address,
3033                    &plugin->server_addr_v6->sin6_addr))
3034     {
3035       LOG (GNUNET_ERROR_TYPE_ERROR,
3036            _("Specific IPv6 address `%s' in configuration file is invalid!\n"),
3037            bind6_address);
3038       GNUNET_free (bind6_address);
3039       GNUNET_free (plugin->server_addr_v6);
3040       plugin->server_addr_v6 = NULL;
3041       return GNUNET_SYSERR;
3042     }
3043     else
3044     {
3045       LOG (GNUNET_ERROR_TYPE_DEBUG,
3046            "Binding to IPv6 address %s\n",
3047            bind6_address);
3048       plugin->server_addr_v6->sin6_family = AF_INET6;
3049       plugin->server_addr_v6->sin6_port = htons (plugin->port);
3050     }
3051     GNUNET_free (bind6_address);
3052   }
3053
3054   plugin->verify_external_hostname = GNUNET_NO;
3055 #if BUILD_HTTPS
3056   plugin->verify_external_hostname
3057     = GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
3058                                             plugin->name,
3059                                             "VERIFY_EXTERNAL_HOSTNAME");
3060   if (GNUNET_SYSERR == plugin->verify_external_hostname)
3061         plugin->verify_external_hostname = GNUNET_NO;
3062   if (GNUNET_YES == plugin->verify_external_hostname)
3063         plugin->options |= HTTP_OPTIONS_VERIFY_CERTIFICATE;
3064 #endif
3065   external_hostname_use_port
3066     = GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
3067                                             plugin->name,
3068                                             "EXTERNAL_HOSTNAME_USE_PORT");
3069   if (GNUNET_SYSERR == external_hostname_use_port)
3070         external_hostname_use_port = GNUNET_NO;
3071
3072
3073   if (GNUNET_YES ==
3074       GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg,
3075                                              plugin->name,
3076                                              "EXTERNAL_HOSTNAME",
3077                                              &eh_tmp))
3078   {
3079     char *tmp;
3080     char *pos = NULL;
3081     char *pos_url = NULL;
3082
3083     if (NULL != strstr(eh_tmp, "://"))
3084       tmp = &strstr(eh_tmp, "://")[3];
3085     else
3086       tmp = eh_tmp;
3087
3088     if (GNUNET_YES == external_hostname_use_port)
3089     {
3090       if ( (strlen (tmp) > 1) && (NULL != (pos = strchr(tmp, '/'))) )
3091       {
3092         pos_url = pos + 1;
3093         pos[0] = '\0';
3094         GNUNET_asprintf (&plugin->external_hostname,
3095                          "%s:%u/%s",
3096                          tmp,
3097                          (uint16_t) port,
3098                          pos_url);
3099       }
3100       else
3101         GNUNET_asprintf (&plugin->external_hostname,
3102                          "%s:%u",
3103                          tmp,
3104                          (uint16_t) port);
3105     }
3106     else
3107       plugin->external_hostname = GNUNET_strdup (tmp);
3108     GNUNET_free (eh_tmp);
3109
3110     LOG (GNUNET_ERROR_TYPE_INFO,
3111          _("Using external hostname `%s'\n"),
3112          plugin->external_hostname);
3113     plugin->notify_ext_task = GNUNET_SCHEDULER_add_now (&server_notify_external_hostname,
3114                                                         plugin);
3115
3116     /* Use only configured external hostname */
3117     if (GNUNET_CONFIGURATION_have_value
3118         (plugin->env->cfg,
3119          plugin->name,
3120          "EXTERNAL_HOSTNAME_ONLY"))
3121     {
3122       plugin->external_only =
3123         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
3124                                               plugin->name,
3125                                               "EXTERNAL_HOSTNAME_ONLY");
3126     }
3127     else
3128       plugin->external_only = GNUNET_NO;
3129
3130     if (GNUNET_YES == plugin->external_only)
3131       LOG (GNUNET_ERROR_TYPE_DEBUG,
3132            _("Notifying transport only about hostname `%s'\n"),
3133            plugin->external_hostname);
3134   }
3135   else
3136     LOG (GNUNET_ERROR_TYPE_DEBUG,
3137          "No external hostname configured\n");
3138
3139   /* Optional parameters */
3140   if (GNUNET_OK !=
3141       GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg,
3142                                              plugin->name,
3143                                              "MAX_CONNECTIONS",
3144                                              &max_connections))
3145     max_connections = 128;
3146   plugin->max_request = max_connections;
3147
3148   LOG (GNUNET_ERROR_TYPE_DEBUG,
3149        _("Maximum number of connections is %u\n"),
3150        plugin->max_request);
3151
3152   plugin->peer_id_length = strlen (GNUNET_i2s_full (plugin->env->my_identity));
3153
3154   return GNUNET_OK;
3155 }
3156
3157
3158 /**
3159  * Exit point from the plugin.
3160  *
3161  * @param cls api
3162  * @return NULL
3163  */
3164 void *
3165 LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
3166 {
3167   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
3168   struct HTTP_Server_Plugin *plugin = api->cls;
3169
3170   if (NULL == api->cls)
3171   {
3172     /* Free for stub mode */
3173     GNUNET_free (api);
3174     return NULL;
3175   }
3176   plugin->in_shutdown = GNUNET_YES;
3177   LOG (GNUNET_ERROR_TYPE_INFO,
3178        _("Shutting down plugin `%s'\n"),
3179        plugin->name);
3180
3181   if (NULL != plugin->notify_ext_task)
3182   {
3183     GNUNET_SCHEDULER_cancel (plugin->notify_ext_task);
3184     plugin->notify_ext_task = NULL;
3185   }
3186
3187   if (NULL != plugin->ext_addr)
3188   {
3189     LOG (GNUNET_ERROR_TYPE_DEBUG,
3190          "Notifying transport to remove address `%s'\n",
3191          http_common_plugin_address_to_string (plugin->protocol,
3192                                                plugin->ext_addr->address,
3193                                                plugin->ext_addr->address_length));
3194 #if BUILD_HTTPS
3195     plugin->env->notify_address (plugin->env->cls,
3196                                  GNUNET_NO,
3197                                  plugin->ext_addr);
3198 #else
3199   plugin->env->notify_address (plugin->env->cls,
3200                                GNUNET_NO,
3201                                plugin->ext_addr);
3202 #endif
3203     GNUNET_HELLO_address_free (plugin->ext_addr);
3204     plugin->ext_addr = NULL;
3205   }
3206
3207   /* Stop to report addresses to transport service */
3208   server_stop_report_addresses (plugin);
3209   if (NULL != plugin->server_v4_task)
3210   {
3211     GNUNET_SCHEDULER_cancel (plugin->server_v4_task);
3212     plugin->server_v4_task = NULL;
3213   }
3214
3215   if (NULL != plugin->server_v6_task)
3216   {
3217     GNUNET_SCHEDULER_cancel (plugin->server_v6_task);
3218     plugin->server_v6_task = NULL;
3219   }
3220 #if BUILD_HTTPS
3221   GNUNET_free_non_null (plugin->crypto_init);
3222   GNUNET_free_non_null (plugin->cert);
3223   GNUNET_free_non_null (plugin->key);
3224 #endif
3225   GNUNET_CONTAINER_multipeermap_iterate (plugin->sessions,
3226                                          &destroy_session_shutdown_cb,
3227                                          plugin);
3228   GNUNET_CONTAINER_multipeermap_destroy (plugin->sessions);
3229   plugin->sessions = NULL;
3230   if (NULL != plugin->server_v4)
3231   {
3232     MHD_stop_daemon (plugin->server_v4);
3233     plugin->server_v4 = NULL;
3234   }
3235   if (NULL != plugin->server_v6)
3236   {
3237     MHD_stop_daemon (plugin->server_v6);
3238     plugin->server_v6 = NULL;
3239   }
3240   /* Clean up */
3241   GNUNET_free_non_null (plugin->external_hostname);
3242   GNUNET_free_non_null (plugin->ext_addr);
3243   GNUNET_free_non_null (plugin->server_addr_v4);
3244   GNUNET_free_non_null (plugin->server_addr_v6);
3245   regfree (&plugin->url_regex);
3246
3247   LOG (GNUNET_ERROR_TYPE_DEBUG,
3248        _("Shutdown for plugin `%s' complete\n"),
3249        plugin->name);
3250
3251   GNUNET_free (plugin);
3252   GNUNET_free (api);
3253   return NULL;
3254 }
3255
3256
3257 /**
3258  * Function called for a quick conversion of the binary address to
3259  * a numeric address.  Note that the caller must not free the
3260  * address and that the next call to this function is allowed
3261  * to override the address again.
3262  *
3263  * @param cls unused
3264  * @param addr binary address
3265  * @param addrlen length of the address
3266  * @return string representing the same address
3267  */
3268 static const char *
3269 http_server_plugin_address_to_string (void *cls,
3270                                       const void *addr,
3271                                       size_t addrlen)
3272 {
3273   return http_common_plugin_address_to_string (PLUGIN_NAME,
3274                                                addr,
3275                                                addrlen);
3276 }
3277
3278
3279 /**
3280  * Function obtain the network type for a session
3281  *
3282  * @param cls closure (`struct HTTP_Server_Plugin *`)
3283  * @param session the session
3284  * @return the network type in HBO or #GNUNET_SYSERR
3285  */
3286 static enum GNUNET_ATS_Network_Type
3287 http_server_plugin_get_network (void *cls,
3288                                 struct GNUNET_ATS_Session *session)
3289 {
3290   return session->scope;
3291 }
3292
3293
3294 /**
3295  * Function obtain the network type for an address.
3296  *
3297  * @param cls closure (`struct Plugin *`)
3298  * @param address the address
3299  * @return the network type
3300  */
3301 static enum GNUNET_ATS_Network_Type
3302 http_server_plugin_get_network_for_address (void *cls,
3303                                             const struct GNUNET_HELLO_Address *address)
3304 {
3305   struct HTTP_Server_Plugin *plugin = cls;
3306
3307   return http_common_get_network_for_address (plugin->env,
3308                                               address);
3309 }
3310
3311
3312 /**
3313  * Function that will be called whenever the transport service wants to
3314  * notify the plugin that the inbound quota changed and that the plugin
3315  * should update it's delay for the next receive value
3316  *
3317  * @param cls closure
3318  * @param peer which peer was the session for
3319  * @param session which session is being updated
3320  * @param delay new delay to use for receiving
3321  */
3322 static void
3323 http_server_plugin_update_inbound_delay (void *cls,
3324                                          const struct GNUNET_PeerIdentity *peer,
3325                                          struct GNUNET_ATS_Session *session,
3326                                          struct GNUNET_TIME_Relative delay)
3327 {
3328   session->next_receive = GNUNET_TIME_relative_to_absolute (delay);
3329   LOG (GNUNET_ERROR_TYPE_DEBUG,
3330        "New inbound delay %s\n",
3331        GNUNET_STRINGS_relative_time_to_string (delay,
3332                                                GNUNET_NO));
3333   if (NULL != session->recv_wakeup_task)
3334   {
3335     GNUNET_SCHEDULER_cancel (session->recv_wakeup_task);
3336     session->recv_wakeup_task
3337       = GNUNET_SCHEDULER_add_delayed (delay,
3338                                       &server_wake_up,
3339                                       session);
3340   }
3341 }
3342
3343
3344 /**
3345  * Return information about the given session to the
3346  * monitor callback.
3347  *
3348  * @param cls the `struct Plugin` with the monitor callback (`sic`)
3349  * @param peer peer we send information about
3350  * @param value our `struct GNUNET_ATS_Session` to send information about
3351  * @return #GNUNET_OK (continue to iterate)
3352  */
3353 static int
3354 send_session_info_iter (void *cls,
3355                         const struct GNUNET_PeerIdentity *peer,
3356                         void *value)
3357 {
3358   struct HTTP_Server_Plugin *plugin = cls;
3359   struct GNUNET_ATS_Session *session = value;
3360
3361   notify_session_monitor (plugin,
3362                           session,
3363                           GNUNET_TRANSPORT_SS_INIT);
3364   return GNUNET_OK;
3365 }
3366
3367
3368 /**
3369  * Begin monitoring sessions of a plugin.  There can only
3370  * be one active monitor per plugin (i.e. if there are
3371  * multiple monitors, the transport service needs to
3372  * multiplex the generated events over all of them).
3373  *
3374  * @param cls closure of the plugin
3375  * @param sic callback to invoke, NULL to disable monitor;
3376  *            plugin will being by iterating over all active
3377  *            sessions immediately and then enter monitor mode
3378  * @param sic_cls closure for @a sic
3379  */
3380 static void
3381 http_server_plugin_setup_monitor (void *cls,
3382                                   GNUNET_TRANSPORT_SessionInfoCallback sic,
3383                                   void *sic_cls)
3384 {
3385   struct HTTP_Server_Plugin *plugin = cls;
3386
3387   plugin->sic = sic;
3388   plugin->sic_cls = sic_cls;
3389   if (NULL != sic)
3390   {
3391     GNUNET_CONTAINER_multipeermap_iterate (plugin->sessions,
3392                                            &send_session_info_iter,
3393                                            plugin);
3394     /* signal end of first iteration */
3395     sic (sic_cls, NULL, NULL);
3396   }
3397 }
3398
3399
3400 /**
3401  * Entry point for the plugin.
3402  *
3403  * @param cls env
3404  * @return api
3405  */
3406 void *
3407 LIBGNUNET_PLUGIN_TRANSPORT_INIT (void *cls)
3408 {
3409   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
3410   struct GNUNET_TRANSPORT_PluginFunctions *api;
3411   struct HTTP_Server_Plugin *plugin;
3412
3413   if (NULL == env->receive)
3414   {
3415     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
3416        initialze the plugin or the API */
3417     api = GNUNET_new (struct GNUNET_TRANSPORT_PluginFunctions);
3418     api->cls = NULL;
3419     api->address_to_string = &http_server_plugin_address_to_string;
3420     api->string_to_address = &http_common_plugin_string_to_address;
3421     api->address_pretty_printer = &http_common_plugin_address_pretty_printer;
3422     return api;
3423   }
3424   plugin = GNUNET_new (struct HTTP_Server_Plugin);
3425   plugin->env = env;
3426   plugin->sessions = GNUNET_CONTAINER_multipeermap_create (128,
3427                                                            GNUNET_YES);
3428
3429   api = GNUNET_new (struct GNUNET_TRANSPORT_PluginFunctions);
3430   api->cls = plugin;
3431   api->send = &http_server_plugin_send;
3432   api->disconnect_peer = &http_server_plugin_disconnect_peer;
3433   api->disconnect_session = &http_server_plugin_disconnect_session;
3434   api->query_keepalive_factor = &http_server_query_keepalive_factor;
3435   api->check_address = &http_server_plugin_address_suggested;
3436   api->get_session = &http_server_plugin_get_session;
3437
3438   api->address_to_string = &http_server_plugin_address_to_string;
3439   api->string_to_address = &http_common_plugin_string_to_address;
3440   api->address_pretty_printer = &http_common_plugin_address_pretty_printer;
3441   api->get_network = &http_server_plugin_get_network;
3442   api->get_network_for_address = &http_server_plugin_get_network_for_address;
3443   api->update_session_timeout = &http_server_plugin_update_session_timeout;
3444   api->update_inbound_delay = &http_server_plugin_update_inbound_delay;
3445   api->setup_monitor = &http_server_plugin_setup_monitor;
3446 #if BUILD_HTTPS
3447   plugin->name = "transport-https_server";
3448   plugin->protocol = "https";
3449 #else
3450   plugin->name = "transport-http_server";
3451   plugin->protocol = "http";
3452 #endif
3453
3454   if (GNUNET_YES ==
3455       GNUNET_CONFIGURATION_get_value_yesno (env->cfg,
3456                                             plugin->name,
3457                                             "TCP_STEALTH"))
3458   {
3459 #ifdef TCP_STEALTH
3460     plugin->options |= HTTP_OPTIONS_TCP_STEALTH;
3461 #else
3462     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3463                 _("TCP_STEALTH not supported on this platform.\n"));
3464     LIBGNUNET_PLUGIN_TRANSPORT_DONE (api);
3465     return NULL;
3466 #endif
3467   }
3468
3469   /* Compile URL regex */
3470   if (regcomp (&plugin->url_regex,
3471                URL_REGEX,
3472                REG_EXTENDED))
3473   {
3474     LOG (GNUNET_ERROR_TYPE_ERROR,
3475          _("Unable to compile URL regex\n"));
3476     LIBGNUNET_PLUGIN_TRANSPORT_DONE (api);
3477     return NULL;
3478   }
3479
3480   /* Configure plugin */
3481   if (GNUNET_SYSERR == server_configure_plugin (plugin))
3482   {
3483     LIBGNUNET_PLUGIN_TRANSPORT_DONE (api);
3484     return NULL;
3485   }
3486
3487   /* Check IPv6 support */
3488   if (GNUNET_YES == plugin->use_ipv6)
3489     plugin->use_ipv6 = server_check_ipv6_support (plugin);
3490
3491   /* Report addresses to transport service */
3492   if (GNUNET_NO == plugin->external_only)
3493     server_start_report_addresses (plugin);
3494
3495   if (GNUNET_SYSERR == server_start (plugin))
3496   {
3497     LIBGNUNET_PLUGIN_TRANSPORT_DONE (api);
3498     return NULL;
3499   }
3500   return api;
3501 }
3502
3503 /* end of plugin_transport_http_server.c */