tests now use GNUNET_OS_check_helper_binary to find helper executables
[oweals/gnunet.git] / src / transport / test_transport_api_unreliability.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 transport/test_transport_api_unreliability.c
22  * @brief test case for transports; ensures messages get
23  *        through, regardless of order
24  *
25  * This test case serves as a base for unreliable
26  * transport test cases to check that the transports
27  * achieve reliable message delivery.
28  */
29 #include "platform.h"
30 #include "gnunet_common.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_scheduler_lib.h"
36 #include "gnunet_server_lib.h"
37 #include "gnunet_transport_service.h"
38 #include "gauger.h"
39 #include "transport.h"
40 #include "transport-testing.h"
41
42 #define VERBOSE GNUNET_NO
43
44 #define VERBOSE_ARM GNUNET_NO
45
46 #define START_ARM GNUNET_YES
47
48 /**
49  * Note that this value must not significantly exceed
50  * 'MAX_PENDING' in 'gnunet-service-transport.c', otherwise
51  * messages may be dropped even for a reliable transport.
52  */
53 #define TOTAL_MSGS (1024 * 3)   /* Total messages should be divisible by 8, so we can make a nice bitmap */
54
55 /**
56  * How long until we give up on transmitting the message?
57  */
58 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1500)
59
60 #define UNRELIABLE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
61
62 #define MTYPE 12345
63
64 static struct PeerContext p1;
65
66 static struct PeerContext p2;
67
68 static int ok;
69
70 static int is_tcp;
71
72 static int is_tcp_nat;
73
74 static int is_http;
75
76 static int is_https;
77
78 static int is_udp;
79
80 static int is_unix;
81
82 static int is_wlan;
83
84 static int connected;
85
86 static unsigned long long total_bytes;
87
88 static struct GNUNET_TIME_Absolute start_time;
89
90 static GNUNET_SCHEDULER_TaskIdentifier die_task;
91
92 static GNUNET_SCHEDULER_TaskIdentifier tct;
93
94 struct GNUNET_TRANSPORT_TransmitHandle *th_p2;
95
96 static char *key_file_p1;
97 static char *cert_file_p1;
98
99 static char *key_file_p2;
100 static char *cert_file_p2;
101
102 static char *test_name;
103
104 static char bitmap[TOTAL_MSGS / 8];
105
106 static int msg_scheduled;
107 static int msg_sent;
108 static int msg_recv_expected;
109 static int msg_recv;
110
111 static int p1_hello_canceled;
112 static int p2_hello_canceled;
113
114 static int test_failed;
115
116 /**
117  * Sets a bit active in the bitmap.
118  *
119  * @param bitIdx which bit to set
120  */
121 static void
122 set_bit (unsigned int bitIdx)
123 {
124   size_t arraySlot;
125   unsigned int targetBit;
126
127   if (bitIdx >= sizeof (bitmap) * 8)
128   {
129     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "tried to set bit %d of %d(!?!?)\n",
130                 bitIdx, sizeof (bitmap) * 8);
131     return;
132   }
133   arraySlot = bitIdx / 8;
134   targetBit = (1L << (bitIdx % 8));
135   bitmap[arraySlot] |= targetBit;
136 }
137
138 /**
139  * Obtain a bit from bitmap.
140  * @param map the bitmap
141  * @param bit index from bitmap
142  *
143  * @return Bit \a bit from hashcode \a code
144  */
145 int
146 get_bit (const char *map, unsigned int bit)
147 {
148   if (bit >= TOTAL_MSGS)
149   {
150     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "get bit %d of %d(!?!?)\n", bit,
151                 sizeof (bitmap) * 8);
152     return 0;
153   }
154   return ((map)[bit >> 3] & (1 << (bit & 7))) > 0;
155 }
156
157 static void
158 end ()
159 {
160   unsigned long long delta;
161   int i;
162   int result;
163   char *value_name;
164
165   result = 0;
166   for (i = 0; i < TOTAL_MSGS; i++)
167   {
168     if (get_bit (bitmap, i) == 0)
169     {
170       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Did not receive message %d\n", i);
171       result = -1;
172     }
173   }
174
175   if (GNUNET_SCHEDULER_NO_TASK != die_task)
176     GNUNET_SCHEDULER_cancel (die_task);
177   die_task = GNUNET_SCHEDULER_NO_TASK;
178 #if VERBOSE
179   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from transports!\n");
180 #endif
181   if (th_p2 != NULL)
182     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th_p2);
183   th_p2 = NULL;
184
185   GNUNET_TRANSPORT_disconnect (p1.th);
186   GNUNET_TRANSPORT_disconnect (p2.th);
187 #if VERBOSE
188   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
189               "Transports disconnected, returning success!\n");
190 #endif
191   delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value;
192   GNUNET_asprintf (&value_name, "unreliable_%s", test_name);
193   GAUGER ("TRANSPORT", value_name, (int) (total_bytes * 1000 / 1024 / delta),
194           "kb/s");
195   GNUNET_free (value_name);
196   fprintf (stderr, "\nThroughput was %llu kb/s\n",
197            total_bytes * 1000 / 1024 / delta);
198   ok = result;
199
200 }
201
202 static void
203 end_unreliably ()
204 {
205   unsigned long long delta;
206   int i;
207   int num_failed;
208   char *value_name;
209
210   num_failed = 0;
211   for (i = 0; i < TOTAL_MSGS; i++)
212   {
213     if (get_bit (bitmap, i) == 0)
214     {
215       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Did not receive message %d\n", i);
216       num_failed++;
217     }
218   }
219
220   die_task = GNUNET_SCHEDULER_NO_TASK;
221 #if VERBOSE
222   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from transports!\n");
223 #endif
224   if (th_p2 != NULL)
225     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th_p2);
226
227   GNUNET_TRANSPORT_disconnect (p1.th);
228   GNUNET_TRANSPORT_disconnect (p2.th);
229 #if VERBOSE
230   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
231               "Transports disconnected, returning success!\n");
232 #endif
233   delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value;
234   fprintf (stderr, "\nThroughput was %llu kb/s\n",
235            total_bytes * 1000 / 1024 / delta);
236   GNUNET_asprintf (&value_name, "unreliable_%s", test_name);
237   GAUGER ("TRANSPORT", value_name, (int) (total_bytes * 1000 / 1024 / delta),
238           "kb/s");
239   GNUNET_free (value_name);
240   GNUNET_asprintf (&value_name, "unreliable_failed_%s", test_name);
241   GAUGER ("TRANSPORT", value_name, (int) num_failed, "msgs");
242   GNUNET_free (value_name);
243   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Had %d failed messages!\n",
244               num_failed);
245   ok = 0;
246
247 }
248
249
250
251 static void
252 stop_arm (struct PeerContext *p)
253 {
254 #if START_ARM
255   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
256     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
257   GNUNET_OS_process_wait (p->arm_proc);
258   GNUNET_OS_process_close (p->arm_proc);
259   p->arm_proc = NULL;
260 #endif
261   GNUNET_CONFIGURATION_destroy (p->cfg);
262 }
263
264
265
266 static void
267 exchange_hello_last (void *cls, const struct GNUNET_MessageHeader *message)
268 {
269   struct PeerContext *me = cls;
270
271   GNUNET_assert (message != NULL);
272   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
273               "Exchanging HELLO of size %d with peer (%s)!\n",
274               (int) GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message *)
275                                        message), GNUNET_i2s (&me->id));
276   GNUNET_assert (GNUNET_OK ==
277                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
278                                       message, &me->id));
279   GNUNET_TRANSPORT_offer_hello (p1.th, message, NULL, NULL);
280 }
281
282
283
284 static void
285 exchange_hello (void *cls, const struct GNUNET_MessageHeader *message)
286 {
287   struct PeerContext *me = cls;
288
289   GNUNET_assert (message != NULL);
290   GNUNET_assert (GNUNET_OK ==
291                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
292                                       message, &me->id));
293   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
294               "Exchanging HELLO of size %d from peer %s!\n",
295               (int) GNUNET_HELLO_size ((const struct GNUNET_HELLO_Message *)
296                                        message), GNUNET_i2s (&me->id));
297   GNUNET_TRANSPORT_offer_hello (p2.th, message, NULL, NULL);
298 }
299
300
301
302 static void
303 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
304 {
305   if (test_failed == GNUNET_NO)
306     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Testcase timeout\n");
307   else
308     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
309                 "Reliability failed: Last message sent %u, Next message scheduled %u, Last message received %u, Message expected %u\n",
310                 msg_sent, msg_scheduled, msg_recv, msg_recv_expected);
311
312   GNUNET_break (0);
313   if (th_p2 != NULL)
314   {
315     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th_p2);
316     th_p2 = NULL;
317   }
318   if (p2_hello_canceled == GNUNET_NO)
319   {
320     GNUNET_TRANSPORT_get_hello_cancel (p2.th, &exchange_hello_last, &p2);
321     p2_hello_canceled = GNUNET_YES;
322   }
323   if (p1_hello_canceled == GNUNET_NO)
324   {
325     GNUNET_TRANSPORT_get_hello_cancel (p1.th, &exchange_hello, &p1);
326     p1_hello_canceled = GNUNET_YES;
327   }
328   GNUNET_TRANSPORT_disconnect (p1.th);
329   GNUNET_TRANSPORT_disconnect (p2.th);
330   if (GNUNET_SCHEDULER_NO_TASK != tct)
331   {
332     GNUNET_SCHEDULER_cancel (tct);
333     tct = GNUNET_SCHEDULER_NO_TASK;
334   }
335   ok = 1;
336 }
337
338
339
340 struct TestMessage
341 {
342   struct GNUNET_MessageHeader header;
343   uint32_t num;
344 };
345
346
347 static unsigned int
348 get_size (unsigned int iter)
349 {
350   unsigned int ret;
351
352   ret = (iter * iter * iter);
353   return sizeof (struct TestMessage) + (ret % 60000);
354 }
355
356
357 static void
358 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
359                 const struct GNUNET_MessageHeader *message,
360                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
361                 uint32_t ats_count)
362 {
363   static int n;
364   unsigned int s;
365   char cbuf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
366   const struct TestMessage *hdr;
367
368   hdr = (const struct TestMessage *) message;
369
370   if (MTYPE != ntohs (message->type))
371     return;
372   msg_recv_expected = n;
373   msg_recv = ntohl (hdr->num);
374   s = get_size (ntohl (hdr->num));
375
376   if (ntohs (message->size) != s)
377   {
378     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
379                 "Expected message %u of size %u, got %u bytes of message %u\n",
380                 ntohl (hdr->num), s, ntohs (message->size), ntohl (hdr->num));
381     if (GNUNET_SCHEDULER_NO_TASK != die_task)
382       GNUNET_SCHEDULER_cancel (die_task);
383     test_failed = GNUNET_YES;
384     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
385     return;
386   }
387
388   memset (cbuf, ntohl (hdr->num), s - sizeof (struct TestMessage));
389   if (0 != memcmp (cbuf, &hdr[1], s - sizeof (struct TestMessage)))
390   {
391     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
392                 "Expected message %u with bits %u, but body did not match\n",
393                 ntohl (hdr->num), (unsigned char) n);
394     if (GNUNET_SCHEDULER_NO_TASK != die_task)
395       GNUNET_SCHEDULER_cancel (die_task);
396     test_failed = GNUNET_YES;
397     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
398     return;
399   }
400 #if VERBOSE
401   if (ntohl (hdr->num) % 5 == 0)
402   {
403     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got message %u of size %u\n",
404                 ntohl (hdr->num), ntohs (message->size));
405   }
406 #endif
407   n++;
408   set_bit (ntohl (hdr->num));
409   if (0 == (n % (TOTAL_MSGS / 100)))
410   {
411     fprintf (stderr, ".");
412     if (GNUNET_SCHEDULER_NO_TASK != die_task)
413       GNUNET_SCHEDULER_cancel (die_task);
414     test_failed = GNUNET_YES;
415     die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
416   }
417   if (n == TOTAL_MSGS)
418     end ();
419 }
420
421
422 static size_t
423 notify_ready (void *cls, size_t size, void *buf)
424 {
425   static int n;
426   char *cbuf = buf;
427   struct TestMessage hdr;
428   unsigned int s;
429   unsigned int ret;
430
431   th_p2 = NULL;
432
433   if (buf == NULL)
434   {
435     GNUNET_break (0);
436     ok = 42;
437     return 0;
438   }
439   ret = 0;
440   s = get_size (n);
441   GNUNET_assert (size >= s);
442   GNUNET_assert (buf != NULL);
443   cbuf = buf;
444   do
445   {
446     hdr.header.size = htons (s);
447     hdr.header.type = htons (MTYPE);
448     hdr.num = htonl (n);
449     msg_sent = n;
450     memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage));
451     ret += sizeof (struct TestMessage);
452     memset (&cbuf[ret], n, s - sizeof (struct TestMessage));
453     ret += s - sizeof (struct TestMessage);
454 #if VERBOSE
455     if (n % 5000 == 0)
456     {
457       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending message %u of size %u\n", n,
458                   s);
459     }
460 #endif
461     n++;
462     s = get_size (n);
463     if (0 == GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16))
464       break;                    /* sometimes pack buffer full, sometimes not */
465   }
466   while (size - ret >= s);
467   if (n < TOTAL_MSGS)
468   {
469     th_p2 =
470         GNUNET_TRANSPORT_notify_transmit_ready (p2.th, &p1.id, s, 0, TIMEOUT,
471                                                 &notify_ready, NULL);
472     msg_scheduled = n;
473   }
474   else
475   {
476     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
477                 "All messages scheduled to be sent!!\n");
478     if (GNUNET_SCHEDULER_NO_TASK != die_task)
479       GNUNET_SCHEDULER_cancel (die_task);
480     die_task =
481         GNUNET_SCHEDULER_add_delayed (UNRELIABLE_TIMEOUT, &end_unreliably,
482                                       NULL);
483   }
484   if (n % 5000 == 0)
485   {
486     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
487                 "Returning total message block of size %u\n", ret);
488   }
489   total_bytes += ret;
490   return ret;
491 }
492
493
494
495 static void
496 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
497 {
498   connected--;
499 #if VERBOSE
500   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
501               GNUNET_i2s (peer), cls);
502 #endif
503   if (th_p2 != NULL)
504   {
505     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th_p2);
506     th_p2 = NULL;
507   }
508 }
509
510
511
512 static void
513 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
514                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
515                 uint32_t ats_count)
516 {
517   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
518               GNUNET_i2s (peer), cls);
519   if (cls == &p1)
520   {
521     GNUNET_TRANSPORT_set_quota (p1.th, &p2.id,
522                                 GNUNET_BANDWIDTH_value_init (1024 * 1024 *
523                                                              1024),
524                                 GNUNET_BANDWIDTH_value_init (1024 * 1024 *
525                                                              1024));
526     start_time = GNUNET_TIME_absolute_get ();
527     connected++;
528   }
529   else
530   {
531     GNUNET_TRANSPORT_set_quota (p2.th, &p1.id,
532                                 GNUNET_BANDWIDTH_value_init (1024 * 1024 *
533                                                              1024),
534                                 GNUNET_BANDWIDTH_value_init (1024 * 1024 *
535                                                              1024));
536     connected++;
537   }
538   if (2 == connected)
539   {
540     if (GNUNET_SCHEDULER_NO_TASK != die_task)
541     {
542       GNUNET_SCHEDULER_cancel (die_task);
543     }
544     if (GNUNET_SCHEDULER_NO_TASK != tct)
545     {
546       GNUNET_SCHEDULER_cancel (tct);
547       tct = GNUNET_SCHEDULER_NO_TASK;
548     }
549     if (p2_hello_canceled == GNUNET_NO)
550     {
551       GNUNET_TRANSPORT_get_hello_cancel (p2.th, &exchange_hello_last, &p2);
552       p2_hello_canceled = GNUNET_YES;
553     }
554     if (p1_hello_canceled == GNUNET_NO)
555     {
556       GNUNET_TRANSPORT_get_hello_cancel (p1.th, &exchange_hello, &p1);
557       p1_hello_canceled = GNUNET_YES;
558     }
559
560     die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
561     GNUNET_TRANSPORT_notify_transmit_ready (p2.th, &p1.id, get_size (0), 0,
562                                             TIMEOUT, &notify_ready, NULL);
563
564   }
565 }
566
567
568 static void
569 setup_peer (struct PeerContext *p, const char *cfgname)
570 {
571   memset (p, 0, sizeof (*p));
572   p->cfg = GNUNET_CONFIGURATION_create ();
573
574   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
575   if (GNUNET_CONFIGURATION_have_value (p->cfg, "PATHS", "SERVICEHOME"))
576   {
577     GNUNET_assert (GNUNET_OK ==
578                    GNUNET_CONFIGURATION_get_value_string (p->cfg, "PATHS",
579                                                           "SERVICEHOME",
580                                                           &p->servicehome));
581     GNUNET_DISK_directory_remove (p->servicehome);
582   }
583
584
585 #if START_ARM
586   p->arm_proc =
587       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
588                                "gnunet-service-arm",
589 #if VERBOSE_ARM
590                                "-L", "DEBUG",
591 #endif
592                                "-c", cfgname, NULL);
593 #endif
594
595   p->th =
596       GNUNET_TRANSPORT_connect (p->cfg, NULL, p, &notify_receive,
597                                 &notify_connect, &notify_disconnect);
598   GNUNET_assert (p->th != NULL);
599 }
600
601 static void
602 try_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
603 {
604   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Asking peers to connect...\n");
605   GNUNET_TRANSPORT_try_connect (p2.th, &p1.id);
606   GNUNET_TRANSPORT_try_connect (p1.th, &p2.id);
607   tct =
608       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &try_connect,
609                                     NULL);
610 }
611
612
613
614 static void
615 run (void *cls, char *const *args, const char *cfgfile,
616      const struct GNUNET_CONFIGURATION_Handle *cfg)
617 {
618   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
619   if (is_tcp)
620   {
621     setup_peer (&p1, "test_transport_api_tcp_peer1.conf");
622     setup_peer (&p2, "test_transport_api_tcp_peer2.conf");
623   }
624   else if (is_http)
625   {
626     setup_peer (&p1, "test_transport_api_rel_http_peer1.conf");
627     setup_peer (&p2, "test_transport_api_rel_http_peer2.conf");
628   }
629   else if (is_https)
630   {
631     setup_peer (&p1, "test_transport_api_rel_https_peer1.conf");
632     setup_peer (&p2, "test_transport_api_rel_https_peer2.conf");
633   }
634   else if (is_udp)
635   {
636     setup_peer (&p1, "test_transport_api_udp_peer1.conf");
637     setup_peer (&p2, "test_transport_api_udp_peer2.conf");
638   }
639   else if (is_unix)
640   {
641     setup_peer (&p1, "test_transport_api_unix_peer1.conf");
642     setup_peer (&p2, "test_transport_api_unix_peer2.conf");
643   }
644   else if (is_tcp_nat)
645   {
646     setup_peer (&p1, "test_transport_api_tcp_nat_peer1.conf");
647     setup_peer (&p2, "test_transport_api_tcp_nat_peer2.conf");
648   }
649   else if (is_wlan)
650   {
651     setup_peer (&p1, "test_transport_api_wlan_peer1.conf");
652     setup_peer (&p2, "test_transport_api_wlan_peer2.conf");
653   }
654   else
655     GNUNET_assert (0);
656   GNUNET_assert (p1.th != NULL);
657   GNUNET_assert (p2.th != NULL);
658   GNUNET_TRANSPORT_get_hello (p1.th, &exchange_hello, &p1);
659   p1_hello_canceled = GNUNET_NO;
660   GNUNET_TRANSPORT_get_hello (p2.th, &exchange_hello_last, &p2);
661   p2_hello_canceled = GNUNET_NO;
662   tct = GNUNET_SCHEDULER_add_now (&try_connect, NULL);
663 }
664
665
666 static int
667 check ()
668 {
669   char *const argv[] = { "test-transport-api-unreliability",
670     "-c",
671     "test_transport_api_data.conf",
672 #if VERBOSE
673     "-L", "DEBUG",
674 #endif
675     NULL
676   };
677   struct GNUNET_GETOPT_CommandLineOption options[] = {
678     GNUNET_GETOPT_OPTION_END
679   };
680
681 #if WRITECONFIG
682   setTransportOptions ("test_transport_api_data.conf");
683 #endif
684   ok = 1;
685
686   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
687                       "test-transport-api-unreliability", "nohelp", options,
688                       &run, &ok);
689   stop_arm (&p1);
690   stop_arm (&p2);
691
692   if (is_https)
693   {
694     struct stat sbuf;
695
696     if (0 == stat (cert_file_p1, &sbuf))
697     {
698       if (0 == remove (cert_file_p1))
699         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
700                     "Successfully removed existing certificate file `%s'\n",
701                     cert_file_p1);
702       else
703         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove certfile `%s'\n",
704                     cert_file_p1);
705     }
706
707     if (0 == stat (key_file_p1, &sbuf))
708     {
709       if (0 == remove (key_file_p1))
710         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
711                     "Successfully removed private key file `%s'\n",
712                     key_file_p1);
713       else
714         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
715                     "Failed to private key file `%s'\n", key_file_p1);
716     }
717
718     if (0 == stat (cert_file_p2, &sbuf))
719     {
720       if (0 == remove (cert_file_p2))
721         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
722                     "Successfully removed existing certificate file `%s'\n",
723                     cert_file_p2);
724       else
725         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove certfile `%s'\n",
726                     cert_file_p2);
727     }
728
729     if (0 == stat (key_file_p2, &sbuf))
730     {
731       if (0 == remove (key_file_p2))
732         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
733                     "Successfully removed private key file `%s'\n",
734                     key_file_p2);
735       else
736         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
737                     "Failed to private key file `%s'\n", key_file_p2);
738     }
739     GNUNET_free (key_file_p1);
740     GNUNET_free (key_file_p2);
741     GNUNET_free (cert_file_p1);
742     GNUNET_free (cert_file_p2);
743   }
744
745   if (p1.servicehome != NULL)
746   {
747     GNUNET_DISK_directory_remove (p1.servicehome);
748     GNUNET_free (p1.servicehome);
749   }
750   if (p2.servicehome != NULL)
751   {
752     GNUNET_DISK_directory_remove (p2.servicehome);
753     GNUNET_free (p2.servicehome);
754   }
755   return ok;
756 }
757
758
759 int
760 main (int argc, char *argv[])
761 {
762   int ret;
763   int nat_res;
764
765   test_failed = GNUNET_NO;
766
767   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-1");
768   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-2");
769
770   if (strstr (argv[0], "tcp_nat") != NULL)
771   {
772     is_tcp_nat = GNUNET_YES;
773     GNUNET_asprintf (&test_name, "tcp_nat");
774   }
775   else if (strstr (argv[0], "tcp") != NULL)
776   {
777     is_tcp = GNUNET_YES;
778     GNUNET_asprintf (&test_name, "tcp");
779   }
780   else if (strstr (argv[0], "https") != NULL)
781   {
782     is_https = GNUNET_YES;
783     GNUNET_asprintf (&test_name, "https");
784   }
785   else if (strstr (argv[0], "http") != NULL)
786   {
787     is_http = GNUNET_YES;
788     GNUNET_asprintf (&test_name, "http");
789   }
790   else if (strstr (argv[0], "udp") != NULL)
791   {
792     is_udp = GNUNET_YES;
793     GNUNET_asprintf (&test_name, "udp");
794   }
795   else if (strstr (argv[0], "unix") != NULL)
796   {
797     is_unix = GNUNET_YES;
798     GNUNET_asprintf (&test_name, "unix");
799   }
800   else if (strstr (argv[0], "wlan") != NULL)
801   {
802     is_wlan = GNUNET_YES;
803   }
804   GNUNET_log_setup ("test-transport-api-unreliability",
805 #if VERBOSE
806                     "DEBUG",
807 #else
808                     "WARNING",
809 #endif
810                     NULL);
811
812
813   if ((strstr (argv[0], "tcp_nat") != NULL) || (strstr (argv[0], "udp_nat") != NULL))
814   {
815     nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server");
816     if (GNUNET_NO == nat_res)
817     {
818       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
819           "Cannot run NAT test: `%s' %s \n",
820           "gnunet-nat-server",
821            "SUID not set");
822       return 0;
823     }
824     if (GNUNET_SYSERR ==  nat_res)
825     {
826       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
827           "Cannot run NAT test: `%s' %s \n",
828           "gnunet-nat-server",
829           "file not found");
830       return 0;
831     }
832   }
833
834   ret = check ();
835
836   GNUNET_free_non_null (test_name);
837   return ret;
838 }
839
840 /* end of test_transport_api_unreliability.c */