0acfaf60bc0ffc81ffcaa7108b49e02ef43f4ace
[oweals/gnunet.git] / src / transport / plugin_transport_http_server.c
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 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.c
23  * @brief http transport service plugin
24  * @author Matthias Wachs
25  */
26
27 #include "plugin_transport_http.h"
28
29 #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>"
30 #define _RECEIVE 0
31 #define _SEND 1
32
33 struct ServerConnection
34 {
35   /* _RECV or _SEND */
36   int direction;
37
38   /* should this connection get disconnected? GNUNET_YES/NO  */
39   int disconnect;
40
41   struct Session *session;
42   struct MHD_Connection *mhd_conn;
43 };
44
45 /**
46  * Function that queries MHD's select sets and
47  * starts the task waiting for them.
48  * @param plugin plugin
49  * @param daemon_handle the MHD daemon handle
50  * @return gnunet task identifier
51  */
52 static GNUNET_SCHEDULER_TaskIdentifier
53 server_schedule (struct Plugin *plugin, struct MHD_Daemon *daemon_handle,
54                  int now);
55
56 static void
57 server_log (void *arg, const char *fmt, va_list ap)
58 {
59   char text[1024];
60
61   vsnprintf (text, sizeof (text), fmt, ap);
62   va_end (ap);
63   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Server: %s\n", text);
64 }
65
66 /**
67  * Check if incoming connection is accepted.
68  * NOTE: Here every connection is accepted
69  * @param cls plugin as closure
70  * @param addr address of incoming connection
71  * @param addr_len address length of incoming connection
72  * @return MHD_YES if connection is accepted, MHD_NO if connection is rejected
73  *
74  */
75 static int
76 server_accept_cb (void *cls, const struct sockaddr *addr, socklen_t addr_len)
77 {
78   struct Plugin *plugin = cls;
79
80   if (plugin->cur_connections <= plugin->max_connections)
81     return MHD_YES;
82   else
83   {
84     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
85                 "Server: Cannot accept new connections\n");
86     return MHD_NO;
87   }
88 }
89
90
91 #if BUILD_HTTPS
92 static char *
93 server_load_file (const char *file)
94 {
95   struct GNUNET_DISK_FileHandle *gn_file;
96   struct stat fstat;
97   char *text = NULL;
98
99   if (0 != STAT (file, &fstat))
100     return NULL;
101   text = GNUNET_malloc (fstat.st_size + 1);
102   gn_file =
103       GNUNET_DISK_file_open (file, GNUNET_DISK_OPEN_READ,
104                              GNUNET_DISK_PERM_USER_READ);
105   if (gn_file == NULL)
106   {
107     GNUNET_free (text);
108     return NULL;
109   }
110   if (GNUNET_SYSERR == GNUNET_DISK_file_read (gn_file, text, fstat.st_size))
111   {
112     GNUNET_free (text);
113     GNUNET_DISK_file_close (gn_file);
114     return NULL;
115   }
116   text[fstat.st_size] = '\0';
117   GNUNET_DISK_file_close (gn_file);
118   return text;
119 }
120 #endif
121
122
123 #if BUILD_HTTPS
124
125 static int
126 server_load_certificate (struct Plugin *plugin)
127 {
128   int res = GNUNET_OK;
129
130   char *key_file;
131   char *cert_file;
132
133   /* Get crypto init string from config
134    * If not present just use default values */
135
136   GNUNET_assert (GNUNET_OK ==
137                  GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg,
138                                                         plugin->name,
139                                                         "CRYPTO_INIT",
140                                                         &plugin->crypto_init));
141
142   if (GNUNET_OK !=
143       GNUNET_CONFIGURATION_get_value_filename (plugin->env->cfg, plugin->name,
144                                                "KEY_FILE", &key_file))
145   {
146     key_file = GNUNET_strdup ("https_key.key");
147   }
148
149   if (GNUNET_OK !=
150       GNUNET_CONFIGURATION_get_value_filename (plugin->env->cfg, plugin->name,
151                                                "CERT_FILE", &cert_file))
152   {
153     GNUNET_asprintf (&cert_file, "%s", "https_cert.crt");
154   }
155
156   /* read key & certificates from file */
157 #if VERBOSE_SERVER
158   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
159               "Loading TLS certificate from key-file `%s' cert-file`%s'\n",
160               key_file, cert_file);
161 #endif
162
163   plugin->key = server_load_file (key_file);
164   plugin->cert = server_load_file (cert_file);
165
166   if ((plugin->key == NULL) || (plugin->cert == NULL))
167   {
168     struct GNUNET_OS_Process *cert_creation;
169
170     GNUNET_free_non_null (plugin->key);
171     plugin->key = NULL;
172     GNUNET_free_non_null (plugin->cert);
173     plugin->cert = NULL;
174
175 #if VERBOSE_SERVER
176     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
177                 "No usable TLS certificate found, creating certificate\n");
178 #endif
179     errno = 0;
180     cert_creation =
181         GNUNET_OS_start_process (NULL, NULL,
182                                  "gnunet-transport-certificate-creation",
183                                  "gnunet-transport-certificate-creation",
184                                  key_file, cert_file, NULL);
185     if (cert_creation == NULL)
186     {
187       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
188                        _
189                        ("Could not create a new TLS certificate, program `gnunet-transport-certificate-creation' could not be started!\n"));
190       GNUNET_free (key_file);
191       GNUNET_free (cert_file);
192
193       GNUNET_free_non_null (plugin->key);
194       plugin->key = NULL;
195       GNUNET_free_non_null (plugin->cert);
196       plugin->cert = NULL;
197       GNUNET_free_non_null (plugin->crypto_init);
198       plugin->crypto_init = NULL;
199
200       return GNUNET_SYSERR;
201     }
202     GNUNET_assert (GNUNET_OK == GNUNET_OS_process_wait (cert_creation));
203     GNUNET_OS_process_close (cert_creation);
204
205     plugin->key = server_load_file (key_file);
206     plugin->cert = server_load_file (cert_file);
207   }
208
209   if ((plugin->key == NULL) || (plugin->cert == NULL))
210   {
211     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
212                      _
213                      ("No usable TLS certificate found and creating one failed!\n"),
214                      "transport-https");
215     GNUNET_free (key_file);
216     GNUNET_free (cert_file);
217
218     GNUNET_free_non_null (plugin->key);
219     plugin->key = NULL;
220     GNUNET_free_non_null (plugin->cert);
221     plugin->cert = NULL;
222     GNUNET_free_non_null (plugin->crypto_init);
223     plugin->crypto_init = NULL;
224
225     return GNUNET_SYSERR;
226   }
227   GNUNET_free (key_file);
228   GNUNET_free (cert_file);
229 #if DEBUG_HTTP
230   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "TLS certificate loaded\n");
231 #endif
232
233   return res;
234 }
235 #endif
236
237
238 /**
239  * Reschedule the execution of both IPv4 and IPv6 server
240  * @param plugin the plugin
241  * @param now GNUNET_YES to schedule execution immediately, GNUNET_NO to wait
242  * until timeout
243  */
244
245 static void
246 server_reschedule (struct Plugin *plugin, int now)
247 {
248   if (plugin->server_v4 != NULL)
249   {
250     if (plugin->server_v4_task != GNUNET_SCHEDULER_NO_TASK)
251     {
252       GNUNET_SCHEDULER_cancel (plugin->server_v4_task);
253       plugin->server_v4_task = GNUNET_SCHEDULER_NO_TASK;
254     }
255     plugin->server_v4_task = server_schedule (plugin, plugin->server_v4, now);
256   }
257
258   if (plugin->server_v6 != NULL)
259   {
260     if (plugin->server_v6_task != GNUNET_SCHEDULER_NO_TASK)
261     {
262       GNUNET_SCHEDULER_cancel (plugin->server_v6_task);
263       plugin->server_v6_task = GNUNET_SCHEDULER_NO_TASK;
264     }
265     plugin->server_v6_task = server_schedule (plugin, plugin->server_v6, now);
266   }
267 }
268
269 /**
270  * Callback called by MessageStreamTokenizer when a message has arrived
271  * @param cls current session as closure
272  * @param client clien
273  * @param message the message to be forwarded to transport service
274  */
275 static void
276 server_receive_mst_cb (void *cls, void *client,
277                        const struct GNUNET_MessageHeader *message)
278 {
279   struct Session *s = cls;
280
281 #if VERBOSE_SERVER
282   struct Plugin *plugin = s->plugin;
283 #endif
284   struct GNUNET_TIME_Relative delay;
285
286   delay = http_plugin_receive (s, &s->target, message, s, s->addr, s->addrlen);
287
288   s->next_receive =
289       GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (), delay);
290
291   if (delay.rel_value > 0)
292   {
293 #if VERBOSE_SERVER
294     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
295                      "Server: peer `%s' address `%s' next read delayed for %llu ms\n",
296                      GNUNET_i2s (&s->target),
297                      http_plugin_address_to_string (NULL, s->addr, s->addrlen),
298                      delay);
299 #endif
300   }
301 }
302
303 /**
304  * Callback called by MHD when it needs data to send
305  * @param cls current session
306  * @param pos position in buffer
307  * @param buf the buffer to write data to
308  * @param max max number of bytes available in buffer
309  * @return bytes written to buffer
310  */
311 static ssize_t
312 server_send_callback (void *cls, uint64_t pos, char *buf, size_t max)
313 {
314   struct Session *s = cls;
315 #if VERBOSE_SERVER
316   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
317                    "Server: %X can sent maximum  %u \n", s, max);
318 #endif
319   struct HTTP_Message *msg;
320   int bytes_read = 0;
321
322   //static int c = 0;
323   msg = s->msg_head;
324   if (msg != NULL)
325   {
326     /* sending */
327     if ((msg->size - msg->pos) <= max)
328     {
329       memcpy (buf, &msg->buf[msg->pos], (msg->size - msg->pos));
330       bytes_read = msg->size - msg->pos;
331       msg->pos += (msg->size - msg->pos);
332     }
333     else
334     {
335       memcpy (buf, &msg->buf[msg->pos], max);
336       msg->pos += max;
337       bytes_read = max;
338     }
339
340     /* removing message */
341     if (msg->pos == msg->size)
342     {
343       if (NULL != msg->transmit_cont)
344         msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_OK);
345       GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
346       GNUNET_free (msg);
347     }
348   }
349
350 #if VERBOSE_CLIENT
351   struct Plugin *plugin = s->plugin;
352   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
353                    "Server: %X: sent %u bytes\n", s, bytes_read);
354 #endif
355   return bytes_read;
356 }
357
358 static struct ServerConnection *
359 server_lookup_session (struct Plugin *plugin,
360                        struct MHD_Connection *mhd_connection, const char *url,
361                        const char *method)
362 {
363   struct Session *s = NULL;
364   struct Session *t;
365   struct ServerConnection *sc = NULL;
366   const union MHD_ConnectionInfo *conn_info;
367
368   struct IPv4HttpAddress a4;
369   struct IPv6HttpAddress a6;
370   struct sockaddr_in *s4;
371   struct sockaddr_in6 *s6;
372   void *a;
373   size_t a_len;
374   struct GNUNET_PeerIdentity target;
375   int check = GNUNET_NO;
376   uint32_t tag = 0;
377   int direction;
378
379   conn_info =
380       MHD_get_connection_info (mhd_connection,
381                                MHD_CONNECTION_INFO_CLIENT_ADDRESS);
382   if ((conn_info->client_addr->sa_family != AF_INET) &&
383       (conn_info->client_addr->sa_family != AF_INET6))
384     return MHD_NO;
385
386   if ((strlen (&url[1]) >= 105) && (url[104] == ';'))
387   {
388     char hash[104];
389     char *tagc = (char *) &url[105];
390
391     memcpy (&hash, &url[1], 103);
392     hash[103] = '\0';
393     if (GNUNET_OK ==
394         GNUNET_CRYPTO_hash_from_string ((const char *) &hash,
395                                         &(target.hashPubKey)))
396     {
397       tag = strtoul (tagc, NULL, 10);
398       if (tagc > 0)
399         check = GNUNET_YES;
400     }
401   }
402
403   if (0 == strcmp (MHD_HTTP_METHOD_PUT, method))
404     direction = _RECEIVE;
405   if (0 == strcmp (MHD_HTTP_METHOD_GET, method))
406     direction = _SEND;
407
408   if (check == GNUNET_NO)
409     goto error;
410
411   plugin->cur_connections++;
412
413 #if VERBOSE_SERVER
414   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
415                    "Server: New inbound connection from %s with tag %u\n",
416                    GNUNET_i2s (&target), tag);
417 #endif
418   /* find duplicate session */
419
420   t = plugin->head;
421
422   while (t != NULL)
423   {
424     if ((t->inbound) &&
425         (0 == memcmp (&t->target, &target, sizeof (struct GNUNET_PeerIdentity)))
426         &&
427         /* FIXME add source address comparison */
428         (t->tag == tag))
429       break;
430     t = t->next;
431   }
432   if (t != NULL)
433   {
434 #if VERBOSE_SERVER
435     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
436                      "Server: Duplicate session, dismissing new connection from peer `%s'\n",
437                      GNUNET_i2s (&target));
438 #endif
439     goto error;
440   }
441
442   /* find semi-session */
443   t = plugin->server_semi_head;
444
445   while (t != NULL)
446   {
447     /* FIXME add source address comparison */
448     if ((0 == memcmp (&t->target, &target, sizeof (struct GNUNET_PeerIdentity)))
449         && (t->tag == tag))
450     {
451       break;
452     }
453     t = t->next;
454   }
455
456   if (t == NULL)
457     goto create;
458
459 #if VERBOSE_SERVER
460   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
461                    "Server: Found existing semi-session for `%s'\n",
462                    GNUNET_i2s (&target));
463 #endif
464
465   if ((direction == _SEND) && (t->server_send != NULL))
466   {
467 #if VERBOSE_SERVER
468     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
469                      "Server: Duplicate GET session, dismissing new connection from peer `%s'\n",
470                      GNUNET_i2s (&target));
471 #endif
472     goto error;
473   }
474   else
475   {
476     s = t;
477     GNUNET_CONTAINER_DLL_remove (plugin->server_semi_head,
478                                  plugin->server_semi_tail, s);
479     GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
480 #if VERBOSE_SERVER
481     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
482                      "Server: Found matching semi-session, merging session for peer `%s'\n",
483                      GNUNET_i2s (&target));
484 #endif
485
486     goto found;
487   }
488   if ((direction == _RECEIVE) && (t->server_recv != NULL))
489   {
490 #if VERBOSE_SERVER
491     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
492                      "Server: Duplicate PUT session, dismissing new connection from peer `%s'\n",
493                      GNUNET_i2s (&target));
494 #endif
495     goto error;
496   }
497   else
498   {
499     s = t;
500     GNUNET_CONTAINER_DLL_remove (plugin->server_semi_head,
501                                  plugin->server_semi_tail, s);
502     GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
503 #if VERBOSE_SERVER
504     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
505                      "Server: Found matching semi-session, merging session for peer `%s'\n",
506                      GNUNET_i2s (&target));
507 #endif
508     goto found;
509   }
510
511 create:
512 /* create new session */
513 #if VERBOSE_SERVER
514   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
515                    "Server: Creating new session for peer `%s' \n",
516                    GNUNET_i2s (&target));
517 #endif
518
519   switch (conn_info->client_addr->sa_family)
520   {
521   case (AF_INET):
522     s4 = ((struct sockaddr_in *) conn_info->client_addr);
523     a4.u4_port = s4->sin_port;
524     memcpy (&a4.ipv4_addr, &s4->sin_addr, sizeof (struct in_addr));
525     a = &a4;
526     a_len = sizeof (struct IPv4HttpAddress);
527     break;
528   case (AF_INET6):
529     s6 = ((struct sockaddr_in6 *) conn_info->client_addr);
530     a6.u6_port = s6->sin6_port;
531     memcpy (&a6.ipv6_addr, &s6->sin6_addr, sizeof (struct in6_addr));
532     a = &a6;
533     a_len = sizeof (struct IPv6HttpAddress);
534     break;
535   default:
536     GNUNET_break (0);
537     goto error;
538   }
539
540   s = create_session (plugin, &target, a, a_len, NULL, NULL);
541
542   s->inbound = GNUNET_YES;
543   s->next_receive = GNUNET_TIME_absolute_get_zero ();
544   s->tag = tag;
545   if (0 == strcmp (MHD_HTTP_METHOD_PUT, method))
546     s->server_recv = s;
547   if (0 == strcmp (MHD_HTTP_METHOD_GET, method))
548     s->server_send = s;
549   GNUNET_CONTAINER_DLL_insert (plugin->server_semi_head,
550                                plugin->server_semi_tail, s);
551   goto found;
552
553 error:
554 #if VERBOSE_SERVER
555   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
556                    "Server: Invalid connection request\n");
557 #endif
558   return NULL;
559
560 found:
561   sc = GNUNET_malloc (sizeof (struct ServerConnection));
562   sc->mhd_conn = mhd_connection;
563   sc->direction = direction;
564   sc->session = s;
565   if (direction == _SEND)
566     s->server_send = sc;
567   if (direction == _RECEIVE)
568     s->server_recv = sc;
569
570 #if MHD_VERSION >= 0x00090E00
571   int to = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value / 1000);
572
573 #if VERBOSE_SERVER
574   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
575                    "Server: Setting timeout for %X to %u sec.\n", sc, to);
576 #endif
577   MHD_set_connection_option (mhd_connection, MHD_CONNECTION_OPTION_TIMEOUT, to);
578   server_reschedule (plugin, GNUNET_NO);
579 #endif
580   return sc;
581 }
582
583 /**
584  * Process GET or PUT request received via MHD.  For
585  * GET, queue response that will send back our pending
586  * messages.  For PUT, process incoming data and send
587  * to GNUnet core.  In either case, check if a session
588  * already exists and create a new one if not.
589  */
590 static int
591 server_access_cb (void *cls, struct MHD_Connection *mhd_connection,
592                   const char *url, const char *method, const char *version,
593                   const char *upload_data, size_t * upload_data_size,
594                   void **httpSessionCache)
595 {
596
597   struct Plugin *plugin = cls;
598   struct ServerConnection *sc = *httpSessionCache;
599   struct Session *s = NULL;
600
601   int res = MHD_YES;
602   struct MHD_Response *response;
603
604   GNUNET_assert (cls != NULL);
605   /* new connection */
606   if (sc == NULL)
607   {
608     sc = server_lookup_session (plugin, mhd_connection, url, method);
609     if (sc != NULL)
610       (*httpSessionCache) = sc;
611     else
612     {
613       response =
614           MHD_create_response_from_data (strlen (HTTP_ERROR_RESPONSE),
615                                          HTTP_ERROR_RESPONSE, MHD_NO, MHD_NO);
616       res = MHD_queue_response (mhd_connection, MHD_HTTP_NOT_FOUND, response);
617       MHD_destroy_response (response);
618       return res;
619     }
620   }
621
622   /* existing connection */
623   sc = (*httpSessionCache);
624   s = sc->session;
625
626   /* connection is to be disconnected */
627   if (sc->disconnect == GNUNET_YES)
628   {
629     response =
630         MHD_create_response_from_data (strlen ("Thank you!"), "Thank you!",
631                                        MHD_NO, MHD_NO);
632     res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
633 #if VERBOSE_SERVER
634     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
635                 "Sent HTTP/1.1: 200 OK as PUT Response\n");
636 #endif
637     MHD_destroy_response (response);
638     return MHD_YES;
639   }
640
641   GNUNET_assert (s != NULL);
642   if (sc->direction == _SEND)
643   {
644     response =
645         MHD_create_response_from_callback (-1, 32 * 1024, &server_send_callback,
646                                            s, NULL);
647     res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
648     MHD_destroy_response (response);
649     return MHD_YES;
650   }
651   if (sc->direction == _RECEIVE)
652   {
653     if (*upload_data_size == 0)
654     {
655 #if VERBOSE_SERVER
656       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
657                        "Server: Peer `%s' PUT on address `%s' connected\n",
658                        GNUNET_i2s (&s->target),
659                        http_plugin_address_to_string (NULL, s->addr, s->addrlen));
660 #endif
661       return MHD_YES;
662     }
663
664     /* Recieving data */
665     if ((*upload_data_size > 0))
666     {
667 #if VERBOSE_SERVER
668       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
669                        "Server: peer `%s' PUT on address `%s' received %Zu bytes\n",
670                        GNUNET_i2s (&s->target),
671                        http_plugin_address_to_string (NULL,s->addr, s->addrlen),
672                        *upload_data_size);
673 #endif
674       struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get ();
675
676       if ((s->next_receive.abs_value <= now.abs_value))
677       {
678 #if VERBOSE_SERVER
679         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
680                          "Server: %X: PUT with %u bytes forwarded to MST\n", s,
681                          *upload_data_size);
682 #endif
683         if (s->msg_tk == NULL)
684         {
685           s->msg_tk = GNUNET_SERVER_mst_create (&server_receive_mst_cb, s);
686         }
687         res =
688             GNUNET_SERVER_mst_receive (s->msg_tk, s, upload_data,
689                                        *upload_data_size, GNUNET_NO, GNUNET_NO);
690
691 #if MHD_VERSION >= 0x00090E00
692         int to = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value / 1000);
693         struct ServerConnection *t = NULL;
694
695 #if VERBOSE_SERVER
696         GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
697                          "Server: Received %Zu bytes\n", *upload_data_size);
698 #endif
699
700         /* Setting timeouts for other connections */
701         if (s->server_recv != NULL)
702         {
703           t = s->server_recv;
704 #if VERBOSE_SERVER
705           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
706                            "Server: Setting timeout for %X to %u sec.\n", t,
707                            to);
708 #endif
709           MHD_set_connection_option (t->mhd_conn, MHD_CONNECTION_OPTION_TIMEOUT,
710                                      to);
711         }
712         if (s->server_send != NULL)
713         {
714           t = s->server_send;
715 #if VERBOSE_SERVER
716           GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
717                            "Server: Setting timeout for %X to %u sec.\n", t,
718                            to);
719 #endif
720           MHD_set_connection_option (t->mhd_conn, MHD_CONNECTION_OPTION_TIMEOUT,
721                                      to);
722         }
723         server_reschedule (plugin, GNUNET_NO);
724 #endif
725         (*upload_data_size) = 0;
726       }
727       else
728       {
729 #if DEBUG_HTTP
730         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
731                     "Server: %X no inbound bandwidth available! Next read was delayed by %llu ms\n",
732                     s, now.abs_value - s->next_receive.abs_value);
733 #endif
734       }
735       return MHD_YES;
736     }
737     else
738       return MHD_NO;
739   }
740   return res;
741 }
742
743 static void
744 server_disconnect_cb (void *cls, struct MHD_Connection *connection,
745                       void **httpSessionCache)
746 {
747   struct ServerConnection *sc = *httpSessionCache;
748   struct ServerConnection *tc = *httpSessionCache;
749   struct Session *s = NULL;
750   struct Session *t = NULL;
751   struct Plugin *plugin = NULL;
752
753   if (sc == NULL)
754     return;
755
756   s = sc->session;
757   plugin = s->plugin;
758   if (sc->direction == _SEND)
759   {
760 #if VERBOSE_SERVER
761     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
762                      "Server: %X peer `%s' GET on address `%s' disconnected\n",
763                      s->server_send, GNUNET_i2s (&s->target),
764                      http_plugin_address_to_string (NULL, s->addr, s->addrlen));
765 #endif
766     s->server_send = NULL;
767
768     if (s->server_recv != NULL)
769     {
770       tc = s->server_recv;
771       tc->disconnect = GNUNET_YES;
772 #if MHD_VERSION >= 0x00090E00
773       MHD_set_connection_option (sc->mhd_conn, MHD_CONNECTION_OPTION_TIMEOUT,
774                                  1);
775 #endif
776     }
777   }
778   if (sc->direction == _RECEIVE)
779   {
780 #if VERBOSE_SERVER
781     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
782                      "Server: %X peer `%s' PUT on address `%s' disconnected\n",
783                      s->server_recv, GNUNET_i2s (&s->target),
784                      http_plugin_address_to_string (NULL, s->addr, s->addrlen));
785 #endif
786     s->server_recv = NULL;
787     if (s->server_send != NULL)
788     {
789       tc = s->server_send;
790       tc->disconnect = GNUNET_YES;
791 #if MHD_VERSION >= 0x00090E00
792       MHD_set_connection_option (sc->mhd_conn, MHD_CONNECTION_OPTION_TIMEOUT,
793                                  1);
794 #endif
795     }
796     if (s->msg_tk != NULL)
797     {
798       GNUNET_SERVER_mst_destroy (s->msg_tk);
799       s->msg_tk = NULL;
800     }
801   }
802   GNUNET_free (sc);
803
804   t = plugin->server_semi_head;
805   while (t != NULL)
806   {
807     if (t == s)
808     {
809       GNUNET_CONTAINER_DLL_remove (plugin->server_semi_head,
810                                    plugin->server_semi_tail, s);
811       GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
812       break;
813     }
814     t = t->next;
815   }
816   plugin->cur_connections--;
817
818   server_reschedule (plugin, GNUNET_NO);
819
820   if ((s->server_send == NULL) && (s->server_recv == NULL))
821   {
822 #if VERBOSE_SERVER
823     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
824                      "Server: peer `%s' on address `%s' disconnected\n",
825                      GNUNET_i2s (&s->target),
826                      http_plugin_address_to_string (NULL, s->addr, s->addrlen));
827 #endif
828     if (s->msg_tk != NULL)
829     {
830       GNUNET_SERVER_mst_destroy (s->msg_tk);
831       s->msg_tk = NULL;
832     }
833
834     notify_session_end (s->plugin, &s->target, s);
835   }
836 }
837
838 int
839 server_disconnect (struct Session *s)
840 {
841   struct Plugin *plugin = s->plugin;
842   struct Session *t = plugin->head;
843
844   while (t != NULL)
845   {
846     if (t->inbound == GNUNET_YES)
847     {
848       if (t->server_send != NULL)
849       {
850         ((struct ServerConnection *) t->server_send)->disconnect = GNUNET_YES;
851       }
852       if (t->server_send != NULL)
853       {
854         ((struct ServerConnection *) t->server_send)->disconnect = GNUNET_YES;
855       }
856     }
857     t = t->next;
858   }
859   return GNUNET_OK;
860 }
861
862 int
863 server_send (struct Session *s, struct HTTP_Message *msg)
864 {
865   GNUNET_CONTAINER_DLL_insert (s->msg_head, s->msg_tail, msg);
866   server_reschedule (s->plugin, GNUNET_YES);
867   return GNUNET_OK;
868 }
869
870
871
872 /**
873  * Call MHD IPv4 to process pending requests and then go back
874  * and schedule the next run.
875  * @param cls plugin as closure
876  * @param tc task context
877  */
878 static void
879 server_v4_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
880 {
881   struct Plugin *plugin = cls;
882
883   GNUNET_assert (cls != NULL);
884
885   plugin->server_v4_task = GNUNET_SCHEDULER_NO_TASK;
886
887   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
888     return;
889 #if VERBOSE_SERVER
890   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
891                        "Running IPv6 server\n");
892 #endif
893   GNUNET_assert (MHD_YES == MHD_run (plugin->server_v4));
894   if (plugin->server_v4 != NULL)
895     plugin->server_v4_task =
896         server_schedule (plugin, plugin->server_v4, GNUNET_NO);
897 }
898
899
900 /**
901  * Call MHD IPv6 to process pending requests and then go back
902  * and schedule the next run.
903  * @param cls plugin as closure
904  * @param tc task context
905  */
906 static void
907 server_v6_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
908 {
909   struct Plugin *plugin = cls;
910
911   GNUNET_assert (cls != NULL);
912
913   plugin->server_v6_task = GNUNET_SCHEDULER_NO_TASK;
914
915   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
916     return;
917 #if VERBOSE_SERVER
918   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
919                        "Running IPv6 server\n");
920 #endif
921   GNUNET_assert (MHD_YES == MHD_run (plugin->server_v6));
922   if (plugin->server_v6 != NULL)
923     plugin->server_v6_task =
924         server_schedule (plugin, plugin->server_v6, GNUNET_NO);
925 }
926
927 /**
928  * Function that queries MHD's select sets and
929  * starts the task waiting for them.
930  * @param plugin plugin
931  * @param daemon_handle the MHD daemon handle
932  * @return gnunet task identifier
933  */
934 static GNUNET_SCHEDULER_TaskIdentifier
935 server_schedule (struct Plugin *plugin, struct MHD_Daemon *daemon_handle,
936                  int now)
937 {
938   GNUNET_SCHEDULER_TaskIdentifier ret;
939   fd_set rs;
940   fd_set ws;
941   fd_set es;
942   struct GNUNET_NETWORK_FDSet *wrs;
943   struct GNUNET_NETWORK_FDSet *wws;
944   struct GNUNET_NETWORK_FDSet *wes;
945   int max;
946   unsigned long long timeout;
947   static unsigned long long last_timeout = 0;
948   int haveto;
949
950   struct GNUNET_TIME_Relative tv;
951
952   ret = GNUNET_SCHEDULER_NO_TASK;
953   FD_ZERO (&rs);
954   FD_ZERO (&ws);
955   FD_ZERO (&es);
956   wrs = GNUNET_NETWORK_fdset_create ();
957   wes = GNUNET_NETWORK_fdset_create ();
958   wws = GNUNET_NETWORK_fdset_create ();
959   max = -1;
960   GNUNET_assert (MHD_YES == MHD_get_fdset (daemon_handle, &rs, &ws, &es, &max));
961   haveto = MHD_get_timeout (daemon_handle, &timeout);
962   if (haveto == MHD_YES)
963   {
964     if (timeout != last_timeout)
965     {
966 #if VERBOSE_SERVER
967       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
968                        "SELECT Timeout changed from %llu to %llu\n",
969                        last_timeout, timeout);
970 #endif
971       last_timeout = timeout;
972     }
973     tv.rel_value = (uint64_t) timeout;
974   }
975   else
976     tv = GNUNET_TIME_UNIT_SECONDS;
977   /* Force immediate run, since we have outbound data to send */
978   if (now == GNUNET_YES)
979     tv = GNUNET_TIME_UNIT_MILLISECONDS;
980   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
981   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
982   GNUNET_NETWORK_fdset_copy_native (wes, &es, max + 1);
983
984   if (daemon_handle == plugin->server_v4)
985   {
986     if (plugin->server_v4_task != GNUNET_SCHEDULER_NO_TASK)
987     {
988       GNUNET_SCHEDULER_cancel (plugin->server_v4_task);
989       plugin->server_v4_task = GNUNET_SCHEDULER_NO_TASK;
990     }
991 #if VERBOSE_SERVER
992   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
993                        "Scheduling IPv4 server task in %llu ms\n", tv);
994 #endif
995     ret =
996         GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
997                                      GNUNET_SCHEDULER_NO_TASK, tv, wrs, wws,
998                                      &server_v4_run, plugin);
999   }
1000   if (daemon_handle == plugin->server_v6)
1001   {
1002     if (plugin->server_v6_task != GNUNET_SCHEDULER_NO_TASK)
1003     {
1004       GNUNET_SCHEDULER_cancel (plugin->server_v6_task);
1005       plugin->server_v6_task = GNUNET_SCHEDULER_NO_TASK;
1006     }
1007 #if VERBOSE_SERVER
1008   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1009                        "Scheduling IPv6 server task in %llu ms\n", tv);
1010 #endif
1011     ret =
1012         GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1013                                      GNUNET_SCHEDULER_NO_TASK, tv, wrs, wws,
1014                                      &server_v6_run, plugin);
1015   }
1016   GNUNET_NETWORK_fdset_destroy (wrs);
1017   GNUNET_NETWORK_fdset_destroy (wws);
1018   GNUNET_NETWORK_fdset_destroy (wes);
1019   return ret;
1020 }
1021
1022 int
1023 server_start (struct Plugin *plugin)
1024 {
1025   int res = GNUNET_OK;
1026   unsigned int timeout;
1027
1028 #if BUILD_HTTPS
1029   res = server_load_certificate (plugin);
1030   if (res == GNUNET_SYSERR)
1031   {
1032     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1033                      "Could not load or create server certificate! Loading plugin failed!\n");
1034     return res;
1035   }
1036 #endif
1037
1038
1039 #if MHD_VERSION >= 0x00090E00
1040   timeout = GNUNET_CONSTANTS_DISCONNECT_SESSION_TIMEOUT.rel_value / 1000;
1041   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1042                    "MHD can set timeout per connection! Default time out %u sec.\n",
1043                    timeout);
1044 #else
1045   timeout = GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value / 1000;
1046   GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
1047                    "MHD cannot set timeout per connection! Default time out %u sec.\n",
1048                    timeout);
1049 #endif
1050   plugin->server_v4 = NULL;
1051   if (plugin->ipv4 == GNUNET_YES)
1052   {
1053     plugin->server_v4 = MHD_start_daemon (
1054 #if VERBOSE_SERVER
1055                                            MHD_USE_DEBUG |
1056 #endif
1057 #if BUILD_HTTPS
1058                                            MHD_USE_SSL |
1059 #endif
1060                                            MHD_NO_FLAG, plugin->port,
1061                                            &server_accept_cb, plugin,
1062                                            &server_access_cb, plugin,
1063                                            MHD_OPTION_SOCK_ADDR,
1064                                            (struct sockaddr_in *)
1065                                            plugin->server_addr_v4,
1066                                            MHD_OPTION_CONNECTION_LIMIT,
1067                                            (unsigned int)
1068                                            plugin->max_connections,
1069 #if BUILD_HTTPS
1070                                            MHD_OPTION_HTTPS_PRIORITIES,
1071                                            plugin->crypto_init,
1072                                            MHD_OPTION_HTTPS_MEM_KEY,
1073                                            plugin->key,
1074                                            MHD_OPTION_HTTPS_MEM_CERT,
1075                                            plugin->cert,
1076 #endif
1077                                            MHD_OPTION_CONNECTION_TIMEOUT,
1078                                            timeout,
1079                                            MHD_OPTION_CONNECTION_MEMORY_LIMIT,
1080                                            (size_t) (2 *
1081                                                      GNUNET_SERVER_MAX_MESSAGE_SIZE),
1082                                            MHD_OPTION_NOTIFY_COMPLETED,
1083                                            &server_disconnect_cb, plugin,
1084                                            MHD_OPTION_EXTERNAL_LOGGER,
1085                                            server_log, NULL, MHD_OPTION_END);
1086   }
1087   plugin->server_v6 = NULL;
1088   if (plugin->ipv6 == GNUNET_YES)
1089   {
1090     plugin->server_v6 = MHD_start_daemon (
1091 #if VERBOSE_SERVER
1092                                            MHD_USE_DEBUG |
1093 #endif
1094 #if BUILD_HTTPS
1095                                            MHD_USE_SSL |
1096 #endif
1097                                            MHD_USE_IPv6, plugin->port,
1098                                            &server_accept_cb, plugin,
1099                                            &server_access_cb, plugin,
1100                                            MHD_OPTION_SOCK_ADDR,
1101                                            (struct sockaddr_in6 *)
1102                                            plugin->server_addr_v6,
1103                                            MHD_OPTION_CONNECTION_LIMIT,
1104                                            (unsigned int)
1105                                            plugin->max_connections,
1106 #if BUILD_HTTPS
1107                                            MHD_OPTION_HTTPS_PRIORITIES,
1108                                            plugin->crypto_init,
1109                                            MHD_OPTION_HTTPS_MEM_KEY,
1110                                            plugin->key,
1111                                            MHD_OPTION_HTTPS_MEM_CERT,
1112                                            plugin->cert,
1113 #endif
1114                                            MHD_OPTION_CONNECTION_TIMEOUT,
1115                                            timeout,
1116                                            MHD_OPTION_CONNECTION_MEMORY_LIMIT,
1117                                            (size_t) (2 *
1118                                                      GNUNET_SERVER_MAX_MESSAGE_SIZE),
1119                                            MHD_OPTION_NOTIFY_COMPLETED,
1120                                            &server_disconnect_cb, plugin,
1121                                            MHD_OPTION_EXTERNAL_LOGGER,
1122                                            server_log, NULL, MHD_OPTION_END);
1123
1124   }
1125
1126   if ((plugin->ipv4 == GNUNET_YES) && (plugin->server_v4 == NULL))
1127   {
1128     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1129                      "Failed to start %s IPv4 server component on port %u\n",
1130                      plugin->name, plugin->port);
1131     return GNUNET_SYSERR;
1132   }
1133   if ((plugin->ipv6 == GNUNET_YES) && (plugin->server_v6 == NULL))
1134   {
1135     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1136                      "Failed to start %s IPv6 server component on port %u\n",
1137                      plugin->name, plugin->port);
1138     return GNUNET_SYSERR;
1139   }
1140
1141   server_reschedule (plugin, GNUNET_NO);
1142
1143 #if DEBUG_HTTP
1144   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1145                    "%s server component started on port %u\n", plugin->name,
1146                    plugin->port);
1147 #endif
1148   return res;
1149 }
1150
1151 void
1152 server_stop (struct Plugin *plugin)
1153 {
1154   struct Session *s = NULL;
1155   struct Session *t = NULL;
1156
1157 #if VERBOSE_SERVER
1158   GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1159                    "server_stop\n");
1160 #endif
1161
1162   struct MHD_Daemon *server_v4_tmp = plugin->server_v4;
1163
1164   plugin->server_v4 = NULL;
1165   struct MHD_Daemon *server_v6_tmp = plugin->server_v6;
1166
1167   plugin->server_v6 = NULL;
1168
1169   if (plugin->server_v4_task != GNUNET_SCHEDULER_NO_TASK)
1170   {
1171     GNUNET_SCHEDULER_cancel (plugin->server_v4_task);
1172     plugin->server_v4_task = GNUNET_SCHEDULER_NO_TASK;
1173   }
1174
1175   if (plugin->server_v6_task != GNUNET_SCHEDULER_NO_TASK)
1176   {
1177     GNUNET_SCHEDULER_cancel (plugin->server_v6_task);
1178     plugin->server_v6_task = GNUNET_SCHEDULER_NO_TASK;
1179   }
1180
1181   if (server_v6_tmp != NULL)
1182   {
1183     MHD_stop_daemon (server_v4_tmp);
1184   }
1185   if (server_v6_tmp != NULL)
1186   {
1187     MHD_stop_daemon (server_v6_tmp);
1188   }
1189
1190   /* cleaning up semi-sessions never propagated */
1191   s = plugin->server_semi_head;
1192   while (s != NULL)
1193   {
1194 #if VERBOSE_SERVER
1195     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1196                      "Deleting semi-sessions %p\n", s);
1197 #endif
1198     t = s->next;
1199     struct HTTP_Message * msg = s->msg_head;
1200     struct HTTP_Message * tmp = s->msg_head;
1201     while (msg != NULL)
1202     {
1203       tmp = msg->next;
1204
1205       GNUNET_CONTAINER_DLL_remove(s->msg_head,s->msg_tail, msg);
1206       if (msg->transmit_cont != NULL)
1207       {
1208         msg->transmit_cont(msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
1209       }
1210       GNUNET_free (msg);
1211       msg = tmp;
1212     }
1213
1214     delete_session (s);
1215     s = t;
1216   }
1217
1218 #if BUILD_HTTPS
1219   GNUNET_free_non_null (plugin->crypto_init);
1220   GNUNET_free_non_null (plugin->cert);
1221   GNUNET_free_non_null (plugin->key);
1222 #endif
1223
1224 #if DEBUG_HTTP
1225   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1226                    "%s server component stopped\n", plugin->name);
1227 #endif
1228 }
1229
1230
1231
1232 /* end of plugin_transport_http.c */