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