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; |
| 13 | atomic_t refcnt; |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 14 | int iifindex; |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 15 | int oifindex; |
Thomas Graf | b8964ed | 2006-11-09 15:22:18 -0800 | [diff] [blame] | 16 | u32 mark; |
| 17 | u32 mark_mask; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 18 | u32 pref; |
| 19 | u32 flags; |
| 20 | u32 table; |
| 21 | u8 action; |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 22 | u32 target; |
Eric Dumazet | 7a2b03c | 2010-10-26 09:24:55 +0000 | [diff] [blame] | 23 | struct fib_rule __rcu *ctarget; |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 24 | char iifname[IFNAMSIZ]; |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 25 | char oifname[IFNAMSIZ]; |
Lorenzo Colitti | dbadd30 | 2014-03-31 16:23:51 +0900 | [diff] [blame] | 26 | uid_t uid_start; |
| 27 | uid_t uid_end; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 28 | struct rcu_head rcu; |
Denis V. Lunev | 51314a1 | 2008-01-20 16:47:09 -0800 | [diff] [blame] | 29 | struct net * fr_net; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 32 | struct fib_lookup_arg { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 33 | void *lookup_ptr; |
| 34 | void *result; |
| 35 | struct fib_rule *rule; |
Eric Dumazet | ebc0ffa | 2010-10-05 10:41:36 +0000 | [diff] [blame] | 36 | int flags; |
| 37 | #define FIB_LOOKUP_NOREF 1 |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 40 | struct fib_rules_ops { |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 41 | int family; |
| 42 | struct list_head list; |
| 43 | int rule_size; |
Thomas Graf | e1701c6 | 2007-03-24 12:46:02 -0700 | [diff] [blame] | 44 | int addr_size; |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 45 | int unresolved_rules; |
| 46 | int nr_goto_rules; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 47 | |
| 48 | int (*action)(struct fib_rule *, |
| 49 | struct flowi *, int, |
| 50 | struct fib_lookup_arg *); |
| 51 | int (*match)(struct fib_rule *, |
| 52 | struct flowi *, int); |
| 53 | int (*configure)(struct fib_rule *, |
| 54 | struct sk_buff *, |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 55 | struct fib_rule_hdr *, |
| 56 | struct nlattr **); |
| 57 | int (*compare)(struct fib_rule *, |
| 58 | struct fib_rule_hdr *, |
| 59 | struct nlattr **); |
| 60 | int (*fill)(struct fib_rule *, struct sk_buff *, |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 61 | struct fib_rule_hdr *); |
Denis V. Lunev | 868d13a | 2008-01-10 03:18:25 -0800 | [diff] [blame] | 62 | u32 (*default_pref)(struct fib_rules_ops *ops); |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 63 | size_t (*nlmsg_payload)(struct fib_rule *); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 64 | |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 65 | /* Called after modifications to the rules set, must flush |
| 66 | * the route cache if one exists. */ |
Denis V. Lunev | ae299fc | 2008-07-05 19:01:28 -0700 | [diff] [blame] | 67 | void (*flush_cache)(struct fib_rules_ops *ops); |
Thomas Graf | 73417f6 | 2007-03-27 13:56:52 -0700 | [diff] [blame] | 68 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 69 | int nlgroup; |
Patrick McHardy | ef7c79e | 2007-06-05 12:38:30 -0700 | [diff] [blame] | 70 | const struct nla_policy *policy; |
Denis V. Lunev | 76c72d4 | 2007-09-16 15:44:27 -0700 | [diff] [blame] | 71 | struct list_head rules_list; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 72 | struct module *owner; |
Denis V. Lunev | 0359238 | 2008-01-20 16:46:01 -0800 | [diff] [blame] | 73 | struct net *fro_net; |
Eric W. Biederman | e9c5158 | 2009-12-03 12:22:55 -0800 | [diff] [blame] | 74 | struct rcu_head rcu; |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 75 | }; |
| 76 | |
Thomas Graf | 1f6c955 | 2006-11-09 15:22:48 -0800 | [diff] [blame] | 77 | #define FRA_GENERIC_POLICY \ |
Patrick McHardy | 491deb2 | 2009-12-03 01:25:54 +0000 | [diff] [blame] | 78 | [FRA_IIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \ |
Patrick McHardy | 1b038a5 | 2009-12-03 01:25:56 +0000 | [diff] [blame] | 79 | [FRA_OIFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ - 1 }, \ |
Thomas Graf | 1f6c955 | 2006-11-09 15:22:48 -0800 | [diff] [blame] | 80 | [FRA_PRIORITY] = { .type = NLA_U32 }, \ |
| 81 | [FRA_FWMARK] = { .type = NLA_U32 }, \ |
| 82 | [FRA_FWMASK] = { .type = NLA_U32 }, \ |
Thomas Graf | 0947c9fe | 2007-03-26 17:14:15 -0700 | [diff] [blame] | 83 | [FRA_TABLE] = { .type = NLA_U32 }, \ |
Lorenzo Colitti | dbadd30 | 2014-03-31 16:23:51 +0900 | [diff] [blame] | 84 | [FRA_GOTO] = { .type = NLA_U32 }, \ |
| 85 | [FRA_UID_START] = { .type = NLA_U32 }, \ |
| 86 | [FRA_UID_END] = { .type = NLA_U32 } |
Thomas Graf | 1f6c955 | 2006-11-09 15:22:48 -0800 | [diff] [blame] | 87 | |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 88 | static inline void fib_rule_get(struct fib_rule *rule) |
| 89 | { |
| 90 | atomic_inc(&rule->refcnt); |
| 91 | } |
| 92 | |
| 93 | static inline void fib_rule_put_rcu(struct rcu_head *head) |
| 94 | { |
| 95 | struct fib_rule *rule = container_of(head, struct fib_rule, rcu); |
Denis V. Lunev | 3661a91 | 2008-04-16 02:01:56 -0700 | [diff] [blame] | 96 | release_net(rule->fr_net); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 97 | kfree(rule); |
| 98 | } |
| 99 | |
| 100 | static inline void fib_rule_put(struct fib_rule *rule) |
| 101 | { |
| 102 | if (atomic_dec_and_test(&rule->refcnt)) |
| 103 | call_rcu(&rule->rcu, fib_rule_put_rcu); |
| 104 | } |
| 105 | |
Patrick McHardy | 9e762a4 | 2006-08-10 23:09:48 -0700 | [diff] [blame] | 106 | static inline u32 frh_get_table(struct fib_rule_hdr *frh, struct nlattr **nla) |
| 107 | { |
| 108 | if (nla[FRA_TABLE]) |
| 109 | return nla_get_u32(nla[FRA_TABLE]); |
| 110 | return frh->table; |
| 111 | } |
| 112 | |
Patrick McHardy | 3d0c9c4 | 2010-04-26 16:02:04 +0200 | [diff] [blame] | 113 | extern struct fib_rules_ops *fib_rules_register(const struct fib_rules_ops *, struct net *); |
Denis V. Lunev | 9e3a548 | 2008-01-20 16:46:41 -0800 | [diff] [blame] | 114 | extern void fib_rules_unregister(struct fib_rules_ops *); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 115 | |
| 116 | extern int fib_rules_lookup(struct fib_rules_ops *, |
| 117 | struct flowi *, int flags, |
| 118 | struct fib_lookup_arg *); |
Denis V. Lunev | 2994c63 | 2007-11-10 22:12:03 -0800 | [diff] [blame] | 119 | extern int fib_default_rule_add(struct fib_rules_ops *, |
| 120 | u32 pref, u32 table, |
| 121 | u32 flags); |
Patrick McHardy | d8a566b | 2010-04-13 05:03:15 +0000 | [diff] [blame] | 122 | extern u32 fib_default_rule_pref(struct fib_rules_ops *ops); |
Thomas Graf | 14c0b97 | 2006-08-04 03:38:38 -0700 | [diff] [blame] | 123 | #endif |