1 #ifndef __NET_FIB_RULES_H
2 #define __NET_FIB_RULES_H
4 #include <linux/types.h>
5 #include <linux/slab.h>
6 #include <linux/netdevice.h>
7 #include <linux/fib_rules.h>
9 #include <net/rtnetlink.h>
12 struct list_head list
;
21 /* 2 bytes hole, try to use */
24 struct fib_rule __rcu
*ctarget
;
30 int suppress_prefixlen
;
31 char iifname
[IFNAMSIZ
];
32 char oifname
[IFNAMSIZ
];
36 struct fib_lookup_arg
{
39 struct fib_rule
*rule
;
42 #define FIB_LOOKUP_NOREF 1
43 #define FIB_LOOKUP_IGNORE_LINKSTATE 2
46 struct fib_rules_ops
{
48 struct list_head list
;
54 int (*action
)(struct fib_rule
*,
56 struct fib_lookup_arg
*);
57 bool (*suppress
)(struct fib_rule
*,
58 struct fib_lookup_arg
*);
59 int (*match
)(struct fib_rule
*,
61 int (*configure
)(struct fib_rule
*,
63 struct fib_rule_hdr
*,
65 int (*delete)(struct fib_rule
*);
66 int (*compare
)(struct fib_rule
*,
67 struct fib_rule_hdr
*,
69 int (*fill
)(struct fib_rule
*, struct sk_buff
*,
70 struct fib_rule_hdr
*);
71 size_t (*nlmsg_payload
)(struct fib_rule
*);
73 /* Called after modifications to the rules set, must flush
74 * the route cache if one exists. */
75 void (*flush_cache
)(struct fib_rules_ops
*ops
);
78 const struct nla_policy
*policy
;
79 struct list_head rules_list
;
85 #define FRA_GENERIC_POLICY \
86 [FRA_IIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \
87 [FRA_OIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \
88 [FRA_PRIORITY] = { .type = NLA_U32 }, \
89 [FRA_FWMARK] = { .type = NLA_U32 }, \
90 [FRA_FWMASK] = { .type = NLA_U32 }, \
91 [FRA_TABLE] = { .type = NLA_U32 }, \
92 [FRA_SUPPRESS_PREFIXLEN] = { .type = NLA_U32 }, \
93 [FRA_SUPPRESS_IFGROUP] = { .type = NLA_U32 }, \
94 [FRA_GOTO] = { .type = NLA_U32 }, \
95 [FRA_L3MDEV] = { .type = NLA_U8 }
97 static inline void fib_rule_get(struct fib_rule
*rule
)
99 atomic_inc(&rule
->refcnt
);
102 static inline void fib_rule_put(struct fib_rule
*rule
)
104 if (atomic_dec_and_test(&rule
->refcnt
))
105 kfree_rcu(rule
, rcu
);
108 #ifdef CONFIG_NET_L3_MASTER_DEV
109 static inline u32
fib_rule_get_table(struct fib_rule
*rule
,
110 struct fib_lookup_arg
*arg
)
112 return rule
->l3mdev
? arg
->table
: rule
->table
;
115 static inline u32
fib_rule_get_table(struct fib_rule
*rule
,
116 struct fib_lookup_arg
*arg
)
122 static inline u32
frh_get_table(struct fib_rule_hdr
*frh
, struct nlattr
**nla
)
125 return nla_get_u32(nla
[FRA_TABLE
]);
129 struct fib_rules_ops
*fib_rules_register(const struct fib_rules_ops
*,
131 void fib_rules_unregister(struct fib_rules_ops
*);
133 int fib_rules_lookup(struct fib_rules_ops
*, struct flowi
*, int flags
,
134 struct fib_lookup_arg
*);
135 int fib_default_rule_add(struct fib_rules_ops
*, u32 pref
, u32 table
,
138 int fib_nl_newrule(struct sk_buff
*skb
, struct nlmsghdr
*nlh
);
139 int fib_nl_delrule(struct sk_buff
*skb
, struct nlmsghdr
*nlh
);