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