eb0e406d37b1c84e09732a6bc993815ecb3e9991
[oweals/gnunet.git] / src / transport / test_transport_api.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.c
22  * @brief base test case for transport implementations
23  *
24  * This test case serves as a base for tcp, udp, and udp-nat
25  * transport test cases.  Based on the executable being run
26  * the correct test case will be performed.  Conservation of
27  * C code apparently.
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_transport_service.h"
37 #include "transport.h"
38 #include "transport-testing.h"
39
40 #define VERBOSE GNUNET_NO
41
42 #define VERBOSE_ARM GNUNET_NO
43
44 #define START_ARM GNUNET_YES
45
46 /**
47  * How long until we give up on transmitting the message?
48  */
49 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
50
51 /**
52  * How long until we give up on transmitting the message?
53  */
54 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
55
56 #define MTYPE 12345
57
58 static int ok;
59
60 static  GNUNET_SCHEDULER_TaskIdentifier die_task;
61
62 struct PeerContext * p1;
63
64 struct PeerContext * p2;
65
66 struct GNUNET_TRANSPORT_TransmitHandle * th;
67
68 char * cfg_file_p1;
69
70 char * cfg_file_p2;
71
72 #if VERBOSE
73 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
74 #else
75 #define OKPP do { ok++; } while (0)
76 #endif
77
78
79 static void
80 end ()
81 {
82   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
83
84   if (die_task != GNUNET_SCHEDULER_NO_TASK)
85     GNUNET_SCHEDULER_cancel(die_task);
86
87   GNUNET_TRANSPORT_TESTING_stop_peer(p1);
88   GNUNET_TRANSPORT_TESTING_stop_peer(p2);
89
90   ok = 0;
91 }
92
93 static void
94 end_badly ()
95 {
96   die_task = GNUNET_SCHEDULER_NO_TASK;
97   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
98
99   if (p1 != NULL)
100     GNUNET_TRANSPORT_TESTING_stop_peer(p1);
101   if (p2 != NULL)
102     GNUNET_TRANSPORT_TESTING_stop_peer(p2);
103
104   ok = GNUNET_SYSERR;
105 }
106
107
108 static void
109 notify_receive (void *cls,
110                 const struct GNUNET_PeerIdentity *peer,
111                 const struct GNUNET_MessageHeader *message,
112                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
113                 uint32_t ats_count)
114 {
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
116               "Received message of type %d from peer %s!\n",
117               ntohs(message->type), 
118               GNUNET_i2s (peer));
119
120   GNUNET_assert (MTYPE == ntohs (message->type));
121   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) ==
122                  ntohs (message->size));
123   end ();
124 }
125
126
127 static size_t
128 notify_ready (void *cls, size_t size, void *buf)
129 {
130   struct PeerContext *p = cls;
131   struct GNUNET_MessageHeader *hdr;
132
133   th = NULL;
134
135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
136               "Transmitting message with %u bytes to peer %s\n", 
137               sizeof (struct GNUNET_MessageHeader),
138               GNUNET_i2s (&p->id));
139   GNUNET_assert (size >= 256);
140
141   if (buf != NULL)
142   {
143     hdr = buf;
144     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
145     hdr->type = htons (MTYPE);
146   }
147   return sizeof (struct GNUNET_MessageHeader);
148 }
149
150
151 static void
152 notify_connect (void *cls,
153                 const struct GNUNET_PeerIdentity *peer,
154                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
155                 uint32_t ats_count)
156 {
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
158               "Peer `%4s' connected to us (%p)!\n", 
159               GNUNET_i2s (peer), 
160               cls);
161 }
162
163
164 static void
165 notify_disconnect (void *cls,
166                    const struct GNUNET_PeerIdentity *peer)
167 {
168   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
169               "Peer `%4s' disconnected (%p)!\n",
170               GNUNET_i2s (peer), cls);
171 }
172
173 static void
174 sendtask ()
175 {
176   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th,
177                                               &p2->id,
178                                               256, 0, TIMEOUT, &notify_ready,
179                                               &p1);
180 }
181
182 static void
183 testing_connect_cb (struct PeerContext * p1, struct PeerContext * p2, void *cls)
184 {
185   char * p1_c = strdup (GNUNET_i2s(&p1->id));
186   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n",
187        p1_c,
188        GNUNET_i2s (&p2->id));
189
190   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
191   GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
192 }
193
194 static void
195 run (void *cls,
196      char *const *args,
197      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
198 {
199   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
200                                            &end_badly, NULL);
201
202   p1 = GNUNET_TRANSPORT_TESTING_start_peer(cfg_file_p1,
203       &notify_receive,
204       &notify_connect,
205       &notify_disconnect,
206       NULL);
207   p2 = GNUNET_TRANSPORT_TESTING_start_peer(cfg_file_p2,
208       &notify_receive,
209       &notify_connect,
210       &notify_disconnect,
211       NULL);
212
213   GNUNET_TRANSPORT_TESTING_connect_peers(p1, p2, &testing_connect_cb, NULL);
214 }
215
216 static int
217 check ()
218 {
219   static char *const argv[] = { "test-transport-api",
220     "-c",
221     "test_transport_api_data.conf",
222 #if VERBOSE
223     "-L", "DEBUG",
224 #endif
225     NULL
226   };
227   static struct GNUNET_GETOPT_CommandLineOption options[] = {
228     GNUNET_GETOPT_OPTION_END
229   };
230
231 #if WRITECONFIG
232   setTransportOptions("test_transport_api_data.conf");
233 #endif
234   ok = 1;
235   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
236                       argv, "test-transport-api", "nohelp",
237                       options, &run, &ok);
238
239   return ok;
240 }
241
242 /**
243  * Return the actual path to a file found in the current
244  * PATH environment variable.
245  *
246  * @param binary the name of the file to find
247  */
248 static char *
249 get_path_from_PATH (char *binary)
250 {
251   char *path;
252   char *pos;
253   char *end;
254   char *buf;
255   const char *p;
256
257   p = getenv ("PATH");
258   if (p == NULL)
259     {
260       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
261                   _("PATH environment variable is unset.\n"));
262       return NULL;
263     }
264   path = GNUNET_strdup (p);     /* because we write on it */
265   buf = GNUNET_malloc (strlen (path) + 20);
266   pos = path;
267
268   while (NULL != (end = strchr (pos, PATH_SEPARATOR)))
269     {
270       *end = '\0';
271       sprintf (buf, "%s/%s", pos, binary);
272       if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
273         {
274           GNUNET_free (path);
275           return buf;
276         }
277       pos = end + 1;
278     }
279   sprintf (buf, "%s/%s", pos, binary);
280   if (GNUNET_DISK_file_test (buf) == GNUNET_YES)
281     {
282       GNUNET_free (path);
283       return buf;
284     }
285   GNUNET_free (buf);
286   GNUNET_free (path);
287   return NULL;
288 }
289
290 /**
291  * Check whether the suid bit is set on a file.
292  * Attempts to find the file using the current
293  * PATH environment variable as a search path.
294  *
295  * @param binary the name of the file to check
296  *
297  * @return GNUNET_YES if the binary is found and
298  *         can be run properly, GNUNET_NO otherwise
299  */
300 static int
301 check_gnunet_nat_binary(char *binary)
302 {
303   struct stat statbuf;
304   char *p;
305 #ifdef MINGW
306   SOCKET rawsock;
307 #endif
308
309 #ifdef MINGW
310   char *binaryexe;
311   GNUNET_asprintf (&binaryexe, "%s.exe", binary);
312   p = get_path_from_PATH (binaryexe);
313   free (binaryexe);
314 #else
315   p = get_path_from_PATH (binary);
316 #endif
317   if (p == NULL)
318     {
319       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
320                   _("Could not find binary `%s' in PATH!\n"),
321                   binary);
322       return GNUNET_NO;
323     }
324   if (0 != STAT (p, &statbuf))
325     {
326       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
327                   _("stat (%s) failed: %s\n"),
328                   p,
329                   STRERROR (errno));
330       GNUNET_free (p);
331       return GNUNET_SYSERR;
332     }
333   GNUNET_free (p);
334 #ifndef MINGW
335   if ( (0 != (statbuf.st_mode & S_ISUID)) &&
336        (statbuf.st_uid == 0) )
337     return GNUNET_YES;
338   return GNUNET_NO;
339 #else
340   rawsock = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP);
341   if (INVALID_SOCKET == rawsock)
342     {
343       DWORD err = GetLastError ();
344       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
345                   "socket (AF_INET, SOCK_RAW, IPPROTO_ICMP) have failed! GLE = %d\n", err);
346       return GNUNET_NO; /* not running as administrator */
347     }
348   closesocket (rawsock);
349   return GNUNET_YES;
350 #endif
351 }
352
353 int
354 main (int argc, char *argv[])
355 {
356   int ret;
357
358   GNUNET_log_setup ("test-transport-api",
359 #if VERBOSE
360                     "DEBUG",
361 #else
362                     "WARNING",
363 #endif
364                     NULL);
365
366   char * pch = strdup(argv[0]);
367   char * filename = NULL;
368   char *dotexe;
369
370   /* get executable filename */
371   pch = strtok (pch,"/");
372   while (pch != NULL)
373   {
374     pch = strtok (NULL, "/");
375     if (pch != NULL)
376       filename = pch;
377   }
378
379   /* remove "lt-" */
380
381   filename = strstr(filename, "tes");
382   if (NULL != (dotexe = strstr (filename, ".exe")))
383     dotexe[0] = '\0';
384
385   //filename = &filename[1];
386   //GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
387   //            "`%s'\n",filename);
388   /* create cfg filename */
389   GNUNET_asprintf(&cfg_file_p1, "%s_peer1.conf",filename);
390   GNUNET_asprintf(&cfg_file_p2, "%s_peer2.conf", filename);
391
392   if (strstr(argv[0], "tcp_nat") != NULL)
393     {
394       if (GNUNET_YES != check_gnunet_nat_binary("gnunet-nat-server"))
395         {
396           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
397                       "`%s' not properly installed, cannot run NAT test!\n",
398                       "gnunet-nat-server");
399           return 0;
400         }
401     }
402   else if (strstr(argv[0], "udp_nat") != NULL)
403     {
404       if (GNUNET_YES != check_gnunet_nat_binary("gnunet-nat-server"))
405         {
406           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
407                       "`%s' not properly installed, cannot run NAT test!\n",
408                       "gnunet-nat-server");
409           return 0;
410         }
411     }
412
413   ret = check ();
414
415   GNUNET_free (cfg_file_p1);
416   GNUNET_free (cfg_file_p2);
417
418   return ret;
419 }
420
421 /* end of test_transport_api.c */