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