make smaller -- for now
[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_constants.h"
30 #include "gnunet_arm_service.h"
31 #include "gnunet_core_service.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_scheduler_lib.h"
36 #include "gnunet_transport_service.h"
37
38 #define VERBOSE GNUNET_NO
39
40 #define START_ARM GNUNET_YES
41
42 /**
43  * How long until we give up on transmitting the message?
44  */
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
46
47 /**
48  * What delay do we request from the core service for transmission?
49  * Any value smaller than the CORK delay will disable CORKing, which
50  * is what we want here.
51  */
52 #define FAST_TIMEOUT GNUNET_TIME_relative_divide (GNUNET_CONSTANTS_MAX_CORK_DELAY, 2)
53
54 #define MTYPE 12345
55
56
57 static unsigned long long total_bytes;
58
59 static struct GNUNET_TIME_Absolute start_time;
60
61 /**
62  * Note that this value must not significantly exceed
63  * 'MAX_PENDING' in 'gnunet-service-transport.c', otherwise
64  * messages may be dropped even for a reliable transport.
65  */
66 #define TOTAL_MSGS (600 * 2)
67
68 struct PeerContext
69 {
70   struct GNUNET_CONFIGURATION_Handle *cfg;
71   struct GNUNET_CORE_Handle *ch;
72   struct GNUNET_PeerIdentity id;   
73   struct GNUNET_TRANSPORT_Handle *th;
74   struct GNUNET_MessageHeader *hello;
75   int connect_status;
76 #if START_ARM
77   pid_t arm_pid;
78 #endif
79 };
80
81 static struct PeerContext p1;
82
83 static struct PeerContext p2;
84
85 static struct GNUNET_SCHEDULER_Handle *sched;
86
87 static int ok;
88
89 #if VERBOSE
90 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
91 #else
92 #define OKPP do { ok++; } while (0)
93 #endif
94
95 struct TestMessage 
96 {
97   struct GNUNET_MessageHeader header;
98   uint32_t num;
99 };
100
101
102 static unsigned int
103 get_size (unsigned int iter)
104 {
105   unsigned int ret;
106   if (iter < 60000)
107     return iter + sizeof (struct TestMessage);
108   ret = (iter * iter * iter);
109   return sizeof (struct TestMessage) + (ret % 60000);
110 }
111
112
113 static void
114 terminate_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
115 {
116   unsigned long long delta;
117
118   GNUNET_CORE_disconnect (p1.ch);
119   p1.ch = NULL;
120   GNUNET_CORE_disconnect (p2.ch);
121   p2.ch = NULL;
122   GNUNET_TRANSPORT_disconnect (p1.th);
123   p1.th = NULL;
124   GNUNET_TRANSPORT_disconnect (p2.th);
125   p2.th = NULL;
126   delta = GNUNET_TIME_absolute_get_duration (start_time).value;
127   fprintf (stderr,
128            "\nThroughput was %llu kb/s\n",
129            total_bytes * 1000 / 1024 / delta);
130   ok = 0;
131 }
132
133
134 static void
135 terminate_task_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
136 {
137   GNUNET_break (0);
138   GNUNET_CORE_disconnect (p1.ch);
139   p1.ch = NULL;
140   GNUNET_CORE_disconnect (p2.ch);
141   p2.ch = NULL;
142   GNUNET_TRANSPORT_disconnect (p1.th);
143   p1.th = NULL;
144   GNUNET_TRANSPORT_disconnect (p2.th);
145   p2.th = NULL;
146   ok = 42;
147 }
148
149
150 static void
151 connect_notify (void *cls,
152                 const struct GNUNET_PeerIdentity *peer,
153                 struct GNUNET_TIME_Relative latency,
154                 uint32_t distance)
155 {
156   struct PeerContext *pc = cls;
157   GNUNET_assert (pc->connect_status == 0);
158   pc->connect_status = 1;
159   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
160               "Encrypted connection established to peer `%4s'\n",
161               GNUNET_i2s (peer));
162 }
163
164
165 static void
166 disconnect_notify (void *cls,
167                    const struct GNUNET_PeerIdentity *peer)
168 {
169   struct PeerContext *pc = cls;
170   pc->connect_status = 0;
171   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
172               "Encrypted connection to `%4s' cut\n", GNUNET_i2s (peer));
173 }
174
175
176 static int
177 inbound_notify (void *cls,
178                 const struct GNUNET_PeerIdentity *other,
179                 const struct GNUNET_MessageHeader *message,
180                 struct GNUNET_TIME_Relative latency,
181                 uint32_t distance)
182 {
183 #if VERBOSE
184   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
185               "Core provides inbound data from `%4s'.\n", GNUNET_i2s (other));
186 #endif
187   return GNUNET_OK;
188 }
189
190
191 static int
192 outbound_notify (void *cls,
193                  const struct GNUNET_PeerIdentity *other,
194                  const struct GNUNET_MessageHeader *message,
195                  struct GNUNET_TIME_Relative latency,
196                  uint32_t distance)
197 {
198 #if VERBOSE
199   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
200               "Core notifies about outbound data for `%4s'.\n",
201               GNUNET_i2s (other));
202 #endif
203   return GNUNET_OK;
204 }
205
206
207 static GNUNET_SCHEDULER_TaskIdentifier err_task;
208
209
210 static size_t
211 transmit_ready (void *cls, size_t size, void *buf);
212
213 static int tr_n;
214
215
216 static int
217 process_mtype (void *cls,
218                const struct GNUNET_PeerIdentity *peer,
219                const struct GNUNET_MessageHeader *message,
220                struct GNUNET_TIME_Relative latency,
221                uint32_t distance)
222 {
223   static int n;
224   unsigned int s;
225   const struct TestMessage *hdr;
226
227   hdr = (const struct TestMessage*) message;
228   s = get_size (n);
229   if (MTYPE != ntohs (message->type))
230     return GNUNET_SYSERR;
231   if (ntohs (message->size) != s)
232     {
233       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
234                   "Expected message %u of size %u, got %u bytes of message %u\n",
235                   n, s,
236                   ntohs (message->size),
237                   ntohl (hdr->num));
238       GNUNET_SCHEDULER_cancel (sched, err_task);
239       err_task = GNUNET_SCHEDULER_add_now (sched, &terminate_task_error, NULL);
240       return GNUNET_SYSERR;
241     }
242   if (ntohl (hdr->num) != n)
243     {
244       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
245                   "Expected message %u of size %u, got %u bytes of message %u\n",
246                   n, s,
247                   ntohs (message->size),
248                   ntohl (hdr->num));
249       GNUNET_SCHEDULER_cancel (sched, err_task);
250       err_task = GNUNET_SCHEDULER_add_now (sched, &terminate_task_error, NULL);
251       return GNUNET_SYSERR;
252     }
253 #if VERBOSE
254   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
255               "Got message %u of size %u\n",
256               ntohl (hdr->num),
257               ntohs (message->size));         
258 #endif
259   n++;
260   if (0 == (n % (TOTAL_MSGS/100)))
261     fprintf (stderr, ".");
262   if (n == TOTAL_MSGS)
263     {
264       GNUNET_SCHEDULER_cancel (sched, err_task);
265       GNUNET_SCHEDULER_add_now (sched, &terminate_task, NULL);
266     }
267   else
268     {
269       if (n == tr_n)
270         GNUNET_break (NULL != 
271                       GNUNET_CORE_notify_transmit_ready (p1.ch,
272                                                          0,
273                                                          FAST_TIMEOUT,
274                                                          &p2.id,
275                                                          sizeof (struct GNUNET_MessageHeader),
276                                                          &transmit_ready, &p1));
277     }
278   return GNUNET_OK;
279 }
280
281
282 static struct GNUNET_CORE_MessageHandler handlers[] = {
283   {&process_mtype, MTYPE, 0},
284   {NULL, 0, 0}
285 };
286
287
288 static size_t
289 transmit_ready (void *cls, size_t size, void *buf)
290 {
291   char *cbuf = buf;
292   struct TestMessage hdr;
293   unsigned int s;
294   unsigned int ret;
295
296   GNUNET_assert (size <= GNUNET_CONSTANTS_MAX_ENCRYPTED_MESSAGE_SIZE); 
297   if (buf == NULL)
298     {
299       if (p1.ch != NULL)
300         GNUNET_break (NULL != 
301                       GNUNET_CORE_notify_transmit_ready (p1.ch,
302                                                          0,
303                                                          FAST_TIMEOUT,
304                                                          &p2.id,
305                                                          sizeof (struct GNUNET_MessageHeader),
306                                                          &transmit_ready, &p1));
307       return 0;
308     }
309   GNUNET_assert (tr_n < TOTAL_MSGS);
310   ret = 0;
311   s = get_size (tr_n);
312   GNUNET_assert (size >= s);
313   GNUNET_assert (buf != NULL);
314   cbuf = buf;
315   do
316     {
317 #if VERBOSE
318       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
319                   "Sending message %u of size %u at offset %u\n",
320                   tr_n,
321                   s,
322                   ret);
323 #endif
324       hdr.header.size = htons (s);
325       hdr.header.type = htons (MTYPE);
326       hdr.num = htonl (tr_n);
327       memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage));
328       ret += sizeof (struct TestMessage);
329       memset (&cbuf[ret], tr_n, s - sizeof (struct TestMessage));
330       ret += s - sizeof (struct TestMessage);
331       tr_n++;
332       s = get_size (tr_n);
333       if (0 == GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16))
334         break; /* sometimes pack buffer full, sometimes not */
335     }
336   while (size - ret >= s);
337   GNUNET_SCHEDULER_cancel (sched, err_task);
338   err_task = 
339     GNUNET_SCHEDULER_add_delayed (sched,
340                                   TIMEOUT,
341                                   &terminate_task_error, 
342                                   NULL);
343   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
344               "Returning total message block of size %u\n",
345               ret);
346   total_bytes += ret;
347   return ret;
348 }
349
350
351
352 static void
353 init_notify (void *cls,
354              struct GNUNET_CORE_Handle *server,
355              const struct GNUNET_PeerIdentity *my_identity,
356              const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
357 {
358   struct PeerContext *p = cls;
359
360   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
361               "Connection to CORE service of `%4s' established\n",
362               GNUNET_i2s (my_identity));
363   GNUNET_assert (server != NULL);
364   p->id = *my_identity;
365   p->ch = server;
366   if (cls == &p1)
367     {
368       GNUNET_assert (ok == 2);
369       OKPP;
370       /* connect p2 */
371       GNUNET_CORE_connect (sched,
372                            p2.cfg,
373                            TIMEOUT,
374                            &p2,
375                            &init_notify,                         
376                            &connect_notify,
377                            &disconnect_notify,
378                            &inbound_notify,
379                            GNUNET_YES,
380                            &outbound_notify, GNUNET_YES, handlers);
381     }
382   else
383     {
384       GNUNET_assert (ok == 3);
385       OKPP;
386       GNUNET_assert (cls == &p2);
387       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
388                   "Asking core (1) for transmission to peer `%4s'\n",
389                   GNUNET_i2s (&p2.id));
390       err_task = 
391         GNUNET_SCHEDULER_add_delayed (sched,
392                                       TIMEOUT,
393                                       &terminate_task_error, 
394                                       NULL);
395       start_time = GNUNET_TIME_absolute_get ();
396       GNUNET_break (NULL != 
397                     GNUNET_CORE_notify_transmit_ready (p1.ch,
398                                                        0,
399                                                        TIMEOUT,
400                                                        &p2.id,
401                                                        sizeof (struct GNUNET_MessageHeader),
402                                                        &transmit_ready, &p1));
403     }
404 }
405
406
407 static void
408 process_hello (void *cls,
409                const struct GNUNET_MessageHeader *message)
410 {
411   struct PeerContext *p = cls;
412
413   GNUNET_TRANSPORT_get_hello_cancel (p->th, &process_hello, p);
414   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
415               "Received (my) `%s' from transport service\n",
416               "HELLO");
417   GNUNET_assert (message != NULL);
418   p->hello = GNUNET_malloc (ntohs (message->size));
419   memcpy (p->hello, message, ntohs (message->size));
420   if ((p == &p1) && (p2.th != NULL))
421     GNUNET_TRANSPORT_offer_hello (p2.th, message);
422   if ((p == &p2) && (p1.th != NULL))
423     GNUNET_TRANSPORT_offer_hello (p1.th, message);
424
425   if ((p == &p1) && (p2.hello != NULL))
426     GNUNET_TRANSPORT_offer_hello (p1.th, p2.hello);
427   if ((p == &p2) && (p1.hello != NULL))
428     GNUNET_TRANSPORT_offer_hello (p2.th, p1.hello);
429 }
430
431
432
433 static void
434 setup_peer (struct PeerContext *p, const char *cfgname)
435 {
436   p->cfg = GNUNET_CONFIGURATION_create ();
437 #if START_ARM
438   p->arm_pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
439                                         "gnunet-service-arm",
440 #if VERBOSE
441                                         "-L", "DEBUG",
442 #endif
443                                         "-c", cfgname, NULL);
444 #endif
445   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
446   p->th = GNUNET_TRANSPORT_connect (sched, p->cfg, p, NULL, NULL, NULL);
447   GNUNET_assert (p->th != NULL);
448   GNUNET_TRANSPORT_get_hello (p->th, &process_hello, p);
449 }
450
451
452 static void
453 run (void *cls,
454      struct GNUNET_SCHEDULER_Handle *s,
455      char *const *args,
456      const char *cfgfile,
457      const struct GNUNET_CONFIGURATION_Handle *cfg)
458 {
459   GNUNET_assert (ok == 1);
460   OKPP;
461   sched = s;
462   setup_peer (&p1, "test_core_api_peer1.conf");
463   setup_peer (&p2, "test_core_api_peer2.conf");
464   GNUNET_CORE_connect (sched,
465                        p1.cfg,
466                        TIMEOUT,
467                        &p1,
468                        &init_notify,
469                        &connect_notify,
470                        &disconnect_notify,
471                        &inbound_notify,
472                        GNUNET_YES, &outbound_notify, GNUNET_YES, handlers);
473 }
474
475
476 static void
477 stop_arm (struct PeerContext *p)
478 {
479 #if START_ARM
480   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
481     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
482   if (GNUNET_OS_process_wait(p->arm_pid) != GNUNET_OK)
483     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
484   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
485               "ARM process %u stopped\n", p->arm_pid);
486 #endif
487   GNUNET_CONFIGURATION_destroy (p->cfg);
488 }
489
490 static int
491 check ()
492 {
493   char *const argv[] = { "test-core-api-reliability",
494     "-c",
495     "test_core_api_data.conf",
496 #if VERBOSE
497     "-L", "DEBUG",
498 #endif
499     NULL
500   };
501   struct GNUNET_GETOPT_CommandLineOption options[] = {
502     GNUNET_GETOPT_OPTION_END
503   };
504   ok = 1;
505   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
506                       argv, "test-core-api-reliability", "nohelp", options, &run, &ok);
507   stop_arm (&p1);
508   stop_arm (&p2);
509   return ok;
510 }
511
512 int
513 main (int argc, char *argv[])
514 {
515   int ret;
516
517   GNUNET_log_setup ("test-core-api",
518 #if VERBOSE
519                     "DEBUG",
520 #else
521                     "WARNING",
522 #endif
523                     NULL);
524   ret = check ();
525   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-1"); 
526   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-peer-2");
527
528   return ret;
529 }
530
531 /* end of test_core_api_reliability.c */