Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * net/tipc/net.c: TIPC network routing code |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 3 | * |
Jon Paul Maloy | 5a37907 | 2014-06-25 20:41:36 -0500 | [diff] [blame] | 4 | * Copyright (c) 1995-2006, 2014, Ericsson AB |
Allan Stephens | 9df3b7e | 2011-02-24 13:20:20 -0500 | [diff] [blame] | 5 | * Copyright (c) 2005, 2010-2011, Wind River Systems |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions are met: |
| 10 | * |
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. |
| 19 | * |
| 20 | * Alternatively, this software may be distributed under the terms of the |
| 21 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 22 | * Software Foundation. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 23 | * |
| 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 28 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 29 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 30 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 31 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 32 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 33 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 34 | * POSSIBILITY OF SUCH DAMAGE. |
| 35 | */ |
| 36 | |
| 37 | #include "core.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 38 | #include "net.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 39 | #include "name_distr.h" |
| 40 | #include "subscr.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 41 | #include "port.h" |
Jon Paul Maloy | 9816f06 | 2014-05-14 05:39:15 -0400 | [diff] [blame] | 42 | #include "socket.h" |
Allan Stephens | 672d99e | 2011-02-25 18:42:52 -0500 | [diff] [blame] | 43 | #include "node.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 44 | #include "config.h" |
| 45 | |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 46 | /* |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 47 | * The TIPC locking policy is designed to ensure a very fine locking |
| 48 | * granularity, permitting complete parallel access to individual |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 49 | * port and node/link instances. The code consists of four major |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 50 | * locking domains, each protected with their own disjunct set of locks. |
| 51 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 52 | * 1: The bearer level. |
| 53 | * RTNL lock is used to serialize the process of configuring bearer |
| 54 | * on update side, and RCU lock is applied on read side to make |
| 55 | * bearer instance valid on both paths of message transmission and |
| 56 | * reception. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 57 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 58 | * 2: The node and link level. |
| 59 | * All node instances are saved into two tipc_node_list and node_htable |
| 60 | * lists. The two lists are protected by node_list_lock on write side, |
| 61 | * and they are guarded with RCU lock on read side. Especially node |
| 62 | * instance is destroyed only when TIPC module is removed, and we can |
| 63 | * confirm that there has no any user who is accessing the node at the |
| 64 | * moment. Therefore, Except for iterating the two lists within RCU |
| 65 | * protection, it's no needed to hold RCU that we access node instance |
| 66 | * in other places. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 67 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 68 | * In addition, all members in node structure including link instances |
| 69 | * are protected by node spin lock. |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 70 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 71 | * 3: The transport level of the protocol. |
| 72 | * This consists of the structures port, (and its user level |
| 73 | * representations, such as user_port and tipc_sock), reference and |
| 74 | * tipc_user (port.c, reg.c, socket.c). |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 75 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 76 | * This layer has four different locks: |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 77 | * - The tipc_port spin_lock. This is protecting each port instance |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 78 | * from parallel data access and removal. Since we can not place |
| 79 | * this lock in the port itself, it has been placed in the |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 80 | * corresponding reference table entry, which has the same life |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 81 | * cycle as the module. This entry is difficult to access from |
| 82 | * outside the TIPC core, however, so a pointer to the lock has |
| 83 | * been added in the port instance, -to be used for unlocking |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 84 | * only. |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 85 | * - A read/write lock to protect the reference table itself (teg.c). |
| 86 | * (Nobody is using read-only access to this, so it can just as |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 87 | * well be changed to a spin_lock) |
| 88 | * - A spin lock to protect the registry of kernel/driver users (reg.c) |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 89 | * - A global spin_lock (tipc_port_lock), which only task is to ensure |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 90 | * consistency where more than one port is involved in an operation, |
| 91 | * i.e., whe a port is part of a linked list of ports. |
| 92 | * There are two such lists; 'port_list', which is used for management, |
| 93 | * and 'wait_list', which is used to queue ports during congestion. |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 94 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 95 | * 4: The name table (name_table.c, name_distr.c, subscription.c) |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 96 | * - There is one big read/write-lock (tipc_nametbl_lock) protecting the |
| 97 | * overall name table structure. Nothing must be added/removed to |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 98 | * this structure without holding write access to it. |
| 99 | * - There is one local spin_lock per sub_sequence, which can be seen |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 100 | * as a sub-domain to the tipc_nametbl_lock domain. It is used only |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 101 | * for translation operations, and is needed because a translation |
| 102 | * steps the root of the 'publication' linked list between each lookup. |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 103 | * This is always used within the scope of a tipc_nametbl_lock(read). |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 104 | * - A local spin_lock protecting the queue of subscriber events. |
| 105 | */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 106 | |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 107 | int tipc_net_start(u32 addr) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 108 | { |
| 109 | char addr_string[16]; |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 110 | int res; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 111 | |
Allan Stephens | 0319437 | 2008-05-21 14:55:04 -0700 | [diff] [blame] | 112 | tipc_own_addr = addr; |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 113 | tipc_named_reinit(); |
Jon Paul Maloy | 5a9ee0be | 2014-08-22 18:09:14 -0400 | [diff] [blame^] | 114 | tipc_sk_reinit(); |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 115 | res = tipc_bclink_init(); |
| 116 | if (res) |
| 117 | return res; |
| 118 | |
Erik Hugne | a5e7ac5 | 2014-04-03 08:28:01 +0200 | [diff] [blame] | 119 | tipc_nametbl_publish(TIPC_CFG_SRV, tipc_own_addr, tipc_own_addr, |
| 120 | TIPC_ZONE_SCOPE, 0, tipc_own_addr); |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 121 | |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 122 | pr_info("Started in network mode\n"); |
| 123 | pr_info("Own node address %s, network identity %u\n", |
| 124 | tipc_addr_string_fill(addr_string, tipc_own_addr), tipc_net_id); |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 125 | return 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 126 | } |
| 127 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 128 | void tipc_net_stop(void) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 129 | { |
Allan Stephens | b58343f | 2011-11-08 13:48:28 -0500 | [diff] [blame] | 130 | if (!tipc_own_addr) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 131 | return; |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 132 | |
Erik Hugne | a5e7ac5 | 2014-04-03 08:28:01 +0200 | [diff] [blame] | 133 | tipc_nametbl_withdraw(TIPC_CFG_SRV, tipc_own_addr, 0, tipc_own_addr); |
Ying Xue | f97e455 | 2014-04-21 10:55:44 +0800 | [diff] [blame] | 134 | rtnl_lock(); |
Allan Stephens | 97f1b62 | 2011-10-20 09:48:05 -0400 | [diff] [blame] | 135 | tipc_bearer_stop(); |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 136 | tipc_bclink_stop(); |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 137 | tipc_node_stop(); |
Ying Xue | f97e455 | 2014-04-21 10:55:44 +0800 | [diff] [blame] | 138 | rtnl_unlock(); |
Ying Xue | 46651c5 | 2014-03-27 12:54:36 +0800 | [diff] [blame] | 139 | |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 140 | pr_info("Left network mode\n"); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 141 | } |