2 * lwtunnel Infrastructure for light weight tunnels like mpls
4 * Authors: Roopa Prabhu, <roopa@cumulusnetworks.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #include <linux/capability.h>
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/kernel.h>
17 #include <linux/slab.h>
18 #include <linux/uaccess.h>
19 #include <linux/skbuff.h>
20 #include <linux/netdevice.h>
21 #include <linux/lwtunnel.h>
23 #include <linux/init.h>
24 #include <linux/err.h>
26 #include <net/lwtunnel.h>
27 #include <net/rtnetlink.h>
28 #include <net/ip6_fib.h>
29 #include <net/nexthop.h>
33 static const char *lwtunnel_encap_str(enum lwtunnel_encap_types encap_type
)
35 /* Only lwt encaps implemented without using an interface for
36 * the encap need to return a string here.
39 case LWTUNNEL_ENCAP_MPLS
:
41 case LWTUNNEL_ENCAP_ILA
:
43 case LWTUNNEL_ENCAP_SEG6
:
45 case LWTUNNEL_ENCAP_BPF
:
47 case LWTUNNEL_ENCAP_SEG6_LOCAL
:
49 case LWTUNNEL_ENCAP_IP6
:
50 case LWTUNNEL_ENCAP_IP
:
51 case LWTUNNEL_ENCAP_NONE
:
52 case __LWTUNNEL_ENCAP_MAX
:
53 /* should not have got here */
60 #endif /* CONFIG_MODULES */
62 struct lwtunnel_state
*lwtunnel_state_alloc(int encap_len
)
64 struct lwtunnel_state
*lws
;
66 lws
= kzalloc(sizeof(*lws
) + encap_len
, GFP_ATOMIC
);
70 EXPORT_SYMBOL_GPL(lwtunnel_state_alloc
);
72 static const struct lwtunnel_encap_ops __rcu
*
73 lwtun_encaps
[LWTUNNEL_ENCAP_MAX
+ 1] __read_mostly
;
75 int lwtunnel_encap_add_ops(const struct lwtunnel_encap_ops
*ops
,
78 if (num
> LWTUNNEL_ENCAP_MAX
)
81 return !cmpxchg((const struct lwtunnel_encap_ops
**)
85 EXPORT_SYMBOL_GPL(lwtunnel_encap_add_ops
);
87 int lwtunnel_encap_del_ops(const struct lwtunnel_encap_ops
*ops
,
88 unsigned int encap_type
)
92 if (encap_type
== LWTUNNEL_ENCAP_NONE
||
93 encap_type
> LWTUNNEL_ENCAP_MAX
)
96 ret
= (cmpxchg((const struct lwtunnel_encap_ops
**)
97 &lwtun_encaps
[encap_type
],
98 ops
, NULL
) == ops
) ? 0 : -1;
104 EXPORT_SYMBOL_GPL(lwtunnel_encap_del_ops
);
106 int lwtunnel_build_state(u16 encap_type
,
107 struct nlattr
*encap
, unsigned int family
,
108 const void *cfg
, struct lwtunnel_state
**lws
,
109 struct netlink_ext_ack
*extack
)
111 const struct lwtunnel_encap_ops
*ops
;
115 if (encap_type
== LWTUNNEL_ENCAP_NONE
||
116 encap_type
> LWTUNNEL_ENCAP_MAX
) {
117 NL_SET_ERR_MSG_ATTR(extack
, encap
,
118 "Unknown LWT encapsulation type");
124 ops
= rcu_dereference(lwtun_encaps
[encap_type
]);
125 if (likely(ops
&& ops
->build_state
&& try_module_get(ops
->owner
))) {
127 ret
= ops
->build_state(encap
, family
, cfg
, lws
, extack
);
129 module_put(ops
->owner
);
133 /* don't rely on -EOPNOTSUPP to detect match as build_state
134 * handlers could return it
137 NL_SET_ERR_MSG_ATTR(extack
, encap
,
138 "LWT encapsulation type not supported");
143 EXPORT_SYMBOL_GPL(lwtunnel_build_state
);
145 int lwtunnel_valid_encap_type(u16 encap_type
, struct netlink_ext_ack
*extack
)
147 const struct lwtunnel_encap_ops
*ops
;
150 if (encap_type
== LWTUNNEL_ENCAP_NONE
||
151 encap_type
> LWTUNNEL_ENCAP_MAX
) {
152 NL_SET_ERR_MSG(extack
, "Unknown lwt encapsulation type");
157 ops
= rcu_dereference(lwtun_encaps
[encap_type
]);
159 #ifdef CONFIG_MODULES
161 const char *encap_type_str
= lwtunnel_encap_str(encap_type
);
163 if (encap_type_str
) {
165 request_module("rtnl-lwt-%s", encap_type_str
);
169 ops
= rcu_dereference(lwtun_encaps
[encap_type
]);
174 ret
= ops
? 0 : -EOPNOTSUPP
;
176 NL_SET_ERR_MSG(extack
, "lwt encapsulation type not supported");
180 EXPORT_SYMBOL_GPL(lwtunnel_valid_encap_type
);
182 int lwtunnel_valid_encap_type_attr(struct nlattr
*attr
, int remaining
,
183 struct netlink_ext_ack
*extack
)
185 struct rtnexthop
*rtnh
= (struct rtnexthop
*)attr
;
186 struct nlattr
*nla_entype
;
187 struct nlattr
*attrs
;
191 while (rtnh_ok(rtnh
, remaining
)) {
192 attrlen
= rtnh_attrlen(rtnh
);
194 attrs
= rtnh_attrs(rtnh
);
195 nla_entype
= nla_find(attrs
, attrlen
, RTA_ENCAP_TYPE
);
198 encap_type
= nla_get_u16(nla_entype
);
200 if (lwtunnel_valid_encap_type(encap_type
,
205 rtnh
= rtnh_next(rtnh
, &remaining
);
210 EXPORT_SYMBOL_GPL(lwtunnel_valid_encap_type_attr
);
212 void lwtstate_free(struct lwtunnel_state
*lws
)
214 const struct lwtunnel_encap_ops
*ops
= lwtun_encaps
[lws
->type
];
216 if (ops
->destroy_state
) {
217 ops
->destroy_state(lws
);
222 module_put(ops
->owner
);
224 EXPORT_SYMBOL_GPL(lwtstate_free
);
226 int lwtunnel_fill_encap(struct sk_buff
*skb
, struct lwtunnel_state
*lwtstate
)
228 const struct lwtunnel_encap_ops
*ops
;
235 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
236 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
239 nest
= nla_nest_start(skb
, RTA_ENCAP
);
245 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
246 if (likely(ops
&& ops
->fill_encap
))
247 ret
= ops
->fill_encap(skb
, lwtstate
);
251 goto nla_put_failure
;
252 nla_nest_end(skb
, nest
);
253 ret
= nla_put_u16(skb
, RTA_ENCAP_TYPE
, lwtstate
->type
);
255 goto nla_put_failure
;
260 nla_nest_cancel(skb
, nest
);
262 return (ret
== -EOPNOTSUPP
? 0 : ret
);
264 EXPORT_SYMBOL_GPL(lwtunnel_fill_encap
);
266 int lwtunnel_get_encap_size(struct lwtunnel_state
*lwtstate
)
268 const struct lwtunnel_encap_ops
*ops
;
274 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
275 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
279 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
280 if (likely(ops
&& ops
->get_encap_size
))
281 ret
= nla_total_size(ops
->get_encap_size(lwtstate
));
286 EXPORT_SYMBOL_GPL(lwtunnel_get_encap_size
);
288 int lwtunnel_cmp_encap(struct lwtunnel_state
*a
, struct lwtunnel_state
*b
)
290 const struct lwtunnel_encap_ops
*ops
;
299 if (a
->type
!= b
->type
)
302 if (a
->type
== LWTUNNEL_ENCAP_NONE
||
303 a
->type
> LWTUNNEL_ENCAP_MAX
)
307 ops
= rcu_dereference(lwtun_encaps
[a
->type
]);
308 if (likely(ops
&& ops
->cmp_encap
))
309 ret
= ops
->cmp_encap(a
, b
);
314 EXPORT_SYMBOL_GPL(lwtunnel_cmp_encap
);
316 int lwtunnel_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
318 struct dst_entry
*dst
= skb_dst(skb
);
319 const struct lwtunnel_encap_ops
*ops
;
320 struct lwtunnel_state
*lwtstate
;
325 lwtstate
= dst
->lwtstate
;
327 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
328 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
333 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
334 if (likely(ops
&& ops
->output
))
335 ret
= ops
->output(net
, sk
, skb
);
338 if (ret
== -EOPNOTSUPP
)
348 EXPORT_SYMBOL_GPL(lwtunnel_output
);
350 int lwtunnel_xmit(struct sk_buff
*skb
)
352 struct dst_entry
*dst
= skb_dst(skb
);
353 const struct lwtunnel_encap_ops
*ops
;
354 struct lwtunnel_state
*lwtstate
;
360 lwtstate
= dst
->lwtstate
;
362 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
363 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
368 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
369 if (likely(ops
&& ops
->xmit
))
370 ret
= ops
->xmit(skb
);
373 if (ret
== -EOPNOTSUPP
)
383 EXPORT_SYMBOL_GPL(lwtunnel_xmit
);
385 int lwtunnel_input(struct sk_buff
*skb
)
387 struct dst_entry
*dst
= skb_dst(skb
);
388 const struct lwtunnel_encap_ops
*ops
;
389 struct lwtunnel_state
*lwtstate
;
394 lwtstate
= dst
->lwtstate
;
396 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
397 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
402 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
403 if (likely(ops
&& ops
->input
))
404 ret
= ops
->input(skb
);
407 if (ret
== -EOPNOTSUPP
)
417 EXPORT_SYMBOL_GPL(lwtunnel_input
);