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