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