blob: 6b2faa57a3947b16490df59f15d1d8aed63479b6 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/bearer.c: TIPC bearer code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 1996-2006, Ericsson AB
Allan Stephens2d627b92011-01-07 13:00:11 -05005 * Copyright (c) 2004-2006, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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 Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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 Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "bearer.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "discover.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42#define MAX_ADDR_STR 32
43
Paul Gortmaker358a0d12011-12-29 20:19:42 -050044static struct tipc_media *media_list[MAX_MEDIA];
Allan Stephense3ec9c72010-12-31 18:59:34 +000045static u32 media_count;
Per Lidenb97bf3f2006-01-02 19:04:38 +010046
Allan Stephens2d627b92011-01-07 13:00:11 -050047struct tipc_bearer tipc_bearers[MAX_BEARERS];
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Allan Stephens3a777ff2011-04-21 13:58:26 -050049static void bearer_disable(struct tipc_bearer *b_ptr);
50
Per Lidenb97bf3f2006-01-02 19:04:38 +010051/**
52 * media_name_valid - validate media name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090053 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010054 * Returns 1 if media name is valid, otherwise 0.
55 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010056static int media_name_valid(const char *name)
57{
58 u32 len;
59
60 len = strlen(name);
61 if ((len + 1) > TIPC_MAX_MEDIA_NAME)
62 return 0;
Ying Xuefc073932012-08-16 12:09:08 +000063 return 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +010064}
65
66/**
Allan Stephens5c216e12011-10-18 11:34:29 -040067 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050069struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010070{
Per Lidenb97bf3f2006-01-02 19:04:38 +010071 u32 i;
72
Allan Stephensa31abe82011-10-07 09:25:12 -040073 for (i = 0; i < media_count; i++) {
74 if (!strcmp(media_list[i]->name, name))
75 return media_list[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010076 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -080077 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010078}
79
80/**
Allan Stephensc79be452011-10-06 16:40:55 -040081 * media_find_id - locates specified media object by type identifier
82 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050083static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040084{
85 u32 i;
86
87 for (i = 0; i < media_count; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -040088 if (media_list[i]->type_id == type)
89 return media_list[i];
Allan Stephensc79be452011-10-06 16:40:55 -040090 }
91 return NULL;
92}
93
94/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010095 * tipc_register_media - register a media type
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090096 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010097 * Bearers for this media type must be activated separately at a later stage.
98 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050099int tipc_register_media(struct tipc_media *m_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100{
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101 int res = -EINVAL;
102
Per Liden4323add2006-01-18 00:38:21 +0100103 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104
Allan Stephens6c349212011-10-07 09:54:44 -0400105 if (!media_name_valid(m_ptr->name))
Neil Hormand0021b22010-03-03 08:31:23 +0000106 goto exit;
Allan Stephens3d749a62011-10-07 15:19:11 -0400107 if ((m_ptr->bcast_addr.media_id != m_ptr->type_id) ||
108 !m_ptr->bcast_addr.broadcast)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400110 if (m_ptr->priority > TIPC_MAX_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111 goto exit;
Allan Stephens706767d2011-10-06 15:28:44 -0400112 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
Allan Stephens6c349212011-10-07 09:54:44 -0400113 (m_ptr->tolerance > TIPC_MAX_LINK_TOL))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400115 if (media_count >= MAX_MEDIA)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 goto exit;
Allan Stephens5c216e12011-10-18 11:34:29 -0400117 if (tipc_media_find(m_ptr->name) || media_find_id(m_ptr->type_id))
Allan Stephensc79be452011-10-06 16:40:55 -0400118 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119
Allan Stephensa31abe82011-10-07 09:25:12 -0400120 media_list[media_count] = m_ptr;
Allan Stephensc79be452011-10-06 16:40:55 -0400121 media_count++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 res = 0;
123exit:
Per Liden4323add2006-01-18 00:38:21 +0100124 write_unlock_bh(&tipc_net_lock);
Allan Stephens6c349212011-10-07 09:54:44 -0400125 if (res)
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400126 pr_warn("Media <%s> registration error\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 return res;
128}
129
130/**
Per Liden4323add2006-01-18 00:38:21 +0100131 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400133void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134{
Allan Stephensc61b6662011-10-07 11:31:49 -0400135 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500136 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400137 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138
Allan Stephens3d749a62011-10-07 15:19:11 -0400139 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140
Allan Stephensc61b6662011-10-07 11:31:49 -0400141 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400142 ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400143 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400144 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145
Erik Hugnedc1aed32012-06-29 00:50:23 -0400146 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400147 for (i = 0; i < sizeof(a->value); i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400148 ret += tipc_snprintf(buf - ret, len + ret,
149 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 }
151}
152
153/**
Per Liden4323add2006-01-18 00:38:21 +0100154 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155 */
Per Liden4323add2006-01-18 00:38:21 +0100156struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157{
158 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159 int i;
160
Per Liden4323add2006-01-18 00:38:21 +0100161 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 if (!buf)
163 return NULL;
164
Per Liden4323add2006-01-18 00:38:21 +0100165 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400166 for (i = 0; i < media_count; i++) {
167 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
168 media_list[i]->name,
169 strlen(media_list[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 }
Per Liden4323add2006-01-18 00:38:21 +0100171 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172 return buf;
173}
174
175/**
176 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000177 * @name: ptr to bearer name string
178 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900179 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 * Returns 1 if bearer name is valid, otherwise 0.
181 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900182static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500183 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184{
185 char name_copy[TIPC_MAX_BEARER_NAME];
186 char *media_name;
187 char *if_name;
188 u32 media_len;
189 u32 if_len;
190
191 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
193 /* need above in case non-Posix strncpy() doesn't pad with nulls */
194 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
195 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
196 return 0;
197
198 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000200 if_name = strchr(media_name, ':');
201 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 return 0;
203 *(if_name++) = 0;
204 media_len = if_name - media_name;
205 if_len = strlen(if_name) + 1;
206
207 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900208 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000209 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100210 return 0;
211
212 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 if (name_parts) {
214 strcpy(name_parts->media_name, media_name);
215 strcpy(name_parts->if_name, if_name);
216 }
217 return 1;
218}
219
220/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400221 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 */
Allan Stephens5c216e12011-10-18 11:34:29 -0400223struct tipc_bearer *tipc_bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224{
Allan Stephens2d627b92011-01-07 13:00:11 -0500225 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 u32 i;
227
Per Liden4323add2006-01-18 00:38:21 +0100228 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500229 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 return b_ptr;
231 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800232 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233}
234
235/**
Per Liden4323add2006-01-18 00:38:21 +0100236 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500238struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239{
Allan Stephens2d627b92011-01-07 13:00:11 -0500240 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 char *b_if_name;
242 u32 i;
243
Per Liden4323add2006-01-18 00:38:21 +0100244 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 if (!b_ptr->active)
246 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500247 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100248 if (!strcmp(b_if_name, if_name))
249 return b_ptr;
250 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800251 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252}
253
254/**
Per Liden4323add2006-01-18 00:38:21 +0100255 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 */
Per Liden4323add2006-01-18 00:38:21 +0100257struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258{
259 struct sk_buff *buf;
Allan Stephens2d627b92011-01-07 13:00:11 -0500260 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 int i, j;
262
Per Liden4323add2006-01-18 00:38:21 +0100263 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264 if (!buf)
265 return NULL;
266
Per Liden4323add2006-01-18 00:38:21 +0100267 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400268 for (i = 0; i < media_count; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100270 b_ptr = &tipc_bearers[j];
Allan Stephensa31abe82011-10-07 09:25:12 -0400271 if (b_ptr->active && (b_ptr->media == media_list[i])) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900272 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500273 b_ptr->name,
274 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 }
276 }
277 }
Per Liden4323add2006-01-18 00:38:21 +0100278 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 return buf;
280}
281
Allan Stephens2d627b92011-01-07 13:00:11 -0500282void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283{
Per Liden4323add2006-01-18 00:38:21 +0100284 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100285 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500286 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287}
288
Allan Stephens2d627b92011-01-07 13:00:11 -0500289void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290{
Per Liden4323add2006-01-18 00:38:21 +0100291 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100292 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500293 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294}
295
296/*
297 * bearer_push(): Resolve bearer congestion. Force the waiting
298 * links to push out their unsent packets, one packet per link
299 * per iteration, until all packets are gone or congestion reoccurs.
Per Liden4323add2006-01-18 00:38:21 +0100300 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 * bearer.lock must be taken before calling
302 * Returns binary true(1) ore false(0)
303 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500304static int bearer_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305{
Allan Stephens0e35fd52008-07-14 22:44:01 -0700306 u32 res = 0;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500307 struct tipc_link *ln, *tln;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308
Allan Stephens2d627b92011-01-07 13:00:11 -0500309 if (b_ptr->blocked)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 return 0;
311
312 while (!list_empty(&b_ptr->cong_links) && (res != PUSH_FAILED)) {
313 list_for_each_entry_safe(ln, tln, &b_ptr->cong_links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100314 res = tipc_link_push_packet(ln);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 if (res == PUSH_FAILED)
316 break;
317 if (res == PUSH_FINISHED)
318 list_move_tail(&ln->link_list, &b_ptr->links);
319 }
320 }
321 return list_empty(&b_ptr->cong_links);
322}
323
Allan Stephens2d627b92011-01-07 13:00:11 -0500324void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325{
Allan Stephens2d627b92011-01-07 13:00:11 -0500326 spin_lock_bh(&b_ptr->lock);
Allan Stephens23f0ff92011-04-07 11:25:26 -0400327 bearer_push(b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500328 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329}
330
331
332/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900333 * Interrupt enabling new requests after bearer congestion or blocking:
334 * See bearer_send().
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500336void tipc_continue(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337{
Allan Stephens2d627b92011-01-07 13:00:11 -0500338 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 if (!list_empty(&b_ptr->cong_links))
Per Liden4323add2006-01-18 00:38:21 +0100340 tipc_k_signal((Handler)tipc_bearer_lock_push, (unsigned long)b_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500341 b_ptr->blocked = 0;
342 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343}
344
345/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900346 * Schedule link for sending of messages after the bearer
347 * has been deblocked by 'continue()'. This method is called
348 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100349 * the bearer is congested. 'tipc_net_lock' is in read_lock here
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 * bearer.lock is busy
351 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500352static void tipc_bearer_schedule_unlocked(struct tipc_bearer *b_ptr,
353 struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354{
355 list_move_tail(&l_ptr->link_list, &b_ptr->cong_links);
356}
357
358/*
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900359 * Schedule link for sending of messages after the bearer
360 * has been deblocked by 'continue()'. This method is called
361 * when somebody tries to send a message via this link while
Per Liden4323add2006-01-18 00:38:21 +0100362 * the bearer is congested. 'tipc_net_lock' is in read_lock here,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100363 * bearer.lock is free
364 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500365void tipc_bearer_schedule(struct tipc_bearer *b_ptr, struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366{
Allan Stephens2d627b92011-01-07 13:00:11 -0500367 spin_lock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100368 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Allan Stephens2d627b92011-01-07 13:00:11 -0500369 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370}
371
372
373/*
Per Liden4323add2006-01-18 00:38:21 +0100374 * tipc_bearer_resolve_congestion(): Check if there is bearer congestion,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100375 * and if there is, try to resolve it before returning.
Per Liden4323add2006-01-18 00:38:21 +0100376 * 'tipc_net_lock' is read_locked when this function is called
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500378int tipc_bearer_resolve_congestion(struct tipc_bearer *b_ptr,
379 struct tipc_link *l_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100380{
381 int res = 1;
382
383 if (list_empty(&b_ptr->cong_links))
384 return 1;
Allan Stephens2d627b92011-01-07 13:00:11 -0500385 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100386 if (!bearer_push(b_ptr)) {
Per Liden4323add2006-01-18 00:38:21 +0100387 tipc_bearer_schedule_unlocked(b_ptr, l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 res = 0;
389 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500390 spin_unlock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391 return res;
392}
393
Allan Stephensb274f4a2010-05-11 14:30:16 +0000394/**
395 * tipc_bearer_congested - determines if bearer is currently congested
396 */
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500397int tipc_bearer_congested(struct tipc_bearer *b_ptr, struct tipc_link *l_ptr)
Allan Stephensb274f4a2010-05-11 14:30:16 +0000398{
Allan Stephens2d627b92011-01-07 13:00:11 -0500399 if (unlikely(b_ptr->blocked))
Allan Stephensb274f4a2010-05-11 14:30:16 +0000400 return 1;
401 if (likely(list_empty(&b_ptr->cong_links)))
402 return 0;
403 return !tipc_bearer_resolve_congestion(b_ptr, l_ptr);
404}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405
406/**
407 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900408 */
Allan Stephens50d3e632011-02-28 14:56:15 -0500409int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410{
Allan Stephens2d627b92011-01-07 13:00:11 -0500411 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500412 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500413 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414 char addr_string[16];
415 u32 bearer_id;
416 u32 with_this_prio;
417 u32 i;
418 int res = -EINVAL;
419
Allan Stephensb58343f2011-11-08 13:48:28 -0500420 if (!tipc_own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400421 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
422 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700424 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500425 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400426 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100427 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700428 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500429 if (tipc_addr_domain_valid(disc_domain) &&
430 (disc_domain != tipc_own_addr)) {
431 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
432 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
433 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400434 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500435 res = 0; /* accept specified node in own cluster */
436 }
437 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400438 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
439 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700440 return -EINVAL;
441 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400442 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700443 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400444 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700446 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447
Per Liden4323add2006-01-18 00:38:21 +0100448 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100449
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500450 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100451 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400452 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
453 name, b_names.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500454 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455 }
Per Liden16cb4b32006-01-13 22:22:22 +0100456
457 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100458 priority = m_ptr->priority;
459
460restart:
461 bearer_id = MAX_BEARERS;
462 with_this_prio = 1;
463 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100464 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465 bearer_id = i;
466 continue;
467 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500468 if (!strcmp(name, tipc_bearers[i].name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400469 pr_warn("Bearer <%s> rejected, already enabled\n",
470 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500471 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472 }
Per Liden4323add2006-01-18 00:38:21 +0100473 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100474 (++with_this_prio > 2)) {
475 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400476 pr_warn("Bearer <%s> rejected, duplicate priority\n",
477 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500478 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100479 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400480 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
481 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482 goto restart;
483 }
484 }
485 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400486 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
487 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500488 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100489 }
490
Per Liden4323add2006-01-18 00:38:21 +0100491 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500492 strcpy(b_ptr->name, name);
493 res = m_ptr->enable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400495 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
496 name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500497 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100498 }
499
500 b_ptr->identity = bearer_id;
501 b_ptr->media = m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400502 b_ptr->tolerance = m_ptr->tolerance;
503 b_ptr->window = m_ptr->window;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 b_ptr->net_plane = bearer_id + 'A';
505 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506 b_ptr->priority = priority;
507 INIT_LIST_HEAD(&b_ptr->cong_links);
508 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500509 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500510
511 res = tipc_disc_create(b_ptr, &m_ptr->bcast_addr, disc_domain);
512 if (res) {
513 bearer_disable(b_ptr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400514 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
515 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500516 goto exit;
517 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400518 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
519 name,
520 tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500521exit:
Per Liden4323add2006-01-18 00:38:21 +0100522 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 return res;
524}
525
526/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000527 * tipc_block_bearer - Block the bearer with the given name, and reset all its links
Per Lidenb97bf3f2006-01-02 19:04:38 +0100528 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100529int tipc_block_bearer(const char *name)
530{
Allan Stephens2d627b92011-01-07 13:00:11 -0500531 struct tipc_bearer *b_ptr = NULL;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500532 struct tipc_link *l_ptr;
533 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534
Per Liden4323add2006-01-18 00:38:21 +0100535 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400536 b_ptr = tipc_bearer_find(name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537 if (!b_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400538 pr_warn("Attempt to block unknown bearer <%s>\n", name);
Per Liden4323add2006-01-18 00:38:21 +0100539 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540 return -EINVAL;
541 }
542
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400543 pr_info("Blocking bearer <%s>\n", name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500544 spin_lock_bh(&b_ptr->lock);
545 b_ptr->blocked = 1;
Allan Stephens4b3743e2011-05-26 13:59:17 -0400546 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100547 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700548 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549
550 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100551 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 spin_unlock_bh(&n_ptr->lock);
553 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500554 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100555 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700556 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100557}
558
559/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400560 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900561 *
Per Liden4323add2006-01-18 00:38:21 +0100562 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100563 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500564static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100565{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500566 struct tipc_link *l_ptr;
567 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100568
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400569 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500570 spin_lock_bh(&b_ptr->lock);
Allan Stephens2d627b92011-01-07 13:00:11 -0500571 b_ptr->blocked = 1;
572 b_ptr->media->disable_bearer(b_ptr);
Allan Stephens4b3743e2011-05-26 13:59:17 -0400573 list_splice_init(&b_ptr->cong_links, &b_ptr->links);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100574 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100575 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100576 }
Allan Stephens3a777ff2011-04-21 13:58:26 -0500577 if (b_ptr->link_req)
578 tipc_disc_delete(b_ptr->link_req);
Allan Stephens2d627b92011-01-07 13:00:11 -0500579 spin_unlock_bh(&b_ptr->lock);
580 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100581}
582
583int tipc_disable_bearer(const char *name)
584{
Allan Stephens2d627b92011-01-07 13:00:11 -0500585 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100586 int res;
587
Per Liden4323add2006-01-18 00:38:21 +0100588 write_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400589 b_ptr = tipc_bearer_find(name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000590 if (b_ptr == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400591 pr_warn("Attempt to disable unknown bearer <%s>\n", name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000592 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000593 } else {
594 bearer_disable(b_ptr);
595 res = 0;
596 }
Per Liden4323add2006-01-18 00:38:21 +0100597 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 return res;
599}
600
601
602
Per Liden4323add2006-01-18 00:38:21 +0100603void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604{
605 u32 i;
606
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100608 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000609 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100610 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 media_count = 0;
612}