38ba5de58ba4dbd610bce22b3da4d8652598bf0d
[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 100
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 GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
148
149 /**
150  * Task To perform tests
151  */
152 static GNUNET_SCHEDULER_TaskIdentifier test_task;
153
154 /**
155  * Task called to shutdown test.
156  */
157 static GNUNET_SCHEDULER_TaskIdentifier 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 = GNUNET_SCHEDULER_NO_TASK;
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 = GNUNET_SCHEDULER_NO_TASK;
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 (GNUNET_SCHEDULER_NO_TASK != 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 != GNUNET_SCHEDULER_NO_TASK)
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     if (SPEED_ACK == test)
426       data_sent++;
427   }
428   else if (SPEED == test || SPEED_ACK == test)
429   {
430     if (get_expected_target() == id)
431       ack_sent++;
432     else
433       data_sent++;
434     counter++;
435     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " Sent message %d size %u\n",
436                 counter, msg_size);
437     if (data_sent < TOTAL_PACKETS && SPEED == test)
438     {
439       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Scheduling message %d\n",
440                   counter + 1);
441       GNUNET_SCHEDULER_add_now (&data_task, NULL);
442     }
443   }
444
445   return msg_size;
446 }
447
448
449 /**
450  * Function is called whenever a message is received.
451  *
452  * @param cls closure (set from GNUNET_CADET_connect)
453  * @param channel connection to the other end
454  * @param channel_ctx place to store local state associated with the channel
455  * @param message the actual message
456  * @return GNUNET_OK to keep the connection open,
457  *         GNUNET_SYSERR to close it (signal serious error)
458  */
459 int
460 data_callback (void *cls, struct GNUNET_CADET_Channel *channel,
461                void **channel_ctx,
462                const struct GNUNET_MessageHeader *message)
463 {
464   long client = (long) cls;
465   long expected_target_client;
466   uint32_t *data;
467   uint32_t payload;
468   unsigned int counter;
469
470   ok++;
471   counter = get_expected_target () == client ? data_received : ack_received;
472
473   GNUNET_CADET_receive_done (channel);
474
475   if ((ok % 20) == 0)
476   {
477     if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
478     {
479       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " reschedule timeout\n");
480       GNUNET_SCHEDULER_cancel (disconnect_task);
481       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
482                                                       &disconnect_cadet_peers,
483                                                       (void *) __LINE__);
484     }
485   }
486
487   switch (client)
488   {
489   case 0L:
490     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Root client got a message!\n");
491     break;
492   case 1L:
493   case 4L:
494     GNUNET_assert (client == peers_requested - 1);
495     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Leaf client %li got a message.\n",
496                 client);
497     break;
498   default:
499     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Client %li not valid.\n", client);
500     GNUNET_abort ();
501   }
502   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: (%d/%d)\n", ok, ok_goal);
503   data = (uint32_t *) &message[1];
504   payload = ntohl (*data);
505   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " payload: %u, data_received: %u\n",
506               payload, counter);
507   GNUNET_break (payload == counter);
508   expected_target_client = get_expected_target ();
509
510   if (GNUNET_NO == initialized)
511   {
512     initialized = GNUNET_YES;
513     start_time = GNUNET_TIME_absolute_get ();
514     if (SPEED == test)
515     {
516       GNUNET_assert (peers_requested - 1 == client);
517       GNUNET_SCHEDULER_add_now (&data_task, NULL);
518       return GNUNET_OK;
519     }
520   }
521
522   counter++;
523   if (client == expected_target_client) /* Normally 4 */
524   {
525     data_received++;
526     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received data %u\n", data_received);
527     if (SPEED != test || (ok_goal - 2) == ok)
528     {
529       /* Send ACK */
530       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
531                                           GNUNET_TIME_UNIT_FOREVER_REL,
532                                           size_payload + ack_sent, &tmt_rdy,
533                                           (void *) client);
534       return GNUNET_OK;
535     }
536     else
537     {
538       if (data_received < TOTAL_PACKETS)
539         return GNUNET_OK;
540     }
541   }
542   else /* Normally 0 */
543   {
544     if (SPEED_ACK == test || SPEED == test)
545     {
546       ack_received++;
547       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received ack %u\n", ack_received);
548       GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
549                                           GNUNET_TIME_UNIT_FOREVER_REL,
550                                           size_payload + data_sent, &tmt_rdy,
551                                           (void *) client);
552       if (ack_received < TOTAL_PACKETS && SPEED != test)
553         return GNUNET_OK;
554       if (ok == 2 && SPEED == test)
555         return GNUNET_OK;
556       show_end_data();
557     }
558     if (test == P2P_SIGNAL)
559     {
560       GNUNET_CADET_channel_destroy (incoming_ch);
561       incoming_ch = NULL;
562     }
563     else
564     {
565       GNUNET_CADET_channel_destroy (ch);
566       ch = NULL;
567     }
568   }
569
570   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
571   {
572     GNUNET_SCHEDULER_cancel (disconnect_task);
573     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
574                                                     &disconnect_cadet_peers,
575                                                     (void *) __LINE__);
576   }
577
578   return GNUNET_OK;
579 }
580
581
582 /**
583  * Stats callback. Finish the stats testbed operation and when all stats have
584  * been iterated, shutdown the test.
585  *
586  * @param cls closure
587  * @param op the operation that has been finished
588  * @param emsg error message in case the operation has failed; will be NULL if
589  *          operation has executed successfully.
590  */
591 static void
592 stats_cont (void *cls, struct GNUNET_TESTBED_Operation *op, const char *emsg)
593 {
594   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "stats_cont for peer %u\n", cls);
595   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " KA sent: %u, KA received: %u\n",
596               ka_sent, ka_received);
597   if (ka_sent < 2 || ka_sent > ka_received + 1)
598     ok--;
599   GNUNET_TESTBED_operation_done (stats_op);
600
601   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
602     GNUNET_SCHEDULER_cancel (disconnect_task);
603   disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
604                                               (void *) __LINE__);
605
606 }
607
608
609 /**
610  * Process statistic values.
611  *
612  * @param cls closure
613  * @param peer the peer the statistic belong to
614  * @param subsystem name of subsystem that created the statistic
615  * @param name the name of the datum
616  * @param value the current value
617  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
618  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
619  */
620 static int
621 stats_iterator (void *cls, const struct GNUNET_TESTBED_Peer *peer,
622                 const char *subsystem, const char *name,
623                 uint64_t value, int is_persistent)
624 {
625   static const char *s_sent = "# keepalives sent";
626   static const char *s_recv = "# keepalives received";
627   uint32_t i;
628
629   i = GNUNET_TESTBED_get_index (peer);
630   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  %u - %s [%s]: %llu\n",
631               i, subsystem, name, value);
632   if (0 == strncmp (s_sent, name, strlen (s_sent)) && 0 == i)
633     ka_sent = value;
634
635   if (0 == strncmp(s_recv, name, strlen (s_recv)) && peers_requested - 1 == i)
636     ka_received = value;
637
638   return GNUNET_OK;
639 }
640
641
642 /**
643  * Task check that keepalives were sent and received.
644  *
645  * @param cls Closure (NULL).
646  * @param tc Task Context.
647  */
648 static void
649 check_keepalives (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
650 {
651   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
652     return;
653
654   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
655   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "check keepalives\n");
656   GNUNET_CADET_channel_destroy (ch);
657   stats_op = GNUNET_TESTBED_get_statistics (peers_running, testbed_peers,
658                                             "cadet", NULL,
659                                             stats_iterator, stats_cont, NULL);
660 }
661
662
663 /**
664  * Handlers, for diverse services
665  */
666 static struct GNUNET_CADET_MessageHandler handlers[] = {
667   {&data_callback, 1, sizeof (struct GNUNET_MessageHeader)},
668   {NULL, 0, 0}
669 };
670
671
672 /**
673  * Method called whenever another peer has added us to a channel
674  * the other peer initiated.
675  *
676  * @param cls Closure.
677  * @param channel New handle to the channel.
678  * @param initiator Peer that started the channel.
679  * @param port Port this channel is connected to.
680  * @param options channel option flags
681  * @return Initial channel context for the channel
682  *         (can be NULL -- that's not an error).
683  */
684 static void *
685 incoming_channel (void *cls, struct GNUNET_CADET_Channel *channel,
686                  const struct GNUNET_PeerIdentity *initiator,
687                  uint32_t port, enum GNUNET_CADET_ChannelOption options)
688 {
689   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
690               "Incoming channel from %s to peer %d\n",
691               GNUNET_i2s (initiator), (long) cls);
692   ok++;
693   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
694   if ((long) cls == peers_requested - 1)
695     incoming_ch = channel;
696   else
697   {
698     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
699                 "Incoming channel for unknown client %lu\n", (long) cls);
700     GNUNET_break(0);
701   }
702   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
703   {
704     GNUNET_SCHEDULER_cancel (disconnect_task);
705     if (KEEPALIVE == test)
706     {
707       struct GNUNET_TIME_Relative delay;
708       delay = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS , 5);
709       disconnect_task =
710         GNUNET_SCHEDULER_add_delayed (delay, &check_keepalives, NULL);
711     }
712     else
713       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
714                                                       &disconnect_cadet_peers,
715                                                       (void *) __LINE__);
716   }
717
718   return NULL;
719 }
720
721 /**
722  * Function called whenever an inbound channel is destroyed.  Should clean up
723  * any associated state.
724  *
725  * @param cls closure (set from GNUNET_CADET_connect)
726  * @param channel connection to the other end (henceforth invalid)
727  * @param channel_ctx place where local state associated
728  *                   with the channel is stored
729  */
730 static void
731 channel_cleaner (void *cls, const struct GNUNET_CADET_Channel *channel,
732                  void *channel_ctx)
733 {
734   long i = (long) cls;
735
736   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
737               "Incoming channel disconnected at peer %ld\n", i);
738   if (peers_running - 1 == i)
739   {
740     ok++;
741     GNUNET_break (channel == incoming_ch);
742     incoming_ch = NULL;
743   }
744   else if (0L == i)
745   {
746     if (P2P_SIGNAL == test)
747     {
748       ok ++;
749     }
750     GNUNET_break (channel == ch);
751     ch = NULL;
752   }
753   else
754     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
755                 "Unknown peer! %d\n", i);
756   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
757
758   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
759   {
760     GNUNET_SCHEDULER_cancel (disconnect_task);
761     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_cadet_peers,
762                                                 (void *) __LINE__);
763   }
764
765   return;
766 }
767
768
769 /**
770  * START THE TESTCASE ITSELF, AS WE ARE CONNECTED TO THE CADET SERVICES.
771  *
772  * Testcase continues when the root receives confirmation of connected peers,
773  * on callback funtion ch.
774  *
775  * @param cls Closure (unsued).
776  * @param tc Task Context.
777  */
778 static void
779 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
780 {
781   enum GNUNET_CADET_ChannelOption flags;
782
783   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
784     return;
785
786   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test_task\n");
787
788   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
789   {
790     GNUNET_SCHEDULER_cancel (disconnect_task);
791   }
792
793   flags = GNUNET_CADET_OPTION_DEFAULT;
794   if (SPEED_REL == test)
795   {
796     test = SPEED;
797     flags |= GNUNET_CADET_OPTION_RELIABLE;
798   }
799   ch = GNUNET_CADET_channel_create (h1, NULL, p_id[1], 1, flags);
800
801   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
802                                                   &disconnect_cadet_peers,
803                                                   (void *) __LINE__);
804   if (KEEPALIVE == test)
805     return; /* Don't send any data. */
806
807   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending data initializer...\n");
808   data_received = 0;
809   data_sent = 0;
810   ack_received = 0;
811   ack_sent = 0;
812   GNUNET_CADET_notify_transmit_ready (ch, GNUNET_NO,
813                                       GNUNET_TIME_UNIT_FOREVER_REL,
814                                       size_payload, &tmt_rdy, (void *) 0L);
815 }
816
817 /**
818  * Callback to be called when the requested peer information is available
819  *
820  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
821  * @param op the operation this callback corresponds to
822  * @param pinfo the result; will be NULL if the operation has failed
823  * @param emsg error message if the operation has failed;
824  *             NULL if the operation is successfull
825  */
826 static void
827 pi_cb (void *cls,
828        struct GNUNET_TESTBED_Operation *op,
829        const struct GNUNET_TESTBED_PeerInformation *pinfo,
830        const char *emsg)
831 {
832   long i = (long) cls;
833
834   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id callback for %ld\n", i);
835
836   if (NULL == pinfo || NULL != emsg)
837   {
838     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
839     abort_test (__LINE__);
840     return;
841   }
842   p_id[i] = pinfo->result.id;
843   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  id: %s\n", GNUNET_i2s (p_id[i]));
844   p_ids++;
845   if (p_ids < 2)
846     return;
847   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got all IDs, starting test\n");
848   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
849                                             &do_test, NULL);
850 }
851
852 /**
853  * test main: start test when all peers are connected
854  *
855  * @param cls Closure.
856  * @param ctx Argument to give to GNUNET_CADET_TEST_cleanup on test end.
857  * @param num_peers Number of peers that are running.
858  * @param peers Array of peers.
859  * @param cadetes Handle to each of the CADETs of the peers.
860  */
861 static void
862 tmain (void *cls,
863        struct GNUNET_CADET_TEST_Context *ctx,
864        unsigned int num_peers,
865        struct GNUNET_TESTBED_Peer **peers,
866        struct GNUNET_CADET_Handle **cadets)
867 {
868   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
869   ok = 0;
870   test_ctx = ctx;
871   peers_running = num_peers;
872   GNUNET_assert (peers_running == peers_requested);
873   testbed_peers = peers;
874   h1 = cadets[0];
875   h2 = cadets[num_peers - 1];
876   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
877                                                   &disconnect_cadet_peers,
878                                                   (void *) __LINE__);
879   shutdown_handle = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
880                                                   &shutdown_task, NULL);
881   t_op[0] = GNUNET_TESTBED_peer_get_information (peers[0],
882                                                  GNUNET_TESTBED_PIT_IDENTITY,
883                                                  &pi_cb, (void *) 0L);
884   t_op[1] = GNUNET_TESTBED_peer_get_information (peers[num_peers - 1],
885                                                  GNUNET_TESTBED_PIT_IDENTITY,
886                                                  &pi_cb, (void *) 1L);
887   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
888 }
889
890
891 /**
892  * Main: start test
893  */
894 int
895 main (int argc, char *argv[])
896 {
897   initialized = GNUNET_NO;
898   static uint32_t ports[2];
899   const char *config_file;
900
901   GNUNET_log_setup ("test", "DEBUG", NULL);
902   config_file = "test_cadet.conf";
903
904   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
905
906   /* Find out requested size */
907   if (strstr (argv[0], "_2_") != NULL)
908   {
909     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DIRECT CONNECTIONs\n");
910     peers_requested = 2;
911   }
912   else if (strstr (argv[0], "_5_") != NULL)
913   {
914     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "5 PEER LINE\n");
915     peers_requested = 5;
916   }
917   else
918   {
919     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "SIZE UNKNOWN, USING 2\n");
920     peers_requested = 2;
921   }
922
923   /* Find out requested test */
924   if (strstr (argv[0], "_forward") != NULL)
925   {
926     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
927     test = FORWARD;
928     test_name = "unicast";
929     ok_goal = 4;
930   }
931   else if (strstr (argv[0], "_signal") != NULL)
932   {
933     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
934     test = P2P_SIGNAL;
935     test_name = "signal";
936     ok_goal = 4;
937   }
938   else if (strstr (argv[0], "_speed_ack") != NULL)
939   {
940     /* Test is supposed to generate the following callbacks:
941      * 1 incoming channel (@dest)
942      * TOTAL_PACKETS received data packet (@dest)
943      * TOTAL_PACKETS received data packet (@orig)
944      * 1 received channel destroy (@dest)
945      */
946     ok_goal = TOTAL_PACKETS * 2 + 2;
947     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
948     test = SPEED_ACK;
949     test_name = "speed ack";
950   }
951   else if (strstr (argv[0], "_speed") != NULL)
952   {
953     /* Test is supposed to generate the following callbacks:
954      * 1 incoming channel (@dest)
955      * 1 initial packet (@dest)
956      * TOTAL_PACKETS received data packet (@dest)
957      * 1 received data packet (@orig)
958      * 1 received channel destroy (@dest)
959      */
960     ok_goal = TOTAL_PACKETS + 4;
961     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
962     if (strstr (argv[0], "_reliable") != NULL)
963     {
964       test = SPEED_REL;
965       test_name = "speed reliable";
966       config_file = "test_cadet_drop.conf";
967     }
968     else
969     {
970       test = SPEED;
971       test_name = "speed";
972     }
973   }
974   else if (strstr (argv[0], "_keepalive") != NULL)
975   {
976     test = KEEPALIVE;
977     /* Test is supposed to generate the following callbacks:
978      * 1 incoming channel (@dest)
979      * [wait]
980      * 1 received channel destroy (@dest)
981      */
982     ok_goal = 2;
983   }
984   else
985   {
986     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
987     test = SETUP;
988     ok_goal = 0;
989   }
990
991   if (strstr (argv[0], "backwards") != NULL)
992   {
993     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "BACKWARDS (LEAF TO ROOT)\n");
994     test_backwards = GNUNET_YES;
995     GNUNET_asprintf (&test_name, "backwards %s", test_name);
996   }
997
998   p_ids = 0;
999   ports[0] = 1;
1000   ports[1] = 0;
1001   GNUNET_CADET_TEST_run ("test_cadet_small",
1002                         config_file,
1003                         peers_requested,
1004                         &tmain,
1005                         NULL, /* tmain cls */
1006                         &incoming_channel,
1007                         &channel_cleaner,
1008                         handlers,
1009                         ports);
1010
1011   if (ok_goal > ok)
1012   {
1013     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1014                 "FAILED! (%d/%d)\n", ok, ok_goal);
1015     return 1;
1016   }
1017   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
1018   return 0;
1019 }
1020
1021 /* end of test_cadet.c */
1022