summaryrefslogtreecommitdiff
path: root/src/nat/nat_mini.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nat/nat_mini.c')
-rw-r--r--src/nat/nat_mini.c333
1 files changed, 333 insertions, 0 deletions
diff --git a/src/nat/nat_mini.c b/src/nat/nat_mini.c
index 2ecdf3575..8f13d298f 100644
--- a/src/nat/nat_mini.c
+++ b/src/nat/nat_mini.c
@@ -28,6 +28,22 @@
28#include "gnunet_nat_lib.h" 28#include "gnunet_nat_lib.h"
29#include "nat.h" 29#include "nat.h"
30 30
31/**
32 * How long do we give upnpc to create a mapping?
33 */
34#define MAP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
35
36
37/**
38 * How long do we give upnpc to remove a mapping?
39 */
40#define UNMAP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
41
42/**
43 * How often do we check for changes in the mapping?
44 */
45#define MAP_REFRESH_FREQ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
46
31 47
32/** 48/**
33 * Try to get the external IPv4 address of this peer. 49 * Try to get the external IPv4 address of this peer.
@@ -89,5 +105,322 @@ GNUNET_NAT_mini_get_external_ipv4 (struct in_addr *addr)
89} 105}
90 106
91 107
108/**
109 * Handle to a mapping created with upnpc.
110 */
111struct GNUNET_NAT_MiniHandle
112{
113
114 /**
115 * Function to call on mapping changes.
116 */
117 GNUNET_NAT_AddressCallback ac;
118
119 /**
120 * Closure for 'ac'.
121 */
122 void *ac_cls;
123
124 /**
125 * Command used to install the map.
126 */
127 struct GNUNET_OS_CommandHandle *map_cmd;
128
129 /**
130 * Command used to refresh our map information.
131 */
132 struct GNUNET_OS_CommandHandle *refresh_cmd;
133
134 /**
135 * Command used to remove the mapping.
136 */
137 struct GNUNET_OS_CommandHandle *unmap_cmd;
138
139 /**
140 * Our current external mapping (if we have one).
141 */
142 struct sockaddr_in current_addr;
143
144 /**
145 * We check the mapping periodically to see if it
146 * still works. This task triggers the check.
147 */
148 GNUNET_SCHEDULER_TaskIdentifier refresh_task;
149
150 /**
151 * Are we mapping TCP or UDP?
152 */
153 int is_tcp;
154
155 /**
156 * Did we succeed with creating a mapping?
157 */
158 int did_map;
159
160 /**
161 * Which port are we mapping?
162 */
163 uint16_t port;
164
165};
166
167
168/**
169 * Run upnpc -l to find out if our mapping changed.
170 *
171 * @param cls the 'struct GNUNET_NAT_MiniHandle'
172 * @param tc scheduler context
173 */
174static void
175do_refresh (void *cls,
176 const struct GNUNET_SCHEDULER_TaskContext *tc);
177
178
179/**
180 * Process the output from 'upnpc -l' to see if our
181 * external mapping changed. If so, do the notifications.
182 *
183 * @param cls the 'struct GNUNET_NAT_MiniHandle'
184 * @param line line of output, NULL at the end
185 */
186static void
187process_refresh_output (void *cls,
188 const char *line)
189{
190 struct GNUNET_NAT_MiniHandle *mini = cls;
191 enum GNUNET_OS_ProcessStatusType type;
192 unsigned long code;
193
194 if (NULL == line)
195 {
196 GNUNET_OS_command_stop (mini->refresh_cmd,
197 &type, &code);
198 mini->refresh_cmd = NULL;
199 mini->refresh_task = GNUNET_SCHEDULER_add_delayed (MAP_REFRESH_FREQ,
200 &do_refresh,
201 mini);
202 return;
203 }
204 /* FIXME: parse 'line' */
205 fprintf (stderr,
206 "Refresh output: `%s'\n",
207 line);
208}
209
210
211/**
212 * Run upnpc -l to find out if our mapping changed.
213 *
214 * @param cls the 'struct GNUNET_NAT_MiniHandle'
215 * @param tc scheduler context
216 */
217static void
218do_refresh (void *cls,
219 const struct GNUNET_SCHEDULER_TaskContext *tc)
220{
221 struct GNUNET_NAT_MiniHandle *mini = cls;
222
223 mini->refresh_task = GNUNET_SCHEDULER_NO_TASK;
224 mini->refresh_cmd = GNUNET_OS_command_run (&process_refresh_output,
225 mini,
226 MAP_TIMEOUT,
227 "upnpc",
228 "upnpc",
229 "-l",
230 NULL);
231}
232
233
234/**
235 * Process the output from the 'upnpc -r' command.
236 *
237 * @param cls the 'struct GNUNET_NAT_MiniHandle'
238 * @param line line of output, NULL at the end
239 */
240static void
241process_map_output (void *cls,
242 const char *line)
243{
244 struct GNUNET_NAT_MiniHandle *mini = cls;
245 enum GNUNET_OS_ProcessStatusType type;
246 unsigned long code;
247 const char *ipaddr;
248 char *ipa;
249 const char *pstr;
250 unsigned int port;
251
252 if (NULL == line)
253 {
254 GNUNET_OS_command_stop (mini->map_cmd,
255 &type, &code);
256 mini->map_cmd = NULL;
257 if (mini->did_map == GNUNET_YES)
258 mini->refresh_task = GNUNET_SCHEDULER_add_delayed (MAP_REFRESH_FREQ,
259 &do_refresh,
260 mini);
261 return;
262 }
263 /*
264 The upnpc output we're after looks like this:
265
266 "external 87.123.42.204:3000 TCP is redirected to internal 192.168.2.150:3000"
267 */
268 if ( (NULL == (ipaddr = strstr (line, " "))) ||
269 (NULL == (pstr = strstr (ipaddr, ":"))) ||
270 (1 != sscanf (pstr + 1, "%u", &port)) )
271 {
272 fprintf (stderr,
273 "Skipping output `%s'\n",
274 line);
275 return; /* skip line */
276 }
277 ipa = GNUNET_strdup (ipaddr + 1);
278 strstr (ipa, ":")[0] = '\0';
279 if (1 != inet_pton (AF_INET,
280 ipa,
281 &mini->current_addr.sin_addr))
282 {
283 GNUNET_free (ipa);
284 fprintf (stderr,
285 "Skipping output `%s'\n",
286 line);
287 return; /* skip line */
288 }
289 GNUNET_free (ipa);
290
291 mini->current_addr.sin_port = htons (port);
292 mini->current_addr.sin_family = AF_INET;
293#if HAVE_SOCKADDR_IN_SIN_LEN
294 mini->current_addr.sin_len = sizeof (struct sockaddr_in);
295#endif
296 mini->did_map = GNUNET_YES;
297 mini->ac (mini->ac_cls, GNUNET_YES,
298 (const struct sockaddr*) &mini->current_addr,
299 sizeof (mini->current_addr));
300}
301
302
303/**
304 * Start mapping the given port using (mini)upnpc. This function
305 * should typically not be used directly (it is used within the
306 * general-purpose 'GNUNET_NAT_register' code). However, it can be
307 * used if specifically UPnP-based NAT traversal is to be used or
308 * tested.
309 *
310 * @param port port to map
311 * @param is_tcp GNUNET_YES to map TCP, GNUNET_NO for UDP
312 * @param ac function to call with mapping result
313 * @param ac_cls closure for 'ac'
314 * @return NULL on error
315 */
316struct GNUNET_NAT_MiniHandle *
317GNUNET_NAT_mini_map_start (uint16_t port,
318 int is_tcp,
319 GNUNET_NAT_AddressCallback ac,
320 void *ac_cls)
321{
322 struct GNUNET_NAT_MiniHandle *ret;
323 char pstr[6];
324
325 ret = GNUNET_malloc (sizeof (struct GNUNET_NAT_MiniHandle));
326 ret->ac = ac;
327 ret->ac_cls = ac_cls;
328 ret->is_tcp = is_tcp;
329 ret->port = port;
330 GNUNET_snprintf (pstr, sizeof (pstr),
331 "%u",
332 (unsigned int) port);
333 ret->map_cmd = GNUNET_OS_command_run (&process_map_output,
334 ret,
335 MAP_TIMEOUT,
336 "upnpc",
337 "upnpc",
338 "-r", pstr,
339 is_tcp ? "tcp" : "udp",
340 NULL);
341
342 return ret;
343}
344
345
346/**
347 * Process output from our 'unmap' command.
348 *
349 * @param cls the 'struct GNUNET_NAT_MiniHandle'
350 * @param line line of output, NULL at the end
351 */
352static void
353process_unmap_output (void *cls,
354 const char *line)
355{
356 struct GNUNET_NAT_MiniHandle *mini = cls;
357 enum GNUNET_OS_ProcessStatusType type;
358 unsigned long code;
359
360 if (NULL == line)
361 {
362 GNUNET_OS_command_stop (mini->unmap_cmd,
363 &type, &code);
364 mini->unmap_cmd = NULL;
365 GNUNET_free (mini);
366 return;
367 }
368 /* we don't really care about the output... */
369}
370
371
372/**
373 * Remove a mapping created with (mini)upnpc. Calling
374 * this function will give 'upnpc' 1s to remove tha mapping,
375 * so while this function is non-blocking, a task will be
376 * left with the scheduler for up to 1s past this call.
377 *
378 * @param mini the handle
379 */
380void
381GNUNET_NAT_mini_map_stop (struct GNUNET_NAT_MiniHandle *mini)
382{
383 char pstr[6];
384 enum GNUNET_OS_ProcessStatusType type;
385 unsigned long code;
386
387 if (! mini->did_map)
388 {
389 if (mini->map_cmd != NULL)
390 {
391 GNUNET_OS_command_stop (mini->map_cmd,
392 &type, &code);
393 mini->map_cmd = NULL;
394 }
395 GNUNET_free (mini);
396 return;
397 }
398 if (GNUNET_SCHEDULER_NO_TASK != mini->refresh_task)
399 {
400 GNUNET_SCHEDULER_cancel (mini->refresh_task);
401 mini->refresh_task = GNUNET_SCHEDULER_NO_TASK;
402 }
403 if (mini->refresh_cmd != NULL)
404 {
405 GNUNET_OS_command_stop (mini->refresh_cmd,
406 &type, &code);
407 mini->refresh_cmd = NULL;
408 }
409 mini->ac (mini->ac_cls, GNUNET_NO,
410 (const struct sockaddr*) &mini->current_addr,
411 sizeof (mini->current_addr));
412 GNUNET_snprintf (pstr, sizeof (pstr),
413 "%u",
414 (unsigned int) mini->port);
415 mini->unmap_cmd = GNUNET_OS_command_run (&process_unmap_output,
416 mini,
417 UNMAP_TIMEOUT,
418 "upnpc",
419 "upnpc",
420 "-d", pstr,
421 mini->is_tcp ? "tcp" : "udp",
422 NULL);
423}
424
92 425
93/* end of nat_mini.c */ 426/* end of nat_mini.c */