ip_icmp.c revision 1.3 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1982, 1986, 1989 Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd *
33 1.2 cgd * from: @(#)ip_icmp.c 7.15 (Berkeley) 4/20/91
34 1.3 hpeyerl * $Id: ip_icmp.c,v 1.3 1993/12/06 04:59:34 hpeyerl Exp $
35 1.1 cgd */
36 1.1 cgd
37 1.1 cgd #include "param.h"
38 1.1 cgd #include "systm.h"
39 1.1 cgd #include "malloc.h"
40 1.1 cgd #include "mbuf.h"
41 1.1 cgd #include "protosw.h"
42 1.1 cgd #include "socket.h"
43 1.1 cgd #include "time.h"
44 1.1 cgd #include "kernel.h"
45 1.1 cgd
46 1.1 cgd #include "../net/route.h"
47 1.1 cgd #include "../net/if.h"
48 1.1 cgd
49 1.1 cgd #include "in.h"
50 1.1 cgd #include "in_systm.h"
51 1.1 cgd #include "in_var.h"
52 1.1 cgd #include "ip.h"
53 1.1 cgd #include "ip_icmp.h"
54 1.1 cgd #include "icmp_var.h"
55 1.1 cgd
56 1.1 cgd /*
57 1.1 cgd * ICMP routines: error generation, receive packet processing, and
58 1.1 cgd * routines to turnaround packets back to the originator, and
59 1.1 cgd * host table maintenance routines.
60 1.1 cgd */
61 1.1 cgd #ifdef ICMPPRINTFS
62 1.1 cgd int icmpprintfs = 0;
63 1.1 cgd #endif
64 1.1 cgd
65 1.1 cgd extern struct protosw inetsw[];
66 1.1 cgd
67 1.1 cgd /*
68 1.1 cgd * Generate an error packet of type error
69 1.1 cgd * in response to bad packet ip.
70 1.1 cgd */
71 1.1 cgd /*VARARGS3*/
72 1.1 cgd icmp_error(n, type, code, dest)
73 1.1 cgd struct mbuf *n;
74 1.1 cgd int type, code;
75 1.1 cgd struct in_addr dest;
76 1.1 cgd {
77 1.1 cgd register struct ip *oip = mtod(n, struct ip *), *nip;
78 1.1 cgd register unsigned oiplen = oip->ip_hl << 2;
79 1.1 cgd register struct icmp *icp;
80 1.1 cgd register struct mbuf *m;
81 1.1 cgd unsigned icmplen;
82 1.1 cgd
83 1.1 cgd #ifdef ICMPPRINTFS
84 1.1 cgd if (icmpprintfs)
85 1.1 cgd printf("icmp_error(%x, %d, %d)\n", oip, type, code);
86 1.1 cgd #endif
87 1.1 cgd if (type != ICMP_REDIRECT)
88 1.1 cgd icmpstat.icps_error++;
89 1.1 cgd /*
90 1.1 cgd * Don't send error if not the first fragment of message.
91 1.1 cgd * Don't error if the old packet protocol was ICMP
92 1.1 cgd * error message, only known informational types.
93 1.1 cgd */
94 1.1 cgd if (oip->ip_off &~ (IP_MF|IP_DF))
95 1.1 cgd goto freeit;
96 1.1 cgd if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT &&
97 1.1 cgd n->m_len >= oiplen + ICMP_MINLEN &&
98 1.1 cgd !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip + oiplen))->icmp_type)) {
99 1.1 cgd icmpstat.icps_oldicmp++;
100 1.1 cgd goto freeit;
101 1.1 cgd }
102 1.3 hpeyerl #ifdef MULTICAST
103 1.3 hpeyerl /* Don't send error in response to a multicast or broadcast packet */
104 1.3 hpeyerl if (n->m_flags & (M_MCAST | M_BCAST))
105 1.3 hpeyerl goto freeit;
106 1.3 hpeyerl #endif
107 1.1 cgd /*
108 1.1 cgd * First, formulate icmp message
109 1.1 cgd */
110 1.1 cgd m = m_gethdr(M_DONTWAIT, MT_HEADER);
111 1.1 cgd if (m == NULL)
112 1.1 cgd goto freeit;
113 1.1 cgd icmplen = oiplen + min(8, oip->ip_len);
114 1.1 cgd m->m_len = icmplen + ICMP_MINLEN;
115 1.1 cgd MH_ALIGN(m, m->m_len);
116 1.1 cgd icp = mtod(m, struct icmp *);
117 1.1 cgd if ((u_int)type > ICMP_MAXTYPE)
118 1.1 cgd panic("icmp_error");
119 1.1 cgd icmpstat.icps_outhist[type]++;
120 1.1 cgd icp->icmp_type = type;
121 1.1 cgd if (type == ICMP_REDIRECT)
122 1.1 cgd icp->icmp_gwaddr = dest;
123 1.1 cgd else
124 1.1 cgd icp->icmp_void = 0;
125 1.1 cgd if (type == ICMP_PARAMPROB) {
126 1.1 cgd icp->icmp_pptr = code;
127 1.1 cgd code = 0;
128 1.1 cgd }
129 1.1 cgd icp->icmp_code = code;
130 1.1 cgd bcopy((caddr_t)oip, (caddr_t)&icp->icmp_ip, icmplen);
131 1.1 cgd nip = &icp->icmp_ip;
132 1.1 cgd nip->ip_len = htons((u_short)(nip->ip_len + oiplen));
133 1.1 cgd
134 1.1 cgd /*
135 1.1 cgd * Now, copy old ip header (without options)
136 1.1 cgd * in front of icmp message.
137 1.1 cgd */
138 1.1 cgd if (m->m_data - sizeof(struct ip) < m->m_pktdat)
139 1.1 cgd panic("icmp len");
140 1.1 cgd m->m_data -= sizeof(struct ip);
141 1.1 cgd m->m_len += sizeof(struct ip);
142 1.1 cgd m->m_pkthdr.len = m->m_len;
143 1.1 cgd m->m_pkthdr.rcvif = n->m_pkthdr.rcvif;
144 1.1 cgd nip = mtod(m, struct ip *);
145 1.1 cgd bcopy((caddr_t)oip, (caddr_t)nip, oiplen);
146 1.1 cgd nip->ip_len = m->m_len;
147 1.1 cgd nip->ip_hl = sizeof(struct ip) >> 2;
148 1.1 cgd nip->ip_p = IPPROTO_ICMP;
149 1.1 cgd icmp_reflect(m);
150 1.1 cgd
151 1.1 cgd freeit:
152 1.1 cgd m_freem(n);
153 1.1 cgd }
154 1.1 cgd
155 1.1 cgd static struct sockproto icmproto = { AF_INET, IPPROTO_ICMP };
156 1.1 cgd static struct sockaddr_in icmpsrc = { sizeof (struct sockaddr_in), AF_INET };
157 1.1 cgd static struct sockaddr_in icmpdst = { sizeof (struct sockaddr_in), AF_INET };
158 1.1 cgd static struct sockaddr_in icmpgw = { sizeof (struct sockaddr_in), AF_INET };
159 1.1 cgd struct sockaddr_in icmpmask = { 8, 0 };
160 1.1 cgd struct in_ifaddr *ifptoia();
161 1.1 cgd
162 1.1 cgd /*
163 1.1 cgd * Process a received ICMP message.
164 1.1 cgd */
165 1.1 cgd icmp_input(m, hlen)
166 1.1 cgd register struct mbuf *m;
167 1.1 cgd int hlen;
168 1.1 cgd {
169 1.1 cgd register struct icmp *icp;
170 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
171 1.1 cgd int icmplen = ip->ip_len;
172 1.1 cgd register int i;
173 1.1 cgd struct in_ifaddr *ia;
174 1.1 cgd int (*ctlfunc)(), code;
175 1.1 cgd extern u_char ip_protox[];
176 1.1 cgd extern struct in_addr in_makeaddr();
177 1.1 cgd
178 1.1 cgd /*
179 1.1 cgd * Locate icmp structure in mbuf, and check
180 1.1 cgd * that not corrupted and of at least minimum length.
181 1.1 cgd */
182 1.1 cgd #ifdef ICMPPRINTFS
183 1.1 cgd if (icmpprintfs)
184 1.1 cgd printf("icmp_input from %x, len %d\n", ip->ip_src, icmplen);
185 1.1 cgd #endif
186 1.1 cgd if (icmplen < ICMP_MINLEN) {
187 1.1 cgd icmpstat.icps_tooshort++;
188 1.1 cgd goto freeit;
189 1.1 cgd }
190 1.1 cgd i = hlen + MIN(icmplen, ICMP_ADVLENMIN);
191 1.1 cgd if (m->m_len < i && (m = m_pullup(m, i)) == 0) {
192 1.1 cgd icmpstat.icps_tooshort++;
193 1.1 cgd return;
194 1.1 cgd }
195 1.1 cgd ip = mtod(m, struct ip *);
196 1.1 cgd m->m_len -= hlen;
197 1.1 cgd m->m_data += hlen;
198 1.1 cgd icp = mtod(m, struct icmp *);
199 1.1 cgd if (in_cksum(m, icmplen)) {
200 1.1 cgd icmpstat.icps_checksum++;
201 1.1 cgd goto freeit;
202 1.1 cgd }
203 1.1 cgd m->m_len += hlen;
204 1.1 cgd m->m_data -= hlen;
205 1.1 cgd
206 1.1 cgd #ifdef ICMPPRINTFS
207 1.1 cgd /*
208 1.1 cgd * Message type specific processing.
209 1.1 cgd */
210 1.1 cgd if (icmpprintfs)
211 1.1 cgd printf("icmp_input, type %d code %d\n", icp->icmp_type,
212 1.1 cgd icp->icmp_code);
213 1.1 cgd #endif
214 1.1 cgd if (icp->icmp_type > ICMP_MAXTYPE)
215 1.1 cgd goto raw;
216 1.1 cgd icmpstat.icps_inhist[icp->icmp_type]++;
217 1.1 cgd code = icp->icmp_code;
218 1.1 cgd switch (icp->icmp_type) {
219 1.1 cgd
220 1.1 cgd case ICMP_UNREACH:
221 1.1 cgd if (code > 5)
222 1.1 cgd goto badcode;
223 1.1 cgd code += PRC_UNREACH_NET;
224 1.1 cgd goto deliver;
225 1.1 cgd
226 1.1 cgd case ICMP_TIMXCEED:
227 1.1 cgd if (code > 1)
228 1.1 cgd goto badcode;
229 1.1 cgd code += PRC_TIMXCEED_INTRANS;
230 1.1 cgd goto deliver;
231 1.1 cgd
232 1.1 cgd case ICMP_PARAMPROB:
233 1.1 cgd if (code)
234 1.1 cgd goto badcode;
235 1.1 cgd code = PRC_PARAMPROB;
236 1.1 cgd goto deliver;
237 1.1 cgd
238 1.1 cgd case ICMP_SOURCEQUENCH:
239 1.1 cgd if (code)
240 1.1 cgd goto badcode;
241 1.1 cgd code = PRC_QUENCH;
242 1.1 cgd deliver:
243 1.1 cgd /*
244 1.1 cgd * Problem with datagram; advise higher level routines.
245 1.1 cgd */
246 1.1 cgd if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
247 1.1 cgd icp->icmp_ip.ip_hl < (sizeof(struct ip) >> 2)) {
248 1.1 cgd icmpstat.icps_badlen++;
249 1.1 cgd goto freeit;
250 1.1 cgd }
251 1.1 cgd NTOHS(icp->icmp_ip.ip_len);
252 1.1 cgd #ifdef ICMPPRINTFS
253 1.1 cgd if (icmpprintfs)
254 1.1 cgd printf("deliver to protocol %d\n", icp->icmp_ip.ip_p);
255 1.1 cgd #endif
256 1.1 cgd icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
257 1.1 cgd if (ctlfunc = inetsw[ip_protox[icp->icmp_ip.ip_p]].pr_ctlinput)
258 1.1 cgd (*ctlfunc)(code, (struct sockaddr *)&icmpsrc,
259 1.1 cgd (caddr_t) &icp->icmp_ip);
260 1.1 cgd break;
261 1.1 cgd
262 1.1 cgd badcode:
263 1.1 cgd icmpstat.icps_badcode++;
264 1.1 cgd break;
265 1.1 cgd
266 1.1 cgd case ICMP_ECHO:
267 1.1 cgd icp->icmp_type = ICMP_ECHOREPLY;
268 1.1 cgd goto reflect;
269 1.1 cgd
270 1.1 cgd case ICMP_TSTAMP:
271 1.1 cgd if (icmplen < ICMP_TSLEN) {
272 1.1 cgd icmpstat.icps_badlen++;
273 1.1 cgd break;
274 1.1 cgd }
275 1.1 cgd icp->icmp_type = ICMP_TSTAMPREPLY;
276 1.1 cgd icp->icmp_rtime = iptime();
277 1.1 cgd icp->icmp_ttime = icp->icmp_rtime; /* bogus, do later! */
278 1.1 cgd goto reflect;
279 1.1 cgd
280 1.1 cgd case ICMP_IREQ:
281 1.1 cgd #define satosin(sa) ((struct sockaddr_in *)(sa))
282 1.1 cgd if (in_netof(ip->ip_src) == 0 &&
283 1.1 cgd (ia = ifptoia(m->m_pkthdr.rcvif)))
284 1.1 cgd ip->ip_src = in_makeaddr(in_netof(IA_SIN(ia)->sin_addr),
285 1.1 cgd in_lnaof(ip->ip_src));
286 1.1 cgd icp->icmp_type = ICMP_IREQREPLY;
287 1.1 cgd goto reflect;
288 1.1 cgd
289 1.1 cgd case ICMP_MASKREQ:
290 1.1 cgd if (icmplen < ICMP_MASKLEN ||
291 1.1 cgd (ia = ifptoia(m->m_pkthdr.rcvif)) == 0)
292 1.1 cgd break;
293 1.1 cgd icp->icmp_type = ICMP_MASKREPLY;
294 1.1 cgd icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr;
295 1.1 cgd if (ip->ip_src.s_addr == 0) {
296 1.1 cgd if (ia->ia_ifp->if_flags & IFF_BROADCAST)
297 1.1 cgd ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr;
298 1.1 cgd else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT)
299 1.1 cgd ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr;
300 1.1 cgd }
301 1.1 cgd reflect:
302 1.1 cgd ip->ip_len += hlen; /* since ip_input deducts this */
303 1.1 cgd icmpstat.icps_reflect++;
304 1.1 cgd icmpstat.icps_outhist[icp->icmp_type]++;
305 1.1 cgd icmp_reflect(m);
306 1.1 cgd return;
307 1.1 cgd
308 1.1 cgd case ICMP_REDIRECT:
309 1.1 cgd if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp)) {
310 1.1 cgd icmpstat.icps_badlen++;
311 1.1 cgd break;
312 1.1 cgd }
313 1.1 cgd /*
314 1.1 cgd * Short circuit routing redirects to force
315 1.1 cgd * immediate change in the kernel's routing
316 1.1 cgd * tables. The message is also handed to anyone
317 1.1 cgd * listening on a raw socket (e.g. the routing
318 1.1 cgd * daemon for use in updating its tables).
319 1.1 cgd */
320 1.1 cgd icmpgw.sin_addr = ip->ip_src;
321 1.1 cgd icmpdst.sin_addr = icp->icmp_gwaddr;
322 1.1 cgd #ifdef ICMPPRINTFS
323 1.1 cgd if (icmpprintfs)
324 1.1 cgd printf("redirect dst %x to %x\n", icp->icmp_ip.ip_dst,
325 1.1 cgd icp->icmp_gwaddr);
326 1.1 cgd #endif
327 1.1 cgd if (code == ICMP_REDIRECT_NET || code == ICMP_REDIRECT_TOSNET) {
328 1.1 cgd u_long in_netof();
329 1.1 cgd icmpsrc.sin_addr =
330 1.1 cgd in_makeaddr(in_netof(icp->icmp_ip.ip_dst), INADDR_ANY);
331 1.1 cgd in_sockmaskof(icp->icmp_ip.ip_dst, &icmpmask);
332 1.1 cgd rtredirect((struct sockaddr *)&icmpsrc,
333 1.1 cgd (struct sockaddr *)&icmpdst,
334 1.1 cgd (struct sockaddr *)&icmpmask, RTF_GATEWAY,
335 1.1 cgd (struct sockaddr *)&icmpgw, (struct rtentry **)0);
336 1.1 cgd icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
337 1.1 cgd pfctlinput(PRC_REDIRECT_NET,
338 1.1 cgd (struct sockaddr *)&icmpsrc);
339 1.1 cgd } else {
340 1.1 cgd icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
341 1.1 cgd rtredirect((struct sockaddr *)&icmpsrc,
342 1.1 cgd (struct sockaddr *)&icmpdst,
343 1.1 cgd (struct sockaddr *)0, RTF_GATEWAY | RTF_HOST,
344 1.1 cgd (struct sockaddr *)&icmpgw, (struct rtentry **)0);
345 1.1 cgd pfctlinput(PRC_REDIRECT_HOST,
346 1.1 cgd (struct sockaddr *)&icmpsrc);
347 1.1 cgd }
348 1.1 cgd break;
349 1.1 cgd
350 1.1 cgd /*
351 1.1 cgd * No kernel processing for the following;
352 1.1 cgd * just fall through to send to raw listener.
353 1.1 cgd */
354 1.1 cgd case ICMP_ECHOREPLY:
355 1.1 cgd case ICMP_TSTAMPREPLY:
356 1.1 cgd case ICMP_IREQREPLY:
357 1.1 cgd case ICMP_MASKREPLY:
358 1.1 cgd default:
359 1.1 cgd break;
360 1.1 cgd }
361 1.1 cgd
362 1.1 cgd raw:
363 1.1 cgd icmpsrc.sin_addr = ip->ip_src;
364 1.1 cgd icmpdst.sin_addr = ip->ip_dst;
365 1.1 cgd (void) raw_input(m, &icmproto, (struct sockaddr *)&icmpsrc,
366 1.1 cgd (struct sockaddr *)&icmpdst);
367 1.1 cgd return;
368 1.1 cgd
369 1.1 cgd freeit:
370 1.1 cgd m_freem(m);
371 1.1 cgd }
372 1.1 cgd
373 1.1 cgd /*
374 1.1 cgd * Reflect the ip packet back to the source
375 1.1 cgd */
376 1.1 cgd icmp_reflect(m)
377 1.1 cgd struct mbuf *m;
378 1.1 cgd {
379 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
380 1.1 cgd register struct in_ifaddr *ia;
381 1.1 cgd struct in_addr t;
382 1.1 cgd struct mbuf *opts = 0, *ip_srcroute();
383 1.1 cgd int optlen = (ip->ip_hl << 2) - sizeof(struct ip);
384 1.1 cgd
385 1.1 cgd t = ip->ip_dst;
386 1.1 cgd ip->ip_dst = ip->ip_src;
387 1.1 cgd /*
388 1.1 cgd * If the incoming packet was addressed directly to us,
389 1.1 cgd * use dst as the src for the reply. Otherwise (broadcast
390 1.1 cgd * or anonymous), use the address which corresponds
391 1.1 cgd * to the incoming interface.
392 1.1 cgd */
393 1.1 cgd for (ia = in_ifaddr; ia; ia = ia->ia_next) {
394 1.1 cgd if (t.s_addr == IA_SIN(ia)->sin_addr.s_addr)
395 1.1 cgd break;
396 1.1 cgd if ((ia->ia_ifp->if_flags & IFF_BROADCAST) &&
397 1.1 cgd t.s_addr == satosin(&ia->ia_broadaddr)->sin_addr.s_addr)
398 1.1 cgd break;
399 1.1 cgd }
400 1.1 cgd if (ia == (struct in_ifaddr *)0)
401 1.1 cgd ia = ifptoia(m->m_pkthdr.rcvif);
402 1.1 cgd if (ia == (struct in_ifaddr *)0)
403 1.1 cgd ia = in_ifaddr;
404 1.1 cgd t = IA_SIN(ia)->sin_addr;
405 1.1 cgd ip->ip_src = t;
406 1.1 cgd ip->ip_ttl = MAXTTL;
407 1.1 cgd
408 1.1 cgd if (optlen > 0) {
409 1.1 cgd register u_char *cp;
410 1.1 cgd int opt, cnt;
411 1.1 cgd u_int len;
412 1.1 cgd
413 1.1 cgd /*
414 1.1 cgd * Retrieve any source routing from the incoming packet;
415 1.1 cgd * add on any record-route or timestamp options.
416 1.1 cgd */
417 1.1 cgd cp = (u_char *) (ip + 1);
418 1.1 cgd if ((opts = ip_srcroute()) == 0 &&
419 1.1 cgd (opts = m_gethdr(M_DONTWAIT, MT_HEADER))) {
420 1.1 cgd opts->m_len = sizeof(struct in_addr);
421 1.1 cgd mtod(opts, struct in_addr *)->s_addr = 0;
422 1.1 cgd }
423 1.1 cgd if (opts) {
424 1.1 cgd #ifdef ICMPPRINTFS
425 1.1 cgd if (icmpprintfs)
426 1.1 cgd printf("icmp_reflect optlen %d rt %d => ",
427 1.1 cgd optlen, opts->m_len);
428 1.1 cgd #endif
429 1.1 cgd for (cnt = optlen; cnt > 0; cnt -= len, cp += len) {
430 1.1 cgd opt = cp[IPOPT_OPTVAL];
431 1.1 cgd if (opt == IPOPT_EOL)
432 1.1 cgd break;
433 1.1 cgd if (opt == IPOPT_NOP)
434 1.1 cgd len = 1;
435 1.1 cgd else {
436 1.1 cgd len = cp[IPOPT_OLEN];
437 1.1 cgd if (len <= 0 || len > cnt)
438 1.1 cgd break;
439 1.1 cgd }
440 1.1 cgd /*
441 1.1 cgd * should check for overflow, but it "can't happen"
442 1.1 cgd */
443 1.1 cgd if (opt == IPOPT_RR || opt == IPOPT_TS) {
444 1.1 cgd bcopy((caddr_t)cp,
445 1.1 cgd mtod(opts, caddr_t) + opts->m_len, len);
446 1.1 cgd opts->m_len += len;
447 1.1 cgd }
448 1.1 cgd }
449 1.1 cgd if (opts->m_len % 4 != 0) {
450 1.1 cgd *(mtod(opts, caddr_t) + opts->m_len) = IPOPT_EOL;
451 1.1 cgd opts->m_len++;
452 1.1 cgd }
453 1.1 cgd #ifdef ICMPPRINTFS
454 1.1 cgd if (icmpprintfs)
455 1.1 cgd printf("%d\n", opts->m_len);
456 1.1 cgd #endif
457 1.1 cgd }
458 1.1 cgd /*
459 1.1 cgd * Now strip out original options by copying rest of first
460 1.1 cgd * mbuf's data back, and adjust the IP length.
461 1.1 cgd */
462 1.1 cgd ip->ip_len -= optlen;
463 1.1 cgd ip->ip_hl = sizeof(struct ip) >> 2;
464 1.1 cgd m->m_len -= optlen;
465 1.1 cgd if (m->m_flags & M_PKTHDR)
466 1.1 cgd m->m_pkthdr.len -= optlen;
467 1.1 cgd optlen += sizeof(struct ip);
468 1.1 cgd bcopy((caddr_t)ip + optlen, (caddr_t)(ip + 1),
469 1.1 cgd (unsigned)(m->m_len - sizeof(struct ip)));
470 1.1 cgd }
471 1.3 hpeyerl m->m_flags &= ~(M_BCAST|M_MCAST);
472 1.1 cgd icmp_send(m, opts);
473 1.1 cgd if (opts)
474 1.1 cgd (void)m_free(opts);
475 1.1 cgd }
476 1.1 cgd
477 1.1 cgd struct in_ifaddr *
478 1.1 cgd ifptoia(ifp)
479 1.1 cgd struct ifnet *ifp;
480 1.1 cgd {
481 1.1 cgd register struct in_ifaddr *ia;
482 1.1 cgd
483 1.1 cgd for (ia = in_ifaddr; ia; ia = ia->ia_next)
484 1.1 cgd if (ia->ia_ifp == ifp)
485 1.1 cgd return (ia);
486 1.1 cgd return ((struct in_ifaddr *)0);
487 1.1 cgd }
488 1.1 cgd
489 1.1 cgd /*
490 1.1 cgd * Send an icmp packet back to the ip level,
491 1.1 cgd * after supplying a checksum.
492 1.1 cgd */
493 1.1 cgd icmp_send(m, opts)
494 1.1 cgd register struct mbuf *m;
495 1.1 cgd struct mbuf *opts;
496 1.1 cgd {
497 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
498 1.1 cgd register int hlen;
499 1.1 cgd register struct icmp *icp;
500 1.1 cgd
501 1.1 cgd hlen = ip->ip_hl << 2;
502 1.1 cgd m->m_data += hlen;
503 1.1 cgd m->m_len -= hlen;
504 1.1 cgd icp = mtod(m, struct icmp *);
505 1.1 cgd icp->icmp_cksum = 0;
506 1.1 cgd icp->icmp_cksum = in_cksum(m, ip->ip_len - hlen);
507 1.1 cgd m->m_data -= hlen;
508 1.1 cgd m->m_len += hlen;
509 1.1 cgd #ifdef ICMPPRINTFS
510 1.1 cgd if (icmpprintfs)
511 1.1 cgd printf("icmp_send dst %x src %x\n", ip->ip_dst, ip->ip_src);
512 1.1 cgd #endif
513 1.1 cgd (void) ip_output(m, opts, (struct route *)0, 0);
514 1.1 cgd }
515 1.1 cgd
516 1.1 cgd n_time
517 1.1 cgd iptime()
518 1.1 cgd {
519 1.1 cgd struct timeval atv;
520 1.1 cgd u_long t;
521 1.1 cgd
522 1.1 cgd microtime(&atv);
523 1.1 cgd t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
524 1.1 cgd return (htonl(t));
525 1.1 cgd }
526