blob: a53bb1b5b11825a5663629047cff9ec0509d31e6 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <net/route.h>
31#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <net/ip_fib.h>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070033#include <net/fib_rules.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000035struct fib4_rule {
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070036 struct fib_rule common;
37 u8 dst_len;
38 u8 src_len;
39 u8 tos;
Al Viro81f7bf62006-09-27 18:40:00 -070040 __be32 src;
41 __be32 srcmask;
42 __be32 dst;
43 __be32 dstmask;
Patrick McHardyc7066f72011-01-14 13:36:42 +010044#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070045 u32 tclassid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
Patrick McHardyc7066f72011-01-14 13:36:42 +010049#ifdef CONFIG_IP_ROUTE_CLASSID
David S. Miller982721f2011-02-16 21:44:24 -080050u32 fib_rules_tclass(const struct fib_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070052 return res->r ? ((struct fib4_rule *) res->r)->tclassid : 0;
53}
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
David S. Miller22bd5b92011-03-11 19:54:08 -050056int fib_lookup(struct net *net, struct flowi4 *flp, struct fib_result *res)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070057{
58 struct fib_lookup_arg arg = {
59 .result = res,
Eric Dumazetebc0ffa2010-10-05 10:41:36 +000060 .flags = FIB_LOOKUP_NOREF,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070061 };
62 int err;
63
David S. Miller22bd5b92011-03-11 19:54:08 -050064 err = fib_rules_lookup(net->ipv4.rules_ops, flowi4_to_flowi(flp), 0, &arg);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070065 res->r = arg.rule;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return err;
68}
69
Adrian Bunk8ce11e62006-08-07 21:50:48 -070070static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,
71 int flags, struct fib_lookup_arg *arg)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070072{
73 int err = -EAGAIN;
74 struct fib_table *tbl;
75
76 switch (rule->action) {
77 case FR_ACT_TO_TBL:
78 break;
79
80 case FR_ACT_UNREACHABLE:
81 err = -ENETUNREACH;
82 goto errout;
83
84 case FR_ACT_PROHIBIT:
85 err = -EACCES;
86 goto errout;
87
88 case FR_ACT_BLACKHOLE:
89 default:
90 err = -EINVAL;
91 goto errout;
92 }
93
Eric Dumazet6a31d2a2010-10-04 20:00:18 +000094 tbl = fib_get_table(rule->fr_net, rule->table);
95 if (!tbl)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070096 goto errout;
97
David S. Miller22bd5b92011-03-11 19:54:08 -050098 err = fib_table_lookup(tbl, &flp->u.ip4, (struct fib_result *) arg->result, arg->flags);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070099 if (err > 0)
100 err = -EAGAIN;
101errout:
102 return err;
103}
104
105
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700106static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
107{
108 struct fib4_rule *r = (struct fib4_rule *) rule;
David S. Miller9ade2282011-03-12 02:02:42 -0500109 struct flowi4 *fl4 = &fl->u.ip4;
110 __be32 daddr = fl4->daddr;
111 __be32 saddr = fl4->saddr;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700112
113 if (((saddr ^ r->src) & r->srcmask) ||
114 ((daddr ^ r->dst) & r->dstmask))
115 return 0;
116
David S. Miller9ade2282011-03-12 02:02:42 -0500117 if (r->tos && (r->tos != fl4->flowi4_tos))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700118 return 0;
119
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700120 return 1;
121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800123static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700125 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 for (id = 1; id <= RT_TABLE_MAX; id++)
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800128 if (fib_get_table(net, id) == NULL)
129 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return NULL;
131}
132
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700133static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800134 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700135 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700138static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000139 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700140 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900142 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700143 int err = -EINVAL;
144 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Thomas Grafe1701c62007-03-24 12:46:02 -0700146 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700147 goto errout;
148
149 if (rule->table == RT_TABLE_UNSPEC) {
150 if (rule->action == FR_ACT_TO_TBL) {
151 struct fib_table *table;
152
Denis V. Luneve4e49712008-01-10 03:27:51 -0800153 table = fib_empty_table(net);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700154 if (table == NULL) {
155 err = -ENOBUFS;
156 goto errout;
157 }
158
159 rule->table = table->tb_id;
160 }
161 }
162
Thomas Grafe1701c62007-03-24 12:46:02 -0700163 if (frh->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700164 rule4->src = nla_get_be32(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700165
Thomas Grafe1701c62007-03-24 12:46:02 -0700166 if (frh->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700167 rule4->dst = nla_get_be32(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700168
Patrick McHardyc7066f72011-01-14 13:36:42 +0100169#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700170 if (tb[FRA_FLOW])
171 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700174 rule4->src_len = frh->src_len;
175 rule4->srcmask = inet_make_mask(rule4->src_len);
176 rule4->dst_len = frh->dst_len;
177 rule4->dstmask = inet_make_mask(rule4->dst_len);
178 rule4->tos = frh->tos;
179
180 err = 0;
181errout:
182 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700185static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
186 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800187{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700188 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800189
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700190 if (frh->src_len && (rule4->src_len != frh->src_len))
191 return 0;
192
193 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
194 return 0;
195
196 if (frh->tos && (rule4->tos != frh->tos))
197 return 0;
198
Patrick McHardyc7066f72011-01-14 13:36:42 +0100199#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700200 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
201 return 0;
202#endif
203
Thomas Grafe1701c62007-03-24 12:46:02 -0700204 if (frh->src_len && (rule4->src != nla_get_be32(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700205 return 0;
206
Thomas Grafe1701c62007-03-24 12:46:02 -0700207 if (frh->dst_len && (rule4->dst != nla_get_be32(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700208 return 0;
209
210 return 1;
211}
212
213static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700214 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700215{
216 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
217
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700218 frh->dst_len = rule4->dst_len;
219 frh->src_len = rule4->src_len;
220 frh->tos = rule4->tos;
221
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700222 if (rule4->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700223 NLA_PUT_BE32(skb, FRA_DST, rule4->dst);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700224
225 if (rule4->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700226 NLA_PUT_BE32(skb, FRA_SRC, rule4->src);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700227
Patrick McHardyc7066f72011-01-14 13:36:42 +0100228#ifdef CONFIG_IP_ROUTE_CLASSID
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700229 if (rule4->tclassid)
230 NLA_PUT_U32(skb, FRA_FLOW, rule4->tclassid);
231#endif
232 return 0;
233
234nla_put_failure:
235 return -ENOBUFS;
236}
237
Thomas Graf339bf982006-11-10 14:10:15 -0800238static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
239{
240 return nla_total_size(4) /* dst */
241 + nla_total_size(4) /* src */
242 + nla_total_size(4); /* flow */
243}
244
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700245static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700246{
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700247 rt_cache_flush(ops->fro_net, -1);
Thomas Graf73417f62007-03-27 13:56:52 -0700248}
249
Patrick McHardy3d0c9c42010-04-26 16:02:04 +0200250static const struct fib_rules_ops __net_initdata fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200251 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700252 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700253 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700254 .action = fib4_rule_action,
255 .match = fib4_rule_match,
256 .configure = fib4_rule_configure,
257 .compare = fib4_rule_compare,
258 .fill = fib4_rule_fill,
Patrick McHardyd8a566b2010-04-13 05:03:15 +0000259 .default_pref = fib_default_rule_pref,
Thomas Graf339bf982006-11-10 14:10:15 -0800260 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700261 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700262 .nlgroup = RTNLGRP_IPV4_RULE,
263 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700264 .owner = THIS_MODULE,
265};
266
Denis V. Luneve4e49712008-01-10 03:27:51 -0800267static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800268{
269 int err;
270
Patrick McHardy5adef182009-12-03 01:25:57 +0000271 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800272 if (err < 0)
273 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800274 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800275 if (err < 0)
276 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800277 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800278 if (err < 0)
279 return err;
280 return 0;
281}
282
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800283int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800285 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800286 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800287
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800288 ops = fib_rules_register(&fib4_rules_ops_template, net);
289 if (IS_ERR(ops))
290 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800291
292 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800293 if (err < 0)
294 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800295 net->ipv4.rules_ops = ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800296 return 0;
297
298fail:
299 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800300 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800301 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800303
304void __net_exit fib4_rules_exit(struct net *net)
305{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800306 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800307}