fib_notifier.c 1.5 KB
Newer Older
1 2
#include <linux/rtnetlink.h>
#include <linux/notifier.h>
3
#include <linux/socket.h>
4 5
#include <linux/kernel.h>
#include <net/net_namespace.h>
6
#include <net/fib_notifier.h>
7 8 9
#include <net/netns/ipv4.h>
#include <net/ip_fib.h>

10 11 12
int call_fib4_notifier(struct notifier_block *nb, struct net *net,
		       enum fib_event_type event_type,
		       struct fib_notifier_info *info)
13
{
14 15
	info->family = AF_INET;
	return call_fib_notifier(nb, net, event_type, info);
16 17
}

18 19
int call_fib4_notifiers(struct net *net, enum fib_event_type event_type,
			struct fib_notifier_info *info)
20
{
21 22 23
	ASSERT_RTNL();

	info->family = AF_INET;
24
	net->ipv4.fib_seq++;
25
	return call_fib_notifiers(net, event_type, info);
26 27
}

28
static unsigned int fib4_seq_read(struct net *net)
29
{
30
	ASSERT_RTNL();
31

32
	return net->ipv4.fib_seq + fib4_rules_seq_read(net);
33 34
}

35
static int fib4_dump(struct net *net, struct notifier_block *nb)
36
{
37 38 39 40 41 42
	int err;

	err = fib4_rules_dump(net, nb);
	if (err)
		return err;

43 44 45
	fib_notify(net, nb);

	return 0;
46 47
}

48 49 50 51 52
static const struct fib_notifier_ops fib4_notifier_ops_template = {
	.family		= AF_INET,
	.fib_seq_read	= fib4_seq_read,
	.fib_dump	= fib4_dump,
};
53

54 55 56
int __net_init fib4_notifier_init(struct net *net)
{
	struct fib_notifier_ops *ops;
57

58
	net->ipv4.fib_seq = 0;
59

60 61 62 63
	ops = fib_notifier_ops_register(&fib4_notifier_ops_template, net);
	if (IS_ERR(ops))
		return PTR_ERR(ops);
	net->ipv4.notifier_ops = ops;
64

65
	return 0;
66 67
}

68
void __net_exit fib4_notifier_exit(struct net *net)
69
{
70
	fib_notifier_ops_unregister(net->ipv4.notifier_ops);
71
}