]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/net/bsd_tcpip/v2_0/src/sys/netinet/ip_icmp.c
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / net / bsd_tcpip / v2_0 / src / sys / netinet / ip_icmp.c
1 //==========================================================================
2 //
3 //      src/sys/netinet/ip_icmp.c
4 //
5 //==========================================================================
6 //####BSDCOPYRIGHTBEGIN####
7 //
8 // -------------------------------------------
9 //
10 // Portions of this software may have been derived from OpenBSD, 
11 // FreeBSD or other sources, and are covered by the appropriate
12 // copyright disclaimers included herein.
13 //
14 // Portions created by Red Hat are
15 // Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
16 //
17 // -------------------------------------------
18 //
19 //####BSDCOPYRIGHTEND####
20 //==========================================================================
21
22 /*
23  * Copyright (c) 1982, 1986, 1988, 1993
24  *      The Regents of the University of California.  All rights reserved.
25  *
26  * Redistribution and use in source and binary forms, with or without
27  * modification, are permitted provided that the following conditions
28  * are met:
29  * 1. Redistributions of source code must retain the above copyright
30  *    notice, this list of conditions and the following disclaimer.
31  * 2. Redistributions in binary form must reproduce the above copyright
32  *    notice, this list of conditions and the following disclaimer in the
33  *    documentation and/or other materials provided with the distribution.
34  * 3. All advertising materials mentioning features or use of this software
35  *    must display the following acknowledgement:
36  *      This product includes software developed by the University of
37  *      California, Berkeley and its contributors.
38  * 4. Neither the name of the University nor the names of its contributors
39  *    may be used to endorse or promote products derived from this software
40  *    without specific prior written permission.
41  *
42  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
43  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
46  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52  * SUCH DAMAGE.
53  *
54  *      @(#)ip_icmp.c   8.2 (Berkeley) 1/4/94
55  * $FreeBSD: src/sys/netinet/ip_icmp.c,v 1.39.2.9 2001/07/03 11:01:46 ume Exp $
56  */
57
58 #include <sys/param.h>
59 #include <sys/mbuf.h>
60 #include <sys/protosw.h>
61 #include <sys/socket.h>
62 #include <sys/sysctl.h>
63
64 #include <net/if.h>
65 #include <net/route.h>
66
67 #define _IP_VHL
68 #include <netinet/in.h>
69 #include <netinet/in_systm.h>
70 #include <netinet/in_var.h>
71 #include <netinet/ip.h>
72 #include <netinet/ip_icmp.h>
73 #include <netinet/ip_var.h>
74 #include <netinet/icmp_var.h>
75
76 #ifdef IPSEC
77 #include <netinet6/ipsec.h>
78 #include <netkey/key.h>
79 #endif
80
81 /*
82  * ICMP routines: error generation, receive packet processing, and
83  * routines to turnaround packets back to the originator, and
84  * host table maintenance routines.
85  */
86
87 struct  icmpstat icmpstat;
88 SYSCTL_STRUCT(_net_inet_icmp, ICMPCTL_STATS, stats, CTLFLAG_RD,
89         &icmpstat, icmpstat, "");
90
91 static int      icmpmaskrepl = 0;
92 SYSCTL_INT(_net_inet_icmp, ICMPCTL_MASKREPL, maskrepl, CTLFLAG_RW,
93         &icmpmaskrepl, 0, "");
94
95 static int      drop_redirect = 0;
96 SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_RW, 
97         &drop_redirect, 0, "");
98
99 static int      log_redirect = 0;
100 SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW, 
101         &log_redirect, 0, "");
102
103 #ifdef ICMP_BANDLIM 
104  
105 /*    
106  * ICMP error-response bandwidth limiting sysctl.  If not enabled, sysctl
107  *      variable content is -1 and read-only.
108  */     
109     
110 static int      icmplim = 200;
111 SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RW,
112         &icmplim, 0, "");
113 #else
114
115 #ifdef CYGPKG_NET_FREEBSD_SYSCTL
116 static int      icmplim = -1;
117 SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RD,
118         &icmplim, 0, "");
119 #endif  
120 #endif
121 /*
122  * ICMP broadcast echo sysctl
123  */
124
125 static int      icmpbmcastecho = 0;
126 SYSCTL_INT(_net_inet_icmp, OID_AUTO, bmcastecho, CTLFLAG_RW,
127         &icmpbmcastecho, 0, "");
128
129
130 #ifdef ICMPPRINTFS
131 int     icmpprintfs = 0;
132 #endif
133
134 static void     icmp_reflect __P((struct mbuf *));
135 static void     icmp_send __P((struct mbuf *, struct mbuf *));
136 static int      ip_next_mtu __P((int, int));
137
138 extern  struct protosw inetsw[];
139
140 /*
141  * Generate an error packet of type error
142  * in response to bad packet ip.
143  */
144 void
145 icmp_error(n, type, code, dest, destifp)
146         struct mbuf *n;
147         int type, code;
148         n_long dest;
149         struct ifnet *destifp;
150 {
151         register struct ip *oip = mtod(n, struct ip *), *nip;
152         register unsigned oiplen = IP_VHL_HL(oip->ip_vhl) << 2;
153         register struct icmp *icp;
154         register struct mbuf *m;
155         unsigned icmplen;
156
157 #ifdef ICMPPRINTFS
158         if (icmpprintfs)
159                 printf("icmp_error(%p, %x, %d)\n", oip, type, code);
160 #endif
161         if (type != ICMP_REDIRECT)
162                 icmpstat.icps_error++;
163         /*
164          * Don't send error if not the first fragment of message.
165          * Don't error if the old packet protocol was ICMP
166          * error message, only known informational types.
167          */
168         if (oip->ip_off &~ (IP_MF|IP_DF))
169                 goto freeit;
170         if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT &&
171           n->m_len >= oiplen + ICMP_MINLEN &&
172           !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip + oiplen))->icmp_type)) {
173                 icmpstat.icps_oldicmp++;
174                 goto freeit;
175         }
176         /* Don't send error in response to a multicast or broadcast packet */
177         if (n->m_flags & (M_BCAST|M_MCAST))
178                 goto freeit;
179         /*
180          * First, formulate icmp message
181          */
182         m = m_gethdr(M_DONTWAIT, MT_HEADER);
183         if (m == NULL)
184                 goto freeit;
185         icmplen = min(oiplen + 8, oip->ip_len);
186         if (icmplen < sizeof(struct ip)) {
187                 printf("icmp_error: bad length\n");
188                 m_free(m);
189                 goto freeit;
190         }
191         m->m_len = icmplen + ICMP_MINLEN;
192         MH_ALIGN(m, m->m_len);
193         icp = mtod(m, struct icmp *);
194         if ((u_int)type > ICMP_MAXTYPE)
195                 panic("icmp_error");
196         icmpstat.icps_outhist[type]++;
197         icp->icmp_type = type;
198         if (type == ICMP_REDIRECT)
199                 icp->icmp_gwaddr.s_addr = dest;
200         else {
201                 icp->icmp_void = 0;
202                 /*
203                  * The following assignments assume an overlay with the
204                  * zeroed icmp_void field.
205                  */
206                 if (type == ICMP_PARAMPROB) {
207                         icp->icmp_pptr = code;
208                         code = 0;
209                 } else if (type == ICMP_UNREACH &&
210                         code == ICMP_UNREACH_NEEDFRAG && destifp) {
211                         icp->icmp_nextmtu = htons(destifp->if_mtu);
212                 }
213         }
214
215         icp->icmp_code = code;
216         m_copydata(n, 0, icmplen, (caddr_t)&icp->icmp_ip);
217         nip = &icp->icmp_ip;
218
219         /*
220          * Convert fields to network representation.
221          */
222         HTONS(nip->ip_len);
223         HTONS(nip->ip_off);
224
225         /*
226          * Now, copy old ip header (without options)
227          * in front of icmp message.
228          */
229         if (m->m_data - sizeof(struct ip) < m->m_pktdat)
230                 panic("icmp len");
231         m->m_data -= sizeof(struct ip);
232         m->m_len += sizeof(struct ip);
233         m->m_pkthdr.len = m->m_len;
234         m->m_pkthdr.rcvif = n->m_pkthdr.rcvif;
235         nip = mtod(m, struct ip *);
236         bcopy((caddr_t)oip, (caddr_t)nip, sizeof(struct ip));
237         nip->ip_len = m->m_len;
238         nip->ip_vhl = IP_VHL_BORING;
239         nip->ip_p = IPPROTO_ICMP;
240         nip->ip_tos = 0;
241         icmp_reflect(m);
242
243 freeit:
244         m_freem(n);
245 }
246
247 static struct sockaddr_in icmpsrc = { sizeof (struct sockaddr_in), AF_INET };
248 static struct sockaddr_in icmpdst = { sizeof (struct sockaddr_in), AF_INET };
249 static struct sockaddr_in icmpgw = { sizeof (struct sockaddr_in), AF_INET };
250
251 /*
252  * Process a received ICMP message.
253  */
254 void
255 icmp_input(m, off)
256         register struct mbuf *m;
257         int off;
258 {
259         int hlen = off;
260         register struct icmp *icp;
261         register struct ip *ip = mtod(m, struct ip *);
262         int icmplen = ip->ip_len;
263         register int i;
264         struct in_ifaddr *ia;
265         void (*ctlfunc) __P((int, struct sockaddr *, void *));
266         int code;
267
268         /*
269          * Locate icmp structure in mbuf, and check
270          * that not corrupted and of at least minimum length.
271          */
272 #ifdef ICMPPRINTFS
273         if (icmpprintfs) {
274                 char buf[4 * sizeof "123"];
275                 strcpy(buf, inet_ntoa(ip->ip_src));
276                 printf("icmp_input from %s to %s, len %d\n",
277                        buf, inet_ntoa(ip->ip_dst), icmplen);
278         }
279 #endif
280         if (icmplen < ICMP_MINLEN) {
281                 icmpstat.icps_tooshort++;
282                 goto freeit;
283         }
284         i = hlen + min(icmplen, ICMP_ADVLENMIN);
285         if (m->m_len < i && (m = m_pullup(m, i)) == 0)  {
286                 icmpstat.icps_tooshort++;
287                 return;
288         }
289         ip = mtod(m, struct ip *);
290         m->m_len -= hlen;
291         m->m_data += hlen;
292         icp = mtod(m, struct icmp *);
293         if (in_cksum(m, icmplen)) {
294                 icmpstat.icps_checksum++;
295                 goto freeit;
296         }
297         m->m_len += hlen;
298         m->m_data -= hlen;
299
300 #if defined(NFAITH) && 0 < NFAITH
301         if (m->m_pkthdr.rcvif && m->m_pkthdr.rcvif->if_type == IFT_FAITH) {
302                 /*
303                  * Deliver very specific ICMP type only.
304                  */
305                 switch (icp->icmp_type) {
306                 case ICMP_UNREACH:
307                 case ICMP_TIMXCEED:
308                         break;
309                 default:
310                         goto freeit;
311                 }
312         }
313 #endif
314
315 #ifdef ICMPPRINTFS
316         if (icmpprintfs)
317                 printf("icmp_input, type %d code %d\n", icp->icmp_type,
318                     icp->icmp_code);
319 #endif
320
321         /*
322          * Message type specific processing.
323          */
324         if (icp->icmp_type > ICMP_MAXTYPE)
325                 goto raw;
326         icmpstat.icps_inhist[icp->icmp_type]++;
327         code = icp->icmp_code;
328         switch (icp->icmp_type) {
329
330         case ICMP_UNREACH:
331                 switch (code) {
332                         case ICMP_UNREACH_NET:
333                         case ICMP_UNREACH_HOST:
334                         case ICMP_UNREACH_SRCFAIL:
335                         case ICMP_UNREACH_NET_UNKNOWN:
336                         case ICMP_UNREACH_HOST_UNKNOWN:
337                         case ICMP_UNREACH_ISOLATED:
338                         case ICMP_UNREACH_TOSNET:
339                         case ICMP_UNREACH_TOSHOST:
340                         case ICMP_UNREACH_HOST_PRECEDENCE:
341                         case ICMP_UNREACH_PRECEDENCE_CUTOFF:
342                                 code = PRC_UNREACH_NET;
343                                 break;
344
345                         case ICMP_UNREACH_NEEDFRAG:
346                                 code = PRC_MSGSIZE;
347                                 break;
348
349                         /*
350                          * RFC 1122, Sections 3.2.2.1 and 4.2.3.9.
351                          * Treat subcodes 2,3 as immediate RST
352                          */
353                         case ICMP_UNREACH_PROTOCOL:
354                         case ICMP_UNREACH_PORT:
355                                 code = PRC_UNREACH_PORT;
356                                 break;
357
358                         case ICMP_UNREACH_NET_PROHIB:
359                         case ICMP_UNREACH_HOST_PROHIB:
360                         case ICMP_UNREACH_FILTER_PROHIB:
361                                 code = PRC_UNREACH_ADMIN_PROHIB;
362                                 break;
363
364                         default:
365                                 goto badcode;
366                 }
367                 goto deliver;
368
369         case ICMP_TIMXCEED:
370                 if (code > 1)
371                         goto badcode;
372                 code += PRC_TIMXCEED_INTRANS;
373                 goto deliver;
374
375         case ICMP_PARAMPROB:
376                 if (code > 1)
377                         goto badcode;
378                 code = PRC_PARAMPROB;
379                 goto deliver;
380
381         case ICMP_SOURCEQUENCH:
382                 if (code)
383                         goto badcode;
384                 code = PRC_QUENCH;
385         deliver:
386                 /*
387                  * Problem with datagram; advise higher level routines.
388                  */
389                 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
390                     IP_VHL_HL(icp->icmp_ip.ip_vhl) < (sizeof(struct ip) >> 2)) {
391                         icmpstat.icps_badlen++;
392                         goto freeit;
393                 }
394                 NTOHS(icp->icmp_ip.ip_len);
395                 /* Discard ICMP's in response to multicast packets */
396                 if (IN_MULTICAST(ntohl(icp->icmp_ip.ip_dst.s_addr)))
397                         goto badcode;
398 #ifdef ICMPPRINTFS
399                 if (icmpprintfs)
400                         printf("deliver to protocol %d\n", icp->icmp_ip.ip_p);
401 #endif
402                 icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
403 #if 1
404                 /*
405                  * MTU discovery:
406                  * If we got a needfrag and there is a host route to the
407                  * original destination, and the MTU is not locked, then
408                  * set the MTU in the route to the suggested new value
409                  * (if given) and then notify as usual.  The ULPs will
410                  * notice that the MTU has changed and adapt accordingly.
411                  * If no new MTU was suggested, then we guess a new one
412                  * less than the current value.  If the new MTU is 
413                  * unreasonably small (arbitrarily set at 296), then
414                  * we reset the MTU to the interface value and enable the
415                  * lock bit, indicating that we are no longer doing MTU
416                  * discovery.
417                  */
418                 if (code == PRC_MSGSIZE) {
419                         struct rtentry *rt;
420                         int mtu;
421
422                         rt = rtalloc1((struct sockaddr *)&icmpsrc, 0,
423                                       RTF_CLONING | RTF_PRCLONING);
424                         if (rt && (rt->rt_flags & RTF_HOST)
425                             && !(rt->rt_rmx.rmx_locks & RTV_MTU)) {
426                                 mtu = ntohs(icp->icmp_nextmtu);
427                                 if (!mtu)
428                                         mtu = ip_next_mtu(rt->rt_rmx.rmx_mtu,
429                                                           1);
430 #ifdef DEBUG_MTUDISC
431                                 printf("MTU for %s reduced to %d\n",
432                                         inet_ntoa(icmpsrc.sin_addr), mtu);
433 #endif
434                                 if (mtu < 296) {
435                                         /* rt->rt_rmx.rmx_mtu =
436                                                 rt->rt_ifp->if_mtu; */
437                                         rt->rt_rmx.rmx_locks |= RTV_MTU;
438                                 } else if (rt->rt_rmx.rmx_mtu > mtu) {
439                                         rt->rt_rmx.rmx_mtu = mtu;
440                                 }
441                         }
442                         if (rt)
443                                 RTFREE(rt);
444                 }
445
446 #endif
447                 /*
448                  * XXX if the packet contains [IPv4 AH TCP], we can't make a
449                  * notification to TCP layer.
450                  */
451                 ctlfunc = inetsw[ip_protox[icp->icmp_ip.ip_p]].pr_ctlinput;
452                 if (ctlfunc)
453                         (*ctlfunc)(code, (struct sockaddr *)&icmpsrc,
454                                    (void *)&icp->icmp_ip);
455                 break;
456
457         badcode:
458                 icmpstat.icps_badcode++;
459                 break;
460
461         case ICMP_ECHO:
462                 if (!icmpbmcastecho
463                     && (m->m_flags & (M_MCAST | M_BCAST)) != 0) {
464                         icmpstat.icps_bmcastecho++;
465                         break;
466                 }
467                 icp->icmp_type = ICMP_ECHOREPLY;
468 #ifdef ICMP_BANDLIM
469                 if (badport_bandlim(BANDLIM_ICMP_ECHO) < 0)
470                         goto freeit;
471                 else
472 #endif
473                         goto reflect;
474
475         case ICMP_TSTAMP:
476                 if (!icmpbmcastecho
477                     && (m->m_flags & (M_MCAST | M_BCAST)) != 0) {
478                         icmpstat.icps_bmcasttstamp++;
479                         break;
480                 }
481                 if (icmplen < ICMP_TSLEN) {
482                         icmpstat.icps_badlen++;
483                         break;
484                 }
485                 icp->icmp_type = ICMP_TSTAMPREPLY;
486                 icp->icmp_rtime = iptime();
487                 icp->icmp_ttime = icp->icmp_rtime;      /* bogus, do later! */
488 #ifdef ICMP_BANDLIM
489                 if (badport_bandlim(BANDLIM_ICMP_TSTAMP) < 0)
490                         goto freeit;
491                 else
492 #endif
493                         goto reflect;
494
495         case ICMP_MASKREQ:
496 #define satosin(sa)     ((struct sockaddr_in *)(sa))
497                 if (icmpmaskrepl == 0)
498                         break;
499                 /*
500                  * We are not able to respond with all ones broadcast
501                  * unless we receive it over a point-to-point interface.
502                  */
503                 if (icmplen < ICMP_MASKLEN)
504                         break;
505                 switch (ip->ip_dst.s_addr) {
506
507                 case INADDR_BROADCAST:
508                 case INADDR_ANY:
509                         icmpdst.sin_addr = ip->ip_src;
510                         break;
511
512                 default:
513                         icmpdst.sin_addr = ip->ip_dst;
514                 }
515                 ia = (struct in_ifaddr *)ifaof_ifpforaddr(
516                             (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif);
517                 if (ia == 0)
518                         break;
519                 if (ia->ia_ifp == 0)
520                         break;
521                 icp->icmp_type = ICMP_MASKREPLY;
522                 icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr;
523                 if (ip->ip_src.s_addr == 0) {
524                         if (ia->ia_ifp->if_flags & IFF_BROADCAST)
525                             ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr;
526                         else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT)
527                             ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr;
528                 }
529 reflect:
530                 ip->ip_len += hlen;     /* since ip_input deducts this */
531                 icmpstat.icps_reflect++;
532                 icmpstat.icps_outhist[icp->icmp_type]++;
533                 icmp_reflect(m);
534                 return;
535
536         case ICMP_REDIRECT:
537                 if (log_redirect) {
538                         u_long src, dst, gw;
539
540                         src = ntohl(ip->ip_src.s_addr);
541                         dst = ntohl(icp->icmp_ip.ip_dst.s_addr);
542                         gw = ntohl(icp->icmp_gwaddr.s_addr);
543                         printf("icmp redirect from %d.%d.%d.%d: "
544                                "%d.%d.%d.%d => %d.%d.%d.%d\n",
545                                (int)(src >> 24), (int)((src >> 16) & 0xff),
546                                (int)((src >> 8) & 0xff), (int)(src & 0xff),
547                                (int)(dst >> 24), (int)((dst >> 16) & 0xff),
548                                (int)((dst >> 8) & 0xff), (int)(dst & 0xff),
549                                (int)(gw >> 24), (int)((gw >> 16) & 0xff),
550                                (int)((gw >> 8) & 0xff), (int)(gw & 0xff));
551                 }
552                 if (drop_redirect)
553                         break;
554                 if (code > 3)
555                         goto badcode;
556                 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
557                     IP_VHL_HL(icp->icmp_ip.ip_vhl) < (sizeof(struct ip) >> 2)) {
558                         icmpstat.icps_badlen++;
559                         break;
560                 }
561                 /*
562                  * Short circuit routing redirects to force
563                  * immediate change in the kernel's routing
564                  * tables.  The message is also handed to anyone
565                  * listening on a raw socket (e.g. the routing
566                  * daemon for use in updating its tables).
567                  */
568                 icmpgw.sin_addr = ip->ip_src;
569                 icmpdst.sin_addr = icp->icmp_gwaddr;
570 #ifdef  ICMPPRINTFS
571                 if (icmpprintfs) {
572                         char buf[4 * sizeof "123"];
573                         strcpy(buf, inet_ntoa(icp->icmp_ip.ip_dst));
574
575                         printf("redirect dst %s to %s\n",
576                                buf, inet_ntoa(icp->icmp_gwaddr));
577                 }
578 #endif
579                 icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
580                 rtredirect((struct sockaddr *)&icmpsrc,
581                   (struct sockaddr *)&icmpdst,
582                   (struct sockaddr *)0, RTF_GATEWAY | RTF_HOST,
583                   (struct sockaddr *)&icmpgw, (struct rtentry **)0);
584                 pfctlinput(PRC_REDIRECT_HOST, (struct sockaddr *)&icmpsrc);
585 #ifdef IPSEC
586                 key_sa_routechange((struct sockaddr *)&icmpsrc);
587 #endif
588                 break;
589
590         /*
591          * No kernel processing for the following;
592          * just fall through to send to raw listener.
593          */
594         case ICMP_ECHOREPLY:
595         case ICMP_ROUTERADVERT:
596         case ICMP_ROUTERSOLICIT:
597         case ICMP_TSTAMPREPLY:
598         case ICMP_IREQREPLY:
599         case ICMP_MASKREPLY:
600         default:
601                 break;
602         }
603
604 raw:
605         rip_input(m, off);
606         return;
607
608 freeit:
609         m_freem(m);
610 }
611
612 /*
613  * Reflect the ip packet back to the source
614  */
615 static void
616 icmp_reflect(m)
617         struct mbuf *m;
618 {
619         register struct ip *ip = mtod(m, struct ip *);
620         register struct in_ifaddr *ia;
621         struct in_addr t;
622         struct mbuf *opts = 0;
623         int optlen = (IP_VHL_HL(ip->ip_vhl) << 2) - sizeof(struct ip);
624
625         if (!in_canforward(ip->ip_src) &&
626             ((ntohl(ip->ip_src.s_addr) & IN_CLASSA_NET) !=
627              (IN_LOOPBACKNET << IN_CLASSA_NSHIFT))) {
628                 m_freem(m);     /* Bad return address */
629                 goto done;      /* Ip_output() will check for broadcast */
630         }
631         t = ip->ip_dst;
632         ip->ip_dst = ip->ip_src;
633         /*
634          * If the incoming packet was addressed directly to us,
635          * use dst as the src for the reply.  Otherwise (broadcast
636          * or anonymous), use the address which corresponds
637          * to the incoming interface.
638          */
639         for (ia = in_ifaddrhead.tqh_first; ia; ia = ia->ia_link.tqe_next) {
640                 if (t.s_addr == IA_SIN(ia)->sin_addr.s_addr)
641                         break;
642                 if (ia->ia_ifp && (ia->ia_ifp->if_flags & IFF_BROADCAST) &&
643                     t.s_addr == satosin(&ia->ia_broadaddr)->sin_addr.s_addr)
644                         break;
645         }
646         icmpdst.sin_addr = t;
647         if ((ia == (struct in_ifaddr *)0) && m->m_pkthdr.rcvif)
648                 ia = (struct in_ifaddr *)ifaof_ifpforaddr(
649                         (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif);
650         /*
651          * The following happens if the packet was not addressed to us,
652          * and was received on an interface with no IP address.
653          */
654         if (ia == (struct in_ifaddr *)0)
655                 ia = in_ifaddrhead.tqh_first;
656         t = IA_SIN(ia)->sin_addr;
657         ip->ip_src = t;
658         ip->ip_ttl = ip_defttl;
659
660         if (optlen > 0) {
661                 register u_char *cp;
662                 int opt, cnt;
663                 u_int len;
664
665                 /*
666                  * Retrieve any source routing from the incoming packet;
667                  * add on any record-route or timestamp options.
668                  */
669                 cp = (u_char *) (ip + 1);
670                 if ((opts = ip_srcroute()) == 0 &&
671                     (opts = m_gethdr(M_DONTWAIT, MT_HEADER))) {
672                         opts->m_len = sizeof(struct in_addr);
673                         mtod(opts, struct in_addr *)->s_addr = 0;
674                 }
675                 if (opts) {
676 #ifdef ICMPPRINTFS
677                     if (icmpprintfs)
678                             printf("icmp_reflect optlen %d rt %d => ",
679                                 optlen, opts->m_len);
680 #endif
681                     for (cnt = optlen; cnt > 0; cnt -= len, cp += len) {
682                             opt = cp[IPOPT_OPTVAL];
683                             if (opt == IPOPT_EOL)
684                                     break;
685                             if (opt == IPOPT_NOP)
686                                     len = 1;
687                             else {
688                                     if (cnt < IPOPT_OLEN + sizeof(*cp))
689                                             break;
690                                     len = cp[IPOPT_OLEN];
691                                     if (len < IPOPT_OLEN + sizeof(*cp) ||
692                                         len > cnt)
693                                             break;
694                             }
695                             /*
696                              * Should check for overflow, but it "can't happen"
697                              */
698                             if (opt == IPOPT_RR || opt == IPOPT_TS ||
699                                 opt == IPOPT_SECURITY) {
700                                     bcopy((caddr_t)cp,
701                                         mtod(opts, caddr_t) + opts->m_len, len);
702                                     opts->m_len += len;
703                             }
704                     }
705                     /* Terminate & pad, if necessary */
706                     cnt = opts->m_len % 4;
707                     if (cnt) {
708                             for (; cnt < 4; cnt++) {
709                                     *(mtod(opts, caddr_t) + opts->m_len) =
710                                         IPOPT_EOL;
711                                     opts->m_len++;
712                             }
713                     }
714 #ifdef ICMPPRINTFS
715                     if (icmpprintfs)
716                             printf("%d\n", opts->m_len);
717 #endif
718                 }
719                 /*
720                  * Now strip out original options by copying rest of first
721                  * mbuf's data back, and adjust the IP length.
722                  */
723                 ip->ip_len -= optlen;
724                 ip->ip_vhl = IP_VHL_BORING;
725                 m->m_len -= optlen;
726                 if (m->m_flags & M_PKTHDR)
727                         m->m_pkthdr.len -= optlen;
728                 optlen += sizeof(struct ip);
729                 bcopy((caddr_t)ip + optlen, (caddr_t)(ip + 1),
730                          (unsigned)(m->m_len - sizeof(struct ip)));
731         }
732         m->m_flags &= ~(M_BCAST|M_MCAST);
733         icmp_send(m, opts);
734 done:
735         if (opts)
736                 (void)m_free(opts);
737 }
738
739 /*
740  * Send an icmp packet back to the ip level,
741  * after supplying a checksum.
742  */
743 static void
744 icmp_send(m, opts)
745         register struct mbuf *m;
746         struct mbuf *opts;
747 {
748         register struct ip *ip = mtod(m, struct ip *);
749         register int hlen;
750         register struct icmp *icp;
751         struct route ro;
752
753         hlen = IP_VHL_HL(ip->ip_vhl) << 2;
754         m->m_data += hlen;
755         m->m_len -= hlen;
756         icp = mtod(m, struct icmp *);
757         icp->icmp_cksum = 0;
758         icp->icmp_cksum = in_cksum(m, ip->ip_len - hlen);
759         m->m_data -= hlen;
760         m->m_len += hlen;
761         m->m_pkthdr.rcvif = (struct ifnet *)0;
762 #ifdef ICMPPRINTFS
763         if (icmpprintfs) {
764                 char buf[4 * sizeof "123"];
765                 strcpy(buf, inet_ntoa(ip->ip_dst));
766                 printf("icmp_send dst %s src %s\n",
767                        buf, inet_ntoa(ip->ip_src));
768         }
769 #endif
770         bzero(&ro, sizeof ro);
771         (void) ip_output(m, opts, &ro, 0, NULL);
772         if (ro.ro_rt)
773                 RTFREE(ro.ro_rt);
774 }
775
776 n_time
777 iptime()
778 {
779         struct timeval atv;
780         u_long t;
781
782         microtime(&atv);
783         t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
784         return (htonl(t));
785 }
786
787 #if 1
788 /*
789  * Return the next larger or smaller MTU plateau (table from RFC 1191)
790  * given current value MTU.  If DIR is less than zero, a larger plateau
791  * is returned; otherwise, a smaller value is returned.
792  */
793 static int
794 ip_next_mtu(mtu, dir)
795         int mtu;
796         int dir;
797 {
798         static int mtutab[] = {
799                 65535, 32000, 17914, 8166, 4352, 2002, 1492, 1006, 508, 296,
800                 68, 0
801         };
802         int i;
803
804         for (i = 0; i < (sizeof mtutab) / (sizeof mtutab[0]); i++) {
805                 if (mtu >= mtutab[i])
806                         break;
807         }
808
809         if (dir < 0) {
810                 if (i == 0) {
811                         return 0;
812                 } else {
813                         return mtutab[i - 1];
814                 }
815         } else {
816                 if (mtutab[i] == 0) {
817                         return 0;
818                 } else if(mtu > mtutab[i]) {
819                         return mtutab[i];
820                 } else {
821                         return mtutab[i + 1];
822                 }
823         }
824 }
825 #endif
826
827 #ifdef ICMP_BANDLIM
828
829 /*
830  * badport_bandlim() - check for ICMP bandwidth limit
831  *
832  *      Return 0 if it is ok to send an ICMP error response, -1 if we have
833  *      hit our bandwidth limit and it is not ok.  
834  *
835  *      If icmplim is <= 0, the feature is disabled and 0 is returned.
836  *
837  *      For now we separate the TCP and UDP subsystems w/ different 'which'
838  *      values.  We may eventually remove this separation (and simplify the
839  *      code further).
840  *
841  *      Note that the printing of the error message is delayed so we can
842  *      properly print the icmp error rate that the system was trying to do
843  *      (i.e. 22000/100 pps, etc...).  This can cause long delays in printing
844  *      the 'final' error, but it doesn't make sense to solve the printing 
845  *      delay with more complex code.
846  */
847
848 int
849 badport_bandlim(int which)
850 {
851         static int lticks[BANDLIM_MAX + 1];
852         static int lpackets[BANDLIM_MAX + 1];
853         int dticks;
854         const char *bandlimittype[] = {
855                 "Limiting icmp unreach response",
856                 "Limiting icmp ping response",
857                 "Limiting icmp tstamp response",
858                 "Limiting closed port RST response",
859                 "Limiting open port RST response"
860                 };
861
862         /*
863          * Return ok status if feature disabled or argument out of
864          * ranage.
865          */
866
867         if (icmplim <= 0 || which > BANDLIM_MAX || which < 0)
868                 return(0);
869         dticks = ticks - lticks[which];
870
871         /*
872          * reset stats when cumulative dt exceeds one second.
873          */
874
875         if ((unsigned int)dticks > hz) {
876                 if (lpackets[which] > icmplim) {
877                         printf("%s from %d to %d packets per second\n",
878                                 bandlimittype[which],
879                                 lpackets[which],
880                                 icmplim
881                         );
882                 }
883                 lticks[which] = ticks;
884                 lpackets[which] = 0;
885         }
886
887         /*
888          * bump packet count
889          */
890
891         if (++lpackets[which] > icmplim) {
892                 return(-1);
893         }
894         return(0);
895 }
896
897 #endif
898
899