social: put the sock in the right cupboard
[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     int ret = MHD_queue_response (con,
350                                   con_handle->status,
351                                   con_handle->response);
352     cleanup_handle (con_handle);
353     return ret;
354   }
355   return MHD_YES;
356 }
357
358
359 /* ******************** MHD HTTP setup and event loop ******************** */
360
361 /**
362  * Function called when MHD decides that we are done with a connection.
363  *
364  * @param cls NULL
365  * @param connection connection handle
366  * @param con_cls value as set by the last call to
367  *        the MHD_AccessHandlerCallback, should be our handle
368  * @param toe reason for request termination (ignored)
369  */
370 static void
371 mhd_completed_cb (void *cls,
372                   struct MHD_Connection *connection,
373                   void **con_cls,
374                   enum MHD_RequestTerminationCode toe)
375 {
376   if (MHD_REQUEST_TERMINATED_COMPLETED_OK != toe)
377     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
378                 "MHD encountered error handling request: %d\n",
379                 toe);
380 }
381
382
383 /**
384  * Kill the MHD daemon.
385  */
386 static void
387 kill_httpd ()
388 {
389   if (NULL != httpd)
390   {
391     MHD_stop_daemon (httpd);
392     httpd = NULL;
393   }
394   if (NULL != httpd_task)
395   {
396     GNUNET_SCHEDULER_cancel (httpd_task);
397     httpd_task = NULL;
398   }
399   if (NULL != ltask4)
400   {
401     GNUNET_SCHEDULER_cancel (ltask4);
402     ltask4 = NULL;
403   }
404   if (NULL != ltask6)
405   {
406     GNUNET_SCHEDULER_cancel (ltask6);
407     ltask6 = NULL;
408   }
409 }
410
411
412 /**
413  * Schedule MHD.  This function should be called initially when an
414  * MHD is first getting its client socket, and will then automatically
415  * always be called later whenever there is work to be done.
416  *
417  * @param hd the daemon to schedule
418  */
419 static void
420 schedule_httpd ()
421 {
422   fd_set rs;
423   fd_set ws;
424   fd_set es;
425   struct GNUNET_NETWORK_FDSet *wrs;
426   struct GNUNET_NETWORK_FDSet *wws;
427   int max;
428   int haveto;
429   MHD_UNSIGNED_LONG_LONG timeout;
430   struct GNUNET_TIME_Relative tv;
431
432   FD_ZERO (&rs);
433   FD_ZERO (&ws);
434   FD_ZERO (&es);
435   max = -1;
436   if (MHD_YES != MHD_get_fdset (httpd, &rs, &ws, &es, &max))
437   {
438     kill_httpd ();
439     return;
440   }
441   haveto = MHD_get_timeout (httpd, &timeout);
442   if (MHD_YES == haveto)
443     tv.rel_value_us = (uint64_t) timeout * 1000LL;
444   else
445     tv = GNUNET_TIME_UNIT_FOREVER_REL;
446   if (-1 != max)
447   {
448     wrs = GNUNET_NETWORK_fdset_create ();
449     wws = GNUNET_NETWORK_fdset_create ();
450     GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
451     GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
452   }
453   else
454   {
455     wrs = NULL;
456     wws = NULL;
457   }
458   if (NULL != httpd_task)
459     GNUNET_SCHEDULER_cancel (httpd_task);
460   if ( (MHD_YES == haveto) ||
461        (-1 != max))
462   {
463     httpd_task =
464       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
465                                    tv, wrs, wws,
466                                    &do_httpd, NULL);
467   }
468   if (NULL != wrs)
469     GNUNET_NETWORK_fdset_destroy (wrs);
470   if (NULL != wws)
471     GNUNET_NETWORK_fdset_destroy (wws);
472 }
473
474 /**
475  * Task run whenever HTTP server operations are pending.
476  *
477  * @param cls NULL
478  */
479 static void
480 do_httpd (void *cls)
481 {
482   httpd_task = NULL;
483   MHD_run (httpd);
484   schedule_httpd ();
485 }
486
487
488 /**
489  * Accept new incoming connections
490  *
491  * @param cls the closure with the lsock4 or lsock6
492  * @param tc the scheduler context
493  */
494 static void
495 do_accept (void *cls)
496 {
497   struct GNUNET_NETWORK_Handle *lsock = cls;
498   struct GNUNET_NETWORK_Handle *s;
499   int fd;
500   const struct sockaddr *addr;
501   socklen_t len;
502
503   if (lsock == lsock4)
504     ltask4 = NULL;
505   else
506     ltask6 = NULL;
507   if (lsock == lsock4)
508     ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
509                                             lsock,
510                                             &do_accept, lsock);
511   else
512     ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
513                                             lsock,
514                                             &do_accept, lsock);
515   s = GNUNET_NETWORK_socket_accept (lsock, NULL, NULL);
516   if (NULL == s)
517   {
518     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "accept");
519     return;
520   }
521   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
522               "Got an inbound connection, waiting for data\n");
523   fd = GNUNET_NETWORK_get_fd (s);
524   addr = GNUNET_NETWORK_get_addr (s);
525   len = GNUNET_NETWORK_get_addrlen (s);
526   if (MHD_YES != MHD_add_connection (httpd, fd, addr, len))
527   {
528     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
529                 _("Failed to pass client to MHD\n"));
530     return;
531   }
532
533   schedule_httpd ();
534 }
535
536
537 /**
538  * Task run on shutdown
539  *
540  * @param cls closure
541  */
542 static void
543 do_shutdown (void *cls)
544 {
545   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
546               "Shutting down...\n");
547   kill_httpd ();
548   GNUNET_free_non_null (allow_origin);
549   GNUNET_free_non_null (allow_headers);
550 }
551
552
553 /**
554  * Create an IPv4 listen socket bound to our port.
555  *
556  * @return NULL on error
557  */
558 static struct GNUNET_NETWORK_Handle *
559 bind_v4 ()
560 {
561   struct GNUNET_NETWORK_Handle *ls;
562   struct sockaddr_in sa4;
563   int eno;
564
565   memset (&sa4, 0, sizeof (sa4));
566   sa4.sin_family = AF_INET;
567   sa4.sin_port = htons (port);
568 #if HAVE_SOCKADDR_IN_SIN_LEN
569   sa4.sin_len = sizeof (sa4);
570 #endif
571   ls = GNUNET_NETWORK_socket_create (AF_INET,
572                                      SOCK_STREAM,
573                                      0);
574   if (NULL == ls)
575     return NULL;
576   if (GNUNET_OK !=
577       GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa4,
578                                   sizeof (sa4)))
579   {
580     eno = errno;
581     GNUNET_NETWORK_socket_close (ls);
582     errno = eno;
583     return NULL;
584   }
585   return ls;
586 }
587
588
589 /**
590  * Create an IPv6 listen socket bound to our port.
591  *
592  * @return NULL on error
593  */
594 static struct GNUNET_NETWORK_Handle *
595 bind_v6 ()
596 {
597   struct GNUNET_NETWORK_Handle *ls;
598   struct sockaddr_in6 sa6;
599   int eno;
600
601   memset (&sa6, 0, sizeof (sa6));
602   sa6.sin6_family = AF_INET6;
603   sa6.sin6_port = htons (port);
604 #if HAVE_SOCKADDR_IN_SIN_LEN
605   sa6.sin6_len = sizeof (sa6);
606 #endif
607   ls = GNUNET_NETWORK_socket_create (AF_INET6,
608                                      SOCK_STREAM,
609                                      0);
610   if (NULL == ls)
611     return NULL;
612   if (GNUNET_OK !=
613       GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa6,
614                                   sizeof (sa6)))
615   {
616     eno = errno;
617     GNUNET_NETWORK_socket_close (ls);
618     errno = eno;
619     return NULL;
620   }
621   return ls;
622 }
623
624
625 /**
626  * Callback for plugin load
627  *
628  * @param cls NULL
629  * @param libname the name of the library loaded
630  * @param lib_ret the object returned by the plugin initializer
631  */
632 static void
633 load_plugin (void *cls,
634              const char *libname,
635              void *lib_ret)
636 {
637   struct GNUNET_REST_Plugin *plugin = lib_ret;
638   struct GNUNET_HashCode key;
639   if (NULL == lib_ret)
640   {
641     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
642                 "Could not load plugin `%s'\n",
643                 libname);
644     return;
645   }
646   GNUNET_assert (1 < strlen (plugin->name));
647   GNUNET_assert ('/' == *plugin->name);
648   GNUNET_CRYPTO_hash (plugin->name+1, strlen (plugin->name+1), &key);
649   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (plugin_map,
650                                                       &key,
651                                                       plugin,
652                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
653   {
654     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
655                 "Could not load add plugin `%s'\n",
656                 libname);
657     return;
658   }
659   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
660               "Loaded plugin `%s'\n",
661               libname);
662 }
663
664
665 /**
666  * Main function that will be run
667  *
668  * @param cls closure
669  * @param args remaining command-line arguments
670  * @param cfgfile name of the configuration file used (for saving, can be NULL)
671  * @param c configuration
672  */
673 static void
674 run (void *cls,
675      char *const *args,
676      const char *cfgfile,
677      const struct GNUNET_CONFIGURATION_Handle *c)
678 {
679   cfg = c;
680   plugin_map = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
681
682   /* Get CORS data from cfg */
683   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "rest",
684                                                           "REST_ALLOW_ORIGIN",
685                                                           &allow_origin))
686   {
687     //No origin specified
688     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
689                 "No CORS Access-Control-Allow-Origin Header will be sent...\n");
690   }
691
692   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "rest",
693                                                           "REST_ALLOW_HEADERS",
694                                                           &allow_headers))
695   {
696     //No origin specified
697     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
698                 "No CORS Access-Control-Allow-Headers Header will be sent...\n");
699   }
700
701   /* Open listen socket proxy */
702   lsock6 = bind_v6 ();
703   if (NULL == lsock6)
704   {
705     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
706   }
707   else
708   {
709     if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock6, 5))
710     {
711       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
712       GNUNET_NETWORK_socket_close (lsock6);
713       lsock6 = NULL;
714     }
715     else
716     {
717       ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
718                                               lsock6, &do_accept, lsock6);
719     }
720   }
721   lsock4 = bind_v4 ();
722   if (NULL == lsock4)
723   {
724     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
725   }
726   else
727   {
728     if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock4, 5))
729     {
730       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
731       GNUNET_NETWORK_socket_close (lsock4);
732       lsock4 = NULL;
733     }
734     else
735     {
736       ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
737                                               lsock4, &do_accept, lsock4);
738     }
739   }
740   if ( (NULL == lsock4) &&
741        (NULL == lsock6) )
742   {
743     GNUNET_SCHEDULER_shutdown ();
744     return;
745   }
746   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
747               "Service listens on port %lu\n",
748               port);
749   httpd = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_NO_LISTEN_SOCKET,
750                             0,
751                             NULL, NULL,
752                             &create_response, NULL,
753                             MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
754                             MHD_OPTION_NOTIFY_COMPLETED, &mhd_completed_cb, NULL,
755                             MHD_OPTION_END);
756   if (NULL == httpd)
757   {
758     GNUNET_SCHEDULER_shutdown ();
759     return;
760   }
761   /* Load plugins */
762   GNUNET_PLUGIN_load_all ("libgnunet_plugin_rest",
763                           (void *) cfg,
764                           &load_plugin,
765                           NULL);
766   GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
767 }
768
769
770 /**
771  *
772  * The main function for gnunet-rest-service
773  *
774  * @param argc number of arguments from the cli
775  * @param argv command line arguments
776  * @return 0 ok, 1 on error
777  *
778  */
779 int
780 main (int argc, char *const *argv)
781 {
782   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
783     {'p', "port", NULL,
784       gettext_noop ("listen on specified port (default: 7776)"), 1,
785       &GNUNET_GETOPT_set_ulong, &port},
786     GNUNET_GETOPT_OPTION_END
787   };
788   static const char* err_page =
789     "{}";
790   int ret;
791
792   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
793     return 2;
794   GNUNET_log_setup ("gnunet-rest-server", "WARNING", NULL);
795   failure_response = MHD_create_response_from_buffer (strlen(err_page),
796                                                       (void*)err_page,
797                                                       MHD_RESPMEM_PERSISTENT);
798   ret =
799     (GNUNET_OK ==
800      GNUNET_PROGRAM_run (argc, argv, "gnunet-rest-server",
801                          _("GNUnet REST server"),
802                          options,
803                          &run, NULL)) ? 0: 1;
804   MHD_destroy_response (failure_response);
805   GNUNET_free_non_null ((char *) argv);
806   return ret;
807 }
808
809 /* end of gnunet-rest-server.c */