tipc: convert legacy nl link prop set to nl compat
[firefly-linux-kernel-4.4.55.git] / net / tipc / bearer.c
1 /*
2  * net/tipc/bearer.c: TIPC bearer code
3  *
4  * Copyright (c) 1996-2006, 2013-2014, Ericsson AB
5  * Copyright (c) 2004-2006, 2010-2013, Wind River Systems
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
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.
19  *
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.
23  *
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.
35  */
36
37 #include <net/sock.h>
38 #include "core.h"
39 #include "config.h"
40 #include "bearer.h"
41 #include "link.h"
42 #include "discover.h"
43 #include "bcast.h"
44
45 #define MAX_ADDR_STR 60
46
47 static struct tipc_media * const media_info_array[] = {
48         &eth_media_info,
49 #ifdef CONFIG_TIPC_MEDIA_IB
50         &ib_media_info,
51 #endif
52         NULL
53 };
54
55 static const struct nla_policy
56 tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1]  = {
57         [TIPC_NLA_BEARER_UNSPEC]                = { .type = NLA_UNSPEC },
58         [TIPC_NLA_BEARER_NAME] = {
59                 .type = NLA_STRING,
60                 .len = TIPC_MAX_BEARER_NAME
61         },
62         [TIPC_NLA_BEARER_PROP]                  = { .type = NLA_NESTED },
63         [TIPC_NLA_BEARER_DOMAIN]                = { .type = NLA_U32 }
64 };
65
66 static const struct nla_policy tipc_nl_media_policy[TIPC_NLA_MEDIA_MAX + 1] = {
67         [TIPC_NLA_MEDIA_UNSPEC]         = { .type = NLA_UNSPEC },
68         [TIPC_NLA_MEDIA_NAME]           = { .type = NLA_STRING },
69         [TIPC_NLA_MEDIA_PROP]           = { .type = NLA_NESTED }
70 };
71
72 static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
73                            bool shutting_down);
74
75 /**
76  * tipc_media_find - locates specified media object by name
77  */
78 struct tipc_media *tipc_media_find(const char *name)
79 {
80         u32 i;
81
82         for (i = 0; media_info_array[i] != NULL; i++) {
83                 if (!strcmp(media_info_array[i]->name, name))
84                         break;
85         }
86         return media_info_array[i];
87 }
88
89 /**
90  * media_find_id - locates specified media object by type identifier
91  */
92 static struct tipc_media *media_find_id(u8 type)
93 {
94         u32 i;
95
96         for (i = 0; media_info_array[i] != NULL; i++) {
97                 if (media_info_array[i]->type_id == type)
98                         break;
99         }
100         return media_info_array[i];
101 }
102
103 /**
104  * tipc_media_addr_printf - record media address in print buffer
105  */
106 void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
107 {
108         char addr_str[MAX_ADDR_STR];
109         struct tipc_media *m_ptr;
110         int ret;
111
112         m_ptr = media_find_id(a->media_id);
113
114         if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
115                 ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
116         else {
117                 u32 i;
118
119                 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
120                 for (i = 0; i < sizeof(a->value); i++)
121                         ret += tipc_snprintf(buf - ret, len + ret,
122                                             "-%02x", a->value[i]);
123         }
124 }
125
126 /**
127  * tipc_media_get_names - record names of registered media in buffer
128  */
129 struct sk_buff *tipc_media_get_names(void)
130 {
131         struct sk_buff *buf;
132         int i;
133
134         buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
135         if (!buf)
136                 return NULL;
137
138         for (i = 0; media_info_array[i] != NULL; i++) {
139                 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
140                                     media_info_array[i]->name,
141                                     strlen(media_info_array[i]->name) + 1);
142         }
143         return buf;
144 }
145
146 /**
147  * bearer_name_validate - validate & (optionally) deconstruct bearer name
148  * @name: ptr to bearer name string
149  * @name_parts: ptr to area for bearer name components (or NULL if not needed)
150  *
151  * Returns 1 if bearer name is valid, otherwise 0.
152  */
153 static int bearer_name_validate(const char *name,
154                                 struct tipc_bearer_names *name_parts)
155 {
156         char name_copy[TIPC_MAX_BEARER_NAME];
157         char *media_name;
158         char *if_name;
159         u32 media_len;
160         u32 if_len;
161
162         /* copy bearer name & ensure length is OK */
163         name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
164         /* need above in case non-Posix strncpy() doesn't pad with nulls */
165         strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
166         if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
167                 return 0;
168
169         /* ensure all component parts of bearer name are present */
170         media_name = name_copy;
171         if_name = strchr(media_name, ':');
172         if (if_name == NULL)
173                 return 0;
174         *(if_name++) = 0;
175         media_len = if_name - media_name;
176         if_len = strlen(if_name) + 1;
177
178         /* validate component parts of bearer name */
179         if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
180             (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
181                 return 0;
182
183         /* return bearer name components, if necessary */
184         if (name_parts) {
185                 strcpy(name_parts->media_name, media_name);
186                 strcpy(name_parts->if_name, if_name);
187         }
188         return 1;
189 }
190
191 /**
192  * tipc_bearer_find - locates bearer object with matching bearer name
193  */
194 struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name)
195 {
196         struct tipc_net *tn = net_generic(net, tipc_net_id);
197         struct tipc_bearer *b_ptr;
198         u32 i;
199
200         for (i = 0; i < MAX_BEARERS; i++) {
201                 b_ptr = rtnl_dereference(tn->bearer_list[i]);
202                 if (b_ptr && (!strcmp(b_ptr->name, name)))
203                         return b_ptr;
204         }
205         return NULL;
206 }
207
208 void tipc_bearer_add_dest(struct net *net, u32 bearer_id, u32 dest)
209 {
210         struct tipc_net *tn = net_generic(net, tipc_net_id);
211         struct tipc_bearer *b_ptr;
212
213         rcu_read_lock();
214         b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
215         if (b_ptr) {
216                 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, true);
217                 tipc_disc_add_dest(b_ptr->link_req);
218         }
219         rcu_read_unlock();
220 }
221
222 void tipc_bearer_remove_dest(struct net *net, u32 bearer_id, u32 dest)
223 {
224         struct tipc_net *tn = net_generic(net, tipc_net_id);
225         struct tipc_bearer *b_ptr;
226
227         rcu_read_lock();
228         b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
229         if (b_ptr) {
230                 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, false);
231                 tipc_disc_remove_dest(b_ptr->link_req);
232         }
233         rcu_read_unlock();
234 }
235
236 /**
237  * tipc_enable_bearer - enable bearer with the given name
238  */
239 static int tipc_enable_bearer(struct net *net, const char *name,
240                               u32 disc_domain, u32 priority)
241 {
242         struct tipc_net *tn = net_generic(net, tipc_net_id);
243         struct tipc_bearer *b_ptr;
244         struct tipc_media *m_ptr;
245         struct tipc_bearer_names b_names;
246         char addr_string[16];
247         u32 bearer_id;
248         u32 with_this_prio;
249         u32 i;
250         int res = -EINVAL;
251
252         if (!tn->own_addr) {
253                 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
254                         name);
255                 return -ENOPROTOOPT;
256         }
257         if (!bearer_name_validate(name, &b_names)) {
258                 pr_warn("Bearer <%s> rejected, illegal name\n", name);
259                 return -EINVAL;
260         }
261         if (tipc_addr_domain_valid(disc_domain) &&
262             (disc_domain != tn->own_addr)) {
263                 if (tipc_in_scope(disc_domain, tn->own_addr)) {
264                         disc_domain = tn->own_addr & TIPC_CLUSTER_MASK;
265                         res = 0;   /* accept any node in own cluster */
266                 } else if (in_own_cluster_exact(net, disc_domain))
267                         res = 0;   /* accept specified node in own cluster */
268         }
269         if (res) {
270                 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
271                         name);
272                 return -EINVAL;
273         }
274         if ((priority > TIPC_MAX_LINK_PRI) &&
275             (priority != TIPC_MEDIA_LINK_PRI)) {
276                 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
277                 return -EINVAL;
278         }
279
280         m_ptr = tipc_media_find(b_names.media_name);
281         if (!m_ptr) {
282                 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
283                         name, b_names.media_name);
284                 return -EINVAL;
285         }
286
287         if (priority == TIPC_MEDIA_LINK_PRI)
288                 priority = m_ptr->priority;
289
290 restart:
291         bearer_id = MAX_BEARERS;
292         with_this_prio = 1;
293         for (i = MAX_BEARERS; i-- != 0; ) {
294                 b_ptr = rtnl_dereference(tn->bearer_list[i]);
295                 if (!b_ptr) {
296                         bearer_id = i;
297                         continue;
298                 }
299                 if (!strcmp(name, b_ptr->name)) {
300                         pr_warn("Bearer <%s> rejected, already enabled\n",
301                                 name);
302                         return -EINVAL;
303                 }
304                 if ((b_ptr->priority == priority) &&
305                     (++with_this_prio > 2)) {
306                         if (priority-- == 0) {
307                                 pr_warn("Bearer <%s> rejected, duplicate priority\n",
308                                         name);
309                                 return -EINVAL;
310                         }
311                         pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
312                                 name, priority + 1, priority);
313                         goto restart;
314                 }
315         }
316         if (bearer_id >= MAX_BEARERS) {
317                 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
318                         name, MAX_BEARERS);
319                 return -EINVAL;
320         }
321
322         b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
323         if (!b_ptr)
324                 return -ENOMEM;
325
326         strcpy(b_ptr->name, name);
327         b_ptr->media = m_ptr;
328         res = m_ptr->enable_media(net, b_ptr);
329         if (res) {
330                 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
331                         name, -res);
332                 return -EINVAL;
333         }
334
335         b_ptr->identity = bearer_id;
336         b_ptr->tolerance = m_ptr->tolerance;
337         b_ptr->window = m_ptr->window;
338         b_ptr->domain = disc_domain;
339         b_ptr->net_plane = bearer_id + 'A';
340         b_ptr->priority = priority;
341
342         res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr);
343         if (res) {
344                 bearer_disable(net, b_ptr, false);
345                 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
346                         name);
347                 return -EINVAL;
348         }
349
350         rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr);
351
352         pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
353                 name,
354                 tipc_addr_string_fill(addr_string, disc_domain), priority);
355         return res;
356 }
357
358 /**
359  * tipc_reset_bearer - Reset all links established over this bearer
360  */
361 static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b_ptr)
362 {
363         pr_info("Resetting bearer <%s>\n", b_ptr->name);
364         tipc_link_reset_list(net, b_ptr->identity);
365         tipc_disc_reset(net, b_ptr);
366         return 0;
367 }
368
369 /**
370  * bearer_disable
371  *
372  * Note: This routine assumes caller holds RTNL lock.
373  */
374 static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
375                            bool shutting_down)
376 {
377         struct tipc_net *tn = net_generic(net, tipc_net_id);
378         u32 i;
379
380         pr_info("Disabling bearer <%s>\n", b_ptr->name);
381         b_ptr->media->disable_media(b_ptr);
382
383         tipc_link_delete_list(net, b_ptr->identity, shutting_down);
384         if (b_ptr->link_req)
385                 tipc_disc_delete(b_ptr->link_req);
386
387         for (i = 0; i < MAX_BEARERS; i++) {
388                 if (b_ptr == rtnl_dereference(tn->bearer_list[i])) {
389                         RCU_INIT_POINTER(tn->bearer_list[i], NULL);
390                         break;
391                 }
392         }
393         kfree_rcu(b_ptr, rcu);
394 }
395
396 int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b)
397 {
398         struct net_device *dev;
399         char *driver_name = strchr((const char *)b->name, ':') + 1;
400
401         /* Find device with specified name */
402         dev = dev_get_by_name(net, driver_name);
403         if (!dev)
404                 return -ENODEV;
405
406         /* Associate TIPC bearer with L2 bearer */
407         rcu_assign_pointer(b->media_ptr, dev);
408         memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
409         memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
410         b->bcast_addr.media_id = b->media->type_id;
411         b->bcast_addr.broadcast = 1;
412         b->mtu = dev->mtu;
413         b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
414         rcu_assign_pointer(dev->tipc_ptr, b);
415         return 0;
416 }
417
418 /* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
419  *
420  * Mark L2 bearer as inactive so that incoming buffers are thrown away,
421  * then get worker thread to complete bearer cleanup.  (Can't do cleanup
422  * here because cleanup code needs to sleep and caller holds spinlocks.)
423  */
424 void tipc_disable_l2_media(struct tipc_bearer *b)
425 {
426         struct net_device *dev;
427
428         dev = (struct net_device *)rtnl_dereference(b->media_ptr);
429         RCU_INIT_POINTER(b->media_ptr, NULL);
430         RCU_INIT_POINTER(dev->tipc_ptr, NULL);
431         synchronize_net();
432         dev_put(dev);
433 }
434
435 /**
436  * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
437  * @buf: the packet to be sent
438  * @b_ptr: the bearer through which the packet is to be sent
439  * @dest: peer destination address
440  */
441 int tipc_l2_send_msg(struct net *net, struct sk_buff *buf,
442                      struct tipc_bearer *b, struct tipc_media_addr *dest)
443 {
444         struct sk_buff *clone;
445         struct net_device *dev;
446         int delta;
447
448         dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
449         if (!dev)
450                 return 0;
451
452         clone = skb_clone(buf, GFP_ATOMIC);
453         if (!clone)
454                 return 0;
455
456         delta = dev->hard_header_len - skb_headroom(buf);
457         if ((delta > 0) &&
458             pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
459                 kfree_skb(clone);
460                 return 0;
461         }
462
463         skb_reset_network_header(clone);
464         clone->dev = dev;
465         clone->protocol = htons(ETH_P_TIPC);
466         dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
467                         dev->dev_addr, clone->len);
468         dev_queue_xmit(clone);
469         return 0;
470 }
471
472 /* tipc_bearer_send- sends buffer to destination over bearer
473  *
474  * IMPORTANT:
475  * The media send routine must not alter the buffer being passed in
476  * as it may be needed for later retransmission!
477  */
478 void tipc_bearer_send(struct net *net, u32 bearer_id, struct sk_buff *buf,
479                       struct tipc_media_addr *dest)
480 {
481         struct tipc_net *tn = net_generic(net, tipc_net_id);
482         struct tipc_bearer *b_ptr;
483
484         rcu_read_lock();
485         b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
486         if (likely(b_ptr))
487                 b_ptr->media->send_msg(net, buf, b_ptr, dest);
488         rcu_read_unlock();
489 }
490
491 /**
492  * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
493  * @buf: the received packet
494  * @dev: the net device that the packet was received on
495  * @pt: the packet_type structure which was used to register this handler
496  * @orig_dev: the original receive net device in case the device is a bond
497  *
498  * Accept only packets explicitly sent to this node, or broadcast packets;
499  * ignores packets sent using interface multicast, and traffic sent to other
500  * nodes (which can happen if interface is running in promiscuous mode).
501  */
502 static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
503                            struct packet_type *pt, struct net_device *orig_dev)
504 {
505         struct tipc_bearer *b_ptr;
506
507         rcu_read_lock();
508         b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
509         if (likely(b_ptr)) {
510                 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
511                         buf->next = NULL;
512                         tipc_rcv(dev_net(dev), buf, b_ptr);
513                         rcu_read_unlock();
514                         return NET_RX_SUCCESS;
515                 }
516         }
517         rcu_read_unlock();
518
519         kfree_skb(buf);
520         return NET_RX_DROP;
521 }
522
523 /**
524  * tipc_l2_device_event - handle device events from network device
525  * @nb: the context of the notification
526  * @evt: the type of event
527  * @ptr: the net device that the event was on
528  *
529  * This function is called by the Ethernet driver in case of link
530  * change event.
531  */
532 static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
533                                 void *ptr)
534 {
535         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
536         struct net *net = dev_net(dev);
537         struct tipc_bearer *b_ptr;
538
539         b_ptr = rtnl_dereference(dev->tipc_ptr);
540         if (!b_ptr)
541                 return NOTIFY_DONE;
542
543         b_ptr->mtu = dev->mtu;
544
545         switch (evt) {
546         case NETDEV_CHANGE:
547                 if (netif_carrier_ok(dev))
548                         break;
549         case NETDEV_DOWN:
550         case NETDEV_CHANGEMTU:
551                 tipc_reset_bearer(net, b_ptr);
552                 break;
553         case NETDEV_CHANGEADDR:
554                 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
555                                        (char *)dev->dev_addr);
556                 tipc_reset_bearer(net, b_ptr);
557                 break;
558         case NETDEV_UNREGISTER:
559         case NETDEV_CHANGENAME:
560                 bearer_disable(dev_net(dev), b_ptr, false);
561                 break;
562         }
563         return NOTIFY_OK;
564 }
565
566 static struct packet_type tipc_packet_type __read_mostly = {
567         .type = htons(ETH_P_TIPC),
568         .func = tipc_l2_rcv_msg,
569 };
570
571 static struct notifier_block notifier = {
572         .notifier_call  = tipc_l2_device_event,
573         .priority       = 0,
574 };
575
576 int tipc_bearer_setup(void)
577 {
578         int err;
579
580         err = register_netdevice_notifier(&notifier);
581         if (err)
582                 return err;
583         dev_add_pack(&tipc_packet_type);
584         return 0;
585 }
586
587 void tipc_bearer_cleanup(void)
588 {
589         unregister_netdevice_notifier(&notifier);
590         dev_remove_pack(&tipc_packet_type);
591 }
592
593 void tipc_bearer_stop(struct net *net)
594 {
595         struct tipc_net *tn = net_generic(net, tipc_net_id);
596         struct tipc_bearer *b_ptr;
597         u32 i;
598
599         for (i = 0; i < MAX_BEARERS; i++) {
600                 b_ptr = rtnl_dereference(tn->bearer_list[i]);
601                 if (b_ptr) {
602                         bearer_disable(net, b_ptr, true);
603                         tn->bearer_list[i] = NULL;
604                 }
605         }
606 }
607
608 /* Caller should hold rtnl_lock to protect the bearer */
609 static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
610                                 struct tipc_bearer *bearer)
611 {
612         void *hdr;
613         struct nlattr *attrs;
614         struct nlattr *prop;
615
616         hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
617                           NLM_F_MULTI, TIPC_NL_BEARER_GET);
618         if (!hdr)
619                 return -EMSGSIZE;
620
621         attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
622         if (!attrs)
623                 goto msg_full;
624
625         if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
626                 goto attr_msg_full;
627
628         prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
629         if (!prop)
630                 goto prop_msg_full;
631         if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
632                 goto prop_msg_full;
633         if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
634                 goto prop_msg_full;
635         if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
636                 goto prop_msg_full;
637
638         nla_nest_end(msg->skb, prop);
639         nla_nest_end(msg->skb, attrs);
640         genlmsg_end(msg->skb, hdr);
641
642         return 0;
643
644 prop_msg_full:
645         nla_nest_cancel(msg->skb, prop);
646 attr_msg_full:
647         nla_nest_cancel(msg->skb, attrs);
648 msg_full:
649         genlmsg_cancel(msg->skb, hdr);
650
651         return -EMSGSIZE;
652 }
653
654 int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
655 {
656         int err;
657         int i = cb->args[0];
658         struct tipc_bearer *bearer;
659         struct tipc_nl_msg msg;
660         struct net *net = sock_net(skb->sk);
661         struct tipc_net *tn = net_generic(net, tipc_net_id);
662
663         if (i == MAX_BEARERS)
664                 return 0;
665
666         msg.skb = skb;
667         msg.portid = NETLINK_CB(cb->skb).portid;
668         msg.seq = cb->nlh->nlmsg_seq;
669
670         rtnl_lock();
671         for (i = 0; i < MAX_BEARERS; i++) {
672                 bearer = rtnl_dereference(tn->bearer_list[i]);
673                 if (!bearer)
674                         continue;
675
676                 err = __tipc_nl_add_bearer(&msg, bearer);
677                 if (err)
678                         break;
679         }
680         rtnl_unlock();
681
682         cb->args[0] = i;
683         return skb->len;
684 }
685
686 int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
687 {
688         int err;
689         char *name;
690         struct sk_buff *rep;
691         struct tipc_bearer *bearer;
692         struct tipc_nl_msg msg;
693         struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
694         struct net *net = genl_info_net(info);
695
696         if (!info->attrs[TIPC_NLA_BEARER])
697                 return -EINVAL;
698
699         err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
700                                info->attrs[TIPC_NLA_BEARER],
701                                tipc_nl_bearer_policy);
702         if (err)
703                 return err;
704
705         if (!attrs[TIPC_NLA_BEARER_NAME])
706                 return -EINVAL;
707         name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
708
709         rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
710         if (!rep)
711                 return -ENOMEM;
712
713         msg.skb = rep;
714         msg.portid = info->snd_portid;
715         msg.seq = info->snd_seq;
716
717         rtnl_lock();
718         bearer = tipc_bearer_find(net, name);
719         if (!bearer) {
720                 err = -EINVAL;
721                 goto err_out;
722         }
723
724         err = __tipc_nl_add_bearer(&msg, bearer);
725         if (err)
726                 goto err_out;
727         rtnl_unlock();
728
729         return genlmsg_reply(rep, info);
730 err_out:
731         rtnl_unlock();
732         nlmsg_free(rep);
733
734         return err;
735 }
736
737 int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
738 {
739         int err;
740         char *name;
741         struct tipc_bearer *bearer;
742         struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
743         struct net *net = sock_net(skb->sk);
744
745         if (!info->attrs[TIPC_NLA_BEARER])
746                 return -EINVAL;
747
748         err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
749                                info->attrs[TIPC_NLA_BEARER],
750                                tipc_nl_bearer_policy);
751         if (err)
752                 return err;
753
754         if (!attrs[TIPC_NLA_BEARER_NAME])
755                 return -EINVAL;
756
757         name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
758
759         rtnl_lock();
760         bearer = tipc_bearer_find(net, name);
761         if (!bearer) {
762                 rtnl_unlock();
763                 return -EINVAL;
764         }
765
766         bearer_disable(net, bearer, false);
767         rtnl_unlock();
768
769         return 0;
770 }
771
772 int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
773 {
774         int err;
775         char *bearer;
776         struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
777         struct net *net = sock_net(skb->sk);
778         struct tipc_net *tn = net_generic(net, tipc_net_id);
779         u32 domain;
780         u32 prio;
781
782         prio = TIPC_MEDIA_LINK_PRI;
783         domain = tn->own_addr & TIPC_CLUSTER_MASK;
784
785         if (!info->attrs[TIPC_NLA_BEARER])
786                 return -EINVAL;
787
788         err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
789                                info->attrs[TIPC_NLA_BEARER],
790                                tipc_nl_bearer_policy);
791         if (err)
792                 return err;
793
794         if (!attrs[TIPC_NLA_BEARER_NAME])
795                 return -EINVAL;
796
797         bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
798
799         if (attrs[TIPC_NLA_BEARER_DOMAIN])
800                 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
801
802         if (attrs[TIPC_NLA_BEARER_PROP]) {
803                 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
804
805                 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
806                                               props);
807                 if (err)
808                         return err;
809
810                 if (props[TIPC_NLA_PROP_PRIO])
811                         prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
812         }
813
814         rtnl_lock();
815         err = tipc_enable_bearer(net, bearer, domain, prio);
816         if (err) {
817                 rtnl_unlock();
818                 return err;
819         }
820         rtnl_unlock();
821
822         return 0;
823 }
824
825 int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
826 {
827         int err;
828         char *name;
829         struct tipc_bearer *b;
830         struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
831         struct net *net = genl_info_net(info);
832
833         if (!info->attrs[TIPC_NLA_BEARER])
834                 return -EINVAL;
835
836         err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
837                                info->attrs[TIPC_NLA_BEARER],
838                                tipc_nl_bearer_policy);
839         if (err)
840                 return err;
841
842         if (!attrs[TIPC_NLA_BEARER_NAME])
843                 return -EINVAL;
844         name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
845
846         rtnl_lock();
847         b = tipc_bearer_find(net, name);
848         if (!b) {
849                 rtnl_unlock();
850                 return -EINVAL;
851         }
852
853         if (attrs[TIPC_NLA_BEARER_PROP]) {
854                 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
855
856                 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
857                                               props);
858                 if (err) {
859                         rtnl_unlock();
860                         return err;
861                 }
862
863                 if (props[TIPC_NLA_PROP_TOL])
864                         b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
865                 if (props[TIPC_NLA_PROP_PRIO])
866                         b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
867                 if (props[TIPC_NLA_PROP_WIN])
868                         b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
869         }
870         rtnl_unlock();
871
872         return 0;
873 }
874
875 static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
876                                struct tipc_media *media)
877 {
878         void *hdr;
879         struct nlattr *attrs;
880         struct nlattr *prop;
881
882         hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
883                           NLM_F_MULTI, TIPC_NL_MEDIA_GET);
884         if (!hdr)
885                 return -EMSGSIZE;
886
887         attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
888         if (!attrs)
889                 goto msg_full;
890
891         if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
892                 goto attr_msg_full;
893
894         prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
895         if (!prop)
896                 goto prop_msg_full;
897         if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
898                 goto prop_msg_full;
899         if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
900                 goto prop_msg_full;
901         if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
902                 goto prop_msg_full;
903
904         nla_nest_end(msg->skb, prop);
905         nla_nest_end(msg->skb, attrs);
906         genlmsg_end(msg->skb, hdr);
907
908         return 0;
909
910 prop_msg_full:
911         nla_nest_cancel(msg->skb, prop);
912 attr_msg_full:
913         nla_nest_cancel(msg->skb, attrs);
914 msg_full:
915         genlmsg_cancel(msg->skb, hdr);
916
917         return -EMSGSIZE;
918 }
919
920 int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
921 {
922         int err;
923         int i = cb->args[0];
924         struct tipc_nl_msg msg;
925
926         if (i == MAX_MEDIA)
927                 return 0;
928
929         msg.skb = skb;
930         msg.portid = NETLINK_CB(cb->skb).portid;
931         msg.seq = cb->nlh->nlmsg_seq;
932
933         rtnl_lock();
934         for (; media_info_array[i] != NULL; i++) {
935                 err = __tipc_nl_add_media(&msg, media_info_array[i]);
936                 if (err)
937                         break;
938         }
939         rtnl_unlock();
940
941         cb->args[0] = i;
942         return skb->len;
943 }
944
945 int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
946 {
947         int err;
948         char *name;
949         struct tipc_nl_msg msg;
950         struct tipc_media *media;
951         struct sk_buff *rep;
952         struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
953
954         if (!info->attrs[TIPC_NLA_MEDIA])
955                 return -EINVAL;
956
957         err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
958                                info->attrs[TIPC_NLA_MEDIA],
959                                tipc_nl_media_policy);
960         if (err)
961                 return err;
962
963         if (!attrs[TIPC_NLA_MEDIA_NAME])
964                 return -EINVAL;
965         name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
966
967         rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
968         if (!rep)
969                 return -ENOMEM;
970
971         msg.skb = rep;
972         msg.portid = info->snd_portid;
973         msg.seq = info->snd_seq;
974
975         rtnl_lock();
976         media = tipc_media_find(name);
977         if (!media) {
978                 err = -EINVAL;
979                 goto err_out;
980         }
981
982         err = __tipc_nl_add_media(&msg, media);
983         if (err)
984                 goto err_out;
985         rtnl_unlock();
986
987         return genlmsg_reply(rep, info);
988 err_out:
989         rtnl_unlock();
990         nlmsg_free(rep);
991
992         return err;
993 }
994
995 int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
996 {
997         int err;
998         char *name;
999         struct tipc_media *m;
1000         struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1001
1002         if (!info->attrs[TIPC_NLA_MEDIA])
1003                 return -EINVAL;
1004
1005         err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1006                                info->attrs[TIPC_NLA_MEDIA],
1007                                tipc_nl_media_policy);
1008
1009         if (!attrs[TIPC_NLA_MEDIA_NAME])
1010                 return -EINVAL;
1011         name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1012
1013         rtnl_lock();
1014         m = tipc_media_find(name);
1015         if (!m) {
1016                 rtnl_unlock();
1017                 return -EINVAL;
1018         }
1019
1020         if (attrs[TIPC_NLA_MEDIA_PROP]) {
1021                 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1022
1023                 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1024                                               props);
1025                 if (err) {
1026                         rtnl_unlock();
1027                         return err;
1028                 }
1029
1030                 if (props[TIPC_NLA_PROP_TOL])
1031                         m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1032                 if (props[TIPC_NLA_PROP_PRIO])
1033                         m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1034                 if (props[TIPC_NLA_PROP_WIN])
1035                         m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1036         }
1037         rtnl_unlock();
1038
1039         return 0;
1040 }