Statistics
| Branch: | Revision:

root / slirp / ip_icmp.c @ 5fafdf24

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