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