]> git.proxmox.com Git - qemu.git/blob - slirp/ip_icmp.c
slirp: Fix restricted mode
[qemu.git] / slirp / ip_icmp.c
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)ip_icmp.c 8.2 (Berkeley) 1/4/94
30 * ip_icmp.c,v 1.7 1995/05/30 08:09:42 rgrimes Exp
31 */
32
33 #include "slirp.h"
34 #include "ip_icmp.h"
35
36 /* The message sent when emulating PING */
37 /* Be nice and tell them it's just a pseudo-ping packet */
38 static const char icmp_ping_msg[] = "This is a pseudo-PING packet used by Slirp to emulate ICMP ECHO-REQUEST packets.\n";
39
40 /* list of actions for icmp_error() on RX of an icmp message */
41 static const int icmp_flush[19] = {
42 /* ECHO REPLY (0) */ 0,
43 1,
44 1,
45 /* DEST UNREACH (3) */ 1,
46 /* SOURCE QUENCH (4)*/ 1,
47 /* REDIRECT (5) */ 1,
48 1,
49 1,
50 /* ECHO (8) */ 0,
51 /* ROUTERADVERT (9) */ 1,
52 /* ROUTERSOLICIT (10) */ 1,
53 /* TIME EXCEEDED (11) */ 1,
54 /* PARAMETER PROBLEM (12) */ 1,
55 /* TIMESTAMP (13) */ 0,
56 /* TIMESTAMP REPLY (14) */ 0,
57 /* INFO (15) */ 0,
58 /* INFO REPLY (16) */ 0,
59 /* ADDR MASK (17) */ 0,
60 /* ADDR MASK REPLY (18) */ 0
61 };
62
63 /*
64 * Process a received ICMP message.
65 */
66 void
67 icmp_input(struct mbuf *m, int hlen)
68 {
69 register struct icmp *icp;
70 register struct ip *ip=mtod(m, struct ip *);
71 int icmplen=ip->ip_len;
72 Slirp *slirp = m->slirp;
73
74 DEBUG_CALL("icmp_input");
75 DEBUG_ARG("m = %lx", (long )m);
76 DEBUG_ARG("m_len = %d", m->m_len);
77
78 /*
79 * Locate icmp structure in mbuf, and check
80 * that its not corrupted and of at least minimum length.
81 */
82 if (icmplen < ICMP_MINLEN) { /* min 8 bytes payload */
83 freeit:
84 m_freem(m);
85 goto end_error;
86 }
87
88 m->m_len -= hlen;
89 m->m_data += hlen;
90 icp = mtod(m, struct icmp *);
91 if (cksum(m, icmplen)) {
92 goto freeit;
93 }
94 m->m_len += hlen;
95 m->m_data -= hlen;
96
97 DEBUG_ARG("icmp_type = %d", icp->icmp_type);
98 switch (icp->icmp_type) {
99 case ICMP_ECHO:
100 icp->icmp_type = ICMP_ECHOREPLY;
101 ip->ip_len += hlen; /* since ip_input subtracts this */
102 if (ip->ip_dst.s_addr == slirp->vhost_addr.s_addr) {
103 icmp_reflect(m);
104 } else if (slirp->restricted) {
105 goto freeit;
106 } else {
107 struct socket *so;
108 struct sockaddr_in addr;
109 if ((so = socreate(slirp)) == NULL) goto freeit;
110 if(udp_attach(so) == -1) {
111 DEBUG_MISC((dfd,"icmp_input udp_attach errno = %d-%s\n",
112 errno,strerror(errno)));
113 sofree(so);
114 m_free(m);
115 goto end_error;
116 }
117 so->so_m = m;
118 so->so_faddr = ip->ip_dst;
119 so->so_fport = htons(7);
120 so->so_laddr = ip->ip_src;
121 so->so_lport = htons(9);
122 so->so_iptos = ip->ip_tos;
123 so->so_type = IPPROTO_ICMP;
124 so->so_state = SS_ISFCONNECTED;
125
126 /* Send the packet */
127 addr.sin_family = AF_INET;
128 if ((so->so_faddr.s_addr & slirp->vnetwork_mask.s_addr) ==
129 slirp->vnetwork_addr.s_addr) {
130 /* It's an alias */
131 if (so->so_faddr.s_addr == slirp->vnameserver_addr.s_addr) {
132 if (get_dns_addr(&addr.sin_addr) < 0)
133 addr.sin_addr = loopback_addr;
134 } else {
135 addr.sin_addr = loopback_addr;
136 }
137 } else {
138 addr.sin_addr = so->so_faddr;
139 }
140 addr.sin_port = so->so_fport;
141 if(sendto(so->s, icmp_ping_msg, strlen(icmp_ping_msg), 0,
142 (struct sockaddr *)&addr, sizeof(addr)) == -1) {
143 DEBUG_MISC((dfd,"icmp_input udp sendto tx errno = %d-%s\n",
144 errno,strerror(errno)));
145 icmp_error(m, ICMP_UNREACH,ICMP_UNREACH_NET, 0,strerror(errno));
146 udp_detach(so);
147 }
148 } /* if ip->ip_dst.s_addr == alias_addr.s_addr */
149 break;
150 case ICMP_UNREACH:
151 /* XXX? report error? close socket? */
152 case ICMP_TIMXCEED:
153 case ICMP_PARAMPROB:
154 case ICMP_SOURCEQUENCH:
155 case ICMP_TSTAMP:
156 case ICMP_MASKREQ:
157 case ICMP_REDIRECT:
158 m_freem(m);
159 break;
160
161 default:
162 m_freem(m);
163 } /* swith */
164
165 end_error:
166 /* m is m_free()'d xor put in a socket xor or given to ip_send */
167 return;
168 }
169
170
171 /*
172 * Send an ICMP message in response to a situation
173 *
174 * RFC 1122: 3.2.2 MUST send at least the IP header and 8 bytes of header. MAY send more (we do).
175 * MUST NOT change this header information.
176 * MUST NOT reply to a multicast/broadcast IP address.
177 * MUST NOT reply to a multicast/broadcast MAC address.
178 * MUST reply to only the first fragment.
179 */
180 /*
181 * Send ICMP_UNREACH back to the source regarding msrc.
182 * mbuf *msrc is used as a template, but is NOT m_free()'d.
183 * It is reported as the bad ip packet. The header should
184 * be fully correct and in host byte order.
185 * ICMP fragmentation is illegal. All machines must accept 576 bytes in one
186 * packet. The maximum payload is 576-20(ip hdr)-8(icmp hdr)=548
187 */
188
189 #define ICMP_MAXDATALEN (IP_MSS-28)
190 void
191 icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize,
192 const char *message)
193 {
194 unsigned hlen, shlen, s_ip_len;
195 register struct ip *ip;
196 register struct icmp *icp;
197 register struct mbuf *m;
198
199 DEBUG_CALL("icmp_error");
200 DEBUG_ARG("msrc = %lx", (long )msrc);
201 DEBUG_ARG("msrc_len = %d", msrc->m_len);
202
203 if(type!=ICMP_UNREACH && type!=ICMP_TIMXCEED) goto end_error;
204
205 /* check msrc */
206 if(!msrc) goto end_error;
207 ip = mtod(msrc, struct ip *);
208 #ifdef DEBUG
209 { char bufa[20], bufb[20];
210 strcpy(bufa, inet_ntoa(ip->ip_src));
211 strcpy(bufb, inet_ntoa(ip->ip_dst));
212 DEBUG_MISC((dfd, " %.16s to %.16s\n", bufa, bufb));
213 }
214 #endif
215 if(ip->ip_off & IP_OFFMASK) goto end_error; /* Only reply to fragment 0 */
216
217 shlen=ip->ip_hl << 2;
218 s_ip_len=ip->ip_len;
219 if(ip->ip_p == IPPROTO_ICMP) {
220 icp = (struct icmp *)((char *)ip + shlen);
221 /*
222 * Assume any unknown ICMP type is an error. This isn't
223 * specified by the RFC, but think about it..
224 */
225 if(icp->icmp_type>18 || icmp_flush[icp->icmp_type]) goto end_error;
226 }
227
228 /* make a copy */
229 m = m_get(msrc->slirp);
230 if (!m) {
231 goto end_error;
232 }
233
234 { int new_m_size;
235 new_m_size=sizeof(struct ip )+ICMP_MINLEN+msrc->m_len+ICMP_MAXDATALEN;
236 if(new_m_size>m->m_size) m_inc(m, new_m_size);
237 }
238 memcpy(m->m_data, msrc->m_data, msrc->m_len);
239 m->m_len = msrc->m_len; /* copy msrc to m */
240
241 /* make the header of the reply packet */
242 ip = mtod(m, struct ip *);
243 hlen= sizeof(struct ip ); /* no options in reply */
244
245 /* fill in icmp */
246 m->m_data += hlen;
247 m->m_len -= hlen;
248
249 icp = mtod(m, struct icmp *);
250
251 if(minsize) s_ip_len=shlen+ICMP_MINLEN; /* return header+8b only */
252 else if(s_ip_len>ICMP_MAXDATALEN) /* maximum size */
253 s_ip_len=ICMP_MAXDATALEN;
254
255 m->m_len=ICMP_MINLEN+s_ip_len; /* 8 bytes ICMP header */
256
257 /* min. size = 8+sizeof(struct ip)+8 */
258
259 icp->icmp_type = type;
260 icp->icmp_code = code;
261 icp->icmp_id = 0;
262 icp->icmp_seq = 0;
263
264 memcpy(&icp->icmp_ip, msrc->m_data, s_ip_len); /* report the ip packet */
265 HTONS(icp->icmp_ip.ip_len);
266 HTONS(icp->icmp_ip.ip_id);
267 HTONS(icp->icmp_ip.ip_off);
268
269 #ifdef DEBUG
270 if(message) { /* DEBUG : append message to ICMP packet */
271 int message_len;
272 char *cpnt;
273 message_len=strlen(message);
274 if(message_len>ICMP_MAXDATALEN) message_len=ICMP_MAXDATALEN;
275 cpnt=(char *)m->m_data+m->m_len;
276 memcpy(cpnt, message, message_len);
277 m->m_len+=message_len;
278 }
279 #endif
280
281 icp->icmp_cksum = 0;
282 icp->icmp_cksum = cksum(m, m->m_len);
283
284 m->m_data -= hlen;
285 m->m_len += hlen;
286
287 /* fill in ip */
288 ip->ip_hl = hlen >> 2;
289 ip->ip_len = m->m_len;
290
291 ip->ip_tos=((ip->ip_tos & 0x1E) | 0xC0); /* high priority for errors */
292
293 ip->ip_ttl = MAXTTL;
294 ip->ip_p = IPPROTO_ICMP;
295 ip->ip_dst = ip->ip_src; /* ip adresses */
296 ip->ip_src = m->slirp->vhost_addr;
297
298 (void ) ip_output((struct socket *)NULL, m);
299
300 end_error:
301 return;
302 }
303 #undef ICMP_MAXDATALEN
304
305 /*
306 * Reflect the ip packet back to the source
307 */
308 void
309 icmp_reflect(struct mbuf *m)
310 {
311 register struct ip *ip = mtod(m, struct ip *);
312 int hlen = ip->ip_hl << 2;
313 int optlen = hlen - sizeof(struct ip );
314 register struct icmp *icp;
315
316 /*
317 * Send an icmp packet back to the ip level,
318 * after supplying a checksum.
319 */
320 m->m_data += hlen;
321 m->m_len -= hlen;
322 icp = mtod(m, struct icmp *);
323
324 icp->icmp_cksum = 0;
325 icp->icmp_cksum = cksum(m, ip->ip_len - hlen);
326
327 m->m_data -= hlen;
328 m->m_len += hlen;
329
330 /* fill in ip */
331 if (optlen > 0) {
332 /*
333 * Strip out original options by copying rest of first
334 * mbuf's data back, and adjust the IP length.
335 */
336 memmove((caddr_t)(ip + 1), (caddr_t)ip + hlen,
337 (unsigned )(m->m_len - hlen));
338 hlen -= optlen;
339 ip->ip_hl = hlen >> 2;
340 ip->ip_len -= optlen;
341 m->m_len -= optlen;
342 }
343
344 ip->ip_ttl = MAXTTL;
345 { /* swap */
346 struct in_addr icmp_dst;
347 icmp_dst = ip->ip_dst;
348 ip->ip_dst = ip->ip_src;
349 ip->ip_src = icmp_dst;
350 }
351
352 (void ) ip_output((struct socket *)NULL, m);
353 }