igmp.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:21k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* igmp.c - internet group management protocol routines */
  2. /* Copyright 1984 - 2002 Wind River Systems, Inc. */
  3. /*
  4.  * Copyright (c) 1988 Stephen Deering.
  5.  * Copyright (c) 1992, 1993
  6.  * The Regents of the University of California.  All rights reserved.
  7.  *
  8.  * This code is derived from software contributed to Berkeley by
  9.  * Stephen Deering of Stanford University.
  10.  *
  11.  * Redistribution and use in source and binary forms, with or without
  12.  * modification, are permitted provided that the following conditions
  13.  * are met:
  14.  * 1. Redistributions of source code must retain the above copyright
  15.  *    notice, this list of conditions and the following disclaimer.
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in the
  18.  *    documentation and/or other materials provided with the distribution.
  19.  * 3. All advertising materials mentioning features or use of this software
  20.  *    must display the following acknowledgement:
  21.  * This product includes software developed by the University of
  22.  * California, Berkeley and its contributors.
  23.  * 4. Neither the name of the University nor the names of its contributors
  24.  *    may be used to endorse or promote products derived from this software
  25.  *    without specific prior written permission.
  26.  *
  27.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  28.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  31.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  33.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  34.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  35.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  36.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  37.  * SUCH DAMAGE.
  38.  *
  39.  * @(#)igmp.c 8.2 (Berkeley) 5/3/95
  40.  * $FreeBSD: src/sys/netinet/igmp.c,v 1.28 1999/08/28 00:49:14 peter Exp $
  41.  * Internet Group Management Protocol (IGMP) routines.
  42.  *
  43.  * Written by Steve Deering, Stanford, May 1988.
  44.  * Modified by Rosen Sharma, Stanford, Aug 1994.
  45.  * Modified by Bill Fenner, Xerox PARC, Feb 1995.
  46.  * Modified to fully comply to IGMPv2 by Bill Fenner, Oct 1995.
  47.  *
  48.  * MULTICAST Revision: 3.5.1.4
  49.  */
  50. /*
  51. modification history
  52. --------------------
  53. 01i,21jun02,rae  Removed unnecessary #include
  54. 01h,04dec01,rae  cleanup
  55. 01g,05nov01,vvv  fixed compilation warning
  56. 01f,12oct01,rae  merge from truestack, upgrade to V2
  57. 01e,05oct97,vin  changes for multicast hashing.
  58. 01d,08mar97,vin  added mCastRouteFwdHook to access mcast routing code.
  59. 01c,31jan97,vin  changed declaration according to prototype decl in protosw.h
  60. 01b,11nov96,vin  added cluster support, changed m_gethdr mHdlClGet.
  61. 01a,03mar96,vin  created from BSD4.4 stuff.
  62. */
  63. /* Internet Group Management Protocol (IGMP) routines. */
  64. #include "vxWorks.h"
  65. #include "errno.h"
  66. #include "stdio.h"
  67. #include "net/mbuf.h"
  68. #include "sys/socket.h"
  69. #include "net/protosw.h"
  70. #include "net/if.h"
  71. #include "net/route.h"
  72. #include "netinet/in.h"
  73. #include "netinet/in_var.h"
  74. #include "netinet/in_systm.h"
  75. #include "netinet/ip.h"
  76. #include "netinet/ip_var.h"
  77. #include "netinet/igmp.h"
  78. #include "netinet/igmp_var.h"
  79. #include "net/systm.h"
  80. /* #include "ppp/random.h" */   /*  XXX -- illegal cross-product reference */
  81. #ifdef VIRTUAL_STACK
  82. #include "netinet/vsLib.h"
  83. #include "netinet/vsIgmp.h"
  84. #include "netinet/vsMcast.h"
  85. #endif /* VIRTUAL_STACK */
  86. #ifdef WV_INSTRUMENTATION
  87. #ifdef INCLUDE_WVNET
  88. #include "wvNetLib.h"
  89. #endif /* INCLUDE_WVNET */
  90. #endif
  91. /* externs */
  92. extern VOIDFUNCPTR _igmpJoinGrpHook; 
  93. extern VOIDFUNCPTR _igmpLeaveGrpHook;
  94. extern int         random ();
  95.  
  96. #ifdef WV_INSTRUMENTATION
  97. #ifdef INCLUDE_WVNET
  98.     /* Set common fields of event identifiers for this module. */
  99. LOCAL UCHAR wvNetModuleId = WV_NET_IGMP_MODULE;   /* Value for igmp.c */
  100. LOCAL UCHAR wvNetLocalFilter = WV_NET_NONE;     /* Available event filter */
  101. LOCAL ULONG wvNetEventId;       /* Event identifier: see wvNetLib.h */
  102. #endif  /* INCLUDE_WVNET */
  103. #endif
  104. #ifndef VIRTUAL_STACK
  105. extern struct ifnet loif[];
  106. extern FUNCPTR _mCastRouteFwdHook; /* WRS mcast forward command hook */
  107. /* globals */
  108. struct igmpstat igmpstat;
  109. static int igmp_timers_are_running = 0;
  110. static struct router_info *Head;
  111. #endif VIRTUAL_STACK
  112. VOIDFUNCPTR _igmpJoinAlertHook; 
  113. VOIDFUNCPTR _igmpLeaveAlertHook; 
  114. VOIDFUNCPTR _igmpQuerierTimeUpdateHook;
  115. VOIDFUNCPTR _igmpMessageHook;
  116. static u_long igmp_all_hosts_group;
  117. static u_long igmp_all_rtrs_group;
  118. static struct mbuf *router_alert;
  119. /* forward declarations */
  120. static void igmp_joingroup (struct in_multi *inm);
  121. static void igmp_leavegroup (struct in_multi *inm);
  122. static struct router_info *
  123. find_rti(struct ifnet *ifp);
  124. static void igmp_sendpkt (struct in_multi *, int, unsigned long);
  125. void
  126. igmp_init()
  127. {
  128. struct ipoption *ra;
  129. #ifdef WV_INSTRUMENTATION
  130. #ifdef INCLUDE_WVNET    /* WV_NET_VERBOSE event */
  131.             WV_NET_MARKER_0 (NET_AUX_EVENT, WV_NET_VERBOSE, 15, 8,
  132.                             WV_NETEVENT_IGMPINIT_START)
  133. #endif  /* INCLUDE_WVNET */
  134. #endif
  135. /*
  136.  * To avoid byte-swapping the same value over and over again.
  137.  */
  138. igmp_all_hosts_group = htonl(INADDR_ALLHOSTS_GROUP);
  139. igmp_all_rtrs_group = htonl(INADDR_ALLRTRS_GROUP);
  140. _igmpJoinGrpHook = igmp_joingroup; 
  141. _igmpLeaveGrpHook = igmp_leavegroup;
  142. igmp_timers_are_running = 0;
  143. /*
  144.  * Construct a Router Alert option to use in outgoing packets
  145.  */
  146. router_alert = mBufClGet(M_DONTWAIT, MT_DATA, CL_SIZE_128, TRUE);
  147. ra = mtod(router_alert, struct ipoption *);
  148. ra->ipopt_dst.s_addr = 0;
  149. ra->ipopt_list[0] = IPOPT_RA; /* Router Alert Option */
  150. ra->ipopt_list[1] = 0x04; /* 4 bytes long */
  151. ra->ipopt_list[2] = 0x00;
  152. ra->ipopt_list[3] = 0x00;
  153. router_alert->m_len = sizeof(ra->ipopt_dst) + ra->ipopt_list[1];
  154.         Head = (struct router_info *) 0;
  155. }
  156. static struct router_info *
  157. find_rti(ifp)
  158. struct ifnet *ifp;
  159. {
  160.         register struct router_info *rti = Head;
  161. #ifdef IGMP_DEBUG
  162. printf("[igmp.c, _find_rti] --> entering n");
  163. #endif
  164.         while (rti) {
  165.                 if (rti->rti_ifp == ifp) {
  166. #ifdef IGMP_DEBUG
  167. printf("[igmp.c, _find_rti] --> found old entry n");
  168. #endif
  169.                         return rti;
  170.                 }
  171.                 rti = rti->rti_next;
  172.         }
  173. if((rti = malloc(sizeof(struct router_info))) == NULL)
  174.   return NULL;
  175.     /* MALLOC(rti, struct router_info *, sizeof *rti, M_IGMP, M_NOWAIT); */
  176.         rti->rti_ifp = ifp;
  177.         rti->rti_type = IGMP_V2_ROUTER;
  178.         rti->rti_time = 0;
  179.         rti->rti_next = Head;
  180.         Head = rti;
  181. #ifdef IGMP_DEBUG
  182. printf("[igmp.c, _find_rti] --> created an entry n");
  183. #endif
  184.         return rti;
  185. }
  186. void
  187. igmp_input(m, iphlen)
  188. register struct mbuf *m;
  189. register int iphlen;
  190. {
  191. register struct igmp *igmp;
  192. register struct ip *ip;
  193. register int igmplen;
  194. register struct ifnet *ifp = m->m_pkthdr.rcvif;
  195. register int minlen;
  196. register struct in_multi *inm;
  197. register struct in_ifaddr *ia;
  198. struct router_info *rti;
  199. int timer; /** timer value in the igmp query header **/
  200. ++igmpstat.igps_rcv_total;
  201. ip = mtod(m, struct ip *);
  202. igmplen = ip->ip_len;
  203. /*
  204.  * Validate lengths
  205.  */
  206. if (igmplen < IGMP_MINLEN) {
  207. ++igmpstat.igps_rcv_tooshort;
  208. m_freem(m);
  209. return;
  210. }
  211. minlen = iphlen + IGMP_MINLEN;
  212. if ((m->m_flags & M_EXT || m->m_len < minlen) &&
  213.     (m = m_pullup(m, minlen)) == 0) {
  214. ++igmpstat.igps_rcv_tooshort;
  215. #ifdef WV_INSTRUMENTATION
  216. #ifdef INCLUDE_WVNET    /* WV_NET_CRITICAL event */
  217.                 WV_NET_EVENT_0 (NET_CORE_EVENT, WV_NET_CRITICAL, 6, 2,  
  218.                                 WV_NETEVENT_IGMPIN_SHORTMSG, WV_NET_RECV)
  219. #endif  /* INCLUDE_WVNET */
  220. #endif
  221. return;
  222. }
  223. /*
  224.  * Validate checksum
  225.  */
  226. m->m_data += iphlen;
  227. m->m_len -= iphlen;
  228. igmp = mtod(m, struct igmp *);
  229. if (in_cksum(m, igmplen)) {
  230. ++igmpstat.igps_rcv_badsum;
  231. #ifdef WV_INSTRUMENTATION
  232. #ifdef INCLUDE_WVNET    /* WV_NET_CRITICAL event */
  233.                 WV_NET_EVENT_0 (NET_CORE_EVENT, WV_NET_CRITICAL, 7, 3,  
  234.                                  WV_NETEVENT_IGMPIN_BADSUM, WV_NET_RECV)
  235. #endif  /* INCLUDE_WVNET */
  236. #endif
  237. m_freem(m);
  238. return;
  239. }
  240. m->m_data -= iphlen;
  241. m->m_len += iphlen;
  242. ip = mtod(m, struct ip *);
  243. timer = igmp->igmp_code * PR_FASTHZ / IGMP_TIMER_SCALE;
  244. if (timer == 0)
  245. timer = 1;
  246. rti = find_rti(ifp);
  247. /*
  248.  * In the IGMPv2 specification, there are 3 states and a flag.
  249.  *
  250.  * In Non-Member state, we simply don't have a membership record.
  251.  * In Delaying Member state, our timer is running (inm->inm_timer)
  252.  * In Idle Member state, our timer is not running (inm->inm_timer==0)
  253.  *
  254.  * The flag is inm->inm_state, it is set to IGMP_OTHERMEMBER if
  255.  * we have heard a report from another member, or IGMP_IREPORTEDLAST
  256.  * if I sent the last report.
  257.  */
  258. switch (igmp->igmp_type) {
  259. case IGMP_MEMBERSHIP_QUERY:
  260. ++igmpstat.igps_rcv_queries;
  261. if (ifp->if_flags & IFF_LOOPBACK)
  262. break;
  263. if (igmp->igmp_code == 0) {
  264. /*
  265.  * Old router.  Remember that the querier on this
  266.  * interface is old, and set the timer to the
  267.  * value in RFC 1112.
  268.  */
  269. rti->rti_type = IGMP_V1_ROUTER;
  270. rti->rti_time = 0;
  271.                         if(_igmpQuerierTimeUpdateHook != NULL)
  272.                             _igmpQuerierTimeUpdateHook(rti->rti_ifp->if_index,
  273.                                                        rti->rti_time);
  274. timer = IGMP_MAX_HOST_REPORT_DELAY * PR_FASTHZ;
  275. if (ip->ip_dst.s_addr != igmp_all_hosts_group ||
  276.     igmp->igmp_group.s_addr != 0) {
  277. ++igmpstat.igps_rcv_badqueries;
  278. m_freem(m);
  279. #ifdef WV_INSTRUMENTATION
  280. #ifdef INCLUDE_WVNET    /* WV_NET_WARNING event */
  281.             WV_NET_DSTADDRIN_EVENT_3 (NET_CORE_EVENT, WV_NET_WARNING, 5, 4,  
  282.                                       ip->ip_dst.s_addr,
  283.                                       WV_NETEVENT_IGMPIN_BADADDR, WV_NET_RECV,
  284.                                       igmp->igmp_type, ip->ip_dst.s_addr, 0)
  285. #endif  /* INCLUDE_WVNET */
  286. #endif
  287. return;
  288. }
  289. } else {
  290. /*
  291.  * New router.  Simply do the new validity check.
  292.  */
  293. if (igmp->igmp_group.s_addr != 0 &&
  294.     !IN_MULTICAST(ntohl(igmp->igmp_group.s_addr))) {
  295. ++igmpstat.igps_rcv_badqueries;
  296. m_freem(m);
  297. #ifdef WV_INSTRUMENTATION
  298. #ifdef INCLUDE_WVNET    /* WV_NET_WARNING event */
  299.             WV_NET_DSTADDRIN_EVENT_3 (NET_CORE_EVENT, WV_NET_WARNING, 5, 4,  
  300.                                       ip->ip_dst.s_addr,
  301.                                       WV_NETEVENT_IGMPIN_BADADDR, WV_NET_RECV,
  302.                                       igmp->igmp_type, ip->ip_dst.s_addr, 0)
  303. #endif  /* INCLUDE_WVNET */
  304. #endif
  305. return;
  306. }
  307. }
  308. /*
  309.  * - Start the timers in all of our membership records
  310.  *   that the query applies to for the interface on
  311.  *   which the query arrived excl. those that belong
  312.  *   to the "all-hosts" group (224.0.0.1).
  313.  * - Restart any timer that is already running but has
  314.  *   a value longer than the requested timeout.
  315.  * - Use the value specified in the query message as
  316.  *   the maximum timeout.
  317.  */
  318.                 {
  319.                 IN_MULTI_HEAD * inMultiHead;
  320.                 int ix;
  321.                 for (ix = 0; ix <= mCastHashInfo.hashMask; ix++)
  322.                     {
  323.                     inMultiHead = &mCastHashInfo.hashBase [ix];
  324.                     if (inMultiHead != NULL)
  325.                         {
  326.                         for (inm = inMultiHead->lh_first;
  327.                              inm != NULL;
  328.                              inm = inm->inm_hash.le_next)
  329.                             {
  330.                             if (inm->inm_ifp == ifp &&
  331.                                 inm->inm_addr.s_addr != igmp_all_hosts_group &&
  332.                                 (igmp->igmp_group.s_addr == 0 ||
  333.                                  igmp->igmp_group.s_addr == inm->inm_addr.s_addr))
  334.                                 {
  335.                                 if (inm->inm_timer == 0 ||
  336.                                     inm->inm_timer > timer)
  337.                                     {
  338.                                     inm->inm_timer =
  339.                                         IGMP_RANDOM_DELAY(timer);
  340.                                     igmp_timers_are_running = 1;
  341.                                     }
  342.                                 }
  343.                             
  344.                             }
  345.                         }
  346.                     }
  347.                 }
  348.         
  349. break;
  350. case IGMP_V1_MEMBERSHIP_REPORT:
  351. case IGMP_V2_MEMBERSHIP_REPORT:
  352. /*
  353.  * For fast leave to work, we have to know that we are the
  354.  * last person to send a report for this group.  Reports
  355.  * can potentially get looped back if we are a multicast
  356.  * router, so discard reports sourced by me.
  357.  */
  358. IFP_TO_IA(ifp, ia);
  359. if (ia && ip->ip_src.s_addr == IA_SIN(ia)->sin_addr.s_addr)
  360. break;
  361. ++igmpstat.igps_rcv_reports;
  362. if (ifp->if_flags & IFF_LOOPBACK)
  363. break;
  364. if (!IN_MULTICAST(ntohl(igmp->igmp_group.s_addr))) {
  365. ++igmpstat.igps_rcv_badreports;
  366. m_freem(m);
  367. #ifdef WV_INSTRUMENTATION
  368. #ifdef INCLUDE_WVNET    /* WV_NET_WARNING event */
  369.             WV_NET_DSTADDRIN_EVENT_3 (NET_CORE_EVENT, WV_NET_WARNING, 5, 4,  
  370.                                       ip->ip_dst.s_addr,
  371.                                       WV_NETEVENT_IGMPIN_BADADDR, WV_NET_RECV,
  372.                                       igmp->igmp_type, ip->ip_dst.s_addr,
  373.                                       igmp->igmp_group.s_addr)
  374. #endif  /* INCLUDE_WVNET */
  375. #endif
  376. return;
  377. }
  378. /*
  379.  * KLUDGE: if the IP source address of the report has an
  380.  * unspecified (i.e., zero) subnet number, as is allowed for
  381.  * a booting host, replace it with the correct subnet number
  382.  * so that a process-level multicast routing demon can
  383.  * determine which subnet it arrived from.  This is necessary
  384.  * to compensate for the lack of any way for a process to
  385.  * determine the arrival interface of an incoming packet.
  386.  */
  387. if ((ntohl(ip->ip_src.s_addr) & IN_CLASSA_NET) == 0)
  388. if (ia) ip->ip_src.s_addr = htonl(ia->ia_subnet);
  389. /*
  390.  * If we belong to the group being reported, stop
  391.  * our timer for that group.
  392.  */
  393. IN_LOOKUP_MULTI(igmp->igmp_group, ifp, inm);
  394. if (inm != NULL) {
  395. inm->inm_timer = 0;
  396. ++igmpstat.igps_rcv_ourreports;
  397. inm->inm_state = IGMP_OTHERMEMBER;
  398. }
  399. break;
  400. }
  401. /*
  402.  * Pass all valid IGMP packets up to any process(es) listening
  403.  * on a raw IGMP socket.
  404.  */
  405. #ifdef WV_INSTRUMENTATION
  406. #ifdef INCLUDE_WVNET    /* WV_NET_NOTICE event */
  407.         WV_NET_ADDRIN_EVENT_2 (NET_CORE_EVENT, WV_NET_NOTICE, 5, 5,
  408.                                ip->ip_src.s_addr, ip->ip_dst.s_addr,
  409.                             WV_NETEVENT_IGMPIN_FINISH, WV_NET_RECV,
  410.                                ip->ip_src.s_addr, ip->ip_dst.s_addr)
  411. #endif  /* INCLUDE_WVNET */
  412. #endif
  413.         if (_igmpMessageHook) /* if IGMP routing is on */
  414.             {
  415.             _igmpMessageHook (m->m_pkthdr.rcvif->if_index,
  416.                          &(ip->ip_src), igmp);
  417.             m_freem(m);
  418.             }
  419.         else
  420.             rip_input(m);
  421. }
  422. void
  423. igmp_joingroup(inm)
  424. struct in_multi *inm;
  425. {
  426. int s = splnet();
  427.     
  428. #ifdef WV_INSTRUMENTATION
  429. #ifdef INCLUDE_WVNET    /* WV_NET_VERBOSE event */
  430.     WV_NET_MARKER_1 (NET_AUX_EVENT, WV_NET_VERBOSE, 16, 9,
  431.                      WV_NETEVENT_IGMPJOIN_START, inm->inm_addr.s_addr)
  432. #endif  /* INCLUDE_WVNET */
  433. #endif
  434.     
  435.         if (_igmpJoinAlertHook != NULL)
  436.             _igmpJoinAlertHook(inm->inm_ifp->if_index);
  437.     if (inm->inm_addr.s_addr == igmp_all_hosts_group
  438.         || inm->inm_ifp->if_flags & IFF_LOOPBACK) {
  439.     inm->inm_timer = 0;
  440.     inm->inm_state = IGMP_OTHERMEMBER;
  441.     } else {
  442.     inm->inm_rti = find_rti(inm->inm_ifp);
  443.     igmp_sendpkt(inm, inm->inm_rti->rti_type, 0);
  444. inm->inm_timer = IGMP_RANDOM_DELAY(IGMP_MAX_HOST_REPORT_DELAY *
  445.                                                              PR_FASTHZ);
  446. inm->inm_state = IGMP_IREPORTEDLAST;
  447. igmp_timers_are_running = 1;
  448. }
  449.     splx(s);
  450.     }
  451. void
  452. igmp_leavegroup(inm)
  453. struct in_multi *inm;
  454. {
  455. #ifdef WV_INSTRUMENTATION
  456. #ifdef INCLUDE_WVNET    /* WV_NET_VERBOSE event */
  457.          WV_NET_MARKER_1 (NET_AUX_EVENT, WV_NET_VERBOSE, 17, 10,
  458.                              WV_NETEVENT_IGMPLEAVE_START, inm->inm_addr.s_addr)
  459. #endif  /* INCLUDE_WVNET */
  460. #endif
  461.  if (_igmpLeaveAlertHook != NULL)
  462.             _igmpLeaveAlertHook(inm->inm_ifp->if_index);
  463.          if (inm->inm_state == IGMP_IREPORTEDLAST &&
  464.     inm->inm_addr.s_addr != igmp_all_hosts_group &&
  465.     !(inm->inm_ifp->if_flags & IFF_LOOPBACK) &&
  466.     inm->inm_rti->rti_type != IGMP_V1_ROUTER)
  467. igmp_sendpkt(inm, IGMP_V2_LEAVE_GROUP, igmp_all_rtrs_group);
  468. }
  469. void
  470. igmp_fasttimo()
  471. {
  472. register struct in_multi *inm;
  473. int s;
  474. #ifdef WV_INSTRUMENTATION
  475. #ifdef INCLUDE_WVNET    /* WV_NET_INFO event */
  476.         WV_NET_MARKER_0 (NET_AUX_EVENT, WV_NET_INFO, 4, 7,
  477.                          WV_NETEVENT_IGMPFASTTIMER_START)
  478. #endif  /* INCLUDE_WVNET */
  479. #endif
  480. /*
  481.  * Quick check to see if any work needs to be done, in order
  482.  * to minimize the overhead of fasttimo processing.
  483.  */
  484. if (!igmp_timers_are_running)
  485. return;
  486. s = splnet();
  487. igmp_timers_are_running = 0;
  488.         {
  489.         IN_MULTI_HEAD * inMultiHead;
  490.         int ix;
  491.         for (ix = 0; ix <= mCastHashInfo.hashMask; ix++)
  492.             {
  493.             inMultiHead = &mCastHashInfo.hashBase [ix];
  494.             if (inMultiHead != NULL)
  495.                 {
  496.                 for (inm = inMultiHead->lh_first;
  497.                      inm != NULL;
  498.                      inm = inm->inm_hash.le_next)
  499.                     {
  500.                     if (inm->inm_timer == 0)
  501.                         {
  502.                         /* do nothing */
  503.                         }
  504.                     else if (--inm->inm_timer == 0)
  505.                         {
  506. igmp_sendpkt(inm, inm->inm_rti->rti_type, 0);
  507. inm->inm_state = IGMP_IREPORTEDLAST;
  508. }
  509.                     else
  510.                         {
  511.                         igmp_timers_are_running = 1;
  512.                         }
  513.                     }
  514.                 }
  515.             }
  516.     }
  517. splx(s);
  518. }
  519. void
  520. igmp_slowtimo()
  521. {
  522. int s = splnet();
  523. register struct router_info *rti =  Head;
  524. #ifdef IGMP_DEBUG_XXX
  525. printf("[igmp.c,_slowtimo] -- > entering n");
  526. #endif
  527. while (rti) {
  528.     if (rti->rti_type == IGMP_V1_ROUTER) {
  529. rti->rti_time++;
  530.                 if(_igmpQuerierTimeUpdateHook != NULL)
  531.                             _igmpQuerierTimeUpdateHook(rti->rti_ifp->if_index, rti->rti_time);
  532. if (rti->rti_time >= IGMP_AGE_THRESHOLD) {
  533. rti->rti_type = IGMP_V2_ROUTER;
  534. }
  535.     }
  536.     rti = rti->rti_next;
  537. }
  538. #ifdef IGMP_DEBUG_XXX
  539. printf("[igmp.c,_slowtimo] -- > exiting n");
  540. #endif
  541. splx(s);
  542. }
  543. static struct route igmprt;
  544. static void
  545. igmp_sendpkt(inm, type, addr)
  546. struct in_multi *inm;
  547. int type;
  548. unsigned long addr;
  549. {
  550.         struct mbuf *m;
  551.         struct igmp *igmp;
  552.         struct ip *ip;
  553.         struct ip_moptions imo;
  554.         m = mHdrClGet(M_DONTWAIT, MT_HEADER, CL_SIZE_128, TRUE);
  555. if (m == NULL)
  556.             {
  557. #ifdef WV_INSTRUMENTATION
  558. #ifdef INCLUDE_WVNET    /* WV_NET_EMERGENCY event */
  559.             WV_NET_MARKER_0 (NET_AUX_EVENT, WV_NET_EMERGENCY, 8, 1,
  560.                             WV_NETEVENT_IGMPSENDREP_NOBUFS)
  561. #endif  /* INCLUDE_WVNET */
  562. #endif
  563.             return;
  564.             }
  565. m->m_pkthdr.rcvif = loif;
  566. m->m_pkthdr.len = sizeof(struct ip) + IGMP_MINLEN;
  567. MH_ALIGN(m, IGMP_MINLEN + sizeof(struct ip));
  568. m->m_data += sizeof(struct ip);
  569.         m->m_len = IGMP_MINLEN;
  570.         igmp = mtod(m, struct igmp *);
  571.         igmp->igmp_type   = type;
  572.         igmp->igmp_code   = 0;
  573.         igmp->igmp_group  = inm->inm_addr;
  574.         igmp->igmp_cksum  = 0;
  575.         igmp->igmp_cksum  = in_cksum(m, IGMP_MINLEN);
  576.         m->m_data -= sizeof(struct ip);
  577.         m->m_len += sizeof(struct ip);
  578.         ip = mtod(m, struct ip *);
  579.         ip->ip_tos        = 0;
  580.         ip->ip_len        = sizeof(struct ip) + IGMP_MINLEN;
  581.         ip->ip_off        = 0;
  582.         ip->ip_p          = IPPROTO_IGMP;
  583.         ip->ip_src.s_addr = INADDR_ANY;
  584.         ip->ip_dst.s_addr = addr ? addr : igmp->igmp_group.s_addr;
  585.         imo.imo_multicast_ifp  = inm->inm_ifp;
  586.         imo.imo_multicast_ttl  = 1;
  587. /* imo.imo_multicast_vif  = -1; */
  588.         /*
  589.          * Request loopback of the report if we are acting as a multicast
  590.          * router, so that the process-level routing demon can hear it.
  591.          */
  592.        imo.imo_multicast_loop = (_mCastRouteFwdHook != NULL);
  593. #ifdef WV_INSTRUMENTATION
  594. #ifdef INCLUDE_WVNET    /* WV_NET_NOTICE event */
  595.         WV_NET_DSTADDROUT_EVENT_1 (NET_CORE_EVENT, WV_NET_NOTICE, 6, 6,
  596.                                    ip->ip_dst.s_addr,
  597.                                    WV_NETEVENT_IGMPSENDREP_FINISH, WV_NET_SEND,
  598.                                    ip->ip_dst.s_addr)
  599. #endif  /* INCLUDE_WVNET */
  600. #endif
  601. /*
  602.  * XXX
  603.  * Do we have to worry about reentrancy here?  Don't think so.
  604.  */
  605.         ip_output(m, router_alert, &igmprt, 0, &imo);
  606.         ++igmpstat.igps_snd_reports;
  607. }