40ad626a2733e21c51acef5b294f9bf9fb75bf4b
[oweals/gnunet.git] / src / cadet / test_cadet.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 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 3, 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 cadet/test_cadet.c
22  *
23  * @brief Test for the cadet service: retransmission of traffic.
24  */
25 #include <stdio.h>
26 #include "platform.h"
27 #include "cadet_test_lib.h"
28 #include "gnunet_cadet_service.h"
29 #include "gnunet_statistics_service.h"
30 #include <gauger.h>
31
32
33 /**
34  * How namy messages to send
35  */
36 #define TOTAL_PACKETS 40000
37
38 /**
39  * How long until we give up on connecting the peers?
40  */
41 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
42
43 /**
44  * Time to wait for stuff that should be rather fast
45  */
46 #define SHORT_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
47
48 /**
49  * DIFFERENT TESTS TO RUN
50  */
51 #define SETUP 0
52 #define FORWARD 1
53 #define KEEPALIVE 2
54 #define SPEED 3
55 #define SPEED_ACK 4
56 #define SPEED_REL 8
57 #define P2P_SIGNAL 10
58
59 /**
60  * Which test are we running?
61  */
62 static int test;
63
64 /**
65  * String with test name
66  */
67 char *test_name;
68
69 /**
70  * Flag to send traffic leaf->root in speed tests to test BCK_ACK logic.
71  */
72 static int test_backwards = GNUNET_NO;
73
74 /**
75  * How many events have happened
76  */
77 static int ok;
78
79 /**
80  * Number of events expected to conclude the test successfully.
81  */
82 int ok_goal;
83
84 /**
85  * Size of each test packet
86  */
87 size_t size_payload = sizeof (struct GNUNET_MessageHeader) + sizeof (uint32_t);
88
89 /**
90  * Operation to get peer ids.
91  */
92 struct GNUNET_TESTBED_Operation *t_op[2];
93
94 /**
95  * Peer ids.
96  */
97 struct GNUNET_PeerIdentity *p_id[2];
98
99 /**
100  * Peer ids counter.
101  */
102 unsigned int p_ids;
103
104 /**
105  * Is the setup initialized?
106  */
107 static int initialized;
108
109 /**
110  * Number of payload packes sent.
111  */
112 static int data_sent;
113
114 /**
115  * Number of payload packets received.
116  */
117 static int data_received;
118
119 /**
120  * Number of payload packed acknowledgements sent.
121  */
122 static int ack_sent;
123
124 /**
125  * Number of payload packed explicitly (app level) acknowledged.
126  */
127 static int ack_received;
128
129 /**
130  * Total number of peers asked to run.
131  */
132 static unsigned long long peers_requested;
133
134 /**
135  * Number of currently running peers (should be same as @c peers_requested).
136  */
137 static unsigned long long peers_running;
138
139 /**
140  * Test context (to shut down).
141  */
142 struct GNUNET_CADET_TEST_Context *test_ctx;
143
144 /**
145  * Task called to disconnect peers.
146  */
147 static struct GNUNET_SCHEDULER_Task * disconnect_task;
148
149 /**
150  * Task To perform tests
151  */
152 static struct GNUNET_SCHEDULER_Task * test_task;
153
154 /**
155  * Task called to shutdown test.
156  */
157 static struct GNUNET_SCHEDULER_Task * shutdown_handle;
158
159 /**
160  * Cadet handle for the root peer
161  */
162 static struct GNUNET_CADET_Handle *h1;
163
164 /**
165  * Cadet handle for the first leaf peer
166  */
167 static struct GNUNET_CADET_Handle *h2;
168
169 /**
170  * Channel handle for the root peer
171  */
172 static struct GNUNET_CADET_Channel *ch;
173
174 /**
175  * Channel handle for the dest peer
176  */
177 static struct GNUNET_CADET_Channel *incoming_ch;
178
179 /**
180  * Time we started the data transmission (after channel has been established
181  * and initilized).
182  */
183 static struct GNUNET_TIME_Absolute start_time;
184
185 /**
186  * Peers handle.
187  */
188 static struct GNUNET_TESTBED_Peer **testbed_peers;
189
190 /**
191  * Statistics operation handle.
192  */
193 static struct GNUNET_TESTBED_Operation *stats_op;
194
195 /**
196  * Keepalives sent.
197  */
198 static unsigned int ka_sent;
199
200 /**
201  * Keepalives received.
202  */
203 static unsigned int ka_received;
204
205
206 /**
207  * Get the client number considered as the "target" or "receiver", depending on
208  * the test type and size.
209  *
210  * @return Peer # of the target client, either 0 (for backward tests) or
211  *         the last peer in the line (for other tests).
212  */
213 static unsigned int
214 get_expected_target ()
215 {
216   if (SPEED == test && GNUNET_YES == test_backwards)
217     return 0;
218   else
219     return peers_requested - 1;
220 }
221
222 /**
223  * Show the results of the test (banwidth acheived) and log them to GAUGER
224  */
225 static void
226 show_end_data (void)
227 {
228   static struct GNUNET_TIME_Absolute end_time;
229   static struct GNUNET_TIME_Relative total_time;
230
231   end_time = GNUNET_TIME_absolute_get();
232   total_time = GNUNET_TIME_absolute_get_difference(start_time, end_time);
233   FPRINTF (stderr, "\nResults of test \"%s\"\n", test_name);
234   FPRINTF (stderr, "Test time %s\n",
235            GNUNET_STRINGS_relative_time_to_string (total_time,
236                                                    GNUNET_YES));
237   FPRINTF (stderr, "Test bandwidth: %f kb/s\n",
238            4 * TOTAL_PACKETS * 1.0 / (total_time.rel_value_us / 1000)); // 4bytes * ms
239   FPRINTF (stderr, "Test throughput: %f packets/s\n\n",
240            TOTAL_PACKETS * 1000.0 / (total_time.rel_value_us / 1000)); // packets * ms
241   GAUGER ("CADET", test_name,
242           TOTAL_PACKETS * 1000.0 / (total_time.rel_value_us / 1000),
243           "packets/s");
244 }
245
246
247 /**
248  * Shut down peergroup, clean up.
249  *
250  * @param cls Closure (unused).
251  * @param tc Task Context.
252  */
253 static void
254 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
255 {
256   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Ending test.\n");
257   shutdown_handle = NULL;
258 }
259
260
261 /**
262  * Disconnect from cadet services af all peers, call shutdown.
263  *
264  * @param cls Closure (unused).
265  * @param tc Task Context.
266  */
267 static void
268 disconnect_cadet_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
269 {
270   long line = (long) cls;
271   unsigned int i;
272
273   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
274     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
275                 "disconnecting cadet peers due to SHUTDOWN! called from %ld\n",
276                 line);
277   else
278     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
279                 "disconnecting cadet service of peers, called from line %ld\n",
280                 line);
281   disconnect_task = NULL;
282   for (i = 0; i < 2; i++)
283   {
284     GNUNET_TESTBED_operation_done (t_op[i]);
285   }
286   if (NULL != ch)
287   {
288     GNUNET_CADET_channel_destroy (ch);
289     ch = NULL;
290   }
291   if (NULL != incoming_ch)
292   {
293     GNUNET_CADET_channel_destroy (incoming_ch);
294     incoming_ch = NULL;
295   }
296   GNUNET_CADET_TEST_cleanup (test_ctx);
297   if (NULL != shutdown_handle)
298   {
299     GNUNET_SCHEDULER_cancel (shutdown_handle);
300   }
301   shutdown_handle = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
302 }
303
304
305 /**
306  * Abort test: schedule disconnect and shutdown immediately
307  *
308  * @param line Line in the code the abort is requested from (__LINE__).
309  */
310 static void
311 abort_test (long line)
312 {
313   if (disconnect_task != NULL)
314   {
315     GNUNET_SCHEDULER_cancel (disconnect_task);
316     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
317                                                 (void *) line);
318   }
319 }
320
321 /**
322  * Transmit ready callback.
323  *
324  * @param cls Closure (message type).
325  * @param size Size of the tranmist buffer.
326  * @param buf Pointer to the beginning of the buffer.
327  *
328  * @return Number of bytes written to buf.
329  */
330 static size_t
331 tmt_rdy (void *cls, size_t size, void *buf);
332
333
334 /**
335  * Task to schedule a new data transmission.
336  *
337  * @param cls Closure (peer #).
338  * @param tc Task Context.
339  */
340 static void
341 data_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
342 {
343   struct GNUNET_CADET_TransmitHandle *th;
344   struct GNUNET_CADET_Channel *channel;
345   long src;
346
347   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
348     return;
349
350   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Data task\n");
351   if (GNUNET_YES == test_backwards)
352   {
353     channel = incoming_ch;
354     src = peers_requested - 1;
355   }
356   else
357   {
358     channel = ch;
359     src = 0;
360   }
361   th = GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
362                                            GNUNET_TIME_UNIT_FOREVER_REL,
363                                            size_payload + data_sent,
364                                            &tmt_rdy, (void *) src);
365   if (NULL == th)
366   {
367     unsigned long i = (unsigned long) cls;
368
369     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Retransmission\n");
370     if (0 == i)
371     {
372       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "  in 1 ms\n");
373       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MILLISECONDS,
374                                     &data_task, (void *) 1L);
375     }
376     else
377     {
378       i++;
379       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "in %u ms\n", i);
380       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(
381                                       GNUNET_TIME_UNIT_MILLISECONDS,
382                                       i),
383                                     &data_task, (void *) i);
384     }
385   }
386 }
387
388
389 /**
390  * Transmit ready callback
391  *
392  * @param cls Closure (peer # which is sending the data).
393  * @param size Size of the buffer we have.
394  * @param buf Buffer to copy data to.
395  */
396 size_t
397 tmt_rdy (void *cls, size_t size, void *buf)
398 {
399   struct GNUNET_MessageHeader *msg = buf;
400   size_t msg_size;
401   uint32_t *data;
402   long id = (long) cls;
403   unsigned int counter;
404
405   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tmt_rdy on %ld, filling buffer\n", id);
406   counter = get_expected_target () == id ? ack_sent : data_sent;
407   msg_size = size_payload + counter;
408   if (size < msg_size || NULL == buf)
409   {
410     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
411                 "size %u, buf %p, data_sent %u, ack_received %u\n",
412                 size, buf, data_sent, ack_received);
413     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ok %u, ok goal %u\n", ok, ok_goal);
414     GNUNET_break (ok >= ok_goal - 2);
415
416     return 0;
417   }
418   msg->size = htons (size);
419   msg->type = htons (1);
420   data = (uint32_t *) &msg[1];
421   *data = htonl (counter);
422   if (GNUNET_NO == initialized)
423   {
424     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "sending initializer\n");
425     msg_size = size_payload + 1000;
426     if (SPEED_ACK == test)
427       data_sent++;
428   }
429   else if (SPEED == test || SPEED_ACK == test)
430   {
431     if (get_expected_target() == id)
432       ack_sent++;
433     else
434       data_sent++;
435     counter++;
436     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " Sent message %d size %u\n",
437                 counter, msg_size);
438     if (data_sent < TOTAL_PACKETS && SPEED == test)
439     {
440       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Scheduling message %d\n",
441                   counter + 1);
442       GNUNET_SCHEDULER_add_now (&data_task, NULL);
443     }
444   }
445
446   return msg_size;
447 }
448
449
450 /**
451  * Function is called whenever a message is received.
452  *
453  * @param cls closure (set from GNUNET_CADET_connect)
454  * @param channel connection to the other end
455  * @param channel_ctx place to store local state associated with the channel
456  * @param message the actual message
457  * @return GNUNET_OK to keep the connection open,
458  *         GNUNET_SYSERR to close it (signal serious error)
459  */
460 int
461 data_callback (void *cls, struct GNUNET_CADET_Channel *channel,
462                void **channel_ctx,
463                const struct GNUNET_MessageHeader *message)
464 {
465   long client = (long) cls;
466   long expected_target_client;
467   uint32_t *data;
468   uint32_t payload;
469   unsigned int counter;
470
471   ok++;
472   counter = get_expected_target () == client ? data_received : ack_received;
473
474   GNUNET_CADET_receive_done (channel);
475
476   if ((ok % 20) == 0)
477   {
478     if (NULL != disconnect_task)
479     {
480       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " reschedule timeout\n");
481       GNUNET_SCHEDULER_cancel (disconnect_task);
482       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
483                                                       &disconnect_cadet_peers,
484                                                       (void *) __LINE__);
485     }
486   }
487
488   switch (client)
489   {
490   case 0L:
491     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Root client got a message!\n");
492     break;
493   case 1L:
494   case 4L:
495     GNUNET_assert (client == peers_requested - 1);
496     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Leaf client %li got a message.\n",
497                 client);
498     break;
499   default:
500     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Client %li not valid.\n", client);
501     GNUNET_abort ();
502   }
503   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: (%d/%d)\n", ok, ok_goal);
504   data = (uint32_t *) &message[1];
505   payload = ntohl (*data);
506   if (payload == counter)
507   {
508     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " payload as expected: %u\n", payload);
509   }
510   else
511   {
512     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, " payload %u, expected: %u\n",
513                 payload, counter);
514   }
515   expected_target_client = get_expected_target ();
516
517   if (GNUNET_NO == initialized)
518   {
519     initialized = GNUNET_YES;
520     start_time = GNUNET_TIME_absolute_get ();
521     if (SPEED == test)
522     {
523       GNUNET_assert (peers_requested - 1 == client);
524       GNUNET_SCHEDULER_add_now (&data_task, NULL);
525       return GNUNET_OK;
526     }
527   }
528
529   counter++;
530   if (client == expected_target_client) /* Normally 4 */
531   {
532     data_received++;
533     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received data %u\n", data_received);
534     if (SPEED != test || (ok_goal - 2) == ok)
535     {
536       /* Send ACK */
537       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
538                                           GNUNET_TIME_UNIT_FOREVER_REL,
539                                           size_payload + ack_sent, &tmt_rdy,
540                                           (void *) client);
541       return GNUNET_OK;
542     }
543     else
544     {
545       if (data_received < TOTAL_PACKETS)
546         return GNUNET_OK;
547     }
548   }
549   else /* Normally 0 */
550   {
551     if (SPEED_ACK == test || SPEED == test)
552     {
553       ack_received++;
554       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received ack %u\n", ack_received);
555       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
556                                           GNUNET_TIME_UNIT_FOREVER_REL,
557                                           size_payload + data_sent, &tmt_rdy,
558                                           (void *) client);
559       if (ack_received < TOTAL_PACKETS && SPEED != test)
560         return GNUNET_OK;
561       if (ok == 2 && SPEED == test)
562         return GNUNET_OK;
563       show_end_data();
564     }
565     if (test == P2P_SIGNAL)
566     {
567       GNUNET_CADET_channel_destroy (incoming_ch);
568       incoming_ch = NULL;
569     }
570     else
571     {
572       GNUNET_CADET_channel_destroy (ch);
573       ch = NULL;
574     }
575   }
576
577   if (NULL != disconnect_task)
578   {
579     GNUNET_SCHEDULER_cancel (disconnect_task);
580     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
581                                                     &disconnect_cadet_peers,
582                                                     (void *) __LINE__);
583   }
584
585   return GNUNET_OK;
586 }
587
588
589 /**
590  * Stats callback. Finish the stats testbed operation and when all stats have
591  * been iterated, shutdown the test.
592  *
593  * @param cls closure
594  * @param op the operation that has been finished
595  * @param emsg error message in case the operation has failed; will be NULL if
596  *          operation has executed successfully.
597  */
598 static void
599 stats_cont (void *cls, struct GNUNET_TESTBED_Operation *op, const char *emsg)
600 {
601   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "stats_cont for peer %u\n", cls);
602   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " KA sent: %u, KA received: %u\n",
603               ka_sent, ka_received);
604   if (ka_sent < 2 || ka_sent > ka_received + 1)
605     ok--;
606   GNUNET_TESTBED_operation_done (stats_op);
607
608   if (NULL != disconnect_task)
609     GNUNET_SCHEDULER_cancel (disconnect_task);
610   disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
611                                               (void *) __LINE__);
612
613 }
614
615
616 /**
617  * Process statistic values.
618  *
619  * @param cls closure
620  * @param peer the peer the statistic belong to
621  * @param subsystem name of subsystem that created the statistic
622  * @param name the name of the datum
623  * @param value the current value
624  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
625  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
626  */
627 static int
628 stats_iterator (void *cls, const struct GNUNET_TESTBED_Peer *peer,
629                 const char *subsystem, const char *name,
630                 uint64_t value, int is_persistent)
631 {
632   static const char *s_sent = "# keepalives sent";
633   static const char *s_recv = "# keepalives received";
634   uint32_t i;
635
636   i = GNUNET_TESTBED_get_index (peer);
637   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  %u - %s [%s]: %llu\n",
638               i, subsystem, name, value);
639   if (0 == strncmp (s_sent, name, strlen (s_sent)) && 0 == i)
640     ka_sent = value;
641
642   if (0 == strncmp(s_recv, name, strlen (s_recv)) && peers_requested - 1 == i)
643     ka_received = value;
644
645   return GNUNET_OK;
646 }
647
648
649 /**
650  * Task check that keepalives were sent and received.
651  *
652  * @param cls Closure (NULL).
653  * @param tc Task Context.
654  */
655 static void
656 check_keepalives (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
657 {
658   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
659     return;
660
661   disconnect_task = NULL;
662   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "check keepalives\n");
663   GNUNET_CADET_channel_destroy (ch);
664   stats_op = GNUNET_TESTBED_get_statistics (peers_running, testbed_peers,
665                                             "cadet", NULL,
666                                             stats_iterator, stats_cont, NULL);
667 }
668
669
670 /**
671  * Handlers, for diverse services
672  */
673 static struct GNUNET_CADET_MessageHandler handlers[] = {
674   {&data_callback, 1, sizeof (struct GNUNET_MessageHeader)},
675   {NULL, 0, 0}
676 };
677
678
679 /**
680  * Method called whenever another peer has added us to a channel
681  * the other peer initiated.
682  *
683  * @param cls Closure.
684  * @param channel New handle to the channel.
685  * @param initiator Peer that started the channel.
686  * @param port Port this channel is connected to.
687  * @param options channel option flags
688  * @return Initial channel context for the channel
689  *         (can be NULL -- that's not an error).
690  */
691 static void *
692 incoming_channel (void *cls, struct GNUNET_CADET_Channel *channel,
693                  const struct GNUNET_PeerIdentity *initiator,
694                  uint32_t port, enum GNUNET_CADET_ChannelOption options)
695 {
696   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
697               "Incoming channel from %s to peer %d\n",
698               GNUNET_i2s (initiator), (long) cls);
699   ok++;
700   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
701   if ((long) cls == peers_requested - 1)
702     incoming_ch = channel;
703   else
704   {
705     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
706                 "Incoming channel for unknown client %lu\n", (long) cls);
707     GNUNET_break(0);
708   }
709   if (NULL != disconnect_task)
710   {
711     GNUNET_SCHEDULER_cancel (disconnect_task);
712     if (KEEPALIVE == test)
713     {
714       struct GNUNET_TIME_Relative delay;
715       delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS , 5);
716       disconnect_task =
717         GNUNET_SCHEDULER_add_delayed (delay, &check_keepalives, NULL);
718     }
719     else
720       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
721                                                       &disconnect_cadet_peers,
722                                                       (void *) __LINE__);
723   }
724
725   return NULL;
726 }
727
728 /**
729  * Function called whenever an inbound channel is destroyed.  Should clean up
730  * any associated state.
731  *
732  * @param cls closure (set from GNUNET_CADET_connect)
733  * @param channel connection to the other end (henceforth invalid)
734  * @param channel_ctx place where local state associated
735  *                   with the channel is stored
736  */
737 static void
738 channel_cleaner (void *cls, const struct GNUNET_CADET_Channel *channel,
739                  void *channel_ctx)
740 {
741   long i = (long) cls;
742
743   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
744               "Incoming channel disconnected at peer %ld\n", i);
745   if (peers_running - 1 == i)
746   {
747     ok++;
748     GNUNET_break (channel == incoming_ch);
749     incoming_ch = NULL;
750   }
751   else if (0L == i)
752   {
753     if (P2P_SIGNAL == test)
754     {
755       ok ++;
756     }
757     GNUNET_break (channel == ch);
758     ch = NULL;
759   }
760   else
761     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
762                 "Unknown peer! %d\n", i);
763   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
764
765   if (NULL != disconnect_task)
766   {
767     GNUNET_SCHEDULER_cancel (disconnect_task);
768     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
769                                                 (void *) __LINE__);
770   }
771
772   return;
773 }
774
775
776 /**
777  * START THE TESTCASE ITSELF, AS WE ARE CONNECTED TO THE CADET SERVICES.
778  *
779  * Testcase continues when the root receives confirmation of connected peers,
780  * on callback funtion ch.
781  *
782  * @param cls Closure (unsued).
783  * @param tc Task Context.
784  */
785 static void
786 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
787 {
788   enum GNUNET_CADET_ChannelOption flags;
789
790   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
791     return;
792
793   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test_task\n");
794
795   if (NULL != disconnect_task)
796   {
797     GNUNET_SCHEDULER_cancel (disconnect_task);
798   }
799
800   flags = GNUNET_CADET_OPTION_DEFAULT;
801   if (SPEED_REL == test)
802   {
803     test = SPEED;
804     flags |= GNUNET_CADET_OPTION_RELIABLE;
805   }
806   ch = GNUNET_CADET_channel_create (h1, NULL, p_id[1], 1, flags);
807
808   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
809                                                   &disconnect_cadet_peers,
810                                                   (void *) __LINE__);
811   if (KEEPALIVE == test)
812     return; /* Don't send any data. */
813
814   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending data initializer...\n");
815   data_received = 0;
816   data_sent = 0;
817   ack_received = 0;
818   ack_sent = 0;
819   GNUNET_CADET_notify_transmit_ready (ch, GNUNET_NO,
820                                       GNUNET_TIME_UNIT_FOREVER_REL,
821                                       size_payload + 1000,
822                                       &tmt_rdy, (void *) 0L);
823 }
824
825 /**
826  * Callback to be called when the requested peer information is available
827  *
828  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
829  * @param op the operation this callback corresponds to
830  * @param pinfo the result; will be NULL if the operation has failed
831  * @param emsg error message if the operation has failed;
832  *             NULL if the operation is successfull
833  */
834 static void
835 pi_cb (void *cls,
836        struct GNUNET_TESTBED_Operation *op,
837        const struct GNUNET_TESTBED_PeerInformation *pinfo,
838        const char *emsg)
839 {
840   long i = (long) cls;
841
842   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id callback for %ld\n", i);
843
844   if (NULL == pinfo || NULL != emsg)
845   {
846     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
847     abort_test (__LINE__);
848     return;
849   }
850   p_id[i] = pinfo->result.id;
851   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  id: %s\n", GNUNET_i2s (p_id[i]));
852   p_ids++;
853   if (p_ids < 2)
854     return;
855   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got all IDs, starting test\n");
856   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
857                                             &do_test, NULL);
858 }
859
860 /**
861  * test main: start test when all peers are connected
862  *
863  * @param cls Closure.
864  * @param ctx Argument to give to GNUNET_CADET_TEST_cleanup on test end.
865  * @param num_peers Number of peers that are running.
866  * @param peers Array of peers.
867  * @param cadetes Handle to each of the CADETs of the peers.
868  */
869 static void
870 tmain (void *cls,
871        struct GNUNET_CADET_TEST_Context *ctx,
872        unsigned int num_peers,
873        struct GNUNET_TESTBED_Peer **peers,
874        struct GNUNET_CADET_Handle **cadets)
875 {
876   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
877   ok = 0;
878   test_ctx = ctx;
879   peers_running = num_peers;
880   GNUNET_assert (peers_running == peers_requested);
881   testbed_peers = peers;
882   h1 = cadets[0];
883   h2 = cadets[num_peers - 1];
884   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
885                                                   &disconnect_cadet_peers,
886                                                   (void *) __LINE__);
887   shutdown_handle = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
888                                                   &shutdown_task, NULL);
889   t_op[0] = GNUNET_TESTBED_peer_get_information (peers[0],
890                                                  GNUNET_TESTBED_PIT_IDENTITY,
891                                                  &pi_cb, (void *) 0L);
892   t_op[1] = GNUNET_TESTBED_peer_get_information (peers[num_peers - 1],
893                                                  GNUNET_TESTBED_PIT_IDENTITY,
894                                                  &pi_cb, (void *) 1L);
895   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
896 }
897
898
899 /**
900  * Main: start test
901  */
902 int
903 main (int argc, char *argv[])
904 {
905   initialized = GNUNET_NO;
906   static uint32_t ports[2];
907   const char *config_file;
908
909   GNUNET_log_setup ("test", "DEBUG", NULL);
910   config_file = "test_cadet.conf";
911
912   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
913
914   /* Find out requested size */
915   if (strstr (argv[0], "_2_") != NULL)
916   {
917     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DIRECT CONNECTIONs\n");
918     peers_requested = 2;
919   }
920   else if (strstr (argv[0], "_5_") != NULL)
921   {
922     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "5 PEER LINE\n");
923     peers_requested = 5;
924   }
925   else
926   {
927     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "SIZE UNKNOWN, USING 2\n");
928     peers_requested = 2;
929   }
930
931   /* Find out requested test */
932   if (strstr (argv[0], "_forward") != NULL)
933   {
934     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
935     test = FORWARD;
936     test_name = "unicast";
937     ok_goal = 4;
938   }
939   else if (strstr (argv[0], "_signal") != NULL)
940   {
941     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
942     test = P2P_SIGNAL;
943     test_name = "signal";
944     ok_goal = 4;
945   }
946   else if (strstr (argv[0], "_speed_ack") != NULL)
947   {
948     /* Test is supposed to generate the following callbacks:
949      * 1 incoming channel (@dest)
950      * TOTAL_PACKETS received data packet (@dest)
951      * TOTAL_PACKETS received data packet (@orig)
952      * 1 received channel destroy (@dest)
953      */
954     ok_goal = TOTAL_PACKETS * 2 + 2;
955     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
956     test = SPEED_ACK;
957     test_name = "speed ack";
958   }
959   else if (strstr (argv[0], "_speed") != NULL)
960   {
961     /* Test is supposed to generate the following callbacks:
962      * 1 incoming channel (@dest)
963      * 1 initial packet (@dest)
964      * TOTAL_PACKETS received data packet (@dest)
965      * 1 received data packet (@orig)
966      * 1 received channel destroy (@dest)
967      */
968     ok_goal = TOTAL_PACKETS + 4;
969     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
970     if (strstr (argv[0], "_reliable") != NULL)
971     {
972       test = SPEED_REL;
973       test_name = "speed reliable";
974       config_file = "test_cadet_drop.conf";
975     }
976     else
977     {
978       test = SPEED;
979       test_name = "speed";
980     }
981   }
982   else if (strstr (argv[0], "_keepalive") != NULL)
983   {
984     test = KEEPALIVE;
985     /* Test is supposed to generate the following callbacks:
986      * 1 incoming channel (@dest)
987      * [wait]
988      * 1 received channel destroy (@dest)
989      */
990     ok_goal = 2;
991   }
992   else
993   {
994     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
995     test = SETUP;
996     ok_goal = 0;
997   }
998
999   if (strstr (argv[0], "backwards") != NULL)
1000   {
1001     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "BACKWARDS (LEAF TO ROOT)\n");
1002     test_backwards = GNUNET_YES;
1003     GNUNET_asprintf (&test_name, "backwards %s", test_name);
1004   }
1005
1006   p_ids = 0;
1007   ports[0] = 1;
1008   ports[1] = 0;
1009   GNUNET_CADET_TEST_run ("test_cadet_small",
1010                         config_file,
1011                         peers_requested,
1012                         &tmain,
1013                         NULL, /* tmain cls */
1014                         &incoming_channel,
1015                         &channel_cleaner,
1016                         handlers,
1017                         ports);
1018
1019   if (ok_goal > ok)
1020   {
1021     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1022                 "FAILED! (%d/%d)\n", ok, ok_goal);
1023     return 1;
1024   }
1025   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
1026   return 0;
1027 }
1028
1029 /* end of test_cadet.c */
1030