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