VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NAT/pxping.c@ 58725

Last change on this file since 58725 was 56300, checked in by vboxsync, 9 years ago

NetworkServices: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 54.7 KB
Line 
1/* $Id: pxping.c 56300 2015-06-09 14:36:22Z vboxsync $ */
2/** @file
3 * NAT Network - ping proxy, raw sockets version.
4 */
5
6/*
7 * Copyright (C) 2013-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#define LOG_GROUP LOG_GROUP_NAT_SERVICE
19
20#include "winutils.h"
21#include "proxy.h"
22#include "proxy_pollmgr.h"
23#include "pxremap.h"
24
25#include <iprt/string.h>
26
27#ifndef RT_OS_WINDOWS
28#include <sys/types.h>
29#include <sys/socket.h>
30#ifdef RT_OS_DARWIN
31# define __APPLE_USE_RFC_3542
32#endif
33#include <netinet/in.h>
34#include <poll.h>
35#include <stdint.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#else
40#include <iprt/stdint.h>
41#include <stdio.h>
42#include <stdlib.h>
43#include <string.h>
44#include "winpoll.h"
45#endif
46
47#include "lwip/opt.h"
48
49#include "lwip/sys.h"
50#include "lwip/tcpip.h"
51#include "lwip/inet_chksum.h"
52#include "lwip/ip.h"
53#include "lwip/icmp.h"
54
55#if defined(RT_OS_LINUX) && !defined(__USE_GNU)
56#if __GLIBC_PREREQ(2, 8)
57/*
58 * XXX: This is gross. in6_pktinfo is now hidden behind _GNU_SOURCE
59 * https://sourceware.org/bugzilla/show_bug.cgi?id=6775
60 *
61 * But in older glibc versions, e.g. RHEL5, it is not! I don't want
62 * to deal with _GNU_SOURCE now, so as a kludge check for glibc
63 * version. It seems the __USE_GNU guard was introduced in 2.8.
64 */
65struct in6_pktinfo {
66 struct in6_addr ipi6_addr;
67 unsigned int ipi6_ifindex;
68};
69#endif /* __GLIBC_PREREQ */
70#endif /* RT_OS_LINUX && !__USE_GNU */
71
72
73/* forward */
74struct ping_pcb;
75
76
77/**
78 * Global state for ping proxy collected in one entity to minimize
79 * globals. There's only one instance of this structure.
80 *
81 * Raw ICMP sockets are promiscuous, so it doesn't make sense to have
82 * multiple. If this code ever needs to support multiple netifs, the
83 * netif member should be exiled into "pcb".
84 */
85struct pxping {
86 SOCKET sock4;
87
88#if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS)
89# define DF_WITH_IP_HDRINCL
90 int hdrincl;
91#else
92 int df;
93#endif
94 int ttl;
95 int tos;
96
97 SOCKET sock6;
98#ifdef RT_OS_WINDOWS
99 LPFN_WSARECVMSG pfWSARecvMsg6;
100#endif
101 int hopl;
102
103 struct pollmgr_handler pmhdl4;
104 struct pollmgr_handler pmhdl6;
105
106 struct netif *netif;
107
108 /**
109 * Protect lwIP and pmgr accesses to the list of pcbs.
110 */
111 sys_mutex_t lock;
112
113 /*
114 * We need to find pcbs both from the guest side and from the host
115 * side. If we need to support industrial grade ping throughput,
116 * we will need two pcb hashes. For now, a short linked list
117 * should be enough. Cf. pxping_pcb_for_request() and
118 * pxping_pcb_for_reply().
119 */
120#define PXPING_MAX_PCBS 8
121 size_t npcbs;
122 struct ping_pcb *pcbs;
123
124#define TIMEOUT 5
125 int timer_active;
126 size_t timeout_slot;
127 struct ping_pcb *timeout_list[TIMEOUT];
128};
129
130
131/**
132 * Quasi PCB for ping.
133 */
134struct ping_pcb {
135 ipX_addr_t src;
136 ipX_addr_t dst;
137
138 u8_t is_ipv6;
139 u8_t is_mapped;
140
141 u16_t guest_id;
142 u16_t host_id;
143
144 /**
145 * Desired slot in pxping::timeout_list. See pxping_timer().
146 */
147 size_t timeout_slot;
148
149 /**
150 * Chaining for pxping::timeout_list
151 */
152 struct ping_pcb **pprev_timeout;
153 struct ping_pcb *next_timeout;
154
155 /**
156 * Chaining for pxping::pcbs
157 */
158 struct ping_pcb *next;
159
160 union {
161 struct sockaddr_in sin;
162 struct sockaddr_in6 sin6;
163 } peer;
164};
165
166
167/**
168 * lwIP thread callback message for IPv4 ping.
169 *
170 * We pass raw IP datagram for ip_output_if() so we only need pbuf and
171 * netif (from pxping).
172 */
173struct ping_msg {
174 struct tcpip_msg msg;
175 struct pxping *pxping;
176 struct pbuf *p;
177};
178
179
180/**
181 * lwIP thread callback message for IPv6 ping.
182 *
183 * We cannot obtain raw IPv6 datagram from host without extra trouble,
184 * so we pass ICMPv6 payload in pbuf and also other parameters to
185 * ip6_output_if().
186 */
187struct ping6_msg {
188 struct tcpip_msg msg;
189 struct pxping *pxping;
190 struct pbuf *p;
191 ip6_addr_t src, dst;
192 int hopl, tclass;
193};
194
195
196#ifdef RT_OS_WINDOWS
197static int pxping_init_windows(struct pxping *pxping);
198#endif
199static void pxping_recv4(void *arg, struct pbuf *p);
200static void pxping_recv6(void *arg, struct pbuf *p);
201
202static void pxping_timer(void *arg);
203static void pxping_timer_needed(struct pxping *pxping);
204
205static struct ping_pcb *pxping_pcb_for_request(struct pxping *pxping,
206 int is_ipv6,
207 ipX_addr_t *src, ipX_addr_t *dst,
208 u16_t guest_id);
209static struct ping_pcb *pxping_pcb_for_reply(struct pxping *pxping, int is_ipv6,
210 ipX_addr_t *dst, u16_t host_id);
211
212static FNRTSTRFORMATTYPE pxping_pcb_rtstrfmt;
213static struct ping_pcb *pxping_pcb_allocate(struct pxping *pxping);
214static void pxping_pcb_register(struct pxping *pxping, struct ping_pcb *pcb);
215static void pxping_pcb_deregister(struct pxping *pxping, struct ping_pcb *pcb);
216static void pxping_pcb_delete(struct pxping *pxping, struct ping_pcb *pcb);
217static void pxping_timeout_add(struct pxping *pxping, struct ping_pcb *pcb);
218static void pxping_timeout_del(struct pxping *pxping, struct ping_pcb *pcb);
219
220static int pxping_pmgr_pump(struct pollmgr_handler *handler, SOCKET fd, int revents);
221
222static void pxping_pmgr_icmp4(struct pxping *pxping);
223static void pxping_pmgr_icmp4_echo(struct pxping *pxping,
224 u16_t iplen, struct sockaddr_in *peer);
225static void pxping_pmgr_icmp4_error(struct pxping *pxping,
226 u16_t iplen, struct sockaddr_in *peer);
227static void pxping_pmgr_icmp6(struct pxping *pxping);
228static void pxping_pmgr_icmp6_echo(struct pxping *pxping,
229 ip6_addr_t *src, ip6_addr_t *dst,
230 int hopl, int tclass, u16_t icmplen);
231static void pxping_pmgr_icmp6_error(struct pxping *pxping,
232 ip6_addr_t *src, ip6_addr_t *dst,
233 int hopl, int tclass, u16_t icmplen);
234
235static void pxping_pmgr_forward_inbound(struct pxping *pxping, u16_t iplen);
236static void pxping_pcb_forward_inbound(void *arg);
237
238static void pxping_pmgr_forward_inbound6(struct pxping *pxping,
239 ip6_addr_t *src, ip6_addr_t *dst,
240 u8_t hopl, u8_t tclass,
241 u16_t icmplen);
242static void pxping_pcb_forward_inbound6(void *arg);
243
244/*
245 * NB: This is not documented except in RTFS.
246 *
247 * If ip_output_if() is passed dest == NULL then it treats p as
248 * complete IP packet with payload pointing to the IP header. It does
249 * not build IP header, ignores all header-related arguments, fetches
250 * real destination from the header in the pbuf and outputs pbuf to
251 * the specified netif.
252 */
253#define ip_raw_output_if(p, netif) \
254 (ip_output_if((p), NULL, NULL, 0, 0, 0, (netif)))
255
256
257
258static struct pxping g_pxping;
259
260
261err_t
262pxping_init(struct netif *netif, SOCKET sock4, SOCKET sock6)
263{
264 const int on = 1;
265 int status;
266
267 if (sock4 == INVALID_SOCKET && sock6 == INVALID_SOCKET) {
268 return ERR_VAL;
269 }
270
271 g_pxping.netif = netif;
272 sys_mutex_new(&g_pxping.lock);
273
274 g_pxping.sock4 = sock4;
275 if (g_pxping.sock4 != INVALID_SOCKET) {
276#ifdef DF_WITH_IP_HDRINCL
277 g_pxping.hdrincl = 0;
278#else
279 g_pxping.df = -1;
280#endif
281 g_pxping.ttl = -1;
282 g_pxping.tos = 0;
283
284#ifdef RT_OS_LINUX
285 {
286 const int dont = IP_PMTUDISC_DONT;
287 status = setsockopt(sock4, IPPROTO_IP, IP_MTU_DISCOVER,
288 &dont, sizeof(dont));
289 if (status != 0) {
290 DPRINTF(("IP_MTU_DISCOVER: %R[sockerr]\n", SOCKERRNO()));
291 }
292 }
293#endif /* RT_OS_LINUX */
294
295 g_pxping.pmhdl4.callback = pxping_pmgr_pump;
296 g_pxping.pmhdl4.data = (void *)&g_pxping;
297 g_pxping.pmhdl4.slot = -1;
298 pollmgr_add(&g_pxping.pmhdl4, g_pxping.sock4, POLLIN);
299
300 ping_proxy_accept(pxping_recv4, &g_pxping);
301 }
302
303 g_pxping.sock6 = sock6;
304#ifdef RT_OS_WINDOWS
305 /* we need recvmsg */
306 if (g_pxping.sock6 != INVALID_SOCKET) {
307 status = pxping_init_windows(&g_pxping);
308 if (status == SOCKET_ERROR) {
309 g_pxping.sock6 = INVALID_SOCKET;
310 /* close(sock6); */
311 }
312 }
313#endif
314 if (g_pxping.sock6 != INVALID_SOCKET) {
315 g_pxping.hopl = -1;
316
317#if !defined(IPV6_RECVPKTINFO)
318#define IPV6_RECVPKTINFO (IPV6_PKTINFO)
319#endif
320 status = setsockopt(sock6, IPPROTO_IPV6, IPV6_RECVPKTINFO,
321 (const char *)&on, sizeof(on));
322 if (status < 0) {
323 DPRINTF(("IPV6_RECVPKTINFO: %R[sockerr]\n", SOCKERRNO()));
324 /* XXX: for now this is fatal */
325 }
326
327#if !defined(IPV6_RECVHOPLIMIT)
328#define IPV6_RECVHOPLIMIT (IPV6_HOPLIMIT)
329#endif
330 status = setsockopt(sock6, IPPROTO_IPV6, IPV6_RECVHOPLIMIT,
331 (const char *)&on, sizeof(on));
332 if (status < 0) {
333 DPRINTF(("IPV6_RECVHOPLIMIT: %R[sockerr]\n", SOCKERRNO()));
334 }
335
336#ifdef IPV6_RECVTCLASS /* new in RFC 3542, there's no RFC 2292 counterpart */
337 /* TODO: IPV6_RECVTCLASS */
338#endif
339
340 g_pxping.pmhdl6.callback = pxping_pmgr_pump;
341 g_pxping.pmhdl6.data = (void *)&g_pxping;
342 g_pxping.pmhdl6.slot = -1;
343 pollmgr_add(&g_pxping.pmhdl6, g_pxping.sock6, POLLIN);
344
345 ping6_proxy_accept(pxping_recv6, &g_pxping);
346 }
347
348 status = RTStrFormatTypeRegister("ping_pcb", pxping_pcb_rtstrfmt, NULL);
349 AssertRC(status);
350
351 return ERR_OK;
352}
353
354
355#ifdef RT_OS_WINDOWS
356static int
357pxping_init_windows(struct pxping *pxping)
358{
359 GUID WSARecvMsgGUID = WSAID_WSARECVMSG;
360 DWORD nread;
361 int status;
362
363 pxping->pfWSARecvMsg6 = NULL;
364 status = WSAIoctl(pxping->sock6,
365 SIO_GET_EXTENSION_FUNCTION_POINTER,
366 &WSARecvMsgGUID, sizeof(WSARecvMsgGUID),
367 &pxping->pfWSARecvMsg6, sizeof(pxping->pfWSARecvMsg6),
368 &nread,
369 NULL, NULL);
370 return status;
371}
372#endif /* RT_OS_WINDOWS */
373
374
375static u32_t
376chksum_delta_16(u16_t oval, u16_t nval)
377{
378 u32_t sum = (u16_t)~oval;
379 sum += nval;
380 return sum;
381}
382
383
384static u32_t
385chksum_update_16(u16_t *oldp, u16_t nval)
386{
387 u32_t sum = chksum_delta_16(*oldp, nval);
388 *oldp = nval;
389 return sum;
390}
391
392
393static u32_t
394chksum_delta_32(u32_t oval, u32_t nval)
395{
396 u32_t sum = ~oval;
397 sum = FOLD_U32T(sum);
398 sum += FOLD_U32T(nval);
399 return sum;
400}
401
402
403static u32_t
404chksum_update_32(u32_t *oldp, u32_t nval)
405{
406 u32_t sum = chksum_delta_32(*oldp, nval);
407 *oldp = nval;
408 return sum;
409}
410
411
412static u32_t
413chksum_delta_ipv6(const ip6_addr_t *oldp, const ip6_addr_t *newp)
414{
415 u32_t sum;
416
417 sum = chksum_delta_32(oldp->addr[0], newp->addr[0]);
418 sum += chksum_delta_32(oldp->addr[1], newp->addr[1]);
419 sum += chksum_delta_32(oldp->addr[2], newp->addr[2]);
420 sum += chksum_delta_32(oldp->addr[3], newp->addr[3]);
421
422 return sum;
423}
424
425
426static u32_t
427chksum_update_ipv6(ip6_addr_t *oldp, const ip6_addr_t *newp)
428{
429 u32_t sum;
430
431 sum = chksum_update_32(&oldp->addr[0], newp->addr[0]);
432 sum += chksum_update_32(&oldp->addr[1], newp->addr[1]);
433 sum += chksum_update_32(&oldp->addr[2], newp->addr[2]);
434 sum += chksum_update_32(&oldp->addr[3], newp->addr[3]);
435
436 return sum;
437}
438
439
440/**
441 * ICMP Echo Request in pbuf "p" is to be proxied.
442 */
443static void
444pxping_recv4(void *arg, struct pbuf *p)
445{
446 struct pxping *pxping = (struct pxping *)arg;
447 struct ping_pcb *pcb;
448#ifdef DF_WITH_IP_HDRINCL
449 struct ip_hdr iph_orig;
450#endif
451 struct icmp_echo_hdr icmph_orig;
452 struct ip_hdr *iph;
453 struct icmp_echo_hdr *icmph;
454 int df, ttl, tos;
455 u32_t sum;
456 u16_t iphlen;
457 int status;
458
459 iphlen = ip_current_header_tot_len();
460 if (iphlen != IP_HLEN) { /* we don't do options */
461 pbuf_free(p);
462 return;
463 }
464
465 iph = (/* UNCONST */ struct ip_hdr *)ip_current_header();
466 icmph = (struct icmp_echo_hdr *)p->payload;
467
468 pcb = pxping_pcb_for_request(pxping, 0,
469 ipX_current_src_addr(),
470 ipX_current_dest_addr(),
471 icmph->id);
472 if (pcb == NULL) {
473 pbuf_free(p);
474 return;
475 }
476
477 DPRINTF(("ping %p: %R[ping_pcb] seq %d len %u ttl %d\n",
478 pcb, pcb,
479 ntohs(icmph->seqno), (unsigned int)p->tot_len,
480 IPH_TTL(iph)));
481
482 ttl = IPH_TTL(iph);
483 if (!pcb->is_mapped) {
484 if (RT_UNLIKELY(ttl == 1)) {
485 status = pbuf_header(p, iphlen); /* back to IP header */
486 if (RT_LIKELY(status == 0)) {
487 icmp_time_exceeded(p, ICMP_TE_TTL);
488 }
489 pbuf_free(p);
490 return;
491 }
492 --ttl;
493 }
494
495 /*
496 * OS X doesn't provide a socket option to control fragmentation.
497 * Solaris doesn't provide IP_DONTFRAG on all releases we support.
498 * In this case we have to use IP_HDRINCL. We don't want to use
499 * it always since it doesn't handle fragmentation (but that's ok
500 * for DF) and Windows doesn't do automatic source address
501 * selection with IP_HDRINCL.
502 */
503 df = (IPH_OFFSET(iph) & PP_HTONS(IP_DF)) != 0;
504
505#ifdef DF_WITH_IP_HDRINCL
506 if (df != pxping->hdrincl) {
507 status = setsockopt(pxping->sock4, IPPROTO_IP, IP_HDRINCL,
508 &df, sizeof(df));
509 if (RT_LIKELY(status == 0)) {
510 pxping->hdrincl = df;
511 }
512 else {
513 DPRINTF(("IP_HDRINCL: %R[sockerr]\n", SOCKERRNO()));
514 }
515 }
516
517 if (pxping->hdrincl) {
518 status = pbuf_header(p, iphlen); /* back to IP header */
519 if (RT_UNLIKELY(status != 0)) {
520 pbuf_free(p);
521 return;
522 }
523
524 /* we will overwrite IP header, save original for ICMP errors */
525 memcpy(&iph_orig, iph, iphlen);
526
527 if (pcb->is_mapped) {
528 ip4_addr_set_u32(&iph->dest, pcb->peer.sin.sin_addr.s_addr);
529 }
530
531 if (g_proxy_options->src4 != NULL) {
532 ip4_addr_set_u32(&iph->src, g_proxy_options->src4->sin_addr.s_addr);
533 }
534 else {
535 /* let the kernel select suitable source address */
536 ip_addr_set_any(&iph->src);
537 }
538
539 IPH_TTL_SET(iph, ttl); /* already decremented */
540 IPH_ID_SET(iph, 0); /* kernel will set one */
541#ifdef RT_OS_DARWIN
542 /* wants ip_offset and ip_len fields in host order */
543 IPH_OFFSET_SET(iph, ntohs(IPH_OFFSET(iph)));
544 IPH_LEN_SET(iph, ntohs(IPH_LEN(iph)));
545 /* wants checksum of everything (sic!), in host order */
546 sum = inet_chksum_pbuf(p);
547 IPH_CHKSUM_SET(iph, sum);
548#else /* !RT_OS_DARWIN */
549 IPH_CHKSUM_SET(iph, 0); /* kernel will recalculate */
550#endif
551 }
552 else /* !pxping->hdrincl */
553#endif /* DF_WITH_IP_HDRINCL */
554 {
555#if !defined(DF_WITH_IP_HDRINCL)
556 /* control DF flag via setsockopt(2) */
557#define USE_DF_OPTION(_Optname) \
558 const int dfopt = _Optname; \
559 const char * const dfoptname = #_Optname;
560#if defined(RT_OS_LINUX)
561 USE_DF_OPTION(IP_MTU_DISCOVER);
562 df = df ? IP_PMTUDISC_DO : IP_PMTUDISC_DONT;
563#elif defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD)
564 USE_DF_OPTION(IP_DONTFRAG);
565#elif defined(RT_OS_WINDOWS)
566 USE_DF_OPTION(IP_DONTFRAGMENT);
567#endif
568 if (df != pxping->df) {
569 status = setsockopt(pxping->sock4, IPPROTO_IP, dfopt,
570 (char *)&df, sizeof(df));
571 if (RT_LIKELY(status == 0)) {
572 pxping->df = df;
573 }
574 else {
575 DPRINTF(("%s: %R[sockerr]\n", dfoptname, SOCKERRNO()));
576 }
577 }
578#endif /* !DF_WITH_IP_HDRINCL */
579
580 if (ttl != pxping->ttl) {
581 status = setsockopt(pxping->sock4, IPPROTO_IP, IP_TTL,
582 (char *)&ttl, sizeof(ttl));
583 if (RT_LIKELY(status == 0)) {
584 pxping->ttl = ttl;
585 }
586 else {
587 DPRINTF(("IP_TTL: %R[sockerr]\n", SOCKERRNO()));
588 }
589 }
590
591 tos = IPH_TOS(iph);
592 if (tos != pxping->tos) {
593 status = setsockopt(pxping->sock4, IPPROTO_IP, IP_TOS,
594 (char *)&tos, sizeof(tos));
595 if (RT_LIKELY(status == 0)) {
596 pxping->tos = tos;
597 }
598 else {
599 DPRINTF(("IP_TOS: %R[sockerr]\n", SOCKERRNO()));
600 }
601 }
602 }
603
604 /* rewrite ICMP echo header */
605 memcpy(&icmph_orig, icmph, sizeof(*icmph));
606 sum = (u16_t)~icmph->chksum;
607 sum += chksum_update_16(&icmph->id, pcb->host_id);
608 sum = FOLD_U32T(sum);
609 icmph->chksum = ~sum;
610
611 status = proxy_sendto(pxping->sock4, p,
612 &pcb->peer.sin, sizeof(pcb->peer.sin));
613 if (status != 0) {
614 int error = -status;
615 DPRINTF(("%s: sendto: %R[sockerr]\n", __func__, error));
616
617#ifdef DF_WITH_IP_HDRINCL
618 if (pxping->hdrincl) {
619 /* restore original IP header */
620 memcpy(iph, &iph_orig, iphlen);
621 }
622 else
623#endif
624 {
625 status = pbuf_header(p, iphlen); /* back to IP header */
626 if (RT_UNLIKELY(status != 0)) {
627 pbuf_free(p);
628 return;
629 }
630 }
631
632 /* restore original ICMP header */
633 memcpy(icmph, &icmph_orig, sizeof(*icmph));
634
635 /*
636 * Some ICMP errors may be generated by the kernel and we read
637 * them from the socket and forward them normally, hence the
638 * ifdefs below.
639 */
640 switch (error) {
641
642#if !( defined(RT_OS_SOLARIS) \
643 || (defined(RT_OS_LINUX) && !defined(DF_WITH_IP_HDRINCL)) \
644 )
645 case EMSGSIZE:
646 icmp_dest_unreach(p, ICMP_DUR_FRAG);
647 break;
648#endif
649
650 case ENETDOWN:
651 case ENETUNREACH:
652 icmp_dest_unreach(p, ICMP_DUR_NET);
653 break;
654
655 case EHOSTDOWN:
656 case EHOSTUNREACH:
657 icmp_dest_unreach(p, ICMP_DUR_HOST);
658 break;
659 }
660 }
661
662 pbuf_free(p);
663}
664
665
666/**
667 * ICMPv6 Echo Request in pbuf "p" is to be proxied.
668 */
669static void
670pxping_recv6(void *arg, struct pbuf *p)
671{
672 struct pxping *pxping = (struct pxping *)arg;
673 struct ping_pcb *pcb;
674 struct ip6_hdr *iph;
675 struct icmp6_echo_hdr *icmph;
676 int hopl;
677 u16_t iphlen;
678 u16_t id, seq;
679 int status;
680
681 iph = (/* UNCONST */ struct ip6_hdr *)ip6_current_header();
682 iphlen = ip_current_header_tot_len();
683
684 icmph = (struct icmp6_echo_hdr *)p->payload;
685
686 id = icmph->id;
687 seq = icmph->seqno;
688
689 pcb = pxping_pcb_for_request(pxping, 1,
690 ipX_current_src_addr(),
691 ipX_current_dest_addr(),
692 id);
693 if (pcb == NULL) {
694 pbuf_free(p);
695 return;
696 }
697
698 DPRINTF(("ping %p: %R[ping_pcb] seq %d len %u hopl %d\n",
699 pcb, pcb,
700 ntohs(seq), (unsigned int)p->tot_len,
701 IP6H_HOPLIM(iph)));
702
703 hopl = IP6H_HOPLIM(iph);
704 if (!pcb->is_mapped) {
705 if (hopl == 1) {
706 status = pbuf_header(p, iphlen); /* back to IP header */
707 if (RT_LIKELY(status == 0)) {
708 icmp6_time_exceeded(p, ICMP6_TE_HL);
709 }
710 pbuf_free(p);
711 return;
712 }
713 --hopl;
714 }
715
716 /*
717 * Rewrite ICMPv6 echo header. We don't need to recompute the
718 * checksum since, unlike IPv4, checksum includes pseudo-header.
719 * OS computes checksum for us on send() since it needs to select
720 * source address.
721 */
722 icmph->id = pcb->host_id;
723
724 /* TODO: use control messages to save a syscall? */
725 if (hopl != pxping->hopl) {
726 status = setsockopt(pxping->sock6, IPPROTO_IPV6, IPV6_UNICAST_HOPS,
727 (char *)&hopl, sizeof(hopl));
728 if (status == 0) {
729 pxping->hopl = hopl;
730 }
731 else {
732 DPRINTF(("IPV6_HOPLIMIT: %R[sockerr]\n", SOCKERRNO()));
733 }
734 }
735
736 status = proxy_sendto(pxping->sock6, p,
737 &pcb->peer.sin6, sizeof(pcb->peer.sin6));
738 if (status != 0) {
739 int error = -status;
740 DPRINTF(("%s: sendto: %R[sockerr]\n", __func__, error));
741
742 status = pbuf_header(p, iphlen); /* back to IP header */
743 if (RT_UNLIKELY(status != 0)) {
744 pbuf_free(p);
745 return;
746 }
747
748 /* restore original ICMP header */
749 icmph->id = pcb->guest_id;
750
751 switch (error) {
752 case EACCES:
753 icmp6_dest_unreach(p, ICMP6_DUR_PROHIBITED);
754 break;
755
756#ifdef ENONET
757 case ENONET:
758#endif
759 case ENETDOWN:
760 case ENETUNREACH:
761 case EHOSTDOWN:
762 case EHOSTUNREACH:
763 icmp6_dest_unreach(p, ICMP6_DUR_NO_ROUTE);
764 break;
765 }
766 }
767
768 pbuf_free(p);
769}
770
771
772/**
773 * Formatter for %R[ping_pcb].
774 */
775static DECLCALLBACK(size_t)
776pxping_pcb_rtstrfmt(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
777 const char *pszType, const void *pvValue,
778 int cchWidth, int cchPrecision, unsigned int fFlags,
779 void *pvUser)
780{
781 const struct ping_pcb *pcb = (const struct ping_pcb *)pvValue;
782 size_t cb = 0;
783
784 NOREF(cchWidth);
785 NOREF(cchPrecision);
786 NOREF(fFlags);
787 NOREF(pvUser);
788
789 AssertReturn(strcmp(pszType, "ping_pcb") == 0, 0);
790
791 if (pcb == NULL) {
792 return RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL, "(null)");
793 }
794
795 /* XXX: %RTnaipv4 takes the value, but %RTnaipv6 takes the pointer */
796 if (pcb->is_ipv6) {
797 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
798 "%RTnaipv6 -> %RTnaipv6", &pcb->src, &pcb->dst);
799 if (pcb->is_mapped) {
800 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
801 " (%RTnaipv6)", &pcb->peer.sin6.sin6_addr);
802 }
803 }
804 else {
805 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
806 "%RTnaipv4 -> %RTnaipv4",
807 ip4_addr_get_u32(ipX_2_ip(&pcb->src)),
808 ip4_addr_get_u32(ipX_2_ip(&pcb->dst)));
809 if (pcb->is_mapped) {
810 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
811 " (%RTnaipv4)", pcb->peer.sin.sin_addr.s_addr);
812 }
813 }
814
815 cb += RTStrFormat(pfnOutput, pvArgOutput, NULL, NULL,
816 " id %04x->%04x", ntohs(pcb->guest_id), ntohs(pcb->host_id));
817
818 return cb;
819}
820
821
822static struct ping_pcb *
823pxping_pcb_allocate(struct pxping *pxping)
824{
825 struct ping_pcb *pcb;
826
827 if (pxping->npcbs >= PXPING_MAX_PCBS) {
828 return NULL;
829 }
830
831 pcb = (struct ping_pcb *)malloc(sizeof(*pcb));
832 if (pcb == NULL) {
833 return NULL;
834 }
835
836 ++pxping->npcbs;
837 return pcb;
838}
839
840
841static void
842pxping_pcb_delete(struct pxping *pxping, struct ping_pcb *pcb)
843{
844 LWIP_ASSERT1(pxping->npcbs > 0);
845 LWIP_ASSERT1(pcb->next == NULL);
846 LWIP_ASSERT1(pcb->pprev_timeout == NULL);
847
848 DPRINTF(("%s: ping %p\n", __func__, (void *)pcb));
849
850 --pxping->npcbs;
851 free(pcb);
852}
853
854
855static void
856pxping_timeout_add(struct pxping *pxping, struct ping_pcb *pcb)
857{
858 struct ping_pcb **chain;
859
860 LWIP_ASSERT1(pcb->pprev_timeout == NULL);
861
862 chain = &pxping->timeout_list[pcb->timeout_slot];
863 if ((pcb->next_timeout = *chain) != NULL) {
864 (*chain)->pprev_timeout = &pcb->next_timeout;
865 }
866 *chain = pcb;
867 pcb->pprev_timeout = chain;
868}
869
870
871static void
872pxping_timeout_del(struct pxping *pxping, struct ping_pcb *pcb)
873{
874 LWIP_UNUSED_ARG(pxping);
875
876 LWIP_ASSERT1(pcb->pprev_timeout != NULL);
877 if (pcb->next_timeout != NULL) {
878 pcb->next_timeout->pprev_timeout = pcb->pprev_timeout;
879 }
880 *pcb->pprev_timeout = pcb->next_timeout;
881 pcb->pprev_timeout = NULL;
882 pcb->next_timeout = NULL;
883}
884
885
886static void
887pxping_pcb_register(struct pxping *pxping, struct ping_pcb *pcb)
888{
889 pcb->next = pxping->pcbs;
890 pxping->pcbs = pcb;
891
892 pxping_timeout_add(pxping, pcb);
893}
894
895
896static void
897pxping_pcb_deregister(struct pxping *pxping, struct ping_pcb *pcb)
898{
899 struct ping_pcb **p;
900
901 for (p = &pxping->pcbs; *p != NULL; p = &(*p)->next) {
902 if (*p == pcb) {
903 *p = pcb->next;
904 pcb->next = NULL;
905 break;
906 }
907 }
908
909 pxping_timeout_del(pxping, pcb);
910}
911
912
913static struct ping_pcb *
914pxping_pcb_for_request(struct pxping *pxping,
915 int is_ipv6, ipX_addr_t *src, ipX_addr_t *dst,
916 u16_t guest_id)
917{
918 struct ping_pcb *pcb;
919
920 /* on lwip thread, so no concurrent updates */
921 for (pcb = pxping->pcbs; pcb != NULL; pcb = pcb->next) {
922 if (pcb->guest_id == guest_id
923 && pcb->is_ipv6 == is_ipv6
924 && ipX_addr_cmp(is_ipv6, &pcb->dst, dst)
925 && ipX_addr_cmp(is_ipv6, &pcb->src, src))
926 {
927 break;
928 }
929 }
930
931 if (pcb == NULL) {
932 int mapped;
933
934 pcb = pxping_pcb_allocate(pxping);
935 if (pcb == NULL) {
936 return NULL;
937 }
938
939 pcb->is_ipv6 = is_ipv6;
940 ipX_addr_copy(is_ipv6, pcb->src, *src);
941 ipX_addr_copy(is_ipv6, pcb->dst, *dst);
942
943 pcb->guest_id = guest_id;
944#ifdef RT_OS_WINDOWS
945# define random() (rand())
946#endif
947 pcb->host_id = random() & 0xffffUL;
948
949 pcb->pprev_timeout = NULL;
950 pcb->next_timeout = NULL;
951
952 if (is_ipv6) {
953 pcb->peer.sin6.sin6_family = AF_INET6;
954#if HAVE_SA_LEN
955 pcb->peer.sin6.sin6_len = sizeof(pcb->peer.sin6);
956#endif
957 pcb->peer.sin6.sin6_port = htons(IPPROTO_ICMPV6);
958 pcb->peer.sin6.sin6_flowinfo = 0;
959 mapped = pxremap_outbound_ip6((ip6_addr_t *)&pcb->peer.sin6.sin6_addr,
960 ipX_2_ip6(&pcb->dst));
961 }
962 else {
963 pcb->peer.sin.sin_family = AF_INET;
964#if HAVE_SA_LEN
965 pcb->peer.sin.sin_len = sizeof(pcb->peer.sin);
966#endif
967 pcb->peer.sin.sin_port = htons(IPPROTO_ICMP);
968 mapped = pxremap_outbound_ip4((ip_addr_t *)&pcb->peer.sin.sin_addr,
969 ipX_2_ip(&pcb->dst));
970 }
971
972 if (mapped == PXREMAP_FAILED) {
973 free(pcb);
974 return NULL;
975 }
976 else {
977 pcb->is_mapped = (mapped == PXREMAP_MAPPED);
978 }
979
980 pcb->timeout_slot = pxping->timeout_slot;
981
982 sys_mutex_lock(&pxping->lock);
983 pxping_pcb_register(pxping, pcb);
984 sys_mutex_unlock(&pxping->lock);
985
986 DPRINTF(("ping %p: %R[ping_pcb] - created\n", pcb, pcb));
987
988 pxping_timer_needed(pxping);
989 }
990 else {
991 /* just bump up expiration timeout lazily */
992 DPRINTF(("ping %p: %R[ping_pcb] - slot %d -> %d\n",
993 pcb, pcb,
994 (unsigned int)pcb->timeout_slot,
995 (unsigned int)pxping->timeout_slot));
996 pcb->timeout_slot = pxping->timeout_slot;
997 }
998
999 return pcb;
1000}
1001
1002
1003/**
1004 * Called on pollmgr thread. Caller must do the locking since caller
1005 * is going to use the returned pcb, which needs to be protected from
1006 * being expired by pxping_timer() on lwip thread.
1007 */
1008static struct ping_pcb *
1009pxping_pcb_for_reply(struct pxping *pxping,
1010 int is_ipv6, ipX_addr_t *dst, u16_t host_id)
1011{
1012 struct ping_pcb *pcb;
1013
1014 for (pcb = pxping->pcbs; pcb != NULL; pcb = pcb->next) {
1015 if (pcb->host_id == host_id
1016 && pcb->is_ipv6 == is_ipv6
1017 /* XXX: allow broadcast pings? */
1018 && ipX_addr_cmp(is_ipv6, &pcb->dst, dst))
1019 {
1020 return pcb;
1021 }
1022 }
1023
1024 return NULL;
1025}
1026
1027
1028static void
1029pxping_timer(void *arg)
1030{
1031 struct pxping *pxping = (struct pxping *)arg;
1032 struct ping_pcb **chain, *pcb;
1033
1034 pxping->timer_active = 0;
1035
1036 /*
1037 * New slot points to the list of pcbs to check for expiration.
1038 */
1039 LWIP_ASSERT1(pxping->timeout_slot < TIMEOUT);
1040 if (++pxping->timeout_slot == TIMEOUT) {
1041 pxping->timeout_slot = 0;
1042 }
1043
1044 chain = &pxping->timeout_list[pxping->timeout_slot];
1045 pcb = *chain;
1046
1047 /* protect from pollmgr concurrent reads */
1048 sys_mutex_lock(&pxping->lock);
1049
1050 while (pcb != NULL) {
1051 struct ping_pcb *xpcb = pcb;
1052 pcb = pcb->next_timeout;
1053
1054 if (xpcb->timeout_slot == pxping->timeout_slot) {
1055 /* expired */
1056 pxping_pcb_deregister(pxping, xpcb);
1057 pxping_pcb_delete(pxping, xpcb);
1058 }
1059 else {
1060 /*
1061 * If there was another request, we updated timeout_slot
1062 * but delayed actually moving the pcb until now.
1063 */
1064 pxping_timeout_del(pxping, xpcb); /* from current slot */
1065 pxping_timeout_add(pxping, xpcb); /* to new slot */
1066 }
1067 }
1068
1069 sys_mutex_unlock(&pxping->lock);
1070 pxping_timer_needed(pxping);
1071}
1072
1073
1074static void
1075pxping_timer_needed(struct pxping *pxping)
1076{
1077 if (!pxping->timer_active && pxping->pcbs != NULL) {
1078 pxping->timer_active = 1;
1079 sys_timeout(1 * 1000, pxping_timer, pxping);
1080 }
1081}
1082
1083
1084static int
1085pxping_pmgr_pump(struct pollmgr_handler *handler, SOCKET fd, int revents)
1086{
1087 struct pxping *pxping;
1088
1089 pxping = (struct pxping *)handler->data;
1090 LWIP_ASSERT1(fd == pxping->sock4 || fd == pxping->sock6);
1091
1092 if (revents & ~(POLLIN|POLLERR)) {
1093 DPRINTF0(("%s: unexpected revents 0x%x\n", __func__, revents));
1094 return POLLIN;
1095 }
1096
1097 if (revents & POLLERR) {
1098 int sockerr = -1;
1099 socklen_t optlen = (socklen_t)sizeof(sockerr);
1100 int status;
1101
1102 status = getsockopt(fd, SOL_SOCKET,
1103 SO_ERROR, (char *)&sockerr, &optlen);
1104 if (status < 0) {
1105 DPRINTF(("%s: sock %d: SO_ERROR failed: %R[sockerr]\n",
1106 __func__, fd, SOCKERRNO()));
1107 }
1108 else {
1109 DPRINTF(("%s: sock %d: %R[sockerr]\n",
1110 __func__, fd, sockerr));
1111 }
1112 }
1113
1114 if ((revents & POLLIN) == 0) {
1115 return POLLIN;
1116 }
1117
1118 if (fd == pxping->sock4) {
1119 pxping_pmgr_icmp4(pxping);
1120 }
1121 else /* fd == pxping->sock6 */ {
1122 pxping_pmgr_icmp6(pxping);
1123 }
1124
1125 return POLLIN;
1126}
1127
1128
1129/**
1130 * Process incoming ICMP message for the host.
1131 * NB: we will get a lot of spam here and have to sift through it.
1132 */
1133static void
1134pxping_pmgr_icmp4(struct pxping *pxping)
1135{
1136 struct sockaddr_in sin;
1137 socklen_t salen = sizeof(sin);
1138 ssize_t nread;
1139 struct ip_hdr *iph;
1140 struct icmp_echo_hdr *icmph;
1141 u16_t iplen, ipoff;
1142
1143 memset(&sin, 0, sizeof(sin));
1144
1145 /*
1146 * Reads from raw IPv4 sockets deliver complete IP datagrams with
1147 * IP header included.
1148 */
1149 nread = recvfrom(pxping->sock4, pollmgr_udpbuf, sizeof(pollmgr_udpbuf), 0,
1150 (struct sockaddr *)&sin, &salen);
1151 if (nread < 0) {
1152 DPRINTF(("%s: %R[sockerr]\n", __func__, SOCKERRNO()));
1153 return;
1154 }
1155
1156 if (nread < IP_HLEN) {
1157 DPRINTF2(("%s: read %d bytes, IP header truncated\n",
1158 __func__, (unsigned int)nread));
1159 return;
1160 }
1161
1162 iph = (struct ip_hdr *)pollmgr_udpbuf;
1163
1164 /* match version */
1165 if (IPH_V(iph) != 4) {
1166 DPRINTF2(("%s: unexpected IP version %d\n", __func__, IPH_V(iph)));
1167 return;
1168 }
1169
1170 /* no fragmentation */
1171 ipoff = IPH_OFFSET(iph);
1172#if defined(RT_OS_DARWIN)
1173 /* darwin reports IPH_OFFSET in host byte order */
1174 ipoff = htons(ipoff);
1175 IPH_OFFSET_SET(iph, ipoff);
1176#endif
1177 if ((ipoff & PP_HTONS(IP_OFFMASK | IP_MF)) != 0) {
1178 DPRINTF2(("%s: dropping fragmented datagram (0x%04x)\n",
1179 __func__, ntohs(ipoff)));
1180 return;
1181 }
1182
1183 /* no options */
1184 if (IPH_HL(iph) * 4 != IP_HLEN) {
1185 DPRINTF2(("%s: dropping datagram with options (IP header length %d)\n",
1186 __func__, IPH_HL(iph) * 4));
1187 return;
1188 }
1189
1190 if (IPH_PROTO(iph) != IP_PROTO_ICMP) {
1191 DPRINTF2(("%s: unexpected protocol %d\n", __func__, IPH_PROTO(iph)));
1192 return;
1193 }
1194
1195 iplen = IPH_LEN(iph);
1196#if !defined(RT_OS_DARWIN)
1197 /* darwin reports IPH_LEN in host byte order */
1198 iplen = ntohs(iplen);
1199#endif
1200#if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS)
1201 /* darwin and solaris change IPH_LEN to payload length only */
1202 iplen += IP_HLEN; /* we verified there are no options */
1203 IPH_LEN_SET(iph, htons(iplen));
1204#endif
1205 if (nread < iplen) {
1206 DPRINTF2(("%s: read %d bytes but total length is %d bytes\n",
1207 __func__, (unsigned int)nread, (unsigned int)iplen));
1208 return;
1209 }
1210
1211 if (iplen < IP_HLEN + ICMP_HLEN) {
1212 DPRINTF2(("%s: IP length %d bytes, ICMP header truncated\n",
1213 __func__, iplen));
1214 return;
1215 }
1216
1217 icmph = (struct icmp_echo_hdr *)(pollmgr_udpbuf + IP_HLEN);
1218 if (ICMPH_TYPE(icmph) == ICMP_ER) {
1219 pxping_pmgr_icmp4_echo(pxping, iplen, &sin);
1220 }
1221 else if (ICMPH_TYPE(icmph) == ICMP_DUR || ICMPH_TYPE(icmph) == ICMP_TE) {
1222 pxping_pmgr_icmp4_error(pxping, iplen, &sin);
1223 }
1224#if 1
1225 else {
1226 DPRINTF2(("%s: ignoring ICMP type %d\n", __func__, ICMPH_TYPE(icmph)));
1227 }
1228#endif
1229}
1230
1231
1232/**
1233 * Check if this incoming ICMP echo reply is for one of our pings and
1234 * forward it to the guest.
1235 */
1236static void
1237pxping_pmgr_icmp4_echo(struct pxping *pxping,
1238 u16_t iplen, struct sockaddr_in *peer)
1239{
1240 struct ip_hdr *iph;
1241 struct icmp_echo_hdr *icmph;
1242 u16_t id, seq;
1243 ip_addr_t guest_ip, target_ip;
1244 int mapped;
1245 struct ping_pcb *pcb;
1246 u16_t guest_id;
1247 u16_t oipsum;
1248 u32_t sum;
1249
1250 iph = (struct ip_hdr *)pollmgr_udpbuf;
1251 icmph = (struct icmp_echo_hdr *)(pollmgr_udpbuf + IP_HLEN);
1252
1253 id = icmph->id;
1254 seq = icmph->seqno;
1255
1256 DPRINTF(("<--- PING %RTnaipv4 id 0x%x seq %d\n",
1257 peer->sin_addr.s_addr, ntohs(id), ntohs(seq)));
1258
1259 /*
1260 * Is this a reply to one of our pings?
1261 */
1262
1263 ip_addr_copy(target_ip, iph->src);
1264 mapped = pxremap_inbound_ip4(&target_ip, &target_ip);
1265 if (mapped == PXREMAP_FAILED) {
1266 return;
1267 }
1268 if (mapped == PXREMAP_ASIS && IPH_TTL(iph) == 1) {
1269 DPRINTF2(("%s: dropping packet with ttl 1\n", __func__));
1270 return;
1271 }
1272
1273 sys_mutex_lock(&pxping->lock);
1274 pcb = pxping_pcb_for_reply(pxping, 0, ip_2_ipX(&target_ip), id);
1275 if (pcb == NULL) {
1276 sys_mutex_unlock(&pxping->lock);
1277 DPRINTF2(("%s: no match\n", __func__));
1278 return;
1279 }
1280
1281 DPRINTF2(("%s: pcb %p\n", __func__, (void *)pcb));
1282
1283 /* save info before unlocking since pcb may expire */
1284 ip_addr_copy(guest_ip, *ipX_2_ip(&pcb->src));
1285 guest_id = pcb->guest_id;
1286
1287 sys_mutex_unlock(&pxping->lock);
1288
1289
1290 /*
1291 * Rewrite headers and forward to guest.
1292 */
1293
1294 /* rewrite ICMP echo header */
1295 sum = (u16_t)~icmph->chksum;
1296 sum += chksum_update_16(&icmph->id, guest_id);
1297 sum = FOLD_U32T(sum);
1298 icmph->chksum = ~sum;
1299
1300 /* rewrite IP header */
1301 oipsum = IPH_CHKSUM(iph);
1302 if (oipsum == 0) {
1303 /* Solaris doesn't compute checksum for local replies */
1304 ip_addr_copy(iph->dest, guest_ip);
1305 if (mapped == PXREMAP_MAPPED) {
1306 ip_addr_copy(iph->src, target_ip);
1307 }
1308 else {
1309 IPH_TTL_SET(iph, IPH_TTL(iph) - 1);
1310 }
1311 IPH_CHKSUM_SET(iph, inet_chksum(iph, ntohs(IPH_LEN(iph))));
1312 }
1313 else {
1314 sum = (u16_t)~oipsum;
1315 sum += chksum_update_32((u32_t *)&iph->dest,
1316 ip4_addr_get_u32(&guest_ip));
1317 if (mapped == PXREMAP_MAPPED) {
1318 sum += chksum_update_32((u32_t *)&iph->src,
1319 ip4_addr_get_u32(&target_ip));
1320 }
1321 else {
1322 IPH_TTL_SET(iph, IPH_TTL(iph) - 1);
1323 sum += PP_NTOHS(~0x0100);
1324 }
1325 sum = FOLD_U32T(sum);
1326 IPH_CHKSUM_SET(iph, ~sum);
1327 }
1328
1329 pxping_pmgr_forward_inbound(pxping, iplen);
1330}
1331
1332
1333/**
1334 * Check if this incoming ICMP error (destination unreachable or time
1335 * exceeded) is about one of our pings and forward it to the guest.
1336 */
1337static void
1338pxping_pmgr_icmp4_error(struct pxping *pxping,
1339 u16_t iplen, struct sockaddr_in *peer)
1340{
1341 struct ip_hdr *iph, *oiph;
1342 struct icmp_echo_hdr *icmph, *oicmph;
1343 u16_t oipoff, oiphlen, oiplen;
1344 u16_t id, seq;
1345 ip_addr_t guest_ip, target_ip, error_ip;
1346 int target_mapped, error_mapped;
1347 struct ping_pcb *pcb;
1348 u16_t guest_id;
1349 u32_t sum;
1350
1351 iph = (struct ip_hdr *)pollmgr_udpbuf;
1352 icmph = (struct icmp_echo_hdr *)(pollmgr_udpbuf + IP_HLEN);
1353
1354 /*
1355 * Inner IP datagram is not checked by the kernel and may be
1356 * anything, possibly malicious.
1357 */
1358
1359 oipoff = IP_HLEN + ICMP_HLEN;
1360 oiplen = iplen - oipoff; /* NB: truncated length, not IPH_LEN(oiph) */
1361 if (oiplen < IP_HLEN) {
1362 DPRINTF2(("%s: original datagram truncated to %d bytes\n",
1363 __func__, oiplen));
1364 }
1365
1366 /* IP header of the original message */
1367 oiph = (struct ip_hdr *)(pollmgr_udpbuf + oipoff);
1368
1369 /* match version */
1370 if (IPH_V(oiph) != 4) {
1371 DPRINTF2(("%s: unexpected IP version %d\n", __func__, IPH_V(oiph)));
1372 return;
1373 }
1374
1375 /* can't match fragments except the first one */
1376 if ((IPH_OFFSET(oiph) & PP_HTONS(IP_OFFMASK)) != 0) {
1377 DPRINTF2(("%s: ignoring fragment with offset %d\n",
1378 __func__, ntohs(IPH_OFFSET(oiph) & PP_HTONS(IP_OFFMASK))));
1379 return;
1380 }
1381
1382 if (IPH_PROTO(oiph) != IP_PROTO_ICMP) {
1383#if 0
1384 /* don't spam with every "destination unreachable" in the system */
1385 DPRINTF2(("%s: ignoring protocol %d\n", __func__, IPH_PROTO(oiph)));
1386#endif
1387 return;
1388 }
1389
1390 oiphlen = IPH_HL(oiph) * 4;
1391 if (oiplen < oiphlen + ICMP_HLEN) {
1392 DPRINTF2(("%s: original datagram truncated to %d bytes\n",
1393 __func__, oiplen));
1394 return;
1395 }
1396
1397 oicmph = (struct icmp_echo_hdr *)(pollmgr_udpbuf + oipoff + oiphlen);
1398 if (ICMPH_TYPE(oicmph) != ICMP_ECHO) {
1399 DPRINTF2(("%s: ignoring ICMP error for original ICMP type %d\n",
1400 __func__, ICMPH_TYPE(oicmph)));
1401 return;
1402 }
1403
1404 id = oicmph->id;
1405 seq = oicmph->seqno;
1406
1407 DPRINTF2(("%s: ping %RTnaipv4 id 0x%x seq %d",
1408 __func__, ip4_addr_get_u32(&oiph->dest), ntohs(id), ntohs(seq)));
1409 if (ICMPH_TYPE(icmph) == ICMP_DUR) {
1410 DPRINTF2((" unreachable (code %d)\n", ICMPH_CODE(icmph)));
1411 }
1412 else {
1413 DPRINTF2((" time exceeded\n"));
1414 }
1415
1416
1417 /*
1418 * Is the inner (failed) datagram one of our pings?
1419 */
1420
1421 ip_addr_copy(target_ip, oiph->dest); /* inner (failed) */
1422 target_mapped = pxremap_inbound_ip4(&target_ip, &target_ip);
1423 if (target_mapped == PXREMAP_FAILED) {
1424 return;
1425 }
1426
1427 sys_mutex_lock(&pxping->lock);
1428 pcb = pxping_pcb_for_reply(pxping, 0, ip_2_ipX(&target_ip), id);
1429 if (pcb == NULL) {
1430 sys_mutex_unlock(&pxping->lock);
1431 DPRINTF2(("%s: no match\n", __func__));
1432 return;
1433 }
1434
1435 DPRINTF2(("%s: pcb %p\n", __func__, (void *)pcb));
1436
1437 /* save info before unlocking since pcb may expire */
1438 ip_addr_copy(guest_ip, *ipX_2_ip(&pcb->src));
1439 guest_id = pcb->guest_id;
1440
1441 sys_mutex_unlock(&pxping->lock);
1442
1443
1444 /*
1445 * Rewrite both inner and outer headers and forward to guest.
1446 * Note that the checksum of the outer ICMP error message is
1447 * preserved by the changes we do to inner headers.
1448 */
1449
1450 ip_addr_copy(error_ip, iph->src); /* node that reports the error */
1451 error_mapped = pxremap_inbound_ip4(&error_ip, &error_ip);
1452 if (error_mapped == PXREMAP_FAILED) {
1453 return;
1454 }
1455 if (error_mapped == PXREMAP_ASIS && IPH_TTL(iph) == 1) {
1456 DPRINTF2(("%s: dropping packet with ttl 1\n", __func__));
1457 return;
1458 }
1459
1460 /* rewrite inner ICMP echo header */
1461 sum = (u16_t)~oicmph->chksum;
1462 sum += chksum_update_16(&oicmph->id, guest_id);
1463 sum = FOLD_U32T(sum);
1464 oicmph->chksum = ~sum;
1465
1466 /* rewrite inner IP header */
1467#if defined(RT_OS_DARWIN)
1468 /* darwin converts inner length to host byte order too */
1469 IPH_LEN_SET(oiph, htons(IPH_LEN(oiph)));
1470#endif
1471 sum = (u16_t)~IPH_CHKSUM(oiph);
1472 sum += chksum_update_32((u32_t *)&oiph->src, ip4_addr_get_u32(&guest_ip));
1473 if (target_mapped == PXREMAP_MAPPED) {
1474 sum += chksum_update_32((u32_t *)&oiph->dest, ip4_addr_get_u32(&target_ip));
1475 }
1476 sum = FOLD_U32T(sum);
1477 IPH_CHKSUM_SET(oiph, ~sum);
1478
1479 /* rewrite outer IP header */
1480 sum = (u16_t)~IPH_CHKSUM(iph);
1481 sum += chksum_update_32((u32_t *)&iph->dest, ip4_addr_get_u32(&guest_ip));
1482 if (error_mapped == PXREMAP_MAPPED) {
1483 sum += chksum_update_32((u32_t *)&iph->src, ip4_addr_get_u32(&error_ip));
1484 }
1485 else {
1486 IPH_TTL_SET(iph, IPH_TTL(iph) - 1);
1487 sum += PP_NTOHS(~0x0100);
1488 }
1489 sum = FOLD_U32T(sum);
1490 IPH_CHKSUM_SET(iph, ~sum);
1491
1492 pxping_pmgr_forward_inbound(pxping, iplen);
1493}
1494
1495
1496/**
1497 * Process incoming ICMPv6 message for the host.
1498 * NB: we will get a lot of spam here and have to sift through it.
1499 */
1500static void
1501pxping_pmgr_icmp6(struct pxping *pxping)
1502{
1503#ifndef RT_OS_WINDOWS
1504 struct msghdr mh;
1505 ssize_t nread;
1506#else
1507 WSAMSG mh;
1508 DWORD nread;
1509#endif
1510 IOVEC iov[1];
1511 static u8_t cmsgbuf[128];
1512 struct cmsghdr *cmh;
1513 struct sockaddr_in6 sin6;
1514 socklen_t salen = sizeof(sin6);
1515 struct icmp6_echo_hdr *icmph;
1516 struct in6_pktinfo *pktinfo;
1517 int hopl, tclass;
1518 int status;
1519
1520 /*
1521 * Reads from raw IPv6 sockets deliver only the payload. Full
1522 * headers are available via recvmsg(2)/cmsg(3).
1523 */
1524 IOVEC_SET_BASE(iov[0], pollmgr_udpbuf);
1525 IOVEC_SET_LEN(iov[0], sizeof(pollmgr_udpbuf));
1526
1527 memset(&mh, 0, sizeof(mh));
1528#ifndef RT_OS_WINDOWS
1529 mh.msg_name = &sin6;
1530 mh.msg_namelen = sizeof(sin6);
1531 mh.msg_iov = iov;
1532 mh.msg_iovlen = 1;
1533 mh.msg_control = cmsgbuf;
1534 mh.msg_controllen = sizeof(cmsgbuf);
1535 mh.msg_flags = 0;
1536
1537 nread = recvmsg(pxping->sock6, &mh, 0);
1538 if (nread < 0) {
1539 DPRINTF(("%s: %R[sockerr]\n", __func__, SOCKERRNO()));
1540 return;
1541 }
1542#else /* RT_OS_WINDOWS */
1543 mh.name = (LPSOCKADDR)&sin6;
1544 mh.namelen = sizeof(sin6);
1545 mh.lpBuffers = iov;
1546 mh.dwBufferCount = 1;
1547 mh.Control.buf = cmsgbuf;
1548 mh.Control.len = sizeof(cmsgbuf);
1549 mh.dwFlags = 0;
1550
1551 status = (*pxping->pfWSARecvMsg6)(pxping->sock6, &mh, &nread, NULL, NULL);
1552 if (status == SOCKET_ERROR) {
1553 DPRINTF2(("%s: error %d\n", __func__, WSAGetLastError()));
1554 return;
1555 }
1556#endif
1557
1558 icmph = (struct icmp6_echo_hdr *)pollmgr_udpbuf;
1559
1560 DPRINTF2(("%s: %RTnaipv6 ICMPv6: ", __func__, &sin6.sin6_addr));
1561
1562 if (icmph->type == ICMP6_TYPE_EREP) {
1563 DPRINTF2(("echo reply %04x %u\n",
1564 (unsigned int)icmph->id, (unsigned int)icmph->seqno));
1565 }
1566 else { /* XXX */
1567 if (icmph->type == ICMP6_TYPE_EREQ) {
1568 DPRINTF2(("echo request %04x %u\n",
1569 (unsigned int)icmph->id, (unsigned int)icmph->seqno));
1570 }
1571 else if (icmph->type == ICMP6_TYPE_DUR) {
1572 DPRINTF2(("destination unreachable\n"));
1573 }
1574 else if (icmph->type == ICMP6_TYPE_PTB) {
1575 DPRINTF2(("packet too big\n"));
1576 }
1577 else if (icmph->type == ICMP6_TYPE_TE) {
1578 DPRINTF2(("time exceeded\n"));
1579 }
1580 else if (icmph->type == ICMP6_TYPE_PP) {
1581 DPRINTF2(("parameter problem\n"));
1582 }
1583 else {
1584 DPRINTF2(("type %d len %u\n", icmph->type, (unsigned int)nread));
1585 }
1586
1587 if (icmph->type >= ICMP6_TYPE_EREQ) {
1588 return; /* informational message */
1589 }
1590 }
1591
1592 pktinfo = NULL;
1593 hopl = -1;
1594 tclass = -1;
1595 for (cmh = CMSG_FIRSTHDR(&mh); cmh != NULL; cmh = CMSG_NXTHDR(&mh, cmh)) {
1596 if (cmh->cmsg_len == 0)
1597 break;
1598
1599 if (cmh->cmsg_level == IPPROTO_IPV6
1600 && cmh->cmsg_type == IPV6_HOPLIMIT
1601 && cmh->cmsg_len == CMSG_LEN(sizeof(int)))
1602 {
1603 hopl = *(int *)CMSG_DATA(cmh);
1604 DPRINTF2(("hoplimit = %d\n", hopl));
1605 }
1606
1607 if (cmh->cmsg_level == IPPROTO_IPV6
1608 && cmh->cmsg_type == IPV6_PKTINFO
1609 && cmh->cmsg_len == CMSG_LEN(sizeof(struct in6_pktinfo)))
1610 {
1611 pktinfo = (struct in6_pktinfo *)CMSG_DATA(cmh);
1612 DPRINTF2(("pktinfo found\n"));
1613 }
1614 }
1615
1616 if (pktinfo == NULL) {
1617 /*
1618 * ip6_output_if() doesn't do checksum for us so we need to
1619 * manually recompute it - for this we must know the
1620 * destination address of the pseudo-header that we will
1621 * rewrite with guest's address. (TODO: yeah, yeah, we can
1622 * compute it from scratch...)
1623 */
1624 DPRINTF2(("%s: unable to get pktinfo\n", __func__));
1625 return;
1626 }
1627
1628 if (hopl < 0) {
1629 hopl = LWIP_ICMP6_HL;
1630 }
1631
1632 if (icmph->type == ICMP6_TYPE_EREP) {
1633 pxping_pmgr_icmp6_echo(pxping,
1634 (ip6_addr_t *)&sin6.sin6_addr,
1635 (ip6_addr_t *)&pktinfo->ipi6_addr,
1636 hopl, tclass, (u16_t)nread);
1637 }
1638 else if (icmph->type < ICMP6_TYPE_EREQ) {
1639 pxping_pmgr_icmp6_error(pxping,
1640 (ip6_addr_t *)&sin6.sin6_addr,
1641 (ip6_addr_t *)&pktinfo->ipi6_addr,
1642 hopl, tclass, (u16_t)nread);
1643 }
1644}
1645
1646
1647/**
1648 * Check if this incoming ICMPv6 echo reply is for one of our pings
1649 * and forward it to the guest.
1650 */
1651static void
1652pxping_pmgr_icmp6_echo(struct pxping *pxping,
1653 ip6_addr_t *src, ip6_addr_t *dst,
1654 int hopl, int tclass, u16_t icmplen)
1655{
1656 struct icmp6_echo_hdr *icmph;
1657 ip6_addr_t guest_ip, target_ip;
1658 int mapped;
1659 struct ping_pcb *pcb;
1660 u16_t id, guest_id;
1661 u32_t sum;
1662
1663 ip6_addr_copy(target_ip, *src);
1664 mapped = pxremap_inbound_ip6(&target_ip, &target_ip);
1665 if (mapped == PXREMAP_FAILED) {
1666 return;
1667 }
1668 else if (mapped == PXREMAP_ASIS) {
1669 if (hopl == 1) {
1670 DPRINTF2(("%s: dropping packet with ttl 1\n", __func__));
1671 return;
1672 }
1673 --hopl;
1674 }
1675
1676 icmph = (struct icmp6_echo_hdr *)pollmgr_udpbuf;
1677 id = icmph->id;
1678
1679 sys_mutex_lock(&pxping->lock);
1680 pcb = pxping_pcb_for_reply(pxping, 1, ip6_2_ipX(&target_ip), id);
1681 if (pcb == NULL) {
1682 sys_mutex_unlock(&pxping->lock);
1683 DPRINTF2(("%s: no match\n", __func__));
1684 return;
1685 }
1686
1687 DPRINTF2(("%s: pcb %p\n", __func__, (void *)pcb));
1688
1689 /* save info before unlocking since pcb may expire */
1690 ip6_addr_copy(guest_ip, *ipX_2_ip6(&pcb->src));
1691 guest_id = pcb->guest_id;
1692
1693 sys_mutex_unlock(&pxping->lock);
1694
1695 /* rewrite ICMPv6 echo header */
1696 sum = (u16_t)~icmph->chksum;
1697 sum += chksum_update_16(&icmph->id, guest_id);
1698 sum += chksum_delta_ipv6(dst, &guest_ip); /* pseudo */
1699 if (mapped) {
1700 sum += chksum_delta_ipv6(src, &target_ip); /* pseudo */
1701 }
1702 sum = FOLD_U32T(sum);
1703 icmph->chksum = ~sum;
1704
1705 pxping_pmgr_forward_inbound6(pxping,
1706 &target_ip, /* echo reply src */
1707 &guest_ip, /* echo reply dst */
1708 hopl, tclass, icmplen);
1709}
1710
1711
1712/**
1713 * Check if this incoming ICMPv6 error is about one of our pings and
1714 * forward it to the guest.
1715 */
1716static void
1717pxping_pmgr_icmp6_error(struct pxping *pxping,
1718 ip6_addr_t *src, ip6_addr_t *dst,
1719 int hopl, int tclass, u16_t icmplen)
1720{
1721 struct icmp6_hdr *icmph;
1722 u8_t *bufptr;
1723 size_t buflen, hlen;
1724 int proto;
1725 struct ip6_hdr *oiph;
1726 struct icmp6_echo_hdr *oicmph;
1727 struct ping_pcb *pcb;
1728 ip6_addr_t guest_ip, target_ip, error_ip;
1729 int target_mapped, error_mapped;
1730 u16_t guest_id;
1731 u32_t sum;
1732
1733 icmph = (struct icmp6_hdr *)pollmgr_udpbuf;
1734
1735 /*
1736 * Inner IP datagram is not checked by the kernel and may be
1737 * anything, possibly malicious.
1738 */
1739 oiph = NULL;
1740 oicmph = NULL;
1741
1742 bufptr = pollmgr_udpbuf;
1743 buflen = icmplen;
1744
1745 hlen = sizeof(*icmph);
1746 proto = IP6_NEXTH_ENCAPS; /* i.e. IPv6, lwIP's name is unfortuate */
1747 for (;;) {
1748 if (hlen > buflen) {
1749 DPRINTF2(("truncated datagram inside ICMPv6 error message is too short\n"));
1750 return;
1751 }
1752 buflen -= hlen;
1753 bufptr += hlen;
1754
1755 if (proto == IP6_NEXTH_ENCAPS && oiph == NULL) { /* outermost IPv6 */
1756 oiph = (struct ip6_hdr *)bufptr;
1757 if (IP6H_V(oiph) != 6) {
1758 DPRINTF2(("%s: unexpected IP version %d\n", __func__, IP6H_V(oiph)));
1759 return;
1760 }
1761
1762 proto = IP6H_NEXTH(oiph);
1763 hlen = IP6_HLEN;
1764 }
1765 else if (proto == IP6_NEXTH_ICMP6) {
1766 oicmph = (struct icmp6_echo_hdr *)bufptr;
1767 break;
1768 }
1769 else if (proto == IP6_NEXTH_ROUTING
1770 || proto == IP6_NEXTH_HOPBYHOP
1771 || proto == IP6_NEXTH_DESTOPTS)
1772 {
1773 proto = bufptr[0];
1774 hlen = (bufptr[1] + 1) * 8;
1775 }
1776 else {
1777 DPRINTF2(("%s: stopping at protocol %d\n", __func__, proto));
1778 break;
1779 }
1780 }
1781
1782 if (oiph == NULL || oicmph == NULL) {
1783 return;
1784 }
1785
1786 if (buflen < sizeof(*oicmph)) {
1787 DPRINTF2(("%s: original ICMPv6 is truncated too short\n", __func__));
1788 return;
1789 }
1790
1791 if (oicmph->type != ICMP6_TYPE_EREQ) {
1792 DPRINTF2(("%s: ignoring original ICMPv6 type %d\n", __func__, oicmph->type));
1793 return;
1794 }
1795
1796 ip6_addr_copy(target_ip, oiph->dest); /* inner (failed) */
1797 target_mapped = pxremap_inbound_ip6(&target_ip, &target_ip);
1798 if (target_mapped == PXREMAP_FAILED) {
1799 return;
1800 }
1801
1802 sys_mutex_lock(&pxping->lock);
1803 pcb = pxping_pcb_for_reply(pxping, 1, ip6_2_ipX(&target_ip), oicmph->id);
1804 if (pcb == NULL) {
1805 sys_mutex_unlock(&pxping->lock);
1806 DPRINTF2(("%s: no match\n", __func__));
1807 return;
1808 }
1809
1810 DPRINTF2(("%s: pcb %p\n", __func__, (void *)pcb));
1811
1812 /* save info before unlocking since pcb may expire */
1813 ip6_addr_copy(guest_ip, *ipX_2_ip6(&pcb->src));
1814 guest_id = pcb->guest_id;
1815
1816 sys_mutex_unlock(&pxping->lock);
1817
1818
1819 /*
1820 * Rewrite inner and outer headers and forward to guest. Note
1821 * that IPv6 has no IP header checksum, but uses pseudo-header for
1822 * ICMPv6, so we update both in one go, adjusting ICMPv6 checksum
1823 * as we rewrite IP header.
1824 */
1825
1826 ip6_addr_copy(error_ip, *src); /* node that reports the error */
1827 error_mapped = pxremap_inbound_ip6(&error_ip, &error_ip);
1828 if (error_mapped == PXREMAP_FAILED) {
1829 return;
1830 }
1831 if (error_mapped == PXREMAP_ASIS && hopl == 1) {
1832 DPRINTF2(("%s: dropping packet with ttl 1\n", __func__));
1833 return;
1834 }
1835
1836 /* rewrite inner ICMPv6 echo header and inner IPv6 header */
1837 sum = (u16_t)~oicmph->chksum;
1838 sum += chksum_update_16(&oicmph->id, guest_id);
1839 sum += chksum_update_ipv6((ip6_addr_t *)&oiph->src, &guest_ip);
1840 if (target_mapped) {
1841 sum += chksum_delta_ipv6((ip6_addr_t *)&oiph->dest, &target_ip);
1842 }
1843 sum = FOLD_U32T(sum);
1844 oicmph->chksum = ~sum;
1845
1846 /* rewrite outer ICMPv6 error header */
1847 sum = (u16_t)~icmph->chksum;
1848 sum += chksum_delta_ipv6(dst, &guest_ip); /* pseudo */
1849 if (error_mapped) {
1850 sum += chksum_delta_ipv6(src, &error_ip); /* pseudo */
1851 }
1852 sum = FOLD_U32T(sum);
1853 icmph->chksum = ~sum;
1854
1855 pxping_pmgr_forward_inbound6(pxping,
1856 &error_ip, /* error src */
1857 &guest_ip, /* error dst */
1858 hopl, tclass, icmplen);
1859}
1860
1861
1862/**
1863 * Hand off ICMP datagram to the lwip thread where it will be
1864 * forwarded to the guest.
1865 *
1866 * We no longer need ping_pcb. The pcb may get expired on the lwip
1867 * thread, but we have already patched necessary information into the
1868 * datagram.
1869 */
1870static void
1871pxping_pmgr_forward_inbound(struct pxping *pxping, u16_t iplen)
1872{
1873 struct pbuf *p;
1874 struct ping_msg *msg;
1875 err_t error;
1876
1877 p = pbuf_alloc(PBUF_LINK, iplen, PBUF_RAM);
1878 if (p == NULL) {
1879 DPRINTF(("%s: pbuf_alloc(%d) failed\n",
1880 __func__, (unsigned int)iplen));
1881 return;
1882 }
1883
1884 error = pbuf_take(p, pollmgr_udpbuf, iplen);
1885 if (error != ERR_OK) {
1886 DPRINTF(("%s: pbuf_take(%d) failed\n",
1887 __func__, (unsigned int)iplen));
1888 pbuf_free(p);
1889 return;
1890 }
1891
1892 msg = (struct ping_msg *)malloc(sizeof(*msg));
1893 if (msg == NULL) {
1894 pbuf_free(p);
1895 return;
1896 }
1897
1898 msg->msg.type = TCPIP_MSG_CALLBACK_STATIC;
1899 msg->msg.sem = NULL;
1900 msg->msg.msg.cb.function = pxping_pcb_forward_inbound;
1901 msg->msg.msg.cb.ctx = (void *)msg;
1902
1903 msg->pxping = pxping;
1904 msg->p = p;
1905
1906 proxy_lwip_post(&msg->msg);
1907}
1908
1909
1910static void
1911pxping_pcb_forward_inbound(void *arg)
1912{
1913 struct ping_msg *msg = (struct ping_msg *)arg;
1914 err_t error;
1915
1916 LWIP_ASSERT1(msg != NULL);
1917 LWIP_ASSERT1(msg->pxping != NULL);
1918 LWIP_ASSERT1(msg->p != NULL);
1919
1920 error = ip_raw_output_if(msg->p, msg->pxping->netif);
1921 if (error != ERR_OK) {
1922 DPRINTF(("%s: ip_output_if: %s\n",
1923 __func__, proxy_lwip_strerr(error)));
1924 }
1925 pbuf_free(msg->p);
1926 free(msg);
1927}
1928
1929
1930static void
1931pxping_pmgr_forward_inbound6(struct pxping *pxping,
1932 ip6_addr_t *src, ip6_addr_t *dst,
1933 u8_t hopl, u8_t tclass,
1934 u16_t icmplen)
1935{
1936 struct pbuf *p;
1937 struct ping6_msg *msg;
1938
1939 err_t error;
1940
1941 p = pbuf_alloc(PBUF_IP, icmplen, PBUF_RAM);
1942 if (p == NULL) {
1943 DPRINTF(("%s: pbuf_alloc(%d) failed\n",
1944 __func__, (unsigned int)icmplen));
1945 return;
1946 }
1947
1948 error = pbuf_take(p, pollmgr_udpbuf, icmplen);
1949 if (error != ERR_OK) {
1950 DPRINTF(("%s: pbuf_take(%d) failed\n",
1951 __func__, (unsigned int)icmplen));
1952 pbuf_free(p);
1953 return;
1954 }
1955
1956 msg = (struct ping6_msg *)malloc(sizeof(*msg));
1957 if (msg == NULL) {
1958 pbuf_free(p);
1959 return;
1960 }
1961
1962 msg->msg.type = TCPIP_MSG_CALLBACK_STATIC;
1963 msg->msg.sem = NULL;
1964 msg->msg.msg.cb.function = pxping_pcb_forward_inbound6;
1965 msg->msg.msg.cb.ctx = (void *)msg;
1966
1967 msg->pxping = pxping;
1968 msg->p = p;
1969 ip6_addr_copy(msg->src, *src);
1970 ip6_addr_copy(msg->dst, *dst);
1971 msg->hopl = hopl;
1972 msg->tclass = tclass;
1973
1974 proxy_lwip_post(&msg->msg);
1975}
1976
1977
1978static void
1979pxping_pcb_forward_inbound6(void *arg)
1980{
1981 struct ping6_msg *msg = (struct ping6_msg *)arg;
1982 err_t error;
1983
1984 LWIP_ASSERT1(msg != NULL);
1985 LWIP_ASSERT1(msg->pxping != NULL);
1986 LWIP_ASSERT1(msg->p != NULL);
1987
1988 error = ip6_output_if(msg->p,
1989 &msg->src, &msg->dst, msg->hopl, msg->tclass,
1990 IP6_NEXTH_ICMP6, msg->pxping->netif);
1991 if (error != ERR_OK) {
1992 DPRINTF(("%s: ip6_output_if: %s\n",
1993 __func__, proxy_lwip_strerr(error)));
1994 }
1995 pbuf_free(msg->p);
1996 free(msg);
1997}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette