Remove faith(4) and faithd(8) from the tree.
[dragonfly.git] / sys / netinet / 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  * $FreeBSD: src/sys/netinet/ip_icmp.c,v 1.39.2.19 2003/01/24 05:11:34 sam Exp $
31  */
32
33 #include "opt_ipsec.h"
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/mbuf.h>
38 #include <sys/protosw.h>
39 #include <sys/socket.h>
40 #include <sys/socketops.h>
41 #include <sys/time.h>
42 #include <sys/kernel.h>
43 #include <sys/sysctl.h>
44 #include <sys/in_cksum.h>
45
46 #include <machine/stdarg.h>
47
48 #include <net/if.h>
49 #include <net/if_types.h>
50 #include <net/netisr2.h>
51 #include <net/netmsg2.h>
52 #include <net/route.h>
53
54 #define _IP_VHL
55 #include <netinet/in.h>
56 #include <netinet/in_systm.h>
57 #include <netinet/in_var.h>
58 #include <netinet/ip.h>
59 #include <netinet/ip_icmp.h>
60 #include <netinet/ip_var.h>
61 #include <netinet/icmp_var.h>
62
63 #ifdef IPSEC
64 #include <netinet6/ipsec.h>
65 #include <netproto/key/key.h>
66 #endif
67
68 #ifdef FAST_IPSEC
69 #include <netproto/ipsec/ipsec.h>
70 #include <netproto/ipsec/key.h>
71 #define IPSEC
72 #endif
73
74 /*
75  * ICMP routines: error generation, receive packet processing, and
76  * routines to turnaround packets back to the originator, and
77  * host table maintenance routines.
78  */
79
80 struct icmpstat icmpstat;
81 SYSCTL_STRUCT(_net_inet_icmp, ICMPCTL_STATS, stats, CTLFLAG_RW,
82         &icmpstat, icmpstat, "ICMP statistics");
83
84 static int      icmpmaskrepl = 0;
85 SYSCTL_INT(_net_inet_icmp, ICMPCTL_MASKREPL, maskrepl, CTLFLAG_RW,
86         &icmpmaskrepl, 0, "Allow replies to netmask requests");
87
88 static int      drop_redirect = 0;
89 SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_RW,
90         &drop_redirect, 0, "Ignore ICMP redirects");
91
92 static int      log_redirect = 0;
93 SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW,
94         &log_redirect, 0, "Enable output about ICMP redirects");
95
96 static int      discard_sourcequench = 1;
97 SYSCTL_INT(_net_inet_icmp, OID_AUTO, discard_sourcequench, CTLFLAG_RW,
98         &discard_sourcequench, 0, "Discard ICMP Source Quench");
99
100 #ifdef ICMP_BANDLIM
101
102 /*
103  * ICMP error-response bandwidth limiting sysctl.  If not enabled, sysctl
104  *      variable content is -1 and read-only.
105  */
106
107 static int      icmplim = 200;
108 SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RW,
109         &icmplim, 0, "ICMP bandwidth limit");
110 #else
111
112 static int      icmplim = -1;
113 SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RD,
114         &icmplim, 0, "ICMP bandwidth limit");
115         
116 #endif
117
118 static int      icmplim_output = 0;
119 SYSCTL_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_RW,
120         &icmplim_output, 0, "Enable output about ICMP bandwidth limits");
121
122 /*
123  * ICMP broadcast echo sysctl
124  */
125
126 static int      icmpbmcastecho = 0;
127 SYSCTL_INT(_net_inet_icmp, OID_AUTO, bmcastecho, CTLFLAG_RW,
128     &icmpbmcastecho, 0, "");
129
130 static char     icmp_reply_src[IFNAMSIZ];
131 SYSCTL_STRING(_net_inet_icmp, OID_AUTO, reply_src, CTLFLAG_RW,
132         icmp_reply_src, IFNAMSIZ, "icmp reply source for non-local packets.");
133
134 static int      icmp_rfi;
135 SYSCTL_INT(_net_inet_icmp, OID_AUTO, reply_from_interface, CTLFLAG_RW,
136         &icmp_rfi, 0, "ICMP reply from incoming interface for "
137         "non-local packets");
138
139 #ifdef ICMPPRINTFS
140 static int      icmpprintfs = 0;
141 SYSCTL_INT(_net_inet_icmp, OID_AUTO, debug_prints, CTLFLAG_RW,
142         &icmpprintfs, 0, "extra ICMP debug prints");
143 #endif
144
145 static void     icmp_reflect (struct mbuf *);
146 static void     icmp_send (struct mbuf *, struct mbuf *, struct route *);
147
148 extern  struct protosw inetsw[];
149
150 /*
151  * Generate an error packet of type error
152  * in response to bad packet ip.
153  */
154 void
155 icmp_error(struct mbuf *n, int type, int code, n_long dest, int destmtu)
156 {
157         struct ip *oip = mtod(n, struct ip *), *nip;
158         unsigned oiplen = IP_VHL_HL(oip->ip_vhl) << 2;
159         struct icmp *icp;
160         struct mbuf *m;
161         unsigned icmplen;
162
163 #ifdef ICMPPRINTFS
164         if (icmpprintfs)
165                 kprintf("icmp_error(%p, %d, %d)\n", oip, type, code);
166 #endif
167         if (type != ICMP_REDIRECT)
168                 icmpstat.icps_error++;
169         /*
170          * Don't send error if the original packet was encrypted.
171          * Don't send error if not the first fragment of message.
172          * Don't error if the old packet protocol was ICMP
173          * error message, only known informational types.
174          */
175         if (n->m_flags & M_DECRYPTED)
176                 goto freeit;
177         if (oip->ip_off &~ (IP_MF|IP_DF))
178                 goto freeit;
179         if (oip->ip_p == IPPROTO_ICMP && type != ICMP_REDIRECT &&
180           n->m_len >= oiplen + ICMP_MINLEN &&
181           !ICMP_INFOTYPE(((struct icmp *)((caddr_t)oip + oiplen))->icmp_type)) {
182                 icmpstat.icps_oldicmp++;
183                 goto freeit;
184         }
185         /* Don't send error in response to a multicast or broadcast packet */
186         if (n->m_flags & (M_BCAST|M_MCAST))
187                 goto freeit;
188         /*
189          * First, formulate icmp message
190          */
191         m = m_gethdr(M_NOWAIT, MT_HEADER);
192         if (m == NULL)
193                 goto freeit;
194         icmplen = min(oiplen + 8, oip->ip_len);
195         if (icmplen < sizeof(struct ip))
196                 panic("icmp_error: bad length");
197         m->m_len = icmplen + ICMP_MINLEN;
198         MH_ALIGN(m, m->m_len);
199         icp = mtod(m, struct icmp *);
200         if ((u_int)type > ICMP_MAXTYPE)
201                 panic("icmp_error");
202         icmpstat.icps_outhist[type]++;
203         icp->icmp_type = type;
204         if (type == ICMP_REDIRECT)
205                 icp->icmp_gwaddr.s_addr = dest;
206         else {
207                 icp->icmp_void = 0;
208                 /*
209                  * The following assignments assume an overlay with the
210                  * zeroed icmp_void field.
211                  */
212                 if (type == ICMP_PARAMPROB) {
213                         icp->icmp_pptr = code;
214                         code = 0;
215                 } else if (type == ICMP_UNREACH &&
216                         code == ICMP_UNREACH_NEEDFRAG && destmtu) {
217                         icp->icmp_nextmtu = htons(destmtu);
218                 }
219         }
220
221         icp->icmp_code = code;
222         m_copydata(n, 0, icmplen, (caddr_t)&icp->icmp_ip);
223         nip = &icp->icmp_ip;
224
225         /*
226          * Convert fields to network representation.
227          */
228         nip->ip_len = htons(nip->ip_len);
229         nip->ip_off = htons(nip->ip_off);
230
231         /*
232          * Now, copy old ip header (without options)
233          * in front of icmp message.
234          */
235         if (m->m_data - sizeof(struct ip) < m->m_pktdat)
236                 panic("icmp len");
237         m->m_data -= sizeof(struct ip);
238         m->m_len += sizeof(struct ip);
239         m->m_pkthdr.len = m->m_len;
240         m->m_pkthdr.rcvif = n->m_pkthdr.rcvif;
241         nip = mtod(m, struct ip *);
242         bcopy(oip, nip, sizeof(struct ip));
243         nip->ip_len = m->m_len;
244         nip->ip_vhl = IP_VHL_BORING;
245         nip->ip_p = IPPROTO_ICMP;
246         nip->ip_tos = 0;
247         m->m_pkthdr.fw_flags |= n->m_pkthdr.fw_flags & FW_MBUF_GENERATED;
248         icmp_reflect(m);
249
250 freeit:
251         m_freem(n);
252 }
253
254 static void
255 icmp_ctlinput_done_handler(netmsg_t nmsg)
256 {
257         struct netmsg_ctlinput *msg = (struct netmsg_ctlinput *)nmsg;
258         struct mbuf *m = msg->m;
259         int hlen = msg->hlen;
260
261         rip_input(&m, &hlen, msg->proto);
262 }
263
264 static void
265 icmp_ctlinput_done(struct mbuf *m)
266 {
267         struct netmsg_ctlinput *msg = &m->m_hdr.mh_ctlmsg;
268
269         netmsg_init(&msg->base, NULL, &netisr_apanic_rport, 0,
270             icmp_ctlinput_done_handler);
271         lwkt_sendmsg(netisr_cpuport(0), &msg->base.lmsg);
272 }
273
274 static void
275 icmp_mtudisc(struct mbuf *m, int hlen)
276 {
277         struct sockaddr_in icmpsrc = { sizeof(struct sockaddr_in), AF_INET };
278         struct rtentry *rt;
279         struct icmp *icp;
280
281         KASSERT(curthread->td_type == TD_TYPE_NETISR, ("not in netisr"));
282
283         icp = mtodoff(m, struct icmp *, hlen);
284         icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
285
286         /*
287          * MTU discovery:
288          * If we got a needfrag and there is a host route to the original
289          * destination, and the MTU is not locked, then set the MTU in the
290          * route to the suggested new value (if given) and then notify as
291          * usual.  The ULPs will notice that the MTU has changed and adapt
292          * accordingly.  If no new MTU was suggested, then we guess a new
293          * one less than the current value.  If the new MTU is unreasonably
294          * small (arbitrarily set at 296), then we reset the MTU to the
295          * interface value and enable the lock bit, indicating that we are
296          * no longer doing MTU discovery.
297          */
298         rt = rtpurelookup((struct sockaddr *)&icmpsrc);
299         if (rt != NULL && (rt->rt_flags & RTF_HOST) &&
300             !(rt->rt_rmx.rmx_locks & RTV_MTU)) {
301 #ifdef DEBUG_MTUDISC
302                 char src_buf[INET_ADDRSTRLEN];
303 #endif
304                 int mtu;
305
306                 mtu = ntohs(icp->icmp_nextmtu);
307                 if (!mtu)
308                         mtu = ip_next_mtu(rt->rt_rmx.rmx_mtu, 1);
309 #ifdef DEBUG_MTUDISC
310                 kprintf("MTU for %s reduced to %d\n",
311                     inet_ntop(AF_INET, &icmpsrc.sin_addr,
312                         src_buf, INET_ADDRSTRLEN), mtu);
313 #endif
314                 if (mtu < 296) {
315                         /* rt->rt_rmx.rmx_mtu = rt->rt_ifp->if_mtu; */
316                         rt->rt_rmx.rmx_locks |= RTV_MTU;
317                 } else if (rt->rt_rmx.rmx_mtu > mtu) {
318                         rt->rt_rmx.rmx_mtu = mtu;
319                 }
320         }
321         if (rt != NULL)
322                 --rt->rt_refcnt;
323
324         /*
325          * XXX if the packet contains [IPv4 AH TCP], we can't make a
326          * notification to TCP layer.
327          */
328         so_pr_ctlinput_direct(&inetsw[ip_protox[icp->icmp_ip.ip_p]],
329             PRC_MSGSIZE, (struct sockaddr *)&icmpsrc, &icp->icmp_ip);
330 }
331
332 static void
333 icmp_mtudisc_handler(netmsg_t nmsg)
334 {
335         struct netmsg_ctlinput *msg = (struct netmsg_ctlinput *)nmsg;
336         int nextcpu;
337
338         ASSERT_NETISR_NCPUS(mycpuid);
339
340         icmp_mtudisc(msg->m, msg->hlen);
341
342         nextcpu = mycpuid + 1;
343         if (nextcpu < netisr_ncpus)
344                 lwkt_forwardmsg(netisr_cpuport(nextcpu), &msg->base.lmsg);
345         else
346                 icmp_ctlinput_done(msg->m);
347 }
348
349 static boolean_t
350 icmp_mtudisc_start(struct mbuf *m, int hlen, int proto)
351 {
352         struct netmsg_ctlinput *msg;
353
354         ASSERT_NETISR0;
355
356         icmp_mtudisc(m, hlen);
357
358         if (netisr_ncpus == 1) {
359                 /* There is only one netisr; done */
360                 return FALSE;
361         }
362
363         msg = &m->m_hdr.mh_ctlmsg;
364         netmsg_init(&msg->base, NULL, &netisr_apanic_rport, 0,
365             icmp_mtudisc_handler);
366         msg->m = m;
367         msg->cmd = PRC_MSGSIZE;
368         msg->hlen = hlen;
369         msg->proto = proto;
370
371         lwkt_sendmsg(netisr_cpuport(1), &msg->base.lmsg);
372         return TRUE;
373 }
374
375 static void
376 icmp_ctlinput(struct mbuf *m, int cmd, int hlen)
377 {
378         struct sockaddr_in icmpsrc = { sizeof(struct sockaddr_in), AF_INET };
379         struct icmp *icp;
380
381         KASSERT(curthread->td_type == TD_TYPE_NETISR, ("not in netisr"));
382
383         icp = mtodoff(m, struct icmp *, hlen);
384         icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
385
386         /*
387          * XXX if the packet contains [IPv4 AH TCP], we can't make a
388          * notification to TCP layer.
389          */
390         so_pr_ctlinput_direct(&inetsw[ip_protox[icp->icmp_ip.ip_p]],
391             cmd, (struct sockaddr *)&icmpsrc, &icp->icmp_ip);
392 }
393
394 static void
395 icmp_ctlinput_handler(netmsg_t nmsg)
396 {
397         struct netmsg_ctlinput *msg = (struct netmsg_ctlinput *)nmsg;
398
399         ASSERT_NETISR_NCPUS(mycpuid);
400
401         icmp_ctlinput(msg->m, msg->cmd, msg->hlen);
402         icmp_ctlinput_done(msg->m);
403 }
404
405 static void
406 icmp_ctlinput_start(struct mbuf *m, struct lwkt_port *port,
407     int cmd, int hlen, int proto)
408 {
409         struct netmsg_ctlinput *msg;
410
411         KASSERT(&curthread->td_msgport != port,
412             ("send icmp ctlinput to the current netisr"));
413
414         msg = &m->m_hdr.mh_ctlmsg;
415         netmsg_init(&msg->base, NULL, &netisr_apanic_rport, 0,
416             icmp_ctlinput_handler);
417         msg->m = m;
418         msg->cmd = cmd;
419         msg->hlen = hlen;
420         msg->proto = proto;
421
422         lwkt_sendmsg(port, &msg->base.lmsg);
423 }
424
425 static void
426 icmp_ctlinput_global_handler(netmsg_t nmsg)
427 {
428         struct netmsg_ctlinput *msg = (struct netmsg_ctlinput *)nmsg;
429         int nextcpu;
430
431         ASSERT_NETISR_NCPUS(mycpuid);
432
433         icmp_ctlinput(msg->m, msg->cmd, msg->hlen);
434
435         nextcpu = mycpuid + 1;
436         if (nextcpu < netisr_ncpus)
437                 lwkt_forwardmsg(netisr_cpuport(nextcpu), &msg->base.lmsg);
438         else
439                 icmp_ctlinput_done(msg->m);
440 }
441
442 static void
443 icmp_ctlinput_global_start(struct mbuf *m, int cmd, int hlen, int proto)
444 {
445         struct netmsg_ctlinput *msg;
446
447         ASSERT_NETISR0;
448         KASSERT(netisr_ncpus > 1, ("there is only 1 netisr cpu"));
449
450         icmp_ctlinput(m, cmd, hlen);
451
452         msg = &m->m_hdr.mh_ctlmsg;
453         netmsg_init(&msg->base, NULL, &netisr_apanic_rport, 0,
454             icmp_ctlinput_global_handler);
455         msg->m = m;
456         msg->cmd = cmd;
457         msg->hlen = hlen;
458         msg->proto = proto;
459
460         lwkt_sendmsg(netisr_cpuport(1), &msg->base.lmsg);
461 }
462
463 #define ICMP_RTREDIRECT_FLAGS   (RTF_GATEWAY | RTF_HOST)
464
465 static void
466 icmp_redirect(struct mbuf *m, int hlen, boolean_t prt)
467 {
468         struct sockaddr_in icmpsrc = { sizeof(struct sockaddr_in), AF_INET };
469         struct sockaddr_in icmpdst = { sizeof(struct sockaddr_in), AF_INET };
470         struct sockaddr_in icmpgw = { sizeof(struct sockaddr_in), AF_INET };
471         struct icmp *icp;
472         struct ip *ip;
473
474         KASSERT(curthread->td_type == TD_TYPE_NETISR, ("not in netisr"));
475
476         ip = mtod(m, struct ip *);
477         icp = mtodoff(m, struct icmp *, hlen);
478
479         /*
480          * Short circuit routing redirects to force immediate change
481          * in the kernel's routing tables.  The message is also handed
482          * to anyone listening on a raw socket (e.g. the routing daemon
483          * for use in updating its tables).
484          */
485 #ifdef ICMPPRINTFS
486         if (icmpprintfs && prt) {
487                 char dst_buf[INET_ADDRSTRLEN], gw_buf[INET_ADDRSTRLEN];
488
489                 kprintf("redirect dst %s to %s\n",
490                     inet_ntop(AF_INET, &icp->icmp_ip.ip_dst,
491                         dst_buf, INET_ADDRSTRLEN),
492                     inet_ntop(AF_INET, &icp->icmp_gwaddr,
493                         gw_buf, INET_ADDRSTRLEN));
494         }
495 #endif
496         icmpgw.sin_addr = ip->ip_src;
497         icmpdst.sin_addr = icp->icmp_gwaddr;
498         icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
499         rtredirect_oncpu((struct sockaddr *)&icmpsrc,
500             (struct sockaddr *)&icmpdst, NULL, ICMP_RTREDIRECT_FLAGS,
501             (struct sockaddr *)&icmpgw);
502         kpfctlinput_direct(PRC_REDIRECT_HOST, (struct sockaddr *)&icmpsrc);
503 }
504
505 static void
506 icmp_redirect_done_handler(netmsg_t nmsg)
507 {
508         struct netmsg_ctlinput *msg = (struct netmsg_ctlinput *)nmsg;
509         struct mbuf *m = msg->m;
510         int hlen = msg->hlen;
511 #ifdef IPSEC
512         struct sockaddr_in icmpsrc = { sizeof(struct sockaddr_in), AF_INET };
513         struct icmp *icp = mtodoff(m, struct icmp *, hlen);;
514
515         icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
516         key_sa_routechange((struct sockaddr *)&icmpsrc);
517 #endif
518         rip_input(&m, &hlen, msg->proto);
519 }
520
521 static void
522 icmp_redirect_done(struct mbuf *m, int hlen, boolean_t dispatch_rip)
523 {
524         struct rt_addrinfo rtinfo;
525         struct sockaddr_in icmpsrc = { sizeof(struct sockaddr_in), AF_INET };
526         struct sockaddr_in icmpdst = { sizeof(struct sockaddr_in), AF_INET };
527         struct sockaddr_in icmpgw = { sizeof(struct sockaddr_in), AF_INET };
528         struct icmp *icp;
529         struct ip *ip;
530
531         ip = mtod(m, struct ip *);
532         icp = mtodoff(m, struct icmp *, hlen);
533
534         icmpgw.sin_addr = ip->ip_src;
535         icmpdst.sin_addr = icp->icmp_gwaddr;
536         icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
537
538         bzero(&rtinfo, sizeof(struct rt_addrinfo));
539         rtinfo.rti_info[RTAX_DST] = (struct sockaddr *)&icmpsrc;
540         rtinfo.rti_info[RTAX_GATEWAY] = (struct sockaddr *)&icmpdst;
541         rtinfo.rti_info[RTAX_NETMASK] = NULL;
542         rtinfo.rti_info[RTAX_AUTHOR] = (struct sockaddr *)&icmpgw;
543         rt_missmsg(RTM_REDIRECT, &rtinfo, ICMP_RTREDIRECT_FLAGS, 0);
544
545         if (dispatch_rip) {
546                 struct netmsg_ctlinput *msg = &m->m_hdr.mh_ctlmsg;
547
548                 netmsg_init(&msg->base, NULL, &netisr_apanic_rport, 0,
549                     icmp_redirect_done_handler);
550                 lwkt_sendmsg(netisr_cpuport(0), &msg->base.lmsg);
551         }
552 }
553
554 static void
555 icmp_redirect_handler(netmsg_t nmsg)
556 {
557         struct netmsg_ctlinput *msg = (struct netmsg_ctlinput *)nmsg;
558         int nextcpu;
559
560         ASSERT_NETISR_NCPUS(mycpuid);
561
562         icmp_redirect(msg->m, msg->hlen, FALSE);
563
564         nextcpu = mycpuid + 1;
565         if (nextcpu < netisr_ncpus)
566                 lwkt_forwardmsg(netisr_cpuport(nextcpu), &msg->base.lmsg);
567         else
568                 icmp_redirect_done(msg->m, msg->hlen, TRUE);
569 }
570
571 static boolean_t
572 icmp_redirect_start(struct mbuf *m, int hlen, int proto)
573 {
574         struct netmsg_ctlinput *msg;
575
576         ASSERT_NETISR0;
577
578         icmp_redirect(m, hlen, TRUE);
579
580         if (netisr_ncpus == 1) {
581                 /* There is only one netisr; done */
582                 icmp_redirect_done(m, hlen, FALSE);
583                 return FALSE;
584         }
585
586         msg = &m->m_hdr.mh_ctlmsg;
587         netmsg_init(&msg->base, NULL, &netisr_apanic_rport, 0,
588             icmp_redirect_handler);
589         msg->m = m;
590         msg->cmd = PRC_REDIRECT_HOST;
591         msg->hlen = hlen;
592         msg->proto = proto;
593
594         lwkt_sendmsg(netisr_cpuport(1), &msg->base.lmsg);
595         return TRUE;
596 }
597
598 /*
599  * Process a received ICMP message.
600  */
601 int
602 icmp_input(struct mbuf **mp, int *offp, int proto)
603 {
604         struct sockaddr_in icmpsrc = { sizeof(struct sockaddr_in), AF_INET };
605         struct sockaddr_in icmpdst = { sizeof(struct sockaddr_in), AF_INET };
606         struct icmp *icp;
607         struct in_ifaddr *ia;
608         struct mbuf *m = *mp;
609         struct ip *ip = mtod(m, struct ip *);
610         int icmplen = ip->ip_len;
611         int i, hlen;
612         int code;
613
614         ASSERT_NETISR0;
615
616         *mp = NULL;
617         hlen = *offp;
618
619         /*
620          * Locate icmp structure in mbuf, and check
621          * that not corrupted and of at least minimum length.
622          */
623 #ifdef ICMPPRINTFS
624         if (icmpprintfs) {
625                 char src_buf[INET_ADDRSTRLEN], dst_buf[INET_ADDRSTRLEN];
626
627                 kprintf("icmp_input from %s to %s, len %d\n",
628                     inet_ntop(AF_INET, &ip->ip_src, src_buf, INET_ADDRSTRLEN),
629                     inet_ntop(AF_INET, &ip->ip_dst, dst_buf, INET_ADDRSTRLEN),
630                     icmplen);
631         }
632 #endif
633         if (icmplen < ICMP_MINLEN) {
634                 icmpstat.icps_tooshort++;
635                 goto freeit;
636         }
637         i = hlen + min(icmplen, ICMP_ADVLENMIN);
638         if (m->m_len < i && (m = m_pullup(m, i)) == NULL)  {
639                 icmpstat.icps_tooshort++;
640                 return(IPPROTO_DONE);
641         }
642         ip = mtod(m, struct ip *);
643
644         if (in_cksum_skip(m, hlen + icmplen, hlen)) {
645                 icmpstat.icps_checksum++;
646                 goto freeit;
647         }
648         icp = (struct icmp *)((caddr_t)ip + hlen);
649
650 #ifdef ICMPPRINTFS
651         if (icmpprintfs)
652                 kprintf("icmp_input, type %d code %d\n", icp->icmp_type,
653                     icp->icmp_code);
654 #endif
655
656         /*
657          * Message type specific processing.
658          */
659         if (icp->icmp_type > ICMP_MAXTYPE)
660                 goto raw;
661         icmpstat.icps_inhist[icp->icmp_type]++;
662         code = icp->icmp_code;
663         switch (icp->icmp_type) {
664
665         case ICMP_UNREACH:
666                 switch (code) {
667                         case ICMP_UNREACH_NET:
668                         case ICMP_UNREACH_HOST:
669                         case ICMP_UNREACH_SRCFAIL:
670                         case ICMP_UNREACH_NET_UNKNOWN:
671                         case ICMP_UNREACH_HOST_UNKNOWN:
672                         case ICMP_UNREACH_ISOLATED:
673                         case ICMP_UNREACH_TOSNET:
674                         case ICMP_UNREACH_TOSHOST:
675                         case ICMP_UNREACH_HOST_PRECEDENCE:
676                         case ICMP_UNREACH_PRECEDENCE_CUTOFF:
677                                 code = PRC_UNREACH_NET;
678                                 break;
679
680                         case ICMP_UNREACH_NEEDFRAG:
681                                 code = PRC_MSGSIZE;
682                                 break;
683
684                         /*
685                          * RFC 1122, Sections 3.2.2.1 and 4.2.3.9.
686                          * Treat subcodes 2,3 as immediate RST
687                          */
688                         case ICMP_UNREACH_PROTOCOL:
689                         case ICMP_UNREACH_PORT:
690                                 code = PRC_UNREACH_PORT;
691                                 break;
692
693                         case ICMP_UNREACH_NET_PROHIB:
694                         case ICMP_UNREACH_HOST_PROHIB:
695                         case ICMP_UNREACH_FILTER_PROHIB:
696                                 code = PRC_UNREACH_ADMIN_PROHIB;
697                                 break;
698
699                         default:
700                                 goto badcode;
701                 }
702                 goto deliver;
703
704         case ICMP_TIMXCEED:
705                 if (code > 1)
706                         goto badcode;
707                 code += PRC_TIMXCEED_INTRANS;
708                 goto deliver;
709
710         case ICMP_PARAMPROB:
711                 if (code > 1)
712                         goto badcode;
713                 code = PRC_PARAMPROB;
714                 goto deliver;
715
716         case ICMP_SOURCEQUENCH:
717                 if (code)
718                         goto badcode;
719                 if (discard_sourcequench)
720                         break;
721                 code = PRC_QUENCH;
722 deliver:
723                 /*
724                  * Problem with datagram; advise higher level routines.
725                  */
726                 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
727                     IP_VHL_HL(icp->icmp_ip.ip_vhl) < (sizeof(struct ip) >> 2)) {
728                         icmpstat.icps_badlen++;
729                         goto freeit;
730                 }
731                 /* Discard ICMP's in response to multicast packets */
732                 if (IN_MULTICAST(ntohl(icp->icmp_ip.ip_dst.s_addr)))
733                         goto badcode;
734 #ifdef ICMPPRINTFS
735                 if (icmpprintfs)
736                         kprintf("deliver to protocol %d\n", icp->icmp_ip.ip_p);
737 #endif
738                 icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
739
740                 /*
741                  * MTU discovery
742                  */
743                 if (code == PRC_MSGSIZE) {
744                         /* Run MTU discovery in all netisrs */
745                         if (icmp_mtudisc_start(m, hlen, proto)) {
746                                 /* Forwarded; done */
747                                 return IPPROTO_DONE;
748                         }
749                         /* Move on; run rip_input() directly */
750                 } else {
751                         struct protosw *pr;
752                         struct lwkt_port *port;
753                         int cpu;
754
755                         pr = &inetsw[ip_protox[icp->icmp_ip.ip_p]];
756                         port = so_pr_ctlport(pr, code,
757                             (struct sockaddr *)&icmpsrc, &icp->icmp_ip, &cpu);
758                         if (port != NULL) {
759                                 if (cpu == netisr_ncpus) {
760                                         if (netisr_ncpus > 1) {
761                                                 /*
762                                                  * Run pr_ctlinput in all
763                                                  * netisrs
764                                                  */
765                                                 icmp_ctlinput_global_start(m,
766                                                     code, hlen, proto);
767                                                 return IPPROTO_DONE;
768                                         }
769                                         /*
770                                          * There is only one netisr; run
771                                          * pr_ctlinput directly.
772                                          */
773                                 } else if (cpu != mycpuid) {
774                                         /*
775                                          * Send to the target netisr to run
776                                          * pr_ctlinput.
777                                          */
778                                         icmp_ctlinput_start(m, port,
779                                             code, hlen, proto);
780                                         return IPPROTO_DONE;
781                                 }
782
783                                 /*
784                                  * The target netisr is this netisr.
785                                  *
786                                  * XXX if the packet contains [IPv4 AH TCP],
787                                  * we can't make a notification to TCP layer.
788                                  */
789                                 so_pr_ctlinput_direct(pr, code,
790                                     (struct sockaddr *)&icmpsrc, &icp->icmp_ip);
791                         }
792                         /* Move on; run rip_input() directly */
793                 }
794                 break;
795 badcode:
796                 icmpstat.icps_badcode++;
797                 break;
798
799         case ICMP_ECHO:
800                 if (!icmpbmcastecho
801                     && (m->m_flags & (M_MCAST | M_BCAST)) != 0) {
802                         icmpstat.icps_bmcastecho++;
803                         break;
804                 }
805                 icp->icmp_type = ICMP_ECHOREPLY;
806 #ifdef ICMP_BANDLIM
807                 if (badport_bandlim(BANDLIM_ICMP_ECHO) < 0)
808                         goto freeit;
809                 else
810 #endif
811                         goto reflect;
812
813         case ICMP_TSTAMP:
814                 if (!icmpbmcastecho
815                     && (m->m_flags & (M_MCAST | M_BCAST)) != 0) {
816                         icmpstat.icps_bmcasttstamp++;
817                         break;
818                 }
819                 if (icmplen < ICMP_TSLEN) {
820                         icmpstat.icps_badlen++;
821                         break;
822                 }
823                 icp->icmp_type = ICMP_TSTAMPREPLY;
824                 icp->icmp_rtime = iptime();
825                 icp->icmp_ttime = icp->icmp_rtime;      /* bogus, do later! */
826 #ifdef ICMP_BANDLIM
827                 if (badport_bandlim(BANDLIM_ICMP_TSTAMP) < 0)
828                         goto freeit;
829                 else
830 #endif
831                         goto reflect;
832
833         case ICMP_MASKREQ:
834                 if (icmpmaskrepl == 0)
835                         break;
836                 /*
837                  * We are not able to respond with all ones broadcast
838                  * unless we receive it over a point-to-point interface.
839                  */
840                 if (icmplen < ICMP_MASKLEN)
841                         break;
842                 switch (ip->ip_dst.s_addr) {
843
844                 case INADDR_BROADCAST:
845                 case INADDR_ANY:
846                         icmpdst.sin_addr = ip->ip_src;
847                         break;
848
849                 default:
850                         icmpdst.sin_addr = ip->ip_dst;
851                 }
852                 ia = (struct in_ifaddr *)ifaof_ifpforaddr(
853                             (struct sockaddr *)&icmpdst, m->m_pkthdr.rcvif);
854                 if (ia == NULL)
855                         break;
856                 if (ia->ia_ifp == 0)
857                         break;
858                 icp->icmp_type = ICMP_MASKREPLY;
859                 icp->icmp_mask = ia->ia_sockmask.sin_addr.s_addr;
860                 if (ip->ip_src.s_addr == 0) {
861                         if (ia->ia_ifp->if_flags & IFF_BROADCAST)
862                             ip->ip_src = satosin(&ia->ia_broadaddr)->sin_addr;
863                         else if (ia->ia_ifp->if_flags & IFF_POINTOPOINT)
864                             ip->ip_src = satosin(&ia->ia_dstaddr)->sin_addr;
865                 }
866 reflect:
867                 ip->ip_len += hlen;     /* since ip_input deducts this */
868                 icmpstat.icps_reflect++;
869                 icmpstat.icps_outhist[icp->icmp_type]++;
870                 icmp_reflect(m);
871                 return(IPPROTO_DONE);
872
873         case ICMP_REDIRECT:
874                 if (log_redirect) {
875                         char src_buf[INET_ADDRSTRLEN];
876                         char dst_buf[INET_ADDRSTRLEN];
877                         char gwy_buf[INET_ADDRSTRLEN];
878
879                         kprintf("icmp redirect from %s: %s => %s\n",
880                             inet_ntop(AF_INET, &ip->ip_src,
881                                 src_buf, INET_ADDRSTRLEN),
882                             inet_ntop(AF_INET, &icp->icmp_ip.ip_dst,
883                                 dst_buf, INET_ADDRSTRLEN),
884                             inet_ntop(AF_INET, &icp->icmp_gwaddr,
885                                 gwy_buf, INET_ADDRSTRLEN));
886                 }
887                 if (drop_redirect)
888                         break;
889                 if (code > 3)
890                         goto badcode;
891                 if (icmplen < ICMP_ADVLENMIN || icmplen < ICMP_ADVLEN(icp) ||
892                     IP_VHL_HL(icp->icmp_ip.ip_vhl) < (sizeof(struct ip) >> 2)) {
893                         icmpstat.icps_badlen++;
894                         break;
895                 }
896 #ifdef ICMPPRINTFS
897                 if (icmpprintfs) {
898                         char dst_buf[INET_ADDRSTRLEN], gw_buf[INET_ADDRSTRLEN];
899
900                         kprintf("redirect dst %s to %s\n",
901                             inet_ntop(AF_INET, &icp->icmp_ip.ip_dst,
902                                 dst_buf, INET_ADDRSTRLEN),
903                             inet_ntop(AF_INET, &icp->icmp_gwaddr,
904                                 gw_buf, INET_ADDRSTRLEN));
905                 }
906 #endif
907                 icmpsrc.sin_addr = icp->icmp_ip.ip_dst;
908
909                 /* Run redirect in all netisrs */
910                 if (icmp_redirect_start(m, hlen, proto)) {
911                         /* Forwarded; done */
912                         return IPPROTO_DONE;
913                 }
914                 /* Move on; run rip_input() directly */
915 #ifdef IPSEC
916                 key_sa_routechange((struct sockaddr *)&icmpsrc);
917 #endif
918                 break;
919
920         /*
921          * No kernel processing for the following;
922          * just fall through to send to raw listener.
923          */
924         case ICMP_ECHOREPLY:
925         case ICMP_ROUTERADVERT:
926         case ICMP_ROUTERSOLICIT:
927         case ICMP_TSTAMPREPLY:
928         case ICMP_IREQREPLY:
929         case ICMP_MASKREPLY:
930         default:
931                 break;
932         }
933
934 raw:
935         *mp = m;
936         rip_input(mp, offp, proto);
937         return(IPPROTO_DONE);
938
939 freeit:
940         m_freem(m);
941         return(IPPROTO_DONE);
942 }
943
944 /*
945  * Reflect the ip packet back to the source
946  */
947 static void
948 icmp_reflect(struct mbuf *m)
949 {
950         struct ip *ip = mtod(m, struct ip *);
951         struct in_ifaddr *ia;
952         struct in_ifaddr_container *iac;
953         struct ifaddr_container *ifac;
954         struct ifnet *ifp;
955         struct in_addr t;
956         struct mbuf *opts = NULL;
957         int optlen = (IP_VHL_HL(ip->ip_vhl) << 2) - sizeof(struct ip);
958         struct route *ro = NULL, rt;
959
960         if (!in_canforward(ip->ip_src) &&
961             ((ntohl(ip->ip_src.s_addr) & IN_CLASSA_NET) !=
962              (IN_LOOPBACKNET << IN_CLASSA_NSHIFT))) {
963                 m_freem(m);     /* Bad return address */
964                 icmpstat.icps_badaddr++;
965                 goto done;      /* Ip_output() will check for broadcast */
966         }
967         t = ip->ip_dst;
968         ip->ip_dst = ip->ip_src;
969
970         ro = &rt;
971         bzero(ro, sizeof *ro);
972
973         /*
974          * If the incoming packet was addressed directly to us,
975          * use dst as the src for the reply.  Otherwise (broadcast
976          * or anonymous), use the address which corresponds
977          * to the incoming interface.
978          */
979         ia = NULL;
980         LIST_FOREACH(iac, INADDR_HASH(t.s_addr), ia_hash) {
981                 if (t.s_addr == IA_SIN(iac->ia)->sin_addr.s_addr) {
982                         ia = iac->ia;
983                         goto match;
984                 }
985         }
986         ifp = m->m_pkthdr.rcvif;
987         if (ifp != NULL && (ifp->if_flags & IFF_BROADCAST)) {
988                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
989                         struct ifaddr *ifa = ifac->ifa;
990
991                         if (ifa->ifa_addr->sa_family != AF_INET)
992                                 continue;
993                         ia = ifatoia(ifa);
994                         if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr ==
995                             t.s_addr)
996                                 goto match;
997                 }
998         }
999         /*
1000          * If the packet was transiting through us, use the address of
1001          * the interface the packet came through in.  If that interface
1002          * doesn't have a suitable IP address, the normal selection
1003          * criteria apply.
1004          */
1005         if (icmp_rfi && ifp != NULL) {
1006                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1007                         struct ifaddr *ifa = ifac->ifa;
1008
1009                         if (ifa->ifa_addr->sa_family != AF_INET)
1010                                 continue;
1011                         ia = ifatoia(ifa);
1012                         goto match;
1013                 }
1014         }
1015         /*
1016          * If the incoming packet was not addressed directly to us, use
1017          * designated interface for icmp replies specified by sysctl
1018          * net.inet.icmp.reply_src (default not set). Otherwise continue
1019          * with normal source selection.
1020          */
1021         if (icmp_reply_src[0] != '\0' &&
1022             (ifp = ifunit_netisr(icmp_reply_src))) {
1023                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1024                         struct ifaddr *ifa = ifac->ifa;
1025
1026                         if (ifa->ifa_addr->sa_family != AF_INET)
1027                                 continue;
1028                         ia = ifatoia(ifa);
1029                         goto match;
1030                 }
1031         }
1032         /*
1033          * If the packet was transiting through us, use the address of
1034          * the interface that is the closest to the packet source.
1035          * When we don't have a route back to the packet source, stop here
1036          * and drop the packet.
1037          */
1038         ia = ip_rtaddr(ip->ip_dst, ro);
1039         if (ia == NULL) {
1040                 m_freem(m);
1041                 icmpstat.icps_noroute++;
1042                 goto done;
1043         }
1044 match:
1045         t = IA_SIN(ia)->sin_addr;
1046         ip->ip_src = t;
1047         ip->ip_ttl = ip_defttl;
1048
1049         if (optlen > 0) {
1050                 u_char *cp;
1051                 int opt, cnt;
1052                 u_int len;
1053
1054                 /*
1055                  * Retrieve any source routing from the incoming packet;
1056                  * add on any record-route or timestamp options.
1057                  */
1058                 cp = (u_char *) (ip + 1);
1059                 if ((opts = ip_srcroute(m)) == NULL &&
1060                     (opts = m_gethdr(M_NOWAIT, MT_HEADER))) {
1061                         opts->m_len = sizeof(struct in_addr);
1062                         mtod(opts, struct in_addr *)->s_addr = 0;
1063                 }
1064                 if (opts) {
1065 #ifdef ICMPPRINTFS
1066                         if (icmpprintfs)
1067                                 kprintf("icmp_reflect optlen %d rt %d => ",
1068                                        optlen, opts->m_len);
1069 #endif
1070                         for (cnt = optlen; cnt > 0; cnt -= len, cp += len) {
1071                                 opt = cp[IPOPT_OPTVAL];
1072                                 if (opt == IPOPT_EOL)
1073                                         break;
1074                                 if (opt == IPOPT_NOP)
1075                                         len = 1;
1076                                 else {
1077                                         if (cnt < IPOPT_OLEN + sizeof *cp)
1078                                                 break;
1079                                         len = cp[IPOPT_OLEN];
1080                                         if (len < IPOPT_OLEN + sizeof *cp ||
1081                                             len > cnt)
1082                                         break;
1083                                 }
1084                                 /*
1085                                  * Should check for overflow, but it
1086                                  * "can't happen".
1087                                  */
1088                                 if (opt == IPOPT_RR || opt == IPOPT_TS ||
1089                                     opt == IPOPT_SECURITY) {
1090                                         bcopy(cp,
1091                                               mtod(opts, caddr_t) + opts->m_len,
1092                                               len);
1093                                         opts->m_len += len;
1094                                 }
1095                         }
1096                         /* Terminate & pad, if necessary */
1097                         cnt = opts->m_len % 4;
1098                         if (cnt) {
1099                                 for (; cnt < 4; cnt++) {
1100                                         *(mtod(opts, caddr_t) + opts->m_len) =
1101                                             IPOPT_EOL;
1102                                         opts->m_len++;
1103                                 }
1104                         }
1105 #ifdef ICMPPRINTFS
1106                         if (icmpprintfs)
1107                                 kprintf("%d\n", opts->m_len);
1108 #endif
1109                 }
1110                 /*
1111                  * Now strip out original options by copying rest of first
1112                  * mbuf's data back, and adjust the IP length.
1113                  */
1114                 ip->ip_len -= optlen;
1115                 ip->ip_vhl = IP_VHL_BORING;
1116                 m->m_len -= optlen;
1117                 if (m->m_flags & M_PKTHDR)
1118                         m->m_pkthdr.len -= optlen;
1119                 optlen += sizeof(struct ip);
1120                 bcopy((caddr_t)ip + optlen, ip + 1,
1121                       m->m_len - sizeof(struct ip));
1122         }
1123         m->m_pkthdr.fw_flags &= FW_MBUF_GENERATED;
1124         m->m_flags &= ~(M_BCAST|M_MCAST);
1125         icmp_send(m, opts, ro);
1126 done:
1127         if (opts)
1128                 m_free(opts);
1129         if (ro && ro->ro_rt)
1130                 RTFREE(ro->ro_rt);
1131 }
1132
1133 /*
1134  * Send an icmp packet back to the ip level,
1135  * after supplying a checksum.
1136  */
1137 static void
1138 icmp_send(struct mbuf *m, struct mbuf *opts, struct route *rt)
1139 {
1140         struct ip *ip = mtod(m, struct ip *);
1141         struct icmp *icp;
1142         int hlen;
1143
1144         hlen = IP_VHL_HL(ip->ip_vhl) << 2;
1145         m->m_data += hlen;
1146         m->m_len -= hlen;
1147         icp = mtod(m, struct icmp *);
1148         icp->icmp_cksum = 0;
1149         icp->icmp_cksum = in_cksum(m, ip->ip_len - hlen);
1150         m->m_data -= hlen;
1151         m->m_len += hlen;
1152         m->m_pkthdr.rcvif = NULL;
1153 #ifdef ICMPPRINTFS
1154         if (icmpprintfs) {
1155                 char dst_buf[INET_ADDRSTRLEN], src_buf[INET_ADDRSTRLEN];
1156
1157                 kprintf("icmp_send dst %s src %s\n",
1158                     inet_ntop(AF_INET, &ip->ip_dst, dst_buf, INET_ADDRSTRLEN),
1159                     inet_ntop(AF_INET, &ip->ip_src, src_buf, INET_ADDRSTRLEN));
1160         }
1161 #endif
1162         ip_output(m, opts, rt, 0, NULL, NULL);
1163 }
1164
1165 n_time
1166 iptime(void)
1167 {
1168         struct timeval atv;
1169         u_long t;
1170
1171         getmicrotime(&atv);
1172         t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
1173         return (htonl(t));
1174 }
1175
1176 #if 1
1177 /*
1178  * Return the next larger or smaller MTU plateau (table from RFC 1191)
1179  * given current value MTU.  If DIR is less than zero, a larger plateau
1180  * is returned; otherwise, a smaller value is returned.
1181  */
1182 int
1183 ip_next_mtu(int mtu, int dir)
1184 {
1185         static int mtutab[] = {
1186                 65535, 32000, 17914, 8166, 4352, 2002, 1492, 1006, 508, 296,
1187                 68, 0
1188         };
1189         int i;
1190
1191         for (i = 0; i < (sizeof mtutab) / (sizeof mtutab[0]); i++) {
1192                 if (mtu >= mtutab[i])
1193                         break;
1194         }
1195
1196         if (dir < 0) {
1197                 if (i == 0) {
1198                         return 0;
1199                 } else {
1200                         return mtutab[i - 1];
1201                 }
1202         } else {
1203                 if (mtutab[i] == 0) {
1204                         return 0;
1205                 } else if(mtu > mtutab[i]) {
1206                         return mtutab[i];
1207                 } else {
1208                         return mtutab[i + 1];
1209                 }
1210         }
1211 }
1212 #endif
1213
1214 #ifdef ICMP_BANDLIM
1215 /*
1216  * badport_bandlim() - check for ICMP bandwidth limit
1217  *
1218  *      Return 0 if it is ok to send an ICMP error response, -1 if we have
1219  *      hit our bandwidth limit and it is not ok.
1220  *
1221  *      If icmplim is <= 0, the feature is disabled and 0 is returned.
1222  *
1223  *      For now we separate the TCP and UDP subsystems w/ different 'which'
1224  *      values.  We may eventually remove this separation (and simplify the
1225  *      code further).
1226  *
1227  *      Note that the printing of the error message is delayed so we can
1228  *      properly print the icmp error rate that the system was trying to do
1229  *      (i.e. 22000/100 pps, etc...).  This can cause long delays in printing
1230  *      the 'final' error, but it doesn't make sense to solve the printing
1231  *      delay with more complex code.
1232  */
1233 int
1234 badport_bandlim(int which)
1235 {
1236         static int lticks[BANDLIM_MAX + 1];
1237         static int lpackets[BANDLIM_MAX + 1];
1238         int dticks;
1239         const char *bandlimittype[] = {
1240                 "Limiting icmp unreach response",
1241                 "Limiting icmp ping response",
1242                 "Limiting icmp tstamp response",
1243                 "Limiting closed port RST response",
1244                 "Limiting open port RST response"
1245                 };
1246
1247         /*
1248          * Return ok status if feature disabled or argument out of
1249          * ranage.
1250          */
1251
1252         if (icmplim <= 0 || which > BANDLIM_MAX || which < 0)
1253                 return(0);
1254         dticks = ticks - lticks[which];
1255
1256         /*
1257          * reset stats when cumulative dt exceeds one second.
1258          */
1259
1260         if ((unsigned int)dticks > hz) {
1261                 if (lpackets[which] > icmplim && icmplim_output) {
1262                         kprintf("%s from %d to %d packets per second\n",
1263                                 bandlimittype[which],
1264                                 lpackets[which],
1265                                 icmplim
1266                         );
1267                 }
1268                 lticks[which] = ticks;
1269                 lpackets[which] = 0;
1270         }
1271
1272         /*
1273          * bump packet count
1274          */
1275
1276         if (++lpackets[which] > icmplim) {
1277                 return(-1);
1278         }
1279         return(0);
1280 }
1281 #endif