indentation
[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
602 /**
603  * Return the actual path to a file found in the current
604  * PATH environment variable.
605  *
606  * @param binary the name of the file to find
607  */
608 static char *
609 get_path_from_PATH (char *binary)
610 {
611   char *path;
612   char *pos;
613   char *end;
614   char *buf;
615   const char *p;
616
617   p = getenv ("PATH");
618   if (p == NULL)
619   {
620     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
621                 _("PATH environment variable is unset.\n"));
622     return NULL;
623   }
624   path = GNUNET_strdup (p);     /* because we write on it */
625   buf = GNUNET_malloc (strlen (path) + 20);
626   pos = path;
627
628   while (NULL != (end = strchr (pos, PATH_SEPARATOR)))
629   {
630     *end = '\0';
631     sprintf (buf, "%s/%s", pos, binary);
632     if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
633     {
634       GNUNET_free (path);
635       return buf;
636     }
637     pos = end + 1;
638   }
639   sprintf (buf, "%s/%s", pos, binary);
640   if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
641   {
642     GNUNET_free (path);
643     return buf;
644   }
645   GNUNET_free (buf);
646   GNUNET_free (path);
647   return NULL;
648 }
649
650 /**
651  * Check whether the suid bit is set on a file.
652  * Attempts to find the file using the current
653  * PATH environment variable as a search path.
654  *
655  * @param binary the name of the file to check
656  *
657  * @return GNUNET_YES if the binary is found and
658  *         can be run properly, GNUNET_NO otherwise
659  */
660 static int
661 check_gnunet_nat_binary (char *binary)
662 {
663   struct stat statbuf;
664   char *p;
665
666 #ifdef MINGW
667   SOCKET rawsock;
668 #endif
669
670 #ifdef MINGW
671   char *binaryexe;
672
673   GNUNET_asprintf (&binaryexe, "%s.exe", binary);
674   p = get_path_from_PATH (binaryexe);
675   free (binaryexe);
676 #else
677   p = get_path_from_PATH (binary);
678 #endif
679   if (p == NULL)
680   {
681     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
682                 _("Could not find binary `%s' in PATH!\n"), binary);
683     return GNUNET_NO;
684   }
685   if (0 != STAT (p, &statbuf))
686   {
687     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("stat (%s) failed: %s\n"), p,
688                 STRERROR (errno));
689     GNUNET_free (p);
690     return GNUNET_SYSERR;
691   }
692   GNUNET_free (p);
693 #ifndef MINGW
694   if ((0 != (statbuf.st_mode & S_ISUID)) && (statbuf.st_uid == 0))
695     return GNUNET_YES;
696   return GNUNET_NO;
697 #else
698   rawsock = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP);
699   if (INVALID_SOCKET == rawsock)
700   {
701     DWORD err = GetLastError ();
702
703     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
704                 "socket (AF_INET, SOCK_RAW, IPPROTO_ICMP) have failed! GLE = %d\n",
705                 err);
706     return GNUNET_NO;           /* not running as administrator */
707   }
708   closesocket (rawsock);
709   return GNUNET_YES;
710 #endif
711 }
712
713
714 static void
715 try_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
716 {
717   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Asking peers to connect...\n");
718   GNUNET_TRANSPORT_try_connect (p2.th, &p1.id);
719   GNUNET_TRANSPORT_try_connect (p1.th, &p2.id);
720   tct =
721       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &try_connect,
722                                     NULL);
723 }
724
725
726
727 static void
728 run (void *cls, char *const *args, const char *cfgfile,
729      const struct GNUNET_CONFIGURATION_Handle *cfg)
730 {
731   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
732   if (is_tcp)
733   {
734     setup_peer (&p1, "test_transport_api_tcp_peer1.conf");
735     setup_peer (&p2, "test_transport_api_tcp_peer2.conf");
736   }
737   else if (is_http)
738   {
739     setup_peer (&p1, "test_transport_api_rel_http_peer1.conf");
740     setup_peer (&p2, "test_transport_api_rel_http_peer2.conf");
741   }
742   else if (is_https)
743   {
744     setup_peer (&p1, "test_transport_api_rel_https_peer1.conf");
745     setup_peer (&p2, "test_transport_api_rel_https_peer2.conf");
746   }
747   else if (is_udp)
748   {
749     setup_peer (&p1, "test_transport_api_udp_peer1.conf");
750     setup_peer (&p2, "test_transport_api_udp_peer2.conf");
751   }
752   else if (is_unix)
753   {
754     setup_peer (&p1, "test_transport_api_unix_peer1.conf");
755     setup_peer (&p2, "test_transport_api_unix_peer2.conf");
756   }
757   else if (is_tcp_nat)
758   {
759     setup_peer (&p1, "test_transport_api_tcp_nat_peer1.conf");
760     setup_peer (&p2, "test_transport_api_tcp_nat_peer2.conf");
761   }
762   else if (is_wlan)
763   {
764     setup_peer (&p1, "test_transport_api_wlan_peer1.conf");
765     setup_peer (&p2, "test_transport_api_wlan_peer2.conf");
766   }
767   else
768     GNUNET_assert (0);
769   GNUNET_assert (p1.th != NULL);
770   GNUNET_assert (p2.th != NULL);
771   GNUNET_TRANSPORT_get_hello (p1.th, &exchange_hello, &p1);
772   p1_hello_canceled = GNUNET_NO;
773   GNUNET_TRANSPORT_get_hello (p2.th, &exchange_hello_last, &p2);
774   p2_hello_canceled = GNUNET_NO;
775   tct = GNUNET_SCHEDULER_add_now (&try_connect, NULL);
776 }
777
778
779 static int
780 check ()
781 {
782   char *const argv[] = { "test-transport-api-unreliability",
783     "-c",
784     "test_transport_api_data.conf",
785 #if VERBOSE
786     "-L", "DEBUG",
787 #endif
788     NULL
789   };
790   struct GNUNET_GETOPT_CommandLineOption options[] = {
791     GNUNET_GETOPT_OPTION_END
792   };
793
794 #if WRITECONFIG
795   setTransportOptions ("test_transport_api_data.conf");
796 #endif
797   ok = 1;
798
799   if ((GNUNET_YES == is_tcp_nat) &&
800       (check_gnunet_nat_binary ("gnunet-nat-server") != GNUNET_YES))
801   {
802     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
803                 "Not running NAT test case, binaries not properly installed.\n");
804     return 0;
805   }
806
807   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
808                       "test-transport-api-unreliability", "nohelp", options,
809                       &run, &ok);
810   stop_arm (&p1);
811   stop_arm (&p2);
812
813   if (is_https)
814   {
815     struct stat sbuf;
816
817     if (0 == stat (cert_file_p1, &sbuf))
818     {
819       if (0 == remove (cert_file_p1))
820         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
821                     "Successfully removed existing certificate file `%s'\n",
822                     cert_file_p1);
823       else
824         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove certfile `%s'\n",
825                     cert_file_p1);
826     }
827
828     if (0 == stat (key_file_p1, &sbuf))
829     {
830       if (0 == remove (key_file_p1))
831         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
832                     "Successfully removed private key file `%s'\n",
833                     key_file_p1);
834       else
835         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
836                     "Failed to private key file `%s'\n", key_file_p1);
837     }
838
839     if (0 == stat (cert_file_p2, &sbuf))
840     {
841       if (0 == remove (cert_file_p2))
842         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
843                     "Successfully removed existing certificate file `%s'\n",
844                     cert_file_p2);
845       else
846         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove certfile `%s'\n",
847                     cert_file_p2);
848     }
849
850     if (0 == stat (key_file_p2, &sbuf))
851     {
852       if (0 == remove (key_file_p2))
853         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
854                     "Successfully removed private key file `%s'\n",
855                     key_file_p2);
856       else
857         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
858                     "Failed to private key file `%s'\n", key_file_p2);
859     }
860     GNUNET_free (key_file_p1);
861     GNUNET_free (key_file_p2);
862     GNUNET_free (cert_file_p1);
863     GNUNET_free (cert_file_p2);
864   }
865
866   if (p1.servicehome != NULL)
867   {
868     GNUNET_DISK_directory_remove (p1.servicehome);
869     GNUNET_free (p1.servicehome);
870   }
871   if (p2.servicehome != NULL)
872   {
873     GNUNET_DISK_directory_remove (p2.servicehome);
874     GNUNET_free (p2.servicehome);
875   }
876   return ok;
877 }
878
879
880 int
881 main (int argc, char *argv[])
882 {
883   int ret;
884
885   test_failed = GNUNET_NO;
886
887   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-1");
888   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-transport-peer-2");
889
890   if (strstr (argv[0], "tcp_nat") != NULL)
891   {
892     is_tcp_nat = GNUNET_YES;
893     GNUNET_asprintf (&test_name, "tcp_nat");
894   }
895   else if (strstr (argv[0], "tcp") != NULL)
896   {
897     is_tcp = GNUNET_YES;
898     GNUNET_asprintf (&test_name, "tcp");
899   }
900   else if (strstr (argv[0], "https") != NULL)
901   {
902     is_https = GNUNET_YES;
903     GNUNET_asprintf (&test_name, "https");
904   }
905   else if (strstr (argv[0], "http") != NULL)
906   {
907     is_http = GNUNET_YES;
908     GNUNET_asprintf (&test_name, "http");
909   }
910   else if (strstr (argv[0], "udp") != NULL)
911   {
912     is_udp = GNUNET_YES;
913     GNUNET_asprintf (&test_name, "udp");
914   }
915   else if (strstr (argv[0], "unix") != NULL)
916   {
917     is_unix = GNUNET_YES;
918     GNUNET_asprintf (&test_name, "unix");
919   }
920   else if (strstr (argv[0], "wlan") != NULL)
921   {
922     is_wlan = GNUNET_YES;
923   }
924   GNUNET_log_setup ("test-transport-api-unreliability",
925 #if VERBOSE
926                     "DEBUG",
927 #else
928                     "WARNING",
929 #endif
930                     NULL);
931   ret = check ();
932
933   GNUNET_free_non_null (test_name);
934   return ret;
935 }
936
937 /* end of test_transport_api_unreliability.c */