Statistics
| Branch: | Revision:

root / slirp / ip_icmp.c @ 5dba48a8

History | View | Annotate | Download (9.9 kB)

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