VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/ip_icmp.c@ 15445

Last change on this file since 15445 was 15444, checked in by vboxsync, 16 years ago

slirp:icmp: correct type

  • Property svn:eol-style set to native
File size: 22.6 KB
Line 
1/*
2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94
34 * ip_icmp.c,v 1.7 1995/05/30 08:09:42 rgrimes Exp
35 */
36
37#include "slirp.h"
38#include "ip_icmp.h"
39#ifdef RT_OS_WINDOWS
40#include <Icmpapi.h>
41#include <Iphlpapi.h>
42#endif
43
44
45/* The message sent when emulating PING */
46/* Be nice and tell them it's just a psuedo-ping packet */
47static const char icmp_ping_msg[] = "This is a psuedo-PING packet used by Slirp to emulate ICMP ECHO-REQUEST packets.\n";
48
49/* list of actions for icmp_error() on RX of an icmp message */
50static const int icmp_flush[19] =
51{
52/* ECHO REPLY (0) */ 0,
53 1,
54 1,
55/* DEST UNREACH (3) */ 1,
56/* SOURCE QUENCH (4)*/ 1,
57/* REDIRECT (5) */ 1,
58 1,
59 1,
60/* ECHO (8) */ 0,
61/* ROUTERADVERT (9) */ 1,
62/* ROUTERSOLICIT (10) */ 1,
63/* TIME EXCEEDED (11) */ 1,
64/* PARAMETER PROBLEM (12) */ 1,
65/* TIMESTAMP (13) */ 0,
66/* TIMESTAMP REPLY (14) */ 0,
67/* INFO (15) */ 0,
68/* INFO REPLY (16) */ 0,
69/* ADDR MASK (17) */ 0,
70/* ADDR MASK REPLY (18) */ 0
71};
72
73#ifdef VBOX_WITH_SLIRP_ICMP
74int
75icmp_init(PNATState pData)
76{
77 pData->icmp_socket.so_type = IPPROTO_ICMP;
78 pData->icmp_socket.so_state = SS_ISFCONNECTED;
79#ifndef RT_OS_WINDOWS
80# ifndef RT_OS_DARWIN
81 pData->icmp_socket.s = socket(PF_INET, SOCK_RAW, IPPROTO_ICMP);
82# else /* !RT_OS_DARWIN */
83 pData->icmp_socket.s = socket(AF_INET, SOCK_DGRAM, IPPROTO_ICMP);
84# endif /* RT_OS_DARWIN */
85 if (pData->icmp_socket.s == -1)
86 {
87 int rc = RTErrConvertFromErrno(errno);
88 LogRel(("NAT: ICMP/ping not available (could open ICMP socket, error %Rrc)\n", rc));
89 return 1;
90 }
91#else /* RT_OS_WINDOWS */
92 pData->hmIcmpLibrary = LoadLibrary("Iphlpapi.dll");
93 if (pData->hmIcmpLibrary != NULL)
94 {
95 pData->pfIcmpParseReplies = (long (WINAPI *)(void *, long))
96 GetProcAddress(pData->hmIcmpLibrary, "IcmpParseReplies");
97 pData->pfIcmpCloseHandle = (BOOL (WINAPI *)(HANDLE))
98 GetProcAddress(pData->hmIcmpLibrary, "IcmpCloseHandle");
99 }
100 if (pData->pfIcmpParseReplies == NULL)
101 {
102 FreeLibrary(pData->hmIcmpLibrary);
103 pData->hmIcmpLibrary = LoadLibrary("Icmp.dll");
104 if (pData->hmIcmpLibrary == NULL)
105 {
106 LogRel(("NAT: Icmp.dll could not be loaded\n"));
107 return 1;
108 }
109 pData->pfIcmpParseReplies = (long (WINAPI *)(void *, long))
110 GetProcAddress(pData->hmIcmpLibrary, "IcmpParseReplies");
111 pData->pfIcmpCloseHandle = (BOOL (WINAPI *)(HANDLE))
112 GetProcAddress(pData->hmIcmpLibrary, "IcmpCloseHandle");
113 }
114 if (pData->pfIcmpParseReplies == NULL)
115 {
116 LogRel(("NAT: Can't find IcmpParseReplies symbol\n"));
117 FreeLibrary(pData->hmIcmpLibrary);
118 return 1;
119 }
120 if (pData->pfIcmpCloseHandle == NULL)
121 {
122 LogRel(("NAT: Can't find IcmpCloseHandle symbol\n"));
123 FreeLibrary(pData->hmIcmpLibrary);
124 return 1;
125 }
126 pData->icmp_socket.sh = IcmpCreateFile();
127 pData->phEvents[VBOX_ICMP_EVENT_INDEX] = CreateEvent(NULL, FALSE, FALSE, NULL);
128 pData->szIcmpBuffer = sizeof(ICMP_ECHO_REPLY) * 10;
129 pData->pvIcmpBuffer = malloc(pData->szIcmpBuffer);
130#endif /* RT_OS_WINDOWS */
131 LIST_INIT(&pData->icmp_msg_head);
132 return 0;
133}
134
135/*
136 * ip here is ip header + 64bytes readed from ICMP packet
137 */
138struct icmp_msg *
139icmp_find_original_mbuf(PNATState pData, struct ip *ip)
140{
141 struct mbuf *m0;
142 struct ip *ip0;
143 struct icmp *icp, *icp0;
144 struct icmp_msg *icm = NULL;
145 int found = 0;
146 struct udphdr *udp;
147 struct tcphdr *tcp;
148 struct socket *head_socket = NULL;
149 struct socket *last_socket = NULL;
150 struct socket *so = NULL;
151 struct in_addr laddr, faddr;
152 u_short lport, fport;
153
154 laddr.s_addr = ~0;
155 faddr.s_addr = ~0;
156
157 lport = ~0;
158 fport = ~0;
159
160
161 LogRel(("%s: processing (proto:%d)\n", __FUNCTION__, ip->ip_p));
162 switch (ip->ip_p)
163 {
164 case IPPROTO_ICMP:
165 icp = (struct icmp *)((char *)ip + (ip->ip_hl << 2));
166 LIST_FOREACH(icm, &pData->icmp_msg_head, im_list)
167 {
168 m0 = icm->im_m;
169 ip0 = mtod(m0, struct ip *);
170 AssertRelease(ip0->ip_p == IPPROTO_ICMP);
171 icp0 = (struct icmp *)((char *)ip0 + (ip0->ip_hl << 2));
172 if ( ( (icp->icmp_type != ICMP_ECHO && ip->ip_src.s_addr == ip0->ip_dst.s_addr)
173 || (icp->icmp_type == ICMP_ECHO && ip->ip_dst.s_addr == ip0->ip_dst.s_addr))
174 && icp->icmp_id == icp0->icmp_id
175 && icp->icmp_seq == icp->icmp_seq)
176 {
177 found = 1;
178 break;
179 }
180 LogRel(("Have found nothing\n"));
181 }
182 break;
183
184 /*
185 * for TCP and UDP logic little bit reverted, we try to find the HOST socket
186 * from which the IP package has been sent.
187 */
188 case IPPROTO_UDP:
189 head_socket = &udb;
190 udp = (struct udphdr *)((char *)ip + (ip->ip_hl << 2));
191 faddr.s_addr = ip->ip_dst.s_addr;
192 fport = udp->uh_dport;
193 laddr.s_addr = ip->ip_src.s_addr;
194 lport = udp->uh_sport;
195 last_socket = udp_last_so;
196 /* fall through */
197
198 case IPPROTO_TCP:
199 if (head_socket == NULL)
200 {
201 tcp = (struct tcphdr *)((char *)ip + (ip->ip_hl << 2));
202 head_socket = &tcb; /* head_socket could be initialized with udb*/
203 faddr.s_addr = ip->ip_dst.s_addr;
204 fport = tcp->th_dport;
205 laddr.s_addr = ip->ip_src.s_addr;
206 lport = tcp->th_sport;
207 last_socket = tcp_last_so;
208 }
209 /* check last socket first */
210 if ( last_socket->so_faddr.s_addr == faddr.s_addr
211 && last_socket->so_fport == fport
212 && last_socket->so_hlport == lport)
213 {
214 found = 1;
215 so = last_socket;
216 goto sofound;
217 }
218 for (so = head_socket->so_prev; so != head_socket; so = so->so_prev)
219 {
220 /* Should be reaplaced by hash here */
221 LogRel(("trying:%R[natsock] against %R[IP4]:%d lport=%d hlport=%d\n", so, &faddr, fport, lport, so->so_hlport));
222 if ( so->so_faddr.s_addr == faddr.s_addr
223 && so->so_fport == fport
224 && so->so_hlport == lport)
225 {
226 found = 1;
227 break;
228 }
229 }
230 break;
231
232 default:
233 LogRel(("%s:ICMP: unsupported protocol(%d)\n", __FUNCTION__, ip->ip_p));
234 }
235 sofound:
236 if (found == 1 && icm == NULL)
237 {
238 icm = malloc(sizeof(struct icmp_msg));
239 icm->im_m = so->so_m;
240 icm->im_so = so;
241 found = 1;
242 LogRel(("hit:%R[natsock]\n", so));
243 /*XXX: this storage not very long,
244 * better add flag if it should removed from lis
245 */
246 LIST_INSERT_HEAD(&pData->icmp_msg_head, icm, im_list);
247 return (icm);
248 }
249 if (found == 1)
250 return icm;
251
252 return NULL;
253}
254
255static int
256icmp_attach(PNATState pData, struct mbuf *m)
257{
258 struct icmp_msg *icm;
259 struct ip *ip;
260 ip = mtod(m, struct ip *);
261 Assert(ip->ip_p == IPPROTO_ICMP);
262 icm = malloc(sizeof(struct icmp_msg));
263 icm->im_m = m;
264 LIST_INSERT_HEAD(&pData->icmp_msg_head, icm, im_list);
265 return 0;
266}
267#endif /* VBOX_WITH_SLIRP_ICMP */
268
269/*
270 * Process a received ICMP message.
271 */
272void
273icmp_input(PNATState pData, struct mbuf *m, int hlen)
274{
275 register struct icmp *icp;
276 register struct ip *ip = mtod(m, struct ip *);
277 int icmplen = ip->ip_len;
278 int status;
279 uint32_t dst;
280 int ttl;
281
282 /* int code; */
283
284 DEBUG_CALL("icmp_input");
285 DEBUG_ARG("m = %lx", (long )m);
286 DEBUG_ARG("m_len = %d", m->m_len);
287
288 icmpstat.icps_received++;
289
290 /*
291 * Locate icmp structure in mbuf, and check
292 * that its not corrupted and of at least minimum length.
293 */
294 if (icmplen < ICMP_MINLEN)
295 {
296 /* min 8 bytes payload */
297 icmpstat.icps_tooshort++;
298freeit:
299 m_freem(pData, m);
300 goto end_error;
301 }
302
303 m->m_len -= hlen;
304 m->m_data += hlen;
305 icp = mtod(m, struct icmp *);
306 if (cksum(m, icmplen))
307 {
308 icmpstat.icps_checksum++;
309 goto freeit;
310 }
311 m->m_len += hlen;
312 m->m_data -= hlen;
313
314 /* icmpstat.icps_inhist[icp->icmp_type]++; */
315 /* code = icp->icmp_code; */
316
317 DEBUG_ARG("icmp_type = %d", icp->icmp_type);
318 switch (icp->icmp_type)
319 {
320 case ICMP_ECHO:
321#ifndef VBOX_WITH_SLIRP_ICMP
322 icp->icmp_type = ICMP_ECHOREPLY;
323#endif /* !VBOX_WITH_SLIRP_ICMP */
324
325 ip->ip_len += hlen; /* since ip_input subtracts this */
326 dst = ip->ip_dst.s_addr;
327 if (dst == alias_addr.s_addr)
328 {
329#ifdef VBOX_WITH_SLIRP_ICMP
330 icp->icmp_type = ICMP_ECHOREPLY;
331 ip->ip_dst.s_addr = ip->ip_src.s_addr;
332 ip->ip_src.s_addr = dst;
333#endif /* VBOX_WITH_SLIRP_ICMP */
334 icmp_reflect(pData, m);
335 }
336 else
337 {
338 struct socket *so;
339 struct sockaddr_in addr;
340#ifndef VBOX_WITH_SLIRP_ICMP
341 if ((so = socreate()) == NULL)
342 goto freeit;
343 if (udp_attach(pData, so) == -1)
344 {
345 DEBUG_MISC((dfd,"icmp_input udp_attach errno = %d-%s\n",
346 errno,strerror(errno)));
347 sofree(pData, so);
348 m_free(pData, m);
349 goto end_error;
350 }
351 so->so_m = m;
352 so->so_faddr = ip->ip_dst;
353 so->so_fport = htons(7);
354 so->so_laddr = ip->ip_src;
355 so->so_lport = htons(9);
356 so->so_iptos = ip->ip_tos;
357 so->so_type = IPPROTO_ICMP;
358 so->so_state = SS_ISFCONNECTED;
359
360 addr.sin_family = AF_INET;
361 if ((so->so_faddr.s_addr & htonl(pData->netmask)) == special_addr.s_addr)
362 {
363 /* It's an alias */
364 switch (ntohl(so->so_faddr.s_addr) & ~pData->netmask)
365 {
366 case CTL_DNS:
367 addr.sin_addr = dns_addr;
368 break;
369 case CTL_ALIAS:
370 default:
371 addr.sin_addr = loopback_addr;
372 break;
373 }
374 }
375 else
376 addr.sin_addr = so->so_faddr;
377 addr.sin_port = so->so_fport;
378 if (sendto(so->s, icmp_ping_msg, strlen(icmp_ping_msg), 0,
379 (struct sockaddr *)&addr, sizeof(addr)) == -1)
380 {
381 DEBUG_MISC((dfd,"icmp_input udp sendto tx errno = %d-%s\n",
382 errno,strerror(errno)));
383 icmp_error(pData, m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno));
384 udp_detach(pData, so);
385 }
386#else /* VBOX_WITH_SLIRP_ICMP */
387# ifdef RT_OS_WINDOWS
388 IP_OPTION_INFORMATION ipopt;
389 int error;
390# endif
391 addr.sin_family = AF_INET;
392 if ((ip->ip_dst.s_addr & htonl(pData->netmask)) == special_addr.s_addr)
393 {
394 /* It's an alias */
395 switch(ntohl(ip->ip_dst.s_addr) & ~pData->netmask)
396 {
397 case CTL_DNS:
398 addr.sin_addr = dns_addr;
399 break;
400 case CTL_ALIAS:
401 default:
402 addr.sin_addr = loopback_addr;
403 break;
404 }
405 }
406 else
407 addr.sin_addr.s_addr = ip->ip_dst.s_addr;
408 icmp_attach(pData, m);
409 /* Send the packet */
410# ifndef RT_OS_WINDOWS
411 ttl = ip->ip_ttl;
412 LogRel(("NAT/ICMP: try to set TTL(%d)\n", ttl));
413 status = setsockopt(pData->icmp_socket.s, IPPROTO_IP, IP_TTL, (void *)&ttl, sizeof(ttl));
414 if (status < 0)
415 {
416 LogRel(("NAT: Error (%s) occurred while setting TTL attribute of IP packet\n", strerror(errno)));
417 }
418 if (sendto(pData->icmp_socket.s, icp, icmplen, 0,
419 (struct sockaddr *)&addr, sizeof(addr)) == -1)
420 {
421 DEBUG_MISC((dfd,"icmp_input udp sendto tx errno = %d-%s\n",
422 errno,strerror(errno)));
423 icmp_error(pData, m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno));
424 m_free(pData, m);
425 }
426# else /* RT_OS_WINDOWS */
427 pData->icmp_socket.so_laddr.s_addr = ip->ip_src.s_addr; /* XXX: hack*/
428 pData->icmp_socket.so_icmp_id = icp->icmp_id;
429 pData->icmp_socket.so_icmp_seq = icp->icmp_seq;
430 memset(&ipopt, 0, sizeof(IP_OPTION_INFORMATION));
431 ipopt.Ttl = ip->ip_ttl;
432 status = IcmpSendEcho2(pData->icmp_socket.sh, pData->phEvents[VBOX_ICMP_EVENT_INDEX],
433 NULL, NULL, addr.sin_addr.s_addr, icp->icmp_data,
434 icmplen - offsetof(struct icmp, icmp_data) , &ipopt,
435 pData->pvIcmpBuffer, pData->szIcmpBuffer, 1);
436 if (status == 0 && (error = GetLastError()) != ERROR_IO_PENDING)
437 {
438 error = GetLastError();
439 LogRel(("NAT: Error (%d) occurred while sending ICMP (", error));
440 switch (error)
441 {
442 case ERROR_INVALID_PARAMETER:
443 LogRel(("icmp_socket:%lx is invalid)\n", pData->icmp_socket.s));
444 break;
445 case ERROR_NOT_SUPPORTED:
446 LogRel(("operation is unsupported)\n"));
447 break;
448 case ERROR_NOT_ENOUGH_MEMORY:
449 LogRel(("OOM!!!)\n"));
450 break;
451 case IP_BUF_TOO_SMALL:
452 LogRel(("Buffer too small)\n"));
453 break;
454 default:
455 LogRel(("Other error!!!)\n"));
456 break;
457 }
458 }
459# endif /* RT_OS_WINDOWS */
460#endif /* VBOX_WITH_SLIRP_ICMP */
461 } /* if ip->ip_dst.s_addr == alias_addr.s_addr */
462 break;
463 case ICMP_UNREACH:
464 /* XXX? report error? close socket? */
465 case ICMP_TIMXCEED:
466 case ICMP_PARAMPROB:
467 case ICMP_SOURCEQUENCH:
468 case ICMP_TSTAMP:
469 case ICMP_MASKREQ:
470 case ICMP_REDIRECT:
471 icmpstat.icps_notsupp++;
472 m_freem(pData, m);
473 break;
474
475 default:
476 icmpstat.icps_badtype++;
477 m_freem(pData, m);
478 } /* switch */
479
480end_error:
481 /* m is m_free()'d xor put in a socket xor or given to ip_send */
482 ;
483}
484
485
486/*
487 * Send an ICMP message in response to a situation
488 *
489 * RFC 1122: 3.2.2 MUST send at least the IP header and 8 bytes of header. MAY send more (we do).
490 * MUST NOT change this header information.
491 * MUST NOT reply to a multicast/broadcast IP address.
492 * MUST NOT reply to a multicast/broadcast MAC address.
493 * MUST reply to only the first fragment.
494 */
495/*
496 * Send ICMP_UNREACH back to the source regarding msrc.
497 * mbuf *msrc is used as a template, but is NOT m_free()'d.
498 * It is reported as the bad ip packet. The header should
499 * be fully correct and in host byte order.
500 * ICMP fragmentation is illegal. All machines must accept 576 bytes in one
501 * packet. The maximum payload is 576-20(ip hdr)-8(icmp hdr)=548
502 */
503
504#define ICMP_MAXDATALEN (IP_MSS-28)
505void icmp_error(PNATState pData, struct mbuf *msrc, u_char type, u_char code, int minsize, const char *message)
506{
507 unsigned hlen, shlen, s_ip_len;
508 register struct ip *ip;
509 register struct icmp *icp;
510 register struct mbuf *m;
511
512 DEBUG_CALL("icmp_error");
513 DEBUG_ARG("msrc = %lx", (long )msrc);
514 DEBUG_ARG("msrc_len = %d", msrc->m_len);
515
516 if (type!=ICMP_UNREACH && type!=ICMP_TIMXCEED)
517 goto end_error;
518
519 /* check msrc */
520 if (!msrc)
521 goto end_error;
522
523 ip = mtod(msrc, struct ip *);
524#if DEBUG
525 {
526 char bufa[20], bufb[20];
527 strcpy(bufa, inet_ntoa(ip->ip_src));
528 strcpy(bufb, inet_ntoa(ip->ip_dst));
529 DEBUG_MISC((dfd, " %.16s to %.16s\n", bufa, bufb));
530 }
531#endif
532 if (ip->ip_off & IP_OFFMASK)
533 goto end_error; /* Only reply to fragment 0 */
534
535 shlen = ip->ip_hl << 2;
536 s_ip_len = ip->ip_len;
537 if (ip->ip_p == IPPROTO_ICMP)
538 {
539 icp = (struct icmp *)((char *)ip + shlen);
540 /*
541 * Assume any unknown ICMP type is an error. This isn't
542 * specified by the RFC, but think about it..
543 */
544 if (icp->icmp_type>18 || icmp_flush[icp->icmp_type])
545 goto end_error;
546 }
547
548 /* make a copy */
549 if (!(m = m_get(pData)))
550 goto end_error; /* get mbuf */
551 {
552 int new_m_size;
553 new_m_size = sizeof(struct ip) + ICMP_MINLEN + msrc->m_len + ICMP_MAXDATALEN;
554 if (new_m_size>m->m_size)
555 m_inc(m, new_m_size);
556 }
557 memcpy(m->m_data, msrc->m_data, msrc->m_len);
558 m->m_len = msrc->m_len; /* copy msrc to m */
559
560 /* make the header of the reply packet */
561 ip = mtod(m, struct ip *);
562 hlen = sizeof(struct ip ); /* no options in reply */
563
564 /* fill in icmp */
565 m->m_data += hlen;
566 m->m_len -= hlen;
567
568 icp = mtod(m, struct icmp *);
569
570 if (minsize)
571 s_ip_len = shlen+ICMP_MINLEN; /* return header+8b only */
572 else if (s_ip_len > ICMP_MAXDATALEN) /* maximum size */
573 s_ip_len = ICMP_MAXDATALEN;
574
575 m->m_len = ICMP_MINLEN + s_ip_len; /* 8 bytes ICMP header */
576
577 /* min. size = 8+sizeof(struct ip)+8 */
578
579 icp->icmp_type = type;
580 icp->icmp_code = code;
581 icp->icmp_id = 0;
582 icp->icmp_seq = 0;
583
584 memcpy(&icp->icmp_ip, msrc->m_data, s_ip_len); /* report the ip packet */
585 HTONS(icp->icmp_ip.ip_len);
586 HTONS(icp->icmp_ip.ip_id);
587 HTONS(icp->icmp_ip.ip_off);
588
589#if DEBUG
590 if (message)
591 {
592 /* DEBUG : append message to ICMP packet */
593 int message_len;
594 char *cpnt;
595 message_len = strlen(message);
596 if (message_len > ICMP_MAXDATALEN)
597 message_len = ICMP_MAXDATALEN;
598 cpnt = (char *)m->m_data+m->m_len;
599 memcpy(cpnt, message, message_len);
600 m->m_len += message_len;
601 }
602#endif
603
604 icp->icmp_cksum = 0;
605 icp->icmp_cksum = cksum(m, m->m_len);
606
607 m->m_data -= hlen;
608 m->m_len += hlen;
609
610 /* fill in ip */
611 ip->ip_hl = hlen >> 2;
612 ip->ip_len = m->m_len;
613
614 ip->ip_tos = ((ip->ip_tos & 0x1E) | 0xC0); /* high priority for errors */
615
616 ip->ip_ttl = MAXTTL;
617 ip->ip_p = IPPROTO_ICMP;
618 ip->ip_dst = ip->ip_src; /* ip adresses */
619 ip->ip_src = alias_addr;
620
621 (void ) ip_output(pData, (struct socket *)NULL, m);
622
623 icmpstat.icps_reflect++;
624
625end_error:
626 ;
627}
628#undef ICMP_MAXDATALEN
629
630/*
631 * Reflect the ip packet back to the source
632 */
633void
634icmp_reflect(PNATState pData, struct mbuf *m)
635{
636 register struct ip *ip = mtod(m, struct ip *);
637 int hlen = ip->ip_hl << 2;
638 int optlen = hlen - sizeof(struct ip );
639 register struct icmp *icp;
640
641 /*
642 * Send an icmp packet back to the ip level,
643 * after supplying a checksum.
644 */
645 m->m_data += hlen;
646 m->m_len -= hlen;
647 icp = mtod(m, struct icmp *);
648
649 icp->icmp_cksum = 0;
650 icp->icmp_cksum = cksum(m, ip->ip_len - hlen);
651
652 m->m_data -= hlen;
653 m->m_len += hlen;
654
655#ifndef VBOX_WITH_SLIRP_ICMP
656 /* fill in ip */
657 if (optlen > 0)
658 {
659 /*
660 * Strip out original options by copying rest of first
661 * mbuf's data back, and adjust the IP length.
662 */
663 memmove((caddr_t)(ip + 1), (caddr_t)ip + hlen,
664 (unsigned )(m->m_len - hlen));
665 hlen -= optlen;
666 ip->ip_hl = hlen >> 2;
667 ip->ip_len -= optlen;
668 m->m_len -= optlen;
669 }
670 ip->ip_ttl = MAXTTL;
671 {
672 /* swap */
673 struct in_addr icmp_dst;
674 icmp_dst = ip->ip_dst;
675 ip->ip_dst = ip->ip_src;
676 ip->ip_src = icmp_dst;
677 }
678#endif /* !VBOX_WITH_SLIRP_ICMP */
679
680 (void ) ip_output(pData, (struct socket *)NULL, m);
681
682 icmpstat.icps_reflect++;
683}
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