add function conv param string
[oweals/gnunet.git] / src / ats-tests / ats-testing.c
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2010-2013 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 ats-tests/ats-testing.c
22  * @brief ats testing library: setup topology
23  * solvers
24  * @author Christian Grothoff
25  * @author Matthias Wachs
26  */
27 #include "ats-testing.h"
28
29
30 /**
31  * Connect peers with testbed
32  */
33 struct TestbedConnectOperation
34 {
35   /**
36    * The benchmarking master initiating this connection
37    */
38   struct BenchmarkPeer *master;
39
40   /**
41    * The benchmarking slave to connect to
42    */
43   struct BenchmarkPeer *slave;
44
45   /**
46    * Testbed operation to connect peers
47    */
48   struct GNUNET_TESTBED_Operation *connect_op;
49 };
50
51 struct GNUNET_CONFIGURATION_Handle *cfg;
52
53 struct GNUNET_ATS_TEST_Topology *top;
54
55
56 /**
57  * Shutdown nicely
58  *
59  * @param cls NULL
60  */
61 static void
62 do_shutdown (void *cls)
63 {
64   int c_m;
65   int c_s;
66   int c_op;
67   struct BenchmarkPeer *p;
68
69   top->state.benchmarking = GNUNET_NO;
70
71   GNUNET_log(GNUNET_ERROR_TYPE_INFO, _("Benchmarking done\n"));
72
73   GNUNET_ATS_TEST_generate_traffic_stop_all ();
74
75   for (c_m = 0; c_m < top->num_masters; c_m++)
76   {
77     p = &top->mps[c_m];
78     if (NULL != top->mps[c_m].peer_id_op)
79     {
80       GNUNET_TESTBED_operation_done (p->peer_id_op);
81       p->peer_id_op = NULL;
82     }
83
84     if (NULL != p->ats_task)
85       GNUNET_SCHEDULER_cancel (p->ats_task);
86     p->ats_task = NULL;
87
88     for (c_op = 0; c_op < p->num_partners; c_op++)
89     {
90       if (NULL != p->partners[c_op].cth)
91       {
92         GNUNET_CORE_notify_transmit_ready_cancel (p->partners[c_op].cth);
93         p->partners[c_op].cth = NULL;
94       }
95       if (NULL != p->partners[c_op].tth)
96       {
97         GNUNET_TRANSPORT_notify_transmit_ready_cancel (p->partners[c_op].tth);
98         p->partners[c_op].tth = NULL;
99       }
100       if ( (NULL != p->core_connect_ops) &&
101            (NULL != p->core_connect_ops[c_op].connect_op) )
102       {
103         GNUNET_log(GNUNET_ERROR_TYPE_INFO,
104             _("Failed to connect peer 0 and %u\n"), c_op);
105         GNUNET_TESTBED_operation_done (
106             p->core_connect_ops[c_op].connect_op);
107         p->core_connect_ops[c_op].connect_op = NULL;
108       }
109     }
110
111     if (NULL != p->ats_perf_op)
112     {
113       GNUNET_TESTBED_operation_done (p->ats_perf_op);
114       p->ats_perf_op = NULL;
115     }
116
117     if (NULL != p->comm_op)
118     {
119       GNUNET_TESTBED_operation_done (p->comm_op);
120       p->comm_op = NULL;
121     }
122     GNUNET_free_non_null (p->core_connect_ops);
123     GNUNET_free(p->partners);
124     p->partners = NULL;
125   }
126
127   for (c_s = 0; c_s < top->num_slaves; c_s++)
128   {
129     p = &top->sps[c_s];
130     if (NULL != p->peer_id_op)
131     {
132       GNUNET_TESTBED_operation_done (p->peer_id_op);
133       p->peer_id_op = NULL;
134     }
135
136     for (c_op = 0; c_op < p->num_partners; c_op++)
137     {
138       if (NULL != p->partners[c_op].cth)
139       {
140         GNUNET_CORE_notify_transmit_ready_cancel (p->partners[c_op].cth);
141         p->partners[c_op].cth = NULL;
142       }
143       if (NULL != p->partners[c_op].tth)
144       {
145         GNUNET_TRANSPORT_notify_transmit_ready_cancel (p->partners[c_op].tth);
146         p->partners[c_op].tth = NULL;
147       }
148     }
149     if (NULL != p->ats_perf_op)
150     {
151       GNUNET_TESTBED_operation_done (p->ats_perf_op);
152       p->ats_perf_op = NULL;
153     }
154     if (NULL != p->comm_op)
155     {
156       GNUNET_TESTBED_operation_done (p->comm_op);
157       p->comm_op = NULL;
158     }
159     GNUNET_free(p->partners);
160     p->partners = NULL;
161   }
162   GNUNET_SCHEDULER_shutdown ();
163   GNUNET_free (top);
164   top = NULL;
165 }
166
167 static struct BenchmarkPartner *
168 find_partner (struct BenchmarkPeer *me, const struct GNUNET_PeerIdentity * peer)
169 {
170   int c_m;
171   GNUNET_assert (NULL != me);
172   GNUNET_assert (NULL != peer);
173
174   for (c_m = 0; c_m < me->num_partners; c_m++)
175   {
176     /* Find a partner with other as destination */
177     if (0 == memcmp (peer, &me->partners[c_m].dest->id,
178             sizeof(struct GNUNET_PeerIdentity)))
179     {
180       return &me->partners[c_m];
181     }
182   }
183
184   return NULL;
185 }
186
187
188 static struct BenchmarkPeer *
189 find_peer (const struct GNUNET_PeerIdentity * peer)
190 {
191   int c_p;
192
193   for (c_p = 0; c_p < top->num_masters; c_p++)
194   {
195     if (0 == memcmp (&top->mps[c_p].id, peer, sizeof(struct GNUNET_PeerIdentity)))
196       return &top->mps[c_p];
197   }
198
199   for (c_p = 0; c_p < top->num_slaves; c_p++)
200   {
201     if (0 == memcmp (&top->sps[c_p].id, peer, sizeof(struct GNUNET_PeerIdentity)))
202       return &top->sps[c_p];
203   }
204   return NULL ;
205 }
206
207
208 /**
209  * Method called whenever a given peer connects.
210  *
211  * @param cls closure
212  * @param peer peer identity this notification is about
213  */
214 static void
215 comm_connect_cb (void *cls, const struct GNUNET_PeerIdentity * peer)
216 {
217   struct BenchmarkPeer *me = cls;
218   struct BenchmarkPeer *remote;
219   char *id;
220   int c;
221   int completed;
222
223   remote = find_peer (peer);
224   if (NULL == remote)
225   {
226     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Unknown peer connected: `%s'\n", GNUNET_i2s (peer));
227     GNUNET_break(0);
228     return;
229   }
230
231   id = GNUNET_strdup (GNUNET_i2s (&me->id));
232   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s [%u] `%s' connected to %s [%u] %s\n",
233       (me->master == GNUNET_YES) ? "Master": "Slave", me->no, id,
234       (remote->master == GNUNET_YES) ? "Master": "Slave", remote->no,
235       GNUNET_i2s (peer));
236
237   me->core_connections++;
238   if ((GNUNET_YES == me->master) && (GNUNET_NO == remote->master)
239       && (GNUNET_NO == top->state.connected_CORE))
240   {
241     me->core_slave_connections++;
242
243     if (me->core_slave_connections == top->num_slaves)
244     {
245       GNUNET_log(GNUNET_ERROR_TYPE_INFO,
246                  "Master [%u] connected all slaves\n",
247                  me->no);
248     }
249     completed = GNUNET_YES;
250     for (c = 0; c < top->num_masters; c++)
251     {
252       if (top->mps[c].core_slave_connections != top->num_slaves)
253         completed = GNUNET_NO;
254     }
255     if (GNUNET_YES == completed)
256     {
257       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
258                   "All master peers connected all slave peers\n");
259       top->state.connected_CORE = GNUNET_YES;
260       /* Notify about setup done */
261       if (NULL != top->done_cb)
262         top->done_cb (top->done_cb_cls, top->mps, top->sps);
263     }
264   }
265   GNUNET_free(id);
266 }
267
268 static void
269 comm_disconnect_cb (void *cls, const struct GNUNET_PeerIdentity * peer)
270 {
271   struct BenchmarkPeer *me = cls;
272   struct BenchmarkPartner *p;
273   char *id;
274
275   if (NULL == (p = find_partner (me, peer)))
276     return;
277
278   id = GNUNET_strdup (GNUNET_i2s (&me->id));
279   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "%s disconnected from %s \n", id,
280       GNUNET_i2s (peer));
281   GNUNET_assert(me->core_connections > 0);
282   me->core_connections--;
283
284   if ((GNUNET_YES == top->state.benchmarking)
285       && ((GNUNET_YES == me->master) || (GNUNET_YES == p->dest->master)))
286   {
287     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
288         "%s disconnected from %s while benchmarking \n", id, GNUNET_i2s (peer));
289     if (NULL != p->tth)
290     {
291       GNUNET_TRANSPORT_notify_transmit_ready_cancel (p->tth);
292       p->tth = NULL;
293     }
294     if (NULL != p->cth)
295     {
296       GNUNET_CORE_notify_transmit_ready_cancel (p->cth);
297       p->cth = NULL;
298     }
299   }
300   GNUNET_free(id);
301 }
302
303
304 static void *
305 core_connect_adapter (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
306 {
307   struct BenchmarkPeer *me = cls;
308
309   me->ch = GNUNET_CORE_connect (cfg, me, NULL, comm_connect_cb,
310       comm_disconnect_cb, NULL, GNUNET_NO, NULL, GNUNET_NO, top->handlers);
311   if (NULL == me->ch)
312     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to create core connection \n");
313   return me->ch;
314 }
315
316 static void
317 core_disconnect_adapter (void *cls, void *op_result)
318 {
319   struct BenchmarkPeer *me = cls;
320
321   GNUNET_CORE_disconnect (me->ch);
322   me->ch = NULL;
323 }
324
325
326
327
328 static int
329 comm_handle_pong (void *cls, const struct GNUNET_PeerIdentity *other,
330     const struct GNUNET_MessageHeader *message)
331 {
332   struct BenchmarkPeer *me = cls;
333   struct BenchmarkPartner *p = NULL;
334
335   if (NULL == (p = find_partner (me, other)))
336   {
337     GNUNET_break(0);
338     return GNUNET_SYSERR;
339   }
340
341   GNUNET_ATS_TEST_traffic_handle_pong (p);
342
343   return GNUNET_OK;
344 }
345
346 static int
347 comm_handle_ping (void *cls, const struct GNUNET_PeerIdentity *other,
348     const struct GNUNET_MessageHeader *message)
349 {
350   struct BenchmarkPeer *me = cls;
351   struct BenchmarkPartner *p = NULL;
352
353   if (NULL == (p = find_partner(me, other)))
354   {
355     GNUNET_break(0);
356     return GNUNET_SYSERR;
357   }
358   GNUNET_ATS_TEST_traffic_handle_ping (p);
359   return GNUNET_OK;
360 }
361
362 static void
363 test_recv_cb (void *cls,
364                      const struct GNUNET_PeerIdentity * peer,
365                      const struct GNUNET_MessageHeader * message)
366 {
367   if (TEST_MESSAGE_SIZE != ntohs (message->size) ||
368       (TEST_MESSAGE_TYPE_PING != ntohs (message->type) &&
369      TEST_MESSAGE_TYPE_PONG != ntohs (message->type)))
370   {
371     return;
372   }
373   if (TEST_MESSAGE_TYPE_PING == ntohs (message->type))
374     comm_handle_ping (cls, peer, message);
375   if (TEST_MESSAGE_TYPE_PONG == ntohs (message->type))
376     comm_handle_pong (cls, peer, message);
377 }
378
379
380 static void *
381 transport_connect_adapter (void *cls,
382                            const struct GNUNET_CONFIGURATION_Handle *cfg)
383 {
384   struct BenchmarkPeer *me = cls;
385
386   me->th = GNUNET_TRANSPORT_connect (cfg, &me->id, me, &test_recv_cb,
387       &comm_connect_cb, &comm_disconnect_cb);
388   if (NULL == me->th)
389     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to create transport connection \n");
390   return me->th;
391 }
392
393
394 static void
395 transport_disconnect_adapter (void *cls, void *op_result)
396 {
397   struct BenchmarkPeer *me = cls;
398
399   GNUNET_TRANSPORT_disconnect (me->th);
400   me->th = NULL;
401 }
402
403
404 static void
405 connect_completion_callback (void *cls,
406                              struct GNUNET_TESTBED_Operation *op,
407                              const char *emsg)
408 {
409   struct TestbedConnectOperation *cop = cls;
410   static int ops = 0;
411   int c;
412   if (NULL == emsg)
413   {
414     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
415                _("Connected master [%u] with slave [%u]\n"),
416                cop->master->no,
417                cop->slave->no);
418   }
419   else
420   {
421     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
422         _("Failed to connect master peer [%u] with slave [%u]\n"),
423         cop->master->no, cop->slave->no);
424     GNUNET_break(0);
425     GNUNET_SCHEDULER_shutdown ();
426   }
427   GNUNET_TESTBED_operation_done (op);
428   ops++;
429   for (c = 0; c < top->num_slaves; c++)
430   {
431     if (cop == &cop->master->core_connect_ops[c])
432       cop->master->core_connect_ops[c].connect_op = NULL;
433   }
434   if (ops == top->num_masters * top->num_slaves)
435   {
436     top->state.connected_PEERS = GNUNET_YES;
437   }
438 }
439
440
441 static void
442 do_connect_peers (void *cls)
443 {
444   int c_m;
445   int c_s;
446   struct BenchmarkPeer *p;
447
448   if ((top->state.connected_ATS_service == GNUNET_NO) ||
449       (top->state.connected_COMM_service == GNUNET_NO))
450     return;
451
452   GNUNET_log(GNUNET_ERROR_TYPE_INFO, _("Connecting peers on CORE level\n"));
453
454   for (c_m = 0; c_m < top->num_masters; c_m++)
455   {
456     p = &top->mps[c_m];
457     p->core_connect_ops = GNUNET_malloc (top->num_slaves *
458         sizeof (struct TestbedConnectOperation));
459
460     for (c_s = 0; c_s < top->num_slaves; c_s++)
461     {
462       GNUNET_log(GNUNET_ERROR_TYPE_INFO,
463           _("Connecting master [%u] with slave [%u]\n"), p->no, top->sps[c_s].no);
464       p->core_connect_ops[c_s].master = p;
465       p->core_connect_ops[c_s].slave = &top->sps[c_s];
466       p->core_connect_ops[c_s].connect_op = GNUNET_TESTBED_overlay_connect (
467           NULL, &connect_completion_callback, &p->core_connect_ops[c_s],
468           top->sps[c_s].peer, p->peer);
469       if (NULL == p->core_connect_ops[c_s].connect_op)
470       {
471         GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
472             _("Could not connect master [%u] and slave [%u]\n"), p->no,
473             top->sps[c_s].no);
474         GNUNET_break(0);
475         GNUNET_SCHEDULER_shutdown ();
476         return;
477       }
478     }
479   }
480 }
481
482
483 static void
484 comm_connect_completion_cb (void *cls,
485                             struct GNUNET_TESTBED_Operation *op,
486                             void *ca_result,
487                             const char *emsg)
488 {
489   static int comm_done = 0;
490
491   if ((NULL != emsg) || (NULL == ca_result))
492   {
493     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
494                "Initialization failed, shutdown\n");
495     GNUNET_break(0);
496     GNUNET_SCHEDULER_shutdown ();
497     return;
498   }
499   comm_done++;
500
501   if (comm_done == top->num_slaves + top->num_masters)
502   {
503     GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Connected to all %s services\n",
504         (GNUNET_YES == top->test_core) ? "CORE" : "TRANSPORT");
505     top->state.connected_COMM_service = GNUNET_YES;
506     GNUNET_SCHEDULER_add_now (&do_connect_peers, NULL );
507   }
508 }
509
510
511 static void
512 do_comm_connect (void *cls)
513 {
514   int c_s;
515   int c_m;
516   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Connecting to all %s services\n",
517       (GNUNET_YES == top->test_core) ? "CORE" : "TRANSPORT");
518   for (c_m = 0; c_m < top->num_masters; c_m++)
519   {
520     if (GNUNET_YES == top->test_core)
521       top->mps[c_m].comm_op = GNUNET_TESTBED_service_connect (NULL, top->mps[c_m].peer,
522         "core", &comm_connect_completion_cb, NULL, &core_connect_adapter,
523         &core_disconnect_adapter, &top->mps[c_m]);
524     else
525     {
526       top->mps[c_m].comm_op = GNUNET_TESTBED_service_connect (NULL, top->mps[c_m].peer,
527         "transport", &comm_connect_completion_cb, NULL, &transport_connect_adapter,
528         &transport_disconnect_adapter, &top->mps[c_m]);
529     }
530   }
531
532   for (c_s = 0; c_s < top->num_slaves; c_s++)
533   {
534     if (GNUNET_YES == top->test_core)
535       top->sps[c_s].comm_op = GNUNET_TESTBED_service_connect (NULL, top->sps[c_s].peer,
536         "core", &comm_connect_completion_cb, NULL, &core_connect_adapter,
537         &core_disconnect_adapter, &top->sps[c_s]);
538     else
539     {
540       top->sps[c_s].comm_op = GNUNET_TESTBED_service_connect (NULL, top->sps[c_s].peer,
541         "transport", &comm_connect_completion_cb, NULL, &transport_connect_adapter,
542         &transport_disconnect_adapter, &top->sps[c_s]);
543     }
544   }
545 }
546
547
548 static void
549 ats_performance_info_cb (void *cls,
550                          const struct GNUNET_HELLO_Address *address,
551                          int address_active,
552                          struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
553                          struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
554                          const struct GNUNET_ATS_Properties *ats_prop)
555 {
556   struct BenchmarkPeer *me = cls;
557   struct BenchmarkPartner *p;
558   int log;
559   char *peer_id;
560
561   if (NULL == address)
562   {
563     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Peer %u: ATS Service disconnected!\n",
564         me->no);
565     return;
566   }
567
568   p = find_partner (me, &address->peer);
569   if (NULL == p)
570   {
571     /* This is not one of my partners
572      * Will happen since the peers will connect to each other due to gossiping
573      */
574     return;
575   }
576   peer_id = GNUNET_strdup (GNUNET_i2s (&me->id));
577
578   log = GNUNET_NO;
579   if ((p->bandwidth_in != ntohl (bandwidth_in.value__)) ||
580       (p->bandwidth_out != ntohl (bandwidth_out.value__)))
581       log = GNUNET_YES;
582   p->bandwidth_in = ntohl (bandwidth_in.value__);
583   p->bandwidth_out = ntohl (bandwidth_out.value__);
584
585   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%s [%u] received ATS information: %s\n",
586       (GNUNET_YES == p->me->master) ? "Master" : "Slave",
587       p->me->no,
588       GNUNET_i2s (&p->dest->id));
589
590   p->props.utilization_out = ats_prop->utilization_out;
591   p->props.utilization_in = ats_prop->utilization_in;
592   p->props.scope = ats_prop->scope;
593   p->props.delay = ats_prop->delay;
594   p->props.distance = ats_prop->distance;
595
596   if (GNUNET_YES == log)
597     top->ats_perf_cb (cls, address,
598                       address_active,
599                       bandwidth_out,
600                       bandwidth_in,
601                       ats_prop);
602   GNUNET_free(peer_id);
603 }
604
605
606 static void *
607 ats_perf_connect_adapter (void *cls,
608     const struct GNUNET_CONFIGURATION_Handle *cfg)
609 {
610   struct BenchmarkPeer *me = cls;
611
612   me->ats_perf_handle = GNUNET_ATS_performance_init (cfg,
613       &ats_performance_info_cb, me);
614   if (NULL == me->ats_perf_handle)
615     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
616         "Failed to create ATS performance handle \n");
617   return me->ats_perf_handle;
618 }
619
620 static void
621 ats_perf_disconnect_adapter (void *cls, void *op_result)
622 {
623   struct BenchmarkPeer *me = cls;
624
625   GNUNET_ATS_performance_done (me->ats_perf_handle);
626   me->ats_perf_handle = NULL;
627 }
628
629 static void
630 ats_connect_completion_cb (void *cls, struct GNUNET_TESTBED_Operation *op,
631     void *ca_result, const char *emsg)
632 {
633   static int op_done = 0;
634
635   if ((NULL != emsg) || (NULL == ca_result))
636   {
637     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
638                "Initialization failed, shutdown\n");
639     GNUNET_break(0);
640     GNUNET_SCHEDULER_shutdown ();
641     return;
642   }
643   op_done++;
644   if (op_done == (top->num_masters + top->num_slaves))
645   {
646     GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Connected to all ATS services\n");
647     top->state.connected_ATS_service = GNUNET_YES;
648     GNUNET_SCHEDULER_add_now (&do_comm_connect, NULL );
649   }
650 }
651
652
653 static void
654 do_connect_ats (void *cls)
655 {
656   int c_m;
657   int c_s;
658
659   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Connecting to all ATS services\n");
660   for (c_m = 0; c_m < top->num_masters; c_m++)
661   {
662     top->mps[c_m].ats_perf_op = GNUNET_TESTBED_service_connect (NULL,
663         top->mps[c_m].peer,
664         "ats", ats_connect_completion_cb, NULL,
665         &ats_perf_connect_adapter,
666         &ats_perf_disconnect_adapter, &top->mps[c_m]);
667   }
668
669   for (c_s = 0; c_s < top->num_slaves; c_s++)
670   {
671     top->sps[c_s].ats_perf_op = GNUNET_TESTBED_service_connect (NULL, top->sps[c_s].peer,
672         "ats", ats_connect_completion_cb, NULL, &ats_perf_connect_adapter,
673         &ats_perf_disconnect_adapter, &top->sps[c_s]);
674   }
675 }
676
677
678
679 static void
680 peerinformation_cb (void *cb_cls, struct GNUNET_TESTBED_Operation *op,
681     const struct GNUNET_TESTBED_PeerInformation*pinfo, const char *emsg)
682 {
683   struct BenchmarkPeer *p = cb_cls;
684   static int done = 0;
685
686   GNUNET_assert(pinfo->pit == GNUNET_TESTBED_PIT_IDENTITY);
687
688   p->id = *pinfo->result.id;
689   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "%s [%u] has peer id `%s'\n",
690       (p->master == GNUNET_YES) ? "Master" : "Slave", p->no,
691       GNUNET_i2s (&p->id));
692
693   GNUNET_TESTBED_operation_done (op);
694   p->peer_id_op = NULL;
695   done++;
696
697   if (done == top->num_slaves + top->num_masters)
698   {
699     GNUNET_log(GNUNET_ERROR_TYPE_INFO,
700         "Retrieved all peer ID, connect to ATS\n");
701     GNUNET_SCHEDULER_add_now (&do_connect_ats, NULL );
702   }
703 }
704
705 /**
706  * Signature of a main function for a testcase.
707  *
708  * @param cls closure
709  * @param h testbed handle
710  * @param num_peers number of peers in 'peers'
711  * @param peers_ handle to peers run in the testbed
712  * @param links_succeeded the number of overlay link connection attempts that
713  *          succeeded
714  * @param links_failed the number of overlay link connection attempts that
715  *          failed
716  */
717 static void
718 main_run (void *cls, struct GNUNET_TESTBED_RunHandle *h,
719           unsigned int num_peers,
720           struct GNUNET_TESTBED_Peer **peers_,
721           unsigned int links_succeeded,
722           unsigned int links_failed)
723 {
724   int c_m;
725   int c_s;
726
727   GNUNET_assert(NULL == cls);
728   GNUNET_assert(top->num_masters + top->num_slaves == num_peers);
729   GNUNET_assert(NULL != peers_);
730
731   GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
732                                  top);
733
734   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
735               "Setting up %u masters and %u slaves\n",
736               top->num_masters,
737               top->num_slaves);
738
739   /* Setup master peers */
740   for (c_m = 0; c_m < top->num_masters; c_m++)
741   {
742     GNUNET_assert(NULL != peers_[c_m]);
743     top->mps[c_m].peer = peers_[c_m];
744     top->mps[c_m].no = c_m;
745     top->mps[c_m].master = GNUNET_YES;
746     top->mps[c_m].pref_partner = &top->sps[c_m];
747     top->mps[c_m].pref_value = TEST_ATS_PREFERENCE_DEFAULT;
748     top->mps[c_m].partners =
749         GNUNET_malloc (top->num_slaves * sizeof (struct BenchmarkPartner));
750     top->mps[c_m].num_partners = top->num_slaves;
751     /* Initialize partners */
752     for (c_s = 0; c_s < top->num_slaves; c_s++)
753     {
754       top->mps[c_m].partners[c_s].me = &top->mps[c_m];
755       top->mps[c_m].partners[c_s].dest = &top->sps[c_s];
756     }
757     /* Get configuration */
758     top->mps[c_m].peer_id_op = GNUNET_TESTBED_peer_get_information (top->mps[c_m].peer,
759         GNUNET_TESTBED_PIT_IDENTITY, &peerinformation_cb, &top->mps[c_m]);
760   }
761
762   /* Setup slave peers */
763   for (c_s = 0; c_s < top->num_slaves; c_s++)
764   {
765     GNUNET_assert(NULL != peers_[c_s + top->num_masters]);
766     top->sps[c_s].peer = peers_[c_s + top->num_masters];
767     top->sps[c_s].no = c_s + top->num_masters;
768     top->sps[c_s].master = GNUNET_NO;
769     top->sps[c_s].partners =
770         GNUNET_malloc (top->num_masters * sizeof (struct BenchmarkPartner));
771     top->sps[c_s].num_partners = top->num_masters;
772     /* Initialize partners */
773     for (c_m = 0; c_m < top->num_masters; c_m++)
774     {
775       top->sps[c_s].partners[c_m].me = &top->sps[c_s];
776       top->sps[c_s].partners[c_m].dest = &top->mps[c_m];
777
778       /* Initialize properties */
779       top->sps[c_s].partners[c_m].props.delay = GNUNET_TIME_UNIT_ZERO;
780       top->sps[c_s].partners[c_m].props.distance = 0;
781       top->sps[c_s].partners[c_m].props.scope = GNUNET_ATS_NET_UNSPECIFIED;
782       top->sps[c_s].partners[c_m].props.utilization_in = 0;
783       top->sps[c_s].partners[c_m].props.utilization_out = 0;
784     }
785     /* Get configuration */
786     top->sps[c_s].peer_id_op = GNUNET_TESTBED_peer_get_information (top->sps[c_s].peer,
787         GNUNET_TESTBED_PIT_IDENTITY, &peerinformation_cb, &top->sps[c_s]);
788   }
789 }
790
791 /**
792  * Controller event callback
793  *
794  * @param cls NULL
795  * @param event the controller event
796  */
797 static void
798 controller_event_cb (void *cls,
799                      const struct GNUNET_TESTBED_EventInformation *event)
800 {
801   switch (event->type)
802   {
803   case GNUNET_TESTBED_ET_CONNECT:
804     break;
805   case GNUNET_TESTBED_ET_OPERATION_FINISHED:
806     break;
807   default:
808     GNUNET_break(0);
809     GNUNET_SCHEDULER_shutdown ();
810   }
811 }
812
813
814 struct BenchmarkPeer *
815 GNUNET_ATS_TEST_get_peer (int src)
816 {
817   if (src > top->num_masters)
818     return NULL;
819   return &top->mps[src];
820 }
821
822
823 struct BenchmarkPartner *
824 GNUNET_ATS_TEST_get_partner (int src, int dest)
825 {
826   if (src > top->num_masters)
827     return NULL;
828   if (dest > top->num_slaves)
829     return NULL;
830   return &top->mps[src].partners[dest];
831 }
832
833
834 /**
835  * Create a topology for ats testing
836  *
837  * @param name test name
838  * @param cfg_file configuration file to use for the peers
839  * @param num_slaves number of slaves
840  * @param num_masters number of masters
841  * @param test_core connect to CORE service (GNUNET_YES) or transport (GNUNET_NO)
842  * @param done_cb function to call when topology is setup
843  * @param done_cb_cls cls for callback
844  * @param transport_recv_cb callback to call when data are received
845  * @param log_request_cb callback to call when logging is required
846  */
847 void
848 GNUNET_ATS_TEST_create_topology (char *name, char *cfg_file,
849                                  unsigned int num_slaves,
850                                  unsigned int num_masters,
851                                  int test_core,
852                                  GNUNET_ATS_TEST_TopologySetupDoneCallback done_cb,
853                                  void *done_cb_cls,
854                                  GNUNET_TRANSPORT_ReceiveCallback transport_recv_cb,
855                                  GNUNET_ATS_AddressInformationCallback log_request_cb)
856 {
857   static struct GNUNET_CORE_MessageHandler handlers[] = {
858       {&comm_handle_ping, TEST_MESSAGE_TYPE_PING, 0 },
859       {&comm_handle_pong, TEST_MESSAGE_TYPE_PONG, 0 },
860       { NULL, 0, 0 } };
861
862   top = GNUNET_new (struct GNUNET_ATS_TEST_Topology);
863   top->num_masters = num_masters;
864   top->num_slaves = num_slaves;
865   top->handlers = handlers;
866   top->done_cb = done_cb;
867   top->done_cb_cls = done_cb_cls;
868   top->test_core = test_core;
869   top->transport_recv_cb = transport_recv_cb;
870   top->ats_perf_cb = log_request_cb;
871
872   top->mps = GNUNET_malloc (num_masters * sizeof (struct BenchmarkPeer));
873   top->sps = GNUNET_malloc (num_slaves * sizeof (struct BenchmarkPeer));
874
875   /* Start topology */
876   uint64_t event_mask;
877   event_mask = 0;
878   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
879   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
880   (void) GNUNET_TESTBED_test_run (name, cfg_file,
881                                   num_slaves + num_masters,
882                                   event_mask,
883                                   &controller_event_cb, NULL,
884                                   &main_run, NULL);
885 }
886
887
888 /**
889  * Shutdown topology
890  */
891 void
892 GNUNET_ATS_TEST_shutdown_topology (void)
893 {
894   if (NULL == top)
895     return;
896   GNUNET_SCHEDULER_shutdown();
897 }
898
899
900
901
902
903 /* end of file ats-testing.c */