-makefile for new test_stream_local (commented)
[oweals/gnunet.git] / src / transport / test_transport_api_limited_sockets.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 #define MAX_FILES 50
59
60 static char *test_source;
61
62 static char *test_plugin;
63
64 static char *test_name;
65
66 static int ok;
67
68 static GNUNET_SCHEDULER_TaskIdentifier die_task;
69
70 static GNUNET_SCHEDULER_TaskIdentifier send_task;
71
72 struct PeerContext *p1;
73
74 struct PeerContext *p2;
75
76 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
77
78 struct GNUNET_TRANSPORT_TransmitHandle *th;
79
80 struct GNUNET_TRANSPORT_TESTING_handle *tth;
81
82 char *cfg_file_p1;
83
84 char *cfg_file_p2;
85
86 #if VERBOSE
87 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
88 #else
89 #define OKPP do { ok++; } while (0)
90 #endif
91
92
93 static void
94 end ()
95 {
96   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
97
98   if (send_task != GNUNET_SCHEDULER_NO_TASK)
99     GNUNET_SCHEDULER_cancel (send_task);
100
101   if (die_task != GNUNET_SCHEDULER_NO_TASK)
102     GNUNET_SCHEDULER_cancel (die_task);
103
104   if (th != NULL)
105     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
106   th = NULL;
107
108   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
109   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
110 }
111
112 static void
113 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
114 {
115   die_task = GNUNET_SCHEDULER_NO_TASK;
116
117   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
118
119   if (send_task != GNUNET_SCHEDULER_NO_TASK)
120     GNUNET_SCHEDULER_cancel (send_task);
121
122   if (cc != NULL)
123     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
124
125   if (th != NULL)
126     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
127   th = NULL;
128
129   if (p1 != NULL)
130     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
131   if (p2 != NULL)
132     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
133
134   ok = GNUNET_SYSERR;
135 }
136
137
138 static void
139 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
140                 const struct GNUNET_MessageHeader *message,
141                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
142 {
143   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
144               "Received message of type %d from peer %s!\n",
145               ntohs (message->type), GNUNET_i2s (peer));
146
147   if ((MTYPE == ntohs (message->type)) &&
148       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
149   {
150     ok = 0;
151     end ();
152   }
153   else
154   {
155     GNUNET_break (0);
156     ok = 1;
157     end ();
158   }
159 }
160
161
162 static size_t
163 notify_ready (void *cls, size_t size, void *buf)
164 {
165   struct PeerContext *p = cls;
166   struct GNUNET_MessageHeader *hdr;
167
168   th = NULL;
169
170   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
171               "Transmitting message with %u bytes to peer %s\n",
172               sizeof (struct GNUNET_MessageHeader), GNUNET_i2s (&p->id));
173   GNUNET_assert (size >= 256);
174
175   if (buf != NULL)
176   {
177     hdr = buf;
178     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
179     hdr->type = htons (MTYPE);
180   }
181   return sizeof (struct GNUNET_MessageHeader);
182 }
183
184
185 static void
186 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
187                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
188 {
189   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
190               GNUNET_i2s (peer), cls);
191 }
192
193
194 static void
195 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
196 {
197   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
198               GNUNET_i2s (peer), cls);
199   if (th != NULL)
200     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
201   th = NULL;
202 }
203
204 static void
205 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
206 {
207   send_task = GNUNET_SCHEDULER_NO_TASK;
208
209   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
210     return;
211
212   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, 0, TIMEOUT,
213                                                &notify_ready, &p1);
214 }
215
216 static void
217 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
218 {
219   cc = NULL;
220   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
221
222   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
223               GNUNET_i2s (&p2->id));
224   GNUNET_free (p1_c);
225
226   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
227   send_task =
228       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
229 }
230
231 void
232 start_cb (struct PeerContext *p, void *cls)
233 {
234   static int started;
235
236   started++;
237
238   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
239               GNUNET_i2s (&p->id));
240
241   if (started != 2)
242     return;
243
244   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
245                                                NULL);
246
247 }
248
249 static void
250 run (void *cls, char *const *args, const char *cfgfile,
251      const struct GNUNET_CONFIGURATION_Handle *cfg)
252 {
253   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
254
255   tth = GNUNET_TRANSPORT_TESTING_init ();
256
257   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
258                                             &notify_receive, &notify_connect,
259                                             &notify_disconnect, &start_cb,
260                                             NULL);
261   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
262                                             &notify_receive, &notify_connect,
263                                             &notify_disconnect, &start_cb,
264                                             NULL);
265   if ((p1 == NULL) || (p2 == NULL))
266   {
267     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
268     if (die_task != GNUNET_SCHEDULER_NO_TASK)
269       GNUNET_SCHEDULER_cancel (die_task);
270     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
271     return;
272   }
273 }
274
275
276 static int
277 check ()
278 {
279   static char *const argv[] = { "test-transport-api",
280     "-c",
281     "test_transport_api_data.conf",
282 #if VERBOSE
283     "-L", "DEBUG",
284 #endif
285     NULL
286   };
287   static struct GNUNET_GETOPT_CommandLineOption options[] = {
288     GNUNET_GETOPT_OPTION_END
289   };
290
291 #if WRITECONFIG
292   setTransportOptions ("test_transport_api_data.conf");
293 #endif
294   send_task = GNUNET_SCHEDULER_NO_TASK;
295
296   ok = 1;
297   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
298                       "nohelp", options, &run, &ok);
299
300   return ok;
301 }
302
303 int
304 main (int argc, char *argv[])
305 {
306   int ret = 0;
307
308   test_plugin = NULL;
309
310   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
311   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
312                                                  &test_plugin);
313   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
314
315   GNUNET_log_setup (test_name,
316 #if VERBOSE
317                     "DEBUG",
318 #else
319                     "WARNING",
320 #endif
321                     NULL);
322
323 #if !HAVE_SETRLIMIT
324   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Cannot run test on this system\n");
325
326   GNUNET_free (test_source);
327   GNUNET_free (test_plugin);
328   GNUNET_free (test_name);
329
330   return 0;
331 #else
332   struct rlimit r_file_old;
333   struct rlimit r_file_new;
334   int res;
335
336   res = getrlimit (RLIMIT_NOFILE, &r_file_old);
337   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
338               "Maximum number of open files was: %u/%u\n", r_file_old.rlim_cur,
339               r_file_old.rlim_max);
340
341   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
342               "Setting maximum number of open files to: %u\n", MAX_FILES);
343   r_file_new.rlim_cur = MAX_FILES;
344   r_file_new.rlim_max = r_file_old.rlim_max;
345   res = setrlimit (RLIMIT_NOFILE, &r_file_new);
346
347   if (res != 0)
348   {
349     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Setting limit failed!\n");
350     GNUNET_free (test_source);
351     GNUNET_free (test_plugin);
352     GNUNET_free (test_name);
353     return 0;
354   }
355
356   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
357   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
358   ret = check ();
359 #endif
360
361
362   GNUNET_free (cfg_file_p1);
363   GNUNET_free (cfg_file_p2);
364
365   GNUNET_free (test_source);
366   GNUNET_free (test_plugin);
367   GNUNET_free (test_name);
368
369 #if HAVE_SETRLIMIT
370   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
371               "Restoring previous value maximum number of open files\n");
372   res = setrlimit (RLIMIT_NOFILE, &r_file_old);
373   if (res != 0)
374   {
375     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Restoring limit failed!\n");
376     return 0;
377   }
378 #endif
379
380   return ret;
381 }
382
383 /* end of test_transport_api.c */