2018-03-01 05:29:29 +08:00
|
|
|
/* Linux multicast routing support
|
|
|
|
* Common logic shared by IPv4 [ipmr] and IPv6 [ip6mr] implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/mroute_base.h>
|
|
|
|
|
|
|
|
/* Sets everything common except 'dev', since that is done under locking */
|
|
|
|
void vif_device_init(struct vif_device *v,
|
|
|
|
struct net_device *dev,
|
|
|
|
unsigned long rate_limit,
|
|
|
|
unsigned char threshold,
|
|
|
|
unsigned short flags,
|
|
|
|
unsigned short get_iflink_mask)
|
|
|
|
{
|
|
|
|
v->dev = NULL;
|
|
|
|
v->bytes_in = 0;
|
|
|
|
v->bytes_out = 0;
|
|
|
|
v->pkt_in = 0;
|
|
|
|
v->pkt_out = 0;
|
|
|
|
v->rate_limit = rate_limit;
|
|
|
|
v->flags = flags;
|
|
|
|
v->threshold = threshold;
|
|
|
|
if (v->flags & get_iflink_mask)
|
|
|
|
v->link = dev_get_iflink(dev);
|
|
|
|
else
|
|
|
|
v->link = dev->ifindex;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(vif_device_init);
|
2018-03-01 05:29:33 +08:00
|
|
|
|
|
|
|
struct mr_table *
|
|
|
|
mr_table_alloc(struct net *net, u32 id,
|
|
|
|
const struct rhashtable_params *rht_params,
|
|
|
|
void (*expire_func)(struct timer_list *t),
|
|
|
|
void (*table_set)(struct mr_table *mrt,
|
|
|
|
struct net *net))
|
|
|
|
{
|
|
|
|
struct mr_table *mrt;
|
|
|
|
|
|
|
|
mrt = kzalloc(sizeof(*mrt), GFP_KERNEL);
|
|
|
|
if (!mrt)
|
|
|
|
return NULL;
|
|
|
|
mrt->id = id;
|
|
|
|
write_pnet(&mrt->net, net);
|
|
|
|
|
|
|
|
rhltable_init(&mrt->mfc_hash, rht_params);
|
|
|
|
INIT_LIST_HEAD(&mrt->mfc_cache_list);
|
|
|
|
INIT_LIST_HEAD(&mrt->mfc_unres_queue);
|
|
|
|
|
|
|
|
timer_setup(&mrt->ipmr_expire_timer, expire_func, 0);
|
|
|
|
|
|
|
|
mrt->mroute_reg_vif_num = -1;
|
|
|
|
table_set(mrt, net);
|
|
|
|
return mrt;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(mr_table_alloc);
|