3e4b81bef17c7da7a3d6325eb44a4be8190506f0
[oweals/gnunet.git] / src / core / test_core_api_reliability.c
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
49 static unsigned long long total_bytes;
50
51 static 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
60 struct 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
73 static struct PeerContext p1;
74
75 static struct PeerContext p2;
76
77 static struct GNUNET_SCHEDULER_Handle *sched;
78
79 static 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
87 struct TestMessage 
88 {
89   struct GNUNET_MessageHeader header;
90   uint32_t num;
91 };
92
93
94 static unsigned int
95 get_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
105 static void
106 terminate_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
122 static void
123 terminate_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
134 static void
135 connect_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
149 static void
150 disconnect_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
160 static int
161 inbound_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
173 static int
174 outbound_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
187 static GNUNET_SCHEDULER_TaskIdentifier err_task;
188
189
190 static int
191 process_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
245 static struct GNUNET_CORE_MessageHandler handlers[] = {
246   {&process_mtype, MTYPE, 0},
247   {NULL, 0, 0}
248 };
249
250
251 static size_t
252 transmit_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
309 static void
310 init_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
364 static void
365 process_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
390 static void
391 setup_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
409 static void
410 run (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
433 static void
434 stop_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
447 static int
448 check ()
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
469 int
470 main (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 */