indentation
[oweals/gnunet.git] / src / hostlist / test_gnunet_daemon_hostlist_reconnect.c
1 /*
2      This file is part of GNUnet
3      (C) 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 hostlist/test_gnunet_daemon_hostlist_reconnect.c
22  * @brief test for gnunet_daemon_hostslist.c; tries to re-start the peers
23  *        and connect a second time
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_arm_service.h"
29 #include "gnunet_transport_service.h"
30
31 #define VERBOSE GNUNET_NO
32
33 #define START_ARM GNUNET_YES
34
35
36 /**
37  * How long until we give up on transmitting the message?
38  */
39 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 150)
40
41 static int ok;
42
43 static GNUNET_SCHEDULER_TaskIdentifier timeout_task;
44
45 struct PeerContext
46 {
47   struct GNUNET_CONFIGURATION_Handle *cfg;
48   struct GNUNET_TRANSPORT_Handle *th;
49   struct GNUNET_MessageHeader *hello;
50 #if START_ARM
51   struct GNUNET_OS_Process *arm_proc;
52 #endif
53 };
54
55 static struct PeerContext p1;
56
57 static struct PeerContext p2;
58
59
60 static void
61 clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
62 {
63   if (p1.th != NULL)
64   {
65     GNUNET_TRANSPORT_disconnect (p1.th);
66     p1.th = NULL;
67   }
68   if (p2.th != NULL)
69   {
70     GNUNET_TRANSPORT_disconnect (p2.th);
71     p2.th = NULL;
72   }
73   GNUNET_SCHEDULER_shutdown ();
74 }
75
76 /**
77  * Timeout, give up.
78  */
79 static void
80 timeout_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
81 {
82   timeout_task = GNUNET_SCHEDULER_NO_TASK;
83   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
84               "Timeout trying to connect peers, test failed.\n");
85   clean_up (NULL, tc);
86 }
87
88
89 /**
90  * Function called to notify transport users that another
91  * peer connected to us.
92  *
93  * @param cls closure
94  * @param peer the peer that connected
95  * @param latency current latency of the connection
96  * @param distance in overlay hops, as given by transport plugin
97  */
98 static void
99 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
100                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
101                 uint32_t ats_count)
102 {
103   if (peer == NULL)
104     return;
105 #if VERBOSE
106   fprintf (stderr, "Peer %s connected\n", GNUNET_i2s (peer));
107 #endif
108   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected, shutting down.\n");
109   ok = 0;
110   if (timeout_task != GNUNET_SCHEDULER_NO_TASK)
111   {
112     GNUNET_SCHEDULER_cancel (timeout_task);
113     timeout_task = GNUNET_SCHEDULER_NO_TASK;
114   }
115   GNUNET_SCHEDULER_add_now (&clean_up, NULL);
116 }
117
118
119 static void
120 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
121 {
122   struct PeerContext *p = cls;
123
124   GNUNET_TRANSPORT_get_hello_cancel (p->th, &process_hello, p);
125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
126               "Received HELLO, starting hostlist service.\n");
127 }
128
129
130 static void
131 setup_peer (struct PeerContext *p, const char *cfgname)
132 {
133   p->cfg = GNUNET_CONFIGURATION_create ();
134 #if START_ARM
135   p->arm_proc =
136       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
137                                "gnunet-service-arm",
138 #if VERBOSE
139                                "-L", "DEBUG",
140 #endif
141                                "-c", cfgname, NULL);
142 #endif
143   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
144   p->th =
145       GNUNET_TRANSPORT_connect (p->cfg, NULL, p, NULL, &notify_connect, NULL);
146   GNUNET_assert (p->th != NULL);
147   GNUNET_TRANSPORT_get_hello (p->th, &process_hello, p);
148 }
149
150
151 static void
152 waitpid_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
153 {
154   struct PeerContext *p = cls;
155
156 #if START_ARM
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Killing ARM process.\n");
158   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
159     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
160   if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
161     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
162   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
163               GNUNET_OS_process_get_pid (p->arm_proc));
164   GNUNET_OS_process_close (p->arm_proc);
165   p->arm_proc = NULL;
166 #endif
167   GNUNET_CONFIGURATION_destroy (p->cfg);
168 }
169
170
171 static void
172 stop_arm (struct PeerContext *p)
173 {
174   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Asking ARM to stop core service\n");
175   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &waitpid_task, p);
176 }
177
178
179 /**
180  * Try again to connect to transport service.
181  */
182 static void
183 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
184 {
185   stop_arm (&p1);
186   stop_arm (&p2);
187 }
188
189
190 static void
191 run (void *cls, char *const *args, const char *cfgfile,
192      const struct GNUNET_CONFIGURATION_Handle *cfg)
193 {
194   GNUNET_assert (ok == 1);
195   ok++;
196   timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &timeout_error, NULL);
197   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
198                                 NULL);
199   setup_peer (&p1, "test_gnunet_daemon_hostlist_peer1.conf");
200   setup_peer (&p2, "test_gnunet_daemon_hostlist_peer2.conf");
201 }
202
203
204 static int
205 check ()
206 {
207   char *const argv[] = { "test-gnunet-daemon-hostlist",
208     "-c", "test_gnunet_daemon_hostlist_data.conf",
209 #if VERBOSE
210     "-L", "DEBUG",
211 #endif
212     NULL
213   };
214   struct GNUNET_GETOPT_CommandLineOption options[] = {
215     GNUNET_GETOPT_OPTION_END
216   };
217   ok = 1;
218   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
219                       "test-gnunet-daemon-hostlist", "nohelp", options, &run,
220                       &ok);
221   return ok;
222 }
223
224
225 int
226 main (int argc, char *argv[])
227 {
228
229   int ret;
230
231   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-1");
232   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-2");
233   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-3");
234   GNUNET_log_setup ("test-gnunet-daemon-hostlist",
235 #if VERBOSE
236                     "DEBUG",
237 #else
238                     "WARNING",
239 #endif
240                     NULL);
241   ret = check ();
242   if (ret == 0)
243   {
244     fprintf (stderr, ".");
245     /* now do it again */
246     ret = check ();
247     fprintf (stderr, ".\n");
248   }
249   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-1");
250   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-2");
251   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-hostlist-peer-3");
252   return ret;
253 }
254
255 /* end of test_gnunet_daemon_hostlist_reconnect.c */