Home | History | Annotate | Line # | Download | only in mrouted
prune.c revision 1.15
      1  1.15   itojun /*	$NetBSD: prune.c,v 1.15 2003/09/06 12:45:00 itojun Exp $	*/
      2   1.2  thorpej 
      3   1.1  mycroft /*
      4   1.1  mycroft  * The mrouted program is covered by the license in the accompanying file
      5   1.1  mycroft  * named "LICENSE".  Use of the mrouted program represents acceptance of
      6   1.1  mycroft  * the terms and conditions listed in that file.
      7   1.1  mycroft  *
      8   1.1  mycroft  * The mrouted program is COPYRIGHT 1989 by The Board of Trustees of
      9   1.1  mycroft  * Leland Stanford Junior University.
     10   1.1  mycroft  */
     11   1.1  mycroft 
     12   1.1  mycroft 
     13   1.1  mycroft #include "defs.h"
     14   1.1  mycroft 
     15   1.1  mycroft extern int cache_lifetime;
     16   1.1  mycroft extern int max_prune_lifetime;
     17   1.1  mycroft extern struct rtentry *routing_table;
     18   1.1  mycroft 
     19   1.3  mycroft extern int phys_vif;
     20   1.3  mycroft 
     21   1.1  mycroft /*
     22   1.1  mycroft  * dither cache lifetime to obtain a value between x and 2*x
     23   1.1  mycroft  */
     24  1.15   itojun #define CACHE_LIFETIME(x) ((x) + (arc4random() % (x)))
     25   1.1  mycroft 
     26   1.1  mycroft #define CHK_GS(x, y) {	\
     27   1.1  mycroft 		switch(x) { \
     28   1.1  mycroft 			case 2:	\
     29   1.1  mycroft 			case 4:	\
     30   1.1  mycroft 			case 8:	\
     31   1.1  mycroft 			case 16: \
     32   1.1  mycroft 			case 32: \
     33   1.1  mycroft 			case 64: \
     34   1.1  mycroft 			case 128: \
     35   1.1  mycroft 			case 256: y = 1; \
     36   1.1  mycroft 				  break; \
     37   1.1  mycroft 			default:  y = 0; \
     38   1.1  mycroft 		} \
     39   1.1  mycroft 	}
     40   1.1  mycroft 
     41   1.1  mycroft struct gtable *kernel_table;		/* ptr to list of kernel grp entries*/
     42   1.1  mycroft static struct gtable *kernel_no_route;	/* list of grp entries w/o routes   */
     43   1.1  mycroft struct gtable *gtp;			/* pointer for kernel rt entries    */
     44   1.1  mycroft unsigned int kroutes;			/* current number of cache entries  */
     45   1.1  mycroft 
     46   1.1  mycroft /****************************************************************************
     47   1.1  mycroft                        Functions that are local to prune.c
     48   1.1  mycroft ****************************************************************************/
     49   1.9      wiz static void		prun_add_ttls(struct gtable *gt);
     50   1.9      wiz static int		pruning_neighbor(vifi_t vifi, u_int32_t addr);
     51   1.9      wiz static int		can_mtrace(vifi_t vifi, u_int32_t addr);
     52   1.9      wiz static struct ptable *	find_prune_entry(u_int32_t vr, struct ptable *pt);
     53   1.9      wiz static void		expire_prune(vifi_t vifi, struct gtable *gt);
     54   1.9      wiz static void		send_prune(struct gtable *gt);
     55   1.9      wiz static void		send_graft(struct gtable *gt);
     56   1.9      wiz static void		send_graft_ack(u_int32_t src, u_int32_t dst,
     57   1.9      wiz 				       u_int32_t origin, u_int32_t grp);
     58   1.9      wiz static void		update_kernel(struct gtable *g);
     59   1.9      wiz static char *		scaletime(u_long t);
     60   1.1  mycroft 
     61   1.1  mycroft /*
     62   1.1  mycroft  * Updates the ttl values for each vif.
     63   1.1  mycroft  */
     64   1.1  mycroft static void
     65   1.9      wiz prun_add_ttls(struct gtable *gt)
     66   1.1  mycroft {
     67   1.1  mycroft     struct uvif *v;
     68   1.1  mycroft     vifi_t vifi;
     69   1.1  mycroft 
     70   1.1  mycroft     for (vifi = 0, v = uvifs; vifi < numvifs; ++vifi, ++v) {
     71   1.1  mycroft 	if (VIFM_ISSET(vifi, gt->gt_grpmems))
     72   1.1  mycroft 	    gt->gt_ttls[vifi] = v->uv_threshold;
     73   1.1  mycroft 	else
     74   1.1  mycroft 	    gt->gt_ttls[vifi] = 0;
     75   1.1  mycroft     }
     76   1.1  mycroft }
     77   1.1  mycroft 
     78   1.1  mycroft /*
     79   1.1  mycroft  * checks for scoped multicast addresses
     80   1.1  mycroft  */
     81   1.1  mycroft #define GET_SCOPE(gt) { \
     82   1.9      wiz 	vifi_t _i; \
     83   1.1  mycroft 	if ((ntohl((gt)->gt_mcastgrp) & 0xff000000) == 0xef000000) \
     84   1.1  mycroft 	    for (_i = 0; _i < numvifs; _i++) \
     85   1.1  mycroft 		if (scoped_addr(_i, (gt)->gt_mcastgrp)) \
     86   1.1  mycroft 		    VIFM_SET(_i, (gt)->gt_scope); \
     87   1.1  mycroft 	}
     88   1.1  mycroft 
     89   1.1  mycroft int
     90   1.9      wiz scoped_addr(vifi_t vifi, u_int32_t addr)
     91   1.1  mycroft {
     92   1.1  mycroft     struct vif_acl *acl;
     93   1.1  mycroft 
     94   1.1  mycroft     for (acl = uvifs[vifi].uv_acl; acl; acl = acl->acl_next)
     95   1.1  mycroft 	if ((addr & acl->acl_mask) == acl->acl_addr)
     96   1.1  mycroft 	    return 1;
     97   1.1  mycroft 
     98   1.1  mycroft     return 0;
     99   1.1  mycroft }
    100   1.1  mycroft 
    101   1.1  mycroft /*
    102   1.1  mycroft  * Determine if mcastgrp has a listener on vifi
    103   1.1  mycroft  */
    104   1.1  mycroft int
    105   1.9      wiz grplst_mem(vifi_t vifi, u_int32_t mcastgrp)
    106   1.1  mycroft {
    107   1.9      wiz     struct listaddr *g;
    108   1.9      wiz     struct uvif *v;
    109   1.1  mycroft 
    110   1.1  mycroft     v = &uvifs[vifi];
    111   1.1  mycroft 
    112   1.1  mycroft     for (g = v->uv_groups; g != NULL; g = g->al_next)
    113   1.1  mycroft 	if (mcastgrp == g->al_addr)
    114   1.1  mycroft 	    return 1;
    115   1.1  mycroft 
    116   1.1  mycroft     return 0;
    117   1.1  mycroft }
    118   1.1  mycroft 
    119   1.1  mycroft /*
    120   1.1  mycroft  * Finds the group entry with the specified source and netmask.
    121   1.1  mycroft  * If netmask is 0, it uses the route's netmask.
    122   1.1  mycroft  *
    123   1.1  mycroft  * Returns TRUE if found a match, and the global variable gtp is left
    124   1.1  mycroft  * pointing to entry before the found entry.
    125   1.1  mycroft  * Returns FALSE if no exact match found, gtp is left pointing to before
    126   1.1  mycroft  * the entry in question belongs, or is NULL if the it belongs at the
    127   1.1  mycroft  * head of the list.
    128   1.1  mycroft  */
    129   1.1  mycroft int
    130   1.9      wiz find_src_grp(u_int32_t src, u_int32_t mask, u_int32_t grp)
    131   1.1  mycroft {
    132   1.1  mycroft     struct gtable *gt;
    133   1.1  mycroft 
    134   1.1  mycroft     gtp = NULL;
    135   1.1  mycroft     gt = kernel_table;
    136   1.1  mycroft     while (gt != NULL) {
    137   1.1  mycroft 	if (grp == gt->gt_mcastgrp &&
    138   1.1  mycroft 	    (mask ? (gt->gt_route->rt_origin == src &&
    139   1.1  mycroft 		     gt->gt_route->rt_originmask == mask) :
    140   1.1  mycroft 		    ((src & gt->gt_route->rt_originmask) ==
    141   1.1  mycroft 		     gt->gt_route->rt_origin)))
    142   1.1  mycroft 	    return TRUE;
    143   1.1  mycroft 	if (ntohl(grp) > ntohl(gt->gt_mcastgrp) ||
    144   1.1  mycroft 	    (grp == gt->gt_mcastgrp &&
    145   1.1  mycroft 	     (ntohl(mask) < ntohl(gt->gt_route->rt_originmask) ||
    146   1.1  mycroft 	      (mask == gt->gt_route->rt_originmask &&
    147   1.1  mycroft 	       (ntohl(src) > ntohl(gt->gt_route->rt_origin)))))) {
    148   1.1  mycroft 	    gtp = gt;
    149   1.1  mycroft 	    gt = gt->gt_gnext;
    150   1.1  mycroft 	}
    151   1.1  mycroft 	else break;
    152   1.1  mycroft     }
    153   1.1  mycroft     return FALSE;
    154   1.1  mycroft }
    155   1.1  mycroft 
    156   1.1  mycroft /*
    157   1.1  mycroft  * Check if the neighbor supports pruning
    158   1.1  mycroft  */
    159   1.1  mycroft static int
    160   1.9      wiz pruning_neighbor(vifi_t vifi, u_int32_t addr)
    161   1.1  mycroft {
    162   1.1  mycroft     struct listaddr *n = neighbor_info(vifi, addr);
    163   1.1  mycroft     int vers;
    164   1.1  mycroft 
    165   1.1  mycroft     if (n == NULL)
    166   1.1  mycroft 	return 0;
    167   1.1  mycroft 
    168   1.1  mycroft     if (n->al_flags & NF_PRUNE)
    169   1.1  mycroft 	return 1;
    170   1.1  mycroft 
    171   1.1  mycroft     /*
    172   1.1  mycroft      * Versions from 3.0 to 3.4 relied on the version number to identify
    173   1.1  mycroft      * that they could handle pruning.
    174   1.1  mycroft      */
    175   1.1  mycroft     vers = NBR_VERS(n);
    176   1.1  mycroft     return (vers >= 0x0300 && vers <= 0x0304);
    177   1.1  mycroft }
    178   1.1  mycroft 
    179   1.1  mycroft /*
    180   1.1  mycroft  * Can the neighbor in question handle multicast traceroute?
    181   1.1  mycroft  */
    182   1.1  mycroft static int
    183   1.9      wiz can_mtrace(vifi_t vifi, u_int32_t addr)
    184   1.1  mycroft {
    185   1.1  mycroft     struct listaddr *n = neighbor_info(vifi, addr);
    186   1.1  mycroft     int vers;
    187   1.1  mycroft 
    188   1.1  mycroft     if (n == NULL)
    189   1.1  mycroft 	return 0;
    190   1.1  mycroft 
    191   1.1  mycroft     if (n->al_flags & NF_MTRACE)
    192   1.1  mycroft 	return 1;
    193   1.1  mycroft 
    194   1.1  mycroft     /*
    195   1.1  mycroft      * Versions 3.3 and 3.4 relied on the version number to identify
    196   1.1  mycroft      * that they could handle traceroute.
    197   1.1  mycroft      */
    198   1.1  mycroft     vers = NBR_VERS(n);
    199   1.1  mycroft     return (vers >= 0x0303 && vers <= 0x0304);
    200   1.1  mycroft }
    201   1.1  mycroft 
    202   1.1  mycroft /*
    203   1.1  mycroft  * Returns the prune entry of the router, or NULL if none exists
    204   1.1  mycroft  */
    205   1.1  mycroft static struct ptable *
    206   1.9      wiz find_prune_entry(u_int32_t vr, struct ptable *pt)
    207   1.1  mycroft {
    208   1.1  mycroft     while (pt) {
    209   1.1  mycroft 	if (pt->pt_router == vr)
    210   1.1  mycroft 	    return pt;
    211   1.1  mycroft 	pt = pt->pt_next;
    212   1.1  mycroft     }
    213   1.1  mycroft 
    214   1.1  mycroft     return NULL;
    215   1.1  mycroft }
    216   1.1  mycroft 
    217   1.1  mycroft /*
    218   1.1  mycroft  * Send a prune message to the dominant router for
    219   1.1  mycroft  * this source.
    220   1.1  mycroft  *
    221   1.1  mycroft  * Record an entry that a prune was sent for this group
    222   1.1  mycroft  */
    223   1.1  mycroft static void
    224   1.9      wiz send_prune(struct gtable *gt)
    225   1.1  mycroft {
    226   1.1  mycroft     struct ptable *pt;
    227   1.1  mycroft     char *p;
    228   1.1  mycroft     int i;
    229   1.1  mycroft     int datalen;
    230   1.1  mycroft     u_int32_t src;
    231   1.1  mycroft     u_int32_t dst;
    232   1.1  mycroft     u_int32_t tmp;
    233   1.1  mycroft 
    234   1.1  mycroft     /* Don't process any prunes if router is not pruning */
    235   1.1  mycroft     if (pruning == 0)
    236   1.1  mycroft 	return;
    237   1.1  mycroft 
    238   1.1  mycroft     /* Can't process a prune if we don't have an associated route */
    239   1.1  mycroft     if (gt->gt_route == NULL)
    240   1.1  mycroft 	return;
    241   1.1  mycroft 
    242   1.1  mycroft     /* Don't send a prune to a non-pruning router */
    243   1.1  mycroft     if (!pruning_neighbor(gt->gt_route->rt_parent, gt->gt_route->rt_gateway))
    244   1.1  mycroft 	return;
    245   1.1  mycroft 
    246   1.1  mycroft     /*
    247   1.1  mycroft      * sends a prune message to the router upstream.
    248   1.1  mycroft      */
    249   1.1  mycroft     src = uvifs[gt->gt_route->rt_parent].uv_lcl_addr;
    250   1.1  mycroft     dst = gt->gt_route->rt_gateway;
    251   1.1  mycroft 
    252   1.1  mycroft     p = send_buf + MIN_IP_HEADER_LEN + IGMP_MINLEN;
    253   1.1  mycroft     datalen = 0;
    254   1.1  mycroft 
    255   1.1  mycroft     /*
    256   1.1  mycroft      * determine prune lifetime
    257   1.1  mycroft      */
    258   1.1  mycroft     gt->gt_prsent_timer = gt->gt_timer;
    259   1.1  mycroft     for (pt = gt->gt_pruntbl; pt; pt = pt->pt_next)
    260   1.1  mycroft 	if (pt->pt_timer < gt->gt_prsent_timer)
    261   1.1  mycroft 	    gt->gt_prsent_timer = pt->pt_timer;
    262   1.1  mycroft 
    263   1.1  mycroft     /*
    264   1.1  mycroft      * If we have a graft pending, cancel graft retransmission
    265   1.1  mycroft      */
    266   1.1  mycroft     gt->gt_grftsnt = 0;
    267   1.1  mycroft 
    268   1.1  mycroft     for (i = 0; i < 4; i++)
    269   1.1  mycroft 	*p++ = ((char *)&(gt->gt_route->rt_origin))[i];
    270   1.1  mycroft     for (i = 0; i < 4; i++)
    271   1.1  mycroft 	*p++ = ((char *)&(gt->gt_mcastgrp))[i];
    272   1.1  mycroft     tmp = htonl(gt->gt_prsent_timer);
    273   1.1  mycroft     for (i = 0; i < 4; i++)
    274   1.1  mycroft 	*p++ = ((char *)&(tmp))[i];
    275   1.1  mycroft     datalen += 12;
    276   1.1  mycroft 
    277   1.1  mycroft     send_igmp(src, dst, IGMP_DVMRP, DVMRP_PRUNE,
    278   1.1  mycroft 	      htonl(MROUTED_LEVEL), datalen);
    279   1.1  mycroft 
    280  1.11      wiz     logit(LOG_DEBUG, 0, "sent prune for (%s %s)/%d on vif %d to %s",
    281  1.14      dsl       inet_fmts(gt->gt_route->rt_origin, gt->gt_route->rt_originmask),
    282  1.14      dsl       inet_fmt(gt->gt_mcastgrp),
    283   1.1  mycroft       gt->gt_prsent_timer, gt->gt_route->rt_parent,
    284  1.14      dsl       inet_fmt(gt->gt_route->rt_gateway));
    285   1.1  mycroft }
    286   1.1  mycroft 
    287   1.1  mycroft /*
    288   1.1  mycroft  * a prune was sent upstream
    289   1.1  mycroft  * so, a graft has to be sent to annul the prune
    290   1.1  mycroft  * set up a graft timer so that if an ack is not
    291   1.1  mycroft  * heard within that time, another graft request
    292   1.1  mycroft  * is sent out.
    293   1.1  mycroft  */
    294   1.1  mycroft static void
    295   1.9      wiz send_graft(struct gtable *gt)
    296   1.1  mycroft {
    297   1.9      wiz     char *p;
    298   1.9      wiz     int i;
    299   1.1  mycroft     int datalen;
    300   1.1  mycroft     u_int32_t src;
    301   1.1  mycroft     u_int32_t dst;
    302   1.1  mycroft 
    303   1.1  mycroft     /* Can't send a graft without an associated route */
    304   1.1  mycroft     if (gt->gt_route == NULL)
    305   1.1  mycroft 	return;
    306   1.1  mycroft 
    307   1.1  mycroft     src = uvifs[gt->gt_route->rt_parent].uv_lcl_addr;
    308   1.1  mycroft     dst = gt->gt_route->rt_gateway;
    309   1.1  mycroft 
    310   1.1  mycroft     p = send_buf + MIN_IP_HEADER_LEN + IGMP_MINLEN;
    311   1.1  mycroft     datalen = 0;
    312   1.1  mycroft 
    313   1.1  mycroft     for (i = 0; i < 4; i++)
    314   1.1  mycroft 	*p++ = ((char *)&(gt->gt_route->rt_origin))[i];
    315   1.1  mycroft     for (i = 0; i < 4; i++)
    316   1.1  mycroft 	*p++ = ((char *)&(gt->gt_mcastgrp))[i];
    317   1.1  mycroft     datalen += 8;
    318   1.1  mycroft 
    319   1.1  mycroft     if (datalen != 0) {
    320   1.1  mycroft 	send_igmp(src, dst, IGMP_DVMRP, DVMRP_GRAFT,
    321   1.1  mycroft 		  htonl(MROUTED_LEVEL), datalen);
    322   1.1  mycroft     }
    323  1.11      wiz     logit(LOG_DEBUG, 0, "sent graft for (%s %s) to %s on vif %d",
    324  1.14      dsl 	inet_fmts(gt->gt_route->rt_origin, gt->gt_route->rt_originmask),
    325  1.14      dsl 	inet_fmt(gt->gt_mcastgrp),
    326  1.14      dsl 	inet_fmt(gt->gt_route->rt_gateway),
    327  1.13   itojun 	gt->gt_route->rt_parent);
    328   1.1  mycroft }
    329   1.1  mycroft 
    330   1.1  mycroft /*
    331   1.1  mycroft  * Send an ack that a graft was received
    332   1.1  mycroft  */
    333   1.1  mycroft static void
    334   1.9      wiz send_graft_ack(u_int32_t src, u_int32_t dst, u_int32_t origin, u_int32_t grp)
    335   1.1  mycroft {
    336   1.9      wiz     char *p;
    337   1.9      wiz     int i;
    338   1.1  mycroft     int datalen;
    339   1.1  mycroft 
    340   1.1  mycroft     p = send_buf + MIN_IP_HEADER_LEN + IGMP_MINLEN;
    341   1.1  mycroft     datalen = 0;
    342   1.1  mycroft 
    343   1.1  mycroft     for (i = 0; i < 4; i++)
    344   1.1  mycroft 	*p++ = ((char *)&(origin))[i];
    345   1.1  mycroft     for (i = 0; i < 4; i++)
    346   1.1  mycroft 	*p++ = ((char *)&(grp))[i];
    347   1.1  mycroft     datalen += 8;
    348   1.1  mycroft 
    349   1.1  mycroft     send_igmp(src, dst, IGMP_DVMRP, DVMRP_GRAFT_ACK,
    350   1.1  mycroft 	      htonl(MROUTED_LEVEL), datalen);
    351   1.1  mycroft 
    352  1.11      wiz     logit(LOG_DEBUG, 0, "sent graft ack for (%s, %s) to %s",
    353  1.14      dsl 	inet_fmt(origin), inet_fmt(grp),
    354  1.14      dsl 	inet_fmt(dst));
    355   1.1  mycroft }
    356   1.1  mycroft 
    357   1.1  mycroft /*
    358   1.1  mycroft  * Update the kernel cache with all the routes hanging off the group entry
    359   1.1  mycroft  */
    360   1.1  mycroft static void
    361   1.9      wiz update_kernel(struct gtable *g)
    362   1.1  mycroft {
    363   1.1  mycroft     struct stable *st;
    364   1.1  mycroft 
    365   1.1  mycroft     for (st = g->gt_srctbl; st; st = st->st_next)
    366   1.1  mycroft 	k_add_rg(st->st_origin, g);
    367   1.1  mycroft }
    368   1.1  mycroft 
    369   1.1  mycroft /****************************************************************************
    370   1.1  mycroft                           Functions that are used externally
    371   1.1  mycroft ****************************************************************************/
    372   1.1  mycroft 
    373   1.1  mycroft #ifdef SNMP
    374   1.1  mycroft #include <sys/types.h>
    375   1.1  mycroft #include "snmp.h"
    376   1.1  mycroft 
    377   1.1  mycroft /*
    378   1.1  mycroft  * Find a specific group entry in the group table
    379   1.1  mycroft  */
    380   1.1  mycroft struct gtable *
    381  1.12      wiz find_grp(u_long grp)
    382   1.1  mycroft {
    383   1.1  mycroft    struct gtable *gt;
    384   1.1  mycroft 
    385   1.1  mycroft    for (gt = kernel_table; gt; gt = gt->gt_gnext) {
    386   1.1  mycroft       if (ntohl(grp) < ntohl(gt->gt_mcastgrp))
    387   1.1  mycroft       	 break;
    388   1.1  mycroft       if (gt->gt_mcastgrp == grp)
    389   1.1  mycroft          return gt;
    390   1.1  mycroft    }
    391   1.1  mycroft    return NULL;
    392   1.1  mycroft }
    393   1.1  mycroft 
    394   1.1  mycroft /*
    395   1.1  mycroft  * Given a group entry and source, find the corresponding source table
    396   1.1  mycroft  * entry
    397   1.1  mycroft  */
    398   1.1  mycroft struct stable *
    399   1.9      wiz find_grp_src(struct gtable *gt, u_long src)
    400   1.1  mycroft {
    401   1.1  mycroft    struct stable *st;
    402   1.1  mycroft    u_long grp = gt->gt_mcastgrp;
    403   1.1  mycroft    struct gtable *gtcurr;
    404   1.1  mycroft 
    405   1.1  mycroft    for (gtcurr = gt; gtcurr->gt_mcastgrp == grp; gtcurr = gtcurr->gt_gnext) {
    406   1.1  mycroft       for (st = gtcurr->gt_srctbl; st; st = st->st_next)
    407   1.1  mycroft 	 if (st->st_origin == src)
    408   1.1  mycroft 	    return st;
    409   1.1  mycroft    }
    410   1.1  mycroft    return NULL;
    411   1.1  mycroft }
    412   1.1  mycroft 
    413   1.1  mycroft /*
    414   1.1  mycroft  * Find next entry > specification
    415   1.9      wiz  *
    416   1.9      wiz  * gtpp: ordered by group
    417   1.9      wiz  * stpp: ordered by source
    418   1.1  mycroft  */
    419   1.1  mycroft int
    420   1.9      wiz next_grp_src_mask(struct gtable **gtpp, struct stable **stpp, u_long grp,
    421   1.9      wiz 		  u_long src, u_long mask)
    422   1.1  mycroft {
    423   1.1  mycroft    struct gtable *gt, *gbest = NULL;
    424   1.1  mycroft    struct stable *st, *sbest = NULL;
    425   1.1  mycroft 
    426   1.1  mycroft    /* Find first group entry >= grp spec */
    427   1.1  mycroft    (*gtpp) = kernel_table;
    428   1.1  mycroft    while ((*gtpp) && ntohl((*gtpp)->gt_mcastgrp) < ntohl(grp))
    429   1.1  mycroft       (*gtpp)=(*gtpp)->gt_gnext;
    430   1.1  mycroft    if (!(*gtpp))
    431   1.1  mycroft       return 0; /* no more groups */
    432   1.1  mycroft 
    433   1.1  mycroft    for (gt = kernel_table; gt; gt=gt->gt_gnext) {
    434   1.1  mycroft       /* Since grps are ordered, we can stop when group changes from gbest */
    435   1.1  mycroft       if (gbest && gbest->gt_mcastgrp != gt->gt_mcastgrp)
    436   1.1  mycroft          break;
    437   1.1  mycroft       for (st = gt->gt_srctbl; st; st=st->st_next) {
    438   1.1  mycroft 
    439   1.1  mycroft          /* Among those entries > spec, find "lowest" one */
    440   1.1  mycroft          if (((ntohl(gt->gt_mcastgrp)> ntohl(grp))
    441   1.1  mycroft            || (ntohl(gt->gt_mcastgrp)==ntohl(grp)
    442   1.1  mycroft               && ntohl(st->st_origin)> ntohl(src))
    443   1.1  mycroft            || (ntohl(gt->gt_mcastgrp)==ntohl(grp)
    444   1.1  mycroft               && ntohl(st->st_origin)==src && 0xFFFFFFFF>ntohl(mask)))
    445   1.1  mycroft           && (!gbest
    446   1.1  mycroft            || (ntohl(gt->gt_mcastgrp)< ntohl(gbest->gt_mcastgrp))
    447   1.1  mycroft            || (ntohl(gt->gt_mcastgrp)==ntohl(gbest->gt_mcastgrp)
    448   1.1  mycroft               && ntohl(st->st_origin)< ntohl(sbest->st_origin)))) {
    449   1.1  mycroft                gbest = gt;
    450   1.1  mycroft                sbest = st;
    451   1.1  mycroft          }
    452   1.1  mycroft       }
    453   1.1  mycroft    }
    454   1.1  mycroft    (*gtpp) = gbest;
    455   1.1  mycroft    (*stpp) = sbest;
    456   1.1  mycroft    return (*gtpp)!=0;
    457   1.1  mycroft }
    458   1.1  mycroft 
    459   1.1  mycroft /*
    460   1.1  mycroft  * Ensure that sg contains current information for the given group,source.
    461   1.1  mycroft  * This is fetched from the kernel as a unit so that counts for the entry
    462   1.1  mycroft  * are consistent, i.e. packet and byte counts for the same entry are
    463   1.1  mycroft  * read at the same time.
    464   1.1  mycroft  */
    465   1.1  mycroft void
    466   1.9      wiz refresh_sg(struct sioc_sg_req *sg, struct gtable *gt, struct stable *st)
    467   1.1  mycroft {
    468   1.1  mycroft    static   int lastq = -1;
    469   1.1  mycroft 
    470   1.1  mycroft    if (quantum != lastq || sg->src.s_addr!=st->st_origin
    471   1.1  mycroft     || sg->grp.s_addr!=gt->gt_mcastgrp) {
    472   1.1  mycroft        lastq = quantum;
    473   1.1  mycroft        sg->src.s_addr = st->st_origin;
    474   1.1  mycroft        sg->grp.s_addr = gt->gt_mcastgrp;
    475   1.6      hwr        ioctl(igmp_socket, SIOCGETSGCNT, (char *)sg);
    476   1.1  mycroft    }
    477   1.1  mycroft }
    478   1.1  mycroft 
    479   1.1  mycroft /*
    480   1.1  mycroft  * Return pointer to a specific route entry.  This must be a separate
    481   1.1  mycroft  * function from find_route() which modifies rtp.
    482   1.1  mycroft  */
    483   1.1  mycroft struct rtentry *
    484   1.9      wiz snmp_find_route(u_long src, u_long mask)
    485   1.1  mycroft {
    486   1.9      wiz     struct rtentry *rt;
    487   1.1  mycroft 
    488   1.1  mycroft    for (rt = routing_table; rt; rt = rt->rt_next) {
    489   1.1  mycroft       if (src == rt->rt_origin && mask == rt->rt_originmask)
    490   1.1  mycroft          return rt;
    491   1.1  mycroft    }
    492   1.1  mycroft    return NULL;
    493   1.1  mycroft }
    494   1.1  mycroft 
    495   1.1  mycroft /*
    496   1.1  mycroft  * Find next route entry > specification
    497   1.1  mycroft  */
    498   1.1  mycroft int
    499   1.9      wiz next_route(struct rtentry **rtpp, u_long src, u_long mask)
    500   1.1  mycroft {
    501   1.1  mycroft    struct rtentry *rt, *rbest = NULL;
    502   1.1  mycroft 
    503   1.1  mycroft    /* Among all entries > spec, find "lowest" one in order */
    504   1.1  mycroft    for (rt = routing_table; rt; rt=rt->rt_next) {
    505   1.1  mycroft       if ((ntohl(rt->rt_origin) > ntohl(src)
    506   1.1  mycroft           || (ntohl(rt->rt_origin) == ntohl(src)
    507   1.1  mycroft              && ntohl(rt->rt_originmask) > ntohl(mask)))
    508   1.1  mycroft        && (!rbest || (ntohl(rt->rt_origin) < ntohl(rbest->rt_origin))
    509   1.1  mycroft           || (ntohl(rt->rt_origin) == ntohl(rbest->rt_origin)
    510   1.1  mycroft              && ntohl(rt->rt_originmask) < ntohl(rbest->rt_originmask))))
    511   1.1  mycroft                rbest = rt;
    512   1.1  mycroft    }
    513   1.1  mycroft    (*rtpp) = rbest;
    514   1.1  mycroft    return (*rtpp)!=0;
    515   1.1  mycroft }
    516   1.1  mycroft 
    517   1.1  mycroft /*
    518   1.1  mycroft  * Given a routing table entry, and a vifi, find the next vifi/entry
    519   1.9      wiz  *
    520   1.9      wiz  * vifi: vifi at which to start looking
    521   1.1  mycroft  */
    522   1.1  mycroft int
    523   1.9      wiz next_route_child(struct rtentry **rtpp, u_long src, u_long mask, vifi_t *vifi)
    524   1.1  mycroft {
    525   1.1  mycroft    struct rtentry *rt;
    526   1.1  mycroft 
    527   1.1  mycroft    /* Get (S,M) entry */
    528   1.1  mycroft    if (!((*rtpp) = snmp_find_route(src,mask)))
    529   1.1  mycroft       if (!next_route(rtpp, src, mask))
    530   1.1  mycroft          return 0;
    531   1.1  mycroft 
    532   1.1  mycroft    /* Continue until we get one with a valid next vif */
    533   1.1  mycroft    do {
    534   1.1  mycroft       for (; (*rtpp)->rt_children && *vifi<numvifs; (*vifi)++)
    535   1.1  mycroft          if (VIFM_ISSET(*vifi, (*rtpp)->rt_children))
    536   1.1  mycroft             return 1;
    537   1.1  mycroft       *vifi = 0;
    538   1.1  mycroft    } while( next_route(rtpp, (*rtpp)->rt_origin, (*rtpp)->rt_originmask) );
    539   1.1  mycroft 
    540   1.1  mycroft    return 0;
    541   1.1  mycroft }
    542   1.1  mycroft 
    543   1.1  mycroft /*
    544   1.1  mycroft  * Given a routing table entry, and a vifi, find the next entry
    545   1.1  mycroft  * equal to or greater than those
    546   1.9      wiz  *
    547   1.9      wiz  * vifi: vifi at which to start looking
    548   1.1  mycroft  */
    549   1.1  mycroft int
    550   1.9      wiz next_child(struct gtable **gtpp, struct stable **stpp, u_long grp, u_long src,
    551   1.9      wiz 	   u_long mask, vifi_t *vifi)
    552   1.1  mycroft {
    553   1.1  mycroft    struct stable *st;
    554   1.1  mycroft 
    555   1.1  mycroft    /* Get (G,S,M) entry */
    556   1.1  mycroft    if (mask!=0xFFFFFFFF
    557   1.1  mycroft     || !((*gtpp) = find_grp(grp))
    558   1.1  mycroft     || !((*stpp) = find_grp_src((*gtpp),src)))
    559   1.1  mycroft       if (!next_grp_src_mask(gtpp, stpp, grp, src, mask))
    560   1.1  mycroft          return 0;
    561   1.1  mycroft 
    562   1.1  mycroft    /* Continue until we get one with a valid next vif */
    563   1.1  mycroft    do {
    564   1.1  mycroft       for (; (*gtpp)->gt_route->rt_children && *vifi<numvifs; (*vifi)++)
    565   1.1  mycroft          if (VIFM_ISSET(*vifi, (*gtpp)->gt_route->rt_children))
    566   1.1  mycroft             return 1;
    567   1.1  mycroft       *vifi = 0;
    568   1.1  mycroft    } while (next_grp_src_mask(gtpp, stpp, (*gtpp)->gt_mcastgrp,
    569   1.1  mycroft 		(*stpp)->st_origin, 0xFFFFFFFF) );
    570   1.1  mycroft 
    571   1.1  mycroft    return 0;
    572   1.1  mycroft }
    573   1.1  mycroft #endif /* SNMP */
    574   1.1  mycroft 
    575   1.1  mycroft /*
    576   1.1  mycroft  * Initialize the kernel table structure
    577   1.1  mycroft  */
    578   1.1  mycroft void
    579   1.9      wiz init_ktable(void)
    580   1.1  mycroft {
    581   1.1  mycroft     kernel_table 	= NULL;
    582   1.1  mycroft     kernel_no_route	= NULL;
    583   1.1  mycroft     kroutes		= 0;
    584   1.1  mycroft }
    585   1.1  mycroft 
    586   1.1  mycroft /*
    587   1.1  mycroft  * Add a new table entry for (origin, mcastgrp)
    588   1.1  mycroft  */
    589   1.1  mycroft void
    590   1.9      wiz add_table_entry(u_int32_t origin, u_int32_t mcastgrp)
    591   1.1  mycroft {
    592   1.1  mycroft     struct rtentry *r;
    593   1.1  mycroft     struct gtable *gt,**gtnp,*prev_gt;
    594   1.1  mycroft     struct stable *st,**stnp;
    595   1.3  mycroft     vifi_t i;
    596   1.3  mycroft 
    597   1.3  mycroft #ifdef DEBUG_MFC
    598   1.3  mycroft     md_log(MD_MISS, origin, mcastgrp);
    599   1.3  mycroft #endif
    600   1.1  mycroft 
    601   1.1  mycroft     r = determine_route(origin);
    602   1.1  mycroft     prev_gt = NULL;
    603   1.1  mycroft     if (r == NULL) {
    604   1.1  mycroft 	/*
    605   1.1  mycroft 	 * Look for it on the no_route table; if it is found then
    606   1.1  mycroft 	 * it will be detected as a duplicate below.
    607   1.1  mycroft 	 */
    608   1.1  mycroft 	for (gt = kernel_no_route; gt; gt = gt->gt_next)
    609   1.1  mycroft 	    if (mcastgrp == gt->gt_mcastgrp &&
    610   1.1  mycroft 		gt->gt_srctbl && gt->gt_srctbl->st_origin == origin)
    611   1.1  mycroft 			break;
    612   1.1  mycroft 	gtnp = &kernel_no_route;
    613   1.1  mycroft     } else {
    614   1.1  mycroft 	gtnp = &r->rt_groups;
    615   1.1  mycroft 	while ((gt = *gtnp) != NULL) {
    616   1.1  mycroft 	    if (gt->gt_mcastgrp >= mcastgrp)
    617   1.1  mycroft 		break;
    618   1.1  mycroft 	    gtnp = &gt->gt_next;
    619   1.1  mycroft 	    prev_gt = gt;
    620   1.1  mycroft 	}
    621   1.1  mycroft     }
    622   1.1  mycroft 
    623   1.1  mycroft     if (gt == NULL || gt->gt_mcastgrp != mcastgrp) {
    624   1.1  mycroft 	gt = (struct gtable *)malloc(sizeof(struct gtable));
    625   1.1  mycroft 	if (gt == NULL)
    626  1.11      wiz 	    logit(LOG_ERR, 0, "ran out of memory");
    627   1.1  mycroft 
    628   1.1  mycroft 	gt->gt_mcastgrp	    = mcastgrp;
    629   1.1  mycroft 	gt->gt_timer   	    = CACHE_LIFETIME(cache_lifetime);
    630   1.1  mycroft 	time(&gt->gt_ctime);
    631   1.1  mycroft 	gt->gt_grpmems	    = 0;
    632   1.1  mycroft 	gt->gt_scope	    = 0;
    633   1.1  mycroft 	gt->gt_prsent_timer = 0;
    634   1.1  mycroft 	gt->gt_grftsnt	    = 0;
    635   1.1  mycroft 	gt->gt_srctbl	    = NULL;
    636   1.1  mycroft 	gt->gt_pruntbl	    = NULL;
    637   1.1  mycroft 	gt->gt_route	    = r;
    638   1.3  mycroft #ifdef RSRR
    639   1.3  mycroft 	gt->gt_rsrr_cache   = NULL;
    640   1.3  mycroft #endif
    641   1.1  mycroft 
    642   1.1  mycroft 	if (r != NULL) {
    643   1.1  mycroft 	    /* obtain the multicast group membership list */
    644   1.1  mycroft 	    for (i = 0; i < numvifs; i++) {
    645   1.1  mycroft 		if (VIFM_ISSET(i, r->rt_children) &&
    646   1.1  mycroft 		    !(VIFM_ISSET(i, r->rt_leaves)))
    647   1.1  mycroft 		    VIFM_SET(i, gt->gt_grpmems);
    648   1.1  mycroft 
    649   1.1  mycroft 		if (VIFM_ISSET(i, r->rt_leaves) && grplst_mem(i, mcastgrp))
    650   1.1  mycroft 		    VIFM_SET(i, gt->gt_grpmems);
    651   1.1  mycroft 	    }
    652   1.1  mycroft 	    GET_SCOPE(gt);
    653   1.1  mycroft 	    if (VIFM_ISSET(r->rt_parent, gt->gt_scope))
    654   1.1  mycroft 		gt->gt_scope = -1;
    655   1.1  mycroft 	    gt->gt_grpmems &= ~gt->gt_scope;
    656   1.1  mycroft 	} else {
    657   1.1  mycroft 	    gt->gt_scope = -1;
    658   1.1  mycroft 	    gt->gt_grpmems = 0;
    659   1.1  mycroft 	}
    660   1.1  mycroft 
    661   1.1  mycroft 	/* update ttls */
    662   1.1  mycroft 	prun_add_ttls(gt);
    663   1.1  mycroft 
    664   1.1  mycroft 	gt->gt_next = *gtnp;
    665   1.1  mycroft 	*gtnp = gt;
    666   1.1  mycroft 	if (gt->gt_next)
    667   1.1  mycroft 	    gt->gt_next->gt_prev = gt;
    668   1.1  mycroft 	gt->gt_prev = prev_gt;
    669   1.1  mycroft 
    670   1.1  mycroft 	if (r) {
    671   1.1  mycroft 	    if (find_src_grp(r->rt_origin, r->rt_originmask, gt->gt_mcastgrp)) {
    672   1.1  mycroft 		struct gtable *g;
    673   1.1  mycroft 
    674   1.1  mycroft 		g = gtp ? gtp->gt_gnext : kernel_table;
    675  1.11      wiz 		logit(LOG_WARNING, 0, "Entry for (%s %s) (rt:%p) exists (rt:%p)",
    676  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
    677  1.14      dsl 		    inet_fmt(g->gt_mcastgrp),
    678   1.1  mycroft 		    r, g->gt_route);
    679   1.1  mycroft 	    } else {
    680   1.1  mycroft 		if (gtp) {
    681   1.1  mycroft 		    gt->gt_gnext = gtp->gt_gnext;
    682   1.1  mycroft 		    gt->gt_gprev = gtp;
    683   1.1  mycroft 		    gtp->gt_gnext = gt;
    684   1.1  mycroft 		} else {
    685   1.1  mycroft 		    gt->gt_gnext = kernel_table;
    686   1.1  mycroft 		    gt->gt_gprev = NULL;
    687   1.1  mycroft 		    kernel_table = gt;
    688   1.1  mycroft 		}
    689   1.1  mycroft 		if (gt->gt_gnext)
    690   1.1  mycroft 		    gt->gt_gnext->gt_gprev = gt;
    691   1.1  mycroft 	    }
    692   1.1  mycroft 	} else {
    693   1.3  mycroft 	    gt->gt_gnext = gt->gt_gprev = NULL;
    694   1.1  mycroft 	}
    695   1.1  mycroft     }
    696   1.1  mycroft 
    697   1.1  mycroft     stnp = &gt->gt_srctbl;
    698   1.1  mycroft     while ((st = *stnp) != NULL) {
    699   1.1  mycroft 	if (ntohl(st->st_origin) >= ntohl(origin))
    700   1.1  mycroft 	    break;
    701   1.1  mycroft 	stnp = &st->st_next;
    702   1.1  mycroft     }
    703   1.1  mycroft 
    704   1.1  mycroft     if (st == NULL || st->st_origin != origin) {
    705   1.1  mycroft 	st = (struct stable *)malloc(sizeof(struct stable));
    706   1.1  mycroft 	if (st == NULL)
    707  1.11      wiz 	    logit(LOG_ERR, 0, "ran out of memory");
    708   1.1  mycroft 
    709   1.1  mycroft 	st->st_origin = origin;
    710   1.1  mycroft 	st->st_pktcnt = 0;
    711   1.1  mycroft 	st->st_next = *stnp;
    712   1.1  mycroft 	*stnp = st;
    713   1.1  mycroft     } else {
    714   1.3  mycroft #ifdef DEBUG_MFC
    715   1.3  mycroft 	md_log(MD_DUPE, origin, mcastgrp);
    716   1.3  mycroft #endif
    717  1.11      wiz 	logit(LOG_WARNING, 0, "kernel entry already exists for (%s %s)",
    718  1.14      dsl 		inet_fmt(origin),
    719  1.14      dsl 		inet_fmt(mcastgrp));
    720   1.3  mycroft 	/* XXX Doing this should cause no harm, and may ensure
    721   1.3  mycroft 	 * kernel<>mrouted synchronization */
    722   1.3  mycroft 	k_add_rg(origin, gt);
    723   1.1  mycroft 	return;
    724   1.1  mycroft     }
    725   1.1  mycroft 
    726   1.1  mycroft     kroutes++;
    727   1.1  mycroft     k_add_rg(origin, gt);
    728   1.1  mycroft 
    729  1.11      wiz     logit(LOG_DEBUG, 0, "add cache entry (%s %s) gm:%x, parent-vif:%d",
    730  1.14      dsl 	inet_fmt(origin),
    731  1.14      dsl 	inet_fmt(mcastgrp),
    732   1.1  mycroft 	gt->gt_grpmems, r ? r->rt_parent : -1);
    733   1.1  mycroft 
    734   1.1  mycroft     /* If there are no leaf vifs
    735   1.1  mycroft      * which have this group, then
    736   1.1  mycroft      * mark this src-grp as a prune candidate.
    737   1.1  mycroft      */
    738   1.1  mycroft     if (!gt->gt_prsent_timer && !gt->gt_grpmems && r && r->rt_gateway)
    739   1.1  mycroft 	send_prune(gt);
    740   1.1  mycroft }
    741   1.1  mycroft 
    742   1.1  mycroft /*
    743   1.1  mycroft  * An mrouter has gone down and come up on an interface
    744   1.1  mycroft  * Forward on that interface immediately
    745   1.1  mycroft  */
    746   1.1  mycroft void
    747   1.9      wiz reset_neighbor_state(vifi_t vifi, u_int32_t addr)
    748   1.1  mycroft {
    749   1.1  mycroft     struct rtentry *r;
    750   1.1  mycroft     struct gtable *g;
    751   1.3  mycroft     struct ptable *pt, **ptnp;
    752   1.3  mycroft     struct stable *st;
    753   1.1  mycroft 
    754   1.1  mycroft     for (g = kernel_table; g; g = g->gt_gnext) {
    755   1.1  mycroft 	r = g->gt_route;
    756   1.1  mycroft 
    757   1.1  mycroft 	/*
    758   1.1  mycroft 	 * If neighbor was the parent, remove the prune sent state
    759   1.3  mycroft 	 * and all of the source cache info so that prunes get
    760   1.3  mycroft 	 * regenerated.
    761   1.1  mycroft 	 */
    762   1.1  mycroft 	if (vifi == r->rt_parent) {
    763   1.1  mycroft 	    if (addr == r->rt_gateway) {
    764  1.11      wiz 		logit(LOG_DEBUG, 0, "reset_neighbor_state parent reset (%s %s)",
    765  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
    766  1.14      dsl 		    inet_fmt(g->gt_mcastgrp));
    767   1.1  mycroft 
    768   1.3  mycroft 		g->gt_prsent_timer = 0;
    769   1.3  mycroft 		g->gt_grftsnt = 0;
    770   1.4    lukem 		while ((st = g->gt_srctbl) != NULL) {
    771   1.3  mycroft 		    g->gt_srctbl = st->st_next;
    772   1.3  mycroft 		    k_del_rg(st->st_origin, g);
    773   1.1  mycroft 		    kroutes--;
    774   1.3  mycroft 		    free(st);
    775   1.1  mycroft 		}
    776   1.1  mycroft 	    }
    777   1.1  mycroft 	} else {
    778   1.1  mycroft 	    /*
    779   1.1  mycroft 	     * Neighbor was not the parent, send grafts to join the groups
    780   1.1  mycroft 	     */
    781   1.1  mycroft 	    if (g->gt_prsent_timer) {
    782   1.1  mycroft 		g->gt_grftsnt = 1;
    783   1.1  mycroft 		send_graft(g);
    784   1.1  mycroft 		g->gt_prsent_timer = 0;
    785   1.1  mycroft 	    }
    786   1.1  mycroft 
    787   1.1  mycroft 	    /*
    788   1.1  mycroft 	     * Remove any prunes that this router has sent us.
    789   1.1  mycroft 	     */
    790   1.3  mycroft 	    ptnp = &g->gt_pruntbl;
    791   1.3  mycroft 	    while ((pt = *ptnp) != NULL) {
    792   1.1  mycroft 		if (pt->pt_vifi == vifi && pt->pt_router == addr) {
    793   1.3  mycroft 		    *ptnp = pt->pt_next;
    794   1.1  mycroft 		    free(pt);
    795   1.1  mycroft 		} else
    796   1.3  mycroft 		    ptnp = &pt->pt_next;
    797   1.1  mycroft 	    }
    798   1.1  mycroft 
    799   1.1  mycroft 	    /*
    800   1.1  mycroft 	     * And see if we want to forward again.
    801   1.1  mycroft 	     */
    802   1.1  mycroft 	    if (!VIFM_ISSET(vifi, g->gt_grpmems)) {
    803   1.1  mycroft 		if (VIFM_ISSET(vifi, r->rt_children) &&
    804   1.1  mycroft 		    !(VIFM_ISSET(vifi, r->rt_leaves)))
    805   1.1  mycroft 		    VIFM_SET(vifi, g->gt_grpmems);
    806   1.1  mycroft 
    807   1.1  mycroft 		if (VIFM_ISSET(vifi, r->rt_leaves) &&
    808   1.1  mycroft 		    grplst_mem(vifi, g->gt_mcastgrp))
    809   1.1  mycroft 		    VIFM_SET(vifi, g->gt_grpmems);
    810   1.1  mycroft 
    811   1.1  mycroft 		g->gt_grpmems &= ~g->gt_scope;
    812   1.1  mycroft 		prun_add_ttls(g);
    813   1.1  mycroft 
    814   1.1  mycroft 		/* Update kernel state */
    815   1.1  mycroft 		update_kernel(g);
    816   1.3  mycroft #ifdef RSRR
    817   1.3  mycroft 		/* Send route change notification to reservation protocol. */
    818   1.3  mycroft 		rsrr_cache_send(g,1);
    819   1.3  mycroft #endif /* RSRR */
    820   1.1  mycroft 
    821  1.11      wiz 		logit(LOG_DEBUG, 0, "reset member state (%s %s) gm:%x",
    822  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
    823  1.14      dsl 		    inet_fmt(g->gt_mcastgrp), g->gt_grpmems);
    824   1.1  mycroft 	    }
    825   1.1  mycroft 	}
    826   1.1  mycroft     }
    827   1.1  mycroft }
    828   1.1  mycroft 
    829   1.1  mycroft /*
    830   1.1  mycroft  * Delete table entry from the kernel
    831   1.1  mycroft  * del_flag determines how many entries to delete
    832   1.1  mycroft  */
    833   1.1  mycroft void
    834   1.9      wiz del_table_entry(struct rtentry *r, u_int32_t mcastgrp, u_int del_flag)
    835   1.1  mycroft {
    836   1.1  mycroft     struct gtable *g, *prev_g;
    837   1.1  mycroft     struct stable *st, *prev_st;
    838   1.1  mycroft     struct ptable *pt, *prev_pt;
    839   1.1  mycroft 
    840   1.1  mycroft     if (del_flag == DEL_ALL_ROUTES) {
    841   1.1  mycroft 	g = r->rt_groups;
    842   1.1  mycroft 	while (g) {
    843  1.11      wiz 	    logit(LOG_DEBUG, 0, "del_table_entry deleting (%s %s)",
    844  1.14      dsl 		inet_fmts(r->rt_origin, r->rt_originmask),
    845  1.14      dsl 		inet_fmt(g->gt_mcastgrp));
    846   1.1  mycroft 	    st = g->gt_srctbl;
    847   1.1  mycroft 	    while (st) {
    848   1.1  mycroft 		if (k_del_rg(st->st_origin, g) < 0) {
    849  1.11      wiz 		    logit(LOG_WARNING, errno,
    850   1.1  mycroft 			"del_table_entry trying to delete (%s, %s)",
    851  1.14      dsl 			inet_fmt(st->st_origin),
    852  1.14      dsl 			inet_fmt(g->gt_mcastgrp));
    853   1.1  mycroft 		}
    854   1.1  mycroft 		kroutes--;
    855   1.1  mycroft 		prev_st = st;
    856   1.1  mycroft 		st = st->st_next;
    857   1.1  mycroft 		free(prev_st);
    858   1.1  mycroft 	    }
    859   1.1  mycroft 	    g->gt_srctbl = NULL;
    860   1.1  mycroft 
    861   1.1  mycroft 	    pt = g->gt_pruntbl;
    862   1.1  mycroft 	    while (pt) {
    863   1.3  mycroft 		prev_pt = pt;
    864   1.3  mycroft 		pt = pt->pt_next;
    865   1.3  mycroft 		free(prev_pt);
    866   1.1  mycroft 	    }
    867   1.1  mycroft 	    g->gt_pruntbl = NULL;
    868   1.1  mycroft 
    869   1.1  mycroft 	    if (g->gt_gnext)
    870   1.1  mycroft 		g->gt_gnext->gt_gprev = g->gt_gprev;
    871   1.1  mycroft 	    if (g->gt_gprev)
    872   1.1  mycroft 		g->gt_gprev->gt_gnext = g->gt_gnext;
    873   1.1  mycroft 	    else
    874   1.1  mycroft 		kernel_table = g->gt_gnext;
    875   1.1  mycroft 
    876   1.3  mycroft #ifdef RSRR
    877   1.3  mycroft 	    /* Send route change notification to reservation protocol. */
    878   1.3  mycroft 	    rsrr_cache_send(g,0);
    879   1.3  mycroft 	    rsrr_cache_clean(g);
    880   1.3  mycroft #endif /* RSRR */
    881   1.3  mycroft 	    prev_g = g;
    882   1.3  mycroft 	    g = g->gt_next;
    883   1.3  mycroft 	    free(prev_g);
    884   1.1  mycroft 	}
    885   1.1  mycroft 	r->rt_groups = NULL;
    886   1.1  mycroft     }
    887   1.1  mycroft 
    888   1.1  mycroft     /*
    889   1.1  mycroft      * Dummy routine - someday this may be needed, so it is just there
    890   1.1  mycroft      */
    891   1.1  mycroft     if (del_flag == DEL_RTE_GROUP) {
    892   1.1  mycroft 	prev_g = (struct gtable *)&r->rt_groups;
    893   1.1  mycroft 	for (g = r->rt_groups; g; g = g->gt_next) {
    894   1.1  mycroft 	    if (g->gt_mcastgrp == mcastgrp) {
    895  1.11      wiz 		logit(LOG_DEBUG, 0, "del_table_entry deleting (%s %s)",
    896  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
    897  1.14      dsl 		    inet_fmt(g->gt_mcastgrp));
    898   1.1  mycroft 		st = g->gt_srctbl;
    899   1.1  mycroft 		while (st) {
    900   1.1  mycroft 		    if (k_del_rg(st->st_origin, g) < 0) {
    901  1.11      wiz 			logit(LOG_WARNING, errno,
    902   1.1  mycroft 			    "del_table_entry trying to delete (%s, %s)",
    903  1.14      dsl 			    inet_fmt(st->st_origin),
    904  1.14      dsl 			    inet_fmt(g->gt_mcastgrp));
    905   1.1  mycroft 		    }
    906   1.1  mycroft 		    kroutes--;
    907   1.3  mycroft 		    prev_st = st;
    908   1.3  mycroft 		    st = st->st_next;
    909   1.3  mycroft 		    free(prev_st);
    910   1.1  mycroft 		}
    911   1.1  mycroft 		g->gt_srctbl = NULL;
    912   1.1  mycroft 
    913   1.1  mycroft 		pt = g->gt_pruntbl;
    914   1.1  mycroft 		while (pt) {
    915   1.3  mycroft 		    prev_pt = pt;
    916   1.3  mycroft 		    pt = pt->pt_next;
    917   1.3  mycroft 		    free(prev_pt);
    918   1.1  mycroft 		}
    919   1.1  mycroft 		g->gt_pruntbl = NULL;
    920   1.1  mycroft 
    921   1.1  mycroft 		if (g->gt_gnext)
    922   1.1  mycroft 		    g->gt_gnext->gt_gprev = g->gt_gprev;
    923   1.1  mycroft 		if (g->gt_gprev)
    924   1.1  mycroft 		    g->gt_gprev->gt_gnext = g->gt_gnext;
    925   1.1  mycroft 		else
    926   1.1  mycroft 		    kernel_table = g->gt_gnext;
    927   1.1  mycroft 
    928   1.1  mycroft 		if (prev_g != (struct gtable *)&r->rt_groups)
    929   1.1  mycroft 		    g->gt_next->gt_prev = prev_g;
    930   1.1  mycroft 		else
    931   1.1  mycroft 		    g->gt_next->gt_prev = NULL;
    932   1.1  mycroft 		prev_g->gt_next = g->gt_next;
    933   1.1  mycroft 
    934   1.3  mycroft #ifdef RSRR
    935   1.3  mycroft 		/* Send route change notification to reservation protocol. */
    936   1.3  mycroft 		rsrr_cache_send(g,0);
    937   1.3  mycroft 		rsrr_cache_clean(g);
    938   1.3  mycroft #endif /* RSRR */
    939   1.1  mycroft 		free(g);
    940   1.1  mycroft 		g = prev_g;
    941   1.1  mycroft 	    } else {
    942   1.1  mycroft 		prev_g = g;
    943   1.1  mycroft 	    }
    944   1.1  mycroft 	}
    945   1.1  mycroft     }
    946   1.1  mycroft }
    947   1.1  mycroft 
    948   1.1  mycroft /*
    949   1.1  mycroft  * update kernel table entry when a route entry changes
    950   1.1  mycroft  */
    951   1.1  mycroft void
    952   1.9      wiz update_table_entry(struct rtentry *r)
    953   1.1  mycroft {
    954   1.1  mycroft     struct gtable *g;
    955   1.1  mycroft     struct ptable *pt, *prev_pt;
    956   1.3  mycroft     vifi_t i;
    957   1.1  mycroft 
    958   1.1  mycroft     for (g = r->rt_groups; g; g = g->gt_next) {
    959   1.1  mycroft 	pt = g->gt_pruntbl;
    960   1.1  mycroft 	while (pt) {
    961   1.1  mycroft 	    prev_pt = pt->pt_next;
    962   1.1  mycroft 	    free(pt);
    963   1.1  mycroft 	    pt = prev_pt;
    964   1.1  mycroft 	}
    965   1.1  mycroft 	g->gt_pruntbl = NULL;
    966   1.1  mycroft 
    967   1.1  mycroft 	g->gt_grpmems = 0;
    968   1.1  mycroft 
    969   1.1  mycroft 	/* obtain the multicast group membership list */
    970   1.1  mycroft 	for (i = 0; i < numvifs; i++) {
    971   1.1  mycroft 	    if (VIFM_ISSET(i, r->rt_children) &&
    972   1.1  mycroft 		!(VIFM_ISSET(i, r->rt_leaves)))
    973   1.1  mycroft 		VIFM_SET(i, g->gt_grpmems);
    974   1.1  mycroft 
    975   1.1  mycroft 	    if (VIFM_ISSET(i, r->rt_leaves) && grplst_mem(i, g->gt_mcastgrp))
    976   1.1  mycroft 		VIFM_SET(i, g->gt_grpmems);
    977   1.1  mycroft 	}
    978   1.1  mycroft 	if (VIFM_ISSET(r->rt_parent, g->gt_scope))
    979   1.1  mycroft 	    g->gt_scope = -1;
    980   1.1  mycroft 	g->gt_grpmems &= ~g->gt_scope;
    981   1.1  mycroft 
    982  1.11      wiz 	logit(LOG_DEBUG, 0, "updating cache entries (%s %s) gm:%x",
    983  1.14      dsl 	    inet_fmts(r->rt_origin, r->rt_originmask),
    984  1.14      dsl 	    inet_fmt(g->gt_mcastgrp),
    985   1.1  mycroft 	    g->gt_grpmems);
    986   1.1  mycroft 
    987   1.1  mycroft 	if (g->gt_grpmems && g->gt_prsent_timer) {
    988   1.1  mycroft 	    g->gt_grftsnt = 1;
    989   1.1  mycroft 	    send_graft(g);
    990   1.1  mycroft 	    g->gt_prsent_timer = 0;
    991   1.1  mycroft 	}
    992   1.1  mycroft 
    993   1.1  mycroft 	/* update ttls and add entry into kernel */
    994   1.1  mycroft 	prun_add_ttls(g);
    995   1.1  mycroft 	update_kernel(g);
    996   1.3  mycroft #ifdef RSRR
    997   1.3  mycroft 	/* Send route change notification to reservation protocol. */
    998   1.3  mycroft 	rsrr_cache_send(g,1);
    999   1.3  mycroft #endif /* RSRR */
   1000   1.1  mycroft 
   1001   1.1  mycroft 	/* Check if we want to prune this group */
   1002   1.1  mycroft 	if (!g->gt_prsent_timer && g->gt_grpmems == 0 && r->rt_gateway) {
   1003   1.1  mycroft 	    g->gt_timer = CACHE_LIFETIME(cache_lifetime);
   1004   1.1  mycroft 	    send_prune(g);
   1005   1.1  mycroft 	}
   1006   1.1  mycroft     }
   1007   1.1  mycroft }
   1008   1.1  mycroft 
   1009   1.1  mycroft /*
   1010   1.1  mycroft  * set the forwarding flag for all mcastgrps on this vifi
   1011   1.1  mycroft  */
   1012   1.1  mycroft void
   1013   1.9      wiz update_lclgrp(vifi_t vifi, u_int32_t mcastgrp)
   1014   1.1  mycroft {
   1015   1.1  mycroft     struct rtentry *r;
   1016   1.1  mycroft     struct gtable *g;
   1017   1.1  mycroft 
   1018  1.11      wiz     logit(LOG_DEBUG, 0, "group %s joined on vif %d",
   1019  1.14      dsl 	inet_fmt(mcastgrp), vifi);
   1020   1.1  mycroft 
   1021   1.1  mycroft     for (g = kernel_table; g; g = g->gt_gnext) {
   1022   1.1  mycroft 	if (ntohl(mcastgrp) < ntohl(g->gt_mcastgrp))
   1023   1.1  mycroft 	    break;
   1024   1.1  mycroft 
   1025   1.1  mycroft 	r = g->gt_route;
   1026   1.1  mycroft 	if (g->gt_mcastgrp == mcastgrp &&
   1027   1.1  mycroft 	    VIFM_ISSET(vifi, r->rt_children)) {
   1028   1.1  mycroft 
   1029   1.1  mycroft 	    VIFM_SET(vifi, g->gt_grpmems);
   1030   1.1  mycroft 	    g->gt_grpmems &= ~g->gt_scope;
   1031   1.1  mycroft 	    if (g->gt_grpmems == 0)
   1032   1.1  mycroft 		continue;
   1033   1.1  mycroft 
   1034   1.1  mycroft 	    prun_add_ttls(g);
   1035  1.11      wiz 	    logit(LOG_DEBUG, 0, "update lclgrp (%s %s) gm:%x",
   1036  1.14      dsl 		inet_fmts(r->rt_origin, r->rt_originmask),
   1037  1.14      dsl 		inet_fmt(g->gt_mcastgrp), g->gt_grpmems);
   1038   1.1  mycroft 
   1039   1.1  mycroft 	    update_kernel(g);
   1040   1.3  mycroft #ifdef RSRR
   1041   1.3  mycroft 	    /* Send route change notification to reservation protocol. */
   1042   1.3  mycroft 	    rsrr_cache_send(g,1);
   1043   1.3  mycroft #endif /* RSRR */
   1044   1.1  mycroft 	}
   1045   1.1  mycroft     }
   1046   1.1  mycroft }
   1047   1.1  mycroft 
   1048   1.1  mycroft /*
   1049   1.1  mycroft  * reset forwarding flag for all mcastgrps on this vifi
   1050   1.1  mycroft  */
   1051   1.1  mycroft void
   1052   1.9      wiz delete_lclgrp(vifi_t vifi, u_int32_t mcastgrp)
   1053   1.1  mycroft {
   1054   1.1  mycroft     struct rtentry *r;
   1055   1.1  mycroft     struct gtable *g;
   1056   1.1  mycroft 
   1057  1.11      wiz     logit(LOG_DEBUG, 0, "group %s left on vif %d",
   1058  1.14      dsl 	inet_fmt(mcastgrp), vifi);
   1059   1.1  mycroft 
   1060   1.1  mycroft     for (g = kernel_table; g; g = g->gt_gnext) {
   1061   1.1  mycroft 	if (ntohl(mcastgrp) < ntohl(g->gt_mcastgrp))
   1062   1.1  mycroft 	    break;
   1063   1.1  mycroft 
   1064   1.1  mycroft 	if (g->gt_mcastgrp == mcastgrp) {
   1065   1.1  mycroft 	    int stop_sending = 1;
   1066   1.1  mycroft 
   1067   1.1  mycroft 	    r = g->gt_route;
   1068   1.1  mycroft 	    /*
   1069   1.1  mycroft 	     * If this is not a leaf, then we have router neighbors on this
   1070   1.1  mycroft 	     * vif.  Only turn off forwarding if they have all pruned.
   1071   1.1  mycroft 	     */
   1072   1.1  mycroft 	    if (!VIFM_ISSET(vifi, r->rt_leaves)) {
   1073   1.1  mycroft 		struct listaddr *vr;
   1074   1.1  mycroft 
   1075   1.1  mycroft 		for (vr = uvifs[vifi].uv_neighbors; vr; vr = vr->al_next)
   1076   1.1  mycroft 		  if (find_prune_entry(vr->al_addr, g->gt_pruntbl) == NULL) {
   1077   1.1  mycroft 		      stop_sending = 0;
   1078   1.1  mycroft 		      break;
   1079   1.1  mycroft 		  }
   1080   1.1  mycroft 	    }
   1081   1.1  mycroft 
   1082   1.1  mycroft 	    if (stop_sending) {
   1083   1.1  mycroft 		VIFM_CLR(vifi, g->gt_grpmems);
   1084  1.11      wiz 		logit(LOG_DEBUG, 0, "delete lclgrp (%s %s) gm:%x",
   1085  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
   1086  1.14      dsl 		    inet_fmt(g->gt_mcastgrp), g->gt_grpmems);
   1087   1.1  mycroft 
   1088   1.1  mycroft 		prun_add_ttls(g);
   1089   1.1  mycroft 		update_kernel(g);
   1090   1.3  mycroft #ifdef RSRR
   1091   1.3  mycroft 		/* Send route change notification to reservation protocol. */
   1092   1.3  mycroft 		rsrr_cache_send(g,1);
   1093   1.3  mycroft #endif /* RSRR */
   1094   1.1  mycroft 
   1095   1.1  mycroft 		/*
   1096   1.1  mycroft 		 * If there are no more members of this particular group,
   1097   1.1  mycroft 		 *  send prune upstream
   1098   1.1  mycroft 		 */
   1099   1.1  mycroft 		if (!g->gt_prsent_timer && g->gt_grpmems == 0 && r->rt_gateway)
   1100   1.1  mycroft 		    send_prune(g);
   1101   1.1  mycroft 	    }
   1102   1.1  mycroft 	}
   1103   1.1  mycroft     }
   1104   1.1  mycroft }
   1105   1.1  mycroft 
   1106   1.1  mycroft /*
   1107   1.1  mycroft  * Takes the prune message received and then strips it to
   1108   1.1  mycroft  * determine the (src, grp) pair to be pruned.
   1109   1.1  mycroft  *
   1110   1.1  mycroft  * Adds the router to the (src, grp) entry then.
   1111   1.1  mycroft  *
   1112   1.1  mycroft  * Determines if further packets have to be sent down that vif
   1113   1.1  mycroft  *
   1114   1.1  mycroft  * Determines if a corresponding prune message has to be generated
   1115   1.1  mycroft  */
   1116   1.1  mycroft void
   1117   1.9      wiz accept_prune(u_int32_t src, u_int32_t dst, char *p, int datalen)
   1118   1.1  mycroft {
   1119   1.1  mycroft     u_int32_t prun_src;
   1120   1.1  mycroft     u_int32_t prun_grp;
   1121   1.1  mycroft     u_int32_t prun_tmr;
   1122   1.1  mycroft     vifi_t vifi;
   1123   1.1  mycroft     int i;
   1124   1.1  mycroft     int stop_sending;
   1125   1.1  mycroft     struct rtentry *r;
   1126   1.1  mycroft     struct gtable *g;
   1127   1.1  mycroft     struct ptable *pt;
   1128   1.1  mycroft     struct listaddr *vr;
   1129   1.1  mycroft 
   1130   1.1  mycroft     /* Don't process any prunes if router is not pruning */
   1131   1.1  mycroft     if (pruning == 0)
   1132   1.1  mycroft 	return;
   1133   1.1  mycroft 
   1134   1.1  mycroft     if ((vifi = find_vif(src, dst)) == NO_VIF) {
   1135  1.11      wiz 	logit(LOG_INFO, 0,
   1136   1.1  mycroft     	    "ignoring prune report from non-neighbor %s",
   1137  1.14      dsl 	    inet_fmt(src));
   1138   1.1  mycroft 	return;
   1139   1.1  mycroft     }
   1140   1.1  mycroft 
   1141   1.1  mycroft     /* Check if enough data is present */
   1142   1.1  mycroft     if (datalen < 12)
   1143   1.1  mycroft 	{
   1144  1.11      wiz 	    logit(LOG_WARNING, 0,
   1145   1.1  mycroft 		"non-decipherable prune from %s",
   1146  1.14      dsl 		inet_fmt(src));
   1147   1.1  mycroft 	    return;
   1148   1.1  mycroft 	}
   1149   1.1  mycroft 
   1150   1.1  mycroft     for (i = 0; i< 4; i++)
   1151   1.1  mycroft 	((char *)&prun_src)[i] = *p++;
   1152   1.1  mycroft     for (i = 0; i< 4; i++)
   1153   1.1  mycroft 	((char *)&prun_grp)[i] = *p++;
   1154   1.1  mycroft     for (i = 0; i< 4; i++)
   1155   1.1  mycroft 	((char *)&prun_tmr)[i] = *p++;
   1156   1.3  mycroft     prun_tmr = ntohl(prun_tmr);
   1157   1.1  mycroft 
   1158  1.11      wiz     logit(LOG_DEBUG, 0, "%s on vif %d prunes (%s %s)/%d",
   1159  1.14      dsl 	inet_fmt(src), vifi,
   1160  1.14      dsl 	inet_fmt(prun_src), inet_fmt(prun_grp), prun_tmr);
   1161   1.1  mycroft 
   1162   1.1  mycroft     /*
   1163   1.1  mycroft      * Find the subnet for the prune
   1164   1.1  mycroft      */
   1165   1.1  mycroft     if (find_src_grp(prun_src, 0, prun_grp)) {
   1166   1.1  mycroft 	g = gtp ? gtp->gt_gnext : kernel_table;
   1167   1.1  mycroft     	r = g->gt_route;
   1168   1.1  mycroft 
   1169   1.1  mycroft 	if (!VIFM_ISSET(vifi, r->rt_children)) {
   1170  1.11      wiz 	    logit(LOG_WARNING, 0, "prune received from non-child %s for (%s %s)",
   1171  1.14      dsl 		inet_fmt(src), inet_fmt(prun_src),
   1172  1.14      dsl 		inet_fmt(prun_grp));
   1173   1.1  mycroft 	    return;
   1174   1.1  mycroft 	}
   1175   1.1  mycroft 	if (VIFM_ISSET(vifi, g->gt_scope)) {
   1176  1.11      wiz 	    logit(LOG_WARNING, 0, "prune received from %s on scoped grp (%s %s)",
   1177  1.14      dsl 		inet_fmt(src), inet_fmt(prun_src),
   1178  1.14      dsl 		inet_fmt(prun_grp));
   1179   1.1  mycroft 	    return;
   1180   1.1  mycroft 	}
   1181   1.1  mycroft 	if ((pt = find_prune_entry(src, g->gt_pruntbl)) != NULL) {
   1182   1.1  mycroft 	    /*
   1183   1.1  mycroft 	     * If it's about to expire, then it's only still around because
   1184   1.1  mycroft 	     * of timer granularity, so don't warn about it.
   1185   1.1  mycroft 	     */
   1186   1.1  mycroft 	    if (pt->pt_timer > 10) {
   1187  1.11      wiz 		logit(LOG_WARNING, 0, "%s %d from %s for (%s %s)/%d %s %d %s %x",
   1188   1.1  mycroft 		    "duplicate prune received on vif",
   1189  1.14      dsl 		    vifi, inet_fmt(src), inet_fmt(prun_src),
   1190  1.14      dsl 		    inet_fmt(prun_grp), prun_tmr,
   1191   1.1  mycroft 		    "old timer:", pt->pt_timer, "cur gm:", g->gt_grpmems);
   1192   1.1  mycroft 	    }
   1193   1.1  mycroft 	    pt->pt_timer = prun_tmr;
   1194   1.1  mycroft 	} else {
   1195   1.1  mycroft 	    /* allocate space for the prune structure */
   1196   1.1  mycroft 	    pt = (struct ptable *)(malloc(sizeof(struct ptable)));
   1197   1.1  mycroft 	    if (pt == NULL)
   1198  1.11      wiz 	      logit(LOG_ERR, 0, "pt: ran out of memory");
   1199   1.1  mycroft 
   1200   1.1  mycroft 	    pt->pt_vifi = vifi;
   1201   1.1  mycroft 	    pt->pt_router = src;
   1202   1.1  mycroft 	    pt->pt_timer = prun_tmr;
   1203   1.1  mycroft 
   1204   1.1  mycroft 	    pt->pt_next = g->gt_pruntbl;
   1205   1.1  mycroft 	    g->gt_pruntbl = pt;
   1206   1.1  mycroft 	}
   1207   1.1  mycroft 
   1208   1.1  mycroft 	/* Refresh the group's lifetime */
   1209   1.1  mycroft 	g->gt_timer = CACHE_LIFETIME(cache_lifetime);
   1210   1.1  mycroft 	if (g->gt_timer < prun_tmr)
   1211   1.1  mycroft 	    g->gt_timer = prun_tmr;
   1212   1.3  mycroft 
   1213   1.1  mycroft 	/*
   1214   1.1  mycroft 	 * check if any more packets need to be sent on the
   1215   1.1  mycroft 	 * vif which sent this message
   1216   1.1  mycroft 	 */
   1217   1.1  mycroft 	stop_sending = 1;
   1218   1.1  mycroft 	for (vr = uvifs[vifi].uv_neighbors; vr; vr = vr->al_next)
   1219   1.1  mycroft 	  if (find_prune_entry(vr->al_addr, g->gt_pruntbl) == NULL)  {
   1220   1.1  mycroft 	      stop_sending = 0;
   1221   1.1  mycroft 	      break;
   1222   1.1  mycroft 	  }
   1223   1.1  mycroft 
   1224   1.1  mycroft 	if (stop_sending && !grplst_mem(vifi, prun_grp)) {
   1225   1.1  mycroft 	    VIFM_CLR(vifi, g->gt_grpmems);
   1226  1.11      wiz 	    logit(LOG_DEBUG, 0, "prune (%s %s), stop sending on vif %d, gm:%x",
   1227  1.14      dsl 		inet_fmts(r->rt_origin, r->rt_originmask),
   1228  1.14      dsl 		inet_fmt(g->gt_mcastgrp), vifi, g->gt_grpmems);
   1229   1.1  mycroft 
   1230   1.1  mycroft 	    prun_add_ttls(g);
   1231   1.1  mycroft 	    update_kernel(g);
   1232   1.3  mycroft #ifdef RSRR
   1233   1.3  mycroft 	    /* Send route change notification to reservation protocol. */
   1234   1.3  mycroft 	    rsrr_cache_send(g,1);
   1235   1.3  mycroft #endif /* RSRR */
   1236   1.1  mycroft 	}
   1237   1.1  mycroft 
   1238   1.1  mycroft 	/*
   1239   1.1  mycroft 	 * check if all the child routers have expressed no interest
   1240   1.1  mycroft 	 * in this group and if this group does not exist in the
   1241   1.1  mycroft 	 * interface
   1242   1.1  mycroft 	 * Send a prune message then upstream
   1243   1.1  mycroft 	 */
   1244   1.1  mycroft 	if (!g->gt_prsent_timer && g->gt_grpmems == 0 && r->rt_gateway) {
   1245   1.1  mycroft 	    send_prune(g);
   1246   1.1  mycroft 	}
   1247   1.1  mycroft     } else {
   1248   1.1  mycroft 	/*
   1249   1.1  mycroft 	 * There is no kernel entry for this group.  Therefore, we can
   1250   1.1  mycroft 	 * simply ignore the prune, as we are not forwarding this traffic
   1251   1.1  mycroft 	 * downstream.
   1252   1.1  mycroft 	 */
   1253  1.11      wiz 	logit(LOG_DEBUG, 0, "%s (%s %s)/%d from %s",
   1254   1.1  mycroft 	    "prune message received with no kernel entry for",
   1255  1.14      dsl 	    inet_fmt(prun_src), inet_fmt(prun_grp),
   1256  1.14      dsl 	    prun_tmr, inet_fmt(src));
   1257   1.1  mycroft 	return;
   1258   1.1  mycroft     }
   1259   1.1  mycroft }
   1260   1.1  mycroft 
   1261   1.1  mycroft /*
   1262   1.1  mycroft  * Checks if this mcastgrp is present in the kernel table
   1263   1.1  mycroft  * If so and if a prune was sent, it sends a graft upwards
   1264   1.1  mycroft  */
   1265   1.1  mycroft void
   1266   1.9      wiz chkgrp_graft(vifi_t vifi, u_int32_t mcastgrp)
   1267   1.1  mycroft {
   1268   1.1  mycroft     struct rtentry *r;
   1269   1.1  mycroft     struct gtable *g;
   1270   1.1  mycroft 
   1271   1.1  mycroft     for (g = kernel_table; g; g = g->gt_gnext) {
   1272   1.1  mycroft 	if (ntohl(mcastgrp) < ntohl(g->gt_mcastgrp))
   1273   1.1  mycroft 	    break;
   1274   1.1  mycroft 
   1275   1.1  mycroft 	r = g->gt_route;
   1276   1.1  mycroft 	if (g->gt_mcastgrp == mcastgrp && VIFM_ISSET(vifi, r->rt_children))
   1277   1.1  mycroft 	    if (g->gt_prsent_timer) {
   1278   1.1  mycroft 		VIFM_SET(vifi, g->gt_grpmems);
   1279   1.1  mycroft 
   1280   1.1  mycroft 		/*
   1281   1.1  mycroft 		 * If the vif that was joined was a scoped vif,
   1282   1.1  mycroft 		 * ignore it ; don't graft back
   1283   1.1  mycroft 		 */
   1284   1.1  mycroft 		g->gt_grpmems &= ~g->gt_scope;
   1285   1.1  mycroft 		if (g->gt_grpmems == 0)
   1286   1.1  mycroft 		    continue;
   1287   1.1  mycroft 
   1288   1.1  mycroft 		/* set the flag for graft retransmission */
   1289   1.1  mycroft 		g->gt_grftsnt = 1;
   1290   1.1  mycroft 
   1291   1.1  mycroft 		/* send graft upwards */
   1292   1.1  mycroft 		send_graft(g);
   1293   1.1  mycroft 
   1294   1.1  mycroft 		/* reset the prune timer and update cache timer*/
   1295   1.1  mycroft 		g->gt_prsent_timer = 0;
   1296   1.1  mycroft 		g->gt_timer = max_prune_lifetime;
   1297   1.1  mycroft 
   1298  1.11      wiz 		logit(LOG_DEBUG, 0, "chkgrp graft (%s %s) gm:%x",
   1299  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
   1300  1.14      dsl 		    inet_fmt(g->gt_mcastgrp), g->gt_grpmems);
   1301   1.1  mycroft 
   1302   1.1  mycroft 		prun_add_ttls(g);
   1303   1.1  mycroft 		update_kernel(g);
   1304   1.3  mycroft #ifdef RSRR
   1305   1.3  mycroft 		/* Send route change notification to reservation protocol. */
   1306   1.3  mycroft 		rsrr_cache_send(g,1);
   1307   1.3  mycroft #endif /* RSRR */
   1308   1.1  mycroft 	    }
   1309   1.1  mycroft     }
   1310   1.1  mycroft }
   1311   1.1  mycroft 
   1312   1.1  mycroft /* determine the multicast group and src
   1313   1.1  mycroft  *
   1314   1.1  mycroft  * if it does, then determine if a prune was sent
   1315   1.1  mycroft  * upstream.
   1316   1.1  mycroft  * if prune sent upstream, send graft upstream and send
   1317   1.1  mycroft  * ack downstream.
   1318   1.1  mycroft  *
   1319   1.1  mycroft  * if no prune sent upstream, change the forwarding bit
   1320   1.1  mycroft  * for this interface and send ack downstream.
   1321   1.1  mycroft  *
   1322   1.1  mycroft  * if no entry exists for this group send ack downstream.
   1323   1.1  mycroft  */
   1324   1.1  mycroft void
   1325   1.9      wiz accept_graft(u_int32_t src, u_int32_t dst, char *p, int datalen)
   1326   1.1  mycroft {
   1327   1.1  mycroft     vifi_t 	vifi;
   1328   1.1  mycroft     u_int32_t 	graft_src;
   1329   1.1  mycroft     u_int32_t	graft_grp;
   1330   1.1  mycroft     int 	i;
   1331   1.1  mycroft     struct rtentry *r;
   1332   1.1  mycroft     struct gtable *g;
   1333   1.1  mycroft     struct ptable *pt, **ptnp;
   1334   1.1  mycroft 
   1335   1.1  mycroft     if ((vifi = find_vif(src, dst)) == NO_VIF) {
   1336  1.11      wiz 	logit(LOG_INFO, 0,
   1337   1.1  mycroft     	    "ignoring graft from non-neighbor %s",
   1338  1.14      dsl 	    inet_fmt(src));
   1339   1.1  mycroft 	return;
   1340   1.1  mycroft     }
   1341   1.1  mycroft 
   1342   1.1  mycroft     if (datalen < 8) {
   1343  1.11      wiz 	logit(LOG_WARNING, 0,
   1344   1.1  mycroft 	    "received non-decipherable graft from %s",
   1345  1.14      dsl 	    inet_fmt(src));
   1346   1.1  mycroft 	return;
   1347   1.1  mycroft     }
   1348   1.1  mycroft 
   1349   1.1  mycroft     for (i = 0; i< 4; i++)
   1350   1.1  mycroft 	((char *)&graft_src)[i] = *p++;
   1351   1.1  mycroft     for (i = 0; i< 4; i++)
   1352   1.1  mycroft 	((char *)&graft_grp)[i] = *p++;
   1353   1.1  mycroft 
   1354  1.11      wiz     logit(LOG_DEBUG, 0, "%s on vif %d grafts (%s %s)",
   1355  1.14      dsl 	inet_fmt(src), vifi,
   1356  1.14      dsl 	inet_fmt(graft_src), inet_fmt(graft_grp));
   1357   1.1  mycroft 
   1358   1.1  mycroft     /*
   1359   1.1  mycroft      * Find the subnet for the graft
   1360   1.1  mycroft      */
   1361   1.1  mycroft     if (find_src_grp(graft_src, 0, graft_grp)) {
   1362   1.1  mycroft 	g = gtp ? gtp->gt_gnext : kernel_table;
   1363   1.1  mycroft 	r = g->gt_route;
   1364   1.1  mycroft 
   1365   1.1  mycroft 	if (VIFM_ISSET(vifi, g->gt_scope)) {
   1366  1.11      wiz 	    logit(LOG_WARNING, 0, "graft received from %s on scoped grp (%s %s)",
   1367  1.14      dsl 		inet_fmt(src), inet_fmt(graft_src),
   1368  1.14      dsl 		inet_fmt(graft_grp));
   1369   1.1  mycroft 	    return;
   1370   1.1  mycroft 	}
   1371   1.1  mycroft 
   1372   1.1  mycroft 	ptnp = &g->gt_pruntbl;
   1373   1.1  mycroft 	while ((pt = *ptnp) != NULL) {
   1374   1.1  mycroft 	    if ((pt->pt_vifi == vifi) && (pt->pt_router == src)) {
   1375   1.1  mycroft 		*ptnp = pt->pt_next;
   1376   1.1  mycroft 		free(pt);
   1377   1.1  mycroft 
   1378   1.1  mycroft 		VIFM_SET(vifi, g->gt_grpmems);
   1379  1.11      wiz 		logit(LOG_DEBUG, 0, "accept graft (%s %s) gm:%x",
   1380  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
   1381  1.14      dsl 		    inet_fmt(g->gt_mcastgrp), g->gt_grpmems);
   1382   1.1  mycroft 
   1383   1.1  mycroft 		prun_add_ttls(g);
   1384   1.1  mycroft 		update_kernel(g);
   1385   1.3  mycroft #ifdef RSRR
   1386   1.3  mycroft 		/* Send route change notification to reservation protocol. */
   1387   1.3  mycroft 		rsrr_cache_send(g,1);
   1388   1.3  mycroft #endif /* RSRR */
   1389   1.1  mycroft 		break;
   1390   1.1  mycroft 	    } else {
   1391   1.1  mycroft 		ptnp = &pt->pt_next;
   1392   1.1  mycroft 	    }
   1393   1.1  mycroft 	}
   1394   1.1  mycroft 
   1395   1.1  mycroft 	/* send ack downstream */
   1396   1.1  mycroft 	send_graft_ack(dst, src, graft_src, graft_grp);
   1397   1.1  mycroft 	g->gt_timer = max_prune_lifetime;
   1398   1.1  mycroft 
   1399   1.1  mycroft 	if (g->gt_prsent_timer) {
   1400   1.1  mycroft 	    /* set the flag for graft retransmission */
   1401   1.1  mycroft 	    g->gt_grftsnt = 1;
   1402   1.1  mycroft 
   1403   1.1  mycroft 	    /* send graft upwards */
   1404   1.1  mycroft 	    send_graft(g);
   1405   1.1  mycroft 
   1406   1.1  mycroft 	    /* reset the prune sent timer */
   1407   1.1  mycroft 	    g->gt_prsent_timer = 0;
   1408   1.1  mycroft 	}
   1409   1.1  mycroft     } else {
   1410   1.1  mycroft 	/*
   1411   1.1  mycroft 	 * We have no state for the source and group in question.
   1412   1.1  mycroft 	 * We can simply acknowledge the graft, since we know
   1413   1.1  mycroft 	 * that we have no prune state, and grafts are requests
   1414   1.1  mycroft 	 * to remove prune state.
   1415   1.1  mycroft 	 */
   1416   1.1  mycroft 	send_graft_ack(dst, src, graft_src, graft_grp);
   1417  1.11      wiz 	logit(LOG_DEBUG, 0, "%s (%s %s) from %s",
   1418   1.1  mycroft 	    "graft received with no kernel entry for",
   1419  1.14      dsl 	    inet_fmt(graft_src), inet_fmt(graft_grp),
   1420  1.14      dsl 	    inet_fmt(src));
   1421   1.1  mycroft 	return;
   1422   1.1  mycroft     }
   1423   1.1  mycroft }
   1424   1.1  mycroft 
   1425   1.1  mycroft /*
   1426   1.1  mycroft  * find out which group is involved first of all
   1427   1.1  mycroft  * then determine if a graft was sent.
   1428   1.1  mycroft  * if no graft sent, ignore the message
   1429   1.1  mycroft  * if graft was sent and the ack is from the right
   1430   1.1  mycroft  * source, remove the graft timer so that we don't
   1431   1.1  mycroft  * have send a graft again
   1432   1.1  mycroft  */
   1433   1.1  mycroft void
   1434   1.9      wiz accept_g_ack(u_int32_t src, u_int32_t dst, char *p, int datalen)
   1435   1.1  mycroft {
   1436   1.1  mycroft     struct gtable *g;
   1437   1.1  mycroft     vifi_t 	vifi;
   1438   1.1  mycroft     u_int32_t 	grft_src;
   1439   1.1  mycroft     u_int32_t	grft_grp;
   1440   1.1  mycroft     int 	i;
   1441   1.1  mycroft 
   1442   1.1  mycroft     if ((vifi = find_vif(src, dst)) == NO_VIF) {
   1443  1.11      wiz 	logit(LOG_INFO, 0,
   1444   1.1  mycroft     	    "ignoring graft ack from non-neighbor %s",
   1445  1.14      dsl 	    inet_fmt(src));
   1446   1.1  mycroft 	return;
   1447   1.1  mycroft     }
   1448   1.1  mycroft 
   1449   1.1  mycroft     if (datalen < 0  || datalen > 8) {
   1450  1.11      wiz 	logit(LOG_WARNING, 0,
   1451   1.1  mycroft 	    "received non-decipherable graft ack from %s",
   1452  1.14      dsl 	    inet_fmt(src));
   1453   1.1  mycroft 	return;
   1454   1.1  mycroft     }
   1455   1.1  mycroft 
   1456   1.1  mycroft     for (i = 0; i< 4; i++)
   1457   1.1  mycroft 	((char *)&grft_src)[i] = *p++;
   1458   1.1  mycroft     for (i = 0; i< 4; i++)
   1459   1.1  mycroft 	((char *)&grft_grp)[i] = *p++;
   1460   1.1  mycroft 
   1461  1.11      wiz     logit(LOG_DEBUG, 0, "%s on vif %d acks graft (%s, %s)",
   1462  1.14      dsl 	inet_fmt(src), vifi,
   1463  1.14      dsl 	inet_fmt(grft_src), inet_fmt(grft_grp));
   1464   1.1  mycroft 
   1465   1.1  mycroft     /*
   1466   1.1  mycroft      * Find the subnet for the graft ack
   1467   1.1  mycroft      */
   1468   1.1  mycroft     if (find_src_grp(grft_src, 0, grft_grp)) {
   1469   1.1  mycroft 	g = gtp ? gtp->gt_gnext : kernel_table;
   1470   1.1  mycroft 	g->gt_grftsnt = 0;
   1471   1.1  mycroft     } else {
   1472  1.11      wiz 	logit(LOG_WARNING, 0, "%s (%s, %s) from %s",
   1473   1.1  mycroft 	    "rcvd graft ack with no kernel entry for",
   1474  1.14      dsl 	    inet_fmt(grft_src), inet_fmt(grft_grp),
   1475  1.14      dsl 	    inet_fmt(src));
   1476   1.1  mycroft 	return;
   1477   1.1  mycroft     }
   1478   1.1  mycroft }
   1479   1.1  mycroft 
   1480   1.1  mycroft 
   1481   1.1  mycroft /*
   1482   1.1  mycroft  * free all prune entries and kernel routes
   1483   1.1  mycroft  * normally, this should inform the kernel that all of its routes
   1484   1.1  mycroft  * are going away, but this is only called by restart(), which is
   1485   1.1  mycroft  * about to call MRT_DONE which does that anyway.
   1486   1.1  mycroft  */
   1487   1.1  mycroft void
   1488   1.9      wiz free_all_prunes(void)
   1489   1.1  mycroft {
   1490   1.9      wiz     struct rtentry *r;
   1491   1.9      wiz     struct gtable *g, *prev_g;
   1492   1.9      wiz     struct stable *s, *prev_s;
   1493   1.9      wiz     struct ptable *p, *prev_p;
   1494   1.1  mycroft 
   1495   1.1  mycroft     for (r = routing_table; r; r = r->rt_next) {
   1496   1.1  mycroft 	g = r->rt_groups;
   1497   1.1  mycroft 	while (g) {
   1498   1.1  mycroft 	    s = g->gt_srctbl;
   1499   1.1  mycroft 	    while (s) {
   1500   1.3  mycroft 		prev_s = s;
   1501   1.3  mycroft 		s = s->st_next;
   1502   1.3  mycroft 		free(prev_s);
   1503   1.1  mycroft 	    }
   1504   1.1  mycroft 
   1505   1.1  mycroft 	    p = g->gt_pruntbl;
   1506   1.1  mycroft 	    while (p) {
   1507   1.3  mycroft 		prev_p = p;
   1508   1.3  mycroft 		p = p->pt_next;
   1509   1.3  mycroft 		free(prev_p);
   1510   1.1  mycroft 	    }
   1511   1.1  mycroft 
   1512   1.3  mycroft 	    prev_g = g;
   1513   1.3  mycroft 	    g = g->gt_next;
   1514   1.3  mycroft 	    free(prev_g);
   1515   1.1  mycroft 	}
   1516   1.1  mycroft 	r->rt_groups = NULL;
   1517   1.1  mycroft     }
   1518   1.1  mycroft     kernel_table = NULL;
   1519   1.1  mycroft 
   1520   1.1  mycroft     g = kernel_no_route;
   1521   1.1  mycroft     while (g) {
   1522   1.1  mycroft 	if (g->gt_srctbl)
   1523   1.1  mycroft 	    free(g->gt_srctbl);
   1524   1.1  mycroft 
   1525   1.3  mycroft 	prev_g = g;
   1526   1.3  mycroft 	g = g->gt_next;
   1527   1.3  mycroft 	free(prev_g);
   1528   1.1  mycroft     }
   1529   1.1  mycroft     kernel_no_route = NULL;
   1530   1.1  mycroft }
   1531   1.1  mycroft 
   1532   1.1  mycroft /*
   1533   1.1  mycroft  * When a new route is created, search
   1534   1.1  mycroft  * a) The less-specific part of the routing table
   1535   1.1  mycroft  * b) The route-less kernel table
   1536   1.1  mycroft  * for sources that the new route might want to handle.
   1537   1.1  mycroft  *
   1538   1.1  mycroft  * "Inheriting" these sources might be cleanest, but simply deleting
   1539   1.1  mycroft  * them is easier, and letting the kernel re-request them.
   1540   1.1  mycroft  */
   1541   1.1  mycroft void
   1542   1.9      wiz steal_sources(struct rtentry *rt)
   1543   1.1  mycroft {
   1544   1.9      wiz     struct rtentry *rp;
   1545   1.9      wiz     struct gtable *gt, **gtnp;
   1546   1.9      wiz     struct stable *st, **stnp;
   1547   1.1  mycroft 
   1548   1.1  mycroft     for (rp = rt->rt_next; rp; rp = rp->rt_next) {
   1549   1.1  mycroft 	if ((rt->rt_origin & rp->rt_originmask) == rp->rt_origin) {
   1550  1.11      wiz 	    logit(LOG_DEBUG, 0, "Route for %s stealing sources from %s",
   1551  1.14      dsl 		inet_fmts(rt->rt_origin, rt->rt_originmask),
   1552  1.14      dsl 		inet_fmts(rp->rt_origin, rp->rt_originmask));
   1553   1.1  mycroft 	    for (gt = rp->rt_groups; gt; gt = gt->gt_next) {
   1554   1.1  mycroft 		stnp = &gt->gt_srctbl;
   1555   1.1  mycroft 		while ((st = *stnp) != NULL) {
   1556   1.1  mycroft 		    if ((st->st_origin & rt->rt_originmask) == rt->rt_origin) {
   1557  1.11      wiz 			logit(LOG_DEBUG, 0, "%s stealing (%s %s) from %s",
   1558  1.14      dsl 			    inet_fmts(rt->rt_origin, rt->rt_originmask),
   1559  1.14      dsl 			    inet_fmt(st->st_origin),
   1560  1.14      dsl 			    inet_fmt(gt->gt_mcastgrp),
   1561  1.14      dsl 			    inet_fmts(rp->rt_origin, rp->rt_originmask));
   1562   1.1  mycroft 			if (k_del_rg(st->st_origin, gt) < 0) {
   1563  1.11      wiz 			    logit(LOG_WARNING, errno, "%s (%s, %s)",
   1564   1.1  mycroft 				"steal_sources trying to delete",
   1565  1.14      dsl 				inet_fmt(st->st_origin),
   1566  1.14      dsl 				inet_fmt(gt->gt_mcastgrp));
   1567   1.1  mycroft 			}
   1568   1.1  mycroft 			*stnp = st->st_next;
   1569   1.1  mycroft 			kroutes--;
   1570   1.1  mycroft 			free(st);
   1571   1.1  mycroft 		    } else {
   1572   1.1  mycroft 			stnp = &st->st_next;
   1573   1.1  mycroft 		    }
   1574   1.1  mycroft 		}
   1575   1.1  mycroft 	    }
   1576   1.1  mycroft 	}
   1577   1.1  mycroft     }
   1578   1.1  mycroft 
   1579   1.1  mycroft     gtnp = &kernel_no_route;
   1580   1.1  mycroft     while ((gt = *gtnp) != NULL) {
   1581   1.1  mycroft 	if (gt->gt_srctbl && ((gt->gt_srctbl->st_origin & rt->rt_originmask)
   1582   1.1  mycroft 				    == rt->rt_origin)) {
   1583  1.11      wiz 	    logit(LOG_DEBUG, 0, "%s stealing (%s %s) from %s",
   1584  1.14      dsl 		inet_fmts(rt->rt_origin, rt->rt_originmask),
   1585  1.14      dsl 		inet_fmt(gt->gt_srctbl->st_origin),
   1586  1.14      dsl 		inet_fmt(gt->gt_mcastgrp),
   1587   1.1  mycroft 		"no_route table");
   1588   1.1  mycroft 	    if (k_del_rg(gt->gt_srctbl->st_origin, gt) < 0) {
   1589  1.11      wiz 		logit(LOG_WARNING, errno, "%s (%s %s)",
   1590   1.1  mycroft 		    "steal_sources trying to delete",
   1591  1.14      dsl 		    inet_fmt(gt->gt_srctbl->st_origin),
   1592  1.14      dsl 		    inet_fmt(gt->gt_mcastgrp));
   1593   1.1  mycroft 	    }
   1594   1.1  mycroft 	    kroutes--;
   1595   1.1  mycroft 	    free(gt->gt_srctbl);
   1596   1.1  mycroft 	    *gtnp = gt->gt_next;
   1597   1.1  mycroft 	    if (gt->gt_next)
   1598   1.1  mycroft 		gt->gt_next->gt_prev = gt->gt_prev;
   1599   1.1  mycroft 	    free(gt);
   1600   1.1  mycroft 	} else {
   1601   1.1  mycroft 	    gtnp = &gt->gt_next;
   1602   1.1  mycroft 	}
   1603   1.1  mycroft     }
   1604   1.1  mycroft }
   1605   1.1  mycroft 
   1606   1.1  mycroft /*
   1607   1.1  mycroft  * Advance the timers on all the cache entries.
   1608   1.1  mycroft  * If there are any entries whose timers have expired,
   1609   1.1  mycroft  * remove these entries from the kernel cache.
   1610   1.1  mycroft  */
   1611   1.1  mycroft void
   1612   1.9      wiz age_table_entry(void)
   1613   1.1  mycroft {
   1614   1.1  mycroft     struct rtentry *r;
   1615   1.1  mycroft     struct gtable *gt, **gtnptr;
   1616   1.1  mycroft     struct stable *st, **stnp;
   1617   1.1  mycroft     struct ptable *pt, **ptnp;
   1618   1.1  mycroft     struct sioc_sg_req sg_req;
   1619   1.1  mycroft 
   1620  1.11      wiz     logit(LOG_DEBUG, 0, "ageing entries");
   1621   1.1  mycroft 
   1622   1.1  mycroft     gtnptr = &kernel_table;
   1623   1.1  mycroft     while ((gt = *gtnptr) != NULL) {
   1624   1.1  mycroft 	r = gt->gt_route;
   1625   1.1  mycroft 
   1626   1.1  mycroft 	/* advance the timer for the kernel entry */
   1627   1.1  mycroft 	gt->gt_timer -= ROUTE_MAX_REPORT_DELAY;
   1628   1.1  mycroft 
   1629   1.1  mycroft 	/* decrement prune timer if need be */
   1630   1.1  mycroft 	if (gt->gt_prsent_timer > 0) {
   1631   1.1  mycroft 	    gt->gt_prsent_timer -= ROUTE_MAX_REPORT_DELAY;
   1632   1.1  mycroft 	    if (gt->gt_prsent_timer <= 0) {
   1633  1.11      wiz 		logit(LOG_DEBUG, 0, "upstream prune tmo (%s %s)",
   1634  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
   1635  1.14      dsl 		    inet_fmt(gt->gt_mcastgrp));
   1636   1.1  mycroft 		gt->gt_prsent_timer = -1;
   1637   1.1  mycroft 	    }
   1638   1.1  mycroft 	}
   1639   1.1  mycroft 
   1640   1.1  mycroft 	/* retransmit graft if graft sent flag is still set */
   1641   1.1  mycroft 	if (gt->gt_grftsnt) {
   1642   1.9      wiz 	    int y;
   1643   1.1  mycroft 	    CHK_GS(gt->gt_grftsnt++, y);
   1644   1.1  mycroft 	    if (y)
   1645   1.1  mycroft 		send_graft(gt);
   1646   1.1  mycroft 	}
   1647   1.1  mycroft 
   1648   1.1  mycroft 	/*
   1649   1.1  mycroft 	 * Age prunes
   1650   1.1  mycroft 	 *
   1651   1.1  mycroft 	 * If a prune expires, forward again on that vif.
   1652   1.1  mycroft 	 */
   1653   1.1  mycroft 	ptnp = &gt->gt_pruntbl;
   1654   1.1  mycroft 	while ((pt = *ptnp) != NULL) {
   1655   1.1  mycroft 	    if ((pt->pt_timer -= ROUTE_MAX_REPORT_DELAY) <= 0) {
   1656  1.11      wiz 		logit(LOG_DEBUG, 0, "expire prune (%s %s) from %s on vif %d",
   1657  1.14      dsl 		    inet_fmts(r->rt_origin, r->rt_originmask),
   1658  1.14      dsl 		    inet_fmt(gt->gt_mcastgrp),
   1659  1.14      dsl 		    inet_fmt(pt->pt_router),
   1660   1.1  mycroft 		    pt->pt_vifi);
   1661   1.1  mycroft 
   1662   1.3  mycroft 		expire_prune(pt->pt_vifi, gt);
   1663   1.1  mycroft 
   1664   1.1  mycroft 		/* remove the router's prune entry and await new one */
   1665   1.1  mycroft 		*ptnp = pt->pt_next;
   1666   1.1  mycroft 		free(pt);
   1667   1.1  mycroft 	    } else {
   1668   1.1  mycroft 		ptnp = &pt->pt_next;
   1669   1.1  mycroft 	    }
   1670   1.1  mycroft 	}
   1671   1.1  mycroft 
   1672   1.1  mycroft 	/*
   1673   1.3  mycroft 	 * If the cache entry has expired, delete source table entries for
   1674   1.3  mycroft 	 * silent sources.  If there are no source entries left, and there
   1675   1.3  mycroft 	 * are no downstream prunes, then the entry is deleted.
   1676   1.3  mycroft 	 * Otherwise, the cache entry's timer is refreshed.
   1677   1.1  mycroft 	 */
   1678   1.1  mycroft 	if (gt->gt_timer <= 0) {
   1679   1.3  mycroft 	    /* Check for traffic before deleting source entries */
   1680   1.3  mycroft 	    sg_req.grp.s_addr = gt->gt_mcastgrp;
   1681   1.3  mycroft 	    stnp = &gt->gt_srctbl;
   1682   1.3  mycroft 	    while ((st = *stnp) != NULL) {
   1683   1.3  mycroft 		sg_req.src.s_addr = st->st_origin;
   1684   1.6      hwr 		if (ioctl(igmp_socket, SIOCGETSGCNT, (char *)&sg_req) < 0) {
   1685  1.11      wiz 		    logit(LOG_WARNING, errno, "%s (%s %s)",
   1686   1.3  mycroft 			"age_table_entry: SIOCGETSGCNT failing for",
   1687  1.14      dsl 			inet_fmt(st->st_origin),
   1688  1.14      dsl 			inet_fmt(gt->gt_mcastgrp));
   1689   1.3  mycroft 		    /* Make sure it gets deleted below */
   1690   1.3  mycroft 		    sg_req.pktcnt = st->st_pktcnt;
   1691   1.3  mycroft 		}
   1692   1.3  mycroft 		if (sg_req.pktcnt == st->st_pktcnt) {
   1693   1.3  mycroft 		    *stnp = st->st_next;
   1694  1.11      wiz 		    logit(LOG_DEBUG, 0, "age_table_entry deleting (%s %s)",
   1695  1.14      dsl 			inet_fmt(st->st_origin),
   1696  1.14      dsl 			inet_fmt(gt->gt_mcastgrp));
   1697   1.3  mycroft 		    if (k_del_rg(st->st_origin, gt) < 0) {
   1698  1.11      wiz 			logit(LOG_WARNING, errno,
   1699   1.3  mycroft 			    "age_table_entry trying to delete (%s %s)",
   1700  1.14      dsl 			    inet_fmt(st->st_origin),
   1701  1.14      dsl 			    inet_fmt(gt->gt_mcastgrp));
   1702   1.1  mycroft 		    }
   1703   1.3  mycroft 		    kroutes--;
   1704   1.3  mycroft 		    free(st);
   1705   1.3  mycroft 		} else {
   1706   1.3  mycroft 		    st->st_pktcnt = sg_req.pktcnt;
   1707   1.3  mycroft 		    stnp = &st->st_next;
   1708   1.1  mycroft 		}
   1709   1.3  mycroft 	    }
   1710   1.1  mycroft 
   1711   1.3  mycroft 	    /*
   1712   1.3  mycroft 	     * Retain the group entry if we have downstream prunes or if
   1713   1.3  mycroft 	     * there is at least one source in the list that still has
   1714   1.3  mycroft 	     * traffic, or if our upstream prune timer is running.
   1715   1.3  mycroft 	     */
   1716   1.3  mycroft 	    if (gt->gt_pruntbl != NULL || gt->gt_srctbl != NULL ||
   1717   1.3  mycroft 		gt->gt_prsent_timer > 0) {
   1718   1.3  mycroft 		gt->gt_timer = CACHE_LIFETIME(cache_lifetime);
   1719   1.5     ross 		if (gt->gt_prsent_timer == -1) {
   1720   1.3  mycroft 		    if (gt->gt_grpmems == 0)
   1721   1.3  mycroft 			send_prune(gt);
   1722   1.3  mycroft 		    else
   1723   1.3  mycroft 			gt->gt_prsent_timer = 0;
   1724   1.5     ross 		}
   1725   1.3  mycroft 		gtnptr = &gt->gt_gnext;
   1726   1.3  mycroft 		continue;
   1727   1.1  mycroft 	    }
   1728   1.1  mycroft 
   1729  1.11      wiz 	    logit(LOG_DEBUG, 0, "timeout cache entry (%s, %s)",
   1730  1.14      dsl 		inet_fmts(r->rt_origin, r->rt_originmask),
   1731  1.14      dsl 		inet_fmt(gt->gt_mcastgrp));
   1732   1.1  mycroft 
   1733   1.1  mycroft 	    if (gt->gt_prev)
   1734   1.1  mycroft 		gt->gt_prev->gt_next = gt->gt_next;
   1735   1.1  mycroft 	    else
   1736   1.1  mycroft 		gt->gt_route->rt_groups = gt->gt_next;
   1737   1.1  mycroft 	    if (gt->gt_next)
   1738   1.1  mycroft 		gt->gt_next->gt_prev = gt->gt_prev;
   1739   1.1  mycroft 
   1740   1.1  mycroft 	    if (gt->gt_gprev) {
   1741   1.1  mycroft 		gt->gt_gprev->gt_gnext = gt->gt_gnext;
   1742   1.1  mycroft 		gtnptr = &gt->gt_gprev->gt_gnext;
   1743   1.1  mycroft 	    } else {
   1744   1.1  mycroft 		kernel_table = gt->gt_gnext;
   1745   1.1  mycroft 		gtnptr = &kernel_table;
   1746   1.1  mycroft 	    }
   1747   1.1  mycroft 	    if (gt->gt_gnext)
   1748   1.1  mycroft 		gt->gt_gnext->gt_gprev = gt->gt_gprev;
   1749   1.1  mycroft 
   1750   1.3  mycroft #ifdef RSRR
   1751   1.3  mycroft 	    /* Send route change notification to reservation protocol. */
   1752   1.3  mycroft 	    rsrr_cache_send(gt,0);
   1753   1.3  mycroft 	    rsrr_cache_clean(gt);
   1754   1.3  mycroft #endif /* RSRR */
   1755   1.1  mycroft 	    free((char *)gt);
   1756   1.1  mycroft 	} else {
   1757   1.5     ross 	    if (gt->gt_prsent_timer == -1) {
   1758   1.3  mycroft 		if (gt->gt_grpmems == 0)
   1759   1.3  mycroft 		    send_prune(gt);
   1760   1.3  mycroft 		else
   1761   1.3  mycroft 		    gt->gt_prsent_timer = 0;
   1762   1.5     ross 	    }
   1763   1.1  mycroft 	    gtnptr = &gt->gt_gnext;
   1764   1.1  mycroft 	}
   1765   1.1  mycroft     }
   1766   1.1  mycroft 
   1767   1.1  mycroft     /*
   1768   1.1  mycroft      * When traversing the no_route table, the decision is much easier.
   1769   1.1  mycroft      * Just delete it if it has timed out.
   1770   1.1  mycroft      */
   1771   1.1  mycroft     gtnptr = &kernel_no_route;
   1772   1.1  mycroft     while ((gt = *gtnptr) != NULL) {
   1773   1.1  mycroft 	/* advance the timer for the kernel entry */
   1774   1.1  mycroft 	gt->gt_timer -= ROUTE_MAX_REPORT_DELAY;
   1775   1.1  mycroft 
   1776   1.1  mycroft 	if (gt->gt_timer < 0) {
   1777   1.1  mycroft 	    if (gt->gt_srctbl) {
   1778   1.1  mycroft 		if (k_del_rg(gt->gt_srctbl->st_origin, gt) < 0) {
   1779  1.11      wiz 		    logit(LOG_WARNING, errno, "%s (%s %s)",
   1780   1.1  mycroft 			"age_table_entry trying to delete no-route",
   1781  1.14      dsl 			inet_fmt(gt->gt_srctbl->st_origin),
   1782  1.14      dsl 			inet_fmt(gt->gt_mcastgrp));
   1783   1.1  mycroft 		}
   1784   1.1  mycroft 		free(gt->gt_srctbl);
   1785   1.1  mycroft 	    }
   1786   1.1  mycroft 	    *gtnptr = gt->gt_next;
   1787   1.1  mycroft 	    if (gt->gt_next)
   1788   1.1  mycroft 		gt->gt_next->gt_prev = gt->gt_prev;
   1789   1.1  mycroft 
   1790   1.1  mycroft 	    free((char *)gt);
   1791   1.1  mycroft 	} else {
   1792   1.1  mycroft 	    gtnptr = &gt->gt_next;
   1793   1.1  mycroft 	}
   1794   1.1  mycroft     }
   1795   1.1  mycroft }
   1796   1.1  mycroft 
   1797   1.3  mycroft /*
   1798   1.3  mycroft  * Modify the kernel to forward packets when one or multiple prunes that
   1799   1.3  mycroft  * were received on the vif given by vifi, for the group given by gt,
   1800   1.3  mycroft  * have expired.
   1801   1.3  mycroft  */
   1802   1.3  mycroft static void
   1803   1.9      wiz expire_prune(vifi_t vifi, struct gtable *gt)
   1804   1.3  mycroft {
   1805   1.3  mycroft     /*
   1806   1.3  mycroft      * No need to send a graft, any prunes that we sent
   1807   1.3  mycroft      * will expire before any prunes that we have received.
   1808   1.3  mycroft      */
   1809   1.3  mycroft     if (gt->gt_prsent_timer > 0) {
   1810  1.11      wiz         logit(LOG_DEBUG, 0, "prune expired with %d left on %s",
   1811   1.3  mycroft 		gt->gt_prsent_timer, "prsent_timer");
   1812   1.3  mycroft         gt->gt_prsent_timer = 0;
   1813   1.3  mycroft     }
   1814   1.3  mycroft 
   1815   1.3  mycroft     /* modify the kernel entry to forward packets */
   1816   1.3  mycroft     if (!VIFM_ISSET(vifi, gt->gt_grpmems)) {
   1817   1.3  mycroft         struct rtentry *rt = gt->gt_route;
   1818   1.3  mycroft         VIFM_SET(vifi, gt->gt_grpmems);
   1819  1.11      wiz         logit(LOG_DEBUG, 0, "forw again (%s %s) gm:%x vif:%d",
   1820  1.14      dsl 	inet_fmts(rt->rt_origin, rt->rt_originmask),
   1821  1.14      dsl 	inet_fmt(gt->gt_mcastgrp), gt->gt_grpmems, vifi);
   1822   1.3  mycroft 
   1823   1.3  mycroft         prun_add_ttls(gt);
   1824   1.3  mycroft         update_kernel(gt);
   1825   1.3  mycroft #ifdef RSRR
   1826   1.3  mycroft         /* Send route change notification to reservation protocol. */
   1827   1.3  mycroft         rsrr_cache_send(gt,1);
   1828   1.3  mycroft #endif /* RSRR */
   1829   1.3  mycroft     }
   1830   1.3  mycroft }
   1831   1.3  mycroft 
   1832   1.3  mycroft 
   1833   1.3  mycroft static char *
   1834   1.9      wiz scaletime(u_long t)
   1835   1.1  mycroft {
   1836   1.1  mycroft     static char buf1[5];
   1837   1.1  mycroft     static char buf2[5];
   1838   1.1  mycroft     static char *buf=buf1;
   1839   1.1  mycroft     char s;
   1840   1.1  mycroft     char *p;
   1841   1.1  mycroft 
   1842   1.1  mycroft     p = buf;
   1843   1.1  mycroft     if (buf == buf1)
   1844   1.1  mycroft 	buf = buf2;
   1845   1.1  mycroft     else
   1846   1.1  mycroft 	buf = buf1;
   1847   1.1  mycroft 
   1848   1.1  mycroft     if (t < 120) {
   1849   1.1  mycroft 	s = 's';
   1850   1.1  mycroft     } else if (t < 3600) {
   1851   1.1  mycroft 	t /= 60;
   1852   1.1  mycroft 	s = 'm';
   1853   1.1  mycroft     } else if (t < 86400) {
   1854   1.1  mycroft 	t /= 3600;
   1855   1.1  mycroft 	s = 'h';
   1856   1.1  mycroft     } else if (t < 864000) {
   1857   1.1  mycroft 	t /= 86400;
   1858   1.1  mycroft 	s = 'd';
   1859   1.1  mycroft     } else {
   1860   1.1  mycroft 	t /= 604800;
   1861   1.1  mycroft 	s = 'w';
   1862   1.1  mycroft     }
   1863   1.1  mycroft     if (t > 999)
   1864   1.1  mycroft 	return "*** ";
   1865   1.1  mycroft 
   1866  1.13   itojun     snprintf(p, 5, "%3d%c", (int)t, s);
   1867   1.1  mycroft 
   1868   1.1  mycroft     return p;
   1869   1.1  mycroft }
   1870   1.1  mycroft 
   1871   1.1  mycroft /*
   1872   1.1  mycroft  * Print the contents of the cache table on file 'fp2'.
   1873   1.1  mycroft  */
   1874   1.1  mycroft void
   1875   1.9      wiz dump_cache(FILE *fp2)
   1876   1.1  mycroft {
   1877   1.9      wiz     struct rtentry *r;
   1878   1.9      wiz     struct gtable *gt;
   1879   1.9      wiz     struct stable *st;
   1880   1.9      wiz     vifi_t i;
   1881   1.9      wiz     time_t thyme = time(0);
   1882   1.1  mycroft 
   1883   1.1  mycroft     fprintf(fp2,
   1884   1.1  mycroft 	    "Multicast Routing Cache Table (%d entries)\n%s", kroutes,
   1885   1.1  mycroft     " Origin             Mcast-group     CTmr  Age Ptmr IVif Forwvifs\n");
   1886   1.1  mycroft 
   1887   1.1  mycroft     for (gt = kernel_no_route; gt; gt = gt->gt_next) {
   1888   1.1  mycroft 	if (gt->gt_srctbl) {
   1889   1.1  mycroft 	    fprintf(fp2, " %-18s %-15s %-4s %-4s    - -1\n",
   1890  1.14      dsl 		inet_fmts(gt->gt_srctbl->st_origin, 0xffffffff),
   1891  1.14      dsl 		inet_fmt(gt->gt_mcastgrp), scaletime(gt->gt_timer),
   1892   1.1  mycroft 		scaletime(thyme - gt->gt_ctime));
   1893  1.14      dsl 	    fprintf(fp2, ">%s\n", inet_fmt(gt->gt_srctbl->st_origin));
   1894   1.1  mycroft 	}
   1895   1.1  mycroft     }
   1896   1.1  mycroft 
   1897   1.1  mycroft     for (gt = kernel_table; gt; gt = gt->gt_gnext) {
   1898   1.1  mycroft 	r = gt->gt_route;
   1899   1.1  mycroft 	fprintf(fp2, " %-18s %-15s",
   1900  1.14      dsl 	    inet_fmts(r->rt_origin, r->rt_originmask),
   1901  1.14      dsl 	    inet_fmt(gt->gt_mcastgrp));
   1902   1.1  mycroft 
   1903   1.1  mycroft 	fprintf(fp2, " %-4s", scaletime(gt->gt_timer));
   1904   1.1  mycroft 
   1905   1.1  mycroft 	fprintf(fp2, " %-4s %-4s ", scaletime(thyme - gt->gt_ctime),
   1906   1.1  mycroft 			gt->gt_prsent_timer ? scaletime(gt->gt_prsent_timer) :
   1907   1.1  mycroft 					      "   -");
   1908   1.1  mycroft 
   1909   1.1  mycroft 	fprintf(fp2, "%2u%c%c ", r->rt_parent,
   1910   1.1  mycroft 	    gt->gt_prsent_timer ? 'P' : ' ',
   1911   1.1  mycroft 	    VIFM_ISSET(r->rt_parent, gt->gt_scope) ? 'B' : ' ');
   1912   1.1  mycroft 
   1913   1.1  mycroft 	for (i = 0; i < numvifs; ++i) {
   1914   1.1  mycroft 	    if (VIFM_ISSET(i, gt->gt_grpmems))
   1915   1.1  mycroft 		fprintf(fp2, " %u ", i);
   1916   1.1  mycroft 	    else if (VIFM_ISSET(i, r->rt_children) &&
   1917   1.1  mycroft 		     !VIFM_ISSET(i, r->rt_leaves))
   1918   1.1  mycroft 		fprintf(fp2, " %u%c", i,
   1919   1.1  mycroft 			VIFM_ISSET(i, gt->gt_scope) ? 'b' : 'p');
   1920   1.1  mycroft 	}
   1921   1.1  mycroft 	fprintf(fp2, "\n");
   1922   1.1  mycroft 	for (st = gt->gt_srctbl; st; st = st->st_next) {
   1923  1.14      dsl 	    fprintf(fp2, ">%s\n", inet_fmt(st->st_origin));
   1924   1.1  mycroft 	}
   1925   1.1  mycroft #ifdef DEBUG_PRUNES
   1926   1.1  mycroft 	for (pt = gt->gt_pruntbl; pt; pt = pt->pt_next) {
   1927  1.14      dsl 	    fprintf(fp2, "<r:%s v:%d t:%d\n", inet_fmt(pt->pt_router),
   1928   1.1  mycroft 		pt->pt_vifi, pt->pt_timer);
   1929   1.1  mycroft 	}
   1930   1.1  mycroft #endif
   1931   1.1  mycroft     }
   1932   1.1  mycroft }
   1933   1.1  mycroft 
   1934   1.1  mycroft /*
   1935   1.1  mycroft  * Traceroute function which returns traceroute replies to the requesting
   1936   1.1  mycroft  * router. Also forwards the request to downstream routers.
   1937   1.9      wiz  *
   1938   1.9      wiz  * no: promoted u_char
   1939   1.1  mycroft  */
   1940   1.1  mycroft void
   1941   1.9      wiz accept_mtrace(u_int32_t src, u_int32_t dst, u_int32_t group, char *data,
   1942   1.9      wiz 	      u_int no, int datalen)
   1943   1.1  mycroft {
   1944   1.1  mycroft     u_char type;
   1945   1.1  mycroft     struct rtentry *rt;
   1946   1.1  mycroft     struct gtable *gt;
   1947   1.1  mycroft     struct tr_query *qry;
   1948   1.1  mycroft     struct tr_resp  *resp;
   1949   1.1  mycroft     int vifi;
   1950   1.1  mycroft     char *p;
   1951   1.1  mycroft     int rcount;
   1952   1.1  mycroft     int errcode = TR_NO_ERR;
   1953   1.1  mycroft     int resptype;
   1954   1.1  mycroft     struct timeval tp;
   1955   1.1  mycroft     struct sioc_vif_req v_req;
   1956   1.1  mycroft     struct sioc_sg_req sg_req;
   1957   1.1  mycroft 
   1958   1.1  mycroft     /* Remember qid across invocations */
   1959   1.1  mycroft     static u_int32_t oqid = 0;
   1960   1.1  mycroft 
   1961   1.1  mycroft     /* timestamp the request/response */
   1962   1.1  mycroft     gettimeofday(&tp, 0);
   1963   1.1  mycroft 
   1964   1.1  mycroft     /*
   1965   1.1  mycroft      * Check if it is a query or a response
   1966   1.1  mycroft      */
   1967   1.1  mycroft     if (datalen == QLEN) {
   1968   1.1  mycroft 	type = QUERY;
   1969  1.11      wiz 	logit(LOG_DEBUG, 0, "Initial traceroute query rcvd from %s to %s",
   1970  1.14      dsl 	    inet_fmt(src), inet_fmt(dst));
   1971   1.1  mycroft     }
   1972   1.1  mycroft     else if ((datalen - QLEN) % RLEN == 0) {
   1973   1.1  mycroft 	type = RESP;
   1974  1.11      wiz 	logit(LOG_DEBUG, 0, "In-transit traceroute query rcvd from %s to %s",
   1975  1.14      dsl 	    inet_fmt(src), inet_fmt(dst));
   1976   1.3  mycroft 	if (IN_MULTICAST(ntohl(dst))) {
   1977  1.11      wiz 	    logit(LOG_DEBUG, 0, "Dropping multicast response");
   1978   1.1  mycroft 	    return;
   1979   1.1  mycroft 	}
   1980   1.1  mycroft     }
   1981   1.1  mycroft     else {
   1982  1.11      wiz 	logit(LOG_WARNING, 0, "%s from %s to %s",
   1983   1.8      wiz 	    "Non decipherable traceroute request received",
   1984  1.14      dsl 	    inet_fmt(src), inet_fmt(dst));
   1985   1.1  mycroft 	return;
   1986   1.1  mycroft     }
   1987   1.1  mycroft 
   1988   1.1  mycroft     qry = (struct tr_query *)data;
   1989   1.1  mycroft 
   1990   1.1  mycroft     /*
   1991   1.1  mycroft      * if it is a packet with all reports filled, drop it
   1992   1.1  mycroft      */
   1993   1.1  mycroft     if ((rcount = (datalen - QLEN)/RLEN) == no) {
   1994  1.11      wiz 	logit(LOG_DEBUG, 0, "packet with all reports filled in");
   1995   1.1  mycroft 	return;
   1996   1.1  mycroft     }
   1997   1.1  mycroft 
   1998  1.13   itojun     logit(LOG_DEBUG, 0, "s: %s g: %s d: %s ",
   1999  1.14      dsl 	    inet_fmt(qry->tr_src),
   2000  1.14      dsl 	    inet_fmt(group),
   2001  1.14      dsl 	    inet_fmt(qry->tr_dst));
   2002  1.11      wiz     logit(LOG_DEBUG, 0, "rttl: %d rd: %s", qry->tr_rttl,
   2003  1.14      dsl 	    inet_fmt(qry->tr_raddr));
   2004  1.11      wiz     logit(LOG_DEBUG, 0, "rcount:%d, qid:%06x", rcount, qry->tr_qid);
   2005   1.1  mycroft 
   2006   1.1  mycroft     /* determine the routing table entry for this traceroute */
   2007   1.1  mycroft     rt = determine_route(qry->tr_src);
   2008   1.1  mycroft     if (rt) {
   2009  1.11      wiz 	logit(LOG_DEBUG, 0, "rt parent vif: %d rtr: %s metric: %d",
   2010  1.14      dsl 		rt->rt_parent, inet_fmt(rt->rt_gateway),
   2011  1.13   itojun 		rt->rt_metric);
   2012  1.11      wiz 	logit(LOG_DEBUG, 0, "rt origin %s",
   2013  1.14      dsl 		inet_fmts(rt->rt_origin, rt->rt_originmask));
   2014   1.1  mycroft     } else
   2015  1.11      wiz 	logit(LOG_DEBUG, 0, "...no route");
   2016   1.1  mycroft 
   2017   1.1  mycroft     /*
   2018   1.1  mycroft      * Query type packet - check if rte exists
   2019   1.1  mycroft      * Check if the query destination is a vif connected to me.
   2020   1.1  mycroft      * and if so, whether I should start response back
   2021   1.1  mycroft      */
   2022   1.1  mycroft     if (type == QUERY) {
   2023   1.3  mycroft 	if (oqid == qry->tr_qid) {
   2024   1.3  mycroft 	    /*
   2025   1.3  mycroft 	     * If the multicast router is a member of the group being
   2026   1.3  mycroft 	     * queried, and the query is multicasted, then the router can
   2027   1.8      wiz 	     * receive multiple copies of the same query.  If we have already
   2028   1.3  mycroft 	     * replied to this traceroute, just ignore it this time.
   2029   1.3  mycroft 	     *
   2030   1.3  mycroft 	     * This is not a total solution, but since if this fails you
   2031   1.3  mycroft 	     * only get N copies, N <= the number of interfaces on the router,
   2032   1.3  mycroft 	     * it is not fatal.
   2033   1.3  mycroft 	     */
   2034  1.11      wiz 	    logit(LOG_DEBUG, 0, "ignoring duplicate traceroute packet");
   2035   1.3  mycroft 	    return;
   2036   1.3  mycroft 	}
   2037   1.3  mycroft 
   2038   1.1  mycroft 	if (rt == NULL) {
   2039  1.11      wiz 	    logit(LOG_DEBUG, 0, "Mcast traceroute: no route entry %s",
   2040  1.14      dsl 		   inet_fmt(qry->tr_src));
   2041   1.1  mycroft 	    if (IN_MULTICAST(ntohl(dst)))
   2042   1.1  mycroft 		return;
   2043   1.1  mycroft 	}
   2044   1.1  mycroft 	vifi = find_vif(qry->tr_dst, 0);
   2045   1.1  mycroft 
   2046   1.1  mycroft 	if (vifi == NO_VIF) {
   2047   1.1  mycroft 	    /* The traceroute destination is not on one of my subnet vifs. */
   2048  1.11      wiz 	    logit(LOG_DEBUG, 0, "Destination %s not an interface",
   2049  1.14      dsl 		   inet_fmt(qry->tr_dst));
   2050   1.1  mycroft 	    if (IN_MULTICAST(ntohl(dst)))
   2051   1.1  mycroft 		return;
   2052   1.1  mycroft 	    errcode = TR_WRONG_IF;
   2053   1.1  mycroft 	} else if (rt != NULL && !VIFM_ISSET(vifi, rt->rt_children)) {
   2054  1.13   itojun 	    logit(LOG_DEBUG, 0,
   2055  1.13   itojun 		    "Destination %s not on forwarding tree for src %s",
   2056  1.14      dsl 		   inet_fmt(qry->tr_dst),
   2057  1.14      dsl 		   inet_fmt(qry->tr_src));
   2058   1.1  mycroft 	    if (IN_MULTICAST(ntohl(dst)))
   2059   1.1  mycroft 		return;
   2060   1.1  mycroft 	    errcode = TR_WRONG_IF;
   2061   1.1  mycroft 	}
   2062   1.1  mycroft     }
   2063   1.1  mycroft     else {
   2064   1.1  mycroft 	/*
   2065   1.1  mycroft 	 * determine which interface the packet came in on
   2066   1.1  mycroft 	 * RESP packets travel hop-by-hop so this either traversed
   2067   1.1  mycroft 	 * a tunnel or came from a directly attached mrouter.
   2068   1.1  mycroft 	 */
   2069   1.1  mycroft 	if ((vifi = find_vif(src, dst)) == NO_VIF) {
   2070  1.11      wiz 	    logit(LOG_DEBUG, 0, "Wrong interface for packet");
   2071   1.1  mycroft 	    errcode = TR_WRONG_IF;
   2072   1.1  mycroft 	}
   2073   1.1  mycroft     }
   2074   1.1  mycroft 
   2075   1.3  mycroft     /* Now that we've decided to send a response, save the qid */
   2076   1.3  mycroft     oqid = qry->tr_qid;
   2077   1.3  mycroft 
   2078  1.11      wiz     logit(LOG_DEBUG, 0, "Sending traceroute response");
   2079   1.1  mycroft 
   2080   1.1  mycroft     /* copy the packet to the sending buffer */
   2081   1.1  mycroft     p = send_buf + MIN_IP_HEADER_LEN + IGMP_MINLEN;
   2082   1.1  mycroft 
   2083   1.1  mycroft     bcopy(data, p, datalen);
   2084   1.1  mycroft 
   2085   1.1  mycroft     p += datalen;
   2086   1.1  mycroft 
   2087   1.1  mycroft     /*
   2088   1.1  mycroft      * If there is no room to insert our reply, coopt the previous hop
   2089   1.1  mycroft      * error indication to relay this fact.
   2090   1.1  mycroft      */
   2091   1.1  mycroft     if (p + sizeof(struct tr_resp) > send_buf + RECV_BUF_SIZE) {
   2092   1.1  mycroft 	resp = (struct tr_resp *)p - 1;
   2093   1.1  mycroft 	resp->tr_rflags = TR_NO_SPACE;
   2094   1.1  mycroft 	rt = NULL;
   2095   1.1  mycroft 	goto sendit;
   2096   1.1  mycroft     }
   2097   1.1  mycroft 
   2098   1.1  mycroft     /*
   2099   1.1  mycroft      * fill in initial response fields
   2100   1.1  mycroft      */
   2101   1.1  mycroft     resp = (struct tr_resp *)p;
   2102   1.1  mycroft     bzero(resp, sizeof(struct tr_resp));
   2103   1.1  mycroft     datalen += RLEN;
   2104   1.1  mycroft 
   2105   1.3  mycroft     resp->tr_qarr    = htonl((tp.tv_sec + JAN_1970) << 16) +
   2106   1.1  mycroft 				((tp.tv_usec >> 4) & 0xffff);
   2107   1.1  mycroft 
   2108   1.1  mycroft     resp->tr_rproto  = PROTO_DVMRP;
   2109   1.1  mycroft     if (errcode != TR_NO_ERR) {
   2110   1.1  mycroft 	resp->tr_rflags	 = errcode;
   2111   1.1  mycroft 	rt = NULL;	/* hack to enforce send straight to requestor */
   2112   1.1  mycroft 	goto sendit;
   2113   1.1  mycroft     }
   2114   1.1  mycroft     resp->tr_outaddr = uvifs[vifi].uv_lcl_addr;
   2115   1.1  mycroft     resp->tr_fttl    = uvifs[vifi].uv_threshold;
   2116   1.1  mycroft     resp->tr_rflags  = TR_NO_ERR;
   2117   1.1  mycroft 
   2118   1.1  mycroft     /*
   2119   1.1  mycroft      * obtain # of packets out on interface
   2120   1.1  mycroft      */
   2121   1.1  mycroft     v_req.vifi = vifi;
   2122   1.6      hwr     if (ioctl(igmp_socket, SIOCGETVIFCNT, (char *)&v_req) >= 0)
   2123   1.3  mycroft 	resp->tr_vifout  =  htonl(v_req.ocount);
   2124   1.1  mycroft 
   2125   1.1  mycroft     /*
   2126   1.1  mycroft      * fill in scoping & pruning information
   2127   1.1  mycroft      */
   2128   1.1  mycroft     if (rt)
   2129   1.1  mycroft 	for (gt = rt->rt_groups; gt; gt = gt->gt_next) {
   2130   1.1  mycroft 	    if (gt->gt_mcastgrp >= group)
   2131   1.1  mycroft 		break;
   2132   1.1  mycroft 	}
   2133   1.1  mycroft     else
   2134   1.1  mycroft 	gt = NULL;
   2135   1.1  mycroft 
   2136   1.1  mycroft     if (gt && gt->gt_mcastgrp == group) {
   2137   1.1  mycroft 	sg_req.src.s_addr = qry->tr_src;
   2138   1.1  mycroft 	sg_req.grp.s_addr = group;
   2139   1.6      hwr 	if (ioctl(igmp_socket, SIOCGETSGCNT, (char *)&sg_req) >= 0)
   2140   1.3  mycroft 	    resp->tr_pktcnt = htonl(sg_req.pktcnt);
   2141   1.1  mycroft 
   2142   1.1  mycroft 	if (VIFM_ISSET(vifi, gt->gt_scope))
   2143   1.1  mycroft 	    resp->tr_rflags = TR_SCOPED;
   2144   1.1  mycroft 	else if (gt->gt_prsent_timer)
   2145   1.1  mycroft 	    resp->tr_rflags = TR_PRUNED;
   2146   1.5     ross 	else if (!VIFM_ISSET(vifi, gt->gt_grpmems)) {
   2147   1.1  mycroft 	    if (VIFM_ISSET(vifi, rt->rt_children) &&
   2148   1.1  mycroft 		!VIFM_ISSET(vifi, rt->rt_leaves))
   2149   1.1  mycroft 		resp->tr_rflags = TR_OPRUNED;
   2150   1.1  mycroft 	    else
   2151   1.1  mycroft 		resp->tr_rflags = TR_NO_FWD;
   2152   1.5     ross 	}
   2153   1.1  mycroft     } else {
   2154   1.1  mycroft 	if (scoped_addr(vifi, group))
   2155   1.1  mycroft 	    resp->tr_rflags = TR_SCOPED;
   2156   1.3  mycroft 	else if (rt && !VIFM_ISSET(vifi, rt->rt_children))
   2157   1.1  mycroft 	    resp->tr_rflags = TR_NO_FWD;
   2158   1.1  mycroft     }
   2159   1.1  mycroft 
   2160   1.1  mycroft     /*
   2161   1.1  mycroft      *  if no rte exists, set NO_RTE error
   2162   1.1  mycroft      */
   2163   1.1  mycroft     if (rt == NULL) {
   2164   1.1  mycroft 	src = dst;		/* the dst address of resp. pkt */
   2165   1.1  mycroft 	resp->tr_inaddr   = 0;
   2166   1.1  mycroft 	resp->tr_rflags   = TR_NO_RTE;
   2167   1.1  mycroft 	resp->tr_rmtaddr  = 0;
   2168   1.1  mycroft     } else {
   2169   1.1  mycroft 	/* get # of packets in on interface */
   2170   1.1  mycroft 	v_req.vifi = rt->rt_parent;
   2171   1.6      hwr 	if (ioctl(igmp_socket, SIOCGETVIFCNT, (char *)&v_req) >= 0)
   2172   1.3  mycroft 	    resp->tr_vifin = htonl(v_req.icount);
   2173   1.1  mycroft 
   2174   1.1  mycroft 	MASK_TO_VAL(rt->rt_originmask, resp->tr_smask);
   2175   1.1  mycroft 	src = uvifs[rt->rt_parent].uv_lcl_addr;
   2176   1.1  mycroft 	resp->tr_inaddr = src;
   2177   1.1  mycroft 	resp->tr_rmtaddr = rt->rt_gateway;
   2178   1.1  mycroft 	if (!VIFM_ISSET(vifi, rt->rt_children)) {
   2179  1.13   itojun 	    logit(LOG_DEBUG, 0,
   2180  1.13   itojun 		    "Destination %s not on forwarding tree for src %s",
   2181  1.14      dsl 		   inet_fmt(qry->tr_dst),
   2182  1.14      dsl 		   inet_fmt(qry->tr_src));
   2183   1.1  mycroft 	    resp->tr_rflags = TR_WRONG_IF;
   2184   1.1  mycroft 	}
   2185   1.1  mycroft 	if (rt->rt_metric >= UNREACHABLE) {
   2186   1.1  mycroft 	    resp->tr_rflags = TR_NO_RTE;
   2187   1.1  mycroft 	    /* Hack to send reply directly */
   2188   1.1  mycroft 	    rt = NULL;
   2189   1.1  mycroft 	}
   2190   1.1  mycroft     }
   2191   1.1  mycroft 
   2192   1.1  mycroft sendit:
   2193   1.1  mycroft     /*
   2194   1.1  mycroft      * if metric is 1 or no. of reports is 1, send response to requestor
   2195   1.1  mycroft      * else send to upstream router.  If the upstream router can't handle
   2196   1.1  mycroft      * mtrace, set an error code and send to requestor anyway.
   2197   1.1  mycroft      */
   2198  1.11      wiz     logit(LOG_DEBUG, 0, "rcount:%d, no:%d", rcount, no);
   2199   1.1  mycroft 
   2200   1.1  mycroft     if ((rcount + 1 == no) || (rt == NULL) || (rt->rt_metric == 1)) {
   2201   1.1  mycroft 	resptype = IGMP_MTRACE_REPLY;
   2202   1.1  mycroft 	dst = qry->tr_raddr;
   2203   1.1  mycroft     } else
   2204   1.1  mycroft 	if (!can_mtrace(rt->rt_parent, rt->rt_gateway)) {
   2205   1.1  mycroft 	    dst = qry->tr_raddr;
   2206   1.1  mycroft 	    resp->tr_rflags = TR_OLD_ROUTER;
   2207   1.1  mycroft 	    resptype = IGMP_MTRACE_REPLY;
   2208   1.1  mycroft 	} else {
   2209   1.1  mycroft 	    dst = rt->rt_gateway;
   2210   1.1  mycroft 	    resptype = IGMP_MTRACE_QUERY;
   2211   1.1  mycroft 	}
   2212   1.1  mycroft 
   2213   1.1  mycroft     if (IN_MULTICAST(ntohl(dst))) {
   2214   1.3  mycroft 	/*
   2215   1.3  mycroft 	 * Send the reply on a known multicast capable vif.
   2216   1.3  mycroft 	 * If we don't have one, we can't source any multicasts anyway.
   2217   1.1  mycroft 	 */
   2218   1.3  mycroft 	if (phys_vif != -1) {
   2219  1.11      wiz 	    logit(LOG_DEBUG, 0, "Sending reply to %s from %s",
   2220  1.14      dsl 		inet_fmt(dst), inet_fmt(uvifs[phys_vif].uv_lcl_addr));
   2221   1.3  mycroft 	    k_set_ttl(qry->tr_rttl);
   2222   1.3  mycroft 	    send_igmp(uvifs[phys_vif].uv_lcl_addr, dst,
   2223   1.3  mycroft 		      resptype, no, group,
   2224   1.3  mycroft 		      datalen);
   2225   1.3  mycroft 	    k_set_ttl(1);
   2226   1.3  mycroft 	} else
   2227  1.11      wiz 	    logit(LOG_INFO, 0, "No enabled phyints -- %s",
   2228   1.3  mycroft 			"dropping traceroute reply");
   2229   1.3  mycroft     } else {
   2230  1.11      wiz 	logit(LOG_DEBUG, 0, "Sending %s to %s from %s",
   2231   1.3  mycroft 	    resptype == IGMP_MTRACE_REPLY ?  "reply" : "request on",
   2232  1.14      dsl 	    inet_fmt(dst), inet_fmt(src));
   2233   1.3  mycroft 
   2234   1.1  mycroft 	send_igmp(src, dst,
   2235   1.1  mycroft 		  resptype, no, group,
   2236   1.1  mycroft 		  datalen);
   2237   1.3  mycroft     }
   2238   1.1  mycroft     return;
   2239   1.1  mycroft }
   2240