2 * net/tipc/bearer.c: TIPC bearer code
4 * Copyright (c) 1996-2006, 2013-2016, Ericsson AB
5 * Copyright (c) 2004-2006, 2010-2013, Wind River Systems
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
45 #include "udp_media.h"
48 #define MAX_ADDR_STR 60
50 static struct tipc_media
* const media_info_array
[] = {
52 #ifdef CONFIG_TIPC_MEDIA_IB
55 #ifdef CONFIG_TIPC_MEDIA_UDP
61 static struct tipc_bearer
*bearer_get(struct net
*net
, int bearer_id
)
63 struct tipc_net
*tn
= tipc_net(net
);
65 return rcu_dereference_rtnl(tn
->bearer_list
[bearer_id
]);
68 static void bearer_disable(struct net
*net
, struct tipc_bearer
*b
);
69 static int tipc_l2_rcv_msg(struct sk_buff
*skb
, struct net_device
*dev
,
70 struct packet_type
*pt
, struct net_device
*orig_dev
);
73 * tipc_media_find - locates specified media object by name
75 struct tipc_media
*tipc_media_find(const char *name
)
79 for (i
= 0; media_info_array
[i
] != NULL
; i
++) {
80 if (!strcmp(media_info_array
[i
]->name
, name
))
83 return media_info_array
[i
];
87 * media_find_id - locates specified media object by type identifier
89 static struct tipc_media
*media_find_id(u8 type
)
93 for (i
= 0; media_info_array
[i
] != NULL
; i
++) {
94 if (media_info_array
[i
]->type_id
== type
)
97 return media_info_array
[i
];
101 * tipc_media_addr_printf - record media address in print buffer
103 int tipc_media_addr_printf(char *buf
, int len
, struct tipc_media_addr
*a
)
105 char addr_str
[MAX_ADDR_STR
];
106 struct tipc_media
*m
;
109 m
= media_find_id(a
->media_id
);
111 if (m
&& !m
->addr2str(a
, addr_str
, sizeof(addr_str
)))
112 ret
= scnprintf(buf
, len
, "%s(%s)", m
->name
, addr_str
);
116 ret
= scnprintf(buf
, len
, "UNKNOWN(%u)", a
->media_id
);
117 for (i
= 0; i
< sizeof(a
->value
); i
++)
118 ret
+= scnprintf(buf
+ ret
, len
- ret
,
125 * bearer_name_validate - validate & (optionally) deconstruct bearer name
126 * @name: ptr to bearer name string
127 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
129 * Returns 1 if bearer name is valid, otherwise 0.
131 static int bearer_name_validate(const char *name
,
132 struct tipc_bearer_names
*name_parts
)
134 char name_copy
[TIPC_MAX_BEARER_NAME
];
140 /* copy bearer name & ensure length is OK */
141 name_copy
[TIPC_MAX_BEARER_NAME
- 1] = 0;
142 /* need above in case non-Posix strncpy() doesn't pad with nulls */
143 strncpy(name_copy
, name
, TIPC_MAX_BEARER_NAME
);
144 if (name_copy
[TIPC_MAX_BEARER_NAME
- 1] != 0)
147 /* ensure all component parts of bearer name are present */
148 media_name
= name_copy
;
149 if_name
= strchr(media_name
, ':');
153 media_len
= if_name
- media_name
;
154 if_len
= strlen(if_name
) + 1;
156 /* validate component parts of bearer name */
157 if ((media_len
<= 1) || (media_len
> TIPC_MAX_MEDIA_NAME
) ||
158 (if_len
<= 1) || (if_len
> TIPC_MAX_IF_NAME
))
161 /* return bearer name components, if necessary */
163 strcpy(name_parts
->media_name
, media_name
);
164 strcpy(name_parts
->if_name
, if_name
);
170 * tipc_bearer_find - locates bearer object with matching bearer name
172 struct tipc_bearer
*tipc_bearer_find(struct net
*net
, const char *name
)
174 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
175 struct tipc_bearer
*b
;
178 for (i
= 0; i
< MAX_BEARERS
; i
++) {
179 b
= rtnl_dereference(tn
->bearer_list
[i
]);
180 if (b
&& (!strcmp(b
->name
, name
)))
186 /* tipc_bearer_get_name - get the bearer name from its id.
187 * @net: network namespace
188 * @name: a pointer to the buffer where the name will be stored.
189 * @bearer_id: the id to get the name from.
191 int tipc_bearer_get_name(struct net
*net
, char *name
, u32 bearer_id
)
193 struct tipc_net
*tn
= tipc_net(net
);
194 struct tipc_bearer
*b
;
196 if (bearer_id
>= MAX_BEARERS
)
199 b
= rtnl_dereference(tn
->bearer_list
[bearer_id
]);
203 strcpy(name
, b
->name
);
207 void tipc_bearer_add_dest(struct net
*net
, u32 bearer_id
, u32 dest
)
209 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
210 struct tipc_bearer
*b
;
213 b
= rcu_dereference_rtnl(tn
->bearer_list
[bearer_id
]);
215 tipc_disc_add_dest(b
->disc
);
219 void tipc_bearer_remove_dest(struct net
*net
, u32 bearer_id
, u32 dest
)
221 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
222 struct tipc_bearer
*b
;
225 b
= rcu_dereference_rtnl(tn
->bearer_list
[bearer_id
]);
227 tipc_disc_remove_dest(b
->disc
);
232 * tipc_enable_bearer - enable bearer with the given name
234 static int tipc_enable_bearer(struct net
*net
, const char *name
,
235 u32 disc_domain
, u32 prio
,
236 struct nlattr
*attr
[])
238 struct tipc_net
*tn
= tipc_net(net
);
239 struct tipc_bearer_names b_names
;
240 int with_this_prio
= 1;
241 struct tipc_bearer
*b
;
242 struct tipc_media
*m
;
248 if (!bearer_name_validate(name
, &b_names
)) {
249 errstr
= "illegal name";
253 if (prio
> TIPC_MAX_LINK_PRI
&& prio
!= TIPC_MEDIA_LINK_PRI
) {
254 errstr
= "illegal priority";
258 m
= tipc_media_find(b_names
.media_name
);
260 errstr
= "media not registered";
264 if (prio
== TIPC_MEDIA_LINK_PRI
)
267 /* Check new bearer vs existing ones and find free bearer id if any */
268 while (bearer_id
< MAX_BEARERS
) {
269 b
= rtnl_dereference(tn
->bearer_list
[bearer_id
]);
272 if (!strcmp(name
, b
->name
)) {
273 errstr
= "already enabled";
277 if (b
->priority
!= prio
)
279 if (++with_this_prio
<= 2)
281 pr_warn("Bearer <%s>: already 2 bearers with priority %u\n",
283 if (prio
== TIPC_MIN_LINK_PRI
) {
284 errstr
= "cannot adjust to lower";
287 pr_warn("Bearer <%s>: trying with adjusted priority\n", name
);
293 if (bearer_id
>= MAX_BEARERS
) {
294 errstr
= "max 3 bearers permitted";
298 b
= kzalloc(sizeof(*b
), GFP_ATOMIC
);
302 strcpy(b
->name
, name
);
304 res
= m
->enable_media(net
, b
, attr
);
307 errstr
= "failed to enable media";
311 b
->identity
= bearer_id
;
312 b
->tolerance
= m
->tolerance
;
313 b
->window
= m
->window
;
314 b
->domain
= disc_domain
;
315 b
->net_plane
= bearer_id
+ 'A';
317 test_and_set_bit_lock(0, &b
->up
);
319 res
= tipc_disc_create(net
, b
, &b
->bcast_addr
, &skb
);
321 bearer_disable(net
, b
);
322 errstr
= "failed to create discoverer";
326 rcu_assign_pointer(tn
->bearer_list
[bearer_id
], b
);
328 tipc_bearer_xmit_skb(net
, bearer_id
, skb
, &b
->bcast_addr
);
330 if (tipc_mon_create(net
, bearer_id
)) {
331 bearer_disable(net
, b
);
335 pr_info("Enabled bearer <%s>, priority %u\n", name
, prio
);
339 pr_warn("Enabling of bearer <%s> rejected, %s\n", name
, errstr
);
344 * tipc_reset_bearer - Reset all links established over this bearer
346 static int tipc_reset_bearer(struct net
*net
, struct tipc_bearer
*b
)
348 pr_info("Resetting bearer <%s>\n", b
->name
);
349 tipc_node_delete_links(net
, b
->identity
);
350 tipc_disc_reset(net
, b
);
357 * Note: This routine assumes caller holds RTNL lock.
359 static void bearer_disable(struct net
*net
, struct tipc_bearer
*b
)
361 struct tipc_net
*tn
= tipc_net(net
);
362 int bearer_id
= b
->identity
;
364 pr_info("Disabling bearer <%s>\n", b
->name
);
365 clear_bit_unlock(0, &b
->up
);
366 tipc_node_delete_links(net
, bearer_id
);
367 b
->media
->disable_media(b
);
368 RCU_INIT_POINTER(b
->media_ptr
, NULL
);
370 tipc_disc_delete(b
->disc
);
371 RCU_INIT_POINTER(tn
->bearer_list
[bearer_id
], NULL
);
373 tipc_mon_delete(net
, bearer_id
);
376 int tipc_enable_l2_media(struct net
*net
, struct tipc_bearer
*b
,
377 struct nlattr
*attr
[])
379 char *dev_name
= strchr((const char *)b
->name
, ':') + 1;
380 int hwaddr_len
= b
->media
->hwaddr_len
;
381 u8 node_id
[NODE_ID_LEN
] = {0,};
382 struct net_device
*dev
;
384 /* Find device with specified name */
385 dev
= dev_get_by_name(net
, dev_name
);
388 if (tipc_mtu_bad(dev
, 0)) {
393 /* Autoconfigure own node identity if needed */
394 if (!tipc_own_id(net
) && hwaddr_len
<= NODE_ID_LEN
) {
395 memcpy(node_id
, dev
->dev_addr
, hwaddr_len
);
396 tipc_net_init(net
, node_id
, 0);
398 if (!tipc_own_id(net
)) {
400 pr_warn("Failed to obtain node identity\n");
404 /* Associate TIPC bearer with L2 bearer */
405 rcu_assign_pointer(b
->media_ptr
, dev
);
407 b
->pt
.type
= htons(ETH_P_TIPC
);
408 b
->pt
.func
= tipc_l2_rcv_msg
;
409 dev_add_pack(&b
->pt
);
410 memset(&b
->bcast_addr
, 0, sizeof(b
->bcast_addr
));
411 memcpy(b
->bcast_addr
.value
, dev
->broadcast
, hwaddr_len
);
412 b
->bcast_addr
.media_id
= b
->media
->type_id
;
413 b
->bcast_addr
.broadcast
= TIPC_BROADCAST_SUPPORT
;
415 b
->media
->raw2addr(b
, &b
->addr
, (char *)dev
->dev_addr
);
416 rcu_assign_pointer(dev
->tipc_ptr
, b
);
420 /* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
422 * Mark L2 bearer as inactive so that incoming buffers are thrown away
424 void tipc_disable_l2_media(struct tipc_bearer
*b
)
426 struct net_device
*dev
;
428 dev
= (struct net_device
*)rtnl_dereference(b
->media_ptr
);
429 dev_remove_pack(&b
->pt
);
430 RCU_INIT_POINTER(dev
->tipc_ptr
, NULL
);
436 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
437 * @skb: the packet to be sent
438 * @b: the bearer through which the packet is to be sent
439 * @dest: peer destination address
441 int tipc_l2_send_msg(struct net
*net
, struct sk_buff
*skb
,
442 struct tipc_bearer
*b
, struct tipc_media_addr
*dest
)
444 struct net_device
*dev
;
447 dev
= (struct net_device
*)rcu_dereference_rtnl(b
->media_ptr
);
451 delta
= SKB_DATA_ALIGN(dev
->hard_header_len
- skb_headroom(skb
));
452 if ((delta
> 0) && pskb_expand_head(skb
, delta
, 0, GFP_ATOMIC
)) {
456 skb_reset_network_header(skb
);
458 skb
->protocol
= htons(ETH_P_TIPC
);
459 dev_hard_header(skb
, dev
, ETH_P_TIPC
, dest
->value
,
460 dev
->dev_addr
, skb
->len
);
465 bool tipc_bearer_bcast_support(struct net
*net
, u32 bearer_id
)
468 struct tipc_bearer
*b
;
471 b
= bearer_get(net
, bearer_id
);
473 supp
= (b
->bcast_addr
.broadcast
== TIPC_BROADCAST_SUPPORT
);
478 int tipc_bearer_mtu(struct net
*net
, u32 bearer_id
)
481 struct tipc_bearer
*b
;
484 b
= rcu_dereference_rtnl(tipc_net(net
)->bearer_list
[bearer_id
]);
491 /* tipc_bearer_xmit_skb - sends buffer to destination over bearer
493 void tipc_bearer_xmit_skb(struct net
*net
, u32 bearer_id
,
495 struct tipc_media_addr
*dest
)
497 struct tipc_msg
*hdr
= buf_msg(skb
);
498 struct tipc_bearer
*b
;
501 b
= bearer_get(net
, bearer_id
);
502 if (likely(b
&& (test_bit(0, &b
->up
) || msg_is_reset(hdr
))))
503 b
->media
->send_msg(net
, skb
, b
, dest
);
509 /* tipc_bearer_xmit() -send buffer to destination over bearer
511 void tipc_bearer_xmit(struct net
*net
, u32 bearer_id
,
512 struct sk_buff_head
*xmitq
,
513 struct tipc_media_addr
*dst
)
515 struct tipc_bearer
*b
;
516 struct sk_buff
*skb
, *tmp
;
518 if (skb_queue_empty(xmitq
))
522 b
= bearer_get(net
, bearer_id
);
524 __skb_queue_purge(xmitq
);
525 skb_queue_walk_safe(xmitq
, skb
, tmp
) {
526 __skb_dequeue(xmitq
);
527 if (likely(test_bit(0, &b
->up
) || msg_is_reset(buf_msg(skb
))))
528 b
->media
->send_msg(net
, skb
, b
, dst
);
535 /* tipc_bearer_bc_xmit() - broadcast buffers to all destinations
537 void tipc_bearer_bc_xmit(struct net
*net
, u32 bearer_id
,
538 struct sk_buff_head
*xmitq
)
540 struct tipc_net
*tn
= tipc_net(net
);
541 int net_id
= tn
->net_id
;
542 struct tipc_bearer
*b
;
543 struct sk_buff
*skb
, *tmp
;
544 struct tipc_msg
*hdr
;
547 b
= bearer_get(net
, bearer_id
);
548 if (unlikely(!b
|| !test_bit(0, &b
->up
)))
549 __skb_queue_purge(xmitq
);
550 skb_queue_walk_safe(xmitq
, skb
, tmp
) {
552 msg_set_non_seq(hdr
, 1);
553 msg_set_mc_netid(hdr
, net_id
);
554 __skb_dequeue(xmitq
);
555 b
->media
->send_msg(net
, skb
, b
, &b
->bcast_addr
);
561 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
562 * @buf: the received packet
563 * @dev: the net device that the packet was received on
564 * @pt: the packet_type structure which was used to register this handler
565 * @orig_dev: the original receive net device in case the device is a bond
567 * Accept only packets explicitly sent to this node, or broadcast packets;
568 * ignores packets sent using interface multicast, and traffic sent to other
569 * nodes (which can happen if interface is running in promiscuous mode).
571 static int tipc_l2_rcv_msg(struct sk_buff
*skb
, struct net_device
*dev
,
572 struct packet_type
*pt
, struct net_device
*orig_dev
)
574 struct tipc_bearer
*b
;
577 b
= rcu_dereference_rtnl(dev
->tipc_ptr
) ?:
578 rcu_dereference_rtnl(orig_dev
->tipc_ptr
);
579 if (likely(b
&& test_bit(0, &b
->up
) &&
580 (skb
->pkt_type
<= PACKET_MULTICAST
))) {
581 skb_mark_not_on_list(skb
);
582 tipc_rcv(dev_net(b
->pt
.dev
), skb
, b
);
584 return NET_RX_SUCCESS
;
592 * tipc_l2_device_event - handle device events from network device
593 * @nb: the context of the notification
594 * @evt: the type of event
595 * @ptr: the net device that the event was on
597 * This function is called by the Ethernet driver in case of link
600 static int tipc_l2_device_event(struct notifier_block
*nb
, unsigned long evt
,
603 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
604 struct net
*net
= dev_net(dev
);
605 struct tipc_bearer
*b
;
607 b
= rtnl_dereference(dev
->tipc_ptr
);
611 trace_tipc_l2_device_event(dev
, b
, evt
);
614 if (netif_carrier_ok(dev
) && netif_oper_up(dev
)) {
615 test_and_set_bit_lock(0, &b
->up
);
619 case NETDEV_GOING_DOWN
:
620 clear_bit_unlock(0, &b
->up
);
621 tipc_reset_bearer(net
, b
);
624 test_and_set_bit_lock(0, &b
->up
);
626 case NETDEV_CHANGEMTU
:
627 if (tipc_mtu_bad(dev
, 0)) {
628 bearer_disable(net
, b
);
632 tipc_reset_bearer(net
, b
);
634 case NETDEV_CHANGEADDR
:
635 b
->media
->raw2addr(b
, &b
->addr
,
636 (char *)dev
->dev_addr
);
637 tipc_reset_bearer(net
, b
);
639 case NETDEV_UNREGISTER
:
640 case NETDEV_CHANGENAME
:
641 bearer_disable(net
, b
);
647 static struct notifier_block notifier
= {
648 .notifier_call
= tipc_l2_device_event
,
652 int tipc_bearer_setup(void)
654 return register_netdevice_notifier(¬ifier
);
657 void tipc_bearer_cleanup(void)
659 unregister_netdevice_notifier(¬ifier
);
662 void tipc_bearer_stop(struct net
*net
)
664 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
665 struct tipc_bearer
*b
;
668 for (i
= 0; i
< MAX_BEARERS
; i
++) {
669 b
= rtnl_dereference(tn
->bearer_list
[i
]);
671 bearer_disable(net
, b
);
672 tn
->bearer_list
[i
] = NULL
;
677 /* Caller should hold rtnl_lock to protect the bearer */
678 static int __tipc_nl_add_bearer(struct tipc_nl_msg
*msg
,
679 struct tipc_bearer
*bearer
, int nlflags
)
682 struct nlattr
*attrs
;
685 hdr
= genlmsg_put(msg
->skb
, msg
->portid
, msg
->seq
, &tipc_genl_family
,
686 nlflags
, TIPC_NL_BEARER_GET
);
690 attrs
= nla_nest_start(msg
->skb
, TIPC_NLA_BEARER
);
694 if (nla_put_string(msg
->skb
, TIPC_NLA_BEARER_NAME
, bearer
->name
))
697 prop
= nla_nest_start(msg
->skb
, TIPC_NLA_BEARER_PROP
);
700 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_PRIO
, bearer
->priority
))
702 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_TOL
, bearer
->tolerance
))
704 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_WIN
, bearer
->window
))
706 if (bearer
->media
->type_id
== TIPC_MEDIA_TYPE_UDP
)
707 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_MTU
, bearer
->mtu
))
710 nla_nest_end(msg
->skb
, prop
);
712 #ifdef CONFIG_TIPC_MEDIA_UDP
713 if (bearer
->media
->type_id
== TIPC_MEDIA_TYPE_UDP
) {
714 if (tipc_udp_nl_add_bearer_data(msg
, bearer
))
719 nla_nest_end(msg
->skb
, attrs
);
720 genlmsg_end(msg
->skb
, hdr
);
725 nla_nest_cancel(msg
->skb
, prop
);
727 nla_nest_cancel(msg
->skb
, attrs
);
729 genlmsg_cancel(msg
->skb
, hdr
);
734 int tipc_nl_bearer_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
738 struct tipc_bearer
*bearer
;
739 struct tipc_nl_msg msg
;
740 struct net
*net
= sock_net(skb
->sk
);
741 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
743 if (i
== MAX_BEARERS
)
747 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
748 msg
.seq
= cb
->nlh
->nlmsg_seq
;
751 for (i
= 0; i
< MAX_BEARERS
; i
++) {
752 bearer
= rtnl_dereference(tn
->bearer_list
[i
]);
756 err
= __tipc_nl_add_bearer(&msg
, bearer
, NLM_F_MULTI
);
766 int tipc_nl_bearer_get(struct sk_buff
*skb
, struct genl_info
*info
)
771 struct tipc_bearer
*bearer
;
772 struct tipc_nl_msg msg
;
773 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
774 struct net
*net
= genl_info_net(info
);
776 if (!info
->attrs
[TIPC_NLA_BEARER
])
779 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
780 info
->attrs
[TIPC_NLA_BEARER
],
781 tipc_nl_bearer_policy
, info
->extack
);
785 if (!attrs
[TIPC_NLA_BEARER_NAME
])
787 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
789 rep
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
794 msg
.portid
= info
->snd_portid
;
795 msg
.seq
= info
->snd_seq
;
798 bearer
= tipc_bearer_find(net
, name
);
804 err
= __tipc_nl_add_bearer(&msg
, bearer
, 0);
809 return genlmsg_reply(rep
, info
);
817 int __tipc_nl_bearer_disable(struct sk_buff
*skb
, struct genl_info
*info
)
821 struct tipc_bearer
*bearer
;
822 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
823 struct net
*net
= sock_net(skb
->sk
);
825 if (!info
->attrs
[TIPC_NLA_BEARER
])
828 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
829 info
->attrs
[TIPC_NLA_BEARER
],
830 tipc_nl_bearer_policy
, info
->extack
);
834 if (!attrs
[TIPC_NLA_BEARER_NAME
])
837 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
839 bearer
= tipc_bearer_find(net
, name
);
843 bearer_disable(net
, bearer
);
848 int tipc_nl_bearer_disable(struct sk_buff
*skb
, struct genl_info
*info
)
853 err
= __tipc_nl_bearer_disable(skb
, info
);
859 int __tipc_nl_bearer_enable(struct sk_buff
*skb
, struct genl_info
*info
)
863 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
864 struct net
*net
= sock_net(skb
->sk
);
868 prio
= TIPC_MEDIA_LINK_PRI
;
870 if (!info
->attrs
[TIPC_NLA_BEARER
])
873 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
874 info
->attrs
[TIPC_NLA_BEARER
],
875 tipc_nl_bearer_policy
, info
->extack
);
879 if (!attrs
[TIPC_NLA_BEARER_NAME
])
882 bearer
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
884 if (attrs
[TIPC_NLA_BEARER_DOMAIN
])
885 domain
= nla_get_u32(attrs
[TIPC_NLA_BEARER_DOMAIN
]);
887 if (attrs
[TIPC_NLA_BEARER_PROP
]) {
888 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
890 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_BEARER_PROP
],
895 if (props
[TIPC_NLA_PROP_PRIO
])
896 prio
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
899 return tipc_enable_bearer(net
, bearer
, domain
, prio
, attrs
);
902 int tipc_nl_bearer_enable(struct sk_buff
*skb
, struct genl_info
*info
)
907 err
= __tipc_nl_bearer_enable(skb
, info
);
913 int tipc_nl_bearer_add(struct sk_buff
*skb
, struct genl_info
*info
)
917 struct tipc_bearer
*b
;
918 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
919 struct net
*net
= sock_net(skb
->sk
);
921 if (!info
->attrs
[TIPC_NLA_BEARER
])
924 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
925 info
->attrs
[TIPC_NLA_BEARER
],
926 tipc_nl_bearer_policy
, info
->extack
);
930 if (!attrs
[TIPC_NLA_BEARER_NAME
])
932 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
935 b
= tipc_bearer_find(net
, name
);
941 #ifdef CONFIG_TIPC_MEDIA_UDP
942 if (attrs
[TIPC_NLA_BEARER_UDP_OPTS
]) {
943 err
= tipc_udp_nl_bearer_add(b
,
944 attrs
[TIPC_NLA_BEARER_UDP_OPTS
]);
956 int __tipc_nl_bearer_set(struct sk_buff
*skb
, struct genl_info
*info
)
958 struct tipc_bearer
*b
;
959 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
960 struct net
*net
= sock_net(skb
->sk
);
964 if (!info
->attrs
[TIPC_NLA_BEARER
])
967 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
968 info
->attrs
[TIPC_NLA_BEARER
],
969 tipc_nl_bearer_policy
, info
->extack
);
973 if (!attrs
[TIPC_NLA_BEARER_NAME
])
975 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
977 b
= tipc_bearer_find(net
, name
);
981 if (attrs
[TIPC_NLA_BEARER_PROP
]) {
982 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
984 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_BEARER_PROP
],
989 if (props
[TIPC_NLA_PROP_TOL
]) {
990 b
->tolerance
= nla_get_u32(props
[TIPC_NLA_PROP_TOL
]);
991 tipc_node_apply_property(net
, b
, TIPC_NLA_PROP_TOL
);
993 if (props
[TIPC_NLA_PROP_PRIO
])
994 b
->priority
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
995 if (props
[TIPC_NLA_PROP_WIN
])
996 b
->window
= nla_get_u32(props
[TIPC_NLA_PROP_WIN
]);
997 if (props
[TIPC_NLA_PROP_MTU
]) {
998 if (b
->media
->type_id
!= TIPC_MEDIA_TYPE_UDP
)
1000 #ifdef CONFIG_TIPC_MEDIA_UDP
1001 if (tipc_udp_mtu_bad(nla_get_u32
1002 (props
[TIPC_NLA_PROP_MTU
])))
1004 b
->mtu
= nla_get_u32(props
[TIPC_NLA_PROP_MTU
]);
1005 tipc_node_apply_property(net
, b
, TIPC_NLA_PROP_MTU
);
1013 int tipc_nl_bearer_set(struct sk_buff
*skb
, struct genl_info
*info
)
1018 err
= __tipc_nl_bearer_set(skb
, info
);
1024 static int __tipc_nl_add_media(struct tipc_nl_msg
*msg
,
1025 struct tipc_media
*media
, int nlflags
)
1028 struct nlattr
*attrs
;
1029 struct nlattr
*prop
;
1031 hdr
= genlmsg_put(msg
->skb
, msg
->portid
, msg
->seq
, &tipc_genl_family
,
1032 nlflags
, TIPC_NL_MEDIA_GET
);
1036 attrs
= nla_nest_start(msg
->skb
, TIPC_NLA_MEDIA
);
1040 if (nla_put_string(msg
->skb
, TIPC_NLA_MEDIA_NAME
, media
->name
))
1043 prop
= nla_nest_start(msg
->skb
, TIPC_NLA_MEDIA_PROP
);
1046 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_PRIO
, media
->priority
))
1048 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_TOL
, media
->tolerance
))
1050 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_WIN
, media
->window
))
1052 if (media
->type_id
== TIPC_MEDIA_TYPE_UDP
)
1053 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_MTU
, media
->mtu
))
1056 nla_nest_end(msg
->skb
, prop
);
1057 nla_nest_end(msg
->skb
, attrs
);
1058 genlmsg_end(msg
->skb
, hdr
);
1063 nla_nest_cancel(msg
->skb
, prop
);
1065 nla_nest_cancel(msg
->skb
, attrs
);
1067 genlmsg_cancel(msg
->skb
, hdr
);
1072 int tipc_nl_media_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1075 int i
= cb
->args
[0];
1076 struct tipc_nl_msg msg
;
1082 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
1083 msg
.seq
= cb
->nlh
->nlmsg_seq
;
1086 for (; media_info_array
[i
] != NULL
; i
++) {
1087 err
= __tipc_nl_add_media(&msg
, media_info_array
[i
],
1098 int tipc_nl_media_get(struct sk_buff
*skb
, struct genl_info
*info
)
1102 struct tipc_nl_msg msg
;
1103 struct tipc_media
*media
;
1104 struct sk_buff
*rep
;
1105 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
1107 if (!info
->attrs
[TIPC_NLA_MEDIA
])
1110 err
= nla_parse_nested(attrs
, TIPC_NLA_MEDIA_MAX
,
1111 info
->attrs
[TIPC_NLA_MEDIA
],
1112 tipc_nl_media_policy
, info
->extack
);
1116 if (!attrs
[TIPC_NLA_MEDIA_NAME
])
1118 name
= nla_data(attrs
[TIPC_NLA_MEDIA_NAME
]);
1120 rep
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
1125 msg
.portid
= info
->snd_portid
;
1126 msg
.seq
= info
->snd_seq
;
1129 media
= tipc_media_find(name
);
1135 err
= __tipc_nl_add_media(&msg
, media
, 0);
1140 return genlmsg_reply(rep
, info
);
1148 int __tipc_nl_media_set(struct sk_buff
*skb
, struct genl_info
*info
)
1152 struct tipc_media
*m
;
1153 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
1155 if (!info
->attrs
[TIPC_NLA_MEDIA
])
1158 err
= nla_parse_nested(attrs
, TIPC_NLA_MEDIA_MAX
,
1159 info
->attrs
[TIPC_NLA_MEDIA
],
1160 tipc_nl_media_policy
, info
->extack
);
1162 if (!attrs
[TIPC_NLA_MEDIA_NAME
])
1164 name
= nla_data(attrs
[TIPC_NLA_MEDIA_NAME
]);
1166 m
= tipc_media_find(name
);
1170 if (attrs
[TIPC_NLA_MEDIA_PROP
]) {
1171 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
1173 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_MEDIA_PROP
],
1178 if (props
[TIPC_NLA_PROP_TOL
])
1179 m
->tolerance
= nla_get_u32(props
[TIPC_NLA_PROP_TOL
]);
1180 if (props
[TIPC_NLA_PROP_PRIO
])
1181 m
->priority
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
1182 if (props
[TIPC_NLA_PROP_WIN
])
1183 m
->window
= nla_get_u32(props
[TIPC_NLA_PROP_WIN
]);
1184 if (props
[TIPC_NLA_PROP_MTU
]) {
1185 if (m
->type_id
!= TIPC_MEDIA_TYPE_UDP
)
1187 #ifdef CONFIG_TIPC_MEDIA_UDP
1188 if (tipc_udp_mtu_bad(nla_get_u32
1189 (props
[TIPC_NLA_PROP_MTU
])))
1191 m
->mtu
= nla_get_u32(props
[TIPC_NLA_PROP_MTU
]);
1199 int tipc_nl_media_set(struct sk_buff
*skb
, struct genl_info
*info
)
1204 err
= __tipc_nl_media_set(skb
, info
);