Merge branch 'master' into identity_oidc
[oweals/gnunet.git] / src / rest / gnunet-rest-server.c
1 /*
2    This file is part of GNUnet.
3    Copyright (C) 2012-2015 GNUnet e.V.
4
5    GNUnet is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published
7    by the Free Software Foundation; either version 3, or (at your
8    option) any later version.
9
10    GNUnet is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with GNUnet; see the file COPYING.  If not, write to the
17    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18    Boston, MA 02110-1301, USA.
19    */
20 /**
21  * @author Martin Schanzenbach
22  * @file src/rest/gnunet-rest-server.c
23  * @brief REST service for GNUnet services
24  *
25  */
26 #include "platform.h"
27 #include <microhttpd.h>
28 #include "gnunet_util_lib.h"
29 #include "gnunet_rest_plugin.h"
30
31
32 /**
33  * Default Socks5 listen port.
34  */
35 #define GNUNET_REST_SERVICE_PORT 7776
36
37 /**
38  * Maximum supported length for a URI.
39  * Should die. @deprecated
40  */
41 #define MAX_HTTP_URI_LENGTH 2048
42
43 /**
44  * Port for plaintext HTTP.
45  */
46 #define HTTP_PORT 80
47
48 /**
49  * Port for HTTPS.
50  */
51 #define HTTPS_PORT 443
52
53 /**
54  * After how long do we clean up unused MHD SSL/TLS instances?
55  */
56 #define MHD_CACHE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
57
58 #define GN_REST_STATE_INIT 0
59 #define GN_REST_STATE_PROCESSING 1
60
61 /**
62  * The task ID
63  */
64 static struct GNUNET_SCHEDULER_Task *httpd_task;
65
66 /**
67  * The port the service is running on (default 7776)
68  */
69 static unsigned long long port = GNUNET_REST_SERVICE_PORT;
70
71 /**
72  * The listen socket of the service for IPv4
73  */
74 static struct GNUNET_NETWORK_Handle *lsock4;
75
76 /**
77  * The listen socket of the service for IPv6
78  */
79 static struct GNUNET_NETWORK_Handle *lsock6;
80
81 /**
82  * The listen task ID for IPv4
83  */
84 static struct GNUNET_SCHEDULER_Task * ltask4;
85
86 /**
87  * The listen task ID for IPv6
88  */
89 static struct GNUNET_SCHEDULER_Task * ltask6;
90
91 /**
92  * Daemon for HTTP
93  */
94 static struct MHD_Daemon *httpd;
95
96 /**
97  * Response we return on failures.
98  */
99 static struct MHD_Response *failure_response;
100
101 /**
102  * Our configuration.
103  */
104 static const struct GNUNET_CONFIGURATION_Handle *cfg;
105
106 /**
107  * Map of loaded plugins.
108  */
109 static struct GNUNET_CONTAINER_MultiHashMap *plugin_map;
110
111 /**
112  * Allowed Origins (CORS)
113  */
114 static char* allow_origin;
115
116 /**
117  * Allowed Headers (CORS)
118  */
119 static char* allow_headers;
120
121 /**
122  * MHD Connection handle
123  */
124 struct MhdConnectionHandle
125 {
126   struct MHD_Connection *con;
127
128   struct MHD_Response *response;
129
130   struct GNUNET_REST_Plugin *plugin;
131
132   struct GNUNET_REST_RequestHandle *data_handle;
133
134   struct MHD_PostProcessor *pp;
135
136   int status;
137
138   int state;
139 };
140
141 /* ************************* Global helpers ********************* */
142
143
144 /**
145  * Task run whenever HTTP server operations are pending.
146  *
147  * @param cls NULL
148  */
149 static void
150 do_httpd (void *cls);
151
152
153 /**
154  * Run MHD now, we have extra data ready for the callback.
155  */
156 static void
157 run_mhd_now ()
158 {
159   if (NULL != httpd_task)
160   {
161     GNUNET_SCHEDULER_cancel (httpd_task);
162     httpd_task = NULL;
163   }
164   httpd_task = GNUNET_SCHEDULER_add_now (&do_httpd,
165                                          NULL);
166
167 }
168
169 /**
170  * Plugin result callback
171  *
172  * @param cls closure (MHD connection handle)
173  * @param data the data to return to the caller
174  * @param len length of the data
175  * @param status #GNUNET_OK if successful
176  */
177 static void
178 plugin_callback (void *cls,
179                  struct MHD_Response *resp,
180                  int status)
181 {
182   struct MhdConnectionHandle *handle = cls;
183   handle->status = status;
184   handle->response = resp;
185   run_mhd_now();
186 }
187
188
189 static int
190 cleanup_url_map (void *cls,
191                  const struct GNUNET_HashCode *key,
192                  void *value)
193 {
194   GNUNET_free_non_null (value);
195   return GNUNET_YES;
196 }
197
198
199 static void
200 cleanup_handle (struct MhdConnectionHandle *handle)
201 {
202   if (NULL != handle->response)
203     MHD_destroy_response (handle->response);
204   if (NULL != handle->data_handle)
205   {
206
207     if (NULL != handle->data_handle->header_param_map)
208     {
209       GNUNET_CONTAINER_multihashmap_iterate (handle->data_handle->header_param_map,
210                                              &cleanup_url_map,
211                                              NULL);
212       GNUNET_CONTAINER_multihashmap_destroy (handle->data_handle->header_param_map);
213     }
214     if (NULL != handle->data_handle->url_param_map)
215     {
216       GNUNET_CONTAINER_multihashmap_iterate (handle->data_handle->url_param_map,
217                                              &cleanup_url_map,
218                                              NULL);
219       GNUNET_CONTAINER_multihashmap_destroy (handle->data_handle->url_param_map);
220     }
221     GNUNET_free (handle->data_handle);
222   }
223   GNUNET_free (handle);
224 }
225
226 static int
227 header_iterator (void *cls,
228               enum MHD_ValueKind kind,
229               const char *key,
230               const char *value)
231 {
232   struct GNUNET_REST_RequestHandle *handle = cls;
233   struct GNUNET_HashCode hkey;
234   char *val;
235
236   GNUNET_CRYPTO_hash (key, strlen (key), &hkey);
237   GNUNET_asprintf (&val, "%s", value);
238   if (GNUNET_OK !=
239       GNUNET_CONTAINER_multihashmap_put (handle->header_param_map,
240                                          &hkey,
241                                          val,
242                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
243   {
244     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
245                 "Could not load add header `%s'=%s\n",
246                 key, value);
247   }
248   return MHD_YES;
249 }
250
251
252 static int
253 url_iterator (void *cls,
254               enum MHD_ValueKind kind,
255               const char *key,
256               const char *value)
257 {
258   struct GNUNET_REST_RequestHandle *handle = cls;
259   struct GNUNET_HashCode hkey;
260   char *val;
261
262   GNUNET_CRYPTO_hash (key, strlen (key), &hkey);
263   GNUNET_asprintf (&val, "%s", value);
264   if (GNUNET_OK !=
265       GNUNET_CONTAINER_multihashmap_put (handle->url_param_map,
266                                          &hkey,
267                                          val,
268                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
269   {
270     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
271                 "Could not load add url param `%s'=%s\n",
272                 key, value);
273   }
274   return MHD_YES;
275 }
276
277 static int
278 post_data_iter (void *cls,
279                          enum MHD_ValueKind kind,
280                          const char *key,
281                          const char *filename,
282                          const char *content_type,
283                          const char *transfer_encoding,
284                          const char *data,
285                          uint64_t off,
286                          size_t size)
287 {
288   struct GNUNET_REST_RequestHandle *handle = cls;
289   struct GNUNET_HashCode hkey;
290   char *val;
291
292   if (MHD_POSTDATA_KIND != kind)
293     return MHD_YES;
294
295   GNUNET_CRYPTO_hash (key, strlen (key), &hkey);
296   GNUNET_asprintf (&val, "%s", data);
297   if (GNUNET_OK !=
298       GNUNET_CONTAINER_multihashmap_put (handle->url_param_map,
299                                          &hkey,
300                                          val,
301                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
302   {
303     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
304                 "Could not load add url param `%s'=%s\n",
305                 key, data);
306   }
307   return MHD_YES;
308
309 }
310
311 /* ********************************* MHD response generation ******************* */
312
313 /**
314  * Main MHD callback for handling requests.
315  *
316  * @param cls unused
317  * @param con MHD connection handle
318  * @param url the url in the request
319  * @param meth the HTTP method used ("GET", "PUT", etc.)
320  * @param ver the HTTP version string (i.e. "HTTP/1.1")
321  * @param upload_data the data being uploaded (excluding HEADERS,
322  *        for a POST that fits into memory and that is encoded
323  *        with a supported encoding, the POST data will NOT be
324  *        given in upload_data and is instead available as
325  *        part of MHD_get_connection_values; very large POST
326  *        data *will* be made available incrementally in
327  *        upload_data)
328  * @param upload_data_size set initially to the size of the
329  *        @a upload_data provided; the method must update this
330  *        value to the number of bytes NOT processed;
331  * @param con_cls pointer to location where we store the 'struct Request'
332  * @return MHD_YES if the connection was handled successfully,
333  *         MHD_NO if the socket must be closed due to a serious
334  *         error while handling the request
335  */
336 static int
337 create_response (void *cls,
338                  struct MHD_Connection *con,
339                  const char *url,
340                  const char *meth,
341                  const char *ver,
342                  const char *upload_data,
343                  size_t *upload_data_size,
344                  void **con_cls)
345 {
346   char *plugin_name;
347   struct GNUNET_HashCode key;
348   struct MhdConnectionHandle *con_handle;
349   struct GNUNET_REST_RequestHandle *rest_conndata_handle;
350
351   con_handle = *con_cls;
352
353   if (NULL == *con_cls)
354   {
355     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
356                 "New connection %s\n", url);
357     char tmp_url[strlen(url)+1];
358     strcpy (tmp_url, url);
359     con_handle = GNUNET_new (struct MhdConnectionHandle);
360     con_handle->con = con;
361     con_handle->state = GN_REST_STATE_INIT;
362     *con_cls = con_handle;
363
364     plugin_name = strtok(tmp_url, "/");
365
366     if (NULL != plugin_name)
367     {
368       GNUNET_CRYPTO_hash (plugin_name, strlen (plugin_name), &key);
369
370       con_handle->plugin = GNUNET_CONTAINER_multihashmap_get (plugin_map,
371                                                               &key);
372     }
373     if (NULL == con_handle->plugin)
374     {
375       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
376                   "Queueing response with MHD\n");
377       GNUNET_free (con_handle);
378       return MHD_queue_response (con,
379                                  MHD_HTTP_NOT_FOUND,
380                                  failure_response);
381     }
382
383     return MHD_YES;
384   }
385   if (GN_REST_STATE_INIT == con_handle->state)
386   {
387     rest_conndata_handle = GNUNET_new (struct GNUNET_REST_RequestHandle);
388     rest_conndata_handle->method = meth;
389     rest_conndata_handle->url = url;
390     rest_conndata_handle->data = upload_data;
391     rest_conndata_handle->data_size = *upload_data_size;
392     rest_conndata_handle->url_param_map = GNUNET_CONTAINER_multihashmap_create (16,
393                                                                                 GNUNET_NO);
394     rest_conndata_handle->header_param_map = GNUNET_CONTAINER_multihashmap_create (16,
395                                                                                    GNUNET_NO);
396     con_handle->data_handle = rest_conndata_handle;
397     MHD_get_connection_values (con,
398                                MHD_GET_ARGUMENT_KIND,
399                                &url_iterator,
400                                rest_conndata_handle);
401 <<<<<<< HEAD
402     MHD_get_connection_values (con,
403                                MHD_HEADER_KIND,
404                                &header_iterator,
405                                rest_conndata_handle);
406 =======
407     con_handle->pp = MHD_create_post_processor(con,
408                                                4000,
409                                                post_data_iter,
410                                                rest_conndata_handle);
411     if (*upload_data_size)
412     {
413       MHD_post_process(con_handle->pp, upload_data, *upload_data_size);
414     }
415     else
416     {
417       MHD_destroy_post_processor(con_handle->pp);
418     }
419 >>>>>>> master
420     con_handle->state = GN_REST_STATE_PROCESSING;
421     con_handle->plugin->process_request (rest_conndata_handle,
422                                          &plugin_callback,
423                                          con_handle);
424     *upload_data_size = 0;
425   }
426   if (NULL != con_handle->response)
427   {
428     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
429                 "Queueing response from plugin with MHD\n");
430     //Handle Preflights
431     if (NULL != allow_origin)
432     {
433       MHD_add_response_header (con_handle->response,
434                                MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN,
435                                allow_origin);
436     }
437     if (NULL != allow_headers)
438     {
439       MHD_add_response_header (con_handle->response,
440                                "Access-Control-Allow-Headers",
441                                allow_headers);
442     }
443     //Always add JSONAPI content type. TODO
444     MHD_add_response_header (con_handle->response,
445                              MHD_HTTP_HEADER_CONTENT_TYPE,
446                              "application/vnd.api+json");
447     int ret = MHD_queue_response (con,
448                                   con_handle->status,
449                                   con_handle->response);
450     cleanup_handle (con_handle);
451     return ret;
452   }
453   return MHD_YES;
454 }
455
456
457 /* ******************** MHD HTTP setup and event loop ******************** */
458
459 /**
460  * Function called when MHD decides that we are done with a connection.
461  *
462  * @param cls NULL
463  * @param connection connection handle
464  * @param con_cls value as set by the last call to
465  *        the MHD_AccessHandlerCallback, should be our handle
466  * @param toe reason for request termination (ignored)
467  */
468 static void
469 mhd_completed_cb (void *cls,
470                   struct MHD_Connection *connection,
471                   void **con_cls,
472                   enum MHD_RequestTerminationCode toe)
473 {
474   if (MHD_REQUEST_TERMINATED_COMPLETED_OK != toe)
475     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
476                 "MHD encountered error handling request: %d\n",
477                 toe);
478 }
479
480
481 /**
482  * Kill the MHD daemon.
483  */
484 static void
485 kill_httpd ()
486 {
487   if (NULL != httpd)
488   {
489     MHD_stop_daemon (httpd);
490     httpd = NULL;
491   }
492   if (NULL != httpd_task)
493   {
494     GNUNET_SCHEDULER_cancel (httpd_task);
495     httpd_task = NULL;
496   }
497   if (NULL != ltask4)
498   {
499     GNUNET_SCHEDULER_cancel (ltask4);
500     ltask4 = NULL;
501   }
502   if (NULL != ltask6)
503   {
504     GNUNET_SCHEDULER_cancel (ltask6);
505     ltask6 = NULL;
506   }
507
508   if (NULL != lsock4)
509   {
510     GNUNET_NETWORK_socket_close (lsock4);
511     lsock4 = NULL;
512   }
513   if (NULL != lsock6)
514   {
515     GNUNET_NETWORK_socket_close (lsock6);
516     lsock6 = NULL;
517   }
518   }
519
520
521 /**
522  * Schedule MHD.  This function should be called initially when an
523  * MHD is first getting its client socket, and will then automatically
524  * always be called later whenever there is work to be done.
525  *
526  * @param hd the daemon to schedule
527  */
528 static void
529 schedule_httpd ()
530 {
531   fd_set rs;
532   fd_set ws;
533   fd_set es;
534   struct GNUNET_NETWORK_FDSet *wrs;
535   struct GNUNET_NETWORK_FDSet *wws;
536   int max;
537   int haveto;
538   MHD_UNSIGNED_LONG_LONG timeout;
539   struct GNUNET_TIME_Relative tv;
540
541   FD_ZERO (&rs);
542   FD_ZERO (&ws);
543   FD_ZERO (&es);
544   max = -1;
545   if (MHD_YES != MHD_get_fdset (httpd, &rs, &ws, &es, &max))
546   {
547     kill_httpd ();
548     return;
549   }
550   haveto = MHD_get_timeout (httpd, &timeout);
551   if (MHD_YES == haveto)
552     tv.rel_value_us = (uint64_t) timeout * 1000LL;
553   else
554     tv = GNUNET_TIME_UNIT_FOREVER_REL;
555   if (-1 != max)
556   {
557     wrs = GNUNET_NETWORK_fdset_create ();
558     wws = GNUNET_NETWORK_fdset_create ();
559     GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
560     GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
561   }
562   else
563   {
564     wrs = NULL;
565     wws = NULL;
566   }
567   if (NULL != httpd_task)
568   {
569     GNUNET_SCHEDULER_cancel (httpd_task);
570     httpd_task = NULL;
571   }
572   if ( (MHD_YES == haveto) ||
573        (-1 != max))
574   {
575     httpd_task =
576       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
577                                    tv, wrs, wws,
578                                    &do_httpd, NULL);
579     
580   }
581   if (NULL != wrs)
582     GNUNET_NETWORK_fdset_destroy (wrs);
583   if (NULL != wws)
584     GNUNET_NETWORK_fdset_destroy (wws);
585 }
586
587 /**
588  * Task run whenever HTTP server operations are pending.
589  *
590  * @param cls NULL
591  */
592 static void
593 do_httpd (void *cls)
594 {
595   httpd_task = NULL;
596   MHD_run (httpd);
597   schedule_httpd ();
598 }
599
600
601 /**
602  * Accept new incoming connections
603  *
604  * @param cls the closure with the lsock4 or lsock6
605  * @param tc the scheduler context
606  */
607 static void
608 do_accept (void *cls)
609 {
610   struct GNUNET_NETWORK_Handle *lsock = cls;
611   struct GNUNET_NETWORK_Handle *s;
612   int fd;
613   const struct sockaddr *addr;
614   socklen_t len;
615
616   GNUNET_assert (NULL != lsock);
617   if (lsock == lsock4)
618   {
619     ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
620                                             lsock,
621                                             &do_accept, lsock);
622
623   }
624   else if (lsock == lsock6)
625   {
626     ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
627                                             lsock,
628                                             &do_accept, lsock);
629
630   }
631   else
632     GNUNET_assert (0);
633   s = GNUNET_NETWORK_socket_accept (lsock, NULL, NULL);
634   if (NULL == s)
635   {
636     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "accept");
637     return;
638   }
639   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
640               "Got an inbound connection, waiting for data\n");
641   fd = GNUNET_NETWORK_get_fd (s);
642   addr = GNUNET_NETWORK_get_addr (s);
643   len = GNUNET_NETWORK_get_addrlen (s);
644   if (MHD_YES != MHD_add_connection (httpd, fd, addr, len))
645   {
646     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
647                 _("Failed to pass client to MHD\n"));
648     return;
649   }
650
651   schedule_httpd ();
652 }
653
654
655 /**
656  * Task run on shutdown
657  *
658  * @param cls closure
659  */
660 static void
661 do_shutdown (void *cls)
662 {
663   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
664               "Shutting down...\n");
665   kill_httpd ();
666   GNUNET_free_non_null (allow_origin);
667   GNUNET_free_non_null (allow_headers);
668 }
669
670
671 /**
672  * Create an IPv4 listen socket bound to our port.
673  *
674  * @return NULL on error
675  */
676 static struct GNUNET_NETWORK_Handle *
677 bind_v4 ()
678 {
679   struct GNUNET_NETWORK_Handle *ls;
680   struct sockaddr_in sa4;
681   int eno;
682
683   memset (&sa4, 0, sizeof (sa4));
684   sa4.sin_family = AF_INET;
685   sa4.sin_port = htons (port);
686 #if HAVE_SOCKADDR_IN_SIN_LEN
687   sa4.sin_len = sizeof (sa4);
688 #endif
689   ls = GNUNET_NETWORK_socket_create (AF_INET,
690                                      SOCK_STREAM,
691                                      0);
692   if (NULL == ls)
693     return NULL;
694   if (GNUNET_OK !=
695       GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa4,
696                                   sizeof (sa4)))
697   {
698     eno = errno;
699     GNUNET_NETWORK_socket_close (ls);
700     errno = eno;
701     return NULL;
702   }
703   return ls;
704 }
705
706
707 /**
708  * Create an IPv6 listen socket bound to our port.
709  *
710  * @return NULL on error
711  */
712 static struct GNUNET_NETWORK_Handle *
713 bind_v6 ()
714 {
715   struct GNUNET_NETWORK_Handle *ls;
716   struct sockaddr_in6 sa6;
717   int eno;
718
719   memset (&sa6, 0, sizeof (sa6));
720   sa6.sin6_family = AF_INET6;
721   sa6.sin6_port = htons (port);
722 #if HAVE_SOCKADDR_IN_SIN_LEN
723   sa6.sin6_len = sizeof (sa6);
724 #endif
725   ls = GNUNET_NETWORK_socket_create (AF_INET6,
726                                      SOCK_STREAM,
727                                      0);
728   if (NULL == ls)
729     return NULL;
730   if (GNUNET_OK !=
731       GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa6,
732                                   sizeof (sa6)))
733   {
734     eno = errno;
735     GNUNET_NETWORK_socket_close (ls);
736     errno = eno;
737     return NULL;
738   }
739   return ls;
740 }
741
742
743 /**
744  * Callback for plugin load
745  *
746  * @param cls NULL
747  * @param libname the name of the library loaded
748  * @param lib_ret the object returned by the plugin initializer
749  */
750 static void
751 load_plugin (void *cls,
752              const char *libname,
753              void *lib_ret)
754 {
755   struct GNUNET_REST_Plugin *plugin = lib_ret;
756   struct GNUNET_HashCode key;
757   if (NULL == lib_ret)
758   {
759     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
760                 "Could not load plugin `%s'\n",
761                 libname);
762     return;
763   }
764   GNUNET_assert (1 < strlen (plugin->name));
765   GNUNET_assert ('/' == *plugin->name);
766   GNUNET_CRYPTO_hash (plugin->name+1, strlen (plugin->name+1), &key);
767   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (plugin_map,
768                                                       &key,
769                                                       plugin,
770                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
771   {
772     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
773                 "Could not load add plugin `%s'\n",
774                 libname);
775     return;
776   }
777   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
778               "Loaded plugin `%s'\n",
779               libname);
780 }
781
782
783 /**
784  * Main function that will be run
785  *
786  * @param cls closure
787  * @param args remaining command-line arguments
788  * @param cfgfile name of the configuration file used (for saving, can be NULL)
789  * @param c configuration
790  */
791 static void
792 run (void *cls,
793      char *const *args,
794      const char *cfgfile,
795      const struct GNUNET_CONFIGURATION_Handle *c)
796 {
797   cfg = c;
798   plugin_map = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
799
800   /* Get CORS data from cfg */
801   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "rest",
802                                                           "REST_ALLOW_ORIGIN",
803                                                           &allow_origin))
804   {
805     //No origin specified
806     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
807                 "No CORS Access-Control-Allow-Origin Header will be sent...\n");
808   }
809
810   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "rest",
811                                                           "REST_ALLOW_HEADERS",
812                                                           &allow_headers))
813   {
814     //No origin specified
815     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
816                 "No CORS Access-Control-Allow-Headers Header will be sent...\n");
817   }
818
819   /* Open listen socket proxy */
820   lsock6 = bind_v6 ();
821   if (NULL == lsock6)
822   {
823     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
824   }
825   else
826   {
827     if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock6, 5))
828     {
829       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
830       GNUNET_NETWORK_socket_close (lsock6);
831       lsock6 = NULL;
832     }
833     else
834     {
835       ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
836                                               lsock6, &do_accept, lsock6);
837
838     }
839   }
840   lsock4 = bind_v4 ();
841   if (NULL == lsock4)
842   {
843     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
844   }
845   else
846   {
847     if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock4, 5))
848     {
849       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
850       GNUNET_NETWORK_socket_close (lsock4);
851       lsock4 = NULL;
852     }
853     else
854     {
855       ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
856                                               lsock4, &do_accept, lsock4);
857
858     }
859   }
860   if ( (NULL == lsock4) &&
861        (NULL == lsock6) )
862   {
863     GNUNET_SCHEDULER_shutdown ();
864     return;
865   }
866   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
867               "Service listens on port %llu\n",
868               port);
869   httpd = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_NO_LISTEN_SOCKET,
870                             0,
871                             NULL, NULL,
872                             &create_response, NULL,
873                             MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
874                             MHD_OPTION_NOTIFY_COMPLETED, &mhd_completed_cb, NULL,
875                             MHD_OPTION_END);
876   if (NULL == httpd)
877   {
878     GNUNET_SCHEDULER_shutdown ();
879     return;
880   }
881   /* Load plugins */
882   GNUNET_PLUGIN_load_all ("libgnunet_plugin_rest",
883                           (void *) cfg,
884                           &load_plugin,
885                           NULL);
886   GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
887 }
888
889
890 /**
891  *
892  * The main function for gnunet-rest-service
893  *
894  * @param argc number of arguments from the cli
895  * @param argv command line arguments
896  * @return 0 ok, 1 on error
897  *
898  */
899 int
900 main (int argc, char *const *argv)
901 {
902   struct GNUNET_GETOPT_CommandLineOption options[] = {
903     GNUNET_GETOPT_option_ulong ('p',
904                                 "port",
905                                 "PORT",
906                                 gettext_noop ("listen on specified port (default: 7776)"),
907                                 &port),
908     GNUNET_GETOPT_OPTION_END
909   };
910   static const char* err_page =
911     "{}";
912   int ret;
913
914   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
915     return 2;
916   GNUNET_log_setup ("gnunet-rest-server", "WARNING", NULL);
917   failure_response = MHD_create_response_from_buffer (strlen(err_page),
918                                                       (void*)err_page,
919                                                       MHD_RESPMEM_PERSISTENT);
920   ret =
921     (GNUNET_OK ==
922      GNUNET_PROGRAM_run (argc, argv, "gnunet-rest-server",
923                          _("GNUnet REST server"),
924                          options,
925                          &run, NULL)) ? 0: 1;
926   MHD_destroy_response (failure_response);
927   GNUNET_free_non_null ((char *) argv);
928   return ret;
929 }
930
931 /* end of gnunet-rest-server.c */