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