spell out message types more, use correct conversion direction
[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 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   int status;
135
136   int state;
137 };
138
139 /* ************************* Global helpers ********************* */
140
141
142 /**
143  * Task run whenever HTTP server operations are pending.
144  *
145  * @param cls NULL
146  */
147 static void
148 do_httpd (void *cls);
149
150
151 /**
152  * Run MHD now, we have extra data ready for the callback.
153  */
154 static void
155 run_mhd_now ()
156 {
157   if (NULL !=
158       httpd_task)
159     GNUNET_SCHEDULER_cancel (httpd_task);
160   httpd_task = GNUNET_SCHEDULER_add_now (&do_httpd,
161                                          NULL);
162 }
163
164 /**
165  * Plugin result callback
166  *
167  * @param cls closure (MHD connection handle)
168  * @param data the data to return to the caller
169  * @param len length of the data
170  * @param status #GNUNET_OK if successful
171  */
172 static void
173 plugin_callback (void *cls,
174                  struct MHD_Response *resp,
175                  int status)
176 {
177   struct MhdConnectionHandle *handle = cls;
178   handle->status = status;
179   handle->response = resp;
180   run_mhd_now();
181 }
182
183
184 static int
185 cleanup_url_map (void *cls,
186                  const struct GNUNET_HashCode *key,
187                  void *value)
188 {
189   GNUNET_free_non_null (value);
190   return GNUNET_YES;
191 }
192
193
194 static void
195 cleanup_handle (struct MhdConnectionHandle *handle)
196 {
197   if (NULL != handle->response)
198     MHD_destroy_response (handle->response);
199   if (NULL != handle->data_handle)
200   {
201     if (NULL != handle->data_handle->url_param_map)
202     {
203       GNUNET_CONTAINER_multihashmap_iterate (handle->data_handle->url_param_map,
204                                              &cleanup_url_map,
205                                              NULL);
206       GNUNET_CONTAINER_multihashmap_destroy (handle->data_handle->url_param_map);
207     }
208     GNUNET_free (handle->data_handle);
209   }
210   GNUNET_free (handle);
211 }
212
213
214 static int
215 url_iterator (void *cls,
216               enum MHD_ValueKind kind,
217               const char *key,
218               const char *value)
219 {
220   struct GNUNET_REST_RequestHandle *handle = cls;
221   struct GNUNET_HashCode hkey;
222   char *val;
223
224   GNUNET_CRYPTO_hash (key, strlen (key), &hkey);
225   GNUNET_asprintf (&val, "%s", value);
226   if (GNUNET_OK !=
227       GNUNET_CONTAINER_multihashmap_put (handle->url_param_map,
228                                          &hkey,
229                                          val,
230                                          GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
231   {
232     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
233                 "Could not load add url param `%s'=%s\n",
234                 key, value);
235   }
236   return MHD_YES;
237 }
238
239 /* ********************************* MHD response generation ******************* */
240
241 /**
242  * Main MHD callback for handling requests.
243  *
244  * @param cls unused
245  * @param con MHD connection handle
246  * @param url the url in the request
247  * @param meth the HTTP method used ("GET", "PUT", etc.)
248  * @param ver the HTTP version string (i.e. "HTTP/1.1")
249  * @param upload_data the data being uploaded (excluding HEADERS,
250  *        for a POST that fits into memory and that is encoded
251  *        with a supported encoding, the POST data will NOT be
252  *        given in upload_data and is instead available as
253  *        part of MHD_get_connection_values; very large POST
254  *        data *will* be made available incrementally in
255  *        upload_data)
256  * @param upload_data_size set initially to the size of the
257  *        @a upload_data provided; the method must update this
258  *        value to the number of bytes NOT processed;
259  * @param con_cls pointer to location where we store the 'struct Request'
260  * @return MHD_YES if the connection was handled successfully,
261  *         MHD_NO if the socket must be closed due to a serious
262  *         error while handling the request
263  */
264 static int
265 create_response (void *cls,
266                  struct MHD_Connection *con,
267                  const char *url,
268                  const char *meth,
269                  const char *ver,
270                  const char *upload_data,
271                  size_t *upload_data_size,
272                  void **con_cls)
273 {
274   char *plugin_name;
275   struct GNUNET_HashCode key;
276   struct MhdConnectionHandle *con_handle;
277   struct GNUNET_REST_RequestHandle *rest_conndata_handle;
278
279   con_handle = *con_cls;
280
281   if (NULL == *con_cls)
282   {
283     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
284                 "New connection %s\n", url);
285     char tmp_url[strlen(url)+1];
286     strcpy (tmp_url, url);
287     con_handle = GNUNET_new (struct MhdConnectionHandle);
288     con_handle->con = con;
289     con_handle->state = GN_REST_STATE_INIT;
290     *con_cls = con_handle;
291
292     plugin_name = strtok(tmp_url, "/");
293
294     if (NULL != plugin_name)
295     {
296       GNUNET_CRYPTO_hash (plugin_name, strlen (plugin_name), &key);
297
298       con_handle->plugin = GNUNET_CONTAINER_multihashmap_get (plugin_map,
299                                                               &key);
300     }
301     if (NULL == con_handle->plugin)
302     {
303       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
304                   "Queueing response with MHD\n");
305       GNUNET_free (con_handle);
306       return MHD_queue_response (con,
307                                  MHD_HTTP_NOT_FOUND,
308                                  failure_response);
309     }
310     return MHD_YES;
311   }
312   if (GN_REST_STATE_INIT == con_handle->state)
313   {
314     rest_conndata_handle = GNUNET_new (struct GNUNET_REST_RequestHandle);
315     rest_conndata_handle->method = meth;
316     rest_conndata_handle->url = url;
317     rest_conndata_handle->data = upload_data;
318     rest_conndata_handle->data_size = *upload_data_size;
319     rest_conndata_handle->url_param_map = GNUNET_CONTAINER_multihashmap_create (16,
320                                                                                 GNUNET_NO);
321     con_handle->data_handle = rest_conndata_handle;
322     MHD_get_connection_values (con,
323                                MHD_GET_ARGUMENT_KIND,
324                                &url_iterator,
325                                rest_conndata_handle);
326     con_handle->state = GN_REST_STATE_PROCESSING;
327     con_handle->plugin->process_request (rest_conndata_handle,
328                                          &plugin_callback,
329                                          con_handle);
330     *upload_data_size = 0;
331   }
332   if (NULL != con_handle->response)
333   {
334     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
335                 "Queueing response from plugin with MHD\n");
336     //Handle Preflights
337     if (NULL != allow_origin)
338     {
339       MHD_add_response_header (con_handle->response,
340                                MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN,
341                                allow_origin);
342     }
343     if (NULL != allow_headers)
344     {
345       MHD_add_response_header (con_handle->response,
346                                "Access-Control-Allow-Headers",
347                                allow_headers);
348     }
349     //Always add JSONAPI content type. TODO
350     MHD_add_response_header (con_handle->response,
351                              MHD_HTTP_HEADER_CONTENT_TYPE,
352                              "application/vnd.api+json");
353     int ret = MHD_queue_response (con,
354                                   con_handle->status,
355                                   con_handle->response);
356     cleanup_handle (con_handle);
357     return ret;
358   }
359   return MHD_YES;
360 }
361
362
363 /* ******************** MHD HTTP setup and event loop ******************** */
364
365 /**
366  * Function called when MHD decides that we are done with a connection.
367  *
368  * @param cls NULL
369  * @param connection connection handle
370  * @param con_cls value as set by the last call to
371  *        the MHD_AccessHandlerCallback, should be our handle
372  * @param toe reason for request termination (ignored)
373  */
374 static void
375 mhd_completed_cb (void *cls,
376                   struct MHD_Connection *connection,
377                   void **con_cls,
378                   enum MHD_RequestTerminationCode toe)
379 {
380   if (MHD_REQUEST_TERMINATED_COMPLETED_OK != toe)
381     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
382                 "MHD encountered error handling request: %d\n",
383                 toe);
384 }
385
386
387 /**
388  * Kill the MHD daemon.
389  */
390 static void
391 kill_httpd ()
392 {
393   if (NULL != httpd)
394   {
395     MHD_stop_daemon (httpd);
396     httpd = NULL;
397   }
398   if (NULL != httpd_task)
399   {
400     GNUNET_SCHEDULER_cancel (httpd_task);
401     httpd_task = NULL;
402   }
403   if (NULL != ltask4)
404   {
405     GNUNET_SCHEDULER_cancel (ltask4);
406     ltask4 = NULL;
407   }
408   if (NULL != ltask6)
409   {
410     GNUNET_SCHEDULER_cancel (ltask6);
411     ltask6 = NULL;
412   }
413 }
414
415
416 /**
417  * Schedule MHD.  This function should be called initially when an
418  * MHD is first getting its client socket, and will then automatically
419  * always be called later whenever there is work to be done.
420  *
421  * @param hd the daemon to schedule
422  */
423 static void
424 schedule_httpd ()
425 {
426   fd_set rs;
427   fd_set ws;
428   fd_set es;
429   struct GNUNET_NETWORK_FDSet *wrs;
430   struct GNUNET_NETWORK_FDSet *wws;
431   int max;
432   int haveto;
433   MHD_UNSIGNED_LONG_LONG timeout;
434   struct GNUNET_TIME_Relative tv;
435
436   FD_ZERO (&rs);
437   FD_ZERO (&ws);
438   FD_ZERO (&es);
439   max = -1;
440   if (MHD_YES != MHD_get_fdset (httpd, &rs, &ws, &es, &max))
441   {
442     kill_httpd ();
443     return;
444   }
445   haveto = MHD_get_timeout (httpd, &timeout);
446   if (MHD_YES == haveto)
447     tv.rel_value_us = (uint64_t) timeout * 1000LL;
448   else
449     tv = GNUNET_TIME_UNIT_FOREVER_REL;
450   if (-1 != max)
451   {
452     wrs = GNUNET_NETWORK_fdset_create ();
453     wws = GNUNET_NETWORK_fdset_create ();
454     GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
455     GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
456   }
457   else
458   {
459     wrs = NULL;
460     wws = NULL;
461   }
462   if (NULL != httpd_task)
463     GNUNET_SCHEDULER_cancel (httpd_task);
464   if ( (MHD_YES == haveto) ||
465        (-1 != max))
466   {
467     httpd_task =
468       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
469                                    tv, wrs, wws,
470                                    &do_httpd, NULL);
471   }
472   if (NULL != wrs)
473     GNUNET_NETWORK_fdset_destroy (wrs);
474   if (NULL != wws)
475     GNUNET_NETWORK_fdset_destroy (wws);
476 }
477
478 /**
479  * Task run whenever HTTP server operations are pending.
480  *
481  * @param cls NULL
482  */
483 static void
484 do_httpd (void *cls)
485 {
486   httpd_task = NULL;
487   MHD_run (httpd);
488   schedule_httpd ();
489 }
490
491
492 /**
493  * Accept new incoming connections
494  *
495  * @param cls the closure with the lsock4 or lsock6
496  * @param tc the scheduler context
497  */
498 static void
499 do_accept (void *cls)
500 {
501   struct GNUNET_NETWORK_Handle *lsock = cls;
502   struct GNUNET_NETWORK_Handle *s;
503   int fd;
504   const struct sockaddr *addr;
505   socklen_t len;
506
507   if (lsock == lsock4)
508     ltask4 = NULL;
509   else
510     ltask6 = NULL;
511   if (lsock == lsock4)
512     ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
513                                             lsock,
514                                             &do_accept, lsock);
515   else
516     ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
517                                             lsock,
518                                             &do_accept, lsock);
519   s = GNUNET_NETWORK_socket_accept (lsock, NULL, NULL);
520   if (NULL == s)
521   {
522     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "accept");
523     return;
524   }
525   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
526               "Got an inbound connection, waiting for data\n");
527   fd = GNUNET_NETWORK_get_fd (s);
528   addr = GNUNET_NETWORK_get_addr (s);
529   len = GNUNET_NETWORK_get_addrlen (s);
530   if (MHD_YES != MHD_add_connection (httpd, fd, addr, len))
531   {
532     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
533                 _("Failed to pass client to MHD\n"));
534     return;
535   }
536
537   schedule_httpd ();
538 }
539
540
541 /**
542  * Task run on shutdown
543  *
544  * @param cls closure
545  */
546 static void
547 do_shutdown (void *cls)
548 {
549   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
550               "Shutting down...\n");
551   kill_httpd ();
552   GNUNET_free_non_null (allow_origin);
553   GNUNET_free_non_null (allow_headers);
554 }
555
556
557 /**
558  * Create an IPv4 listen socket bound to our port.
559  *
560  * @return NULL on error
561  */
562 static struct GNUNET_NETWORK_Handle *
563 bind_v4 ()
564 {
565   struct GNUNET_NETWORK_Handle *ls;
566   struct sockaddr_in sa4;
567   int eno;
568
569   memset (&sa4, 0, sizeof (sa4));
570   sa4.sin_family = AF_INET;
571   sa4.sin_port = htons (port);
572 #if HAVE_SOCKADDR_IN_SIN_LEN
573   sa4.sin_len = sizeof (sa4);
574 #endif
575   ls = GNUNET_NETWORK_socket_create (AF_INET,
576                                      SOCK_STREAM,
577                                      0);
578   if (NULL == ls)
579     return NULL;
580   if (GNUNET_OK !=
581       GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa4,
582                                   sizeof (sa4)))
583   {
584     eno = errno;
585     GNUNET_NETWORK_socket_close (ls);
586     errno = eno;
587     return NULL;
588   }
589   return ls;
590 }
591
592
593 /**
594  * Create an IPv6 listen socket bound to our port.
595  *
596  * @return NULL on error
597  */
598 static struct GNUNET_NETWORK_Handle *
599 bind_v6 ()
600 {
601   struct GNUNET_NETWORK_Handle *ls;
602   struct sockaddr_in6 sa6;
603   int eno;
604
605   memset (&sa6, 0, sizeof (sa6));
606   sa6.sin6_family = AF_INET6;
607   sa6.sin6_port = htons (port);
608 #if HAVE_SOCKADDR_IN_SIN_LEN
609   sa6.sin6_len = sizeof (sa6);
610 #endif
611   ls = GNUNET_NETWORK_socket_create (AF_INET6,
612                                      SOCK_STREAM,
613                                      0);
614   if (NULL == ls)
615     return NULL;
616   if (GNUNET_OK !=
617       GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa6,
618                                   sizeof (sa6)))
619   {
620     eno = errno;
621     GNUNET_NETWORK_socket_close (ls);
622     errno = eno;
623     return NULL;
624   }
625   return ls;
626 }
627
628
629 /**
630  * Callback for plugin load
631  *
632  * @param cls NULL
633  * @param libname the name of the library loaded
634  * @param lib_ret the object returned by the plugin initializer
635  */
636 static void
637 load_plugin (void *cls,
638              const char *libname,
639              void *lib_ret)
640 {
641   struct GNUNET_REST_Plugin *plugin = lib_ret;
642   struct GNUNET_HashCode key;
643   if (NULL == lib_ret)
644   {
645     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
646                 "Could not load plugin `%s'\n",
647                 libname);
648     return;
649   }
650   GNUNET_assert (1 < strlen (plugin->name));
651   GNUNET_assert ('/' == *plugin->name);
652   GNUNET_CRYPTO_hash (plugin->name+1, strlen (plugin->name+1), &key);
653   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (plugin_map,
654                                                       &key,
655                                                       plugin,
656                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
657   {
658     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
659                 "Could not load add plugin `%s'\n",
660                 libname);
661     return;
662   }
663   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
664               "Loaded plugin `%s'\n",
665               libname);
666 }
667
668
669 /**
670  * Main function that will be run
671  *
672  * @param cls closure
673  * @param args remaining command-line arguments
674  * @param cfgfile name of the configuration file used (for saving, can be NULL)
675  * @param c configuration
676  */
677 static void
678 run (void *cls,
679      char *const *args,
680      const char *cfgfile,
681      const struct GNUNET_CONFIGURATION_Handle *c)
682 {
683   cfg = c;
684   plugin_map = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
685
686   /* Get CORS data from cfg */
687   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "rest",
688                                                           "REST_ALLOW_ORIGIN",
689                                                           &allow_origin))
690   {
691     //No origin specified
692     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
693                 "No CORS Access-Control-Allow-Origin Header will be sent...\n");
694   }
695
696   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "rest",
697                                                           "REST_ALLOW_HEADERS",
698                                                           &allow_headers))
699   {
700     //No origin specified
701     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
702                 "No CORS Access-Control-Allow-Headers Header will be sent...\n");
703   }
704
705   /* Open listen socket proxy */
706   lsock6 = bind_v6 ();
707   if (NULL == lsock6)
708   {
709     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
710   }
711   else
712   {
713     if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock6, 5))
714     {
715       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
716       GNUNET_NETWORK_socket_close (lsock6);
717       lsock6 = NULL;
718     }
719     else
720     {
721       ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
722                                               lsock6, &do_accept, lsock6);
723     }
724   }
725   lsock4 = bind_v4 ();
726   if (NULL == lsock4)
727   {
728     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
729   }
730   else
731   {
732     if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock4, 5))
733     {
734       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
735       GNUNET_NETWORK_socket_close (lsock4);
736       lsock4 = NULL;
737     }
738     else
739     {
740       ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
741                                               lsock4, &do_accept, lsock4);
742     }
743   }
744   if ( (NULL == lsock4) &&
745        (NULL == lsock6) )
746   {
747     GNUNET_SCHEDULER_shutdown ();
748     return;
749   }
750   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
751               "Service listens on port %lu\n",
752               port);
753   httpd = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_NO_LISTEN_SOCKET,
754                             0,
755                             NULL, NULL,
756                             &create_response, NULL,
757                             MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
758                             MHD_OPTION_NOTIFY_COMPLETED, &mhd_completed_cb, NULL,
759                             MHD_OPTION_END);
760   if (NULL == httpd)
761   {
762     GNUNET_SCHEDULER_shutdown ();
763     return;
764   }
765   /* Load plugins */
766   GNUNET_PLUGIN_load_all ("libgnunet_plugin_rest",
767                           (void *) cfg,
768                           &load_plugin,
769                           NULL);
770   GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
771 }
772
773
774 /**
775  *
776  * The main function for gnunet-rest-service
777  *
778  * @param argc number of arguments from the cli
779  * @param argv command line arguments
780  * @return 0 ok, 1 on error
781  *
782  */
783 int
784 main (int argc, char *const *argv)
785 {
786   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
787     {'p', "port", NULL,
788       gettext_noop ("listen on specified port (default: 7776)"), 1,
789       &GNUNET_GETOPT_set_ulong, &port},
790     GNUNET_GETOPT_OPTION_END
791   };
792   static const char* err_page =
793     "{}";
794   int ret;
795
796   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
797     return 2;
798   GNUNET_log_setup ("gnunet-rest-server", "WARNING", NULL);
799   failure_response = MHD_create_response_from_buffer (strlen(err_page),
800                                                       (void*)err_page,
801                                                       MHD_RESPMEM_PERSISTENT);
802   ret =
803     (GNUNET_OK ==
804      GNUNET_PROGRAM_run (argc, argv, "gnunet-rest-server",
805                          _("GNUnet REST server"),
806                          options,
807                          &run, NULL)) ? 0: 1;
808   MHD_destroy_response (failure_response);
809   GNUNET_free_non_null ((char *) argv);
810   return ret;
811 }
812
813 /* end of gnunet-rest-server.c */