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