blob: 523be38e37de82736a28bc9aa229f1911d2eaa31 [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
David S. Millerf4530fa2012-07-05 22:13:13 -070050int __fib_lookup(struct net *net, struct flowi4 *flp, struct fib_result *res)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070051{
52 struct fib_lookup_arg arg = {
53 .result = res,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +000054 .flags = FIB_LOOKUP_NOREF,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070055 };
56 int err;
57
David S. Miller22bd5b92011-03-11 19:54:08 -050058 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
David S. Miller85b91b02012-07-13 08:21:29 -070059#ifdef CONFIG_IP_ROUTE_CLASSID
60 if (arg.rule)
61 res->tclassid = ((struct fib4_rule *)arg.rule)->tclassid;
62 else
63 res->tclassid = 0;
64#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return err;
66}
David S. Millerf4530fa2012-07-05 22:13:13 -070067EXPORT_SYMBOL_GPL(__fib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Adrian Bunk8ce11e62006-08-07 21:50:48 -070069static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
70 int flags, struct fib_lookup_arg *arg)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070071{
72 int err = -EAGAIN;
73 struct fib_table *tbl;
74
75 switch (rule->action) {
76 case FR_ACT_TO_TBL:
77 break;
78
79 case FR_ACT_UNREACHABLE:
80 err = -ENETUNREACH;
81 goto errout;
82
83 case FR_ACT_PROHIBIT:
84 err = -EACCES;
85 goto errout;
86
87 case FR_ACT_BLACKHOLE:
88 default:
89 err = -EINVAL;
90 goto errout;
91 }
92
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000093 tbl = fib_get_table(rule->fr_net, rule->table);
94 if (!tbl)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070095 goto errout;
96
David S. Miller22bd5b92011-03-11 19:54:08 -050097 err = fib_table_lookup(tbl, &flp->u.ip4, (struct fib_result *) arg->result, arg->flags);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070098 if (err > 0)
99 err = -EAGAIN;
100errout:
101 return err;
102}
103
Stefan Tomanek7764a452013-08-01 02:17:15 +0200104static bool fib4_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
105{
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200106 struct fib_result *result = (struct fib_result *) arg->result;
107 struct net_device *dev = result->fi->fib_dev;
108
Stefan Tomanek7764a452013-08-01 02:17:15 +0200109 /* do not accept result if the route does
110 * not meet the required prefix length
111 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200112 if (result->prefixlen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200113 goto suppress_route;
114
115 /* do not accept result if the route uses a device
116 * belonging to a forbidden interface group
117 */
118 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
119 goto suppress_route;
120
Stefan Tomanek7764a452013-08-01 02:17:15 +0200121 return false;
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200122
123suppress_route:
124 if (!(arg->flags & FIB_LOOKUP_NOREF))
125 fib_info_put(result->fi);
126 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200127}
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700128
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700129static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
130{
131 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500132 struct flowi4 *fl4 = &fl->u.ip4;
133 __be32 daddr = fl4->daddr;
134 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700135
136 if (((saddr ^ r->src) & r->srcmask) ||
137 ((daddr ^ r->dst) & r->dstmask))
138 return 0;
139
David S. Miller9ade2282011-03-12 02:02:42 -0500140 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700141 return 0;
142
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700143 return 1;
144}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800146static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700148 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 for (id = 1; id <= RT_TABLE_MAX; id++)
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800151 if (fib_get_table(net, id) == NULL)
152 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return NULL;
154}
155
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700156static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800157 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700158 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700161static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000162 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700163 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900165 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700166 int err = -EINVAL;
167 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Thomas Grafe1701c62007-03-24 12:46:02 -0700169 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700170 goto errout;
171
172 if (rule->table == RT_TABLE_UNSPEC) {
173 if (rule->action == FR_ACT_TO_TBL) {
174 struct fib_table *table;
175
Denis V. Luneve4e49712008-01-10 03:27:51 -0800176 table = fib_empty_table(net);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700177 if (table == NULL) {
178 err = -ENOBUFS;
179 goto errout;
180 }
181
182 rule->table = table->tb_id;
183 }
184 }
185
Thomas Grafe1701c62007-03-24 12:46:02 -0700186 if (frh->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700187 rule4->src = nla_get_be32(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700188
Thomas Grafe1701c62007-03-24 12:46:02 -0700189 if (frh->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700190 rule4->dst = nla_get_be32(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700191
Patrick McHardyc7066f72011-01-14 13:36:42 +0100192#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700193 if (tb[FRA_FLOW]) {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700194 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700195 if (rule4->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700196 net->ipv4.fib_num_tclassid_users++;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700200 rule4->src_len = frh->src_len;
201 rule4->srcmask = inet_make_mask(rule4->src_len);
202 rule4->dst_len = frh->dst_len;
203 rule4->dstmask = inet_make_mask(rule4->dst_len);
204 rule4->tos = frh->tos;
205
David S. Millerf4530fa2012-07-05 22:13:13 -0700206 net->ipv4.fib_has_custom_rules = true;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700207 err = 0;
208errout:
209 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700212static void fib4_rule_delete(struct fib_rule *rule)
213{
David S. Millerf4530fa2012-07-05 22:13:13 -0700214 struct net *net = rule->fr_net;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700215#ifdef CONFIG_IP_ROUTE_CLASSID
216 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
217
218 if (rule4->tclassid)
David S. Millerf4530fa2012-07-05 22:13:13 -0700219 net->ipv4.fib_num_tclassid_users--;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700220#endif
David S. Millerf4530fa2012-07-05 22:13:13 -0700221 net->ipv4.fib_has_custom_rules = true;
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700222}
223
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700224static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
225 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800226{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700227 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800228
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700229 if (frh->src_len && (rule4->src_len != frh->src_len))
230 return 0;
231
232 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
233 return 0;
234
235 if (frh->tos && (rule4->tos != frh->tos))
236 return 0;
237
Patrick McHardyc7066f72011-01-14 13:36:42 +0100238#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700239 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
240 return 0;
241#endif
242
Thomas Grafe1701c62007-03-24 12:46:02 -0700243 if (frh->src_len && (rule4->src != nla_get_be32(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700244 return 0;
245
Thomas Grafe1701c62007-03-24 12:46:02 -0700246 if (frh->dst_len && (rule4->dst != nla_get_be32(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700247 return 0;
248
249 return 1;
250}
251
252static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700253 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700254{
255 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
256
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700257 frh->dst_len = rule4->dst_len;
258 frh->src_len = rule4->src_len;
259 frh->tos = rule4->tos;
260
David S. Millerf3756b72012-04-01 20:39:02 -0400261 if ((rule4->dst_len &&
262 nla_put_be32(skb, FRA_DST, rule4->dst)) ||
263 (rule4->src_len &&
264 nla_put_be32(skb, FRA_SRC, rule4->src)))
265 goto nla_put_failure;
Patrick McHardyc7066f72011-01-14 13:36:42 +0100266#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Millerf3756b72012-04-01 20:39:02 -0400267 if (rule4->tclassid &&
268 nla_put_u32(skb, FRA_FLOW, rule4->tclassid))
269 goto nla_put_failure;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700270#endif
271 return 0;
272
273nla_put_failure:
274 return -ENOBUFS;
275}
276
Thomas Graf339bf982006-11-10 14:10:15 -0800277static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
278{
279 return nla_total_size(4) /* dst */
280 + nla_total_size(4) /* src */
281 + nla_total_size(4); /* flow */
282}
283
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700284static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700285{
Nicolas Dichtelbafa6d92012-09-07 00:45:29 +0000286 rt_cache_flush(ops->fro_net);
Thomas Graf73417f62007-03-27 13:56:52 -0700287}
288
Andi Kleen04a6f822012-10-04 17:12:11 -0700289static const struct fib_rules_ops __net_initconst fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200290 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700291 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700292 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700293 .action = fib4_rule_action,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200294 .suppress = fib4_rule_suppress,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700295 .match = fib4_rule_match,
296 .configure = fib4_rule_configure,
David S. Miller7a9bc9b2012-06-29 01:32:45 -0700297 .delete = fib4_rule_delete,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700298 .compare = fib4_rule_compare,
299 .fill = fib4_rule_fill,
Patrick McHardyd8a566b2010-04-13 05:03:15 +0000300 .default_pref = fib_default_rule_pref,
Thomas Graf339bf982006-11-10 14:10:15 -0800301 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700302 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700303 .nlgroup = RTNLGRP_IPV4_RULE,
304 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700305 .owner = THIS_MODULE,
306};
307
Denis V. Luneve4e49712008-01-10 03:27:51 -0800308static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800309{
310 int err;
311
Patrick McHardy5adef182009-12-03 01:25:57 +0000312 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800313 if (err < 0)
314 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800315 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800316 if (err < 0)
317 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800318 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800319 if (err < 0)
320 return err;
321 return 0;
322}
323
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800324int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800326 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800327 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800328
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800329 ops = fib_rules_register(&fib4_rules_ops_template, net);
330 if (IS_ERR(ops))
331 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800332
333 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800334 if (err < 0)
335 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800336 net->ipv4.rules_ops = ops;
David S. Millerf4530fa2012-07-05 22:13:13 -0700337 net->ipv4.fib_has_custom_rules = false;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800338 return 0;
339
340fail:
341 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800342 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800343 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800345
346void __net_exit fib4_rules_exit(struct net *net)
347{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800348 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800349}