]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/net/fib_rules.h
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[mirror_ubuntu-artful-kernel.git] / include / net / fib_rules.h
CommitLineData
14c0b97d
TG
1#ifndef __NET_FIB_RULES_H
2#define __NET_FIB_RULES_H
3
4#include <linux/types.h>
5a0e3ad6 5#include <linux/slab.h>
14c0b97d
TG
6#include <linux/netdevice.h>
7#include <linux/fib_rules.h>
717d1e99 8#include <linux/refcount.h>
14c0b97d 9#include <net/flow.h>
9d9e6a58 10#include <net/rtnetlink.h>
14c0b97d 11
622ec2c9
LC
12struct fib_kuid_range {
13 kuid_t start;
14 kuid_t end;
15};
16
fd2c3ef7 17struct fib_rule {
14c0b97d 18 struct list_head list;
491deb24 19 int iifindex;
1b038a5e 20 int oifindex;
b8964ed9
TG
21 u32 mark;
22 u32 mark_mask;
14c0b97d
TG
23 u32 flags;
24 u32 table;
25 u8 action;
96c63fa7
DA
26 u8 l3mdev;
27 /* 2 bytes hole, try to use */
0947c9fe 28 u32 target;
e7030878 29 __be64 tun_id;
7a2b03c5 30 struct fib_rule __rcu *ctarget;
fba3679d
ED
31 struct net *fr_net;
32
717d1e99 33 refcount_t refcnt;
fba3679d
ED
34 u32 pref;
35 int suppress_ifgroup;
36 int suppress_prefixlen;
491deb24 37 char iifname[IFNAMSIZ];
1b038a5e 38 char oifname[IFNAMSIZ];
622ec2c9 39 struct fib_kuid_range uid_range;
14c0b97d
TG
40 struct rcu_head rcu;
41};
42
fd2c3ef7 43struct fib_lookup_arg {
14c0b97d
TG
44 void *lookup_ptr;
45 void *result;
46 struct fib_rule *rule;
96c63fa7 47 u32 table;
ebc0ffae 48 int flags;
0eeb075f
AG
49#define FIB_LOOKUP_NOREF 1
50#define FIB_LOOKUP_IGNORE_LINKSTATE 2
14c0b97d
TG
51};
52
fd2c3ef7 53struct fib_rules_ops {
14c0b97d
TG
54 int family;
55 struct list_head list;
56 int rule_size;
e1701c68 57 int addr_size;
0947c9fe
TG
58 int unresolved_rules;
59 int nr_goto_rules;
14c0b97d
TG
60
61 int (*action)(struct fib_rule *,
62 struct flowi *, int,
63 struct fib_lookup_arg *);
7764a45a
ST
64 bool (*suppress)(struct fib_rule *,
65 struct fib_lookup_arg *);
14c0b97d
TG
66 int (*match)(struct fib_rule *,
67 struct flowi *, int);
68 int (*configure)(struct fib_rule *,
69 struct sk_buff *,
14c0b97d
TG
70 struct fib_rule_hdr *,
71 struct nlattr **);
0ddcf43d 72 int (*delete)(struct fib_rule *);
14c0b97d
TG
73 int (*compare)(struct fib_rule *,
74 struct fib_rule_hdr *,
75 struct nlattr **);
76 int (*fill)(struct fib_rule *, struct sk_buff *,
14c0b97d 77 struct fib_rule_hdr *);
339bf98f 78 size_t (*nlmsg_payload)(struct fib_rule *);
14c0b97d 79
73417f61
TG
80 /* Called after modifications to the rules set, must flush
81 * the route cache if one exists. */
ae299fc0 82 void (*flush_cache)(struct fib_rules_ops *ops);
73417f61 83
14c0b97d 84 int nlgroup;
ef7c79ed 85 const struct nla_policy *policy;
76c72d4f 86 struct list_head rules_list;
14c0b97d 87 struct module *owner;
03592383 88 struct net *fro_net;
e9c5158a 89 struct rcu_head rcu;
14c0b97d
TG
90};
91
1f6c9557 92#define FRA_GENERIC_POLICY \
491deb24 93 [FRA_IIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \
1b038a5e 94 [FRA_OIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \
1f6c9557
TG
95 [FRA_PRIORITY] = { .type = NLA_U32 }, \
96 [FRA_FWMARK] = { .type = NLA_U32 }, \
97 [FRA_FWMASK] = { .type = NLA_U32 }, \
0947c9fe 98 [FRA_TABLE] = { .type = NLA_U32 }, \
73f5698e 99 [FRA_SUPPRESS_PREFIXLEN] = { .type = NLA_U32 }, \
6ef94cfa 100 [FRA_SUPPRESS_IFGROUP] = { .type = NLA_U32 }, \
96c63fa7 101 [FRA_GOTO] = { .type = NLA_U32 }, \
622ec2c9
LC
102 [FRA_L3MDEV] = { .type = NLA_U8 }, \
103 [FRA_UID_RANGE] = { .len = sizeof(struct fib_rule_uid_range) }
1f6c9557 104
14c0b97d
TG
105static inline void fib_rule_get(struct fib_rule *rule)
106{
717d1e99 107 refcount_inc(&rule->refcnt);
14c0b97d
TG
108}
109
14c0b97d
TG
110static inline void fib_rule_put(struct fib_rule *rule)
111{
717d1e99 112 if (refcount_dec_and_test(&rule->refcnt))
efd7ef1c 113 kfree_rcu(rule, rcu);
14c0b97d
TG
114}
115
96c63fa7
DA
116#ifdef CONFIG_NET_L3_MASTER_DEV
117static inline u32 fib_rule_get_table(struct fib_rule *rule,
118 struct fib_lookup_arg *arg)
119{
120 return rule->l3mdev ? arg->table : rule->table;
121}
122#else
123static inline u32 fib_rule_get_table(struct fib_rule *rule,
124 struct fib_lookup_arg *arg)
125{
126 return rule->table;
127}
128#endif
129
9e762a4a
PM
130static inline u32 frh_get_table(struct fib_rule_hdr *frh, struct nlattr **nla)
131{
132 if (nla[FRA_TABLE])
133 return nla_get_u32(nla[FRA_TABLE]);
134 return frh->table;
135}
136
8de6879f
JP
137struct fib_rules_ops *fib_rules_register(const struct fib_rules_ops *,
138 struct net *);
139void fib_rules_unregister(struct fib_rules_ops *);
14c0b97d 140
8de6879f
JP
141int fib_rules_lookup(struct fib_rules_ops *, struct flowi *, int flags,
142 struct fib_lookup_arg *);
143int fib_default_rule_add(struct fib_rules_ops *, u32 pref, u32 table,
144 u32 flags);
3c71006d 145bool fib_rule_matchall(const struct fib_rule *rule);
96c63fa7 146
c21ef3e3
DA
147int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr *nlh,
148 struct netlink_ext_ack *extack);
149int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr *nlh,
150 struct netlink_ext_ack *extack);
14c0b97d 151#endif