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" |
| 39 | #include "config.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 40 | #include "bearer.h" |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 41 | #include "link.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 42 | #include "discover.h" |
Ying Xue | 1da4656 | 2015-01-09 15:27:07 +0800 | [diff] [blame] | 43 | #include "bcast.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 44 | |
Patrick McHardy | a29a194 | 2013-04-17 06:18:28 +0000 | [diff] [blame] | 45 | #define MAX_ADDR_STR 60 |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 46 | |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 47 | static struct tipc_media * const media_info_array[] = { |
Jon Paul Maloy | 5702dba | 2013-12-10 20:45:39 -0800 | [diff] [blame] | 48 | ð_media_info, |
| 49 | #ifdef CONFIG_TIPC_MEDIA_IB |
| 50 | &ib_media_info, |
| 51 | #endif |
| 52 | NULL |
| 53 | }; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 54 | |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 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 | |
Richard Alpe | 46f15c6 | 2014-11-20 10:29:15 +0100 | [diff] [blame] | 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 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 72 | static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr, |
| 73 | bool shutting_down); |
Allan Stephens | 3a777ff | 2011-04-21 13:58:26 -0500 | [diff] [blame] | 74 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 75 | /** |
Allan Stephens | 5c216e1 | 2011-10-18 11:34:29 -0400 | [diff] [blame] | 76 | * tipc_media_find - locates specified media object by name |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 77 | */ |
Paul Gortmaker | 358a0d1 | 2011-12-29 20:19:42 -0500 | [diff] [blame] | 78 | struct tipc_media *tipc_media_find(const char *name) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 79 | { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 80 | u32 i; |
| 81 | |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 82 | for (i = 0; media_info_array[i] != NULL; i++) { |
| 83 | if (!strcmp(media_info_array[i]->name, name)) |
Jon Paul Maloy | 5702dba | 2013-12-10 20:45:39 -0800 | [diff] [blame] | 84 | break; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 85 | } |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 86 | return media_info_array[i]; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /** |
Allan Stephens | c79be45 | 2011-10-06 16:40:55 -0400 | [diff] [blame] | 90 | * media_find_id - locates specified media object by type identifier |
| 91 | */ |
Paul Gortmaker | 358a0d1 | 2011-12-29 20:19:42 -0500 | [diff] [blame] | 92 | static struct tipc_media *media_find_id(u8 type) |
Allan Stephens | c79be45 | 2011-10-06 16:40:55 -0400 | [diff] [blame] | 93 | { |
| 94 | u32 i; |
| 95 | |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 96 | for (i = 0; media_info_array[i] != NULL; i++) { |
| 97 | if (media_info_array[i]->type_id == type) |
Jon Paul Maloy | 5702dba | 2013-12-10 20:45:39 -0800 | [diff] [blame] | 98 | break; |
Allan Stephens | c79be45 | 2011-10-06 16:40:55 -0400 | [diff] [blame] | 99 | } |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 100 | return media_info_array[i]; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | /** |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 104 | * tipc_media_addr_printf - record media address in print buffer |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 105 | */ |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 106 | 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] | 107 | { |
Allan Stephens | c61b666 | 2011-10-07 11:31:49 -0400 | [diff] [blame] | 108 | char addr_str[MAX_ADDR_STR]; |
Paul Gortmaker | 358a0d1 | 2011-12-29 20:19:42 -0500 | [diff] [blame] | 109 | struct tipc_media *m_ptr; |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 110 | int ret; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 111 | |
Allan Stephens | 3d749a6 | 2011-10-07 15:19:11 -0400 | [diff] [blame] | 112 | m_ptr = media_find_id(a->media_id); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 113 | |
Allan Stephens | c61b666 | 2011-10-07 11:31:49 -0400 | [diff] [blame] | 114 | if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str))) |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 115 | ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str); |
Allan Stephens | c61b666 | 2011-10-07 11:31:49 -0400 | [diff] [blame] | 116 | else { |
Allan Stephens | c61b666 | 2011-10-07 11:31:49 -0400 | [diff] [blame] | 117 | u32 i; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 118 | |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 119 | ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id); |
Allan Stephens | 3d749a6 | 2011-10-07 15:19:11 -0400 | [diff] [blame] | 120 | for (i = 0; i < sizeof(a->value); i++) |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 121 | ret += tipc_snprintf(buf - ret, len + ret, |
| 122 | "-%02x", a->value[i]); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | |
| 126 | /** |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 127 | * tipc_media_get_names - record names of registered media in buffer |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 128 | */ |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 129 | struct sk_buff *tipc_media_get_names(void) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 130 | { |
| 131 | struct sk_buff *buf; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 132 | int i; |
| 133 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 134 | buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME)); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 135 | if (!buf) |
| 136 | return NULL; |
| 137 | |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 138 | for (i = 0; media_info_array[i] != NULL; i++) { |
Allan Stephens | a31abe8 | 2011-10-07 09:25:12 -0400 | [diff] [blame] | 139 | tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME, |
Jon Paul Maloy | ef72a7e | 2013-12-10 20:45:40 -0800 | [diff] [blame] | 140 | media_info_array[i]->name, |
| 141 | strlen(media_info_array[i]->name) + 1); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 142 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 143 | return buf; |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * bearer_name_validate - validate & (optionally) deconstruct bearer name |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 148 | * @name: ptr to bearer name string |
| 149 | * @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] | 150 | * |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 151 | * Returns 1 if bearer name is valid, otherwise 0. |
| 152 | */ |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 153 | static int bearer_name_validate(const char *name, |
Paul Gortmaker | f19765f | 2011-12-29 21:39:49 -0500 | [diff] [blame] | 154 | struct tipc_bearer_names *name_parts) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 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 */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 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 */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 170 | media_name = name_copy; |
Allan Stephens | 2db9983 | 2010-12-31 18:59:33 +0000 | [diff] [blame] | 171 | if_name = strchr(media_name, ':'); |
| 172 | if (if_name == NULL) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 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 */ |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 179 | if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) || |
Ying Xue | fc07393 | 2012-08-16 12:09:08 +0000 | [diff] [blame] | 180 | (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME)) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 181 | return 0; |
| 182 | |
| 183 | /* return bearer name components, if necessary */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 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 | /** |
Allan Stephens | 5c216e1 | 2011-10-18 11:34:29 -0400 | [diff] [blame] | 192 | * tipc_bearer_find - locates bearer object with matching bearer name |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 193 | */ |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 194 | struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 195 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 196 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 197 | struct tipc_bearer *b_ptr; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 198 | u32 i; |
| 199 | |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 200 | for (i = 0; i < MAX_BEARERS; i++) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 201 | b_ptr = rtnl_dereference(tn->bearer_list[i]); |
Ying Xue | f47de12 | 2014-03-27 12:54:34 +0800 | [diff] [blame] | 202 | if (b_ptr && (!strcmp(b_ptr->name, name))) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 203 | return b_ptr; |
| 204 | } |
Sam Ravnborg | 1fc54d8 | 2006-03-20 22:36:47 -0800 | [diff] [blame] | 205 | return NULL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 206 | } |
| 207 | |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 208 | 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] | 209 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 210 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 211 | struct tipc_bearer *b_ptr; |
| 212 | |
| 213 | rcu_read_lock(); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 214 | b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 215 | if (b_ptr) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 216 | tipc_bcbearer_sort(net, &b_ptr->nodes, dest, true); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 217 | tipc_disc_add_dest(b_ptr->link_req); |
| 218 | } |
| 219 | rcu_read_unlock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 220 | } |
| 221 | |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 222 | 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] | 223 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 224 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 225 | struct tipc_bearer *b_ptr; |
| 226 | |
| 227 | rcu_read_lock(); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 228 | b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 229 | if (b_ptr) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 230 | tipc_bcbearer_sort(net, &b_ptr->nodes, dest, false); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 231 | tipc_disc_remove_dest(b_ptr->link_req); |
| 232 | } |
| 233 | rcu_read_unlock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 234 | } |
| 235 | |
Allan Stephens | b274f4a | 2010-05-11 14:30:16 +0000 | [diff] [blame] | 236 | /** |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 237 | * tipc_enable_bearer - enable bearer with the given name |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 238 | */ |
Richard Alpe | 9ab1546 | 2015-02-09 09:50:05 +0100 | [diff] [blame^] | 239 | static int tipc_enable_bearer(struct net *net, const char *name, |
| 240 | u32 disc_domain, u32 priority) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 241 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 242 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 243 | struct tipc_bearer *b_ptr; |
Paul Gortmaker | 358a0d1 | 2011-12-29 20:19:42 -0500 | [diff] [blame] | 244 | struct tipc_media *m_ptr; |
Paul Gortmaker | f19765f | 2011-12-29 21:39:49 -0500 | [diff] [blame] | 245 | struct tipc_bearer_names b_names; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 246 | char addr_string[16]; |
| 247 | u32 bearer_id; |
| 248 | u32 with_this_prio; |
| 249 | u32 i; |
| 250 | int res = -EINVAL; |
| 251 | |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 252 | if (!tn->own_addr) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 253 | pr_warn("Bearer <%s> rejected, not supported in standalone mode\n", |
| 254 | name); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 255 | return -ENOPROTOOPT; |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 256 | } |
Paul Gortmaker | f19765f | 2011-12-29 21:39:49 -0500 | [diff] [blame] | 257 | if (!bearer_name_validate(name, &b_names)) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 258 | pr_warn("Bearer <%s> rejected, illegal name\n", name); |
Per Liden | 16cb4b3 | 2006-01-13 22:22:22 +0100 | [diff] [blame] | 259 | return -EINVAL; |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 260 | } |
Allan Stephens | 66e019a | 2011-04-20 16:24:07 -0500 | [diff] [blame] | 261 | if (tipc_addr_domain_valid(disc_domain) && |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 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; |
Allan Stephens | 66e019a | 2011-04-20 16:24:07 -0500 | [diff] [blame] | 265 | res = 0; /* accept any node in own cluster */ |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 266 | } else if (in_own_cluster_exact(net, disc_domain)) |
Allan Stephens | 66e019a | 2011-04-20 16:24:07 -0500 | [diff] [blame] | 267 | res = 0; /* accept specified node in own cluster */ |
| 268 | } |
| 269 | if (res) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 270 | pr_warn("Bearer <%s> rejected, illegal discovery domain\n", |
| 271 | name); |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 272 | return -EINVAL; |
| 273 | } |
Allan Stephens | 9efde4a | 2011-11-03 13:15:10 -0400 | [diff] [blame] | 274 | if ((priority > TIPC_MAX_LINK_PRI) && |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 275 | (priority != TIPC_MEDIA_LINK_PRI)) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 276 | pr_warn("Bearer <%s> rejected, illegal priority\n", name); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 277 | return -EINVAL; |
Allan Stephens | a10bd92 | 2006-06-25 23:52:17 -0700 | [diff] [blame] | 278 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 279 | |
Paul Gortmaker | f19765f | 2011-12-29 21:39:49 -0500 | [diff] [blame] | 280 | m_ptr = tipc_media_find(b_names.media_name); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 281 | if (!m_ptr) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 282 | pr_warn("Bearer <%s> rejected, media <%s> not registered\n", |
| 283 | name, b_names.media_name); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 284 | return -EINVAL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 285 | } |
Per Liden | 16cb4b3 | 2006-01-13 22:22:22 +0100 | [diff] [blame] | 286 | |
| 287 | if (priority == TIPC_MEDIA_LINK_PRI) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 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; ) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 294 | b_ptr = rtnl_dereference(tn->bearer_list[i]); |
Ying Xue | f47de12 | 2014-03-27 12:54:34 +0800 | [diff] [blame] | 295 | if (!b_ptr) { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 296 | bearer_id = i; |
| 297 | continue; |
| 298 | } |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 299 | if (!strcmp(name, b_ptr->name)) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 300 | pr_warn("Bearer <%s> rejected, already enabled\n", |
| 301 | name); |
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 | } |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 304 | if ((b_ptr->priority == priority) && |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 305 | (++with_this_prio > 2)) { |
| 306 | if (priority-- == 0) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 307 | pr_warn("Bearer <%s> rejected, duplicate priority\n", |
| 308 | name); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 309 | return -EINVAL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 310 | } |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 311 | pr_warn("Bearer <%s> priority adjustment required %u->%u\n", |
| 312 | name, priority + 1, priority); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 313 | goto restart; |
| 314 | } |
| 315 | } |
| 316 | if (bearer_id >= MAX_BEARERS) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 317 | pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n", |
| 318 | name, MAX_BEARERS); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 319 | return -EINVAL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 320 | } |
| 321 | |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 322 | b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 323 | if (!b_ptr) |
| 324 | return -ENOMEM; |
| 325 | |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 326 | strcpy(b_ptr->name, name); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 327 | b_ptr->media = m_ptr; |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 328 | res = m_ptr->enable_media(net, b_ptr); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 329 | if (res) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 330 | pr_warn("Bearer <%s> rejected, enable failure (%d)\n", |
| 331 | name, -res); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 332 | return -EINVAL; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | b_ptr->identity = bearer_id; |
Allan Stephens | 5c216e1 | 2011-10-18 11:34:29 -0400 | [diff] [blame] | 336 | b_ptr->tolerance = m_ptr->tolerance; |
| 337 | b_ptr->window = m_ptr->window; |
Erik Hugne | a21a584 | 2014-03-28 10:32:08 +0100 | [diff] [blame] | 338 | b_ptr->domain = disc_domain; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 339 | b_ptr->net_plane = bearer_id + 'A'; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 340 | b_ptr->priority = priority; |
Allan Stephens | 3a777ff | 2011-04-21 13:58:26 -0500 | [diff] [blame] | 341 | |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 342 | res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr); |
Allan Stephens | 3a777ff | 2011-04-21 13:58:26 -0500 | [diff] [blame] | 343 | if (res) { |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 344 | bearer_disable(net, b_ptr, false); |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 345 | pr_warn("Bearer <%s> rejected, discovery object creation failed\n", |
| 346 | name); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 347 | return -EINVAL; |
Allan Stephens | 3a777ff | 2011-04-21 13:58:26 -0500 | [diff] [blame] | 348 | } |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 349 | |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 350 | rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr); |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 351 | |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 352 | pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n", |
| 353 | name, |
| 354 | tipc_addr_string_fill(addr_string, disc_domain), priority); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 355 | return res; |
| 356 | } |
| 357 | |
| 358 | /** |
Erik Hugne | 512137e | 2013-12-06 10:08:00 -0500 | [diff] [blame] | 359 | * tipc_reset_bearer - Reset all links established over this bearer |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 360 | */ |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 361 | 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] | 362 | { |
Erik Hugne | 512137e | 2013-12-06 10:08:00 -0500 | [diff] [blame] | 363 | pr_info("Resetting bearer <%s>\n", b_ptr->name); |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 364 | tipc_link_reset_list(net, b_ptr->identity); |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 365 | tipc_disc_reset(net, b_ptr); |
Allan Stephens | 0e35fd5 | 2008-07-14 22:44:01 -0700 | [diff] [blame] | 366 | return 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | /** |
Paul Gortmaker | 617d3c7 | 2012-04-30 15:29:02 -0400 | [diff] [blame] | 370 | * bearer_disable |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 371 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 372 | * Note: This routine assumes caller holds RTNL lock. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 373 | */ |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 374 | static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr, |
| 375 | bool shutting_down) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 376 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 377 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 378 | u32 i; |
| 379 | |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 380 | pr_info("Disabling bearer <%s>\n", b_ptr->name); |
Ying Xue | 4babbaa | 2013-10-18 07:23:17 +0200 | [diff] [blame] | 381 | b_ptr->media->disable_media(b_ptr); |
Ying Xue | a830452 | 2014-02-13 17:29:17 -0500 | [diff] [blame] | 382 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 383 | tipc_link_delete_list(net, b_ptr->identity, shutting_down); |
Ying Xue | a830452 | 2014-02-13 17:29:17 -0500 | [diff] [blame] | 384 | if (b_ptr->link_req) |
| 385 | tipc_disc_delete(b_ptr->link_req); |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 386 | |
| 387 | for (i = 0; i < MAX_BEARERS; i++) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 388 | if (b_ptr == rtnl_dereference(tn->bearer_list[i])) { |
| 389 | RCU_INIT_POINTER(tn->bearer_list[i], NULL); |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 390 | break; |
| 391 | } |
| 392 | } |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 393 | kfree_rcu(b_ptr, rcu); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 394 | } |
| 395 | |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 396 | int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b) |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 397 | { |
| 398 | struct net_device *dev; |
| 399 | char *driver_name = strchr((const char *)b->name, ':') + 1; |
| 400 | |
| 401 | /* Find device with specified name */ |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 402 | dev = dev_get_by_name(net, driver_name); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 403 | if (!dev) |
| 404 | return -ENODEV; |
| 405 | |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 406 | /* Associate TIPC bearer with L2 bearer */ |
Ying Xue | 2231c5a | 2014-04-21 10:55:47 +0800 | [diff] [blame] | 407 | rcu_assign_pointer(b->media_ptr, dev); |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 408 | memset(&b->bcast_addr, 0, sizeof(b->bcast_addr)); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 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; |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 413 | b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 414 | rcu_assign_pointer(dev->tipc_ptr, b); |
| 415 | return 0; |
| 416 | } |
| 417 | |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 418 | /* tipc_disable_l2_media - detach TIPC bearer from an L2 interface |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 419 | * |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 420 | * Mark L2 bearer as inactive so that incoming buffers are thrown away, |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 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 | { |
Ying Xue | 2231c5a | 2014-04-21 10:55:47 +0800 | [diff] [blame] | 426 | struct net_device *dev; |
| 427 | |
| 428 | dev = (struct net_device *)rtnl_dereference(b->media_ptr); |
| 429 | RCU_INIT_POINTER(b->media_ptr, NULL); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 430 | RCU_INIT_POINTER(dev->tipc_ptr, NULL); |
Ying Xue | f1c8d8c | 2014-04-21 10:55:49 +0800 | [diff] [blame] | 431 | synchronize_net(); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 432 | dev_put(dev); |
| 433 | } |
| 434 | |
| 435 | /** |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 436 | * 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] | 437 | * @buf: the packet to be sent |
stephen hemminger | 963a1855 | 2014-01-12 12:48:00 -0800 | [diff] [blame] | 438 | * @b_ptr: the bearer through which the packet is to be sent |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 439 | * @dest: peer destination address |
| 440 | */ |
Ying Xue | 1da4656 | 2015-01-09 15:27:07 +0800 | [diff] [blame] | 441 | int tipc_l2_send_msg(struct net *net, struct sk_buff *buf, |
| 442 | struct tipc_bearer *b, struct tipc_media_addr *dest) |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 443 | { |
| 444 | struct sk_buff *clone; |
Ying Xue | 2231c5a | 2014-04-21 10:55:47 +0800 | [diff] [blame] | 445 | struct net_device *dev; |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 446 | int delta; |
Ying Xue | 2231c5a | 2014-04-21 10:55:47 +0800 | [diff] [blame] | 447 | |
| 448 | dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr); |
| 449 | if (!dev) |
| 450 | return 0; |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 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 | */ |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 478 | 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] | 479 | struct tipc_media_addr *dest) |
| 480 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 481 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 482 | struct tipc_bearer *b_ptr; |
| 483 | |
| 484 | rcu_read_lock(); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 485 | b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 486 | if (likely(b_ptr)) |
Ying Xue | 1da4656 | 2015-01-09 15:27:07 +0800 | [diff] [blame] | 487 | b_ptr->media->send_msg(net, buf, b_ptr, dest); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 488 | rcu_read_unlock(); |
Ying Xue | e4d050c | 2013-12-10 20:45:43 -0800 | [diff] [blame] | 489 | } |
| 490 | |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 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; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 506 | |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 507 | rcu_read_lock(); |
Ying Xue | ca07fb0 | 2014-04-21 10:55:43 +0800 | [diff] [blame] | 508 | b_ptr = rcu_dereference_rtnl(dev->tipc_ptr); |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 509 | if (likely(b_ptr)) { |
| 510 | if (likely(buf->pkt_type <= PACKET_BROADCAST)) { |
| 511 | buf->next = NULL; |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 512 | tipc_rcv(dev_net(dev), buf, b_ptr); |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 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 | { |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 535 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 536 | struct net *net = dev_net(dev); |
| 537 | struct tipc_bearer *b_ptr; |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 538 | |
Ying Xue | ca07fb0 | 2014-04-21 10:55:43 +0800 | [diff] [blame] | 539 | b_ptr = rtnl_dereference(dev->tipc_ptr); |
| 540 | if (!b_ptr) |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 541 | return NOTIFY_DONE; |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 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: |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 551 | tipc_reset_bearer(net, b_ptr); |
Erik Hugne | a21a584 | 2014-03-28 10:32:08 +0100 | [diff] [blame] | 552 | break; |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 553 | case NETDEV_CHANGEADDR: |
Jon Paul Maloy | 38504c2 | 2014-05-14 05:39:13 -0400 | [diff] [blame] | 554 | b_ptr->media->raw2addr(b_ptr, &b_ptr->addr, |
Erik Hugne | a21a584 | 2014-03-28 10:32:08 +0100 | [diff] [blame] | 555 | (char *)dev->dev_addr); |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 556 | tipc_reset_bearer(net, b_ptr); |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 557 | break; |
| 558 | case NETDEV_UNREGISTER: |
| 559 | case NETDEV_CHANGENAME: |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 560 | bearer_disable(dev_net(dev), b_ptr, false); |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 561 | break; |
| 562 | } |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 563 | return NOTIFY_OK; |
| 564 | } |
| 565 | |
| 566 | static struct packet_type tipc_packet_type __read_mostly = { |
Joe Perches | 184593c | 2014-03-12 10:04:20 -0700 | [diff] [blame] | 567 | .type = htons(ETH_P_TIPC), |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 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 | { |
Ying Xue | 970122f | 2014-02-20 11:32:50 +0800 | [diff] [blame] | 578 | int err; |
| 579 | |
| 580 | err = register_netdevice_notifier(¬ifier); |
| 581 | if (err) |
| 582 | return err; |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 583 | dev_add_pack(&tipc_packet_type); |
Ying Xue | 970122f | 2014-02-20 11:32:50 +0800 | [diff] [blame] | 584 | return 0; |
Ying Xue | 6e967ad | 2013-12-10 20:45:42 -0800 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | void tipc_bearer_cleanup(void) |
| 588 | { |
| 589 | unregister_netdevice_notifier(¬ifier); |
| 590 | dev_remove_pack(&tipc_packet_type); |
| 591 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 592 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 593 | void tipc_bearer_stop(struct net *net) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 594 | { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 595 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 596 | struct tipc_bearer *b_ptr; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 597 | u32 i; |
| 598 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 599 | for (i = 0; i < MAX_BEARERS; i++) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 600 | b_ptr = rtnl_dereference(tn->bearer_list[i]); |
Ying Xue | f47de12 | 2014-03-27 12:54:34 +0800 | [diff] [blame] | 601 | if (b_ptr) { |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 602 | bearer_disable(net, b_ptr, true); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 603 | tn->bearer_list[i] = NULL; |
Ying Xue | 3874ccb | 2014-03-27 12:54:33 +0800 | [diff] [blame] | 604 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 605 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 606 | } |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 607 | |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 608 | /* Caller should hold rtnl_lock to protect the bearer */ |
Richard Alpe | d818280 | 2014-11-24 11:10:29 +0100 | [diff] [blame] | 609 | static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg, |
| 610 | struct tipc_bearer *bearer) |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 611 | { |
| 612 | void *hdr; |
| 613 | struct nlattr *attrs; |
| 614 | struct nlattr *prop; |
| 615 | |
Richard Alpe | bfb3e5d | 2015-02-09 09:50:03 +0100 | [diff] [blame] | 616 | hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family, |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 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; |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 660 | struct net *net = sock_net(skb->sk); |
| 661 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 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++) { |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 672 | bearer = rtnl_dereference(tn->bearer_list[i]); |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 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]; |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 694 | struct net *net = genl_info_net(info); |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 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(); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 718 | bearer = tipc_bearer_find(net, name); |
Richard Alpe | 35b9dd7 | 2014-11-20 10:29:08 +0100 | [diff] [blame] | 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 | |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 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]; |
Richard Alpe | 9ab1546 | 2015-02-09 09:50:05 +0100 | [diff] [blame^] | 743 | struct net *net = sock_net(skb->sk); |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 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(); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 760 | bearer = tipc_bearer_find(net, name); |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 761 | if (!bearer) { |
| 762 | rtnl_unlock(); |
| 763 | return -EINVAL; |
| 764 | } |
| 765 | |
Ying Xue | f2f9800 | 2015-01-09 15:27:05 +0800 | [diff] [blame] | 766 | bearer_disable(net, bearer, false); |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 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]; |
Richard Alpe | 9ab1546 | 2015-02-09 09:50:05 +0100 | [diff] [blame^] | 777 | struct net *net = sock_net(skb->sk); |
| 778 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 779 | u32 domain; |
| 780 | u32 prio; |
| 781 | |
| 782 | prio = TIPC_MEDIA_LINK_PRI; |
Ying Xue | 3474753 | 2015-01-09 15:27:10 +0800 | [diff] [blame] | 783 | domain = tn->own_addr & TIPC_CLUSTER_MASK; |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 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(); |
Ying Xue | c93d3ba | 2015-01-09 15:27:04 +0800 | [diff] [blame] | 815 | err = tipc_enable_bearer(net, bearer, domain, prio); |
Richard Alpe | 0655f6a | 2014-11-20 10:29:07 +0100 | [diff] [blame] | 816 | if (err) { |
| 817 | rtnl_unlock(); |
| 818 | return err; |
| 819 | } |
| 820 | rtnl_unlock(); |
| 821 | |
| 822 | return 0; |
| 823 | } |
Richard Alpe | 315c00b | 2014-11-20 10:29:09 +0100 | [diff] [blame] | 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]; |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 831 | struct net *net = genl_info_net(info); |
Richard Alpe | 315c00b | 2014-11-20 10:29:09 +0100 | [diff] [blame] | 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(); |
Ying Xue | 7f9f95d | 2015-01-09 15:27:06 +0800 | [diff] [blame] | 847 | b = tipc_bearer_find(net, name); |
Richard Alpe | 315c00b | 2014-11-20 10:29:09 +0100 | [diff] [blame] | 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 | } |
Richard Alpe | 46f15c6 | 2014-11-20 10:29:15 +0100 | [diff] [blame] | 874 | |
Richard Alpe | d818280 | 2014-11-24 11:10:29 +0100 | [diff] [blame] | 875 | static int __tipc_nl_add_media(struct tipc_nl_msg *msg, |
| 876 | struct tipc_media *media) |
Richard Alpe | 46f15c6 | 2014-11-20 10:29:15 +0100 | [diff] [blame] | 877 | { |
| 878 | void *hdr; |
| 879 | struct nlattr *attrs; |
| 880 | struct nlattr *prop; |
| 881 | |
Richard Alpe | bfb3e5d | 2015-02-09 09:50:03 +0100 | [diff] [blame] | 882 | hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family, |
Richard Alpe | 46f15c6 | 2014-11-20 10:29:15 +0100 | [diff] [blame] | 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 | } |
Richard Alpe | 1e55417 | 2014-11-20 10:29:16 +0100 | [diff] [blame] | 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 | } |