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