refactor DHT for new service API
[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, "tmt_rdy on %ld, filling buffer\n", id);
540   if (0 == id)
541     th = NULL;
542   else if ((peers_requested - 1) == id)
543     incoming_th = NULL;
544   else
545     GNUNET_assert (0);
546   counter = get_expected_target () == id ? ack_sent : data_sent;
547   msg_size = size_payload + counter;
548   if (size < msg_size || NULL == buf)
549   {
550     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
551                 "size %u, buf %p, data_sent %u, ack_received %u\n",
552                 (unsigned int) size,
553                 buf,
554                 data_sent,
555                 ack_received);
556     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ok %u, ok goal %u\n", ok, ok_goal);
557     GNUNET_break (ok >= ok_goal - 2);
558
559     return 0;
560   }
561   msg->size = htons (msg_size);
562   msg->type = htons (1);
563   data = (uint32_t *) &msg[1];
564   *data = htonl (counter);
565   if (GNUNET_NO == initialized)
566   {
567     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "sending initializer\n");
568     msg_size = size_payload + 1000;
569     if (SPEED_ACK == test)
570       data_sent++;
571   }
572   else if (SPEED == test || SPEED_ACK == test)
573   {
574     if (get_expected_target() == id)
575       ack_sent++;
576     else
577       data_sent++;
578     counter++;
579     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
580                 " Sent message %u size %u\n",
581                 counter,
582                 (unsigned int) msg_size);
583     if (data_sent < TOTAL_PACKETS && SPEED == test)
584     {
585       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Scheduling message %d\n",
586                   counter + 1);
587       data_job = GNUNET_SCHEDULER_add_now (&data_task, NULL);
588     }
589   }
590
591   return msg_size;
592 }
593
594
595 /**
596  * Function is called whenever a message is received.
597  *
598  * @param cls closure (set from GNUNET_CADET_connect, peer number)
599  * @param channel connection to the other end
600  * @param channel_ctx place to store local state associated with the channel
601  * @param message the actual message
602  * @return GNUNET_OK to keep the connection open,
603  *         GNUNET_SYSERR to close it (signal serious error)
604  */
605 int
606 data_callback (void *cls, struct GNUNET_CADET_Channel *channel,
607                void **channel_ctx,
608                const struct GNUNET_MessageHeader *message)
609 {
610   struct GNUNET_CADET_TransmitHandle **pth;
611   long client = (long) cls;
612   long expected_target_client;
613   uint32_t *data;
614   uint32_t payload;
615   unsigned int counter;
616
617   ok++;
618   counter = get_expected_target () == client ? data_received : ack_received;
619
620   GNUNET_CADET_receive_done (channel);
621
622   if ((ok % 10) == 0)
623   {
624     if (NULL != disconnect_task)
625     {
626       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " reschedule timeout\n");
627       GNUNET_SCHEDULER_cancel (disconnect_task);
628       disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
629                                                       &gather_stats_and_exit,
630                                                       (void *) __LINE__);
631     }
632   }
633
634   switch (client)
635   {
636   case 0L:
637     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Root client got a message!\n");
638     GNUNET_assert (channel == ch);
639     pth = &th;
640     break;
641   case 1L:
642   case 4L:
643     GNUNET_assert (client == peers_requested - 1);
644     GNUNET_assert (channel == incoming_ch);
645     pth = &incoming_th;
646     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Leaf client %ld got a message.\n",
647                 client);
648     break;
649   default:
650     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Client %ld not valid.\n", client);
651     GNUNET_assert (0);
652   }
653   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: (%d/%d)\n", ok, ok_goal);
654   data = (uint32_t *) &message[1];
655   payload = ntohl (*data);
656   if (payload == counter)
657   {
658     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " payload as expected: %u\n", payload);
659   }
660   else
661   {
662     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, " payload %u, expected: %u\n",
663                 payload, counter);
664   }
665   expected_target_client = get_expected_target ();
666
667   if (GNUNET_NO == initialized)
668   {
669     initialized = GNUNET_YES;
670     start_time = GNUNET_TIME_absolute_get ();
671     if (SPEED == test)
672     {
673       GNUNET_assert (peers_requested - 1 == client);
674       data_job = GNUNET_SCHEDULER_add_now (&data_task, NULL);
675       return GNUNET_OK;
676     }
677   }
678
679   counter++;
680   if (client == expected_target_client) /* Normally 4 */
681   {
682     data_received++;
683     GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received data %u\n", data_received);
684     if (SPEED != test || (ok_goal - 2) == ok)
685     {
686       /* Send ACK */
687       GNUNET_assert (NULL == *pth);
688       *pth = GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
689                                                  GNUNET_TIME_UNIT_FOREVER_REL,
690                                                  size_payload + ack_sent,
691                                                  &tmt_rdy, (void *) client);
692       return GNUNET_OK;
693     }
694     else
695     {
696       if (data_received < TOTAL_PACKETS)
697         return GNUNET_OK;
698     }
699   }
700   else /* Normally 0 */
701   {
702     if (SPEED_ACK == test || SPEED == test)
703     {
704       ack_received++;
705       GNUNET_log (GNUNET_ERROR_TYPE_INFO, " received ack %u\n", ack_received);
706       /* send more data */
707       GNUNET_assert (NULL == *pth);
708       *pth = GNUNET_CADET_notify_transmit_ready (channel, GNUNET_NO,
709                                                  GNUNET_TIME_UNIT_FOREVER_REL,
710                                                  size_payload + data_sent,
711                                                  &tmt_rdy, (void *) client);
712       if (ack_received < TOTAL_PACKETS && SPEED != test)
713         return GNUNET_OK;
714       if (ok == 2 && SPEED == test)
715         return GNUNET_OK;
716       show_end_data();
717     }
718     if (test == P2P_SIGNAL)
719     {
720       if (NULL != incoming_th)
721       {
722         GNUNET_CADET_notify_transmit_ready_cancel (incoming_th);
723         incoming_th = NULL;
724       }
725       GNUNET_CADET_channel_destroy (incoming_ch);
726       incoming_ch = NULL;
727     }
728     else
729     {
730       if (NULL != th)
731       {
732         GNUNET_CADET_notify_transmit_ready_cancel (th);
733         th = NULL;
734       }
735       GNUNET_CADET_channel_destroy (ch);
736       ch = NULL;
737     }
738   }
739
740   return GNUNET_OK;
741 }
742
743
744 /**
745  * Data handlers for every message type of CADET's payload.
746  * {callback_function, message_type, size_expected}
747  */
748 static struct GNUNET_CADET_MessageHandler handlers[] = {
749   {&data_callback, 1, sizeof (struct GNUNET_MessageHeader)},
750   {NULL, 0, 0}
751 };
752
753
754 /**
755  * Method called whenever another peer has added us to a channel
756  * the other peer initiated.
757  *
758  * @param cls Closure.
759  * @param channel New handle to the channel.
760  * @param initiator Peer that started the channel.
761  * @param port Port this channel is connected to.
762  * @param options channel option flags
763  * @return Initial channel context for the channel
764  *         (can be NULL -- that's not an error).
765  */
766 static void *
767 incoming_channel (void *cls, struct GNUNET_CADET_Channel *channel,
768                  const struct GNUNET_PeerIdentity *initiator,
769                  const struct GNUNET_HashCode *port,
770                  enum GNUNET_CADET_ChannelOption options)
771 {
772   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
773               "Incoming channel from %s to peer %d:%s\n",
774               GNUNET_i2s (initiator),
775               (int) (long) cls, GNUNET_h2s (port));
776   ok++;
777   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
778   if ((long) cls == peers_requested - 1)
779     incoming_ch = channel;
780   else
781   {
782     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
783                 "Incoming channel for unknown client %lu\n", (long) cls);
784     GNUNET_break(0);
785   }
786   if (NULL != disconnect_task)
787   {
788     GNUNET_SCHEDULER_cancel (disconnect_task);
789     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
790                                                     &gather_stats_and_exit,
791                                                     (void *) __LINE__);
792   }
793
794   return NULL;
795 }
796
797 /**
798  * Function called whenever an inbound channel is destroyed.  Should clean up
799  * any associated state.
800  *
801  * @param cls closure (set from GNUNET_CADET_connect, peer number)
802  * @param channel connection to the other end (henceforth invalid)
803  * @param channel_ctx place where local state associated
804  *                   with the channel is stored
805  */
806 static void
807 channel_cleaner (void *cls, const struct GNUNET_CADET_Channel *channel,
808                  void *channel_ctx)
809 {
810   long i = (long) cls;
811
812   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
813               "Incoming channel disconnected at peer %ld\n", i);
814   if (peers_running - 1 == i)
815   {
816     ok++;
817     GNUNET_break (channel == incoming_ch);
818     incoming_ch = NULL;
819   }
820   else if (0L == i)
821   {
822     if (P2P_SIGNAL == test)
823     {
824       ok ++;
825     }
826     GNUNET_break (channel == ch);
827     ch = NULL;
828   }
829   else
830     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
831                 "Unknown peer! %d\n",
832                 (int) i);
833   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " ok: %d\n", ok);
834
835   if (NULL != disconnect_task)
836   {
837     GNUNET_SCHEDULER_cancel (disconnect_task);
838     disconnect_task = GNUNET_SCHEDULER_add_now (&gather_stats_and_exit,
839                                                 (void *) __LINE__);
840   }
841
842   return;
843 }
844
845
846 /**
847  * START THE TESTCASE ITSELF, AS WE ARE CONNECTED TO THE CADET SERVICES.
848  *
849  * Testcase continues when the root receives confirmation of connected peers,
850  * on callback function ch.
851  *
852  * @param cls Closure (unused).
853  */
854 static void
855 do_test (void *cls)
856 {
857   enum GNUNET_CADET_ChannelOption flags;
858
859   test_task = NULL;
860   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "do_test\n");
861
862   if (NULL != disconnect_task)
863   {
864     GNUNET_SCHEDULER_cancel (disconnect_task);
865     disconnect_task = NULL;
866   }
867
868   flags = GNUNET_CADET_OPTION_DEFAULT;
869   if (SPEED_REL == test)
870   {
871     test = SPEED;
872     flags |= GNUNET_CADET_OPTION_RELIABLE;
873   }
874
875   ch = GNUNET_CADET_channel_create (h1, NULL, p_id[1], &port, flags);
876
877   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
878                                                   &gather_stats_and_exit,
879                                                   (void *) __LINE__);
880   if (KEEPALIVE == test)
881     return; /* Don't send any data. */
882
883   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending data initializer...\n");
884   data_received = 0;
885   data_sent = 0;
886   ack_received = 0;
887   ack_sent = 0;
888   th = GNUNET_CADET_notify_transmit_ready (ch, GNUNET_NO,
889                                            GNUNET_TIME_UNIT_FOREVER_REL,
890                                            size_payload + 1000,
891                                            &tmt_rdy, (void *) 0L);
892 }
893
894
895 /**
896  * Callback to be called when the requested peer information is available
897  *
898  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
899  * @param op the operation this callback corresponds to
900  * @param pinfo the result; will be NULL if the operation has failed
901  * @param emsg error message if the operation has failed;
902  *             NULL if the operation is successfull
903  */
904 static void
905 pi_cb (void *cls,
906        struct GNUNET_TESTBED_Operation *op,
907        const struct GNUNET_TESTBED_PeerInformation *pinfo,
908        const char *emsg)
909 {
910   long i = (long) cls;
911
912   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "id callback for %ld\n", i);
913
914   if (NULL == pinfo || NULL != emsg)
915   {
916     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
917     abort_test (__LINE__);
918     return;
919   }
920   p_id[i] = pinfo->result.id;
921   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "  id: %s\n", GNUNET_i2s (p_id[i]));
922   p_ids++;
923   if (p_ids < 2)
924     return;
925   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got all IDs, starting test\n");
926   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
927                                             &do_test, NULL);
928 }
929
930 /**
931  * test main: start test when all peers are connected
932  *
933  * @param cls Closure.
934  * @param ctx Argument to give to GNUNET_CADET_TEST_cleanup on test end.
935  * @param num_peers Number of peers that are running.
936  * @param peers Array of peers.
937  * @param cadetes Handle to each of the CADETs of the peers.
938  */
939 static void
940 tmain (void *cls,
941        struct GNUNET_CADET_TEST_Context *ctx,
942        unsigned int num_peers,
943        struct GNUNET_TESTBED_Peer **peers,
944        struct GNUNET_CADET_Handle **cadets)
945 {
946   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
947   ok = 0;
948   test_ctx = ctx;
949   peers_running = num_peers;
950   GNUNET_assert (peers_running == peers_requested);
951   testbed_peers = peers;
952   h1 = cadets[0];
953   h2 = cadets[num_peers - 1];
954   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
955                                                   &disconnect_cadet_peers,
956                                                   (void *) __LINE__);
957   GNUNET_SCHEDULER_add_shutdown (&shutdown_task, NULL);
958   t_op[0] = GNUNET_TESTBED_peer_get_information (peers[0],
959                                                  GNUNET_TESTBED_PIT_IDENTITY,
960                                                  &pi_cb, (void *) 0L);
961   t_op[1] = GNUNET_TESTBED_peer_get_information (peers[num_peers - 1],
962                                                  GNUNET_TESTBED_PIT_IDENTITY,
963                                                  &pi_cb, (void *) 1L);
964   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
965 }
966
967
968 /**
969  * Main: start test
970  */
971 int
972 main (int argc, char *argv[])
973 {
974   initialized = GNUNET_NO;
975   static const struct GNUNET_HashCode *ports[2];
976   const char *config_file;
977   char port_id[] = "test port";
978   GNUNET_CRYPTO_hash (port_id, sizeof (port_id), &port);
979
980   GNUNET_log_setup ("test", "DEBUG", NULL);
981   config_file = "test_cadet.conf";
982
983   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start\n");
984
985   /* Find out requested size */
986   if (strstr (argv[0], "_2_") != NULL)
987   {
988     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DIRECT CONNECTIONs\n");
989     peers_requested = 2;
990   }
991   else if (strstr (argv[0], "_5_") != NULL)
992   {
993     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "5 PEER LINE\n");
994     peers_requested = 5;
995   }
996   else
997   {
998     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "SIZE UNKNOWN, USING 2\n");
999     peers_requested = 2;
1000   }
1001
1002   /* Find out requested test */
1003   if (strstr (argv[0], "_forward") != NULL)
1004   {
1005     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "FORWARD\n");
1006     test = FORWARD;
1007     test_name = "unicast";
1008     ok_goal = 4;
1009   }
1010   else if (strstr (argv[0], "_signal") != NULL)
1011   {
1012     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SIGNAL\n");
1013     test = P2P_SIGNAL;
1014     test_name = "signal";
1015     ok_goal = 4;
1016   }
1017   else if (strstr (argv[0], "_speed_ack") != NULL)
1018   {
1019     /* Test is supposed to generate the following callbacks:
1020      * 1 incoming channel (@dest)
1021      * TOTAL_PACKETS received data packet (@dest)
1022      * TOTAL_PACKETS received data packet (@orig)
1023      * 1 received channel destroy (@dest)
1024      */
1025     ok_goal = TOTAL_PACKETS * 2 + 2;
1026     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED_ACK\n");
1027     test = SPEED_ACK;
1028     test_name = "speed ack";
1029   }
1030   else if (strstr (argv[0], "_speed") != NULL)
1031   {
1032     /* Test is supposed to generate the following callbacks:
1033      * 1 incoming channel (@dest)
1034      * 1 initial packet (@dest)
1035      * TOTAL_PACKETS received data packet (@dest)
1036      * 1 received data packet (@orig)
1037      * 1 received channel destroy (@dest)
1038      */
1039     ok_goal = TOTAL_PACKETS + 4;
1040     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "SPEED\n");
1041     if (strstr (argv[0], "_reliable") != NULL)
1042     {
1043       test = SPEED_REL;
1044       test_name = "speed reliable";
1045       config_file = "test_cadet_drop.conf";
1046     }
1047     else
1048     {
1049       test = SPEED;
1050       test_name = "speed";
1051     }
1052   }
1053   else if (strstr (argv[0], "_keepalive") != NULL)
1054   {
1055     test = KEEPALIVE;
1056     /* Test is supposed to generate the following callbacks:
1057      * 1 incoming channel (@dest)
1058      * [wait]
1059      * 1 received channel destroy (@dest)
1060      */
1061     ok_goal = 2;
1062   }
1063   else
1064   {
1065     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "UNKNOWN\n");
1066     test = SETUP;
1067     ok_goal = 0;
1068   }
1069
1070   if (strstr (argv[0], "backwards") != NULL)
1071   {
1072     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "BACKWARDS (LEAF TO ROOT)\n");
1073     test_backwards = GNUNET_YES;
1074     GNUNET_asprintf (&test_name, "backwards %s", test_name);
1075   }
1076
1077   p_ids = 0;
1078   ports[0] = &port;
1079   ports[1] = NULL;
1080   GNUNET_CADET_TEST_run ("test_cadet_small",
1081                         config_file,
1082                         peers_requested,
1083                         &tmain,
1084                         NULL, /* tmain cls */
1085                         &incoming_channel,
1086                         &channel_cleaner,
1087                         handlers,
1088                         ports);
1089
1090   if (ok_goal > ok)
1091   {
1092     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1093                 "FAILED! (%d/%d)\n", ok, ok_goal);
1094     return 1;
1095   }
1096   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
1097   return 0;
1098 }
1099
1100 /* end of test_cadet.c */