Returns now GNUNET_SYSERR
[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 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 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_family = AF_INET;
64   sa.sin_port = htons (PORT);
65   desc = GNUNET_NETWORK_socket_create (AF_INET, SOCK_STREAM, 0);
66   GNUNET_assert (desc != 0);
67   if (GNUNET_NETWORK_socket_setsockopt
68       (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
69     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
70                 "setsockopt");
71   if (GNUNET_OK != GNUNET_NETWORK_socket_bind (desc,
72       (const struct sockaddr *) &sa, sizeof(sa)))
73     {
74       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
75           "bind");
76       GNUNET_assert (0);
77     }
78   GNUNET_NETWORK_socket_listen (desc, 5);
79   return desc;
80 }
81
82
83 static void
84 receive_check (void *cls,
85                const void *buf,
86                size_t available,
87                const struct sockaddr *addr, socklen_t addrlen, int errCode)
88 {
89   int *ok = cls;
90
91   GNUNET_assert (buf != NULL);  /* no timeout */
92   if (0 == memcmp (&"Hello World"[sofar], buf, available))
93     sofar += available;
94   if (sofar < 12)
95     {
96       GNUNET_CONNECTION_receive (asock,
97                                  1024,
98                                  GNUNET_TIME_relative_multiply
99                                  (GNUNET_TIME_UNIT_SECONDS, 5),
100                                  &receive_check, cls);
101     }
102   else
103     {
104       *ok = 0;
105       GNUNET_CONNECTION_destroy (asock, GNUNET_YES);
106     }
107 }
108
109
110 static void
111 run_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112 {
113   void *addr;
114   size_t alen;
115   struct sockaddr_in *v4;
116   struct sockaddr_in expect;
117
118   asock = GNUNET_CONNECTION_create_from_accept (NULL, NULL, ls);
119   GNUNET_assert (asock != NULL);
120   GNUNET_assert (GNUNET_YES == GNUNET_CONNECTION_check (asock));
121   GNUNET_assert (GNUNET_OK ==
122                  GNUNET_CONNECTION_get_address (asock, &addr, &alen));
123   GNUNET_assert (alen == sizeof (struct sockaddr_in));
124   v4 = addr;
125   memset (&expect, 0, sizeof (expect));
126 #if HAVE_SOCKADDR_IN_SIN_LEN
127   expect.sin_len = sizeof (expect);
128 #endif
129   expect.sin_family = AF_INET;
130   expect.sin_port = v4->sin_port;
131   expect.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
132   GNUNET_assert (0 == memcmp (&expect, v4, alen));
133   GNUNET_free (addr);
134   GNUNET_CONNECTION_destroy (lsock, GNUNET_YES);
135   GNUNET_CONNECTION_receive (asock,
136                              1024,
137                              GNUNET_TIME_relative_multiply
138                              (GNUNET_TIME_UNIT_SECONDS, 5), &receive_check,
139                              cls);
140 }
141
142 static size_t
143 make_hello (void *cls, size_t size, void *buf)
144 {
145   GNUNET_assert (size >= 12);
146   strcpy ((char *) buf, "Hello World");
147   return 12;
148 }
149
150 static void
151 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
152 {
153   struct sockaddr_in v4;
154   ls = open_listen_socket ();
155   lsock = GNUNET_CONNECTION_create_from_existing (ls);
156   GNUNET_assert (lsock != NULL);
157
158 #if HAVE_SOCKADDR_IN_SIN_LEN
159   v4.sin_len = sizeof (v4);
160 #endif
161   v4.sin_family = AF_INET;
162   v4.sin_port = htons (PORT);
163   v4.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
164   csock = GNUNET_CONNECTION_create_from_sockaddr (AF_INET,
165                                                   (const struct sockaddr
166                                                    *) &v4, sizeof (v4));
167   GNUNET_assert (csock != NULL);
168   GNUNET_assert (NULL !=
169                  GNUNET_CONNECTION_notify_transmit_ready (csock,
170                                                           12,
171                                                           GNUNET_TIME_UNIT_SECONDS,
172                                                           &make_hello, NULL));
173   GNUNET_CONNECTION_destroy (csock, GNUNET_YES);
174   GNUNET_SCHEDULER_add_read_net (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 */