blob: 799fc790b3cfa67cc170799c89416d5b9da5671c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * IPv4 Forwarding Information Base: policy rules.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Eric Dumazet6a31d2a2010-10-04 20:00:18 +00009 * Thomas Graf <tgraf@suug.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 * Fixes:
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000017 * Rani Assaf : local_rule cannot be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Marc Boucher : routing by fwmark
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/types.h>
22#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/netlink.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070025#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Robert Olsson7b204af2006-03-20 17:18:53 -080027#include <linux/list.h>
28#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040029#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <net/route.h>
32#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <net/ip_fib.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070034#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000036struct fib4_rule {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070037 struct fib_rule common;
38 u8 dst_len;
39 u8 src_len;
40 u8 tos;
Al Viro81f7bf62006-09-27 18:40:00 -070041 __be32 src;
42 __be32 srcmask;
43 __be32 dst;
44 __be32 dstmask;
Patrick McHardyc7066f72011-01-14 13:36:42 +010045#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070046 u32 tclassid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
Patrick McHardyc7066f72011-01-14 13:36:42 +010050#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller982721f2011-02-16 21:44:24 -080051u32 fib_rules_tclass(const struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070053 return res->r ? ((struct fib4_rule *) res->r)->tclassid : 0;
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David S. Miller22bd5b92011-03-11 19:54:08 -050057int fib_lookup(struct net *net, struct flowi4 *flp, struct fib_result *res)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070058{
59 struct fib_lookup_arg arg = {
60 .result = res,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +000061 .flags = FIB_LOOKUP_NOREF,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070062 };
63 int err;
64
David S. Miller22bd5b92011-03-11 19:54:08 -050065 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070066 res->r = arg.rule;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return err;
69}
Florian Westphal6fc01432011-08-25 13:46:12 +020070EXPORT_SYMBOL_GPL(fib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Adrian Bunk8ce11e62006-08-07 21:50:48 -070072static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
73 int flags, struct fib_lookup_arg *arg)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070074{
75 int err = -EAGAIN;
76 struct fib_table *tbl;
77
78 switch (rule->action) {
79 case FR_ACT_TO_TBL:
80 break;
81
82 case FR_ACT_UNREACHABLE:
83 err = -ENETUNREACH;
84 goto errout;
85
86 case FR_ACT_PROHIBIT:
87 err = -EACCES;
88 goto errout;
89
90 case FR_ACT_BLACKHOLE:
91 default:
92 err = -EINVAL;
93 goto errout;
94 }
95
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000096 tbl = fib_get_table(rule->fr_net, rule->table);
97 if (!tbl)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070098 goto errout;
99
David S. Miller22bd5b92011-03-11 19:54:08 -0500100 err = fib_table_lookup(tbl, &flp->u.ip4, (struct fib_result *) arg->result, arg->flags);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700101 if (err > 0)
102 err = -EAGAIN;
103errout:
104 return err;
105}
106
107
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700108static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
109{
110 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500111 struct flowi4 *fl4 = &fl->u.ip4;
112 __be32 daddr = fl4->daddr;
113 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700114
115 if (((saddr ^ r->src) & r->srcmask) ||
116 ((daddr ^ r->dst) & r->dstmask))
117 return 0;
118
David S. Miller9ade2282011-03-12 02:02:42 -0500119 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700120 return 0;
121
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700122 return 1;
123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800125static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700127 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 for (id = 1; id <= RT_TABLE_MAX; id++)
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800130 if (fib_get_table(net, id) == NULL)
131 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return NULL;
133}
134
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700135static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800136 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700137 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700140static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000141 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700142 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900144 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700145 int err = -EINVAL;
146 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Thomas Grafe1701c62007-03-24 12:46:02 -0700148 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700149 goto errout;
150
151 if (rule->table == RT_TABLE_UNSPEC) {
152 if (rule->action == FR_ACT_TO_TBL) {
153 struct fib_table *table;
154
Denis V. Luneve4e49712008-01-10 03:27:51 -0800155 table = fib_empty_table(net);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700156 if (table == NULL) {
157 err = -ENOBUFS;
158 goto errout;
159 }
160
161 rule->table = table->tb_id;
162 }
163 }
164
Thomas Grafe1701c62007-03-24 12:46:02 -0700165 if (frh->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700166 rule4->src = nla_get_be32(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700167
Thomas Grafe1701c62007-03-24 12:46:02 -0700168 if (frh->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700169 rule4->dst = nla_get_be32(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700170
Patrick McHardyc7066f72011-01-14 13:36:42 +0100171#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700172 if (tb[FRA_FLOW])
173 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700176 rule4->src_len = frh->src_len;
177 rule4->srcmask = inet_make_mask(rule4->src_len);
178 rule4->dst_len = frh->dst_len;
179 rule4->dstmask = inet_make_mask(rule4->dst_len);
180 rule4->tos = frh->tos;
181
182 err = 0;
183errout:
184 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700187static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
188 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800189{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700190 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800191
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700192 if (frh->src_len && (rule4->src_len != frh->src_len))
193 return 0;
194
195 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
196 return 0;
197
198 if (frh->tos && (rule4->tos != frh->tos))
199 return 0;
200
Patrick McHardyc7066f72011-01-14 13:36:42 +0100201#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700202 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
203 return 0;
204#endif
205
Thomas Grafe1701c62007-03-24 12:46:02 -0700206 if (frh->src_len && (rule4->src != nla_get_be32(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700207 return 0;
208
Thomas Grafe1701c62007-03-24 12:46:02 -0700209 if (frh->dst_len && (rule4->dst != nla_get_be32(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700210 return 0;
211
212 return 1;
213}
214
215static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700216 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700217{
218 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
219
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700220 frh->dst_len = rule4->dst_len;
221 frh->src_len = rule4->src_len;
222 frh->tos = rule4->tos;
223
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700224 if (rule4->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700225 NLA_PUT_BE32(skb, FRA_DST, rule4->dst);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700226
227 if (rule4->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700228 NLA_PUT_BE32(skb, FRA_SRC, rule4->src);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700229
Patrick McHardyc7066f72011-01-14 13:36:42 +0100230#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700231 if (rule4->tclassid)
232 NLA_PUT_U32(skb, FRA_FLOW, rule4->tclassid);
233#endif
234 return 0;
235
236nla_put_failure:
237 return -ENOBUFS;
238}
239
Thomas Graf339bf982006-11-10 14:10:15 -0800240static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
241{
242 return nla_total_size(4) /* dst */
243 + nla_total_size(4) /* src */
244 + nla_total_size(4); /* flow */
245}
246
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700247static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700248{
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700249 rt_cache_flush(ops->fro_net, -1);
Thomas Graf73417f62007-03-27 13:56:52 -0700250}
251
Patrick McHardy3d0c9c42010-04-26 16:02:04 +0200252static const struct fib_rules_ops __net_initdata fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200253 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700254 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700255 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700256 .action = fib4_rule_action,
257 .match = fib4_rule_match,
258 .configure = fib4_rule_configure,
259 .compare = fib4_rule_compare,
260 .fill = fib4_rule_fill,
Patrick McHardyd8a566b2010-04-13 05:03:15 +0000261 .default_pref = fib_default_rule_pref,
Thomas Graf339bf982006-11-10 14:10:15 -0800262 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700263 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700264 .nlgroup = RTNLGRP_IPV4_RULE,
265 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700266 .owner = THIS_MODULE,
267};
268
Denis V. Luneve4e49712008-01-10 03:27:51 -0800269static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800270{
271 int err;
272
Patrick McHardy5adef182009-12-03 01:25:57 +0000273 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800274 if (err < 0)
275 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800276 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800277 if (err < 0)
278 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800279 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800280 if (err < 0)
281 return err;
282 return 0;
283}
284
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800285int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800287 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800288 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800289
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800290 ops = fib_rules_register(&fib4_rules_ops_template, net);
291 if (IS_ERR(ops))
292 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800293
294 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800295 if (err < 0)
296 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800297 net->ipv4.rules_ops = ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800298 return 0;
299
300fail:
301 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800302 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800303 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800305
306void __net_exit fib4_rules_exit(struct net *net)
307{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800308 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800309}