2 * net/tipc/bearer.c: TIPC bearer code
4 * Copyright (c) 1996-2006, 2013-2014, 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.
44 #define MAX_ADDR_STR 60
46 static struct tipc_media
* const media_info_array
[] = {
48 #ifdef CONFIG_TIPC_MEDIA_IB
54 static const struct nla_policy
55 tipc_nl_bearer_policy
[TIPC_NLA_BEARER_MAX
+ 1] = {
56 [TIPC_NLA_BEARER_UNSPEC
] = { .type
= NLA_UNSPEC
},
57 [TIPC_NLA_BEARER_NAME
] = {
59 .len
= TIPC_MAX_BEARER_NAME
61 [TIPC_NLA_BEARER_PROP
] = { .type
= NLA_NESTED
},
62 [TIPC_NLA_BEARER_DOMAIN
] = { .type
= NLA_U32
}
65 static const struct nla_policy tipc_nl_media_policy
[TIPC_NLA_MEDIA_MAX
+ 1] = {
66 [TIPC_NLA_MEDIA_UNSPEC
] = { .type
= NLA_UNSPEC
},
67 [TIPC_NLA_MEDIA_NAME
] = { .type
= NLA_STRING
},
68 [TIPC_NLA_MEDIA_PROP
] = { .type
= NLA_NESTED
}
71 static void bearer_disable(struct net
*net
, struct tipc_bearer
*b_ptr
,
75 * tipc_media_find - locates specified media object by name
77 struct tipc_media
*tipc_media_find(const char *name
)
81 for (i
= 0; media_info_array
[i
] != NULL
; i
++) {
82 if (!strcmp(media_info_array
[i
]->name
, name
))
85 return media_info_array
[i
];
89 * media_find_id - locates specified media object by type identifier
91 static struct tipc_media
*media_find_id(u8 type
)
95 for (i
= 0; media_info_array
[i
] != NULL
; i
++) {
96 if (media_info_array
[i
]->type_id
== type
)
99 return media_info_array
[i
];
103 * tipc_media_addr_printf - record media address in print buffer
105 void tipc_media_addr_printf(char *buf
, int len
, struct tipc_media_addr
*a
)
107 char addr_str
[MAX_ADDR_STR
];
108 struct tipc_media
*m_ptr
;
111 m_ptr
= media_find_id(a
->media_id
);
113 if (m_ptr
&& !m_ptr
->addr2str(a
, addr_str
, sizeof(addr_str
)))
114 ret
= scnprintf(buf
, len
, "%s(%s)", m_ptr
->name
, addr_str
);
118 ret
= scnprintf(buf
, len
, "UNKNOWN(%u)", a
->media_id
);
119 for (i
= 0; i
< sizeof(a
->value
); i
++)
120 ret
+= scnprintf(buf
- ret
, len
+ ret
,
121 "-%02x", a
->value
[i
]);
126 * bearer_name_validate - validate & (optionally) deconstruct bearer name
127 * @name: ptr to bearer name string
128 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
130 * Returns 1 if bearer name is valid, otherwise 0.
132 static int bearer_name_validate(const char *name
,
133 struct tipc_bearer_names
*name_parts
)
135 char name_copy
[TIPC_MAX_BEARER_NAME
];
141 /* copy bearer name & ensure length is OK */
142 name_copy
[TIPC_MAX_BEARER_NAME
- 1] = 0;
143 /* need above in case non-Posix strncpy() doesn't pad with nulls */
144 strncpy(name_copy
, name
, TIPC_MAX_BEARER_NAME
);
145 if (name_copy
[TIPC_MAX_BEARER_NAME
- 1] != 0)
148 /* ensure all component parts of bearer name are present */
149 media_name
= name_copy
;
150 if_name
= strchr(media_name
, ':');
154 media_len
= if_name
- media_name
;
155 if_len
= strlen(if_name
) + 1;
157 /* validate component parts of bearer name */
158 if ((media_len
<= 1) || (media_len
> TIPC_MAX_MEDIA_NAME
) ||
159 (if_len
<= 1) || (if_len
> TIPC_MAX_IF_NAME
))
162 /* return bearer name components, if necessary */
164 strcpy(name_parts
->media_name
, media_name
);
165 strcpy(name_parts
->if_name
, if_name
);
171 * tipc_bearer_find - locates bearer object with matching bearer name
173 struct tipc_bearer
*tipc_bearer_find(struct net
*net
, const char *name
)
175 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
176 struct tipc_bearer
*b_ptr
;
179 for (i
= 0; i
< MAX_BEARERS
; i
++) {
180 b_ptr
= rtnl_dereference(tn
->bearer_list
[i
]);
181 if (b_ptr
&& (!strcmp(b_ptr
->name
, name
)))
187 void tipc_bearer_add_dest(struct net
*net
, u32 bearer_id
, u32 dest
)
189 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
190 struct tipc_bearer
*b_ptr
;
193 b_ptr
= rcu_dereference_rtnl(tn
->bearer_list
[bearer_id
]);
195 tipc_bcbearer_sort(net
, &b_ptr
->nodes
, dest
, true);
196 tipc_disc_add_dest(b_ptr
->link_req
);
201 void tipc_bearer_remove_dest(struct net
*net
, u32 bearer_id
, u32 dest
)
203 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
204 struct tipc_bearer
*b_ptr
;
207 b_ptr
= rcu_dereference_rtnl(tn
->bearer_list
[bearer_id
]);
209 tipc_bcbearer_sort(net
, &b_ptr
->nodes
, dest
, false);
210 tipc_disc_remove_dest(b_ptr
->link_req
);
216 * tipc_enable_bearer - enable bearer with the given name
218 static int tipc_enable_bearer(struct net
*net
, const char *name
,
219 u32 disc_domain
, u32 priority
)
221 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
222 struct tipc_bearer
*b_ptr
;
223 struct tipc_media
*m_ptr
;
224 struct tipc_bearer_names b_names
;
225 char addr_string
[16];
232 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
236 if (!bearer_name_validate(name
, &b_names
)) {
237 pr_warn("Bearer <%s> rejected, illegal name\n", name
);
240 if (tipc_addr_domain_valid(disc_domain
) &&
241 (disc_domain
!= tn
->own_addr
)) {
242 if (tipc_in_scope(disc_domain
, tn
->own_addr
)) {
243 disc_domain
= tn
->own_addr
& TIPC_CLUSTER_MASK
;
244 res
= 0; /* accept any node in own cluster */
245 } else if (in_own_cluster_exact(net
, disc_domain
))
246 res
= 0; /* accept specified node in own cluster */
249 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
253 if ((priority
> TIPC_MAX_LINK_PRI
) &&
254 (priority
!= TIPC_MEDIA_LINK_PRI
)) {
255 pr_warn("Bearer <%s> rejected, illegal priority\n", name
);
259 m_ptr
= tipc_media_find(b_names
.media_name
);
261 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
262 name
, b_names
.media_name
);
266 if (priority
== TIPC_MEDIA_LINK_PRI
)
267 priority
= m_ptr
->priority
;
270 bearer_id
= MAX_BEARERS
;
272 for (i
= MAX_BEARERS
; i
-- != 0; ) {
273 b_ptr
= rtnl_dereference(tn
->bearer_list
[i
]);
278 if (!strcmp(name
, b_ptr
->name
)) {
279 pr_warn("Bearer <%s> rejected, already enabled\n",
283 if ((b_ptr
->priority
== priority
) &&
284 (++with_this_prio
> 2)) {
285 if (priority
-- == 0) {
286 pr_warn("Bearer <%s> rejected, duplicate priority\n",
290 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
291 name
, priority
+ 1, priority
);
295 if (bearer_id
>= MAX_BEARERS
) {
296 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
301 b_ptr
= kzalloc(sizeof(*b_ptr
), GFP_ATOMIC
);
305 strcpy(b_ptr
->name
, name
);
306 b_ptr
->media
= m_ptr
;
307 res
= m_ptr
->enable_media(net
, b_ptr
);
309 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
314 b_ptr
->identity
= bearer_id
;
315 b_ptr
->tolerance
= m_ptr
->tolerance
;
316 b_ptr
->window
= m_ptr
->window
;
317 b_ptr
->domain
= disc_domain
;
318 b_ptr
->net_plane
= bearer_id
+ 'A';
319 b_ptr
->priority
= priority
;
321 res
= tipc_disc_create(net
, b_ptr
, &b_ptr
->bcast_addr
);
323 bearer_disable(net
, b_ptr
, false);
324 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
329 rcu_assign_pointer(tn
->bearer_list
[bearer_id
], b_ptr
);
331 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
333 tipc_addr_string_fill(addr_string
, disc_domain
), priority
);
338 * tipc_reset_bearer - Reset all links established over this bearer
340 static int tipc_reset_bearer(struct net
*net
, struct tipc_bearer
*b_ptr
)
342 pr_info("Resetting bearer <%s>\n", b_ptr
->name
);
343 tipc_link_reset_list(net
, b_ptr
->identity
);
344 tipc_disc_reset(net
, b_ptr
);
351 * Note: This routine assumes caller holds RTNL lock.
353 static void bearer_disable(struct net
*net
, struct tipc_bearer
*b_ptr
,
356 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
359 pr_info("Disabling bearer <%s>\n", b_ptr
->name
);
360 b_ptr
->media
->disable_media(b_ptr
);
362 tipc_link_delete_list(net
, b_ptr
->identity
, shutting_down
);
364 tipc_disc_delete(b_ptr
->link_req
);
366 for (i
= 0; i
< MAX_BEARERS
; i
++) {
367 if (b_ptr
== rtnl_dereference(tn
->bearer_list
[i
])) {
368 RCU_INIT_POINTER(tn
->bearer_list
[i
], NULL
);
372 kfree_rcu(b_ptr
, rcu
);
375 int tipc_enable_l2_media(struct net
*net
, struct tipc_bearer
*b
)
377 struct net_device
*dev
;
378 char *driver_name
= strchr((const char *)b
->name
, ':') + 1;
380 /* Find device with specified name */
381 dev
= dev_get_by_name(net
, driver_name
);
385 /* Associate TIPC bearer with L2 bearer */
386 rcu_assign_pointer(b
->media_ptr
, dev
);
387 memset(&b
->bcast_addr
, 0, sizeof(b
->bcast_addr
));
388 memcpy(b
->bcast_addr
.value
, dev
->broadcast
, b
->media
->hwaddr_len
);
389 b
->bcast_addr
.media_id
= b
->media
->type_id
;
390 b
->bcast_addr
.broadcast
= 1;
392 b
->media
->raw2addr(b
, &b
->addr
, (char *)dev
->dev_addr
);
393 rcu_assign_pointer(dev
->tipc_ptr
, b
);
397 /* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
399 * Mark L2 bearer as inactive so that incoming buffers are thrown away,
400 * then get worker thread to complete bearer cleanup. (Can't do cleanup
401 * here because cleanup code needs to sleep and caller holds spinlocks.)
403 void tipc_disable_l2_media(struct tipc_bearer
*b
)
405 struct net_device
*dev
;
407 dev
= (struct net_device
*)rtnl_dereference(b
->media_ptr
);
408 RCU_INIT_POINTER(b
->media_ptr
, NULL
);
409 RCU_INIT_POINTER(dev
->tipc_ptr
, NULL
);
415 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
416 * @buf: the packet to be sent
417 * @b_ptr: the bearer through which the packet is to be sent
418 * @dest: peer destination address
420 int tipc_l2_send_msg(struct net
*net
, struct sk_buff
*buf
,
421 struct tipc_bearer
*b
, struct tipc_media_addr
*dest
)
423 struct sk_buff
*clone
;
424 struct net_device
*dev
;
427 dev
= (struct net_device
*)rcu_dereference_rtnl(b
->media_ptr
);
431 clone
= skb_clone(buf
, GFP_ATOMIC
);
435 delta
= dev
->hard_header_len
- skb_headroom(buf
);
437 pskb_expand_head(clone
, SKB_DATA_ALIGN(delta
), 0, GFP_ATOMIC
)) {
442 skb_reset_network_header(clone
);
444 clone
->protocol
= htons(ETH_P_TIPC
);
445 dev_hard_header(clone
, dev
, ETH_P_TIPC
, dest
->value
,
446 dev
->dev_addr
, clone
->len
);
447 dev_queue_xmit(clone
);
451 /* tipc_bearer_send- sends buffer to destination over bearer
454 * The media send routine must not alter the buffer being passed in
455 * as it may be needed for later retransmission!
457 void tipc_bearer_send(struct net
*net
, u32 bearer_id
, struct sk_buff
*buf
,
458 struct tipc_media_addr
*dest
)
460 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
461 struct tipc_bearer
*b_ptr
;
464 b_ptr
= rcu_dereference_rtnl(tn
->bearer_list
[bearer_id
]);
466 b_ptr
->media
->send_msg(net
, buf
, b_ptr
, dest
);
471 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
472 * @buf: the received packet
473 * @dev: the net device that the packet was received on
474 * @pt: the packet_type structure which was used to register this handler
475 * @orig_dev: the original receive net device in case the device is a bond
477 * Accept only packets explicitly sent to this node, or broadcast packets;
478 * ignores packets sent using interface multicast, and traffic sent to other
479 * nodes (which can happen if interface is running in promiscuous mode).
481 static int tipc_l2_rcv_msg(struct sk_buff
*buf
, struct net_device
*dev
,
482 struct packet_type
*pt
, struct net_device
*orig_dev
)
484 struct tipc_bearer
*b_ptr
;
487 b_ptr
= rcu_dereference_rtnl(dev
->tipc_ptr
);
489 if (likely(buf
->pkt_type
<= PACKET_BROADCAST
)) {
491 tipc_rcv(dev_net(dev
), buf
, b_ptr
);
493 return NET_RX_SUCCESS
;
503 * tipc_l2_device_event - handle device events from network device
504 * @nb: the context of the notification
505 * @evt: the type of event
506 * @ptr: the net device that the event was on
508 * This function is called by the Ethernet driver in case of link
511 static int tipc_l2_device_event(struct notifier_block
*nb
, unsigned long evt
,
514 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
515 struct net
*net
= dev_net(dev
);
516 struct tipc_bearer
*b_ptr
;
518 b_ptr
= rtnl_dereference(dev
->tipc_ptr
);
522 b_ptr
->mtu
= dev
->mtu
;
526 if (netif_carrier_ok(dev
))
529 case NETDEV_CHANGEMTU
:
530 tipc_reset_bearer(net
, b_ptr
);
532 case NETDEV_CHANGEADDR
:
533 b_ptr
->media
->raw2addr(b_ptr
, &b_ptr
->addr
,
534 (char *)dev
->dev_addr
);
535 tipc_reset_bearer(net
, b_ptr
);
537 case NETDEV_UNREGISTER
:
538 case NETDEV_CHANGENAME
:
539 bearer_disable(dev_net(dev
), b_ptr
, false);
545 static struct packet_type tipc_packet_type __read_mostly
= {
546 .type
= htons(ETH_P_TIPC
),
547 .func
= tipc_l2_rcv_msg
,
550 static struct notifier_block notifier
= {
551 .notifier_call
= tipc_l2_device_event
,
555 int tipc_bearer_setup(void)
559 err
= register_netdevice_notifier(¬ifier
);
562 dev_add_pack(&tipc_packet_type
);
566 void tipc_bearer_cleanup(void)
568 unregister_netdevice_notifier(¬ifier
);
569 dev_remove_pack(&tipc_packet_type
);
572 void tipc_bearer_stop(struct net
*net
)
574 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
575 struct tipc_bearer
*b_ptr
;
578 for (i
= 0; i
< MAX_BEARERS
; i
++) {
579 b_ptr
= rtnl_dereference(tn
->bearer_list
[i
]);
581 bearer_disable(net
, b_ptr
, true);
582 tn
->bearer_list
[i
] = NULL
;
587 /* Caller should hold rtnl_lock to protect the bearer */
588 static int __tipc_nl_add_bearer(struct tipc_nl_msg
*msg
,
589 struct tipc_bearer
*bearer
)
592 struct nlattr
*attrs
;
595 hdr
= genlmsg_put(msg
->skb
, msg
->portid
, msg
->seq
, &tipc_genl_family
,
596 NLM_F_MULTI
, TIPC_NL_BEARER_GET
);
600 attrs
= nla_nest_start(msg
->skb
, TIPC_NLA_BEARER
);
604 if (nla_put_string(msg
->skb
, TIPC_NLA_BEARER_NAME
, bearer
->name
))
607 prop
= nla_nest_start(msg
->skb
, TIPC_NLA_BEARER_PROP
);
610 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_PRIO
, bearer
->priority
))
612 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_TOL
, bearer
->tolerance
))
614 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_WIN
, bearer
->window
))
617 nla_nest_end(msg
->skb
, prop
);
618 nla_nest_end(msg
->skb
, attrs
);
619 genlmsg_end(msg
->skb
, hdr
);
624 nla_nest_cancel(msg
->skb
, prop
);
626 nla_nest_cancel(msg
->skb
, attrs
);
628 genlmsg_cancel(msg
->skb
, hdr
);
633 int tipc_nl_bearer_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
637 struct tipc_bearer
*bearer
;
638 struct tipc_nl_msg msg
;
639 struct net
*net
= sock_net(skb
->sk
);
640 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
642 if (i
== MAX_BEARERS
)
646 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
647 msg
.seq
= cb
->nlh
->nlmsg_seq
;
650 for (i
= 0; i
< MAX_BEARERS
; i
++) {
651 bearer
= rtnl_dereference(tn
->bearer_list
[i
]);
655 err
= __tipc_nl_add_bearer(&msg
, bearer
);
665 int tipc_nl_bearer_get(struct sk_buff
*skb
, struct genl_info
*info
)
670 struct tipc_bearer
*bearer
;
671 struct tipc_nl_msg msg
;
672 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
673 struct net
*net
= genl_info_net(info
);
675 if (!info
->attrs
[TIPC_NLA_BEARER
])
678 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
679 info
->attrs
[TIPC_NLA_BEARER
],
680 tipc_nl_bearer_policy
);
684 if (!attrs
[TIPC_NLA_BEARER_NAME
])
686 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
688 rep
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
693 msg
.portid
= info
->snd_portid
;
694 msg
.seq
= info
->snd_seq
;
697 bearer
= tipc_bearer_find(net
, name
);
703 err
= __tipc_nl_add_bearer(&msg
, bearer
);
708 return genlmsg_reply(rep
, info
);
716 int tipc_nl_bearer_disable(struct sk_buff
*skb
, struct genl_info
*info
)
720 struct tipc_bearer
*bearer
;
721 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
722 struct net
*net
= sock_net(skb
->sk
);
724 if (!info
->attrs
[TIPC_NLA_BEARER
])
727 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
728 info
->attrs
[TIPC_NLA_BEARER
],
729 tipc_nl_bearer_policy
);
733 if (!attrs
[TIPC_NLA_BEARER_NAME
])
736 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
739 bearer
= tipc_bearer_find(net
, name
);
745 bearer_disable(net
, bearer
, false);
751 int tipc_nl_bearer_enable(struct sk_buff
*skb
, struct genl_info
*info
)
755 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
756 struct net
*net
= sock_net(skb
->sk
);
757 struct tipc_net
*tn
= net_generic(net
, tipc_net_id
);
761 prio
= TIPC_MEDIA_LINK_PRI
;
762 domain
= tn
->own_addr
& TIPC_CLUSTER_MASK
;
764 if (!info
->attrs
[TIPC_NLA_BEARER
])
767 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
768 info
->attrs
[TIPC_NLA_BEARER
],
769 tipc_nl_bearer_policy
);
773 if (!attrs
[TIPC_NLA_BEARER_NAME
])
776 bearer
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
778 if (attrs
[TIPC_NLA_BEARER_DOMAIN
])
779 domain
= nla_get_u32(attrs
[TIPC_NLA_BEARER_DOMAIN
]);
781 if (attrs
[TIPC_NLA_BEARER_PROP
]) {
782 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
784 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_BEARER_PROP
],
789 if (props
[TIPC_NLA_PROP_PRIO
])
790 prio
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
794 err
= tipc_enable_bearer(net
, bearer
, domain
, prio
);
804 int tipc_nl_bearer_set(struct sk_buff
*skb
, struct genl_info
*info
)
808 struct tipc_bearer
*b
;
809 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
810 struct net
*net
= genl_info_net(info
);
812 if (!info
->attrs
[TIPC_NLA_BEARER
])
815 err
= nla_parse_nested(attrs
, TIPC_NLA_BEARER_MAX
,
816 info
->attrs
[TIPC_NLA_BEARER
],
817 tipc_nl_bearer_policy
);
821 if (!attrs
[TIPC_NLA_BEARER_NAME
])
823 name
= nla_data(attrs
[TIPC_NLA_BEARER_NAME
]);
826 b
= tipc_bearer_find(net
, name
);
832 if (attrs
[TIPC_NLA_BEARER_PROP
]) {
833 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
835 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_BEARER_PROP
],
842 if (props
[TIPC_NLA_PROP_TOL
])
843 b
->tolerance
= nla_get_u32(props
[TIPC_NLA_PROP_TOL
]);
844 if (props
[TIPC_NLA_PROP_PRIO
])
845 b
->priority
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
846 if (props
[TIPC_NLA_PROP_WIN
])
847 b
->window
= nla_get_u32(props
[TIPC_NLA_PROP_WIN
]);
854 static int __tipc_nl_add_media(struct tipc_nl_msg
*msg
,
855 struct tipc_media
*media
)
858 struct nlattr
*attrs
;
861 hdr
= genlmsg_put(msg
->skb
, msg
->portid
, msg
->seq
, &tipc_genl_family
,
862 NLM_F_MULTI
, TIPC_NL_MEDIA_GET
);
866 attrs
= nla_nest_start(msg
->skb
, TIPC_NLA_MEDIA
);
870 if (nla_put_string(msg
->skb
, TIPC_NLA_MEDIA_NAME
, media
->name
))
873 prop
= nla_nest_start(msg
->skb
, TIPC_NLA_MEDIA_PROP
);
876 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_PRIO
, media
->priority
))
878 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_TOL
, media
->tolerance
))
880 if (nla_put_u32(msg
->skb
, TIPC_NLA_PROP_WIN
, media
->window
))
883 nla_nest_end(msg
->skb
, prop
);
884 nla_nest_end(msg
->skb
, attrs
);
885 genlmsg_end(msg
->skb
, hdr
);
890 nla_nest_cancel(msg
->skb
, prop
);
892 nla_nest_cancel(msg
->skb
, attrs
);
894 genlmsg_cancel(msg
->skb
, hdr
);
899 int tipc_nl_media_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
903 struct tipc_nl_msg msg
;
909 msg
.portid
= NETLINK_CB(cb
->skb
).portid
;
910 msg
.seq
= cb
->nlh
->nlmsg_seq
;
913 for (; media_info_array
[i
] != NULL
; i
++) {
914 err
= __tipc_nl_add_media(&msg
, media_info_array
[i
]);
924 int tipc_nl_media_get(struct sk_buff
*skb
, struct genl_info
*info
)
928 struct tipc_nl_msg msg
;
929 struct tipc_media
*media
;
931 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
933 if (!info
->attrs
[TIPC_NLA_MEDIA
])
936 err
= nla_parse_nested(attrs
, TIPC_NLA_MEDIA_MAX
,
937 info
->attrs
[TIPC_NLA_MEDIA
],
938 tipc_nl_media_policy
);
942 if (!attrs
[TIPC_NLA_MEDIA_NAME
])
944 name
= nla_data(attrs
[TIPC_NLA_MEDIA_NAME
]);
946 rep
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
951 msg
.portid
= info
->snd_portid
;
952 msg
.seq
= info
->snd_seq
;
955 media
= tipc_media_find(name
);
961 err
= __tipc_nl_add_media(&msg
, media
);
966 return genlmsg_reply(rep
, info
);
974 int tipc_nl_media_set(struct sk_buff
*skb
, struct genl_info
*info
)
978 struct tipc_media
*m
;
979 struct nlattr
*attrs
[TIPC_NLA_BEARER_MAX
+ 1];
981 if (!info
->attrs
[TIPC_NLA_MEDIA
])
984 err
= nla_parse_nested(attrs
, TIPC_NLA_MEDIA_MAX
,
985 info
->attrs
[TIPC_NLA_MEDIA
],
986 tipc_nl_media_policy
);
988 if (!attrs
[TIPC_NLA_MEDIA_NAME
])
990 name
= nla_data(attrs
[TIPC_NLA_MEDIA_NAME
]);
993 m
= tipc_media_find(name
);
999 if (attrs
[TIPC_NLA_MEDIA_PROP
]) {
1000 struct nlattr
*props
[TIPC_NLA_PROP_MAX
+ 1];
1002 err
= tipc_nl_parse_link_prop(attrs
[TIPC_NLA_MEDIA_PROP
],
1009 if (props
[TIPC_NLA_PROP_TOL
])
1010 m
->tolerance
= nla_get_u32(props
[TIPC_NLA_PROP_TOL
]);
1011 if (props
[TIPC_NLA_PROP_PRIO
])
1012 m
->priority
= nla_get_u32(props
[TIPC_NLA_PROP_PRIO
]);
1013 if (props
[TIPC_NLA_PROP_WIN
])
1014 m
->window
= nla_get_u32(props
[TIPC_NLA_PROP_WIN
]);