6139283ed7279cee6243fc462d38f7ac3880d8f8
[oweals/gnunet.git] / src / hostlist / hostlist-server.c
1 /*
2      This file is part of GNUnet.
3      (C) 2008 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 2, 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 hostlist/hostlist-server.c
23  * @author Christian Grothoff
24  * @brief application to provide an integrated hostlist HTTP server
25  */
26
27 #include "platform.h"
28 #include <microhttpd.h>
29 #include "hostlist-server.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_peerinfo_service.h"
32
33 /**
34  * How often should we recalculate our response to hostlist requests?
35  */
36 #define RESPONSE_UPDATE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
37
38 /**
39  * Handle to the HTTP server as provided by libmicrohttpd.
40  */
41 static struct MHD_Daemon *daemon_handle;
42
43 /**
44  * Our configuration.
45  */
46 static struct GNUNET_CONFIGURATION_Handle *cfg;
47
48 /**
49  * Our scheduler.
50  */
51 static struct GNUNET_SCHEDULER_Handle *sched;
52
53 /**
54  * Our primary task.
55  */
56 static GNUNET_SCHEDULER_TaskIdentifier hostlist_task;
57
58 /**
59  * Our canonical response.
60  */
61 static struct MHD_Response *response;
62
63 /**
64  * Context for host processor.
65  */
66 struct HostSet
67 {
68   unsigned int size;
69
70   char *data;
71 };
72
73
74 /**
75  * Task that will produce a new response object.
76  */
77 static void
78 update_response (void *cls,
79                  const struct GNUNET_SCHEDULER_TaskContext *tc);
80
81
82 /**
83  * Function that assembles our response.
84  */
85 static void
86 finish_response (struct HostSet *results)
87 {
88   if (response != NULL)
89     MHD_destroy_response (response);
90   response = MHD_create_response_from_data (results->size,
91                                             results->data, MHD_YES, MHD_NO);
92   GNUNET_free (results);
93   /* schedule next update of the response */  
94   GNUNET_SCHEDULER_add_delayed (sched,
95                                 GNUNET_NO,
96                                 GNUNET_SCHEDULER_PRIORITY_IDLE,
97                                 GNUNET_SCHEDULER_NO_TASK,
98                                 RESPONSE_UPDATE_FREQUENCY,
99                                 &update_response,
100                                 NULL);
101 }
102
103
104 /**
105  * Callback that processes each of the known HELLOs for the
106  * hostlist response construction.
107  */
108 static void
109 host_processor (void *cls,
110                 const struct GNUNET_PeerIdentity * peer,
111                 const struct GNUNET_HELLO_Message *hello,
112                 uint32_t trust)
113 {
114   struct HostSet *results = cls;
115   size_t old;
116   size_t s;
117   
118   if (peer == NULL)
119     finish_response (results);
120   old = results->size;
121   s = GNUNET_HELLO_size(hello);
122   if (old + s >= GNUNET_MAX_MALLOC_CHECKED)
123     return; /* too large, skip! */
124   GNUNET_array_grow (results->data,
125                      results->size,
126                      old + s);
127   memcpy (&results->data[old], hello, s);
128 }
129
130
131 /**
132  * Task that will produce a new response object.
133  */
134 static void
135 update_response (void *cls,
136                  const struct GNUNET_SCHEDULER_TaskContext *tc)
137 {
138   struct HostSet *results;
139
140   results = GNUNET_malloc(sizeof(struct HostSet));
141   GNUNET_PEERINFO_for_all (cfg, sched, 
142                            NULL,
143                            0, 
144                            GNUNET_TIME_UNIT_MINUTES,
145                            &host_processor,
146                            results);
147 }
148
149
150 /**
151  * Hostlist access policy (very permissive, allows everything).
152  */
153 static int
154 accept_policy_callback (void *cls,
155                         const struct sockaddr *addr, socklen_t addrlen)
156 {
157   return MHD_YES;               /* accept all */
158 }
159
160
161 /**
162  * Main request handler.
163  */
164 static int
165 access_handler_callback (void *cls,
166                          struct MHD_Connection *connection,
167                          const char *url,
168                          const char *method,
169                          const char *version,
170                          const char *upload_data,
171                          size_t*upload_data_size, void **con_cls)
172 {
173   static int dummy;
174   
175   if (0 != strcmp (method, MHD_HTTP_METHOD_GET))
176     return MHD_NO;
177   if (NULL == *con_cls)
178     {
179       (*con_cls) = &dummy;
180       return MHD_YES;           /* send 100 continue */
181     }
182   if (*upload_data_size != 0)
183     return MHD_NO;              /* do not support upload data */
184   if (response == NULL)
185     return MHD_NO;              /* internal error, no response yet */
186   return MHD_queue_response (connection, MHD_HTTP_OK, response);
187 }
188
189
190 /**
191  * Function that queries MHD's select sets and
192  * starts the task waiting for them.
193  */
194 static void 
195 prepare_daemon (void);
196
197
198 /**
199  * Call MHD to process pending requests and then go back
200  * and schedule the next run.
201  */
202 static void
203 run_daemon (void *cls,
204             const struct GNUNET_SCHEDULER_TaskContext *tc)
205 {
206   GNUNET_assert (MHD_YES == MHD_run (daemon_handle));
207   prepare_daemon ();
208 }
209
210
211 /**
212  * Function that queries MHD's select sets and
213  * starts the task waiting for them.
214  */
215 static void 
216 prepare_daemon ()
217 {
218   fd_set rs;
219   fd_set ws;
220   fd_set es;
221   int max;
222   unsigned long long timeout;
223   int haveto;
224   struct GNUNET_TIME_Relative tv;
225   
226   FD_ZERO(&rs);
227   FD_ZERO(&ws);
228   FD_ZERO(&es);
229   max = -1;
230   GNUNET_assert (MHD_YES ==
231                  MHD_get_fdset (daemon_handle,
232                                 &rs,
233                                 &ws,
234                                 &es,
235                                 &max));
236   haveto = MHD_get_timeout (daemon_handle, &timeout);
237   if (haveto == MHD_YES)
238     tv.value = (uint64_t) timeout;
239   else
240     tv = GNUNET_TIME_UNIT_FOREVER_REL;
241   hostlist_task 
242     = GNUNET_SCHEDULER_add_select (sched,
243                                    GNUNET_NO,
244                                    GNUNET_SCHEDULER_PRIORITY_HIGH,
245                                    GNUNET_SCHEDULER_NO_TASK,
246                                    tv,
247                                    max,
248                                    &rs,
249                                    &ws,
250                                    &run_daemon,
251                                    NULL);
252 }
253
254
255
256 /**
257  * Start server offering our hostlist.
258  *
259  * @return GNUNET_OK on success
260  */
261 int
262 GNUNET_HOSTLIST_server_start (struct GNUNET_CONFIGURATION_Handle *c,
263                               struct GNUNET_SCHEDULER_Handle *s,
264                               struct GNUNET_STATISTICS_Handle *st)
265 {
266   unsigned long long port;
267
268   sched = s;
269   cfg = c;
270   if (-1 == GNUNET_CONFIGURATION_get_value_number (cfg,
271                                                    "HOSTLIST",
272                                                    "HTTPPORT", 
273                                                    &port))
274     return GNUNET_SYSERR;
275   daemon_handle = MHD_start_daemon (MHD_USE_IPv6,
276                                     (unsigned short) port,
277                                     &accept_policy_callback,
278                                     NULL,
279                                     &access_handler_callback,
280                                     NULL,
281                                     MHD_OPTION_CONNECTION_LIMIT, 16,
282                                     MHD_OPTION_PER_IP_CONNECTION_LIMIT, 1,
283                                     MHD_OPTION_CONNECTION_TIMEOUT, 16,
284                                     MHD_OPTION_CONNECTION_MEMORY_LIMIT,
285                                     16 * 1024, MHD_OPTION_END);
286   if (daemon_handle == NULL)
287     {
288       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
289                   _("Could not start hostlist HTTP server on port %u\n"),
290                   (unsigned short) port);
291       return GNUNET_SYSERR;    
292     }
293   prepare_daemon ();
294   return GNUNET_OK;
295 }
296
297 /**
298  * Stop server offering our hostlist.
299  */
300 void
301 GNUNET_HOSTLIST_server_stop ()
302 {
303   GNUNET_SCHEDULER_cancel (sched, hostlist_task);
304   hostlist_task = GNUNET_SCHEDULER_NO_TASK;
305   MHD_stop_daemon (daemon_handle);
306   daemon_handle = NULL;
307 }
308
309 /* end of hostlist-server.c */