aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-06-13 06:10:10 +0000
committerChristian Grothoff <christian@grothoff.org>2009-06-13 06:10:10 +0000
commit256e783449308d848bb687f5e9e79fde1c5fe03d (patch)
tree34a005c38c8b7b6e6a9cc5d16968cd7ededa9bf8 /src
parenta2355334e0a5116144f2588ddf1e37f596c520bd (diff)
downloadgnunet-256e783449308d848bb687f5e9e79fde1c5fe03d.tar.gz
gnunet-256e783449308d848bb687f5e9e79fde1c5fe03d.zip
server draft
Diffstat (limited to 'src')
-rw-r--r--src/hostlist/Makefile.am4
-rw-r--r--src/hostlist/gnunet-daemon-hostlist.c17
-rw-r--r--src/hostlist/hostlist-server.c232
-rw-r--r--src/hostlist/hostlist-server.h54
4 files changed, 301 insertions, 6 deletions
diff --git a/src/hostlist/Makefile.am b/src/hostlist/Makefile.am
index efa4d6962..911c086ac 100644
--- a/src/hostlist/Makefile.am
+++ b/src/hostlist/Makefile.am
@@ -10,8 +10,8 @@ bin_PROGRAMS = \
10 10
11gnunet_daemon_hostlist_SOURCES = \ 11gnunet_daemon_hostlist_SOURCES = \
12 gnunet-daemon-hostlist.c \ 12 gnunet-daemon-hostlist.c \
13 hostlist-client.c hostlist-client.h 13 hostlist-client.c hostlist-client.h \
14# hostlist-server.c hostlist-server.h 14 hostlist-server.c hostlist-server.h
15 15
16gnunet_daemon_hostlist_LDADD = \ 16gnunet_daemon_hostlist_LDADD = \
17 $(top_builddir)/src/core/libgnunetcore.la \ 17 $(top_builddir)/src/core/libgnunetcore.la \
diff --git a/src/hostlist/gnunet-daemon-hostlist.c b/src/hostlist/gnunet-daemon-hostlist.c
index f11bcd87d..da2553238 100644
--- a/src/hostlist/gnunet-daemon-hostlist.c
+++ b/src/hostlist/gnunet-daemon-hostlist.c
@@ -27,6 +27,7 @@
27#include <stdlib.h> 27#include <stdlib.h>
28#include "platform.h" 28#include "platform.h"
29#include "hostlist-client.h" 29#include "hostlist-client.h"
30#include "hostlist-server.h"
30#include "gnunet_core_service.h" 31#include "gnunet_core_service.h"
31#include "gnunet_getopt_lib.h" 32#include "gnunet_getopt_lib.h"
32#include "gnunet_protocols.h" 33#include "gnunet_protocols.h"
@@ -38,6 +39,11 @@
38 39
39 40
40/** 41/**
42 * Set if we are allowed to advertise our hostlist to others.
43 */
44static int advertising;
45
46/**
41 * Set if we are allowed to learn about peers by accessing 47 * Set if we are allowed to learn about peers by accessing
42 * hostlist servers. 48 * hostlist servers.
43 */ 49 */
@@ -63,6 +69,8 @@ static struct GNUNET_STATISTICS_Handle *stats;
63 * gnunet-daemon-hostlist command line options. 69 * gnunet-daemon-hostlist command line options.
64 */ 70 */
65static struct GNUNET_GETOPT_CommandLineOption options[] = { 71static struct GNUNET_GETOPT_CommandLineOption options[] = {
72 { 'a', "advertise", NULL, gettext_noop ("advertise our hostlist to other peers"),
73 GNUNET_NO, &GNUNET_GETOPT_set_one, &advertising },
66 { 'b', "bootstrap", NULL, gettext_noop ("bootstrap using hostlists (it is highly recommended that you always use this option)"), 74 { 'b', "bootstrap", NULL, gettext_noop ("bootstrap using hostlists (it is highly recommended that you always use this option)"),
67 GNUNET_NO, &GNUNET_GETOPT_set_one, &bootstrapping }, 75 GNUNET_NO, &GNUNET_GETOPT_set_one, &bootstrapping },
68 { 'e', "enable-learning", NULL, gettext_noop ("enable learning about hostlist servers from other peers"), 76 { 'e', "enable-learning", NULL, gettext_noop ("enable learning about hostlist servers from other peers"),
@@ -82,7 +90,10 @@ core_init (void *cls,
82 GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded * 90 GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *
83 publicKey) 91 publicKey)
84{ 92{
85 /* TODO: provide "server" to 'hostlist' module (if applicable) */ 93 if (advertising && (NULL != server))
94 {
95 /* TODO: provide "server" to 'hostlist' module */
96 }
86} 97}
87 98
88 99
@@ -145,9 +156,7 @@ run (void *cls,
145 } 156 }
146 if (provide_hostlist) 157 if (provide_hostlist)
147 { 158 {
148 // FIXME! 159 GNUNET_HOSTLIST_server_start (cfg, sched, stats);
149 // (initialize MHD server and run using scheduler;
150 // use peerinfo to gather HELLOs)
151 } 160 }
152 GNUNET_CORE_connect (sched, cfg, 161 GNUNET_CORE_connect (sched, cfg,
153 GNUNET_TIME_UNIT_FOREVER_REL, 162 GNUNET_TIME_UNIT_FOREVER_REL,
diff --git a/src/hostlist/hostlist-server.c b/src/hostlist/hostlist-server.c
new file mode 100644
index 000000000..a2bbe2dec
--- /dev/null
+++ b/src/hostlist/hostlist-server.c
@@ -0,0 +1,232 @@
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 */
41static struct MHD_Daemon *daemon_handle;
42
43/**
44 * Our configuration.
45 */
46static struct GNUNET_CONFIGURATION_Handle *cfg;
47
48/**
49 * Our scheduler.
50 */
51static struct GNUNET_SCHEDULER_Handle *sched;
52
53/**
54 * Our canonical response.
55 */
56static struct MHD_Response *response;
57
58/**
59 * Context for host processor.
60 */
61struct HostSet
62{
63 size_t size;
64
65 char *data;
66};
67
68
69/**
70 * Task that will produce a new response object.
71 */
72static void
73update_response (void *cls,
74 const struct GNUNET_SCHEDULER_TaskContext *tc);
75
76
77/**
78 * Function that assembles our response.
79 */
80static void
81finish_response (struct HostSet *results)
82{
83 if (response != NULL)
84 MHD_destroy_response (response);
85 response = MHD_create_response_from_data (results->size,
86 results->data, MHD_YES, MHD_NO);
87 GNUNET_free (results);
88 /* schedule next update of the response */
89 GNUNET_SCHEDULER_add_delayed (sched,
90 GNUNET_NO,
91 GNUNET_SCHEDULER_PRIORITY_IDLE,
92 GNUNET_SCHEDULER_NO_PREREQUISITE_TASK,
93 RESPONSE_UPDATE_FREQUENCY,
94 &update_response,
95 NULL);
96}
97
98
99/**
100 * Callback that processes each of the known HELLOs for the
101 * hostlist response construction.
102 */
103static void
104host_processor (void *cls,
105 const struct GNUNET_PeerIdentity * peer,
106 const struct GNUNET_HELLO_Message *hello,
107 uint32_t trust)
108{
109 struct HostSet *results = cls;
110 size_t old;
111 size_t s;
112
113 if (peer == NULL)
114 finish_response (results);
115 old = results->size;
116 s = GNUNET_HELLO_size(hello);
117 if (old + s >= GNUNET_MAX_MALLOC_CHECKED)
118 return; /* too large, skip! */
119 GNUNET_array_grow (results->data,
120 results->size,
121 old + s);
122 memcpy (&results->data[old], hello, s);
123}
124
125
126/**
127 * Task that will produce a new response object.
128 */
129static void
130update_response (void *cls,
131 const struct GNUNET_SCHEDULER_TaskContext *tc)
132{
133 struct HostSet *results;
134
135 results = GNUNET_malloc(sizeof(struct HostSet));
136 GNUNET_PEERINFO_for_all (cfg, sched,
137 NULL,
138 0,
139 GNUNET_TIME_UNIT_MINUTES,
140 &host_processor,
141 results);
142}
143
144
145
146static int
147accept_policy_callback (void *cls,
148 const struct sockaddr *addr, socklen_t addrlen)
149{
150 return MHD_YES; /* accept all */
151}
152
153
154static int
155access_handler_callback (void *cls,
156 struct MHD_Connection *connection,
157 const char *url,
158 const char *method,
159 const char *version,
160 const char *upload_data,
161 unsigned int *upload_data_size, void **con_cls)
162{
163 static int dummy;
164
165 if (0 != strcmp (method, MHD_HTTP_METHOD_GET))
166 return MHD_NO;
167 if (NULL == *con_cls)
168 {
169 (*con_cls) = &dummy;
170 return MHD_YES; /* send 100 continue */
171 }
172 if (*upload_data_size != 0)
173 return MHD_NO; /* do not support upload data */
174 if (response == NULL)
175 return MHD_NO; /* internal error, no response yet */
176 return MHD_queue_response (connection, MHD_HTTP_OK, response);
177}
178
179
180/**
181 * Start server offering our hostlist.
182 *
183 * @return GNUNET_OK on success
184 */
185int
186GNUNET_HOSTLIST_server_start (struct GNUNET_CONFIGURATION_Handle *c,
187 struct GNUNET_SCHEDULER_Handle *s,
188 struct GNUNET_STATISTICS_Handle *st)
189{
190 unsigned long long port;
191
192 sched = s;
193 cfg = c;
194 if (-1 == GNUNET_CONFIGURATION_get_value_number (cfg,
195 "HOSTLIST",
196 "PORT",
197 &port))
198 return GNUNET_SYSERR;
199 /* FIXME: must use *external* SELECT mode since our
200 code is NOT thread safe! Integrate with scheduler! */
201 daemon_handle = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_IPv6,
202 (unsigned short) port,
203 &accept_policy_callback,
204 NULL,
205 &access_handler_callback,
206 NULL,
207 MHD_OPTION_CONNECTION_LIMIT, 16,
208 MHD_OPTION_PER_IP_CONNECTION_LIMIT, 1,
209 MHD_OPTION_CONNECTION_TIMEOUT, 16,
210 MHD_OPTION_CONNECTION_MEMORY_LIMIT,
211 16 * 1024, MHD_OPTION_END);
212 if (daemon_handle == NULL)
213 {
214 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
215 _("Could not start hostlist HTTP server on port %u\n"),
216 (unsigned short) port);
217 return GNUNET_SYSERR;
218 }
219 return GNUNET_OK;
220}
221
222/**
223 * Stop server offering our hostlist.
224 */
225void
226GNUNET_HOSTLIST_server_stop ()
227{
228 MHD_stop_daemon (daemon_handle);
229 daemon_handle = NULL;
230}
231
232/* end of hostlist-server.c */
diff --git a/src/hostlist/hostlist-server.h b/src/hostlist/hostlist-server.h
new file mode 100644
index 000000000..16f6848a5
--- /dev/null
+++ b/src/hostlist/hostlist-server.h
@@ -0,0 +1,54 @@
1/*
2 This file is part of GNUnet.
3 (C) 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 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.h
23 * @brief hostlist support. Downloads HELLOs via HTTP.
24 * @author Christian Grothoff
25 */
26
27#ifndef HOSTLIST_SERVER_H
28#define HOSTLIST_SERVER_H
29
30#include "gnunet_core_service.h"
31#include "gnunet_statistics_service.h"
32#include "gnunet_util_lib.h"
33
34
35/**
36 * Start server offering our hostlist.
37 *
38 * @return GNUNET_OK on success
39 */
40int
41GNUNET_HOSTLIST_server_start (struct GNUNET_CONFIGURATION_Handle *c,
42 struct GNUNET_SCHEDULER_Handle *s,
43 struct GNUNET_STATISTICS_Handle *st);
44
45
46/**
47 * Stop server offering our hostlist.
48 */
49void
50GNUNET_HOSTLIST_server_stop (void);
51
52
53#endif
54/* end of hostlist-server.h */