blob: 76daeb5ff5642e656622f0da906f73a32d603643 [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>
Thomas Grafe1ef4bf2006-08-04 03:39:22 -07009 * 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:
17 * Rani Assaf : local_rule cannot be deleted
18 * 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
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070035struct fib4_rule
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#ifdef CONFIG_NET_CLS_ROUTE
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
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070050#ifdef CONFIG_NET_CLS_ROUTE
51u32 fib_rules_tclass(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
Denis V. Lunevda0e28c2008-01-21 17:31:55 -080057int fib_lookup(struct net *net, struct flowi *flp, struct fib_result *res)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070058{
59 struct fib_lookup_arg arg = {
60 .result = res,
61 };
62 int err;
63
Denis V. Lunevda0e28c2008-01-21 17:31:55 -080064 err = fib_rules_lookup(net->ipv4.rules_ops, 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
Denis V. Lunev51314a12008-01-20 16:47:09 -080094 if ((tbl = fib_get_table(rule->fr_net, rule->table)) == NULL)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070095 goto errout;
96
Stephen Hemminger16c6cf82009-09-20 10:35:36 +000097 err = fib_table_lookup(tbl, flp, (struct fib_result *) arg->result);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -070098 if (err > 0)
99 err = -EAGAIN;
100errout:
101 return err;
102}
103
104
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700105static int fib4_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
106{
107 struct fib4_rule *r = (struct fib4_rule *) rule;
Al Viro81f7bf62006-09-27 18:40:00 -0700108 __be32 daddr = fl->fl4_dst;
109 __be32 saddr = fl->fl4_src;
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700110
111 if (((saddr ^ r->src) & r->srcmask) ||
112 ((daddr ^ r->dst) & r->dstmask))
113 return 0;
114
115 if (r->tos && (r->tos != fl->fl4_tos))
116 return 0;
117
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700118 return 1;
119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800121static struct fib_table *fib_empty_table(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Patrick McHardy2dfe55b2006-08-10 23:08:33 -0700123 u32 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 for (id = 1; id <= RT_TABLE_MAX; id++)
Denis V. Lunev8ad49422008-01-10 03:24:11 -0800126 if (fib_get_table(net, id) == NULL)
127 return fib_new_table(net, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return NULL;
129}
130
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700131static const struct nla_policy fib4_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800132 FRA_GENERIC_POLICY,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700133 [FRA_FLOW] = { .type = NLA_U32 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700136static int fib4_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000137 struct fib_rule_hdr *frh,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700138 struct nlattr **tb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900140 struct net *net = sock_net(skb->sk);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700141 int err = -EINVAL;
142 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Thomas Grafe1701c62007-03-24 12:46:02 -0700144 if (frh->tos & ~IPTOS_TOS_MASK)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700145 goto errout;
146
147 if (rule->table == RT_TABLE_UNSPEC) {
148 if (rule->action == FR_ACT_TO_TBL) {
149 struct fib_table *table;
150
Denis V. Luneve4e49712008-01-10 03:27:51 -0800151 table = fib_empty_table(net);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700152 if (table == NULL) {
153 err = -ENOBUFS;
154 goto errout;
155 }
156
157 rule->table = table->tb_id;
158 }
159 }
160
Thomas Grafe1701c62007-03-24 12:46:02 -0700161 if (frh->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700162 rule4->src = nla_get_be32(tb[FRA_SRC]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700163
Thomas Grafe1701c62007-03-24 12:46:02 -0700164 if (frh->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700165 rule4->dst = nla_get_be32(tb[FRA_DST]);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#ifdef CONFIG_NET_CLS_ROUTE
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700168 if (tb[FRA_FLOW])
169 rule4->tclassid = nla_get_u32(tb[FRA_FLOW]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700172 rule4->src_len = frh->src_len;
173 rule4->srcmask = inet_make_mask(rule4->src_len);
174 rule4->dst_len = frh->dst_len;
175 rule4->dstmask = inet_make_mask(rule4->dst_len);
176 rule4->tos = frh->tos;
177
178 err = 0;
179errout:
180 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700183static int fib4_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
184 struct nlattr **tb)
Patrick McHardya5cdc032006-03-23 01:16:06 -0800185{
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700186 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
Patrick McHardya5cdc032006-03-23 01:16:06 -0800187
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700188 if (frh->src_len && (rule4->src_len != frh->src_len))
189 return 0;
190
191 if (frh->dst_len && (rule4->dst_len != frh->dst_len))
192 return 0;
193
194 if (frh->tos && (rule4->tos != frh->tos))
195 return 0;
196
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700197#ifdef CONFIG_NET_CLS_ROUTE
198 if (tb[FRA_FLOW] && (rule4->tclassid != nla_get_u32(tb[FRA_FLOW])))
199 return 0;
200#endif
201
Thomas Grafe1701c62007-03-24 12:46:02 -0700202 if (frh->src_len && (rule4->src != nla_get_be32(tb[FRA_SRC])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700203 return 0;
204
Thomas Grafe1701c62007-03-24 12:46:02 -0700205 if (frh->dst_len && (rule4->dst != nla_get_be32(tb[FRA_DST])))
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700206 return 0;
207
208 return 1;
209}
210
211static int fib4_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700212 struct fib_rule_hdr *frh)
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700213{
214 struct fib4_rule *rule4 = (struct fib4_rule *) rule;
215
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700216 frh->dst_len = rule4->dst_len;
217 frh->src_len = rule4->src_len;
218 frh->tos = rule4->tos;
219
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700220 if (rule4->dst_len)
Al Viro45d60b92006-09-27 18:40:27 -0700221 NLA_PUT_BE32(skb, FRA_DST, rule4->dst);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700222
223 if (rule4->src_len)
Al Viro45d60b92006-09-27 18:40:27 -0700224 NLA_PUT_BE32(skb, FRA_SRC, rule4->src);
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700225
226#ifdef CONFIG_NET_CLS_ROUTE
227 if (rule4->tclassid)
228 NLA_PUT_U32(skb, FRA_FLOW, rule4->tclassid);
229#endif
230 return 0;
231
232nla_put_failure:
233 return -ENOBUFS;
234}
235
Thomas Graf339bf982006-11-10 14:10:15 -0800236static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
237{
238 return nla_total_size(4) /* dst */
239 + nla_total_size(4) /* src */
240 + nla_total_size(4); /* flow */
241}
242
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700243static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
Thomas Graf73417f62007-03-27 13:56:52 -0700244{
Denis V. Lunevae299fc2008-07-05 19:01:28 -0700245 rt_cache_flush(ops->fro_net, -1);
Thomas Graf73417f62007-03-27 13:56:52 -0700246}
247
Patrick McHardy3d0c9c42010-04-26 16:02:04 +0200248static const struct fib_rules_ops __net_initdata fib4_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200249 .family = AF_INET,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700250 .rule_size = sizeof(struct fib4_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700251 .addr_size = sizeof(u32),
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700252 .action = fib4_rule_action,
253 .match = fib4_rule_match,
254 .configure = fib4_rule_configure,
255 .compare = fib4_rule_compare,
256 .fill = fib4_rule_fill,
Patrick McHardyd8a566b2010-04-13 05:03:15 +0000257 .default_pref = fib_default_rule_pref,
Thomas Graf339bf982006-11-10 14:10:15 -0800258 .nlmsg_payload = fib4_rule_nlmsg_payload,
Thomas Graf73417f62007-03-27 13:56:52 -0700259 .flush_cache = fib4_rule_flush_cache,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700260 .nlgroup = RTNLGRP_IPV4_RULE,
261 .policy = fib4_rule_policy,
Thomas Grafe1ef4bf2006-08-04 03:39:22 -0700262 .owner = THIS_MODULE,
263};
264
Denis V. Luneve4e49712008-01-10 03:27:51 -0800265static int fib_default_rules_init(struct fib_rules_ops *ops)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800266{
267 int err;
268
Patrick McHardy5adef182009-12-03 01:25:57 +0000269 err = fib_default_rule_add(ops, 0, RT_TABLE_LOCAL, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800270 if (err < 0)
271 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800272 err = fib_default_rule_add(ops, 0x7FFE, RT_TABLE_MAIN, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800273 if (err < 0)
274 return err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800275 err = fib_default_rule_add(ops, 0x7FFF, RT_TABLE_DEFAULT, 0);
Denis V. Lunev2994c632007-11-10 22:12:03 -0800276 if (err < 0)
277 return err;
278 return 0;
279}
280
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800281int __net_init fib4_rules_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800283 int err;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800284 struct fib_rules_ops *ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800285
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800286 ops = fib_rules_register(&fib4_rules_ops_template, net);
287 if (IS_ERR(ops))
288 return PTR_ERR(ops);
Denis V. Luneve4e49712008-01-10 03:27:51 -0800289
290 err = fib_default_rules_init(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800291 if (err < 0)
292 goto fail;
Denis V. Luneve4e49712008-01-10 03:27:51 -0800293 net->ipv4.rules_ops = ops;
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800294 return 0;
295
296fail:
297 /* also cleans all rules already added */
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800298 fib_rules_unregister(ops);
Denis V. Lunevdbb50162008-01-10 03:21:49 -0800299 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800301
302void __net_exit fib4_rules_exit(struct net *net)
303{
Denis V. Lunev9e3a5482008-01-20 16:46:41 -0800304 fib_rules_unregister(net->ipv4.rules_ops);
Denis V. Lunev7b1a74f2008-01-10 03:22:17 -0800305}