clean up afterwards
[oweals/gnunet.git] / src / util / test_connection_addressing.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 2, 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 util/test_connection_addressing.c
22  * @brief tests for connection.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_connection_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_time_lib.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define PORT 12435
33
34
35 static struct GNUNET_CONNECTION_Handle *csock;
36
37 static struct GNUNET_CONNECTION_Handle *asock;
38
39 static struct GNUNET_CONNECTION_Handle *lsock;
40
41 static size_t sofar;
42
43 static struct GNUNET_NETWORK_Handle *ls;
44
45
46
47 /**
48  * Create and initialize a listen socket for the server.
49  *
50  * @return NULL on error, otherwise the listen socket
51  */
52 static struct GNUNET_NETWORK_Handle *
53 open_listen_socket ()
54 {
55   const static int on = 1;
56   struct sockaddr_in sa;
57   struct GNUNET_NETWORK_Handle *desc;
58
59   memset (&sa, 0, sizeof (sa));
60 #if HAVE_SOCKADDR_IN_SIN_LEN
61   sa.sin_len = sizeof (sa);
62 #endif
63   sa.sin_port = htons (PORT);
64   desc = GNUNET_NETWORK_socket_socket (AF_INET, SOCK_STREAM, 0);
65   GNUNET_assert (desc != 0);
66   if (GNUNET_NETWORK_socket_setsockopt (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
67     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
68                 "setsockopt");
69   GNUNET_assert (GNUNET_NETWORK_socket_bind (desc,
70                                              (const struct sockaddr*) &sa,
71                                              sizeof (sa)) == GNUNET_OK);
72   GNUNET_NETWORK_socket_listen (desc, 5);
73   return desc;
74 }
75
76
77 static void
78 receive_check (void *cls,
79                const void *buf,
80                size_t available,
81                const struct sockaddr *addr, socklen_t addrlen, int errCode)
82 {
83   int *ok = cls;
84
85   GNUNET_assert (buf != NULL);  /* no timeout */
86   if (0 == memcmp (&"Hello World"[sofar], buf, available))
87     sofar += available;
88   if (sofar < 12)
89     {
90       GNUNET_CONNECTION_receive (asock,
91                               1024,
92                               GNUNET_TIME_relative_multiply
93                               (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check,
94                               cls);
95     }
96   else
97     {
98       *ok = 0;
99       GNUNET_CONNECTION_destroy (asock);
100     }
101 }
102
103
104 static void
105 run_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   void *addr;
108   size_t alen;
109   struct sockaddr_in *v4;
110   struct sockaddr_in expect;
111
112   asock = GNUNET_CONNECTION_create_from_accept (tc->sched,
113                                                     NULL, NULL, ls, 1024);
114   GNUNET_assert (asock != NULL);
115   GNUNET_assert (GNUNET_YES == GNUNET_CONNECTION_check (asock));
116   GNUNET_assert (GNUNET_OK ==
117                  GNUNET_CONNECTION_get_address (asock, &addr, &alen));
118   GNUNET_assert (alen == sizeof (struct sockaddr_in));
119   v4 = addr;
120   memset (&expect, 0, sizeof (expect));
121 #if HAVE_SOCKADDR_IN_SIN_LEN
122   expect.sin_len = sizeof (expect);
123 #endif
124   expect.sin_family = AF_INET;
125   expect.sin_port = v4->sin_port;
126   expect.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
127   GNUNET_assert (0 == memcmp (&expect, v4, alen));
128   GNUNET_free (addr);
129   GNUNET_CONNECTION_destroy (lsock);
130   GNUNET_CONNECTION_receive (asock,
131                           1024,
132                           GNUNET_TIME_relative_multiply
133                           (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check, cls);
134 }
135
136 static size_t
137 make_hello (void *cls, size_t size, void *buf)
138 {
139   GNUNET_assert (size >= 12);
140   strcpy ((char *) buf, "Hello World");
141   return 12;
142 }
143
144 static void
145 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
146 {
147   struct sockaddr_in v4;
148   ls = open_listen_socket ();
149   lsock = GNUNET_CONNECTION_create_from_existing (tc->sched, ls, 0);
150   GNUNET_assert (lsock != NULL);
151
152 #if HAVE_SOCKADDR_IN_SIN_LEN
153   v4.sin_len = sizeof (v4);
154 #endif
155   v4.sin_family = AF_INET;
156   v4.sin_port = htons (PORT);
157   v4.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
158   csock = GNUNET_CONNECTION_create_from_sockaddr (tc->sched,
159                                                       AF_INET,
160                                                       (const struct sockaddr
161                                                        *) &v4, sizeof (v4),
162                                                       1024);
163   GNUNET_assert (csock != NULL);
164   GNUNET_assert (NULL !=
165                  GNUNET_CONNECTION_notify_transmit_ready (csock,
166                                                        12,
167                                                        GNUNET_TIME_UNIT_SECONDS,
168                                                        &make_hello, NULL));
169   GNUNET_CONNECTION_destroy (csock);
170   GNUNET_SCHEDULER_add_read_net (tc->sched,
171                              GNUNET_NO,
172                              GNUNET_SCHEDULER_PRIORITY_HIGH,
173                              GNUNET_SCHEDULER_NO_TASK,
174                              GNUNET_TIME_UNIT_FOREVER_REL,
175                              ls, &run_accept, cls);
176 }
177
178
179 /**
180  * Main method, starts scheduler with task ,
181  * checks that "ok" is correct at the end.
182  */
183 static int
184 check ()
185 {
186   int ok;
187
188   ok = 1;
189   GNUNET_SCHEDULER_run (&task, &ok);
190   return ok;
191 }
192
193
194
195 int
196 main (int argc, char *argv[])
197 {
198   int ret = 0;
199
200   GNUNET_log_setup ("test_connection_addressing", 
201 #if VERBOSE
202                     "DEBUG",
203 #else
204                     "WARNING", 
205 #endif
206                     NULL);
207   ret += check ();
208   return ret;
209 }
210
211 /* end of test_connection_addressing.c */