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