Polish and simplyfy STUN code, move STUN code to GNUNET_NAT_
[oweals/gnunet.git] / src / nat / test_stun.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2015 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 /**
22  * Testcase for STUN server resolution
23  *
24  * @file nat/test_stun.c
25  * @brief Testcase for STUN library
26  * @author Bruno Souza Cabral - Major rewrite.
27
28  *
29  */
30
31
32 #include "platform.h"
33 #include "gnunet_util_lib.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_scheduler_lib.h"
36 #include "gnunet_nat_lib.h"
37
38
39
40 #define LOG(kind,...) GNUNET_log_from (kind, "test-stun", __VA_ARGS__)
41
42 /**
43  * The port the test service is running on (default 7895)
44  */
45 static unsigned long port = 7895;
46 static int ret = 1;
47
48 static char *stun_server = "stun.ekiga.net";
49 static int stun_port = 3478;
50
51 /**
52  * The listen socket of the service for IPv4
53  */
54 static struct GNUNET_NETWORK_Handle *lsock4;
55
56
57 /**
58  * The listen task ID for IPv4
59  */
60 static struct GNUNET_SCHEDULER_Task * ltask4;
61
62
63
64
65 static void
66 print_answer(struct sockaddr_in* answer)
67 {
68         printf("External IP is: %s , with port %d\n", inet_ntoa(answer->sin_addr), ntohs(answer->sin_port));
69 }
70
71
72 /**
73  * Activity on our incoming socket.  Read data from the
74  * incoming connection.
75  *
76  * @param cls 
77  * @param tc scheduler context
78  */
79 static void
80 do_udp_read (void *cls,
81              const struct GNUNET_SCHEDULER_TaskContext *tc)
82 {
83     //struct GNUNET_NAT_Test *tst = cls;
84         unsigned char reply_buf[1024];
85         ssize_t rlen;
86         struct sockaddr_in answer;
87
88
89     if ((0 != (tc->reason & GNUNET_SCHEDULER_REASON_READ_READY)) &&
90       (GNUNET_NETWORK_fdset_isset (tc->read_ready,
91                                    lsock4)))
92         {
93                 rlen = GNUNET_NETWORK_socket_recv (lsock4, reply_buf, sizeof (reply_buf));
94                 printf("Recivied something of size %d", rlen);
95                 
96                 //Lets handle the packet
97                 memset(&answer, 0, sizeof(struct sockaddr_in));
98         GNUNET_NAT_stun_handle_packet(reply_buf,rlen, &answer);
99
100                 //Print the anser
101                 //TODO: Delete the object
102                 ret = 0;
103                 print_answer(&answer);
104                 
105                 
106         }
107 }
108
109
110 /**
111  * Create an IPv4 listen socket bound to our port.
112  *
113  * @return NULL on error
114  */
115 static struct GNUNET_NETWORK_Handle *
116 bind_v4 ()
117 {
118     struct GNUNET_NETWORK_Handle *ls;
119     struct sockaddr_in sa4;
120     int eno;
121
122     memset (&sa4, 0, sizeof (sa4));
123     sa4.sin_family = AF_INET;
124     sa4.sin_port = htons (port);
125 #if HAVE_SOCKADDR_IN_SIN_LEN
126     sa4.sin_len = sizeof (sa4);
127 #endif 
128     ls = GNUNET_NETWORK_socket_create (AF_INET,
129                                        SOCK_DGRAM,
130                                        0);
131     if (NULL == ls)
132         return NULL;
133     if (GNUNET_OK !=
134             GNUNET_NETWORK_socket_bind (ls, (const struct sockaddr *) &sa4,
135                                         sizeof (sa4)))
136     {
137         eno = errno;
138         GNUNET_NETWORK_socket_close (ls);
139         errno = eno;
140         return NULL;
141     }
142     return ls;
143 }
144
145
146
147 /**
148  * Main function run with scheduler.
149  */
150
151
152 static void
153 run (void *cls, char *const *args, const char *cfgfile,
154      const struct GNUNET_CONFIGURATION_Handle *cfg)
155 {
156
157
158     //Lets create the socket
159     lsock4 = bind_v4 ();
160     if (NULL == lsock4)
161     {
162         GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
163     }
164     else
165     {
166                 printf("Binded, now will call add_read\n");
167         //Lets call our function now when it accepts
168         ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
169                                                 lsock4, &do_udp_read, NULL);
170
171     }
172     if(NULL == lsock4 )
173     {
174         GNUNET_SCHEDULER_shutdown ();
175         return;
176     }
177     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
178                 "Service listens on port %u\n",
179                 port);
180         printf("Start main event\n");
181     GNUNET_NAT_stun_make_request(stun_server, stun_port, lsock4);
182     //Main event
183     //main_task = GNUNET_SCHEDULER_add_delayed (timeout, &do_timeout, nh);
184
185 }
186
187
188 int
189 main (int argc, char *const argv[])
190 {
191     struct GNUNET_GETOPT_CommandLineOption options[] = {
192         GNUNET_GETOPT_OPTION_END
193     };
194
195     char *const argv_prog[] = {
196         "test-stun",
197         NULL
198     };
199     GNUNET_log_setup ("test-stun",
200                       "WARNING",
201                       NULL);
202
203     GNUNET_PROGRAM_run (1, argv_prog, "test-stun", "nohelp", options, &run, NULL);
204     
205         return ret;
206 }
207
208 /* end of test_nat.c */