Fix for #4553
[oweals/gnunet.git] / src / cadet / test_cadet_local.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file cadet/test_cadet_local.c
23  * @brief test cadet local: test of cadet channels with just one peer
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_dht_service.h"
30 #include "gnunet_testing_lib.h"
31 #include "gnunet_cadet_service.h"
32
33 struct GNUNET_TESTING_Peer *me;
34
35 static struct GNUNET_CADET_Handle *cadet_peer_1;
36
37 static struct GNUNET_CADET_Handle *cadet_peer_2;
38
39 static struct GNUNET_CADET_Channel *ch;
40
41 static int result = GNUNET_OK;
42
43 static int got_data = GNUNET_NO;
44
45 static struct GNUNET_SCHEDULER_Task *abort_task;
46
47 static struct GNUNET_SCHEDULER_Task *connect_task;
48
49 static struct GNUNET_CADET_TransmitHandle *mth;
50
51
52 /**
53  * Connect to other client and send data
54  *
55  * @param cls Closue (unused).
56  */
57 static void
58 do_connect (void *cls);
59
60
61 /**
62  * Shutdown nicely
63  */
64 static void
65 do_shutdown (void *cls)
66 {
67   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutdown\n");
68   if (NULL != abort_task)
69   {
70     GNUNET_SCHEDULER_cancel (abort_task);
71     abort_task = NULL;
72   }
73   if (NULL != connect_task)
74   {
75     GNUNET_SCHEDULER_cancel (connect_task);
76     connect_task = NULL;
77   }
78   if (NULL != ch)
79   {
80     GNUNET_CADET_channel_destroy (ch);
81     ch = NULL;
82   }
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnect client 1\n");
84   if (NULL != cadet_peer_1)
85   {
86     GNUNET_CADET_disconnect (cadet_peer_1);
87     cadet_peer_1 = NULL;
88   }
89   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnect client 2\n");
90   if (NULL != cadet_peer_2)
91   {
92     GNUNET_CADET_disconnect (cadet_peer_2);
93     cadet_peer_2 = NULL;
94   }
95 }
96
97
98 /**
99  * Something went wrong and timed out. Kill everything and set error flag
100  */
101 static void
102 do_abort (void *cls)
103 {
104   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ABORT\n");
105   result = GNUNET_SYSERR;
106   abort_task = NULL;
107   GNUNET_SCHEDULER_shutdown ();
108 }
109
110
111 /**
112  * Function is called whenever a message is received.
113  *
114  * @param cls closure (set from GNUNET_CADET_connect)
115  * @param channel connection to the other end
116  * @param channel_ctx place to store local state associated with the channel
117  * @param message the actual message
118  *
119  * @return GNUNET_OK to keep the connection open,
120  *         GNUNET_SYSERR to close it (signal serious error)
121  */
122 static int
123 data_callback (void *cls, struct GNUNET_CADET_Channel *channel,
124                void **channel_ctx,
125                const struct GNUNET_MessageHeader *message)
126 {
127   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
128               "Data callback! Shutting down.\n");
129   got_data = GNUNET_YES;
130   GNUNET_SCHEDULER_shutdown ();
131   GNUNET_CADET_receive_done (channel);
132   return GNUNET_OK;
133 }
134
135
136 /**
137  * Method called whenever another peer has added us to a channel
138  * the other peer initiated.
139  *
140  * @param cls closure
141  * @param channel new handle to the channel
142  * @param initiator peer that started the channel
143  * @param port port number
144  * @param options channel options
145  * @return initial channel context for the channel
146  *         (can be NULL -- that's not an error)
147  */
148 static void *
149 inbound_channel (void *cls,
150                  struct GNUNET_CADET_Channel *channel,
151                  const struct GNUNET_PeerIdentity *initiator,
152                  uint32_t port,
153                  enum GNUNET_CADET_ChannelOption options)
154 {
155   long id = (long) cls;
156
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
158               "received incoming channel on peer %d, port %u\n",
159               (int) id,
160               (unsigned int) port);
161   if (id != 2L)
162   {
163     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
164                 "wrong peer\n");
165     result = GNUNET_SYSERR;
166   }
167   return NULL;
168 }
169
170
171 /**
172  * Function called whenever an channel is destroyed.  Should clean up
173  * any associated state.
174  *
175  * @param cls closure (set from GNUNET_CADET_connect)
176  * @param channel connection to the other end (henceforth invalid)
177  * @param channel_ctx place where local state associated
178  *                    with the channel is stored
179  */
180 static void
181 channel_end (void *cls, const struct GNUNET_CADET_Channel *channel,
182              void *channel_ctx)
183 {
184   long id = (long) cls;
185
186   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
187               "incoming channel closed at peer %ld\n",
188               id);
189   if (NULL != mth)
190   {
191     GNUNET_CADET_notify_transmit_ready_cancel (mth);
192     mth = NULL;
193   }
194   if (GNUNET_NO == got_data)
195   {
196     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply (
197                                   GNUNET_TIME_UNIT_SECONDS,
198                                   2),
199                                   &do_connect, NULL);
200   }
201 }
202
203
204 /**
205  * Handler array for traffic received on peer1
206  */
207 static struct GNUNET_CADET_MessageHandler handlers1[] = {
208   {&data_callback, 1, 0},
209   {NULL, 0, 0}
210 };
211
212
213 /**
214  * Handler array for traffic received on peer2 (none expected)
215  */
216 static struct GNUNET_CADET_MessageHandler handlers2[] = {
217   {&data_callback, 1, 0},
218   {NULL, 0, 0}
219 };
220
221
222 /**
223  * Data send callback: fillbuffer with test packet.
224  *
225  * @param cls Closure (unused).
226  * @param size Buffer size.
227  * @param buf Buffer to fill.
228  *
229  * @return size of test packet.
230  */
231 static size_t
232 do_send (void *cls, size_t size, void *buf)
233 {
234   struct GNUNET_MessageHeader *m = buf;
235
236   mth = NULL;
237   if (NULL == buf)
238   {
239     GNUNET_break (0);
240     result = GNUNET_SYSERR;
241     return 0;
242   }
243   m->size = htons (sizeof (struct GNUNET_MessageHeader));
244   m->type = htons (1);
245   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
246   return sizeof (struct GNUNET_MessageHeader);
247 }
248
249 /**
250  * Connect to other client and send data
251  *
252  * @param cls Closue (unused).
253  */
254 static void
255 do_connect (void *cls)
256 {
257   struct GNUNET_PeerIdentity id;
258
259   connect_task = NULL;
260   GNUNET_TESTING_peer_get_identity (me, &id);
261   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CONNECT BY PORT\n");
262   ch = GNUNET_CADET_channel_create (cadet_peer_1, NULL, &id, 1,
263                                    GNUNET_CADET_OPTION_DEFAULT);
264   mth = GNUNET_CADET_notify_transmit_ready (ch, GNUNET_NO,
265                                            GNUNET_TIME_UNIT_FOREVER_REL,
266                                            sizeof (struct GNUNET_MessageHeader),
267                                            &do_send, NULL);
268 }
269
270
271 /**
272  * Initialize framework and start test
273  *
274  * @param cls Closure (unused).
275  * @param cfg Configuration handle.
276  * @param peer Testing peer handle.
277  */
278 static void
279 run (void *cls,
280      const struct GNUNET_CONFIGURATION_Handle *cfg,
281      struct GNUNET_TESTING_Peer *peer)
282 {
283   static uint32_t ports[] = {1, 0};
284
285   me = peer;
286   GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
287   abort_task =
288       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
289                                     (GNUNET_TIME_UNIT_SECONDS, 15),
290                                     &do_abort,
291                                     NULL);
292   cadet_peer_1 = GNUNET_CADET_connect (cfg,       /* configuration */
293                                      (void *) 1L,       /* cls */
294                                      NULL,              /* inbound new hndlr */
295                                      &channel_end,      /* channel end hndlr */
296                                      handlers1, /* traffic handlers */
297                                      NULL);     /* ports offered */
298
299   cadet_peer_2 = GNUNET_CADET_connect (cfg,       /* configuration */
300                                      (void *) 2L,     /* cls */
301                                      &inbound_channel,   /* inbound new hndlr */
302                                      &channel_end,      /* channel end hndlr */
303                                      handlers2, /* traffic handlers */
304                                      ports);     /* ports offered */
305   if (NULL == cadet_peer_1 || NULL == cadet_peer_2)
306   {
307     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
308                 "Couldn't connect to cadet :(\n");
309     result = GNUNET_SYSERR;
310     GNUNET_SCHEDULER_shutdown ();
311     return;
312   }
313   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply (
314                                   GNUNET_TIME_UNIT_SECONDS,
315                                   2),
316                                 &do_connect, NULL);
317 }
318
319
320 /**
321  * Main
322  */
323 int
324 main (int argc, char *argv[])
325 {
326   if (0 != GNUNET_TESTING_peer_run ("test-cadet-local",
327                                     "test_cadet.conf",
328                                 &run, NULL))
329   {
330     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "run failed\n");
331     return 2;
332   }
333   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Final result: %d\n", result);
334   return (result == GNUNET_OK) ? 0 : 1;
335 }
336
337 /* end of test_cadet_local_1.c */