linux-surface/kernel/net/ipv4/fib_notifier.c

75 lines
1.6 KiB
C
Raw Normal View History

2017-11-06 02:38:20 +00:00
// SPDX-License-Identifier: GPL-2.0
2017-08-10 13:25:24 +00:00
#include <linux/rtnetlink.h>
#include <linux/notifier.h>
#include <linux/socket.h>
2017-08-10 13:25:24 +00:00
#include <linux/kernel.h>
#include <linux/export.h>
2017-08-10 13:25:24 +00:00
#include <net/net_namespace.h>
#include <net/fib_notifier.h>
2017-08-10 13:25:24 +00:00
#include <net/netns/ipv4.h>
#include <net/ip_fib.h>
int call_fib4_notifier(struct notifier_block *nb, struct net *net,
enum fib_event_type event_type,
struct fib_notifier_info *info)
2017-08-10 13:25:24 +00:00
{
info->family = AF_INET;
return call_fib_notifier(nb, net, event_type, info);
2017-08-10 13:25:24 +00:00
}
int call_fib4_notifiers(struct net *net, enum fib_event_type event_type,
struct fib_notifier_info *info)
2017-08-10 13:25:24 +00:00
{
ASSERT_RTNL();
info->family = AF_INET;
2017-08-10 13:25:24 +00:00
net->ipv4.fib_seq++;
return call_fib_notifiers(net, event_type, info);
2017-08-10 13:25:24 +00:00
}
static unsigned int fib4_seq_read(struct net *net)
2017-08-10 13:25:24 +00:00
{
ASSERT_RTNL();
2017-08-10 13:25:24 +00:00
return net->ipv4.fib_seq + fib4_rules_seq_read(net);
2017-08-10 13:25:24 +00:00
}
static int fib4_dump(struct net *net, struct notifier_block *nb)
2017-08-10 13:25:24 +00:00
{
int err;
err = fib4_rules_dump(net, nb);
if (err)
return err;
fib_notify(net, nb);
return 0;
2017-08-10 13:25:24 +00:00
}
static const struct fib_notifier_ops fib4_notifier_ops_template = {
.family = AF_INET,
.fib_seq_read = fib4_seq_read,
.fib_dump = fib4_dump,
.owner = THIS_MODULE,
};
2017-08-10 13:25:24 +00:00
int __net_init fib4_notifier_init(struct net *net)
{
struct fib_notifier_ops *ops;
2017-08-10 13:25:24 +00:00
net->ipv4.fib_seq = 0;
2017-08-10 13:25:24 +00:00
ops = fib_notifier_ops_register(&fib4_notifier_ops_template, net);
if (IS_ERR(ops))
return PTR_ERR(ops);
net->ipv4.notifier_ops = ops;
2017-08-10 13:25:24 +00:00
return 0;
2017-08-10 13:25:24 +00:00
}
void __net_exit fib4_notifier_exit(struct net *net)
2017-08-10 13:25:24 +00:00
{
fib_notifier_ops_unregister(net->ipv4.notifier_ops);
2017-08-10 13:25:24 +00:00
}