📄 igmp.c
字号:
/* igmp.c - internet group management protocol routines *//* Copyright 1984 - 2002 Wind River Systems, Inc. *//* * Copyright (c) 1988 Stephen Deering. * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Stephen Deering of Stanford University. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)igmp.c 8.2 (Berkeley) 5/3/95 * $FreeBSD: src/sys/netinet/igmp.c,v 1.28 1999/08/28 00:49:14 peter Exp $ * Internet Group Management Protocol (IGMP) routines. * * Written by Steve Deering, Stanford, May 1988. * Modified by Rosen Sharma, Stanford, Aug 1994. * Modified by Bill Fenner, Xerox PARC, Feb 1995. * Modified to fully comply to IGMPv2 by Bill Fenner, Oct 1995. * * MULTICAST Revision: 3.5.1.4 *//*modification history--------------------01i,21jun02,rae Removed unnecessary #include01h,04dec01,rae cleanup01g,05nov01,vvv fixed compilation warning01f,12oct01,rae merge from truestack, upgrade to V201e,05oct97,vin changes for multicast hashing.01d,08mar97,vin added mCastRouteFwdHook to access mcast routing code.01c,31jan97,vin changed declaration according to prototype decl in protosw.h01b,11nov96,vin added cluster support, changed m_gethdr mHdlClGet.01a,03mar96,vin created from BSD4.4 stuff.*//* Internet Group Management Protocol (IGMP) routines. */#include "vxWorks.h"#include "errno.h"#include "stdio.h"#include "net/mbuf.h"#include "sys/socket.h"#include "net/protosw.h"#include "net/if.h"#include "net/route.h"#include "netinet/in.h"#include "netinet/in_var.h"#include "netinet/in_systm.h"#include "netinet/ip.h"#include "netinet/ip_var.h"#include "netinet/igmp.h"#include "netinet/igmp_var.h"#include "net/systm.h"/* #include "ppp/random.h" */ /* XXX -- illegal cross-product reference */#ifdef VIRTUAL_STACK#include "netinet/vsLib.h"#include "netinet/vsIgmp.h"#include "netinet/vsMcast.h"#endif /* VIRTUAL_STACK */#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET#include "wvNetLib.h"#endif /* INCLUDE_WVNET */#endif/* externs */extern VOIDFUNCPTR _igmpJoinGrpHook; extern VOIDFUNCPTR _igmpLeaveGrpHook;extern int random (); #ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET /* Set common fields of event identifiers for this module. */LOCAL UCHAR wvNetModuleId = WV_NET_IGMP_MODULE; /* Value for igmp.c */LOCAL UCHAR wvNetLocalFilter = WV_NET_NONE; /* Available event filter */LOCAL ULONG wvNetEventId; /* Event identifier: see wvNetLib.h */#endif /* INCLUDE_WVNET */#endif#ifndef VIRTUAL_STACKextern struct ifnet loif[];extern FUNCPTR _mCastRouteFwdHook; /* WRS mcast forward command hook *//* globals */struct igmpstat igmpstat;static int igmp_timers_are_running = 0;static struct router_info *Head;#endif VIRTUAL_STACKVOIDFUNCPTR _igmpJoinAlertHook; VOIDFUNCPTR _igmpLeaveAlertHook; VOIDFUNCPTR _igmpQuerierTimeUpdateHook;VOIDFUNCPTR _igmpMessageHook;static u_long igmp_all_hosts_group;static u_long igmp_all_rtrs_group;static struct mbuf *router_alert;/* forward declarations */static void igmp_joingroup (struct in_multi *inm);static void igmp_leavegroup (struct in_multi *inm);static struct router_info * find_rti(struct ifnet *ifp);static void igmp_sendpkt (struct in_multi *, int, unsigned long);voidigmp_init(){ struct ipoption *ra;#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET /* WV_NET_VERBOSE event */ WV_NET_MARKER_0 (NET_AUX_EVENT, WV_NET_VERBOSE, 15, 8, WV_NETEVENT_IGMPINIT_START)#endif /* INCLUDE_WVNET */#endif /* * To avoid byte-swapping the same value over and over again. */ igmp_all_hosts_group = htonl(INADDR_ALLHOSTS_GROUP); igmp_all_rtrs_group = htonl(INADDR_ALLRTRS_GROUP); _igmpJoinGrpHook = igmp_joingroup; _igmpLeaveGrpHook = igmp_leavegroup; igmp_timers_are_running = 0; /* * Construct a Router Alert option to use in outgoing packets */ router_alert = mBufClGet(M_DONTWAIT, MT_DATA, CL_SIZE_128, TRUE); ra = mtod(router_alert, struct ipoption *); ra->ipopt_dst.s_addr = 0; ra->ipopt_list[0] = IPOPT_RA; /* Router Alert Option */ ra->ipopt_list[1] = 0x04; /* 4 bytes long */ ra->ipopt_list[2] = 0x00; ra->ipopt_list[3] = 0x00; router_alert->m_len = sizeof(ra->ipopt_dst) + ra->ipopt_list[1]; Head = (struct router_info *) 0;}static struct router_info *find_rti(ifp) struct ifnet *ifp;{ register struct router_info *rti = Head;#ifdef IGMP_DEBUG printf("[igmp.c, _find_rti] --> entering \n");#endif while (rti) { if (rti->rti_ifp == ifp) {#ifdef IGMP_DEBUG printf("[igmp.c, _find_rti] --> found old entry \n");#endif return rti; } rti = rti->rti_next; } if((rti = malloc(sizeof(struct router_info))) == NULL) return NULL; /* MALLOC(rti, struct router_info *, sizeof *rti, M_IGMP, M_NOWAIT); */ rti->rti_ifp = ifp; rti->rti_type = IGMP_V2_ROUTER; rti->rti_time = 0; rti->rti_next = Head; Head = rti;#ifdef IGMP_DEBUG printf("[igmp.c, _find_rti] --> created an entry \n");#endif return rti;}voidigmp_input(m, iphlen) register struct mbuf *m; register int iphlen;{ register struct igmp *igmp; register struct ip *ip; register int igmplen; register struct ifnet *ifp = m->m_pkthdr.rcvif; register int minlen; register struct in_multi *inm; register struct in_ifaddr *ia; struct router_info *rti; int timer; /** timer value in the igmp query header **/ ++igmpstat.igps_rcv_total; ip = mtod(m, struct ip *); igmplen = ip->ip_len; /* * Validate lengths */ if (igmplen < IGMP_MINLEN) { ++igmpstat.igps_rcv_tooshort; m_freem(m); return; } minlen = iphlen + IGMP_MINLEN; if ((m->m_flags & M_EXT || m->m_len < minlen) && (m = m_pullup(m, minlen)) == 0) { ++igmpstat.igps_rcv_tooshort;#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET /* WV_NET_CRITICAL event */ WV_NET_EVENT_0 (NET_CORE_EVENT, WV_NET_CRITICAL, 6, 2, WV_NETEVENT_IGMPIN_SHORTMSG, WV_NET_RECV)#endif /* INCLUDE_WVNET */#endif return; } /* * Validate checksum */ m->m_data += iphlen; m->m_len -= iphlen; igmp = mtod(m, struct igmp *); if (in_cksum(m, igmplen)) { ++igmpstat.igps_rcv_badsum;#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET /* WV_NET_CRITICAL event */ WV_NET_EVENT_0 (NET_CORE_EVENT, WV_NET_CRITICAL, 7, 3, WV_NETEVENT_IGMPIN_BADSUM, WV_NET_RECV)#endif /* INCLUDE_WVNET */#endif m_freem(m); return; } m->m_data -= iphlen; m->m_len += iphlen; ip = mtod(m, struct ip *); timer = igmp->igmp_code * PR_FASTHZ / IGMP_TIMER_SCALE; if (timer == 0) timer = 1; rti = find_rti(ifp); /* * In the IGMPv2 specification, there are 3 states and a flag. * * In Non-Member state, we simply don't have a membership record. * In Delaying Member state, our timer is running (inm->inm_timer) * In Idle Member state, our timer is not running (inm->inm_timer==0) * * The flag is inm->inm_state, it is set to IGMP_OTHERMEMBER if * we have heard a report from another member, or IGMP_IREPORTEDLAST * if I sent the last report. */ switch (igmp->igmp_type) { case IGMP_MEMBERSHIP_QUERY: ++igmpstat.igps_rcv_queries; if (ifp->if_flags & IFF_LOOPBACK) break; if (igmp->igmp_code == 0) { /* * Old router. Remember that the querier on this * interface is old, and set the timer to the * value in RFC 1112. */ rti->rti_type = IGMP_V1_ROUTER; rti->rti_time = 0; if(_igmpQuerierTimeUpdateHook != NULL) _igmpQuerierTimeUpdateHook(rti->rti_ifp->if_index, rti->rti_time); timer = IGMP_MAX_HOST_REPORT_DELAY * PR_FASTHZ; if (ip->ip_dst.s_addr != igmp_all_hosts_group || igmp->igmp_group.s_addr != 0) { ++igmpstat.igps_rcv_badqueries; m_freem(m);#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET /* WV_NET_WARNING event */ WV_NET_DSTADDRIN_EVENT_3 (NET_CORE_EVENT, WV_NET_WARNING, 5, 4, ip->ip_dst.s_addr, WV_NETEVENT_IGMPIN_BADADDR, WV_NET_RECV, igmp->igmp_type, ip->ip_dst.s_addr, 0)#endif /* INCLUDE_WVNET */#endif return; } } else { /* * New router. Simply do the new validity check. */ if (igmp->igmp_group.s_addr != 0 && !IN_MULTICAST(ntohl(igmp->igmp_group.s_addr))) { ++igmpstat.igps_rcv_badqueries; m_freem(m);#ifdef WV_INSTRUMENTATION
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -