- coverity
[oweals/gnunet.git] / src / transport / test_transport_api_disconnect.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_disconnect.c
22  * @brief base test case for transport implementations
23  *
24  * This test case tests disconnect notifications in peer shutdown
25  */
26 #include "platform.h"
27 #include "gnunet_transport_service.h"
28 #include "transport-testing.h"
29
30 /**
31  * How long until we give up on transmitting the message?
32  */
33 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
34
35 /**
36  * How long until we give up on transmitting the message?
37  */
38 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
39
40 #define MTYPE 12345
41
42 static char *test_source;
43
44 static char *test_plugin;
45
46 static char *test_name;
47
48 static int ok;
49
50 static GNUNET_SCHEDULER_TaskIdentifier die_task;
51
52 static GNUNET_SCHEDULER_TaskIdentifier send_task;
53
54 struct PeerContext *p1;
55
56 struct PeerContext *p2;
57
58 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
59
60 struct GNUNET_TRANSPORT_TransmitHandle *th;
61
62 struct GNUNET_TRANSPORT_TESTING_handle *tth;
63
64 int shutdown_;
65
66 char *cfg_file_p1;
67
68 char *cfg_file_p2;
69
70 #if VERBOSE
71 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
72 #else
73 #define OKPP do { ok++; } while (0)
74 #endif
75
76
77 static void
78 end ()
79 {
80   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
81
82   if (send_task != GNUNET_SCHEDULER_NO_TASK)
83   {
84     GNUNET_SCHEDULER_cancel (send_task);
85     send_task = GNUNET_SCHEDULER_NO_TASK;
86   }
87
88   if (die_task != GNUNET_SCHEDULER_NO_TASK)
89   {
90     GNUNET_SCHEDULER_cancel (die_task);
91     die_task = GNUNET_SCHEDULER_NO_TASK;
92   }
93
94   if (th != NULL)
95     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
96   th = NULL;
97
98   if (p1 != NULL)
99     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
100   p1 = NULL;
101
102   if (p2 != NULL)
103     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
104   p2 = NULL;
105
106   /* success */
107   ok = 0;
108 }
109
110 static void
111 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112 {
113   die_task = GNUNET_SCHEDULER_NO_TASK;
114
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
116
117   if (cc != NULL)
118   {
119     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
120     cc = NULL;
121   }
122
123   if (send_task != GNUNET_SCHEDULER_NO_TASK)
124   {
125     GNUNET_SCHEDULER_cancel (send_task);
126     send_task = GNUNET_SCHEDULER_NO_TASK;
127   }
128
129   if (th != NULL)
130     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
131   th = NULL;
132
133   if (p1 != NULL)
134     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
135   if (p2 != NULL)
136     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
137
138   ok = GNUNET_SYSERR;
139 }
140
141 static void
142 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
143 {
144   struct PeerContext *p = cls;
145   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
146
147   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
148               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
149               GNUNET_i2s (peer));
150
151   if (th != NULL)
152     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
153   th = NULL;
154
155   if (shutdown_ == GNUNET_YES)
156   {
157     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Complete, shutting down...\n");
158     GNUNET_SCHEDULER_add_now (&end, NULL);
159   }
160 }
161
162
163 static void
164 stop_peer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
165 {
166   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
167     return;
168
169   struct PeerContext *p = cls;
170
171   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down peer %u (`%s')\n", p->no,
172               GNUNET_i2s (&p->id));
173   shutdown_ = GNUNET_YES;
174   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
175   p2 = NULL;
176   GNUNET_assert (p2 == NULL);
177 }
178
179 static void
180 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
181                 const struct GNUNET_MessageHeader *message,
182                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
183 {
184   struct PeerContext *p = cls;
185   struct PeerContext *t = NULL;
186
187   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
188     t = p1;
189   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
190     t = p2;
191   GNUNET_assert (t != NULL);
192
193   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
194
195   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
196               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
197               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
198               GNUNET_i2s (&t->id));
199
200   if ((MTYPE == ntohs (message->type)) &&
201       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
202   {
203     ok = 1;
204     GNUNET_SCHEDULER_add_now (stop_peer, p2);
205     return;
206   }
207 }
208
209
210 static size_t
211 notify_ready (void *cls, size_t size, void *buf)
212 {
213   struct PeerContext *p = cls;
214   struct GNUNET_MessageHeader *hdr;
215
216   th = NULL;
217
218   if (buf == NULL)
219   {
220     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
221                 "Timeout occurred while waiting for transmit_ready\n");
222     if (GNUNET_SCHEDULER_NO_TASK != die_task)
223       GNUNET_SCHEDULER_cancel (die_task);
224     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
225     ok = 42;
226     return 0;
227   }
228
229   GNUNET_assert (size >= 256);
230
231   if (buf != NULL)
232   {
233     hdr = buf;
234     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
235     hdr->type = htons (MTYPE);
236   }
237   char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
238
239   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
240               "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
241               p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
242               GNUNET_i2s (&p->id));
243   GNUNET_free (ps);
244   return sizeof (struct GNUNET_MessageHeader);
245 }
246
247
248 static void
249 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
250 {
251   send_task = GNUNET_SCHEDULER_NO_TASK;
252
253   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
254     return;
255   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
256
257   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
258               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
259               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
260   GNUNET_free (receiver_s);
261
262   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, 256, 0,
263                                                TIMEOUT_TRANSMIT, &notify_ready,
264                                                p1);
265 }
266
267
268 static void
269 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
270                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
271 {
272   static int c;
273
274   c++;
275   struct PeerContext *p = cls;
276   struct PeerContext *t = NULL;
277
278   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
279     t = p1;
280   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
281     t = p2;
282   GNUNET_assert (t != NULL);
283
284   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
285
286   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
287               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
288               t->no, GNUNET_i2s (peer));
289   GNUNET_free (ps);
290 }
291
292
293 static void
294 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
295 {
296   cc = NULL;
297   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
298
299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
300               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
301   GNUNET_free (p1_c);
302
303   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
304 }
305
306
307
308 void
309 start_cb (struct PeerContext *p, void *cls)
310 {
311   static int started;
312
313   started++;
314
315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
316               GNUNET_i2s (&p->id));
317
318   if (started != 2)
319     return;
320
321   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
322
323   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
324               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
325               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
326
327   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
328                                                NULL);
329
330 }
331
332 static void
333 run (void *cls, char *const *args, const char *cfgfile,
334      const struct GNUNET_CONFIGURATION_Handle *cfg)
335 {
336   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
337
338   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
339                                             &notify_receive, &notify_connect,
340                                             &notify_disconnect, &start_cb,
341                                             NULL);
342
343   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
344                                             &notify_receive, &notify_connect,
345                                             &notify_disconnect, &start_cb,
346                                             NULL);
347
348   if ((p1 == NULL) || (p2 == NULL))
349   {
350     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
351     if (die_task != GNUNET_SCHEDULER_NO_TASK)
352       GNUNET_SCHEDULER_cancel (die_task);
353     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
354     return;
355   }
356 }
357
358
359 static int
360 check ()
361 {
362   static char *const argv[] = { "test-transport-api",
363     "-c",
364     "test_transport_api_data.conf",
365     NULL
366   };
367   static struct GNUNET_GETOPT_CommandLineOption options[] = {
368     GNUNET_GETOPT_OPTION_END
369   };
370
371   send_task = GNUNET_SCHEDULER_NO_TASK;
372
373   ok = 1;
374   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
375                       "nohelp", options, &run, &ok);
376
377   return ok;
378 }
379
380 int
381 main (int argc, char *argv[])
382 {
383   int ret;
384
385   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
386
387   GNUNET_log_setup (test_name,
388                     "WARNING",
389                     NULL);
390
391   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
392   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
393                                                  &test_plugin);
394
395   tth = GNUNET_TRANSPORT_TESTING_init ();
396
397   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
398   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
399
400   ret = check ();
401
402   GNUNET_free (cfg_file_p1);
403   GNUNET_free (cfg_file_p2);
404
405   GNUNET_free (test_source);
406   GNUNET_free (test_plugin);
407   GNUNET_free (test_name);
408
409   GNUNET_TRANSPORT_TESTING_done (tth);
410
411   return ret;
412 }
413
414 /* end of test_transport_api.c */