9f7a99a7b90e985d7518cac15b7dd1fb8537f94d
[oweals/gnunet.git] / src / transport / transport-testing.c
1 /*
2      This file is part of GNUnet.
3      (C) 2006, 2009 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 2, 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 /**
22  * @file transport-testing.c
23  * @brief testing lib for transport service
24  *
25  * @author Matthias Wachs
26  */
27
28 #include "transport-testing.h"
29
30 #define HOSTKEYFILESIZE 914
31
32 static const char *
33 get_host_key (struct GNUNET_TRANSPORT_TESTING_handle *tth)
34 {
35   if (tth->hostkey_data == NULL)
36   {
37     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
38                      "No precomputed hostkeys available\n");
39     return NULL;
40   }
41   if (tth->hostkeys_total > tth->hostkeys_last)
42   {
43     tth->hostkeys_last++;
44     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
45                      "Used hostkey %u of %u available hostkeys\n",
46                      tth->hostkeys_last, tth->hostkeys_total);
47     return &tth->hostkey_data[(tth->hostkeys_last - 1) * HOSTKEYFILESIZE];
48   }
49   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
50                    "No hostkey available (%u of %u already used)\n",
51                    tth->hostkeys_last, tth->hostkeys_total);
52   return NULL;
53 }
54
55 static struct PeerContext *
56 find_peer_context (struct GNUNET_TRANSPORT_TESTING_handle *tth,
57                    const struct GNUNET_PeerIdentity *peer)
58 {
59   GNUNET_assert (tth != NULL);
60   struct PeerContext *t = tth->p_head;
61
62   while (t != NULL)
63   {
64     if (0 == memcmp (&t->id, peer, sizeof (struct GNUNET_PeerIdentity)))
65       break;
66     t = t->next;
67   }
68
69   return t;
70 }
71
72 struct ConnectingContext *
73 find_connecting_context (struct GNUNET_TRANSPORT_TESTING_handle *tth,
74                          struct PeerContext *p1, struct PeerContext *p2)
75 {
76   GNUNET_assert (tth != NULL);
77   struct ConnectingContext *cc = tth->cc_head;
78
79   while (cc != NULL)
80   {
81     if ((cc->p1 == p1) && (cc->p2 == p2))
82       break;
83     if ((cc->p1 == p2) && (cc->p2 == p1))
84       break;
85     cc = cc->next;
86   }
87
88   return cc;
89 }
90
91 static void
92 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
93                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
94 {
95   struct PeerContext *p = cls;
96
97   /* Find PeerContext */
98   GNUNET_assert (p != 0);
99   GNUNET_assert (p->tth != NULL);
100   struct PeerContext *p2 = find_peer_context (p->tth, peer);
101
102   if (p == NULL)
103     return;
104   if (p->nc != NULL)
105     p->nc (p->cb_cls, peer, ats, ats_count);
106
107 #if VERBOSE
108   char *p2_s;
109
110   if (p2 != NULL)
111     GNUNET_asprintf (&p2_s, "%u (`%s')", p2->no, GNUNET_i2s (&p2->id));
112   else
113     GNUNET_asprintf (&p2_s, "`%s'", GNUNET_i2s (peer));
114   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
115                    "Peers %s connected to peer %u (`%s')\n", p2_s, p->no,
116                    GNUNET_i2s (&p->id));
117   GNUNET_free (p2_s);
118 #endif
119
120
121   /* Find ConnectingContext */
122   struct ConnectingContext *cc = find_connecting_context (p->tth, p, p2);
123
124   if (cc == NULL)
125     return;
126
127   if (p == cc->p1)
128     cc->p1_c = GNUNET_YES;
129
130   if (p == cc->p2)
131     cc->p2_c = GNUNET_YES;
132
133   if ((cc->p1_c == GNUNET_YES) && (cc->p2_c == GNUNET_YES))
134   {
135     cc->cb (cc->p1, cc->p2, cc->cb_cls);
136     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (p->tth, cc);
137   }
138 }
139
140 static void
141 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
142 {
143   struct PeerContext *p = cls;
144
145   /* Find PeerContext */
146   int no = 0;
147   struct PeerContext *p2 = NULL;
148
149   if (p != NULL)
150   {
151     GNUNET_assert (p->tth != NULL);
152     p2 = find_peer_context (p->tth, peer);
153     no = p->no;
154   }
155
156   char *p2_s;
157
158   if (p2 != NULL)
159     GNUNET_asprintf (&p2_s, "%u (`%s')", p2->no, GNUNET_i2s (&p2->id));
160   else
161     GNUNET_asprintf (&p2_s, "`%s'", GNUNET_i2s (peer));
162   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
163                    "Peers %s disconnected from peer %u (`%s')\n", p2_s, no,
164                    GNUNET_i2s (&p->id));
165   GNUNET_free (p2_s);
166
167   if (p == NULL)
168     return;
169   if (p->nd != NULL)
170     p->nd (p->cb_cls, peer);
171 }
172
173 static void
174 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
175                 const struct GNUNET_MessageHeader *message,
176                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
177 {
178   struct PeerContext *p = cls;
179
180   if (p == NULL)
181     return;
182   if (p->rec != NULL)
183     p->rec (p->cb_cls, peer, message, ats, ats_count);
184 }
185
186 static void
187 get_hello (void *cb_cls, const struct GNUNET_MessageHeader *message)
188 {
189   struct PeerContext *p = cb_cls;
190
191   GNUNET_assert (message != NULL);
192   GNUNET_assert (GNUNET_OK ==
193                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
194                                       message, &p->id));
195 #if VERBOSE
196   size_t size =
197       GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message *) message);
198 #endif
199   GNUNET_free_non_null (p->hello);
200   p->hello = (struct GNUNET_HELLO_Message *) GNUNET_copy_message (message);
201
202 #if VERBOSE
203   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
204                    "New HELLO for peer %u (`%s') with size %u\n", p->no,
205                    GNUNET_i2s (&p->id), size);
206 #endif
207
208   if (p->start_cb != NULL)
209   {
210 #if VERBOSE
211     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
212                      "Peer %u (`%s') successfully started\n", p->no,
213                      GNUNET_i2s (&p->id));
214 #endif
215     p->start_cb (p, p->cb_cls);
216     p->start_cb = NULL;
217   }
218 }
219
220
221 static void
222 try_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
223 {
224   struct ConnectingContext *cc = cls;
225   struct PeerContext *p1 = cc->p1;
226   struct PeerContext *p2 = cc->p2;
227
228   cc->tct = GNUNET_SCHEDULER_NO_TASK;
229   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
230     return;
231
232   GNUNET_assert (cc != NULL);
233   GNUNET_assert (cc->p1 != NULL);
234   GNUNET_assert (cc->p2 != NULL);
235
236   char *p2_s = GNUNET_strdup (GNUNET_i2s (&p2->id));
237
238   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
239                    "Asking peer %u (`%s') to connect peer %u (`%s'), providing HELLO with %u bytes\n",
240                    p1->no, GNUNET_i2s (&p1->id), p2->no, p2_s,
241                    GNUNET_HELLO_size (cc->p2->hello));
242   GNUNET_free (p2_s);
243
244   GNUNET_TRANSPORT_offer_hello (cc->th_p1,
245                                 (const struct GNUNET_MessageHeader *) cc->
246                                 p2->hello, NULL, NULL);
247   GNUNET_TRANSPORT_try_connect (cc->th_p1, &p2->id);
248
249   cc->tct =
250       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &try_connect, cc);
251 }
252
253
254 /**
255  * Start a peer with the given configuration
256  * @param rec receive callback
257  * @param nc connect callback
258  * @param nd disconnect callback
259  * @param cb_cls closure for callback
260  * @return the peer context
261  */
262 struct PeerContext *
263 GNUNET_TRANSPORT_TESTING_start_peer (struct GNUNET_TRANSPORT_TESTING_handle
264                                      *tth, const char *cfgname, int peer_id,
265                                      GNUNET_TRANSPORT_ReceiveCallback rec,
266                                      GNUNET_TRANSPORT_NotifyConnect nc,
267                                      GNUNET_TRANSPORT_NotifyDisconnect nd,
268                                      GNUNET_TRANSPORT_TESTING_start_cb start_cb,
269                                      void *cb_cls)
270 {
271   const char *hostkey = NULL;
272   struct GNUNET_DISK_FileHandle *fn;
273
274   GNUNET_assert (tth != NULL);
275   if (GNUNET_DISK_file_test (cfgname) == GNUNET_NO)
276   {
277     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "transport-testing",
278                      "File not found: `%s' \n", cfgname);
279     return NULL;
280   }
281
282   struct PeerContext *p = GNUNET_malloc (sizeof (struct PeerContext));
283
284   p->cfg = GNUNET_CONFIGURATION_create ();
285   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
286
287   if (GNUNET_CONFIGURATION_have_value (p->cfg, "PATHS", "SERVICEHOME"))
288     GNUNET_assert (GNUNET_OK ==
289                    GNUNET_CONFIGURATION_get_value_string (p->cfg, "PATHS",
290                                                           "SERVICEHOME",
291                                                           &p->servicehome));
292
293   if (NULL != p->servicehome)
294     GNUNET_DISK_directory_remove (p->servicehome);
295
296   hostkey = get_host_key (tth);
297   if (hostkey != NULL)
298   {
299
300     GNUNET_asprintf (&p->hostkeyfile, "%s/.hostkey", p->servicehome);
301     GNUNET_assert (GNUNET_OK ==
302                    GNUNET_DISK_directory_create_for_file (p->hostkeyfile));
303     fn = GNUNET_DISK_file_open (p->hostkeyfile,
304                                 GNUNET_DISK_OPEN_READWRITE |
305                                 GNUNET_DISK_OPEN_CREATE,
306                                 GNUNET_DISK_PERM_USER_READ |
307                                 GNUNET_DISK_PERM_USER_WRITE);
308     GNUNET_assert (fn != NULL);
309     GNUNET_assert (HOSTKEYFILESIZE ==
310                    GNUNET_DISK_file_write (fn, hostkey, HOSTKEYFILESIZE));
311     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fn));
312     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
313                      "Wrote hostkey to file: `%s' \n", p->hostkeyfile);
314   }
315
316   p->arm_proc =
317       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
318                                "gnunet-service-arm", "-c", cfgname,
319 #if VERBOSE_PEERS
320                                "-L", "DEBUG",
321 #else
322                                "-L", "ERROR",
323 #endif
324                                NULL);
325
326   p->no = peer_id;
327   p->tth = tth;
328   p->nc = nc;
329   p->nd = nd;
330   p->rec = rec;
331   p->start_cb = start_cb;
332   if (cb_cls != NULL)
333     p->cb_cls = cb_cls;
334   else
335     p->cb_cls = p;
336
337   p->th =
338       GNUNET_TRANSPORT_connect (p->cfg, NULL, p, &notify_receive,
339                                 &notify_connect, &notify_disconnect);
340   GNUNET_assert (p->th != NULL);
341
342   p->ghh = GNUNET_TRANSPORT_get_hello (p->th, &get_hello, p);
343   GNUNET_assert (p->ghh != NULL);
344
345   GNUNET_CONTAINER_DLL_insert (tth->p_head, tth->p_tail, p);
346
347   return p;
348 }
349
350 /**
351 * Restart the given peer
352 * @param tth testing handle
353 * @param p the peer
354 * @param cfgname the cfg file used to restart
355 * @return GNUNET_OK in success otherwise GNUNET_SYSERR
356 */
357 int
358 GNUNET_TRANSPORT_TESTING_restart_peer (struct GNUNET_TRANSPORT_TESTING_handle
359                                        *tth, struct PeerContext *p,
360                                        const char *cfgname,
361                                        GNUNET_TRANSPORT_TESTING_start_cb
362                                        restart_cb, void *cb_cls)
363 {
364   struct GNUNET_DISK_FileHandle *fn;
365
366   GNUNET_assert (tth != NULL);
367   GNUNET_assert (p != NULL);
368   GNUNET_assert (p->hostkeyfile != NULL);
369   GNUNET_assert (p->servicehome != NULL);
370
371   /* shutdown */
372 #if VERBOSE
373   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
374                    "Stopping peer %u (`%s')\n", p->no, GNUNET_i2s (&p->id));
375 #endif
376   if (p->ghh != NULL)
377     GNUNET_TRANSPORT_get_hello_cancel (p->ghh);
378   p->ghh = NULL;
379
380   if (p->th != NULL)
381     GNUNET_TRANSPORT_disconnect (p->th);
382
383   if (NULL != p->arm_proc)
384   {
385     if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
386       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
387     GNUNET_OS_process_wait (p->arm_proc);
388     GNUNET_OS_process_close (p->arm_proc);
389     p->arm_proc = NULL;
390   }
391   if (p->hello != NULL)
392     GNUNET_free (p->hello);
393   p->hello = NULL;
394
395   if (p->cfg != NULL)
396     GNUNET_CONFIGURATION_destroy (p->cfg);
397   p->cfg = NULL;
398
399
400   /* start */
401 #if VERBOSE
402   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
403                    "Restarting peer %u (`%s')\n", p->no, GNUNET_i2s (&p->id));
404 #endif
405
406   sleep (5);                    // YUCK!
407
408   if (GNUNET_DISK_file_test (cfgname) == GNUNET_NO)
409   {
410     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "transport-testing",
411                      "File not found: `%s' \n", cfgname);
412     goto fail;
413   }
414
415   p->cfg = GNUNET_CONFIGURATION_create ();
416   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
417
418   if (!GNUNET_CONFIGURATION_have_value (p->cfg, "PATHS", "SERVICEHOME"))
419     goto fail;
420
421   fn = GNUNET_DISK_file_open (p->hostkeyfile,
422                               GNUNET_DISK_OPEN_READWRITE |
423                               GNUNET_DISK_OPEN_CREATE,
424                               GNUNET_DISK_PERM_USER_READ |
425                               GNUNET_DISK_PERM_USER_WRITE);
426   if (fn == NULL)
427     goto fail;
428   if (GNUNET_OK != GNUNET_DISK_file_close (fn))
429     goto fail;
430
431   p->arm_proc =
432       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
433                                "gnunet-service-arm", "-c", cfgname,
434 #if VERBOSE_PEERS
435                                "-L", "DEBUG",
436 #else
437                                "-L", "ERROR",
438 #endif
439                                NULL);
440
441   p->th =
442       GNUNET_TRANSPORT_connect (p->cfg, NULL, p, &notify_receive,
443                                 &notify_connect, &notify_disconnect);
444   GNUNET_assert (p->th != NULL);
445
446   p->start_cb = restart_cb;
447   p->cb_cls = cb_cls;
448
449   p->ghh = GNUNET_TRANSPORT_get_hello (p->th, &get_hello, p);
450   GNUNET_assert (p->ghh != NULL);
451   return GNUNET_OK;
452
453 fail:
454   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
455                    "Restarting peer %u (`%s') failed, removing peer\n", p->no,
456                    GNUNET_i2s (&p->id));
457   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p);
458   return GNUNET_SYSERR;
459 }
460
461 /**
462  * shutdown the given peer
463  * @param p the peer
464  */
465 void
466 GNUNET_TRANSPORT_TESTING_stop_peer (struct GNUNET_TRANSPORT_TESTING_handle *tth,
467                                     struct PeerContext *p)
468 {
469   GNUNET_assert (p != NULL);
470
471   if (p->ghh != NULL)
472     GNUNET_TRANSPORT_get_hello_cancel (p->ghh);
473   p->ghh = NULL;
474
475   if (p->th != NULL)
476     GNUNET_TRANSPORT_disconnect (p->th);
477
478   if (NULL != p->arm_proc)
479   {
480     if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
481       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
482     GNUNET_OS_process_wait (p->arm_proc);
483     GNUNET_OS_process_close (p->arm_proc);
484     p->arm_proc = NULL;
485   }
486
487   if (p->hostkeyfile != NULL)
488   {
489     GNUNET_DISK_directory_remove (p->hostkeyfile);
490     GNUNET_free (p->hostkeyfile);
491   }
492
493   if (p->servicehome != NULL)
494   {
495     GNUNET_DISK_directory_remove (p->servicehome);
496     GNUNET_free (p->servicehome);
497   }
498
499   if (p->hello != NULL)
500     GNUNET_free (p->hello);
501   p->hello = NULL;
502
503   if (p->cfg != NULL)
504     GNUNET_CONFIGURATION_destroy (p->cfg);
505   p->cfg = NULL;
506
507   GNUNET_CONTAINER_DLL_remove (tth->p_head, tth->p_tail, p);
508
509   GNUNET_free (p);
510   p = NULL;
511 }
512
513 /**
514  * Initiate peer p1 to connect to peer p2
515  * Get peer p2's HELLO and offer it to p1
516  * p1 then tries to connect to p2
517  * @param p1 peer 1
518  * @param p2 peer 2
519  * @param cb the callback to call when both peers notified that they are connected
520  * @param cb_cls callback cls (or a pointer to the
521  *        GNUNET_TRANSPORT_TESTING_ConnectRequest itself if null)
522  * @return connect context
523  */
524 GNUNET_TRANSPORT_TESTING_ConnectRequest
525 GNUNET_TRANSPORT_TESTING_connect_peers (struct GNUNET_TRANSPORT_TESTING_handle
526                                         *tth, struct PeerContext *p1,
527                                         struct PeerContext *p2,
528                                         GNUNET_TRANSPORT_TESTING_connect_cb cb,
529                                         void *cb_cls)
530 {
531   GNUNET_assert (tth != NULL);
532
533   struct ConnectingContext *cc =
534       GNUNET_malloc (sizeof (struct ConnectingContext));
535
536   GNUNET_assert (p1 != NULL);
537   GNUNET_assert (p2 != NULL);
538
539   cc->p1 = p1;
540   cc->p2 = p2;
541
542   cc->cb = cb;
543   if (cb_cls != NULL)
544     cc->cb_cls = cb_cls;
545   else
546     cc->cb_cls = cc;
547
548   cc->th_p1 = p1->th;
549   cc->th_p2 = p2->th;
550
551   GNUNET_assert (cc->th_p1 != NULL);
552   GNUNET_assert (cc->th_p2 != NULL);
553
554   GNUNET_CONTAINER_DLL_insert (tth->cc_head, tth->cc_tail, cc);
555
556   cc->tct = GNUNET_SCHEDULER_add_now (&try_connect, cc);
557   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
558                    "New connect request %X\n", cc);
559
560   return cc;
561 }
562
563 /**
564  * Cancel the request to connect two peers
565  * Tou MUST cancel the request if you stop the peers before the peers connected succesfully
566  * @param cc a connect request handle
567  */
568 void
569 GNUNET_TRANSPORT_TESTING_connect_peers_cancel (struct
570                                                GNUNET_TRANSPORT_TESTING_handle
571                                                *tth,
572                                                GNUNET_TRANSPORT_TESTING_ConnectRequest
573                                                ccr)
574 {
575   struct ConnectingContext *cc = ccr;
576
577   GNUNET_assert (tth != NULL);
578
579   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
580                    "Canceling connect request %X!\n", cc);
581
582   if (cc->tct != GNUNET_SCHEDULER_NO_TASK)
583     GNUNET_SCHEDULER_cancel (cc->tct);
584   cc->tct = GNUNET_SCHEDULER_NO_TASK;
585
586   GNUNET_CONTAINER_DLL_remove (tth->cc_head, tth->cc_tail, cc);
587   GNUNET_free (cc);
588 }
589
590
591 /**
592  * Clean up the transport testing
593  * @param tth transport testing handle
594  */
595 void
596 GNUNET_TRANSPORT_TESTING_done (struct GNUNET_TRANSPORT_TESTING_handle *tth)
597 {
598   struct ConnectingContext *cc = tth->cc_head;
599   struct ConnectingContext *ct = NULL;
600   struct PeerContext *p = tth->p_head;
601   struct PeerContext *t = NULL;
602
603   GNUNET_assert (tth != NULL);
604
605   while (cc != tth->cc_tail)
606   {
607     ct = cc->next;
608     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "transport-testing",
609                      "Developer forgot to cancel connect request %X!\n", cc);
610     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
611     cc = ct;
612   }
613
614   while (p != NULL)
615   {
616     t = p->next;
617     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "transport-testing",
618                      "Developer forgot to stop peer!\n");
619     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p);
620     p = t;
621   }
622
623   GNUNET_free_non_null (tth->hostkey_data);
624
625   GNUNET_free (tth);
626   tth = NULL;
627 }
628
629 /**
630  * Initialize the transport testing
631  * @return transport testing handle
632  */
633 struct GNUNET_TRANSPORT_TESTING_handle *
634 GNUNET_TRANSPORT_TESTING_init ()
635 {
636   struct GNUNET_TRANSPORT_TESTING_handle *tth;
637   struct GNUNET_DISK_FileHandle *fd;
638   uint64_t fs;
639   uint64_t total_hostkeys;
640
641
642   /* prepare hostkeys */
643   tth = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_TESTING_handle));
644   tth->hostkey_data = NULL;
645   const char *hostkeys_file = "../../contrib/testing_hostkeys.dat";
646
647   if (GNUNET_YES != GNUNET_DISK_file_test (hostkeys_file))
648   {
649     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not read hostkeys file!\n"));
650   }
651   else
652   {
653     /* Check hostkey file size, read entire thing into memory */
654     fd = GNUNET_DISK_file_open (hostkeys_file, GNUNET_DISK_OPEN_READ,
655                                 GNUNET_DISK_PERM_NONE);
656     if (NULL == fd)
657     {
658       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open", hostkeys_file);
659       GNUNET_free (tth);
660       return NULL;
661     }
662
663     if (GNUNET_YES != GNUNET_DISK_file_size (hostkeys_file, &fs, GNUNET_YES))
664       fs = 0;
665
666     if (0 != (fs % HOSTKEYFILESIZE))
667     {
668       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "transport-testing",
669                        "File size %llu seems incorrect for hostkeys...\n", fs);
670     }
671     else
672     {
673       total_hostkeys = fs / HOSTKEYFILESIZE;
674       tth->hostkey_data = GNUNET_malloc_large (fs);
675       GNUNET_assert (fs == GNUNET_DISK_file_read (fd, tth->hostkey_data, fs));
676       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
677                        "Read %llu hostkeys from file\n", total_hostkeys);
678       tth->hostkeys_total = total_hostkeys;
679     }
680     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fd));
681   }
682
683   return tth;
684 }
685
686
687 /*
688  * Some utility functions
689  */
690
691 /**
692  * Removes all directory separators from absolute filename
693  * @param file the absolute file name, e.g. as found in argv[0]
694  * @return extracted file name, has to be freed by caller
695  */
696 static char *
697 extract_filename (const char *file)
698 {
699   char *pch = GNUNET_strdup (file);
700   char *backup = pch;
701   char *filename = NULL;
702   char *res;
703
704   if (NULL != strstr (pch, "/"))
705   {
706     pch = strtok (pch, "/");
707     while (pch != NULL)
708     {
709       pch = strtok (NULL, "/");
710       if (pch != NULL)
711       {
712         filename = pch;
713       }
714     }
715   }
716   else
717     filename = pch;
718
719   res = GNUNET_strdup (filename);
720   GNUNET_free (backup);
721   return res;
722 }
723
724 /**
725  * Extracts the test filename from an absolute file name and removes the extension
726  * @param file absolute file name
727  * @param dest where to store result
728  */
729 void
730 GNUNET_TRANSPORT_TESTING_get_test_name (const char *file, char **dest)
731 {
732   char *filename = extract_filename (file);
733   char *backup = filename;
734   char *dotexe;
735
736   if (filename == NULL)
737     goto fail;
738
739   /* remove "lt-" */
740   filename = strstr (filename, "tes");
741   if (filename == NULL)
742     goto fail;
743
744   /* remove ".exe" */
745   if (NULL != (dotexe = strstr (filename, ".exe")))
746     dotexe[0] = '\0';
747
748   goto suc;
749
750 fail:
751   (*dest) = NULL;
752   return;
753
754 suc:
755   /* create filename */
756   GNUNET_asprintf (dest, "%s", filename);
757   GNUNET_free (backup);
758 }
759
760
761 /**
762  * Extracts the filename from an absolute file name and removes the extension
763  * @param file absolute file name
764  * @param dest where to store result
765  */
766 void
767 GNUNET_TRANSPORT_TESTING_get_test_source_name (const char *file, char **dest)
768 {
769   char *src = extract_filename (file);
770   char *split;
771
772   split = strstr (src, ".");
773   if (split != NULL)
774   {
775     split[0] = '\0';
776   }
777   GNUNET_asprintf (dest, "%s", src);
778   GNUNET_free (src);
779 }
780
781
782 /**
783  * Extracts the plugin anme from an absolute file name and the test name
784  * @param file absolute file name
785  * @param test test name
786  * @param dest where to store result
787  */
788 void
789 GNUNET_TRANSPORT_TESTING_get_test_plugin_name (const char *file,
790                                                const char *test, char **dest)
791 {
792   char *e = extract_filename (file);
793   char *t = extract_filename (test);
794
795   char *filename = NULL;
796   char *dotexe;
797
798   if (e == NULL)
799     goto fail;
800
801   /* remove "lt-" */
802   filename = strstr (e, "tes");
803   if (filename == NULL)
804     goto fail;
805
806   /* remove ".exe" */
807   if (NULL != (dotexe = strstr (filename, ".exe")))
808     dotexe[0] = '\0';
809
810   /* find last _ */
811   filename = strstr (filename, t);
812   if (filename == NULL)
813     goto fail;
814
815   /* copy plugin */
816   filename += strlen (t);
817   filename++;
818   GNUNET_asprintf (dest, "%s", filename);
819   goto suc;
820
821 fail:
822   (*dest) = NULL;
823 suc:
824   GNUNET_free (t);
825   GNUNET_free (e);
826
827 }
828
829 /**
830  * This function takes the filename (e.g. argv[0), removes a "lt-"-prefix and
831  * if existing ".exe"-prefix and adds the peer-number
832  * @param file filename of the test, e.g. argv[0]
833  * @param cfgname where to write the result
834  * @param count peer number
835  */
836 void
837 GNUNET_TRANSPORT_TESTING_get_config_name (const char *file, char **dest,
838                                           int count)
839 {
840   char *filename = extract_filename (file);
841   char *backup = filename;
842   char *dotexe;
843
844   if (filename == NULL)
845     goto fail;
846
847   /* remove "lt-" */
848   filename = strstr (filename, "tes");
849   if (filename == NULL)
850     goto fail;
851
852   /* remove ".exe" */
853   if (NULL != (dotexe = strstr (filename, ".exe")))
854     dotexe[0] = '\0';
855
856   goto suc;
857
858 fail:
859   (*dest) = NULL;
860   return;
861
862 suc:
863   /* create cfg filename */
864   GNUNET_asprintf (dest, "%s_peer%u.conf", filename, count);
865   GNUNET_free (backup);
866 }
867
868
869
870 /* end of transport_testing.h */