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