]>
Commit | Line | Data |
---|---|---|
d0f91938 EH |
1 | /* net/tipc/udp_media.c: IP bearer support for TIPC |
2 | * | |
3 | * Copyright (c) 2015, Ericsson AB | |
4 | * All rights reserved. | |
5 | * | |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * 2. Redistributions in binary form must reproduce the above copyright | |
12 | * notice, this list of conditions and the following disclaimer in the | |
13 | * documentation and/or other materials provided with the distribution. | |
14 | * 3. Neither the names of the copyright holders nor the names of its | |
15 | * contributors may be used to endorse or promote products derived from | |
16 | * this software without specific prior written permission. | |
17 | * | |
18 | * Alternatively, this software may be distributed under the terms of the | |
19 | * GNU General Public License ("GPL") version 2 as published by the Free | |
20 | * Software Foundation. | |
21 | * | |
22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
23 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
24 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
25 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
26 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
27 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
28 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
29 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
30 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
31 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
32 | * POSSIBILITY OF SUCH DAMAGE. | |
33 | */ | |
34 | ||
35 | #include <linux/socket.h> | |
36 | #include <linux/ip.h> | |
37 | #include <linux/udp.h> | |
38 | #include <linux/inet.h> | |
39 | #include <linux/inetdevice.h> | |
40 | #include <linux/igmp.h> | |
41 | #include <linux/kernel.h> | |
42 | #include <linux/workqueue.h> | |
43 | #include <linux/list.h> | |
44 | #include <net/sock.h> | |
45 | #include <net/ip.h> | |
46 | #include <net/udp_tunnel.h> | |
3616d08b | 47 | #include <net/ipv6_stubs.h> |
d0f91938 EH |
48 | #include <linux/tipc_netlink.h> |
49 | #include "core.h" | |
52dfae5c JM |
50 | #include "addr.h" |
51 | #include "net.h" | |
d0f91938 | 52 | #include "bearer.h" |
49cc66ea | 53 | #include "netlink.h" |
ef20cd4d | 54 | #include "msg.h" |
5f3666e8 | 55 | #include "udp_media.h" |
d0f91938 EH |
56 | |
57 | /* IANA assigned UDP port */ | |
58 | #define UDP_PORT_DEFAULT 6118 | |
59 | ||
9bd160bf | 60 | #define UDP_MIN_HEADROOM 48 |
e5356794 | 61 | |
d0f91938 EH |
62 | /** |
63 | * struct udp_media_addr - IP/UDP addressing information | |
64 | * | |
65 | * This is the bearer level originating address used in neighbor discovery | |
66 | * messages, and all fields should be in network byte order | |
5fcb7d47 RD |
67 | * |
68 | * @proto: Ethernet protocol in use | |
69 | * @port: port being used | |
70 | * @ipv4: IPv4 address of neighbor | |
71 | * @ipv6: IPv6 address of neighbor | |
d0f91938 EH |
72 | */ |
73 | struct udp_media_addr { | |
74 | __be16 proto; | |
bc3a334c | 75 | __be16 port; |
d0f91938 EH |
76 | union { |
77 | struct in_addr ipv4; | |
78 | struct in6_addr ipv6; | |
79 | }; | |
80 | }; | |
81 | ||
ef20cd4d RA |
82 | /* struct udp_replicast - container for UDP remote addresses */ |
83 | struct udp_replicast { | |
84 | struct udp_media_addr addr; | |
e9c1a793 | 85 | struct dst_cache dst_cache; |
ef20cd4d RA |
86 | struct rcu_head rcu; |
87 | struct list_head list; | |
88 | }; | |
89 | ||
d0f91938 EH |
90 | /** |
91 | * struct udp_bearer - ip/udp bearer data structure | |
92 | * @bearer: associated generic tipc bearer | |
93 | * @ubsock: bearer associated socket | |
94 | * @ifindex: local address scope | |
95 | * @work: used to schedule deferred work on a bearer | |
5fcb7d47 | 96 | * @rcast: associated udp_replicast container |
d0f91938 EH |
97 | */ |
98 | struct udp_bearer { | |
99 | struct tipc_bearer __rcu *bearer; | |
100 | struct socket *ubsock; | |
101 | u32 ifindex; | |
102 | struct work_struct work; | |
ef20cd4d | 103 | struct udp_replicast rcast; |
d0f91938 EH |
104 | }; |
105 | ||
1ca73e3f RA |
106 | static int tipc_udp_is_mcast_addr(struct udp_media_addr *addr) |
107 | { | |
108 | if (ntohs(addr->proto) == ETH_P_IP) | |
109 | return ipv4_is_multicast(addr->ipv4.s_addr); | |
110 | #if IS_ENABLED(CONFIG_IPV6) | |
111 | else | |
112 | return ipv6_addr_is_multicast(&addr->ipv6); | |
113 | #endif | |
114 | return 0; | |
115 | } | |
116 | ||
d0f91938 EH |
117 | /* udp_media_addr_set - convert a ip/udp address to a TIPC media address */ |
118 | static void tipc_udp_media_addr_set(struct tipc_media_addr *addr, | |
119 | struct udp_media_addr *ua) | |
120 | { | |
121 | memset(addr, 0, sizeof(struct tipc_media_addr)); | |
122 | addr->media_id = TIPC_MEDIA_TYPE_UDP; | |
123 | memcpy(addr->value, ua, sizeof(struct udp_media_addr)); | |
1ca73e3f RA |
124 | |
125 | if (tipc_udp_is_mcast_addr(ua)) | |
9999974a | 126 | addr->broadcast = TIPC_BROADCAST_SUPPORT; |
d0f91938 EH |
127 | } |
128 | ||
129 | /* tipc_udp_addr2str - convert ip/udp address to string */ | |
130 | static int tipc_udp_addr2str(struct tipc_media_addr *a, char *buf, int size) | |
131 | { | |
132 | struct udp_media_addr *ua = (struct udp_media_addr *)&a->value; | |
133 | ||
134 | if (ntohs(ua->proto) == ETH_P_IP) | |
bc3a334c | 135 | snprintf(buf, size, "%pI4:%u", &ua->ipv4, ntohs(ua->port)); |
d0f91938 | 136 | else if (ntohs(ua->proto) == ETH_P_IPV6) |
bc3a334c | 137 | snprintf(buf, size, "%pI6:%u", &ua->ipv6, ntohs(ua->port)); |
d0f91938 EH |
138 | else |
139 | pr_err("Invalid UDP media address\n"); | |
140 | return 0; | |
141 | } | |
142 | ||
143 | /* tipc_udp_msg2addr - extract an ip/udp address from a TIPC ndisc message */ | |
144 | static int tipc_udp_msg2addr(struct tipc_bearer *b, struct tipc_media_addr *a, | |
145 | char *msg) | |
146 | { | |
147 | struct udp_media_addr *ua; | |
148 | ||
149 | ua = (struct udp_media_addr *) (msg + TIPC_MEDIA_ADDR_OFFSET); | |
150 | if (msg[TIPC_MEDIA_TYPE_OFFSET] != TIPC_MEDIA_TYPE_UDP) | |
151 | return -EINVAL; | |
152 | tipc_udp_media_addr_set(a, ua); | |
153 | return 0; | |
154 | } | |
155 | ||
156 | /* tipc_udp_addr2msg - write an ip/udp address to a TIPC ndisc message */ | |
157 | static int tipc_udp_addr2msg(char *msg, struct tipc_media_addr *a) | |
158 | { | |
159 | memset(msg, 0, TIPC_MEDIA_INFO_SIZE); | |
160 | msg[TIPC_MEDIA_TYPE_OFFSET] = TIPC_MEDIA_TYPE_UDP; | |
161 | memcpy(msg + TIPC_MEDIA_ADDR_OFFSET, a->value, | |
162 | sizeof(struct udp_media_addr)); | |
163 | return 0; | |
164 | } | |
165 | ||
166 | /* tipc_send_msg - enqueue a send request */ | |
ce984da3 RA |
167 | static int tipc_udp_xmit(struct net *net, struct sk_buff *skb, |
168 | struct udp_bearer *ub, struct udp_media_addr *src, | |
e9c1a793 | 169 | struct udp_media_addr *dst, struct dst_cache *cache) |
d0f91938 | 170 | { |
13788174 | 171 | struct dst_entry *ndst; |
d0f91938 | 172 | int ttl, err = 0; |
d0f91938 | 173 | |
13788174 ED |
174 | local_bh_disable(); |
175 | ndst = dst_cache_get(cache); | |
4fee6be8 | 176 | if (dst->proto == htons(ETH_P_IP)) { |
e9c1a793 XL |
177 | struct rtable *rt = (struct rtable *)ndst; |
178 | ||
179 | if (!rt) { | |
180 | struct flowi4 fl = { | |
181 | .daddr = dst->ipv4.s_addr, | |
182 | .saddr = src->ipv4.s_addr, | |
183 | .flowi4_mark = skb->mark, | |
184 | .flowi4_proto = IPPROTO_UDP | |
185 | }; | |
186 | rt = ip_route_output_key(net, &fl); | |
187 | if (IS_ERR(rt)) { | |
188 | err = PTR_ERR(rt); | |
189 | goto tx_error; | |
190 | } | |
191 | dst_cache_set_ip4(cache, &rt->dst, fl.saddr); | |
d0f91938 | 192 | } |
9b300960 | 193 | |
d0f91938 | 194 | ttl = ip4_dst_hoplimit(&rt->dst); |
039f5062 | 195 | udp_tunnel_xmit_skb(rt, ub->ubsock->sk, skb, src->ipv4.s_addr, |
bc3a334c RA |
196 | dst->ipv4.s_addr, 0, ttl, 0, src->port, |
197 | dst->port, false, true); | |
d0f91938 EH |
198 | #if IS_ENABLED(CONFIG_IPV6) |
199 | } else { | |
e9c1a793 XL |
200 | if (!ndst) { |
201 | struct flowi6 fl6 = { | |
202 | .flowi6_oif = ub->ifindex, | |
203 | .daddr = dst->ipv6, | |
204 | .saddr = src->ipv6, | |
205 | .flowi6_proto = IPPROTO_UDP | |
206 | }; | |
6c8991f4 SD |
207 | ndst = ipv6_stub->ipv6_dst_lookup_flow(net, |
208 | ub->ubsock->sk, | |
209 | &fl6, NULL); | |
210 | if (IS_ERR(ndst)) { | |
211 | err = PTR_ERR(ndst); | |
e9c1a793 | 212 | goto tx_error; |
6c8991f4 | 213 | } |
e9c1a793 XL |
214 | dst_cache_set_ip6(cache, ndst, &fl6.saddr); |
215 | } | |
d0f91938 | 216 | ttl = ip6_dst_hoplimit(ndst); |
c3bcde02 XL |
217 | err = udp_tunnel6_xmit_skb(ndst, ub->ubsock->sk, skb, NULL, |
218 | &src->ipv6, &dst->ipv6, 0, ttl, 0, | |
219 | src->port, dst->port, false); | |
d0f91938 EH |
220 | #endif |
221 | } | |
13788174 | 222 | local_bh_enable(); |
d0f91938 EH |
223 | return err; |
224 | ||
225 | tx_error: | |
13788174 | 226 | local_bh_enable(); |
7214bcf8 | 227 | kfree_skb(skb); |
d0f91938 EH |
228 | return err; |
229 | } | |
230 | ||
ce984da3 RA |
231 | static int tipc_udp_send_msg(struct net *net, struct sk_buff *skb, |
232 | struct tipc_bearer *b, | |
233 | struct tipc_media_addr *addr) | |
234 | { | |
235 | struct udp_media_addr *src = (struct udp_media_addr *)&b->addr.value; | |
236 | struct udp_media_addr *dst = (struct udp_media_addr *)&addr->value; | |
ef20cd4d | 237 | struct udp_replicast *rcast; |
ce984da3 RA |
238 | struct udp_bearer *ub; |
239 | int err = 0; | |
240 | ||
241 | if (skb_headroom(skb) < UDP_MIN_HEADROOM) { | |
242 | err = pskb_expand_head(skb, UDP_MIN_HEADROOM, 0, GFP_ATOMIC); | |
243 | if (err) | |
ef20cd4d | 244 | goto out; |
ce984da3 RA |
245 | } |
246 | ||
247 | skb_set_inner_protocol(skb, htons(ETH_P_TIPC)); | |
30a4616c | 248 | ub = rcu_dereference(b->media_ptr); |
ce984da3 RA |
249 | if (!ub) { |
250 | err = -ENODEV; | |
ef20cd4d | 251 | goto out; |
ce984da3 RA |
252 | } |
253 | ||
9999974a | 254 | if (addr->broadcast != TIPC_REPLICAST_SUPPORT) |
e9c1a793 XL |
255 | return tipc_udp_xmit(net, skb, ub, src, dst, |
256 | &ub->rcast.dst_cache); | |
ce984da3 | 257 | |
ef20cd4d RA |
258 | /* Replicast, send an skb to each configured IP address */ |
259 | list_for_each_entry_rcu(rcast, &ub->rcast.list, list) { | |
260 | struct sk_buff *_skb; | |
261 | ||
262 | _skb = pskb_copy(skb, GFP_ATOMIC); | |
263 | if (!_skb) { | |
264 | err = -ENOMEM; | |
265 | goto out; | |
266 | } | |
267 | ||
e9c1a793 XL |
268 | err = tipc_udp_xmit(net, _skb, ub, src, &rcast->addr, |
269 | &rcast->dst_cache); | |
acb4a33e | 270 | if (err) |
ef20cd4d | 271 | goto out; |
ef20cd4d RA |
272 | } |
273 | err = 0; | |
274 | out: | |
ce984da3 RA |
275 | kfree_skb(skb); |
276 | return err; | |
277 | } | |
278 | ||
c9b64d49 RA |
279 | static bool tipc_udp_is_known_peer(struct tipc_bearer *b, |
280 | struct udp_media_addr *addr) | |
281 | { | |
282 | struct udp_replicast *rcast, *tmp; | |
283 | struct udp_bearer *ub; | |
284 | ||
285 | ub = rcu_dereference_rtnl(b->media_ptr); | |
286 | if (!ub) { | |
287 | pr_err_ratelimited("UDP bearer instance not found\n"); | |
288 | return false; | |
289 | } | |
290 | ||
291 | list_for_each_entry_safe(rcast, tmp, &ub->rcast.list, list) { | |
292 | if (!memcmp(&rcast->addr, addr, sizeof(struct udp_media_addr))) | |
293 | return true; | |
294 | } | |
295 | ||
296 | return false; | |
297 | } | |
298 | ||
ef20cd4d RA |
299 | static int tipc_udp_rcast_add(struct tipc_bearer *b, |
300 | struct udp_media_addr *addr) | |
301 | { | |
302 | struct udp_replicast *rcast; | |
303 | struct udp_bearer *ub; | |
304 | ||
305 | ub = rcu_dereference_rtnl(b->media_ptr); | |
306 | if (!ub) | |
307 | return -ENODEV; | |
308 | ||
309 | rcast = kmalloc(sizeof(*rcast), GFP_ATOMIC); | |
310 | if (!rcast) | |
311 | return -ENOMEM; | |
312 | ||
e9c1a793 XL |
313 | if (dst_cache_init(&rcast->dst_cache, GFP_ATOMIC)) { |
314 | kfree(rcast); | |
315 | return -ENOMEM; | |
316 | } | |
317 | ||
ef20cd4d RA |
318 | memcpy(&rcast->addr, addr, sizeof(struct udp_media_addr)); |
319 | ||
320 | if (ntohs(addr->proto) == ETH_P_IP) | |
321 | pr_info("New replicast peer: %pI4\n", &rcast->addr.ipv4); | |
322 | #if IS_ENABLED(CONFIG_IPV6) | |
323 | else if (ntohs(addr->proto) == ETH_P_IPV6) | |
324 | pr_info("New replicast peer: %pI6\n", &rcast->addr.ipv6); | |
325 | #endif | |
9999974a | 326 | b->bcast_addr.broadcast = TIPC_REPLICAST_SUPPORT; |
ef20cd4d RA |
327 | list_add_rcu(&rcast->list, &ub->rcast.list); |
328 | return 0; | |
329 | } | |
330 | ||
c9b64d49 RA |
331 | static int tipc_udp_rcast_disc(struct tipc_bearer *b, struct sk_buff *skb) |
332 | { | |
333 | struct udp_media_addr src = {0}; | |
334 | struct udp_media_addr *dst; | |
335 | ||
336 | dst = (struct udp_media_addr *)&b->bcast_addr.value; | |
337 | if (tipc_udp_is_mcast_addr(dst)) | |
338 | return 0; | |
339 | ||
340 | src.port = udp_hdr(skb)->source; | |
341 | ||
342 | if (ip_hdr(skb)->version == 4) { | |
343 | struct iphdr *iphdr = ip_hdr(skb); | |
344 | ||
345 | src.proto = htons(ETH_P_IP); | |
346 | src.ipv4.s_addr = iphdr->saddr; | |
347 | if (ipv4_is_multicast(iphdr->daddr)) | |
348 | return 0; | |
349 | #if IS_ENABLED(CONFIG_IPV6) | |
350 | } else if (ip_hdr(skb)->version == 6) { | |
351 | struct ipv6hdr *iphdr = ipv6_hdr(skb); | |
352 | ||
353 | src.proto = htons(ETH_P_IPV6); | |
354 | src.ipv6 = iphdr->saddr; | |
355 | if (ipv6_addr_is_multicast(&iphdr->daddr)) | |
356 | return 0; | |
357 | #endif | |
358 | } else { | |
359 | return 0; | |
360 | } | |
361 | ||
362 | if (likely(tipc_udp_is_known_peer(b, &src))) | |
363 | return 0; | |
364 | ||
365 | return tipc_udp_rcast_add(b, &src); | |
366 | } | |
367 | ||
d0f91938 EH |
368 | /* tipc_udp_recv - read data from bearer socket */ |
369 | static int tipc_udp_recv(struct sock *sk, struct sk_buff *skb) | |
370 | { | |
371 | struct udp_bearer *ub; | |
372 | struct tipc_bearer *b; | |
c9b64d49 RA |
373 | struct tipc_msg *hdr; |
374 | int err; | |
d0f91938 EH |
375 | |
376 | ub = rcu_dereference_sk_user_data(sk); | |
377 | if (!ub) { | |
378 | pr_err_ratelimited("Failed to get UDP bearer reference"); | |
c9b64d49 | 379 | goto out; |
d0f91938 | 380 | } |
d0f91938 | 381 | skb_pull(skb, sizeof(struct udphdr)); |
c9b64d49 RA |
382 | hdr = buf_msg(skb); |
383 | ||
4109a2c3 | 384 | b = rcu_dereference(ub->bearer); |
c9b64d49 | 385 | if (!b) |
4109a2c3 | 386 | goto out; |
d0f91938 | 387 | |
0d051bf9 | 388 | if (b && test_bit(0, &b->up)) { |
fc1b6d6d | 389 | TIPC_SKB_CB(skb)->flags = 0; |
d0f91938 | 390 | tipc_rcv(sock_net(sk), skb, b); |
d0f91938 EH |
391 | return 0; |
392 | } | |
c9b64d49 RA |
393 | |
394 | if (unlikely(msg_user(hdr) == LINK_CONFIG)) { | |
395 | err = tipc_udp_rcast_disc(b, skb); | |
396 | if (err) | |
4109a2c3 | 397 | goto out; |
c9b64d49 RA |
398 | } |
399 | ||
c9b64d49 | 400 | out: |
d0f91938 EH |
401 | kfree_skb(skb); |
402 | return 0; | |
403 | } | |
404 | ||
405 | static int enable_mcast(struct udp_bearer *ub, struct udp_media_addr *remote) | |
406 | { | |
407 | int err = 0; | |
408 | struct ip_mreqn mreqn; | |
409 | struct sock *sk = ub->ubsock->sk; | |
410 | ||
411 | if (ntohs(remote->proto) == ETH_P_IP) { | |
d0f91938 EH |
412 | mreqn.imr_multiaddr = remote->ipv4; |
413 | mreqn.imr_ifindex = ub->ifindex; | |
54ff9ef3 | 414 | err = ip_mc_join_group(sk, &mreqn); |
446981e5 | 415 | #if IS_ENABLED(CONFIG_IPV6) |
d0f91938 | 416 | } else { |
4b4b8446 | 417 | lock_sock(sk); |
446981e5 MRL |
418 | err = ipv6_stub->ipv6_sock_mc_join(sk, ub->ifindex, |
419 | &remote->ipv6); | |
4b4b8446 | 420 | release_sock(sk); |
446981e5 | 421 | #endif |
d0f91938 EH |
422 | } |
423 | return err; | |
424 | } | |
425 | ||
fdb3accc RA |
426 | static int __tipc_nl_add_udp_addr(struct sk_buff *skb, |
427 | struct udp_media_addr *addr, int nla_t) | |
428 | { | |
429 | if (ntohs(addr->proto) == ETH_P_IP) { | |
430 | struct sockaddr_in ip4; | |
431 | ||
73076162 | 432 | memset(&ip4, 0, sizeof(ip4)); |
fdb3accc RA |
433 | ip4.sin_family = AF_INET; |
434 | ip4.sin_port = addr->port; | |
435 | ip4.sin_addr.s_addr = addr->ipv4.s_addr; | |
436 | if (nla_put(skb, nla_t, sizeof(ip4), &ip4)) | |
437 | return -EMSGSIZE; | |
438 | ||
439 | #if IS_ENABLED(CONFIG_IPV6) | |
440 | } else if (ntohs(addr->proto) == ETH_P_IPV6) { | |
441 | struct sockaddr_in6 ip6; | |
442 | ||
73076162 | 443 | memset(&ip6, 0, sizeof(ip6)); |
fdb3accc RA |
444 | ip6.sin6_family = AF_INET6; |
445 | ip6.sin6_port = addr->port; | |
446 | memcpy(&ip6.sin6_addr, &addr->ipv6, sizeof(struct in6_addr)); | |
447 | if (nla_put(skb, nla_t, sizeof(ip6), &ip6)) | |
448 | return -EMSGSIZE; | |
449 | #endif | |
450 | } | |
451 | ||
452 | return 0; | |
453 | } | |
454 | ||
832629ca RA |
455 | int tipc_udp_nl_dump_remoteip(struct sk_buff *skb, struct netlink_callback *cb) |
456 | { | |
457 | u32 bid = cb->args[0]; | |
458 | u32 skip_cnt = cb->args[1]; | |
459 | u32 portid = NETLINK_CB(cb->skb).portid; | |
460 | struct udp_replicast *rcast, *tmp; | |
461 | struct tipc_bearer *b; | |
462 | struct udp_bearer *ub; | |
463 | void *hdr; | |
464 | int err; | |
465 | int i; | |
466 | ||
467 | if (!bid && !skip_cnt) { | |
057af707 | 468 | struct nlattr **attrs = genl_dumpit_info(cb)->attrs; |
832629ca RA |
469 | struct net *net = sock_net(skb->sk); |
470 | struct nlattr *battrs[TIPC_NLA_BEARER_MAX + 1]; | |
832629ca RA |
471 | char *bname; |
472 | ||
832629ca RA |
473 | if (!attrs[TIPC_NLA_BEARER]) |
474 | return -EINVAL; | |
475 | ||
8cb08174 JB |
476 | err = nla_parse_nested_deprecated(battrs, TIPC_NLA_BEARER_MAX, |
477 | attrs[TIPC_NLA_BEARER], | |
478 | tipc_nl_bearer_policy, NULL); | |
832629ca RA |
479 | if (err) |
480 | return err; | |
481 | ||
482 | if (!battrs[TIPC_NLA_BEARER_NAME]) | |
483 | return -EINVAL; | |
484 | ||
485 | bname = nla_data(battrs[TIPC_NLA_BEARER_NAME]); | |
486 | ||
487 | rtnl_lock(); | |
488 | b = tipc_bearer_find(net, bname); | |
489 | if (!b) { | |
490 | rtnl_unlock(); | |
491 | return -EINVAL; | |
492 | } | |
493 | bid = b->identity; | |
494 | } else { | |
495 | struct net *net = sock_net(skb->sk); | |
496 | struct tipc_net *tn = net_generic(net, tipc_net_id); | |
497 | ||
498 | rtnl_lock(); | |
499 | b = rtnl_dereference(tn->bearer_list[bid]); | |
500 | if (!b) { | |
501 | rtnl_unlock(); | |
502 | return -EINVAL; | |
503 | } | |
504 | } | |
505 | ||
30a4616c | 506 | ub = rtnl_dereference(b->media_ptr); |
832629ca RA |
507 | if (!ub) { |
508 | rtnl_unlock(); | |
509 | return -EINVAL; | |
510 | } | |
511 | ||
512 | i = 0; | |
513 | list_for_each_entry_safe(rcast, tmp, &ub->rcast.list, list) { | |
514 | if (i < skip_cnt) | |
515 | goto count; | |
516 | ||
517 | hdr = genlmsg_put(skb, portid, cb->nlh->nlmsg_seq, | |
518 | &tipc_genl_family, NLM_F_MULTI, | |
519 | TIPC_NL_BEARER_GET); | |
520 | if (!hdr) | |
521 | goto done; | |
522 | ||
523 | err = __tipc_nl_add_udp_addr(skb, &rcast->addr, | |
524 | TIPC_NLA_UDP_REMOTE); | |
525 | if (err) { | |
526 | genlmsg_cancel(skb, hdr); | |
527 | goto done; | |
528 | } | |
529 | genlmsg_end(skb, hdr); | |
530 | count: | |
531 | i++; | |
532 | } | |
533 | done: | |
534 | rtnl_unlock(); | |
535 | cb->args[0] = bid; | |
536 | cb->args[1] = i; | |
537 | ||
538 | return skb->len; | |
539 | } | |
540 | ||
fdb3accc RA |
541 | int tipc_udp_nl_add_bearer_data(struct tipc_nl_msg *msg, struct tipc_bearer *b) |
542 | { | |
543 | struct udp_media_addr *src = (struct udp_media_addr *)&b->addr.value; | |
544 | struct udp_media_addr *dst; | |
545 | struct udp_bearer *ub; | |
546 | struct nlattr *nest; | |
547 | ||
30a4616c | 548 | ub = rtnl_dereference(b->media_ptr); |
fdb3accc RA |
549 | if (!ub) |
550 | return -ENODEV; | |
551 | ||
ae0be8de | 552 | nest = nla_nest_start_noflag(msg->skb, TIPC_NLA_BEARER_UDP_OPTS); |
fdb3accc RA |
553 | if (!nest) |
554 | goto msg_full; | |
555 | ||
556 | if (__tipc_nl_add_udp_addr(msg->skb, src, TIPC_NLA_UDP_LOCAL)) | |
557 | goto msg_full; | |
558 | ||
559 | dst = (struct udp_media_addr *)&b->bcast_addr.value; | |
560 | if (__tipc_nl_add_udp_addr(msg->skb, dst, TIPC_NLA_UDP_REMOTE)) | |
561 | goto msg_full; | |
562 | ||
563 | if (!list_empty(&ub->rcast.list)) { | |
564 | if (nla_put_flag(msg->skb, TIPC_NLA_UDP_MULTI_REMOTEIP)) | |
565 | goto msg_full; | |
566 | } | |
567 | ||
568 | nla_nest_end(msg->skb, nest); | |
569 | return 0; | |
570 | msg_full: | |
571 | nla_nest_cancel(msg->skb, nest); | |
572 | return -EMSGSIZE; | |
573 | } | |
574 | ||
d0f91938 | 575 | /** |
ba5aa84a | 576 | * tipc_parse_udp_addr - build udp media address from netlink data |
d8141208 | 577 | * @nla: netlink attribute containing sockaddr storage aligned address |
ba5aa84a RA |
578 | * @addr: tipc media address to fill with address, port and protocol type |
579 | * @scope_id: IPv6 scope id pointer, not NULL indicates it's required | |
d0f91938 | 580 | */ |
ba5aa84a RA |
581 | |
582 | static int tipc_parse_udp_addr(struct nlattr *nla, struct udp_media_addr *addr, | |
583 | u32 *scope_id) | |
d0f91938 | 584 | { |
ba5aa84a | 585 | struct sockaddr_storage sa; |
d0f91938 | 586 | |
ba5aa84a RA |
587 | nla_memcpy(&sa, nla, sizeof(sa)); |
588 | if (sa.ss_family == AF_INET) { | |
589 | struct sockaddr_in *ip4 = (struct sockaddr_in *)&sa; | |
590 | ||
591 | addr->proto = htons(ETH_P_IP); | |
592 | addr->port = ip4->sin_port; | |
593 | addr->ipv4.s_addr = ip4->sin_addr.s_addr; | |
d0f91938 EH |
594 | return 0; |
595 | ||
596 | #if IS_ENABLED(CONFIG_IPV6) | |
ba5aa84a RA |
597 | } else if (sa.ss_family == AF_INET6) { |
598 | struct sockaddr_in6 *ip6 = (struct sockaddr_in6 *)&sa; | |
599 | ||
600 | addr->proto = htons(ETH_P_IPV6); | |
601 | addr->port = ip6->sin6_port; | |
602 | memcpy(&addr->ipv6, &ip6->sin6_addr, sizeof(struct in6_addr)); | |
603 | ||
604 | /* Scope ID is only interesting for local addresses */ | |
605 | if (scope_id) { | |
606 | int atype; | |
607 | ||
608 | atype = ipv6_addr_type(&ip6->sin6_addr); | |
609 | if (__ipv6_addr_needs_scope_id(atype) && | |
610 | !ip6->sin6_scope_id) { | |
611 | return -EINVAL; | |
612 | } | |
613 | ||
614 | *scope_id = ip6->sin6_scope_id ? : 0; | |
615 | } | |
616 | ||
d0f91938 EH |
617 | return 0; |
618 | #endif | |
619 | } | |
620 | return -EADDRNOTAVAIL; | |
621 | } | |
622 | ||
ef20cd4d RA |
623 | int tipc_udp_nl_bearer_add(struct tipc_bearer *b, struct nlattr *attr) |
624 | { | |
625 | int err; | |
626 | struct udp_media_addr addr = {0}; | |
627 | struct nlattr *opts[TIPC_NLA_UDP_MAX + 1]; | |
628 | struct udp_media_addr *dst; | |
629 | ||
8cb08174 | 630 | if (nla_parse_nested_deprecated(opts, TIPC_NLA_UDP_MAX, attr, tipc_nl_udp_policy, NULL)) |
ef20cd4d RA |
631 | return -EINVAL; |
632 | ||
633 | if (!opts[TIPC_NLA_UDP_REMOTE]) | |
634 | return -EINVAL; | |
635 | ||
636 | err = tipc_parse_udp_addr(opts[TIPC_NLA_UDP_REMOTE], &addr, NULL); | |
637 | if (err) | |
638 | return err; | |
639 | ||
640 | dst = (struct udp_media_addr *)&b->bcast_addr.value; | |
641 | if (tipc_udp_is_mcast_addr(dst)) { | |
642 | pr_err("Can't add remote ip to TIPC UDP multicast bearer\n"); | |
643 | return -EINVAL; | |
644 | } | |
645 | ||
c9b64d49 RA |
646 | if (tipc_udp_is_known_peer(b, &addr)) |
647 | return 0; | |
648 | ||
ef20cd4d RA |
649 | return tipc_udp_rcast_add(b, &addr); |
650 | } | |
651 | ||
d0f91938 EH |
652 | /** |
653 | * tipc_udp_enable - callback to create a new udp bearer instance | |
654 | * @net: network namespace | |
655 | * @b: pointer to generic tipc_bearer | |
656 | * @attrs: netlink bearer configuration | |
657 | * | |
658 | * validate the bearer parameters and initialize the udp bearer | |
659 | * rtnl_lock should be held | |
660 | */ | |
661 | static int tipc_udp_enable(struct net *net, struct tipc_bearer *b, | |
662 | struct nlattr *attrs[]) | |
663 | { | |
664 | int err = -EINVAL; | |
665 | struct udp_bearer *ub; | |
ef20cd4d | 666 | struct udp_media_addr remote = {0}; |
d0f91938 EH |
667 | struct udp_media_addr local = {0}; |
668 | struct udp_port_cfg udp_conf = {0}; | |
4fee6be8 | 669 | struct udp_tunnel_sock_cfg tuncfg = {NULL}; |
ba5aa84a | 670 | struct nlattr *opts[TIPC_NLA_UDP_MAX + 1]; |
52dfae5c | 671 | u8 node_id[NODE_ID_LEN] = {0,}; |
4ef1a7cb | 672 | struct net_device *dev; |
acad76a5 | 673 | int rmcast = 0; |
d0f91938 EH |
674 | |
675 | ub = kzalloc(sizeof(*ub), GFP_ATOMIC); | |
676 | if (!ub) | |
677 | return -ENOMEM; | |
678 | ||
ef20cd4d RA |
679 | INIT_LIST_HEAD(&ub->rcast.list); |
680 | ||
ba5aa84a RA |
681 | if (!attrs[TIPC_NLA_BEARER_UDP_OPTS]) |
682 | goto err; | |
683 | ||
8cb08174 | 684 | if (nla_parse_nested_deprecated(opts, TIPC_NLA_UDP_MAX, attrs[TIPC_NLA_BEARER_UDP_OPTS], tipc_nl_udp_policy, NULL)) |
ba5aa84a RA |
685 | goto err; |
686 | ||
687 | if (!opts[TIPC_NLA_UDP_LOCAL] || !opts[TIPC_NLA_UDP_REMOTE]) { | |
688 | pr_err("Invalid UDP bearer configuration"); | |
c20cb811 WY |
689 | err = -EINVAL; |
690 | goto err; | |
ba5aa84a RA |
691 | } |
692 | ||
693 | err = tipc_parse_udp_addr(opts[TIPC_NLA_UDP_LOCAL], &local, | |
694 | &ub->ifindex); | |
695 | if (err) | |
696 | goto err; | |
697 | ||
ef20cd4d | 698 | err = tipc_parse_udp_addr(opts[TIPC_NLA_UDP_REMOTE], &remote, NULL); |
d0f91938 EH |
699 | if (err) |
700 | goto err; | |
701 | ||
fb83ed49 CW |
702 | if (remote.proto != local.proto) { |
703 | err = -EINVAL; | |
704 | goto err; | |
705 | } | |
706 | ||
acad76a5 HL |
707 | /* Checking remote ip address */ |
708 | rmcast = tipc_udp_is_mcast_addr(&remote); | |
709 | ||
52dfae5c JM |
710 | /* Autoconfigure own node identity if needed */ |
711 | if (!tipc_own_id(net)) { | |
712 | memcpy(node_id, local.ipv6.in6_u.u6_addr8, 16); | |
713 | tipc_net_init(net, node_id, 0); | |
714 | } | |
715 | if (!tipc_own_id(net)) { | |
716 | pr_warn("Failed to set node id, please configure manually\n"); | |
c76f2481 WY |
717 | err = -EINVAL; |
718 | goto err; | |
52dfae5c JM |
719 | } |
720 | ||
d0f91938 | 721 | b->bcast_addr.media_id = TIPC_MEDIA_TYPE_UDP; |
9999974a | 722 | b->bcast_addr.broadcast = TIPC_BROADCAST_SUPPORT; |
d0f91938 EH |
723 | rcu_assign_pointer(b->media_ptr, ub); |
724 | rcu_assign_pointer(ub->bearer, b); | |
725 | tipc_udp_media_addr_set(&b->addr, &local); | |
4fee6be8 | 726 | if (local.proto == htons(ETH_P_IP)) { |
d0f91938 EH |
727 | dev = __ip_dev_find(net, local.ipv4.s_addr, false); |
728 | if (!dev) { | |
729 | err = -ENODEV; | |
730 | goto err; | |
731 | } | |
732 | udp_conf.family = AF_INET; | |
acad76a5 HL |
733 | |
734 | /* Switch to use ANY to receive packets from group */ | |
735 | if (rmcast) | |
736 | udp_conf.local_ip.s_addr = htonl(INADDR_ANY); | |
737 | else | |
738 | udp_conf.local_ip.s_addr = local.ipv4.s_addr; | |
d0f91938 EH |
739 | udp_conf.use_udp_checksums = false; |
740 | ub->ifindex = dev->ifindex; | |
3de81b75 MK |
741 | if (tipc_mtu_bad(dev, sizeof(struct iphdr) + |
742 | sizeof(struct udphdr))) { | |
743 | err = -EINVAL; | |
744 | goto err; | |
745 | } | |
a4dfa72d | 746 | b->mtu = b->media->mtu; |
d0f91938 | 747 | #if IS_ENABLED(CONFIG_IPV6) |
4fee6be8 | 748 | } else if (local.proto == htons(ETH_P_IPV6)) { |
4ef1a7cb XL |
749 | dev = ub->ifindex ? __dev_get_by_index(net, ub->ifindex) : NULL; |
750 | dev = ipv6_dev_find(net, &local.ipv6, dev); | |
5a6f6f57 XL |
751 | if (!dev) { |
752 | err = -ENODEV; | |
753 | goto err; | |
754 | } | |
d0f91938 EH |
755 | udp_conf.family = AF_INET6; |
756 | udp_conf.use_udp6_tx_checksums = true; | |
757 | udp_conf.use_udp6_rx_checksums = true; | |
acad76a5 HL |
758 | if (rmcast) |
759 | udp_conf.local_ip6 = in6addr_any; | |
760 | else | |
761 | udp_conf.local_ip6 = local.ipv6; | |
5a6f6f57 | 762 | ub->ifindex = dev->ifindex; |
d0f91938 EH |
763 | b->mtu = 1280; |
764 | #endif | |
765 | } else { | |
766 | err = -EAFNOSUPPORT; | |
767 | goto err; | |
768 | } | |
bc3a334c | 769 | udp_conf.local_udp_port = local.port; |
d0f91938 EH |
770 | err = udp_sock_create(net, &udp_conf, &ub->ubsock); |
771 | if (err) | |
772 | goto err; | |
773 | tuncfg.sk_user_data = ub; | |
774 | tuncfg.encap_type = 1; | |
775 | tuncfg.encap_rcv = tipc_udp_recv; | |
776 | tuncfg.encap_destroy = NULL; | |
777 | setup_udp_tunnel_sock(net, ub->ubsock, &tuncfg); | |
778 | ||
e9c1a793 XL |
779 | err = dst_cache_init(&ub->rcast.dst_cache, GFP_ATOMIC); |
780 | if (err) | |
d2c3a4ba | 781 | goto free; |
e9c1a793 | 782 | |
5fcb7d47 | 783 | /* |
ef20cd4d RA |
784 | * The bcast media address port is used for all peers and the ip |
785 | * is used if it's a multicast address. | |
786 | */ | |
787 | memcpy(&b->bcast_addr.value, &remote, sizeof(remote)); | |
acad76a5 | 788 | if (rmcast) |
ef20cd4d RA |
789 | err = enable_mcast(ub, &remote); |
790 | else | |
791 | err = tipc_udp_rcast_add(b, &remote); | |
792 | if (err) | |
d2c3a4ba | 793 | goto free; |
1ca73e3f | 794 | |
d0f91938 | 795 | return 0; |
d2c3a4ba XL |
796 | |
797 | free: | |
e9c1a793 | 798 | dst_cache_destroy(&ub->rcast.dst_cache); |
d2c3a4ba XL |
799 | udp_tunnel_sock_release(ub->ubsock); |
800 | err: | |
d0f91938 EH |
801 | kfree(ub); |
802 | return err; | |
803 | } | |
804 | ||
805 | /* cleanup_bearer - break the socket/bearer association */ | |
806 | static void cleanup_bearer(struct work_struct *work) | |
807 | { | |
808 | struct udp_bearer *ub = container_of(work, struct udp_bearer, work); | |
ef20cd4d RA |
809 | struct udp_replicast *rcast, *tmp; |
810 | ||
811 | list_for_each_entry_safe(rcast, tmp, &ub->rcast.list, list) { | |
e9c1a793 | 812 | dst_cache_destroy(&rcast->dst_cache); |
ef20cd4d RA |
813 | list_del_rcu(&rcast->list); |
814 | kfree_rcu(rcast, rcu); | |
815 | } | |
d0f91938 | 816 | |
04c26faa | 817 | atomic_dec(&tipc_net(sock_net(ub->ubsock->sk))->wq_count); |
e9c1a793 | 818 | dst_cache_destroy(&ub->rcast.dst_cache); |
d2c3a4ba | 819 | udp_tunnel_sock_release(ub->ubsock); |
d0f91938 EH |
820 | synchronize_net(); |
821 | kfree(ub); | |
822 | } | |
823 | ||
824 | /* tipc_udp_disable - detach bearer from socket */ | |
825 | static void tipc_udp_disable(struct tipc_bearer *b) | |
826 | { | |
827 | struct udp_bearer *ub; | |
828 | ||
30a4616c | 829 | ub = rtnl_dereference(b->media_ptr); |
d0f91938 EH |
830 | if (!ub) { |
831 | pr_err("UDP bearer instance not found\n"); | |
832 | return; | |
833 | } | |
d2c3a4ba | 834 | sock_set_flag(ub->ubsock->sk, SOCK_DEAD); |
d0f91938 EH |
835 | RCU_INIT_POINTER(ub->bearer, NULL); |
836 | ||
837 | /* sock_release need to be done outside of rtnl lock */ | |
04c26faa | 838 | atomic_inc(&tipc_net(sock_net(ub->ubsock->sk))->wq_count); |
d0f91938 EH |
839 | INIT_WORK(&ub->work, cleanup_bearer); |
840 | schedule_work(&ub->work); | |
841 | } | |
842 | ||
843 | struct tipc_media udp_media_info = { | |
844 | .send_msg = tipc_udp_send_msg, | |
845 | .enable_media = tipc_udp_enable, | |
846 | .disable_media = tipc_udp_disable, | |
847 | .addr2str = tipc_udp_addr2str, | |
848 | .addr2msg = tipc_udp_addr2msg, | |
849 | .msg2addr = tipc_udp_msg2addr, | |
850 | .priority = TIPC_DEF_LINK_PRI, | |
851 | .tolerance = TIPC_DEF_LINK_TOL, | |
16ad3f40 JM |
852 | .min_win = TIPC_DEF_LINK_WIN, |
853 | .max_win = TIPC_DEF_LINK_WIN, | |
a4dfa72d | 854 | .mtu = TIPC_DEF_LINK_UDP_MTU, |
d0f91938 EH |
855 | .type_id = TIPC_MEDIA_TYPE_UDP, |
856 | .hwaddr_len = 0, | |
857 | .name = "udp" | |
858 | }; |