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