Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 1 | #ifndef __NET_FIB_RULES_H |
| 2 | #define __NET_FIB_RULES_H |
| 3 | |
| 4 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 5 | #include <linux/slab.h> |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 6 | #include <linux/netdevice.h> |
| 7 | #include <linux/fib_rules.h> |
| 8 | #include <net/flow.h> |
Thomas Graf | 9d9e6a5 | 2007-03-25 23:20:05 -0700 | [diff] [blame] | 9 | #include <net/rtnetlink.h> |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 10 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 11 | struct fib_rule { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 12 | struct list_head list; |
Patrick McHardy | 491deb24b | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 13 | int iifindex; |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 14 | int oifindex; |
Thomas Graf | b8964ed | 2006-11-09 15:22:18 -0800 | [diff] [blame] | 15 | u32 mark; |
| 16 | u32 mark_mask; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 17 | u32 flags; |
| 18 | u32 table; |
| 19 | u8 action; |
Eric Dumazet | fba3679 | 2013-08-03 11:50:35 -0700 | [diff] [blame] | 20 | /* 3 bytes hole, try to use */ |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 21 | u32 target; |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 22 | struct fib_rule __rcu *ctarget; |
Eric Dumazet | fba3679 | 2013-08-03 11:50:35 -0700 | [diff] [blame] | 23 | struct net *fr_net; |
| 24 | |
| 25 | atomic_t refcnt; |
| 26 | u32 pref; |
| 27 | int suppress_ifgroup; |
| 28 | int suppress_prefixlen; |
Patrick McHardy | 491deb24b | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 29 | char iifname[IFNAMSIZ]; |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 30 | char oifname[IFNAMSIZ]; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 31 | struct rcu_head rcu; |
| 32 | }; |
| 33 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 34 | struct fib_lookup_arg { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 35 | void *lookup_ptr; |
| 36 | void *result; |
| 37 | struct fib_rule *rule; |
Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 38 | int flags; |
| 39 | #define FIB_LOOKUP_NOREF 1 |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 42 | struct fib_rules_ops { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 43 | int family; |
| 44 | struct list_head list; |
| 45 | int rule_size; |
Thomas Graf | e1701c6 | 2007-03-24 12:46:02 -0700 | [diff] [blame] | 46 | int addr_size; |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 47 | int unresolved_rules; |
| 48 | int nr_goto_rules; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 49 | |
| 50 | int (*action)(struct fib_rule *, |
| 51 | struct flowi *, int, |
| 52 | struct fib_lookup_arg *); |
Stefan Tomanek | 7764a45 | 2013-08-01 02:17:15 +0200 | [diff] [blame] | 53 | bool (*suppress)(struct fib_rule *, |
| 54 | struct fib_lookup_arg *); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 55 | int (*match)(struct fib_rule *, |
| 56 | struct flowi *, int); |
| 57 | int (*configure)(struct fib_rule *, |
| 58 | struct sk_buff *, |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 59 | struct fib_rule_hdr *, |
| 60 | struct nlattr **); |
Alexander Duyck | 0ddcf43 | 2015-03-06 13:47:00 -0800 | [diff] [blame] | 61 | int (*delete)(struct fib_rule *); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 62 | int (*compare)(struct fib_rule *, |
| 63 | struct fib_rule_hdr *, |
| 64 | struct nlattr **); |
| 65 | int (*fill)(struct fib_rule *, struct sk_buff *, |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 66 | struct fib_rule_hdr *); |
Denis V. Lunev | 868d13a | 2008-01-10 03:18:25 -0800 | [diff] [blame] | 67 | u32 (*default_pref)(struct fib_rules_ops *ops); |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 68 | size_t (*nlmsg_payload)(struct fib_rule *); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 69 | |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 70 | /* Called after modifications to the rules set, must flush |
| 71 | * the route cache if one exists. */ |
Denis V. Lunev | ae299fc | 2008-07-05 19:01:28 -0700 | [diff] [blame] | 72 | void (*flush_cache)(struct fib_rules_ops *ops); |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 73 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 74 | int nlgroup; |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 75 | const struct nla_policy *policy; |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 76 | struct list_head rules_list; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 77 | struct module *owner; |
Denis V. Lunev | 03592383 | 2008-01-20 16:46:01 -0800 | [diff] [blame] | 78 | struct net *fro_net; |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 79 | struct rcu_head rcu; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
Thomas Graf | 1f6c955 | 2006-11-09 15:22:48 -0800 | [diff] [blame] | 82 | #define FRA_GENERIC_POLICY \ |
Patrick McHardy | 491deb24b | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 83 | [FRA_IIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \ |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 84 | [FRA_OIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \ |
Thomas Graf | 1f6c955 | 2006-11-09 15:22:48 -0800 | [diff] [blame] | 85 | [FRA_PRIORITY] = { .type = NLA_U32 }, \ |
| 86 | [FRA_FWMARK] = { .type = NLA_U32 }, \ |
| 87 | [FRA_FWMASK] = { .type = NLA_U32 }, \ |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 88 | [FRA_TABLE] = { .type = NLA_U32 }, \ |
Stefan Tomanek | 73f5698 | 2013-08-03 14:14:43 +0200 | [diff] [blame] | 89 | [FRA_SUPPRESS_PREFIXLEN] = { .type = NLA_U32 }, \ |
Stefan Tomanek | 6ef94cf | 2013-08-02 17:19:56 +0200 | [diff] [blame] | 90 | [FRA_SUPPRESS_IFGROUP] = { .type = NLA_U32 }, \ |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 91 | [FRA_GOTO] = { .type = NLA_U32 } |
Thomas Graf | 1f6c955 | 2006-11-09 15:22:48 -0800 | [diff] [blame] | 92 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 93 | static inline void fib_rule_get(struct fib_rule *rule) |
| 94 | { |
| 95 | atomic_inc(&rule->refcnt); |
| 96 | } |
| 97 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 98 | static inline void fib_rule_put(struct fib_rule *rule) |
| 99 | { |
| 100 | if (atomic_dec_and_test(&rule->refcnt)) |
Eric W. Biederman | efd7ef1 | 2015-03-11 23:04:08 -0500 | [diff] [blame] | 101 | kfree_rcu(rule, rcu); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 102 | } |
| 103 | |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 104 | static inline u32 frh_get_table(struct fib_rule_hdr *frh, struct nlattr **nla) |
| 105 | { |
| 106 | if (nla[FRA_TABLE]) |
| 107 | return nla_get_u32(nla[FRA_TABLE]); |
| 108 | return frh->table; |
| 109 | } |
| 110 | |
Joe Perches | 8de6879 | 2013-09-20 11:23:23 -0700 | [diff] [blame] | 111 | struct fib_rules_ops *fib_rules_register(const struct fib_rules_ops *, |
| 112 | struct net *); |
| 113 | void fib_rules_unregister(struct fib_rules_ops *); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 114 | |
Joe Perches | 8de6879 | 2013-09-20 11:23:23 -0700 | [diff] [blame] | 115 | int fib_rules_lookup(struct fib_rules_ops *, struct flowi *, int flags, |
| 116 | struct fib_lookup_arg *); |
| 117 | int fib_default_rule_add(struct fib_rules_ops *, u32 pref, u32 table, |
| 118 | u32 flags); |
| 119 | u32 fib_default_rule_pref(struct fib_rules_ops *ops); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 120 | #endif |