VirtualBox

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

Last change on this file since 400 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
File size: 10.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
40struct icmpstat icmpstat;
41
42/* The message sent when emulating PING */
43/* Be nice and tell them it's just a psuedo-ping packet */
44char icmp_ping_msg[] = "This is a psuedo-PING packet used by Slirp to emulate ICMP ECHO-REQUEST packets.\n";
45
46/* list of actions for icmp_error() on RX of an icmp message */
47static int icmp_flush[19] = {
48/* ECHO REPLY (0) */ 0,
49 1,
50 1,
51/* DEST UNREACH (3) */ 1,
52/* SOURCE QUENCH (4)*/ 1,
53/* REDIRECT (5) */ 1,
54 1,
55 1,
56/* ECHO (8) */ 0,
57/* ROUTERADVERT (9) */ 1,
58/* ROUTERSOLICIT (10) */ 1,
59/* TIME EXCEEDED (11) */ 1,
60/* PARAMETER PROBLEM (12) */ 1,
61/* TIMESTAMP (13) */ 0,
62/* TIMESTAMP REPLY (14) */ 0,
63/* INFO (15) */ 0,
64/* INFO REPLY (16) */ 0,
65/* ADDR MASK (17) */ 0,
66/* ADDR MASK REPLY (18) */ 0
67};
68
69/*
70 * Process a received ICMP message.
71 */
72void
73icmp_input(m, hlen)
74 struct mbuf *m;
75 int hlen;
76{
77 register struct icmp *icp;
78 register struct ip *ip=mtod(m, struct ip *);
79 int icmplen=ip->ip_len;
80 /* int code; */
81
82 DEBUG_CALL("icmp_input");
83 DEBUG_ARG("m = %lx", (long )m);
84 DEBUG_ARG("m_len = %d", m->m_len);
85
86 icmpstat.icps_received++;
87
88 /*
89 * Locate icmp structure in mbuf, and check
90 * that its not corrupted and of at least minimum length.
91 */
92 if (icmplen < ICMP_MINLEN) { /* min 8 bytes payload */
93 icmpstat.icps_tooshort++;
94 freeit:
95 m_freem(m);
96 goto end_error;
97 }
98
99 m->m_len -= hlen;
100 m->m_data += hlen;
101 icp = mtod(m, struct icmp *);
102 if (cksum(m, icmplen)) {
103 icmpstat.icps_checksum++;
104 goto freeit;
105 }
106 m->m_len += hlen;
107 m->m_data -= hlen;
108
109 /* icmpstat.icps_inhist[icp->icmp_type]++; */
110 /* code = icp->icmp_code; */
111
112 DEBUG_ARG("icmp_type = %d", icp->icmp_type);
113 switch (icp->icmp_type) {
114 case ICMP_ECHO:
115 icp->icmp_type = ICMP_ECHOREPLY;
116 ip->ip_len += hlen; /* since ip_input subtracts this */
117 if (ip->ip_dst.s_addr == alias_addr.s_addr) {
118 icmp_reflect(m);
119 } else {
120 struct socket *so;
121 struct sockaddr_in addr;
122 if ((so = socreate()) == NULL) goto freeit;
123 if(udp_attach(so) == -1) {
124 DEBUG_MISC((dfd,"icmp_input udp_attach errno = %d-%s\n",
125 errno,strerror(errno)));
126 sofree(so);
127 m_free(m);
128 goto end_error;
129 }
130 so->so_m = m;
131 so->so_faddr = ip->ip_dst;
132 so->so_fport = htons(7);
133 so->so_laddr = ip->ip_src;
134 so->so_lport = htons(9);
135 so->so_iptos = ip->ip_tos;
136 so->so_type = IPPROTO_ICMP;
137 so->so_state = SS_ISFCONNECTED;
138
139 /* Send the packet */
140 addr.sin_family = AF_INET;
141 if ((so->so_faddr.s_addr & htonl(0xffffff00)) == special_addr.s_addr) {
142 /* It's an alias */
143 switch(ntohl(so->so_faddr.s_addr) & 0xff) {
144 case CTL_DNS:
145 addr.sin_addr = dns_addr;
146 break;
147 case CTL_ALIAS:
148 default:
149 addr.sin_addr = loopback_addr;
150 break;
151 }
152 } else {
153 addr.sin_addr = so->so_faddr;
154 }
155 addr.sin_port = so->so_fport;
156 if(sendto(so->s, icmp_ping_msg, strlen(icmp_ping_msg), 0,
157 (struct sockaddr *)&addr, sizeof(addr)) == -1) {
158 DEBUG_MISC((dfd,"icmp_input udp sendto tx errno = %d-%s\n",
159 errno,strerror(errno)));
160 icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno));
161 udp_detach(so);
162 }
163 } /* if ip->ip_dst.s_addr == alias_addr.s_addr */
164 break;
165 case ICMP_UNREACH:
166 /* XXX? report error? close socket? */
167 case ICMP_TIMXCEED:
168 case ICMP_PARAMPROB:
169 case ICMP_SOURCEQUENCH:
170 case ICMP_TSTAMP:
171 case ICMP_MASKREQ:
172 case ICMP_REDIRECT:
173 icmpstat.icps_notsupp++;
174 m_freem(m);
175 break;
176
177 default:
178 icmpstat.icps_badtype++;
179 m_freem(m);
180 } /* swith */
181
182end_error:
183 /* m is m_free()'d xor put in a socket xor or given to ip_send */
184 return;
185}
186
187
188/*
189 * Send an ICMP message in response to a situation
190 *
191 * RFC 1122: 3.2.2 MUST send at least the IP header and 8 bytes of header. MAY send more (we do).
192 * MUST NOT change this header information.
193 * MUST NOT reply to a multicast/broadcast IP address.
194 * MUST NOT reply to a multicast/broadcast MAC address.
195 * MUST reply to only the first fragment.
196 */
197/*
198 * Send ICMP_UNREACH back to the source regarding msrc.
199 * mbuf *msrc is used as a template, but is NOT m_free()'d.
200 * It is reported as the bad ip packet. The header should
201 * be fully correct and in host byte order.
202 * ICMP fragmentation is illegal. All machines must accept 576 bytes in one
203 * packet. The maximum payload is 576-20(ip hdr)-8(icmp hdr)=548
204 */
205
206#define ICMP_MAXDATALEN (IP_MSS-28)
207#ifndef VBOX
208void
209icmp_error(msrc, type, code, minsize, message)
210 struct mbuf *msrc;
211 u_char type;
212 u_char code;
213 int minsize;
214 char *message;
215#else /* VBOX */
216void icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize, char *message)
217#endif /* VBOX */
218{
219 unsigned hlen, shlen, s_ip_len;
220 register struct ip *ip;
221 register struct icmp *icp;
222 register struct mbuf *m;
223
224 DEBUG_CALL("icmp_error");
225 DEBUG_ARG("msrc = %lx", (long )msrc);
226 DEBUG_ARG("msrc_len = %d", msrc->m_len);
227
228 if(type!=ICMP_UNREACH && type!=ICMP_TIMXCEED) goto end_error;
229
230 /* check msrc */
231 if(!msrc) goto end_error;
232 ip = mtod(msrc, struct ip *);
233#if DEBUG
234 { char bufa[20], bufb[20];
235 strcpy(bufa, inet_ntoa(ip->ip_src));
236 strcpy(bufb, inet_ntoa(ip->ip_dst));
237 DEBUG_MISC((dfd, " %.16s to %.16s\n", bufa, bufb));
238 }
239#endif
240 if(ip->ip_off & IP_OFFMASK) goto end_error; /* Only reply to fragment 0 */
241
242 shlen=ip->ip_hl << 2;
243 s_ip_len=ip->ip_len;
244 if(ip->ip_p == IPPROTO_ICMP) {
245 icp = (struct icmp *)((char *)ip + shlen);
246 /*
247 * Assume any unknown ICMP type is an error. This isn't
248 * specified by the RFC, but think about it..
249 */
250 if(icp->icmp_type>18 || icmp_flush[icp->icmp_type]) goto end_error;
251 }
252
253 /* make a copy */
254 if(!(m=m_get())) goto end_error; /* get mbuf */
255 { int new_m_size;
256 new_m_size=sizeof(struct ip )+ICMP_MINLEN+msrc->m_len+ICMP_MAXDATALEN;
257 if(new_m_size>m->m_size) m_inc(m, new_m_size);
258 }
259 memcpy(m->m_data, msrc->m_data, msrc->m_len);
260 m->m_len = msrc->m_len; /* copy msrc to m */
261
262 /* make the header of the reply packet */
263 ip = mtod(m, struct ip *);
264 hlen= sizeof(struct ip ); /* no options in reply */
265
266 /* fill in icmp */
267 m->m_data += hlen;
268 m->m_len -= hlen;
269
270 icp = mtod(m, struct icmp *);
271
272 if(minsize) s_ip_len=shlen+ICMP_MINLEN; /* return header+8b only */
273 else if(s_ip_len>ICMP_MAXDATALEN) /* maximum size */
274 s_ip_len=ICMP_MAXDATALEN;
275
276 m->m_len=ICMP_MINLEN+s_ip_len; /* 8 bytes ICMP header */
277
278 /* min. size = 8+sizeof(struct ip)+8 */
279
280 icp->icmp_type = type;
281 icp->icmp_code = code;
282 icp->icmp_id = 0;
283 icp->icmp_seq = 0;
284
285 memcpy(&icp->icmp_ip, msrc->m_data, s_ip_len); /* report the ip packet */
286 HTONS(icp->icmp_ip.ip_len);
287 HTONS(icp->icmp_ip.ip_id);
288 HTONS(icp->icmp_ip.ip_off);
289
290#if DEBUG
291 if(message) { /* DEBUG : append message to ICMP packet */
292 int message_len;
293 char *cpnt;
294 message_len=strlen(message);
295 if(message_len>ICMP_MAXDATALEN) message_len=ICMP_MAXDATALEN;
296 cpnt=(char *)m->m_data+m->m_len;
297 memcpy(cpnt, message, message_len);
298 m->m_len+=message_len;
299 }
300#endif
301
302 icp->icmp_cksum = 0;
303 icp->icmp_cksum = cksum(m, m->m_len);
304
305 m->m_data -= hlen;
306 m->m_len += hlen;
307
308 /* fill in ip */
309 ip->ip_hl = hlen >> 2;
310 ip->ip_len = m->m_len;
311
312 ip->ip_tos=((ip->ip_tos & 0x1E) | 0xC0); /* high priority for errors */
313
314 ip->ip_ttl = MAXTTL;
315 ip->ip_p = IPPROTO_ICMP;
316 ip->ip_dst = ip->ip_src; /* ip adresses */
317 ip->ip_src = alias_addr;
318
319 (void ) ip_output((struct socket *)NULL, m);
320
321 icmpstat.icps_reflect++;
322
323end_error:
324 return;
325}
326#undef ICMP_MAXDATALEN
327
328/*
329 * Reflect the ip packet back to the source
330 */
331void
332icmp_reflect(m)
333 struct mbuf *m;
334{
335 register struct ip *ip = mtod(m, struct ip *);
336 int hlen = ip->ip_hl << 2;
337 int optlen = hlen - sizeof(struct ip );
338 register struct icmp *icp;
339
340 /*
341 * Send an icmp packet back to the ip level,
342 * after supplying a checksum.
343 */
344 m->m_data += hlen;
345 m->m_len -= hlen;
346 icp = mtod(m, struct icmp *);
347
348 icp->icmp_cksum = 0;
349 icp->icmp_cksum = cksum(m, ip->ip_len - hlen);
350
351 m->m_data -= hlen;
352 m->m_len += hlen;
353
354 /* fill in ip */
355 if (optlen > 0) {
356 /*
357 * Strip out original options by copying rest of first
358 * mbuf's data back, and adjust the IP length.
359 */
360 memmove((caddr_t)(ip + 1), (caddr_t)ip + hlen,
361 (unsigned )(m->m_len - hlen));
362 hlen -= optlen;
363 ip->ip_hl = hlen >> 2;
364 ip->ip_len -= optlen;
365 m->m_len -= optlen;
366 }
367
368 ip->ip_ttl = MAXTTL;
369 { /* swap */
370 struct in_addr icmp_dst;
371 icmp_dst = ip->ip_dst;
372 ip->ip_dst = ip->ip_src;
373 ip->ip_src = icmp_dst;
374 }
375
376 (void ) ip_output((struct socket *)NULL, m);
377
378 icmpstat.icps_reflect++;
379}
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