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_IP6
:
48 case LWTUNNEL_ENCAP_IP
:
49 case LWTUNNEL_ENCAP_NONE
:
50 case __LWTUNNEL_ENCAP_MAX
:
51 /* should not have got here */
58 #endif /* CONFIG_MODULES */
60 struct lwtunnel_state
*lwtunnel_state_alloc(int encap_len
)
62 struct lwtunnel_state
*lws
;
64 lws
= kzalloc(sizeof(*lws
) + encap_len
, GFP_ATOMIC
);
68 EXPORT_SYMBOL(lwtunnel_state_alloc
);
70 static const struct lwtunnel_encap_ops __rcu
*
71 lwtun_encaps
[LWTUNNEL_ENCAP_MAX
+ 1] __read_mostly
;
73 int lwtunnel_encap_add_ops(const struct lwtunnel_encap_ops
*ops
,
76 if (num
> LWTUNNEL_ENCAP_MAX
)
79 return !cmpxchg((const struct lwtunnel_encap_ops
**)
83 EXPORT_SYMBOL(lwtunnel_encap_add_ops
);
85 int lwtunnel_encap_del_ops(const struct lwtunnel_encap_ops
*ops
,
86 unsigned int encap_type
)
90 if (encap_type
== LWTUNNEL_ENCAP_NONE
||
91 encap_type
> LWTUNNEL_ENCAP_MAX
)
94 ret
= (cmpxchg((const struct lwtunnel_encap_ops
**)
95 &lwtun_encaps
[encap_type
],
96 ops
, NULL
) == ops
) ? 0 : -1;
102 EXPORT_SYMBOL(lwtunnel_encap_del_ops
);
104 int lwtunnel_build_state(u16 encap_type
,
105 struct nlattr
*encap
, unsigned int family
,
106 const void *cfg
, struct lwtunnel_state
**lws
)
108 const struct lwtunnel_encap_ops
*ops
;
111 if (encap_type
== LWTUNNEL_ENCAP_NONE
||
112 encap_type
> LWTUNNEL_ENCAP_MAX
)
117 ops
= rcu_dereference(lwtun_encaps
[encap_type
]);
118 if (likely(ops
&& ops
->build_state
&& try_module_get(ops
->owner
))) {
119 ret
= ops
->build_state(encap
, family
, cfg
, lws
);
121 module_put(ops
->owner
);
127 EXPORT_SYMBOL(lwtunnel_build_state
);
129 int lwtunnel_valid_encap_type(u16 encap_type
)
131 const struct lwtunnel_encap_ops
*ops
;
134 if (encap_type
== LWTUNNEL_ENCAP_NONE
||
135 encap_type
> LWTUNNEL_ENCAP_MAX
)
139 ops
= rcu_dereference(lwtun_encaps
[encap_type
]);
141 #ifdef CONFIG_MODULES
143 const char *encap_type_str
= lwtunnel_encap_str(encap_type
);
145 if (encap_type_str
) {
147 request_module("rtnl-lwt-%s", encap_type_str
);
151 ops
= rcu_dereference(lwtun_encaps
[encap_type
]);
156 return ops
? 0 : -EOPNOTSUPP
;
158 EXPORT_SYMBOL(lwtunnel_valid_encap_type
);
160 int lwtunnel_valid_encap_type_attr(struct nlattr
*attr
, int remaining
)
162 struct rtnexthop
*rtnh
= (struct rtnexthop
*)attr
;
163 struct nlattr
*nla_entype
;
164 struct nlattr
*attrs
;
168 while (rtnh_ok(rtnh
, remaining
)) {
169 attrlen
= rtnh_attrlen(rtnh
);
171 attrs
= rtnh_attrs(rtnh
);
172 nla_entype
= nla_find(attrs
, attrlen
, RTA_ENCAP_TYPE
);
175 encap_type
= nla_get_u16(nla_entype
);
177 if (lwtunnel_valid_encap_type(encap_type
) != 0)
181 rtnh
= rtnh_next(rtnh
, &remaining
);
186 EXPORT_SYMBOL(lwtunnel_valid_encap_type_attr
);
188 void lwtstate_free(struct lwtunnel_state
*lws
)
190 const struct lwtunnel_encap_ops
*ops
= lwtun_encaps
[lws
->type
];
192 if (ops
->destroy_state
) {
193 ops
->destroy_state(lws
);
198 module_put(ops
->owner
);
200 EXPORT_SYMBOL(lwtstate_free
);
202 int lwtunnel_fill_encap(struct sk_buff
*skb
, struct lwtunnel_state
*lwtstate
)
204 const struct lwtunnel_encap_ops
*ops
;
211 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
212 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
215 nest
= nla_nest_start(skb
, RTA_ENCAP
);
221 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
222 if (likely(ops
&& ops
->fill_encap
))
223 ret
= ops
->fill_encap(skb
, lwtstate
);
227 goto nla_put_failure
;
228 nla_nest_end(skb
, nest
);
229 ret
= nla_put_u16(skb
, RTA_ENCAP_TYPE
, lwtstate
->type
);
231 goto nla_put_failure
;
236 nla_nest_cancel(skb
, nest
);
238 return (ret
== -EOPNOTSUPP
? 0 : ret
);
240 EXPORT_SYMBOL(lwtunnel_fill_encap
);
242 int lwtunnel_get_encap_size(struct lwtunnel_state
*lwtstate
)
244 const struct lwtunnel_encap_ops
*ops
;
250 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
251 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
255 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
256 if (likely(ops
&& ops
->get_encap_size
))
257 ret
= nla_total_size(ops
->get_encap_size(lwtstate
));
262 EXPORT_SYMBOL(lwtunnel_get_encap_size
);
264 int lwtunnel_cmp_encap(struct lwtunnel_state
*a
, struct lwtunnel_state
*b
)
266 const struct lwtunnel_encap_ops
*ops
;
275 if (a
->type
!= b
->type
)
278 if (a
->type
== LWTUNNEL_ENCAP_NONE
||
279 a
->type
> LWTUNNEL_ENCAP_MAX
)
283 ops
= rcu_dereference(lwtun_encaps
[a
->type
]);
284 if (likely(ops
&& ops
->cmp_encap
))
285 ret
= ops
->cmp_encap(a
, b
);
290 EXPORT_SYMBOL(lwtunnel_cmp_encap
);
292 int lwtunnel_output(struct net
*net
, struct sock
*sk
, struct sk_buff
*skb
)
294 struct dst_entry
*dst
= skb_dst(skb
);
295 const struct lwtunnel_encap_ops
*ops
;
296 struct lwtunnel_state
*lwtstate
;
301 lwtstate
= dst
->lwtstate
;
303 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
304 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
309 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
310 if (likely(ops
&& ops
->output
))
311 ret
= ops
->output(net
, sk
, skb
);
314 if (ret
== -EOPNOTSUPP
)
324 EXPORT_SYMBOL(lwtunnel_output
);
326 int lwtunnel_xmit(struct sk_buff
*skb
)
328 struct dst_entry
*dst
= skb_dst(skb
);
329 const struct lwtunnel_encap_ops
*ops
;
330 struct lwtunnel_state
*lwtstate
;
336 lwtstate
= dst
->lwtstate
;
338 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
339 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
344 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
345 if (likely(ops
&& ops
->xmit
))
346 ret
= ops
->xmit(skb
);
349 if (ret
== -EOPNOTSUPP
)
359 EXPORT_SYMBOL(lwtunnel_xmit
);
361 int lwtunnel_input(struct sk_buff
*skb
)
363 struct dst_entry
*dst
= skb_dst(skb
);
364 const struct lwtunnel_encap_ops
*ops
;
365 struct lwtunnel_state
*lwtstate
;
370 lwtstate
= dst
->lwtstate
;
372 if (lwtstate
->type
== LWTUNNEL_ENCAP_NONE
||
373 lwtstate
->type
> LWTUNNEL_ENCAP_MAX
)
378 ops
= rcu_dereference(lwtun_encaps
[lwtstate
->type
]);
379 if (likely(ops
&& ops
->input
))
380 ret
= ops
->input(skb
);
383 if (ret
== -EOPNOTSUPP
)
393 EXPORT_SYMBOL(lwtunnel_input
);