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