- don't shutdown twice
[oweals/gnunet.git] / src / mesh / gnunet-mesh-profiler.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 mesh/gnunet-mesh-profiler.c
22  *
23  * @brief Profiler for mesh experiments.
24  */
25 #include <stdio.h>
26 #include "platform.h"
27 #include "mesh_test_lib.h"
28 #include "gnunet_mesh_service.h"
29 #include "gnunet_statistics_service.h"
30
31
32 #define PING 1
33 #define PONG 2
34
35 /**
36  * How namy peers to run
37  */
38 #define TOTAL_PEERS 10
39
40 /**
41  * Duration of each round.
42  */
43 #define ROUND_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
44
45 /**
46  * Paximum ping period in milliseconds. Real period = rand (0, PING_PERIOD)
47  */
48 #define PING_PERIOD 2000
49
50 /**
51  * How long until we give up on connecting the peers?
52  */
53 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
54
55 /**
56  * Time to wait for stuff that should be rather fast
57  */
58 #define SHORT_TIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
59
60 static float rounds[] = {0.8, 0.7, 0.6, 0.5, 0.0};
61
62 struct MeshPeer
63 {
64   /**
65    * Testbed Operation (to get peer id, etc).
66    */
67   struct GNUNET_TESTBED_Operation *op;
68
69   /**
70    * Peer ID.
71    */
72   struct GNUNET_PeerIdentity id;
73
74   /**
75    * Mesh handle for the root peer
76    */
77   struct GNUNET_MESH_Handle *mesh;
78
79   /**
80    * Channel handle for the root peer
81    */
82   struct GNUNET_MESH_Channel *ch;
83
84   /**
85    * Channel handle for the dest peer
86    */
87   struct GNUNET_MESH_Channel *incoming_ch;
88
89   /**
90    * Number of payload packes sent
91    */
92   int data_sent;
93
94   /**
95    * Number of payload packets received
96    */
97   int data_received;
98
99   int up;
100
101   struct MeshPeer *dest;
102   struct MeshPeer *incoming;
103   GNUNET_SCHEDULER_TaskIdentifier ping_task;
104   struct GNUNET_TIME_Absolute timestamp;
105 };
106
107 /**
108  * GNUNET_PeerIdentity -> MeshPeer
109  */
110 static struct GNUNET_CONTAINER_MultiPeerMap *ids;
111
112 /**
113  * Testbed peer handles.
114  */
115 static struct GNUNET_TESTBED_Peer **testbed_handles;
116
117 /**
118  * Testbed Operation (to get stats).
119  */
120 static struct GNUNET_TESTBED_Operation *stats_op;
121
122 /**
123  * How many events have happened
124  */
125 static int ok;
126
127 /**
128  * Number of events expected to conclude the test successfully.
129  */
130 static int ok_goal;
131
132 /**
133  * Size of each test packet
134  */
135 size_t size_payload = sizeof (struct GNUNET_MessageHeader) + sizeof (uint32_t);
136
137 /**
138  * Operation to get peer ids.
139  */
140 struct MeshPeer peers[TOTAL_PEERS];
141
142 /**
143  * Peer ids counter.
144  */
145 static unsigned int p_ids;
146
147 /**
148  * Total number of currently running peers.
149  */
150 static unsigned long long peers_running;
151
152 /**
153  * Test context (to shut down).
154  */
155 static struct GNUNET_MESH_TEST_Context *test_ctx;
156
157 /**
158  * Task called to shutdown test.
159  */
160 static GNUNET_SCHEDULER_TaskIdentifier shutdown_handle;
161
162 /**
163  * Task called to disconnect peers, before shutdown.
164  */
165 static GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
166
167 /**
168  * Task to perform tests
169  */
170 static GNUNET_SCHEDULER_TaskIdentifier test_task;
171
172
173 /**
174  * Flag to notify callbacks not to generate any new traffic anymore.
175  */
176 static int test_finished;
177
178 /**
179  * Calculate a random delay.
180  *
181  * @param max Exclusive maximum, in ms.
182  *
183  * @return A time between 0 a max-1 ms.
184  */
185 static struct GNUNET_TIME_Relative
186 delay_ms_rnd (unsigned int max)
187 {
188   unsigned int rnd;
189
190   rnd = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, max);
191   return GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, rnd);
192 }
193
194
195 /**
196  * Get the index of a peer in the peers array.
197  *
198  * @param peer Peer whose index to get.
199  *
200  * @return Index of peer in peers.
201  */
202 static unsigned int
203 get_index (struct MeshPeer *peer)
204 {
205   return peer - peers;
206 }
207
208
209 /**
210  * Show the results of the test (banwidth acheived) and log them to GAUGER
211  */
212 static void
213 show_end_data (void)
214 {
215 }
216
217
218 /**
219  * Shut down peergroup, clean up.
220  *
221  * @param cls Closure (unused).
222  * @param tc Task Context.
223  */
224 static void
225 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
226 {
227   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Ending test.\n");
228   shutdown_handle = GNUNET_SCHEDULER_NO_TASK;
229 }
230
231
232 /**
233  * Disconnect from mesh services af all peers, call shutdown.
234  *
235  * @param cls Closure (unused).
236  * @param tc Task Context.
237  */
238 static void
239 disconnect_mesh_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
240 {
241   long line = (long) cls;
242   unsigned int i;
243
244   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
245               "disconnecting mesh service of peers, called from line %ld\n",
246               line);
247   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
248   for (i = 0; i < TOTAL_PEERS; i++)
249   {
250     GNUNET_TESTBED_operation_done (peers[i].op);
251
252     if (peers[i].up != GNUNET_YES)
253       continue;
254
255     GNUNET_MESH_channel_destroy (peers[i].ch);
256     if (NULL != peers[i].incoming_ch)
257       GNUNET_MESH_channel_destroy (peers[i].incoming_ch);
258   }
259   GNUNET_MESH_TEST_cleanup (test_ctx);
260   if (GNUNET_SCHEDULER_NO_TASK != shutdown_handle)
261   {
262     GNUNET_SCHEDULER_cancel (shutdown_handle);
263   }
264   shutdown_handle = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
265 }
266
267
268 /**
269  * Finish test normally: schedule disconnect and shutdown
270  *
271  * @param line Line in the code the abort is requested from (__LINE__).
272  */
273 static void
274 abort_test (long line)
275 {
276   if (disconnect_task != GNUNET_SCHEDULER_NO_TASK)
277   {
278     GNUNET_SCHEDULER_cancel (disconnect_task);
279     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_mesh_peers,
280                                                 (void *) line);
281   }
282 }
283
284 /**
285  * Stats callback. Finish the stats testbed operation and when all stats have
286  * been iterated, shutdown the test.
287  *
288  * @param cls closure
289  * @param op the operation that has been finished
290  * @param emsg error message in case the operation has failed; will be NULL if
291  *          operation has executed successfully.
292  */
293 static void
294 stats_cont (void *cls, struct GNUNET_TESTBED_Operation *op, const char *emsg)
295 {
296   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "... collecting statistics done.\n");
297   GNUNET_TESTBED_operation_done (stats_op);
298
299   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
300     GNUNET_SCHEDULER_cancel (disconnect_task);
301   disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_mesh_peers,
302                                               (void *) __LINE__);
303
304 }
305
306
307 /**
308  * Process statistic values.
309  *
310  * @param cls closure
311  * @param peer the peer the statistic belong to
312  * @param subsystem name of subsystem that created the statistic
313  * @param name the name of the datum
314  * @param value the current value
315  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
316  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
317  */
318 static int
319 stats_iterator (void *cls, const struct GNUNET_TESTBED_Peer *peer,
320                 const char *subsystem, const char *name,
321                 uint64_t value, int is_persistent)
322 {
323   uint32_t i;
324
325   i = GNUNET_TESTBED_get_index (peer);
326   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " STATS %u - %s [%s]: %llu\n",
327               i, subsystem, name, value);
328
329   return GNUNET_OK;
330 }
331
332
333 /**
334  * Task check that keepalives were sent and received.
335  *
336  * @param cls Closure (NULL).
337  * @param tc Task Context.
338  */
339 static void
340 collect_stats (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
341 {
342   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
343     return;
344
345   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
346   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Start collecting statistics...\n");
347   stats_op = GNUNET_TESTBED_get_statistics (TOTAL_PEERS, testbed_handles,
348                                             NULL, NULL,
349                                             stats_iterator, stats_cont, NULL);
350 }
351
352
353 /**
354  * @brief Finish profiler normally. Signal finish and start collecting stats.
355  *
356  * @param cls Closure (unused).
357  * @param tc Task context.
358  */
359 static void
360 finish_profiler (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
361 {
362   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
363     return;
364
365   test_finished = GNUNET_YES;
366   show_end_data();
367   GNUNET_SCHEDULER_add_now (&collect_stats, NULL);
368 }
369
370 /**
371  * Set the total number of running peers.
372  *
373  * @param target Desired number of running peers.
374  */
375 static void
376 adjust_running_peers (unsigned int target)
377 {
378   struct GNUNET_TESTBED_Operation *op;
379   unsigned int delta;
380   unsigned int run;
381   unsigned int i;
382   unsigned int r;
383
384   GNUNET_assert (target <= TOTAL_PEERS);
385
386   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "adjust peers to %u\n", target);
387   if (target > peers_running)
388   {
389     delta = target - peers_running;
390     run = GNUNET_YES;
391   }
392   else
393   {
394     delta = peers_running - target;
395     run = GNUNET_NO;
396   }
397
398   for (i = 0; i < delta; i++)
399   {
400     do {
401       r = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, TOTAL_PEERS);
402     } while (peers[r].up == run);
403     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "St%s peer %u: %s\n",
404                 run ? "arting" : "opping", r, GNUNET_i2s (&peers[r].id));
405
406     if (GNUNET_SCHEDULER_NO_TASK != peers[r].ping_task)
407       GNUNET_SCHEDULER_cancel (peers[r].ping_task);
408     peers[r].ping_task = GNUNET_SCHEDULER_NO_TASK;
409
410     peers[r].up = GNUNET_NO;
411     op = GNUNET_TESTBED_peer_manage_service (&peers[r], testbed_handles[r],
412                                              "mesh", NULL, NULL, run);
413     GNUNET_break (NULL != op);
414     peers_running += run ? 1 : -1;
415     GNUNET_assert (peers_running > 0);
416   }
417 }
418
419
420 /**
421  * @brief Move to next round.
422  *
423  * @param cls Closure (round #).
424  * @param tc Task context.
425  */
426 static void
427 next_rnd (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
428 {
429   long round = (long) cls;
430
431   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
432     return;
433
434   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ROUND %ld\n", round);
435   if (0.0 == rounds[round])
436   {
437     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Finishing\n");
438     GNUNET_SCHEDULER_add_now (&finish_profiler, NULL);
439     return;
440   }
441   adjust_running_peers (rounds[round] * TOTAL_PEERS);
442
443   GNUNET_SCHEDULER_add_delayed (ROUND_TIME, &next_rnd, (void *) (round + 1));
444 }
445
446
447 /**
448  * Transmit ready callback.
449  *
450  * @param cls Closure (peer for PING, NULL for PONG).
451  * @param size Size of the tranmist buffer.
452  * @param buf Pointer to the beginning of the buffer.
453  *
454  * @return Number of bytes written to buf.
455  */
456 static size_t
457 tmt_rdy (void *cls, size_t size, void *buf);
458
459
460 /**
461  * @brief Send a ping to destination
462  *
463  * @param cls Closure (peer).
464  * @param tc Task context.
465  */
466 static void
467 ping (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
468 {
469   struct MeshPeer *peer = (struct MeshPeer *) cls;
470
471   peer->ping_task = GNUNET_SCHEDULER_NO_TASK;
472
473   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0
474       || GNUNET_YES == test_finished
475       || 0 != peer->timestamp.abs_value_us)
476     return;
477
478   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "%u -> %u\n",
479               get_index (peer), get_index (peer->dest));
480
481   GNUNET_MESH_notify_transmit_ready (peer->ch, GNUNET_NO,
482                                      GNUNET_TIME_UNIT_FOREVER_REL,
483                                      size_payload, &tmt_rdy, peer);
484 }
485
486 /**
487  * @brief Reply with a pong to origin.
488  *
489  * @param cls Closure (peer).
490  * @param tc Task context.
491  */
492 static void
493 pong (struct GNUNET_MESH_Channel *channel)
494 {
495   GNUNET_MESH_notify_transmit_ready (channel, GNUNET_NO,
496                                      GNUNET_TIME_UNIT_FOREVER_REL,
497                                      size_payload, &tmt_rdy, NULL);
498 }
499
500
501 /**
502  * Transmit ready callback
503  *
504  * @param cls Closure (peer for PING, NULL for PONG).
505  * @param size Size of the buffer we have.
506  * @param buf Buffer to copy data to.
507  */
508 static size_t
509 tmt_rdy (void *cls, size_t size, void *buf)
510 {
511   struct MeshPeer *peer = (struct MeshPeer *) cls;
512   struct GNUNET_MessageHeader *msg = buf;
513   uint32_t *data;
514
515   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "tmt_rdy called, filling buffer\n");
516   if (size < size_payload || NULL == buf)
517   {
518     GNUNET_break (0);
519     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
520                 "size %u, buf %p, data_sent %u, data_received %u\n",
521                 size, buf, peer->data_sent, peer->data_received);
522
523     return 0;
524   }
525   msg->size = htons (size);
526   if (NULL == peer)
527   {
528     msg->type = htons (PONG);
529     return sizeof (*msg);
530   }
531
532   msg->type = htons (PING);
533   data = (uint32_t *) &msg[1];
534   *data = htonl (peer->data_sent);
535   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sent: msg %d\n", peer->data_sent);
536   peer->data_sent++;
537   peer->timestamp = GNUNET_TIME_absolute_get ();
538   peer->ping_task = GNUNET_SCHEDULER_add_delayed (delay_ms_rnd (PING_PERIOD),
539                                                   &ping, peer);
540
541   return size_payload;
542 }
543
544
545 /**
546  * Function is called whenever a PING message is received.
547  *
548  * @param cls closure (peer #, set from GNUNET_MESH_connect)
549  * @param channel connection to the other end
550  * @param channel_ctx place to store local state associated with the channel
551  * @param message the actual message
552  * @return GNUNET_OK to keep the connection open,
553  *         GNUNET_SYSERR to close it (signal serious error)
554  */
555 int
556 ping_handler (void *cls, struct GNUNET_MESH_Channel *channel,
557               void **channel_ctx,
558               const struct GNUNET_MessageHeader *message)
559 {
560   long n = (long) cls;
561
562   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%u got PING\n", n);
563   GNUNET_MESH_receive_done (channel);
564   if (GNUNET_NO == test_finished)
565     pong (channel);
566
567   return GNUNET_OK;
568 }
569
570
571 /**
572  * Function is called whenever a PONG message is received.
573  *
574  * @param cls closure (peer #, set from GNUNET_MESH_connect)
575  * @param channel connection to the other end
576  * @param channel_ctx place to store local state associated with the channel
577  * @param message the actual message
578  * @return GNUNET_OK to keep the connection open,
579  *         GNUNET_SYSERR to close it (signal serious error)
580  */
581 int
582 pong_handler (void *cls, struct GNUNET_MESH_Channel *channel,
583               void **channel_ctx,
584               const struct GNUNET_MessageHeader *message)
585 {
586   long n = (long) cls;
587   struct MeshPeer *peer;
588   struct GNUNET_TIME_Relative latency;
589
590   GNUNET_MESH_receive_done (channel);
591   peer = &peers[n];
592
593   GNUNET_break (0 != peer->timestamp.abs_value_us);
594   latency = GNUNET_TIME_absolute_get_duration (peer->timestamp);
595   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "%u <- %u latency: %s\n",
596               get_index (peer), get_index (peer->dest),
597               GNUNET_STRINGS_relative_time_to_string (latency, GNUNET_NO));
598
599   if (GNUNET_SCHEDULER_NO_TASK == peer->ping_task)
600   {
601     peer->timestamp = GNUNET_TIME_absolute_get ();
602     peer->ping_task = GNUNET_SCHEDULER_add_delayed (delay_ms_rnd (60 * 1000),
603                                                     &ping, peer);
604   }
605   else
606   {
607     peer->timestamp.abs_value_us = 0;
608   }
609
610   return GNUNET_OK;
611 }
612
613
614 /**
615  * Handlers, for diverse services
616  */
617 static struct GNUNET_MESH_MessageHandler handlers[] = {
618   {&ping_handler, PING, sizeof (struct GNUNET_MessageHeader)},
619   {&pong_handler, PONG, sizeof (struct GNUNET_MessageHeader)},
620   {NULL, 0, 0}
621 };
622
623
624 /**
625  * Method called whenever another peer has added us to a channel
626  * the other peer initiated.
627  *
628  * @param cls Closure.
629  * @param channel New handle to the channel.
630  * @param initiator Peer that started the channel.
631  * @param port Port this channel is connected to.
632  * @param options channel option flags
633  * @return Initial channel context for the channel
634  *         (can be NULL -- that's not an error).
635  */
636 static void *
637 incoming_channel (void *cls, struct GNUNET_MESH_Channel *channel,
638                  const struct GNUNET_PeerIdentity *initiator,
639                  uint32_t port, enum GNUNET_MESH_ChannelOption options)
640 {
641   long n = (long) cls;
642   struct MeshPeer *peer;
643
644   peer = GNUNET_CONTAINER_multipeermap_get (ids, initiator);
645   GNUNET_assert (NULL != peer);
646   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "%u <= %u\n", n, get_index (peer));
647   peers[n].incoming_ch = channel;
648
649   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
650   {
651     GNUNET_SCHEDULER_cancel (disconnect_task);
652     disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
653                                                     &disconnect_mesh_peers,
654                                                     (void *) __LINE__);
655   }
656
657   return NULL;
658 }
659
660 /**
661  * Function called whenever an inbound channel is destroyed.  Should clean up
662  * any associated state.
663  *
664  * @param cls closure (set from GNUNET_MESH_connect)
665  * @param channel connection to the other end (henceforth invalid)
666  * @param channel_ctx place where local state associated
667  *                   with the channel is stored
668  */
669 static void
670 channel_cleaner (void *cls, const struct GNUNET_MESH_Channel *channel,
671                  void *channel_ctx)
672 {
673   long n = (long) cls;
674   struct MeshPeer *peer = &peers[n];
675
676   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
677               "Incoming channel disconnected at peer %ld\n", n);
678   if (peer->ch == channel)
679     peer->ch = NULL;
680 }
681
682
683 static struct MeshPeer *
684 select_random_peer (struct MeshPeer *peer)
685 {
686   unsigned int r;
687
688   do
689   {
690     r = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, TOTAL_PEERS);
691   } while (NULL != peers[r].incoming);
692   peers[r].incoming = peer;
693
694   return &peers[r];
695 }
696
697 /**
698  * START THE TEST ITSELF, AS WE ARE CONNECTED TO THE MESH SERVICES.
699  *
700  * Testcase continues when the root receives confirmation of connected peers,
701  * on callback funtion ch.
702  *
703  * @param cls Closure (unsued).
704  * @param tc Task Context.
705  */
706 static void
707 start_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
708 {
709   enum GNUNET_MESH_ChannelOption flags;
710   unsigned long i;
711
712   if ((GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason) != 0)
713     return;
714
715   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Start profiler\n");
716
717   if (GNUNET_SCHEDULER_NO_TASK != disconnect_task)
718     GNUNET_SCHEDULER_cancel (disconnect_task);
719   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
720                                                   &disconnect_mesh_peers,
721                                                   (void *) __LINE__);
722
723   flags = GNUNET_MESH_OPTION_DEFAULT;
724   for (i = 0; i < TOTAL_PEERS; i++)
725   {
726
727     peers[i].dest = select_random_peer (&peers[i]);
728     peers[i].ch = GNUNET_MESH_channel_create (peers[i].mesh, NULL,
729                                               &peers[i].dest->id,
730                                               1, flags);
731     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "%u => %u\n",
732                 i, get_index (peers[i].dest));
733     peers[i].ping_task = GNUNET_SCHEDULER_add_delayed (delay_ms_rnd (2000),
734                                                        &ping, &peers[i]);
735   }
736   peers_running = TOTAL_PEERS;
737   GNUNET_SCHEDULER_add_delayed (ROUND_TIME, &next_rnd, NULL);
738 }
739
740
741 /**
742  * Callback to be called when the requested peer information is available
743  *
744  * @param cls the closure from GNUNET_TESTBED_peer_get_information()
745  * @param op the operation this callback corresponds to
746  * @param pinfo the result; will be NULL if the operation has failed
747  * @param emsg error message if the operation has failed;
748  *             NULL if the operation is successfull
749  */
750 static void
751 peer_id_cb (void *cls,
752        struct GNUNET_TESTBED_Operation *op,
753        const struct GNUNET_TESTBED_PeerInformation *pinfo,
754        const char *emsg)
755 {
756   long n = (long) cls;
757
758   if (NULL == pinfo || NULL != emsg)
759   {
760     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "pi_cb: %s\n", emsg);
761     abort_test (__LINE__);
762     return;
763   }
764   peers[n].id = *(pinfo->result.id);
765   GNUNET_log (GNUNET_ERROR_TYPE_INFO, " %u  id: %s\n",
766               n, GNUNET_i2s (&peers[n].id));
767   GNUNET_break (GNUNET_OK ==
768                 GNUNET_CONTAINER_multipeermap_put (ids, &peers[n].id, &peers[n],
769                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
770   p_ids++;
771   if (p_ids < TOTAL_PEERS)
772     return;
773   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Got all IDs, starting profiler\n");
774   test_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
775                                             &start_test, NULL);
776 }
777
778 /**
779  * test main: start test when all peers are connected
780  *
781  * @param cls Closure.
782  * @param ctx Argument to give to GNUNET_MESH_TEST_cleanup on test end.
783  * @param num_peers Number of peers that are running.
784  * @param testbed_peers Array of peers.
785  * @param meshes Handle to each of the MESHs of the peers.
786  */
787 static void
788 tmain (void *cls,
789        struct GNUNET_MESH_TEST_Context *ctx,
790        unsigned int num_peers,
791        struct GNUNET_TESTBED_Peer **testbed_peers,
792        struct GNUNET_MESH_Handle **meshes)
793 {
794   unsigned long i;
795
796   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test main\n");
797   ok = 0;
798   test_ctx = ctx;
799   GNUNET_assert (TOTAL_PEERS == num_peers);
800   peers_running = num_peers;
801   testbed_handles = testbed_peers;
802   disconnect_task = GNUNET_SCHEDULER_add_delayed (SHORT_TIME,
803                                                   &disconnect_mesh_peers,
804                                                   (void *) __LINE__);
805   shutdown_handle = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
806                                                   &shutdown_task, NULL);
807   for (i = 0; i < TOTAL_PEERS; i++)
808   {
809     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requesting id %ld\n", i);
810     peers[i].up = GNUNET_YES;
811     peers[i].mesh = meshes[i];
812     peers[i].op =
813       GNUNET_TESTBED_peer_get_information (testbed_handles[i],
814                                            GNUNET_TESTBED_PIT_IDENTITY,
815                                            &peer_id_cb, (void *) i);
816   }
817   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "requested peer ids\n");
818   /* Continues from pi_cb -> do_test */
819 }
820
821
822 /**
823  * Main: start profiler.
824  */
825 int
826 main (int argc, char *argv[])
827 {
828   static uint32_t ports[2];
829   const char *config_file;
830
831   config_file = "test_mesh.conf";
832
833   ids = GNUNET_CONTAINER_multipeermap_create (2 * TOTAL_PEERS, GNUNET_YES);
834   GNUNET_assert (NULL != ids);
835   p_ids = 0;
836   test_finished = GNUNET_NO;
837   ports[0] = 1;
838   ports[1] = 0;
839   GNUNET_MESH_TEST_run ("mesh-profiler", config_file, TOTAL_PEERS,
840                         &tmain, NULL, /* tmain cls */
841                         &incoming_channel, &channel_cleaner,
842                         handlers, ports);
843
844   if (ok_goal > ok)
845   {
846     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
847                 "FAILED! (%d/%d)\n", ok, ok_goal);
848     return 1;
849   }
850   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "success\n");
851   return 0;
852 }
853
854 /* end of gnunet-mesh-profiler.c */
855