aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-05-31 19:07:22 +0000
committerChristian Grothoff <christian@grothoff.org>2010-05-31 19:07:22 +0000
commit0979933d4ed20341233a939723f8d069a26a3dd9 (patch)
tree241d4177550717b22c70b6d34f8895fe93466a05 /src/core
parent634d9504f07f6dec17bab76375e60c1a30ab12eb (diff)
downloadgnunet-0979933d4ed20341233a939723f8d069a26a3dd9.tar.gz
gnunet-0979933d4ed20341233a939723f8d069a26a3dd9.zip
reliability test for core
Diffstat (limited to 'src/core')
-rw-r--r--src/core/Makefile.am9
-rw-r--r--src/core/test_core_api_peer1.conf3
-rw-r--r--src/core/test_core_api_peer2.conf3
-rw-r--r--src/core/test_core_api_reliability.c488
4 files changed, 500 insertions, 3 deletions
diff --git a/src/core/Makefile.am b/src/core/Makefile.am
index f5c1092b6..d6b938764 100644
--- a/src/core/Makefile.am
+++ b/src/core/Makefile.am
@@ -41,7 +41,8 @@ gnunet_service_core_LDADD = \
41 41
42check_PROGRAMS = \ 42check_PROGRAMS = \
43 test_core_api_start_only \ 43 test_core_api_start_only \
44 test_core_api 44 test_core_api \
45 test_core_api_reliability
45 46
46TESTS = $(check_PROGRAMS) 47TESTS = $(check_PROGRAMS)
47 48
@@ -52,6 +53,12 @@ test_core_api_LDADD = \
52 $(top_builddir)/src/transport/libgnunettransport.la \ 53 $(top_builddir)/src/transport/libgnunettransport.la \
53 $(top_builddir)/src/util/libgnunetutil.la 54 $(top_builddir)/src/util/libgnunetutil.la
54 55
56test_core_api_reliability_SOURCES = \
57 test_core_api_reliability.c
58test_core_api_reliability_LDADD = \
59 $(top_builddir)/src/core/libgnunetcore.la \
60 $(top_builddir)/src/transport/libgnunettransport.la \
61 $(top_builddir)/src/util/libgnunetutil.la
55 62
56test_core_api_start_only_SOURCES = \ 63test_core_api_start_only_SOURCES = \
57 test_core_api_start_only.c 64 test_core_api_start_only.c
diff --git a/src/core/test_core_api_peer1.conf b/src/core/test_core_api_peer1.conf
index 88e8ad806..d02c0a800 100644
--- a/src/core/test_core_api_peer1.conf
+++ b/src/core/test_core_api_peer1.conf
@@ -26,6 +26,7 @@ PORT = 12467
26 26
27[transport-tcp] 27[transport-tcp]
28PORT = 12468 28PORT = 12468
29BINDTO = 127.0.0.1
29#DEBUG = YES 30#DEBUG = YES
30 31
31[peerinfo] 32[peerinfo]
@@ -40,7 +41,7 @@ PORT = 12470
40#OPTIONS = -l log-core-1 41#OPTIONS = -l log-core-1
41#PREFIX = xterm -e xterm -T core1 -e gdb --args 42#PREFIX = xterm -e xterm -T core1 -e gdb --args
42#PREFIX = xterm -T core1 -e 43#PREFIX = xterm -T core1 -e
43#DEBUG = NO 44DEBUG = YES
44#BINARY=/home/grothoff/bin/gnunet-service-core 45#BINARY=/home/grothoff/bin/gnunet-service-core
45 46
46[testing] 47[testing]
diff --git a/src/core/test_core_api_peer2.conf b/src/core/test_core_api_peer2.conf
index fe97fdd03..a067163f5 100644
--- a/src/core/test_core_api_peer2.conf
+++ b/src/core/test_core_api_peer2.conf
@@ -26,6 +26,7 @@ PORT = 22467
26 26
27[transport-tcp] 27[transport-tcp]
28PORT = 22468 28PORT = 22468
29BINDTO = 127.0.0.1
29#DEBUG = YES 30#DEBUG = YES
30 31
31[peerinfo] 32[peerinfo]
@@ -38,7 +39,7 @@ PORT = 22469
38PORT = 22470 39PORT = 22470
39#PREFIX = xterm -T core2 -e 40#PREFIX = xterm -T core2 -e
40#PREFIX = valgrind --tool=memcheck 41#PREFIX = valgrind --tool=memcheck
41#DEBUG = NO 42DEBUG = YES
42#BINARY=/home/grothoff/bin/gnunet-service-core 43#BINARY=/home/grothoff/bin/gnunet-service-core
43 44
44[testing] 45[testing]
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
new file mode 100644
index 000000000..3e4b81bef
--- /dev/null
+++ b/src/core/test_core_api_reliability.c
@@ -0,0 +1,488 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009, 2010 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 * @file core/test_core_api_reliability.c
22 * @brief testcase for core_api.c focusing on reliable transmission (with TCP)
23 *
24 * FIXME:
25 * - make sure connect callback is invoked properly as well!
26 */
27#include "platform.h"
28#include "gnunet_common.h"
29#include "gnunet_arm_service.h"
30#include "gnunet_core_service.h"
31#include "gnunet_getopt_lib.h"
32#include "gnunet_os_lib.h"
33#include "gnunet_program_lib.h"
34#include "gnunet_scheduler_lib.h"
35#include "gnunet_transport_service.h"
36
37#define VERBOSE GNUNET_YES
38
39#define START_ARM GNUNET_YES
40
41/**
42 * How long until we give up on transmitting the message?
43 */
44#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
45
46#define MTYPE 12345
47
48
49static unsigned long long total_bytes;
50
51static struct GNUNET_TIME_Absolute start_time;
52
53/**
54 * Note that this value must not significantly exceed
55 * 'MAX_PENDING' in 'gnunet-service-transport.c', otherwise
56 * messages may be dropped even for a reliable transport.
57 */
58#define TOTAL_MSGS (60000 * 2)
59
60struct PeerContext
61{
62 struct GNUNET_CONFIGURATION_Handle *cfg;
63 struct GNUNET_CORE_Handle *ch;
64 struct GNUNET_PeerIdentity id;
65 struct GNUNET_TRANSPORT_Handle *th;
66 struct GNUNET_MessageHeader *hello;
67 int connect_status;
68#if START_ARM
69 pid_t arm_pid;
70#endif
71};
72
73static struct PeerContext p1;
74
75static struct PeerContext p2;
76
77static struct GNUNET_SCHEDULER_Handle *sched;
78
79static int ok;
80
81#if VERBOSE
82#define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
83#else
84#define OKPP do { ok++; } while (0)
85#endif
86
87struct TestMessage
88{
89 struct GNUNET_MessageHeader header;
90 uint32_t num;
91};
92
93
94static unsigned int
95get_size (unsigned int iter)
96{
97 unsigned int ret;
98 if (iter < 60000)
99 return iter + sizeof (struct TestMessage);
100 ret = (iter * iter * iter);
101 return sizeof (struct TestMessage) + (ret % 60000);
102}
103
104
105static void
106terminate_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
107{
108 unsigned long long delta;
109
110 GNUNET_CORE_disconnect (p1.ch);
111 GNUNET_CORE_disconnect (p2.ch);
112 GNUNET_TRANSPORT_disconnect (p1.th);
113 GNUNET_TRANSPORT_disconnect (p2.th);
114 delta = GNUNET_TIME_absolute_get_duration (start_time).value;
115 fprintf (stderr,
116 "\nThroughput was %llu kb/s\n",
117 total_bytes * 1000 / 1024 / delta);
118 ok = 0;
119}
120
121
122static void
123terminate_task_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
124{
125 GNUNET_break (0);
126 GNUNET_CORE_disconnect (p1.ch);
127 GNUNET_CORE_disconnect (p2.ch);
128 GNUNET_TRANSPORT_disconnect (p1.th);
129 GNUNET_TRANSPORT_disconnect (p2.th);
130 ok = 42;
131}
132
133
134static void
135connect_notify (void *cls,
136 const struct GNUNET_PeerIdentity *peer,
137 struct GNUNET_TIME_Relative latency,
138 uint32_t distance)
139{
140 struct PeerContext *pc = cls;
141 GNUNET_assert (pc->connect_status == 0);
142 pc->connect_status = 1;
143 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
144 "Encrypted connection established to peer `%4s'\n",
145 GNUNET_i2s (peer));
146}
147
148
149static void
150disconnect_notify (void *cls,
151 const struct GNUNET_PeerIdentity *peer)
152{
153 struct PeerContext *pc = cls;
154 pc->connect_status = 0;
155 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
156 "Encrypted connection to `%4s' cut\n", GNUNET_i2s (peer));
157}
158
159
160static int
161inbound_notify (void *cls,
162 const struct GNUNET_PeerIdentity *other,
163 const struct GNUNET_MessageHeader *message,
164 struct GNUNET_TIME_Relative latency,
165 uint32_t distance)
166{
167 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
168 "Core provides inbound data from `%4s'.\n", GNUNET_i2s (other));
169 return GNUNET_OK;
170}
171
172
173static int
174outbound_notify (void *cls,
175 const struct GNUNET_PeerIdentity *other,
176 const struct GNUNET_MessageHeader *message,
177 struct GNUNET_TIME_Relative latency,
178 uint32_t distance)
179{
180 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
181 "Core notifies about outbound data for `%4s'.\n",
182 GNUNET_i2s (other));
183 return GNUNET_OK;
184}
185
186
187static GNUNET_SCHEDULER_TaskIdentifier err_task;
188
189
190static int
191process_mtype (void *cls,
192 const struct GNUNET_PeerIdentity *peer,
193 const struct GNUNET_MessageHeader *message,
194 struct GNUNET_TIME_Relative latency,
195 uint32_t distance)
196{
197 static int n;
198 unsigned int s;
199 const struct TestMessage *hdr;
200
201 hdr = (const struct TestMessage*) message;
202 s = get_size (n);
203 if (MTYPE != ntohs (message->type))
204 return GNUNET_SYSERR;
205 if (ntohs (message->size) != s)
206 {
207 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
208 "Expected message %u of size %u, got %u bytes of message %u\n",
209 n, s,
210 ntohs (message->size),
211 ntohl (hdr->num));
212 GNUNET_SCHEDULER_cancel (sched, err_task);
213 err_task = GNUNET_SCHEDULER_add_now (sched, &terminate_task_error, NULL);
214 return GNUNET_SYSERR;
215 }
216 if (ntohl (hdr->num) != n)
217 {
218 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
219 "Expected message %u of size %u, got %u bytes of message %u\n",
220 n, s,
221 ntohs (message->size),
222 ntohl (hdr->num));
223 GNUNET_SCHEDULER_cancel (sched, err_task);
224 err_task = GNUNET_SCHEDULER_add_now (sched, &terminate_task_error, NULL);
225 return GNUNET_SYSERR;
226 }
227#if VERBOSE
228 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
229 "Got message %u of size %u\n",
230 ntohl (hdr->num),
231 ntohs (message->size));
232#endif
233 n++;
234 if (0 == (n % (TOTAL_MSGS/100)))
235 fprintf (stderr, ".");
236 if (n == TOTAL_MSGS)
237 {
238 GNUNET_SCHEDULER_cancel (sched, err_task);
239 GNUNET_SCHEDULER_add_now (sched, &terminate_task, NULL);
240 }
241 return GNUNET_OK;
242}
243
244
245static struct GNUNET_CORE_MessageHandler handlers[] = {
246 {&process_mtype, MTYPE, 0},
247 {NULL, 0, 0}
248};
249
250
251static size_t
252transmit_ready (void *cls, size_t size, void *buf)
253{
254 static int n;
255 char *cbuf = buf;
256 struct TestMessage hdr;
257 unsigned int s;
258 unsigned int ret;
259
260 if (buf == NULL)
261 {
262 GNUNET_break (0);
263 ok = 42;
264 return 0;
265 }
266 ret = 0;
267 s = get_size (n);
268 GNUNET_assert (size >= s);
269 GNUNET_assert (buf != NULL);
270 cbuf = buf;
271 do
272 {
273 hdr.header.size = htons (s);
274 hdr.header.type = htons (MTYPE);
275 hdr.num = htonl (n);
276 memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage));
277 ret += sizeof (struct TestMessage);
278 memset (&cbuf[ret], n, s - sizeof (struct TestMessage));
279 ret += s - sizeof (struct TestMessage);
280#if VERBOSE
281 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
282 "Sending message %u of size %u\n",
283 n,
284 s);
285#endif
286 n++;
287 s = get_size (n);
288 if (0 == GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16))
289 break; /* sometimes pack buffer full, sometimes not */
290 }
291 while (size - ret >= s);
292 if (n < TOTAL_MSGS)
293 GNUNET_break (NULL !=
294 GNUNET_CORE_notify_transmit_ready (p1.ch,
295 0,
296 GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 45),
297 &p2.id,
298 sizeof (struct GNUNET_MessageHeader),
299 &transmit_ready, &p1));
300 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
301 "Returning total message block of size %u\n",
302 ret);
303 total_bytes += ret;
304 return ret;
305}
306
307
308
309static void
310init_notify (void *cls,
311 struct GNUNET_CORE_Handle *server,
312 const struct GNUNET_PeerIdentity *my_identity,
313 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
314{
315 struct PeerContext *p = cls;
316
317 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
318 "Core connection to `%4s' established\n",
319 GNUNET_i2s (my_identity));
320 GNUNET_assert (server != NULL);
321 p->id = *my_identity;
322 p->ch = server;
323 if (cls == &p1)
324 {
325 GNUNET_assert (ok == 2);
326 OKPP;
327 /* connect p2 */
328 GNUNET_CORE_connect (sched,
329 p2.cfg,
330 TIMEOUT,
331 &p2,
332 &init_notify,
333 &connect_notify,
334 &disconnect_notify,
335 &inbound_notify,
336 GNUNET_YES,
337 &outbound_notify, GNUNET_YES, handlers);
338 }
339 else
340 {
341 GNUNET_assert (ok == 3);
342 OKPP;
343 GNUNET_assert (cls == &p2);
344 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
345 "Asking core (1) for transmission to peer `%4s'\n",
346 GNUNET_i2s (&p2.id));
347 err_task =
348 GNUNET_SCHEDULER_add_delayed (sched,
349 GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 120),
350 &terminate_task_error,
351 NULL);
352 start_time = GNUNET_TIME_absolute_get ();
353 GNUNET_break (NULL !=
354 GNUNET_CORE_notify_transmit_ready (p1.ch,
355 0,
356 GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 45),
357 &p2.id,
358 sizeof (struct GNUNET_MessageHeader),
359 &transmit_ready, &p1));
360 }
361}
362
363
364static void
365process_hello (void *cls,
366 const struct GNUNET_MessageHeader *message)
367{
368 struct PeerContext *p = cls;
369
370 GNUNET_TRANSPORT_get_hello_cancel (p->th, &process_hello, p);
371 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
372 "Received (my) `%s' from transport service\n",
373 "HELLO");
374 GNUNET_assert (message != NULL);
375 p->hello = GNUNET_malloc (ntohs (message->size));
376 memcpy (p->hello, message, ntohs (message->size));
377 if ((p == &p1) && (p2.th != NULL))
378 GNUNET_TRANSPORT_offer_hello (p2.th, message);
379 if ((p == &p2) && (p1.th != NULL))
380 GNUNET_TRANSPORT_offer_hello (p1.th, message);
381
382 if ((p == &p1) && (p2.hello != NULL))
383 GNUNET_TRANSPORT_offer_hello (p1.th, p2.hello);
384 if ((p == &p2) && (p1.hello != NULL))
385 GNUNET_TRANSPORT_offer_hello (p2.th, p1.hello);
386}
387
388
389
390static void
391setup_peer (struct PeerContext *p, const char *cfgname)
392{
393 p->cfg = GNUNET_CONFIGURATION_create ();
394#if START_ARM
395 p->arm_pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
396 "gnunet-service-arm",
397#if VERBOSE
398 "-L", "DEBUG",
399#endif
400 "-c", cfgname, NULL);
401#endif
402 GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
403 p->th = GNUNET_TRANSPORT_connect (sched, p->cfg, p, NULL, NULL, NULL);
404 GNUNET_assert (p->th != NULL);
405 GNUNET_TRANSPORT_get_hello (p->th, &process_hello, p);
406}
407
408
409static void
410run (void *cls,
411 struct GNUNET_SCHEDULER_Handle *s,
412 char *const *args,
413 const char *cfgfile,
414 const struct GNUNET_CONFIGURATION_Handle *cfg)
415{
416 GNUNET_assert (ok == 1);
417 OKPP;
418 sched = s;
419 setup_peer (&p1, "test_core_api_peer1.conf");
420 setup_peer (&p2, "test_core_api_peer2.conf");
421 GNUNET_CORE_connect (sched,
422 p1.cfg,
423 TIMEOUT,
424 &p1,
425 &init_notify,
426 &connect_notify,
427 &disconnect_notify,
428 &inbound_notify,
429 GNUNET_YES, &outbound_notify, GNUNET_YES, handlers);
430}
431
432
433static void
434stop_arm (struct PeerContext *p)
435{
436#if START_ARM
437 if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
438 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
439 if (GNUNET_OS_process_wait(p->arm_pid) != GNUNET_OK)
440 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
441 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
442 "ARM process %u stopped\n", p->arm_pid);
443#endif
444 GNUNET_CONFIGURATION_destroy (p->cfg);
445}
446
447static int
448check ()
449{
450 char *const argv[] = { "test-core-api-reliability",
451 "-c",
452 "test_core_api_data.conf",
453#if VERBOSE
454 "-L", "DEBUG",
455#endif
456 NULL
457 };
458 struct GNUNET_GETOPT_CommandLineOption options[] = {
459 GNUNET_GETOPT_OPTION_END
460 };
461 ok = 1;
462 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
463 argv, "test-core-api-reliability", "nohelp", options, &run, &ok);
464 stop_arm (&p1);
465 stop_arm (&p2);
466 return ok;
467}
468
469int
470main (int argc, char *argv[])
471{
472 int ret;
473
474 GNUNET_log_setup ("test-core-api",
475#if VERBOSE
476 "DEBUG",
477#else
478 "WARNING",
479#endif
480 NULL);
481 ret = check ();
482 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1");
483 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2");
484
485 return ret;
486}
487
488/* end of test_core_api_reliability.c */