Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * net/tipc/bcast.c: TIPC broadcast code |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 3 | * |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 4 | * Copyright (c) 2004-2006, 2014, Ericsson AB |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 5 | * Copyright (c) 2004, Intel Corporation. |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 6 | * Copyright (c) 2005, 2010-2011, Wind River Systems |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 7 | * All rights reserved. |
| 8 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 9 | * Redistribution and use in source and binary forms, with or without |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 10 | * modification, are permitted provided that the following conditions are met: |
| 11 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in the |
| 16 | * documentation and/or other materials provided with the distribution. |
| 17 | * 3. Neither the names of the copyright holders nor the names of its |
| 18 | * contributors may be used to endorse or promote products derived from |
| 19 | * this software without specific prior written permission. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 20 | * |
Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 21 | * Alternatively, this software may be distributed under the terms of the |
| 22 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 23 | * Software Foundation. |
| 24 | * |
| 25 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 26 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 27 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 28 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 29 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 30 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 31 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 32 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 33 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 34 | * 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] | 35 | * POSSIBILITY OF SUCH DAMAGE. |
| 36 | */ |
| 37 | |
| 38 | #include "core.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 39 | #include "link.h" |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 40 | #include "socket.h" |
| 41 | #include "msg.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 42 | #include "bcast.h" |
Allan Stephens | 9f6bdcd4 | 2011-04-07 14:57:53 -0400 | [diff] [blame] | 43 | #include "name_distr.h" |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 44 | |
Ying Xue | 987b58b | 2014-03-27 12:54:35 +0800 | [diff] [blame] | 45 | #define MAX_PKT_DEFAULT_MCAST 1500 /* bcast link max packet size (fixed) */ |
| 46 | #define BCLINK_WIN_DEFAULT 20 /* bcast link window size (default) */ |
| 47 | #define BCBEARER MAX_BEARERS |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 48 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 49 | /** |
Paul Gortmaker | 7f9ab6a | 2011-12-29 20:55:27 -0500 | [diff] [blame] | 50 | * struct tipc_bcbearer_pair - a pair of bearers used by broadcast link |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 51 | * @primary: pointer to primary bearer |
| 52 | * @secondary: pointer to secondary bearer |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 53 | * |
| 54 | * Bearers must have same priority and same set of reachable destinations |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 55 | * to be paired. |
| 56 | */ |
| 57 | |
Paul Gortmaker | 7f9ab6a | 2011-12-29 20:55:27 -0500 | [diff] [blame] | 58 | struct tipc_bcbearer_pair { |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 59 | struct tipc_bearer *primary; |
| 60 | struct tipc_bearer *secondary; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | /** |
Paul Gortmaker | 7f9ab6a | 2011-12-29 20:55:27 -0500 | [diff] [blame] | 64 | * struct tipc_bcbearer - bearer used by broadcast link |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 65 | * @bearer: (non-standard) broadcast bearer structure |
| 66 | * @media: (non-standard) broadcast media structure |
| 67 | * @bpairs: array of bearer pairs |
Allan Stephens | 65f51ef | 2006-06-25 23:53:20 -0700 | [diff] [blame] | 68 | * @bpairs_temp: temporary array of bearer pairs used by tipc_bcbearer_sort() |
| 69 | * @remains: temporary node map used by tipc_bcbearer_send() |
| 70 | * @remains_new: temporary node map used tipc_bcbearer_send() |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 71 | * |
Allan Stephens | 65f51ef | 2006-06-25 23:53:20 -0700 | [diff] [blame] | 72 | * Note: The fields labelled "temporary" are incorporated into the bearer |
| 73 | * to avoid consuming potentially limited stack space through the use of |
| 74 | * large local variables within multicast routines. Concurrent access is |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 75 | * prevented through use of the spinlock "bclink_lock". |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 76 | */ |
Paul Gortmaker | 7f9ab6a | 2011-12-29 20:55:27 -0500 | [diff] [blame] | 77 | struct tipc_bcbearer { |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 78 | struct tipc_bearer bearer; |
Paul Gortmaker | 358a0d1 | 2011-12-29 20:19:42 -0500 | [diff] [blame] | 79 | struct tipc_media media; |
Paul Gortmaker | 7f9ab6a | 2011-12-29 20:55:27 -0500 | [diff] [blame] | 80 | struct tipc_bcbearer_pair bpairs[MAX_BEARERS]; |
| 81 | struct tipc_bcbearer_pair bpairs_temp[TIPC_MAX_LINK_PRI + 1]; |
David S. Miller | 6c00055 | 2008-09-02 23:38:32 -0700 | [diff] [blame] | 82 | struct tipc_node_map remains; |
| 83 | struct tipc_node_map remains_new; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | /** |
Paul Gortmaker | 6765fd6 | 2011-12-29 20:52:18 -0500 | [diff] [blame] | 87 | * struct tipc_bclink - link used for broadcast messages |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 88 | * @lock: spinlock governing access to structure |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 89 | * @link: (non-standard) broadcast link structure |
| 90 | * @node: (non-standard) node structure representing b'cast link's peer node |
Ying Xue | 3f5a12b | 2014-05-05 08:56:17 +0800 | [diff] [blame] | 91 | * @flags: represent bclink states |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 92 | * @bcast_nodes: map of broadcast-capable nodes |
Allan Stephens | 01d83ed | 2011-01-18 13:53:16 -0500 | [diff] [blame] | 93 | * @retransmit_to: node that most recently requested a retransmit |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 94 | * |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 95 | * Handles sequence numbering, fragmentation, bundling, etc. |
| 96 | */ |
Paul Gortmaker | 6765fd6 | 2011-12-29 20:52:18 -0500 | [diff] [blame] | 97 | struct tipc_bclink { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 98 | spinlock_t lock; |
Paul Gortmaker | a18c4bc | 2011-12-29 20:58:42 -0500 | [diff] [blame] | 99 | struct tipc_link link; |
David S. Miller | 6c00055 | 2008-09-02 23:38:32 -0700 | [diff] [blame] | 100 | struct tipc_node node; |
Ying Xue | 3f5a12b | 2014-05-05 08:56:17 +0800 | [diff] [blame] | 101 | unsigned int flags; |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 102 | struct tipc_node_map bcast_nodes; |
Allan Stephens | 01d83ed | 2011-01-18 13:53:16 -0500 | [diff] [blame] | 103 | struct tipc_node *retransmit_to; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 104 | }; |
| 105 | |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 106 | static struct tipc_bcbearer *bcbearer; |
| 107 | static struct tipc_bclink *bclink; |
| 108 | static struct tipc_link *bcl; |
Allan Stephens | c47e9b9 | 2011-10-24 10:29:26 -0400 | [diff] [blame] | 109 | |
Allan Stephens | 3aec9cc | 2010-05-11 14:30:07 +0000 | [diff] [blame] | 110 | const char tipc_bclink_name[] = "broadcast-link"; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 111 | |
stephen hemminger | 31e3c3f | 2010-10-13 13:20:35 +0000 | [diff] [blame] | 112 | static void tipc_nmap_diff(struct tipc_node_map *nm_a, |
| 113 | struct tipc_node_map *nm_b, |
| 114 | struct tipc_node_map *nm_diff); |
Ying Xue | 28dd941 | 2014-04-21 10:55:51 +0800 | [diff] [blame] | 115 | static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node); |
| 116 | static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 117 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 118 | static void tipc_bclink_lock(void) |
| 119 | { |
| 120 | spin_lock_bh(&bclink->lock); |
| 121 | } |
| 122 | |
| 123 | static void tipc_bclink_unlock(void) |
| 124 | { |
Ying Xue | 3f5a12b | 2014-05-05 08:56:17 +0800 | [diff] [blame] | 125 | struct tipc_node *node = NULL; |
| 126 | |
| 127 | if (likely(!bclink->flags)) { |
| 128 | spin_unlock_bh(&bclink->lock); |
| 129 | return; |
| 130 | } |
| 131 | |
| 132 | if (bclink->flags & TIPC_BCLINK_RESET) { |
| 133 | bclink->flags &= ~TIPC_BCLINK_RESET; |
| 134 | node = tipc_bclink_retransmit_to(); |
| 135 | } |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 136 | spin_unlock_bh(&bclink->lock); |
Ying Xue | 3f5a12b | 2014-05-05 08:56:17 +0800 | [diff] [blame] | 137 | |
| 138 | if (node) |
| 139 | tipc_link_reset_all(node); |
| 140 | } |
| 141 | |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 142 | uint tipc_bclink_get_mtu(void) |
| 143 | { |
| 144 | return MAX_PKT_DEFAULT_MCAST; |
| 145 | } |
| 146 | |
Ying Xue | 3f5a12b | 2014-05-05 08:56:17 +0800 | [diff] [blame] | 147 | void tipc_bclink_set_flags(unsigned int flags) |
| 148 | { |
| 149 | bclink->flags |= flags; |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 150 | } |
| 151 | |
Sam Ravnborg | 05790c6 | 2006-03-20 22:37:04 -0800 | [diff] [blame] | 152 | static u32 bcbuf_acks(struct sk_buff *buf) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 153 | { |
David S. Miller | 880b005 | 2006-01-12 13:22:32 -0800 | [diff] [blame] | 154 | return (u32)(unsigned long)TIPC_SKB_CB(buf)->handle; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 155 | } |
| 156 | |
Sam Ravnborg | 05790c6 | 2006-03-20 22:37:04 -0800 | [diff] [blame] | 157 | static void bcbuf_set_acks(struct sk_buff *buf, u32 acks) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 158 | { |
David S. Miller | 880b005 | 2006-01-12 13:22:32 -0800 | [diff] [blame] | 159 | TIPC_SKB_CB(buf)->handle = (void *)(unsigned long)acks; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 160 | } |
| 161 | |
Sam Ravnborg | 05790c6 | 2006-03-20 22:37:04 -0800 | [diff] [blame] | 162 | static void bcbuf_decr_acks(struct sk_buff *buf) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 163 | { |
| 164 | bcbuf_set_acks(buf, bcbuf_acks(buf) - 1); |
| 165 | } |
| 166 | |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 167 | void tipc_bclink_add_node(u32 addr) |
| 168 | { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 169 | tipc_bclink_lock(); |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 170 | tipc_nmap_add(&bclink->bcast_nodes, addr); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 171 | tipc_bclink_unlock(); |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | void tipc_bclink_remove_node(u32 addr) |
| 175 | { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 176 | tipc_bclink_lock(); |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 177 | tipc_nmap_remove(&bclink->bcast_nodes, addr); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 178 | tipc_bclink_unlock(); |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 179 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 180 | |
Allan Stephens | 5b1f7bd | 2010-08-17 11:00:09 +0000 | [diff] [blame] | 181 | static void bclink_set_last_sent(void) |
| 182 | { |
| 183 | if (bcl->next_out) |
| 184 | bcl->fsm_msg_cnt = mod(buf_seqno(bcl->next_out) - 1); |
| 185 | else |
| 186 | bcl->fsm_msg_cnt = mod(bcl->next_out_no - 1); |
| 187 | } |
| 188 | |
| 189 | u32 tipc_bclink_get_last_sent(void) |
| 190 | { |
| 191 | return bcl->fsm_msg_cnt; |
| 192 | } |
| 193 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 194 | static void bclink_update_last_sent(struct tipc_node *node, u32 seqno) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 195 | { |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 196 | node->bclink.last_sent = less_eq(node->bclink.last_sent, seqno) ? |
| 197 | seqno : node->bclink.last_sent; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 201 | /** |
Allan Stephens | 01d83ed | 2011-01-18 13:53:16 -0500 | [diff] [blame] | 202 | * tipc_bclink_retransmit_to - get most recent node to request retransmission |
| 203 | * |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 204 | * Called with bclink_lock locked |
Allan Stephens | 01d83ed | 2011-01-18 13:53:16 -0500 | [diff] [blame] | 205 | */ |
Allan Stephens | 01d83ed | 2011-01-18 13:53:16 -0500 | [diff] [blame] | 206 | struct tipc_node *tipc_bclink_retransmit_to(void) |
| 207 | { |
| 208 | return bclink->retransmit_to; |
| 209 | } |
| 210 | |
| 211 | /** |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 212 | * bclink_retransmit_pkt - retransmit broadcast packets |
| 213 | * @after: sequence number of last packet to *not* retransmit |
| 214 | * @to: sequence number of last packet to retransmit |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 215 | * |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 216 | * Called with bclink_lock locked |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 217 | */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 218 | static void bclink_retransmit_pkt(u32 after, u32 to) |
| 219 | { |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 220 | struct sk_buff *skb; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 221 | |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 222 | skb_queue_walk(&bcl->outqueue, skb) { |
| 223 | if (more(buf_seqno(skb), after)) |
| 224 | break; |
| 225 | } |
| 226 | tipc_link_retransmit(bcl, skb, mod(to - after)); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 227 | } |
| 228 | |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 229 | /** |
Jon Maloy | 908344c | 2014-10-07 14:12:34 -0400 | [diff] [blame] | 230 | * tipc_bclink_wakeup_users - wake up pending users |
| 231 | * |
| 232 | * Called with no locks taken |
| 233 | */ |
| 234 | void tipc_bclink_wakeup_users(void) |
| 235 | { |
| 236 | while (skb_queue_len(&bclink->link.waiting_sks)) |
| 237 | tipc_sk_rcv(skb_dequeue(&bclink->link.waiting_sks)); |
| 238 | } |
| 239 | |
| 240 | /** |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 241 | * tipc_bclink_acknowledge - handle acknowledgement of broadcast packets |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 242 | * @n_ptr: node that sent acknowledgement info |
| 243 | * @acked: broadcast sequence # that has been acknowledged |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 244 | * |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 245 | * Node is locked, bclink_lock unlocked. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 246 | */ |
David S. Miller | 6c00055 | 2008-09-02 23:38:32 -0700 | [diff] [blame] | 247 | void tipc_bclink_acknowledge(struct tipc_node *n_ptr, u32 acked) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 248 | { |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 249 | struct sk_buff *skb, *tmp; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 250 | struct sk_buff *next; |
| 251 | unsigned int released = 0; |
| 252 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 253 | tipc_bclink_lock(); |
Allan Stephens | 36559591 | 2011-10-24 15:26:24 -0400 | [diff] [blame] | 254 | /* Bail out if tx queue is empty (no clean up is required) */ |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 255 | skb = skb_peek(&bcl->outqueue); |
| 256 | if (!skb) |
Allan Stephens | 36559591 | 2011-10-24 15:26:24 -0400 | [diff] [blame] | 257 | goto exit; |
| 258 | |
| 259 | /* Determine which messages need to be acknowledged */ |
| 260 | if (acked == INVALID_LINK_SEQ) { |
| 261 | /* |
| 262 | * Contact with specified node has been lost, so need to |
| 263 | * acknowledge sent messages only (if other nodes still exist) |
| 264 | * or both sent and unsent messages (otherwise) |
| 265 | */ |
| 266 | if (bclink->bcast_nodes.count) |
| 267 | acked = bcl->fsm_msg_cnt; |
| 268 | else |
| 269 | acked = bcl->next_out_no; |
| 270 | } else { |
| 271 | /* |
| 272 | * Bail out if specified sequence number does not correspond |
| 273 | * to a message that has been sent and not yet acknowledged |
| 274 | */ |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 275 | if (less(acked, buf_seqno(skb)) || |
Allan Stephens | 36559591 | 2011-10-24 15:26:24 -0400 | [diff] [blame] | 276 | less(bcl->fsm_msg_cnt, acked) || |
| 277 | less_eq(acked, n_ptr->bclink.acked)) |
| 278 | goto exit; |
| 279 | } |
| 280 | |
| 281 | /* Skip over packets that node has previously acknowledged */ |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 282 | skb_queue_walk(&bcl->outqueue, skb) { |
| 283 | if (more(buf_seqno(skb), n_ptr->bclink.acked)) |
| 284 | break; |
| 285 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 286 | |
| 287 | /* Update packets that node is now acknowledging */ |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 288 | skb_queue_walk_from_safe(&bcl->outqueue, skb, tmp) { |
| 289 | if (more(buf_seqno(skb), acked)) |
| 290 | break; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 291 | |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 292 | next = tipc_skb_queue_next(&bcl->outqueue, skb); |
| 293 | if (skb != bcl->next_out) { |
| 294 | bcbuf_decr_acks(skb); |
| 295 | } else { |
| 296 | bcbuf_set_acks(skb, 0); |
Allan Stephens | 10745cd | 2011-10-24 14:59:20 -0400 | [diff] [blame] | 297 | bcl->next_out = next; |
| 298 | bclink_set_last_sent(); |
| 299 | } |
| 300 | |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 301 | if (bcbuf_acks(skb) == 0) { |
| 302 | __skb_unlink(skb, &bcl->outqueue); |
| 303 | kfree_skb(skb); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 304 | released = 1; |
| 305 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 306 | } |
| 307 | n_ptr->bclink.acked = acked; |
| 308 | |
| 309 | /* Try resolving broadcast link congestion, if necessary */ |
Allan Stephens | 5b1f7bd | 2010-08-17 11:00:09 +0000 | [diff] [blame] | 310 | if (unlikely(bcl->next_out)) { |
Ying Xue | 47b4c9a | 2014-11-26 11:41:48 +0800 | [diff] [blame] | 311 | tipc_link_push_packets(bcl); |
Allan Stephens | 5b1f7bd | 2010-08-17 11:00:09 +0000 | [diff] [blame] | 312 | bclink_set_last_sent(); |
| 313 | } |
Jon Paul Maloy | 50100a5 | 2014-08-22 18:09:07 -0400 | [diff] [blame] | 314 | if (unlikely(released && !skb_queue_empty(&bcl->waiting_sks))) |
Jon Maloy | 908344c | 2014-10-07 14:12:34 -0400 | [diff] [blame] | 315 | n_ptr->action_flags |= TIPC_WAKEUP_BCAST_USERS; |
| 316 | |
Allan Stephens | 36559591 | 2011-10-24 15:26:24 -0400 | [diff] [blame] | 317 | exit: |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 318 | tipc_bclink_unlock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 319 | } |
| 320 | |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 321 | /** |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 322 | * tipc_bclink_update_link_state - update broadcast link state |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 323 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 324 | * RCU and node lock set |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 325 | */ |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 326 | void tipc_bclink_update_link_state(struct tipc_node *n_ptr, u32 last_sent) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 327 | { |
| 328 | struct sk_buff *buf; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 329 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 330 | /* Ignore "stale" link state info */ |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 331 | if (less_eq(last_sent, n_ptr->bclink.last_in)) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 332 | return; |
| 333 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 334 | /* Update link synchronization state; quit if in sync */ |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 335 | bclink_update_last_sent(n_ptr, last_sent); |
| 336 | |
| 337 | if (n_ptr->bclink.last_sent == n_ptr->bclink.last_in) |
| 338 | return; |
| 339 | |
| 340 | /* Update out-of-sync state; quit if loss is still unconfirmed */ |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 341 | if ((++n_ptr->bclink.oos_state) == 1) { |
| 342 | if (n_ptr->bclink.deferred_size < (TIPC_MIN_LINK_WIN / 2)) |
| 343 | return; |
| 344 | n_ptr->bclink.oos_state++; |
| 345 | } |
| 346 | |
| 347 | /* Don't NACK if one has been recently sent (or seen) */ |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 348 | if (n_ptr->bclink.oos_state & 0x1) |
| 349 | return; |
| 350 | |
| 351 | /* Send NACK */ |
stephen hemminger | 31e3c3f | 2010-10-13 13:20:35 +0000 | [diff] [blame] | 352 | buf = tipc_buf_acquire(INT_H_SIZE); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 353 | if (buf) { |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 354 | struct tipc_msg *msg = buf_msg(buf); |
| 355 | |
Allan Stephens | c68ca7b | 2010-05-11 14:30:12 +0000 | [diff] [blame] | 356 | tipc_msg_init(msg, BCAST_PROTOCOL, STATE_MSG, |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 357 | INT_H_SIZE, n_ptr->addr); |
Allan Stephens | bf781ec | 2011-01-25 16:12:39 -0500 | [diff] [blame] | 358 | msg_set_non_seq(msg, 1); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 359 | msg_set_mc_netid(msg, tipc_net_id); |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 360 | msg_set_bcast_ack(msg, n_ptr->bclink.last_in); |
| 361 | msg_set_bcgap_after(msg, n_ptr->bclink.last_in); |
| 362 | msg_set_bcgap_to(msg, n_ptr->bclink.deferred_head |
| 363 | ? buf_seqno(n_ptr->bclink.deferred_head) - 1 |
| 364 | : n_ptr->bclink.last_sent); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 365 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 366 | tipc_bclink_lock(); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 367 | tipc_bearer_send(MAX_BEARERS, buf, NULL); |
Allan Stephens | 0f38513 | 2011-04-07 15:47:48 -0400 | [diff] [blame] | 368 | bcl->stats.sent_nacks++; |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 369 | tipc_bclink_unlock(); |
Allan Stephens | 5f6d912 | 2011-11-04 13:24:29 -0400 | [diff] [blame] | 370 | kfree_skb(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 371 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 372 | n_ptr->bclink.oos_state++; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 373 | } |
| 374 | } |
| 375 | |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 376 | /** |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 377 | * bclink_peek_nack - monitor retransmission requests sent by other nodes |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 378 | * |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 379 | * Delay any upcoming NACK by this node if another node has already |
| 380 | * requested the first message this node is going to ask for. |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 381 | */ |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 382 | static void bclink_peek_nack(struct tipc_msg *msg) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 383 | { |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 384 | struct tipc_node *n_ptr = tipc_node_find(msg_destnode(msg)); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 385 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 386 | if (unlikely(!n_ptr)) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 387 | return; |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 388 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 389 | tipc_node_lock(n_ptr); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 390 | |
Ying Xue | 389dd9b | 2012-11-16 13:51:30 +0800 | [diff] [blame] | 391 | if (n_ptr->bclink.recv_permitted && |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 392 | (n_ptr->bclink.last_in != n_ptr->bclink.last_sent) && |
| 393 | (n_ptr->bclink.last_in == msg_bcgap_after(msg))) |
| 394 | n_ptr->bclink.oos_state = 2; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 395 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 396 | tipc_node_unlock(n_ptr); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 397 | } |
| 398 | |
Jon Paul Maloy | 9fbfb8b | 2014-07-16 20:41:03 -0400 | [diff] [blame] | 399 | /* tipc_bclink_xmit - broadcast buffer chain to all nodes in cluster |
| 400 | * and to identified node local sockets |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 401 | * @buf: chain of buffers containing message |
| 402 | * Consumes the buffer chain, except when returning -ELINKCONG |
| 403 | * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE |
| 404 | */ |
Jon Paul Maloy | 9fbfb8b | 2014-07-16 20:41:03 -0400 | [diff] [blame] | 405 | int tipc_bclink_xmit(struct sk_buff *buf) |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 406 | { |
| 407 | int rc = 0; |
| 408 | int bc = 0; |
| 409 | struct sk_buff *clbuf; |
| 410 | |
| 411 | /* Prepare clone of message for local node */ |
| 412 | clbuf = tipc_msg_reassemble(buf); |
| 413 | if (unlikely(!clbuf)) { |
| 414 | kfree_skb_list(buf); |
| 415 | return -EHOSTUNREACH; |
| 416 | } |
| 417 | |
| 418 | /* Broadcast to all other nodes */ |
| 419 | if (likely(bclink)) { |
| 420 | tipc_bclink_lock(); |
| 421 | if (likely(bclink->bcast_nodes.count)) { |
| 422 | rc = __tipc_link_xmit(bcl, buf); |
| 423 | if (likely(!rc)) { |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 424 | u32 len = skb_queue_len(&bcl->outqueue); |
| 425 | |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 426 | bclink_set_last_sent(); |
| 427 | bcl->stats.queue_sz_counts++; |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 428 | bcl->stats.accu_queue_sz += len; |
Jon Paul Maloy | 078bec8 | 2014-07-16 20:41:00 -0400 | [diff] [blame] | 429 | } |
| 430 | bc = 1; |
| 431 | } |
| 432 | tipc_bclink_unlock(); |
| 433 | } |
| 434 | |
| 435 | if (unlikely(!bc)) |
| 436 | kfree_skb_list(buf); |
| 437 | |
| 438 | /* Deliver message clone */ |
| 439 | if (likely(!rc)) |
| 440 | tipc_sk_mcast_rcv(clbuf); |
| 441 | else |
| 442 | kfree_skb(clbuf); |
| 443 | |
| 444 | return rc; |
| 445 | } |
| 446 | |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 447 | /** |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 448 | * bclink_accept_pkt - accept an incoming, in-sequence broadcast packet |
| 449 | * |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 450 | * Called with both sending node's lock and bclink_lock taken. |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 451 | */ |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 452 | static void bclink_accept_pkt(struct tipc_node *node, u32 seqno) |
| 453 | { |
| 454 | bclink_update_last_sent(node, seqno); |
| 455 | node->bclink.last_in = seqno; |
| 456 | node->bclink.oos_state = 0; |
| 457 | bcl->stats.recv_info++; |
| 458 | |
| 459 | /* |
| 460 | * Unicast an ACK periodically, ensuring that |
| 461 | * all nodes in the cluster don't ACK at the same time |
| 462 | */ |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 463 | if (((seqno - tipc_own_addr) % TIPC_MIN_LINK_WIN) == 0) { |
Ying Xue | 247f0f3 | 2014-02-18 16:06:46 +0800 | [diff] [blame] | 464 | tipc_link_proto_xmit(node->active_links[node->addr & 1], |
| 465 | STATE_MSG, 0, 0, 0, 0, 0); |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 466 | bcl->stats.sent_acks++; |
| 467 | } |
| 468 | } |
| 469 | |
Ben Hutchings | 2c53040 | 2012-07-10 10:55:09 +0000 | [diff] [blame] | 470 | /** |
Ying Xue | 247f0f3 | 2014-02-18 16:06:46 +0800 | [diff] [blame] | 471 | * tipc_bclink_rcv - receive a broadcast packet, and deliver upwards |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 472 | * |
Ying Xue | 7216cd9 | 2014-04-21 10:55:48 +0800 | [diff] [blame] | 473 | * RCU is locked, no other locks set |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 474 | */ |
Ying Xue | 247f0f3 | 2014-02-18 16:06:46 +0800 | [diff] [blame] | 475 | void tipc_bclink_rcv(struct sk_buff *buf) |
Allan Stephens | d356eeb | 2006-06-25 23:40:01 -0700 | [diff] [blame] | 476 | { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 477 | struct tipc_msg *msg = buf_msg(buf); |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 478 | struct tipc_node *node; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 479 | u32 next_in; |
| 480 | u32 seqno; |
Jon Paul Maloy | 0abd8ff | 2014-07-16 20:41:01 -0400 | [diff] [blame] | 481 | int deferred = 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 482 | |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 483 | /* Screen out unwanted broadcast messages */ |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 484 | if (msg_mc_netid(msg) != tipc_net_id) |
| 485 | goto exit; |
| 486 | |
| 487 | node = tipc_node_find(msg_prevnode(msg)); |
| 488 | if (unlikely(!node)) |
| 489 | goto exit; |
| 490 | |
| 491 | tipc_node_lock(node); |
Ying Xue | 389dd9b | 2012-11-16 13:51:30 +0800 | [diff] [blame] | 492 | if (unlikely(!node->bclink.recv_permitted)) |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 493 | goto unlock; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 494 | |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 495 | /* Handle broadcast protocol message */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 496 | if (unlikely(msg_user(msg) == BCAST_PROTOCOL)) { |
Allan Stephens | 9f6bdcd4 | 2011-04-07 14:57:53 -0400 | [diff] [blame] | 497 | if (msg_type(msg) != STATE_MSG) |
| 498 | goto unlock; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 499 | if (msg_destnode(msg) == tipc_own_addr) { |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 500 | tipc_bclink_acknowledge(node, msg_bcast_ack(msg)); |
| 501 | tipc_node_unlock(node); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 502 | tipc_bclink_lock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 503 | bcl->stats.recv_nacks++; |
Allan Stephens | 01d83ed | 2011-01-18 13:53:16 -0500 | [diff] [blame] | 504 | bclink->retransmit_to = node; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 505 | bclink_retransmit_pkt(msg_bcgap_after(msg), |
| 506 | msg_bcgap_to(msg)); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 507 | tipc_bclink_unlock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 508 | } else { |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 509 | tipc_node_unlock(node); |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 510 | bclink_peek_nack(msg); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 511 | } |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 512 | goto exit; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 513 | } |
| 514 | |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 515 | /* Handle in-sequence broadcast message */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 516 | seqno = msg_seqno(msg); |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 517 | next_in = mod(node->bclink.last_in + 1); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 518 | |
| 519 | if (likely(seqno == next_in)) { |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 520 | receive: |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 521 | /* Deliver message to destination */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 522 | if (likely(msg_isdata(msg))) { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 523 | tipc_bclink_lock(); |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 524 | bclink_accept_pkt(node, seqno); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 525 | tipc_bclink_unlock(); |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 526 | tipc_node_unlock(node); |
Allan Stephens | 9f6bdcd4 | 2011-04-07 14:57:53 -0400 | [diff] [blame] | 527 | if (likely(msg_mcast(msg))) |
Jon Paul Maloy | 0abd8ff | 2014-07-16 20:41:01 -0400 | [diff] [blame] | 528 | tipc_sk_mcast_rcv(buf); |
Allan Stephens | 9f6bdcd4 | 2011-04-07 14:57:53 -0400 | [diff] [blame] | 529 | else |
Allan Stephens | 5f6d912 | 2011-11-04 13:24:29 -0400 | [diff] [blame] | 530 | kfree_skb(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 531 | } else if (msg_user(msg) == MSG_BUNDLER) { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 532 | tipc_bclink_lock(); |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 533 | bclink_accept_pkt(node, seqno); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 534 | bcl->stats.recv_bundles++; |
| 535 | bcl->stats.recv_bundled += msg_msgcnt(msg); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 536 | tipc_bclink_unlock(); |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 537 | tipc_node_unlock(node); |
Ying Xue | 247f0f3 | 2014-02-18 16:06:46 +0800 | [diff] [blame] | 538 | tipc_link_bundle_rcv(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 539 | } else if (msg_user(msg) == MSG_FRAGMENTER) { |
Jon Paul Maloy | 37e2216 | 2014-05-14 05:39:12 -0400 | [diff] [blame] | 540 | tipc_buf_append(&node->bclink.reasm_buf, &buf); |
| 541 | if (unlikely(!buf && !node->bclink.reasm_buf)) |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 542 | goto unlock; |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 543 | tipc_bclink_lock(); |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 544 | bclink_accept_pkt(node, seqno); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 545 | bcl->stats.recv_fragments++; |
Jon Paul Maloy | 37e2216 | 2014-05-14 05:39:12 -0400 | [diff] [blame] | 546 | if (buf) { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 547 | bcl->stats.recv_fragmented++; |
Erik Hugne | 40ba3cd | 2013-11-06 09:28:06 +0100 | [diff] [blame] | 548 | msg = buf_msg(buf); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 549 | tipc_bclink_unlock(); |
Erik Hugne | 528f6f4 | 2013-11-06 09:28:05 +0100 | [diff] [blame] | 550 | goto receive; |
| 551 | } |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 552 | tipc_bclink_unlock(); |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 553 | tipc_node_unlock(node); |
Allan Stephens | 9f6bdcd4 | 2011-04-07 14:57:53 -0400 | [diff] [blame] | 554 | } else if (msg_user(msg) == NAME_DISTRIBUTOR) { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 555 | tipc_bclink_lock(); |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 556 | bclink_accept_pkt(node, seqno); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 557 | tipc_bclink_unlock(); |
Allan Stephens | 9f6bdcd4 | 2011-04-07 14:57:53 -0400 | [diff] [blame] | 558 | tipc_node_unlock(node); |
Ying Xue | 247f0f3 | 2014-02-18 16:06:46 +0800 | [diff] [blame] | 559 | tipc_named_rcv(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 560 | } else { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 561 | tipc_bclink_lock(); |
Allan Stephens | 63e7f1a | 2011-10-27 16:43:09 -0400 | [diff] [blame] | 562 | bclink_accept_pkt(node, seqno); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 563 | tipc_bclink_unlock(); |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 564 | tipc_node_unlock(node); |
Allan Stephens | 5f6d912 | 2011-11-04 13:24:29 -0400 | [diff] [blame] | 565 | kfree_skb(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 566 | } |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 567 | buf = NULL; |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 568 | |
| 569 | /* Determine new synchronization state */ |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 570 | tipc_node_lock(node); |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 571 | if (unlikely(!tipc_node_is_up(node))) |
| 572 | goto unlock; |
| 573 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 574 | if (node->bclink.last_in == node->bclink.last_sent) |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 575 | goto unlock; |
| 576 | |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 577 | if (!node->bclink.deferred_head) { |
| 578 | node->bclink.oos_state = 1; |
| 579 | goto unlock; |
| 580 | } |
| 581 | |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 582 | msg = buf_msg(node->bclink.deferred_head); |
| 583 | seqno = msg_seqno(msg); |
| 584 | next_in = mod(next_in + 1); |
| 585 | if (seqno != next_in) |
| 586 | goto unlock; |
| 587 | |
| 588 | /* Take in-sequence message from deferred queue & deliver it */ |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 589 | buf = node->bclink.deferred_head; |
| 590 | node->bclink.deferred_head = buf->next; |
Jon Paul Maloy | 9994175 | 2014-07-11 08:45:27 -0400 | [diff] [blame] | 591 | buf->next = NULL; |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 592 | node->bclink.deferred_size--; |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 593 | goto receive; |
| 594 | } |
| 595 | |
| 596 | /* Handle out-of-sequence broadcast message */ |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 597 | if (less(next_in, seqno)) { |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 598 | deferred = tipc_link_defer_pkt(&node->bclink.deferred_head, |
| 599 | &node->bclink.deferred_tail, |
| 600 | buf); |
Allan Stephens | 7a54d4a | 2011-10-27 14:17:53 -0400 | [diff] [blame] | 601 | node->bclink.deferred_size += deferred; |
| 602 | bclink_update_last_sent(node, seqno); |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 603 | buf = NULL; |
Jon Paul Maloy | 0abd8ff | 2014-07-16 20:41:01 -0400 | [diff] [blame] | 604 | } |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 605 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 606 | tipc_bclink_lock(); |
Allan Stephens | b98158e | 2011-10-26 16:13:35 -0400 | [diff] [blame] | 607 | |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 608 | if (deferred) |
| 609 | bcl->stats.deferred_recv++; |
Allan Stephens | 0232c5a | 2011-10-26 15:57:26 -0400 | [diff] [blame] | 610 | else |
| 611 | bcl->stats.duplicates++; |
Allan Stephens | 8a275a6 | 2011-10-26 15:33:44 -0400 | [diff] [blame] | 612 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 613 | tipc_bclink_unlock(); |
Allan Stephens | b98158e | 2011-10-26 16:13:35 -0400 | [diff] [blame] | 614 | |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 615 | unlock: |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 616 | tipc_node_unlock(node); |
Allan Stephens | 5d3c488 | 2011-04-07 13:57:25 -0400 | [diff] [blame] | 617 | exit: |
Allan Stephens | 5f6d912 | 2011-11-04 13:24:29 -0400 | [diff] [blame] | 618 | kfree_skb(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 619 | } |
| 620 | |
David S. Miller | 6c00055 | 2008-09-02 23:38:32 -0700 | [diff] [blame] | 621 | u32 tipc_bclink_acks_missing(struct tipc_node *n_ptr) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 622 | { |
Ying Xue | 389dd9b | 2012-11-16 13:51:30 +0800 | [diff] [blame] | 623 | return (n_ptr->bclink.recv_permitted && |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 624 | (tipc_bclink_get_last_sent() != n_ptr->bclink.acked)); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | |
| 628 | /** |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 629 | * tipc_bcbearer_send - send a packet through the broadcast pseudo-bearer |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 630 | * |
Allan Stephens | 2ff9f92 | 2011-04-07 10:44:54 -0400 | [diff] [blame] | 631 | * Send packet over as many bearers as necessary to reach all nodes |
| 632 | * that have joined the broadcast link. |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 633 | * |
Allan Stephens | 2ff9f92 | 2011-04-07 10:44:54 -0400 | [diff] [blame] | 634 | * Returns 0 (packet sent successfully) under all circumstances, |
| 635 | * since the broadcast link's pseudo-bearer never blocks |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 636 | */ |
Paul Gortmaker | ae8509c | 2013-06-17 10:54:47 -0400 | [diff] [blame] | 637 | static int tipc_bcbearer_send(struct sk_buff *buf, struct tipc_bearer *unused1, |
Adrian Bunk | 988f088 | 2006-03-20 22:37:52 -0800 | [diff] [blame] | 638 | struct tipc_media_addr *unused2) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 639 | { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 640 | int bp_index; |
Jon Paul Maloy | 6f92ee5 | 2014-07-16 20:41:04 -0400 | [diff] [blame] | 641 | struct tipc_msg *msg = buf_msg(buf); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 642 | |
Gerlando Falauto | e616071 | 2013-05-01 12:04:44 +0000 | [diff] [blame] | 643 | /* Prepare broadcast link message for reliable transmission, |
Allan Stephens | 2ff9f92 | 2011-04-07 10:44:54 -0400 | [diff] [blame] | 644 | * if first time trying to send it; |
| 645 | * preparation is skipped for broadcast link protocol messages |
| 646 | * since they are sent in an unreliable manner and don't need it |
| 647 | */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 648 | if (likely(!msg_non_seq(buf_msg(buf)))) { |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 649 | bcbuf_set_acks(buf, bclink->bcast_nodes.count); |
Allan Stephens | 40aecb1 | 2008-06-04 17:54:48 -0700 | [diff] [blame] | 650 | msg_set_non_seq(msg, 1); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 651 | msg_set_mc_netid(msg, tipc_net_id); |
Allan Stephens | 0048b82 | 2010-08-17 11:00:10 +0000 | [diff] [blame] | 652 | bcl->stats.sent_info++; |
Allan Stephens | 5e72690 | 2011-05-23 13:14:18 -0400 | [diff] [blame] | 653 | |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 654 | if (WARN_ON(!bclink->bcast_nodes.count)) { |
Allan Stephens | 5e72690 | 2011-05-23 13:14:18 -0400 | [diff] [blame] | 655 | dump_stack(); |
| 656 | return 0; |
| 657 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 658 | } |
| 659 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 660 | /* Send buffer over bearers until all targets reached */ |
Allan Stephens | cd3decd | 2011-10-24 11:18:12 -0400 | [diff] [blame] | 661 | bcbearer->remains = bclink->bcast_nodes; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 662 | |
| 663 | for (bp_index = 0; bp_index < MAX_BEARERS; bp_index++) { |
Allan Stephens | 2d627b9 | 2011-01-07 13:00:11 -0500 | [diff] [blame] | 664 | struct tipc_bearer *p = bcbearer->bpairs[bp_index].primary; |
| 665 | struct tipc_bearer *s = bcbearer->bpairs[bp_index].secondary; |
Jon Paul Maloy | 6f92ee5 | 2014-07-16 20:41:04 -0400 | [diff] [blame] | 666 | struct tipc_bearer *bp[2] = {p, s}; |
| 667 | struct tipc_bearer *b = bp[msg_link_selector(msg)]; |
Gerlando Falauto | 488fc9a | 2013-05-01 12:04:46 +0000 | [diff] [blame] | 668 | struct sk_buff *tbuf; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 669 | |
| 670 | if (!p) |
Gerlando Falauto | e616071 | 2013-05-01 12:04:44 +0000 | [diff] [blame] | 671 | break; /* No more bearers to try */ |
Jon Paul Maloy | 6f92ee5 | 2014-07-16 20:41:04 -0400 | [diff] [blame] | 672 | if (!b) |
| 673 | b = p; |
Gerlando Falauto | 77861d9 | 2013-05-01 12:04:45 +0000 | [diff] [blame] | 674 | tipc_nmap_diff(&bcbearer->remains, &b->nodes, |
Gerlando Falauto | e616071 | 2013-05-01 12:04:44 +0000 | [diff] [blame] | 675 | &bcbearer->remains_new); |
Allan Stephens | 65f51ef | 2006-06-25 23:53:20 -0700 | [diff] [blame] | 676 | if (bcbearer->remains_new.count == bcbearer->remains.count) |
Gerlando Falauto | e616071 | 2013-05-01 12:04:44 +0000 | [diff] [blame] | 677 | continue; /* Nothing added by bearer pair */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 678 | |
Gerlando Falauto | 488fc9a | 2013-05-01 12:04:46 +0000 | [diff] [blame] | 679 | if (bp_index == 0) { |
| 680 | /* Use original buffer for first bearer */ |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 681 | tipc_bearer_send(b->identity, buf, &b->bcast_addr); |
Gerlando Falauto | 488fc9a | 2013-05-01 12:04:46 +0000 | [diff] [blame] | 682 | } else { |
| 683 | /* Avoid concurrent buffer access */ |
Octavian Purdila | bad93e9 | 2014-06-12 01:36:26 +0300 | [diff] [blame] | 684 | tbuf = pskb_copy_for_clone(buf, GFP_ATOMIC); |
Gerlando Falauto | 488fc9a | 2013-05-01 12:04:46 +0000 | [diff] [blame] | 685 | if (!tbuf) |
| 686 | break; |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 687 | tipc_bearer_send(b->identity, tbuf, &b->bcast_addr); |
Gerlando Falauto | 488fc9a | 2013-05-01 12:04:46 +0000 | [diff] [blame] | 688 | kfree_skb(tbuf); /* Bearer keeps a clone */ |
| 689 | } |
Allan Stephens | 65f51ef | 2006-06-25 23:53:20 -0700 | [diff] [blame] | 690 | if (bcbearer->remains_new.count == 0) |
Gerlando Falauto | e616071 | 2013-05-01 12:04:44 +0000 | [diff] [blame] | 691 | break; /* All targets reached */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 692 | |
Allan Stephens | 65f51ef | 2006-06-25 23:53:20 -0700 | [diff] [blame] | 693 | bcbearer->remains = bcbearer->remains_new; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 694 | } |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 695 | |
Allan Stephens | 2ff9f92 | 2011-04-07 10:44:54 -0400 | [diff] [blame] | 696 | return 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | /** |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 700 | * tipc_bcbearer_sort - create sets of bearer pairs used by broadcast bearer |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 701 | */ |
Ying Xue | 28dd941 | 2014-04-21 10:55:51 +0800 | [diff] [blame] | 702 | void tipc_bcbearer_sort(struct tipc_node_map *nm_ptr, u32 node, bool action) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 703 | { |
Paul Gortmaker | 7f9ab6a | 2011-12-29 20:55:27 -0500 | [diff] [blame] | 704 | struct tipc_bcbearer_pair *bp_temp = bcbearer->bpairs_temp; |
| 705 | struct tipc_bcbearer_pair *bp_curr; |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 706 | struct tipc_bearer *b; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 707 | int b_index; |
| 708 | int pri; |
| 709 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 710 | tipc_bclink_lock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 711 | |
Ying Xue | 28dd941 | 2014-04-21 10:55:51 +0800 | [diff] [blame] | 712 | if (action) |
| 713 | tipc_nmap_add(nm_ptr, node); |
| 714 | else |
| 715 | tipc_nmap_remove(nm_ptr, node); |
| 716 | |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 717 | /* Group bearers by priority (can assume max of two per priority) */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 718 | memset(bp_temp, 0, sizeof(bcbearer->bpairs_temp)); |
| 719 | |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 720 | rcu_read_lock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 721 | for (b_index = 0; b_index < MAX_BEARERS; b_index++) { |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 722 | b = rcu_dereference_rtnl(bearer_list[b_index]); |
Ying Xue | f47de12 | 2014-03-27 12:54:34 +0800 | [diff] [blame] | 723 | if (!b || !b->nodes.count) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 724 | continue; |
| 725 | |
| 726 | if (!bp_temp[b->priority].primary) |
| 727 | bp_temp[b->priority].primary = b; |
| 728 | else |
| 729 | bp_temp[b->priority].secondary = b; |
| 730 | } |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 731 | rcu_read_unlock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 732 | |
| 733 | /* Create array of bearer pairs for broadcasting */ |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 734 | bp_curr = bcbearer->bpairs; |
| 735 | memset(bcbearer->bpairs, 0, sizeof(bcbearer->bpairs)); |
| 736 | |
Per Liden | 16cb4b3 | 2006-01-13 22:22:22 +0100 | [diff] [blame] | 737 | for (pri = TIPC_MAX_LINK_PRI; pri >= 0; pri--) { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 738 | |
| 739 | if (!bp_temp[pri].primary) |
| 740 | continue; |
| 741 | |
| 742 | bp_curr->primary = bp_temp[pri].primary; |
| 743 | |
| 744 | if (bp_temp[pri].secondary) { |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 745 | if (tipc_nmap_equal(&bp_temp[pri].primary->nodes, |
| 746 | &bp_temp[pri].secondary->nodes)) { |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 747 | bp_curr->secondary = bp_temp[pri].secondary; |
| 748 | } else { |
| 749 | bp_curr++; |
| 750 | bp_curr->primary = bp_temp[pri].secondary; |
| 751 | } |
| 752 | } |
| 753 | |
| 754 | bp_curr++; |
| 755 | } |
| 756 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 757 | tipc_bclink_unlock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 758 | } |
| 759 | |
Richard Alpe | d818280 | 2014-11-24 11:10:29 +0100 | [diff] [blame] | 760 | static int __tipc_nl_add_bc_link_stat(struct sk_buff *skb, |
| 761 | struct tipc_stats *stats) |
Richard Alpe | 7be57fc | 2014-11-20 10:29:12 +0100 | [diff] [blame] | 762 | { |
| 763 | int i; |
| 764 | struct nlattr *nest; |
| 765 | |
| 766 | struct nla_map { |
| 767 | __u32 key; |
| 768 | __u32 val; |
| 769 | }; |
| 770 | |
| 771 | struct nla_map map[] = { |
| 772 | {TIPC_NLA_STATS_RX_INFO, stats->recv_info}, |
| 773 | {TIPC_NLA_STATS_RX_FRAGMENTS, stats->recv_fragments}, |
| 774 | {TIPC_NLA_STATS_RX_FRAGMENTED, stats->recv_fragmented}, |
| 775 | {TIPC_NLA_STATS_RX_BUNDLES, stats->recv_bundles}, |
| 776 | {TIPC_NLA_STATS_RX_BUNDLED, stats->recv_bundled}, |
| 777 | {TIPC_NLA_STATS_TX_INFO, stats->sent_info}, |
| 778 | {TIPC_NLA_STATS_TX_FRAGMENTS, stats->sent_fragments}, |
| 779 | {TIPC_NLA_STATS_TX_FRAGMENTED, stats->sent_fragmented}, |
| 780 | {TIPC_NLA_STATS_TX_BUNDLES, stats->sent_bundles}, |
| 781 | {TIPC_NLA_STATS_TX_BUNDLED, stats->sent_bundled}, |
| 782 | {TIPC_NLA_STATS_RX_NACKS, stats->recv_nacks}, |
| 783 | {TIPC_NLA_STATS_RX_DEFERRED, stats->deferred_recv}, |
| 784 | {TIPC_NLA_STATS_TX_NACKS, stats->sent_nacks}, |
| 785 | {TIPC_NLA_STATS_TX_ACKS, stats->sent_acks}, |
| 786 | {TIPC_NLA_STATS_RETRANSMITTED, stats->retransmitted}, |
| 787 | {TIPC_NLA_STATS_DUPLICATES, stats->duplicates}, |
| 788 | {TIPC_NLA_STATS_LINK_CONGS, stats->link_congs}, |
| 789 | {TIPC_NLA_STATS_MAX_QUEUE, stats->max_queue_sz}, |
| 790 | {TIPC_NLA_STATS_AVG_QUEUE, stats->queue_sz_counts ? |
| 791 | (stats->accu_queue_sz / stats->queue_sz_counts) : 0} |
| 792 | }; |
| 793 | |
| 794 | nest = nla_nest_start(skb, TIPC_NLA_LINK_STATS); |
| 795 | if (!nest) |
| 796 | return -EMSGSIZE; |
| 797 | |
| 798 | for (i = 0; i < ARRAY_SIZE(map); i++) |
| 799 | if (nla_put_u32(skb, map[i].key, map[i].val)) |
| 800 | goto msg_full; |
| 801 | |
| 802 | nla_nest_end(skb, nest); |
| 803 | |
| 804 | return 0; |
| 805 | msg_full: |
| 806 | nla_nest_cancel(skb, nest); |
| 807 | |
| 808 | return -EMSGSIZE; |
| 809 | } |
| 810 | |
| 811 | int tipc_nl_add_bc_link(struct tipc_nl_msg *msg) |
| 812 | { |
| 813 | int err; |
| 814 | void *hdr; |
| 815 | struct nlattr *attrs; |
| 816 | struct nlattr *prop; |
| 817 | |
| 818 | if (!bcl) |
| 819 | return 0; |
| 820 | |
| 821 | tipc_bclink_lock(); |
| 822 | |
| 823 | hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family, |
| 824 | NLM_F_MULTI, TIPC_NL_LINK_GET); |
| 825 | if (!hdr) |
| 826 | return -EMSGSIZE; |
| 827 | |
| 828 | attrs = nla_nest_start(msg->skb, TIPC_NLA_LINK); |
| 829 | if (!attrs) |
| 830 | goto msg_full; |
| 831 | |
| 832 | /* The broadcast link is always up */ |
| 833 | if (nla_put_flag(msg->skb, TIPC_NLA_LINK_UP)) |
| 834 | goto attr_msg_full; |
| 835 | |
| 836 | if (nla_put_flag(msg->skb, TIPC_NLA_LINK_BROADCAST)) |
| 837 | goto attr_msg_full; |
| 838 | if (nla_put_string(msg->skb, TIPC_NLA_LINK_NAME, bcl->name)) |
| 839 | goto attr_msg_full; |
| 840 | if (nla_put_u32(msg->skb, TIPC_NLA_LINK_RX, bcl->next_in_no)) |
| 841 | goto attr_msg_full; |
| 842 | if (nla_put_u32(msg->skb, TIPC_NLA_LINK_TX, bcl->next_out_no)) |
| 843 | goto attr_msg_full; |
| 844 | |
| 845 | prop = nla_nest_start(msg->skb, TIPC_NLA_LINK_PROP); |
| 846 | if (!prop) |
| 847 | goto attr_msg_full; |
| 848 | if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bcl->queue_limit[0])) |
| 849 | goto prop_msg_full; |
| 850 | nla_nest_end(msg->skb, prop); |
| 851 | |
| 852 | err = __tipc_nl_add_bc_link_stat(msg->skb, &bcl->stats); |
| 853 | if (err) |
| 854 | goto attr_msg_full; |
| 855 | |
| 856 | tipc_bclink_unlock(); |
| 857 | nla_nest_end(msg->skb, attrs); |
| 858 | genlmsg_end(msg->skb, hdr); |
| 859 | |
| 860 | return 0; |
| 861 | |
| 862 | prop_msg_full: |
| 863 | nla_nest_cancel(msg->skb, prop); |
| 864 | attr_msg_full: |
| 865 | nla_nest_cancel(msg->skb, attrs); |
| 866 | msg_full: |
| 867 | tipc_bclink_unlock(); |
| 868 | genlmsg_cancel(msg->skb, hdr); |
| 869 | |
| 870 | return -EMSGSIZE; |
| 871 | } |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 872 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 873 | int tipc_bclink_stats(char *buf, const u32 buf_size) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 874 | { |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 875 | int ret; |
| 876 | struct tipc_stats *s; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 877 | |
| 878 | if (!bcl) |
| 879 | return 0; |
| 880 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 881 | tipc_bclink_lock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 882 | |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 883 | s = &bcl->stats; |
| 884 | |
| 885 | ret = tipc_snprintf(buf, buf_size, "Link <%s>\n" |
| 886 | " Window:%u packets\n", |
| 887 | bcl->name, bcl->queue_limit[0]); |
| 888 | ret += tipc_snprintf(buf + ret, buf_size - ret, |
| 889 | " RX packets:%u fragments:%u/%u bundles:%u/%u\n", |
| 890 | s->recv_info, s->recv_fragments, |
| 891 | s->recv_fragmented, s->recv_bundles, |
| 892 | s->recv_bundled); |
| 893 | ret += tipc_snprintf(buf + ret, buf_size - ret, |
| 894 | " TX packets:%u fragments:%u/%u bundles:%u/%u\n", |
| 895 | s->sent_info, s->sent_fragments, |
| 896 | s->sent_fragmented, s->sent_bundles, |
| 897 | s->sent_bundled); |
| 898 | ret += tipc_snprintf(buf + ret, buf_size - ret, |
| 899 | " RX naks:%u defs:%u dups:%u\n", |
| 900 | s->recv_nacks, s->deferred_recv, s->duplicates); |
| 901 | ret += tipc_snprintf(buf + ret, buf_size - ret, |
| 902 | " TX naks:%u acks:%u dups:%u\n", |
| 903 | s->sent_nacks, s->sent_acks, s->retransmitted); |
| 904 | ret += tipc_snprintf(buf + ret, buf_size - ret, |
Ying Xue | 3c294cb | 2012-11-15 11:34:45 +0800 | [diff] [blame] | 905 | " Congestion link:%u Send queue max:%u avg:%u\n", |
| 906 | s->link_congs, s->max_queue_sz, |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 907 | s->queue_sz_counts ? |
| 908 | (s->accu_queue_sz / s->queue_sz_counts) : 0); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 909 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 910 | tipc_bclink_unlock(); |
Erik Hugne | dc1aed3 | 2012-06-29 00:50:23 -0400 | [diff] [blame] | 911 | return ret; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 912 | } |
| 913 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 914 | int tipc_bclink_reset_stats(void) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 915 | { |
| 916 | if (!bcl) |
| 917 | return -ENOPROTOOPT; |
| 918 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 919 | tipc_bclink_lock(); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 920 | memset(&bcl->stats, 0, sizeof(bcl->stats)); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 921 | tipc_bclink_unlock(); |
Allan Stephens | 0e35fd5 | 2008-07-14 22:44:01 -0700 | [diff] [blame] | 922 | return 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 923 | } |
| 924 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 925 | int tipc_bclink_set_queue_limits(u32 limit) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 926 | { |
| 927 | if (!bcl) |
| 928 | return -ENOPROTOOPT; |
| 929 | if ((limit < TIPC_MIN_LINK_WIN) || (limit > TIPC_MAX_LINK_WIN)) |
| 930 | return -EINVAL; |
| 931 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 932 | tipc_bclink_lock(); |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 933 | tipc_link_set_queue_limits(bcl, limit); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 934 | tipc_bclink_unlock(); |
Allan Stephens | 0e35fd5 | 2008-07-14 22:44:01 -0700 | [diff] [blame] | 935 | return 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 936 | } |
| 937 | |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 938 | int tipc_bclink_init(void) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 939 | { |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 940 | bcbearer = kzalloc(sizeof(*bcbearer), GFP_ATOMIC); |
| 941 | if (!bcbearer) |
| 942 | return -ENOMEM; |
| 943 | |
| 944 | bclink = kzalloc(sizeof(*bclink), GFP_ATOMIC); |
| 945 | if (!bclink) { |
| 946 | kfree(bcbearer); |
| 947 | return -ENOMEM; |
| 948 | } |
| 949 | |
| 950 | bcl = &bclink->link; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 951 | bcbearer->bearer.media = &bcbearer->media; |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 952 | bcbearer->media.send_msg = tipc_bcbearer_send; |
Allan Stephens | 2e2d9be | 2011-04-07 10:22:31 -0400 | [diff] [blame] | 953 | sprintf(bcbearer->media.name, "tipc-broadcast"); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 954 | |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 955 | spin_lock_init(&bclink->lock); |
Ying Xue | 58dc55f | 2014-11-26 11:41:52 +0800 | [diff] [blame^] | 956 | __skb_queue_head_init(&bcl->outqueue); |
Jon Paul Maloy | 50100a5 | 2014-08-22 18:09:07 -0400 | [diff] [blame] | 957 | __skb_queue_head_init(&bcl->waiting_sks); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 958 | bcl->next_out_no = 1; |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 959 | spin_lock_init(&bclink->node.lock); |
Jon Paul Maloy | 50100a5 | 2014-08-22 18:09:07 -0400 | [diff] [blame] | 960 | __skb_queue_head_init(&bclink->node.waiting_sks); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 961 | bcl->owner = &bclink->node; |
YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 962 | bcl->max_pkt = MAX_PKT_DEFAULT_MCAST; |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 963 | tipc_link_set_queue_limits(bcl, BCLINK_WIN_DEFAULT); |
Ying Xue | 7a2f7d1 | 2014-04-21 10:55:46 +0800 | [diff] [blame] | 964 | bcl->bearer_id = MAX_BEARERS; |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 965 | rcu_assign_pointer(bearer_list[MAX_BEARERS], &bcbearer->bearer); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 966 | bcl->state = WORKING_WORKING; |
Stephen Hemminger | 4b704d5 | 2009-03-18 19:11:29 -0700 | [diff] [blame] | 967 | strlcpy(bcl->name, tipc_bclink_name, TIPC_MAX_LINK_NAME); |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 968 | return 0; |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 969 | } |
| 970 | |
Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 971 | void tipc_bclink_stop(void) |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 972 | { |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 973 | tipc_bclink_lock(); |
Jon Paul Maloy | 581465f | 2014-01-07 17:02:44 -0500 | [diff] [blame] | 974 | tipc_link_purge_queues(bcl); |
Ying Xue | d69afc9 | 2014-05-05 08:56:15 +0800 | [diff] [blame] | 975 | tipc_bclink_unlock(); |
Allan Stephens | c47e9b9 | 2011-10-24 10:29:26 -0400 | [diff] [blame] | 976 | |
Ying Xue | f8322df | 2014-04-21 10:55:45 +0800 | [diff] [blame] | 977 | RCU_INIT_POINTER(bearer_list[BCBEARER], NULL); |
Ying Xue | eb8b00f | 2014-05-05 08:56:16 +0800 | [diff] [blame] | 978 | synchronize_net(); |
| 979 | kfree(bcbearer); |
| 980 | kfree(bclink); |
Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 981 | } |
| 982 | |
Allan Stephens | 3e22e62 | 2010-05-11 14:30:14 +0000 | [diff] [blame] | 983 | /** |
| 984 | * tipc_nmap_add - add a node to a node map |
| 985 | */ |
Ying Xue | 28dd941 | 2014-04-21 10:55:51 +0800 | [diff] [blame] | 986 | static void tipc_nmap_add(struct tipc_node_map *nm_ptr, u32 node) |
Allan Stephens | 3e22e62 | 2010-05-11 14:30:14 +0000 | [diff] [blame] | 987 | { |
| 988 | int n = tipc_node(node); |
| 989 | int w = n / WSIZE; |
| 990 | u32 mask = (1 << (n % WSIZE)); |
| 991 | |
| 992 | if ((nm_ptr->map[w] & mask) == 0) { |
| 993 | nm_ptr->count++; |
| 994 | nm_ptr->map[w] |= mask; |
| 995 | } |
| 996 | } |
| 997 | |
| 998 | /** |
| 999 | * tipc_nmap_remove - remove a node from a node map |
| 1000 | */ |
Ying Xue | 28dd941 | 2014-04-21 10:55:51 +0800 | [diff] [blame] | 1001 | static void tipc_nmap_remove(struct tipc_node_map *nm_ptr, u32 node) |
Allan Stephens | 3e22e62 | 2010-05-11 14:30:14 +0000 | [diff] [blame] | 1002 | { |
| 1003 | int n = tipc_node(node); |
| 1004 | int w = n / WSIZE; |
| 1005 | u32 mask = (1 << (n % WSIZE)); |
| 1006 | |
| 1007 | if ((nm_ptr->map[w] & mask) != 0) { |
| 1008 | nm_ptr->map[w] &= ~mask; |
| 1009 | nm_ptr->count--; |
| 1010 | } |
| 1011 | } |
| 1012 | |
| 1013 | /** |
| 1014 | * tipc_nmap_diff - find differences between node maps |
| 1015 | * @nm_a: input node map A |
| 1016 | * @nm_b: input node map B |
| 1017 | * @nm_diff: output node map A-B (i.e. nodes of A that are not in B) |
| 1018 | */ |
stephen hemminger | 31e3c3f | 2010-10-13 13:20:35 +0000 | [diff] [blame] | 1019 | static void tipc_nmap_diff(struct tipc_node_map *nm_a, |
| 1020 | struct tipc_node_map *nm_b, |
| 1021 | struct tipc_node_map *nm_diff) |
Allan Stephens | 3e22e62 | 2010-05-11 14:30:14 +0000 | [diff] [blame] | 1022 | { |
| 1023 | int stop = ARRAY_SIZE(nm_a->map); |
| 1024 | int w; |
| 1025 | int b; |
| 1026 | u32 map; |
| 1027 | |
| 1028 | memset(nm_diff, 0, sizeof(*nm_diff)); |
| 1029 | for (w = 0; w < stop; w++) { |
| 1030 | map = nm_a->map[w] ^ (nm_a->map[w] & nm_b->map[w]); |
| 1031 | nm_diff->map[w] = map; |
| 1032 | if (map != 0) { |
| 1033 | for (b = 0 ; b < WSIZE; b++) { |
| 1034 | if (map & (1 << b)) |
| 1035 | nm_diff->count++; |
| 1036 | } |
| 1037 | } |
| 1038 | } |
| 1039 | } |
Allan Stephens | 43608ed | 2010-05-11 14:30:15 +0000 | [diff] [blame] | 1040 | |
| 1041 | /** |
| 1042 | * tipc_port_list_add - add a port to a port list, ensuring no duplicates |
| 1043 | */ |
Paul Gortmaker | 4584310 | 2011-12-29 20:33:30 -0500 | [diff] [blame] | 1044 | void tipc_port_list_add(struct tipc_port_list *pl_ptr, u32 port) |
Allan Stephens | 43608ed | 2010-05-11 14:30:15 +0000 | [diff] [blame] | 1045 | { |
Paul Gortmaker | 4584310 | 2011-12-29 20:33:30 -0500 | [diff] [blame] | 1046 | struct tipc_port_list *item = pl_ptr; |
Allan Stephens | 43608ed | 2010-05-11 14:30:15 +0000 | [diff] [blame] | 1047 | int i; |
| 1048 | int item_sz = PLSIZE; |
| 1049 | int cnt = pl_ptr->count; |
| 1050 | |
| 1051 | for (; ; cnt -= item_sz, item = item->next) { |
| 1052 | if (cnt < PLSIZE) |
| 1053 | item_sz = cnt; |
| 1054 | for (i = 0; i < item_sz; i++) |
| 1055 | if (item->ports[i] == port) |
| 1056 | return; |
| 1057 | if (i < PLSIZE) { |
| 1058 | item->ports[i] = port; |
| 1059 | pl_ptr->count++; |
| 1060 | return; |
| 1061 | } |
| 1062 | if (!item->next) { |
| 1063 | item->next = kmalloc(sizeof(*item), GFP_ATOMIC); |
| 1064 | if (!item->next) { |
Erik Hugne | 2cf8aa1 | 2012-06-29 00:16:37 -0400 | [diff] [blame] | 1065 | pr_warn("Incomplete multicast delivery, no memory\n"); |
Allan Stephens | 43608ed | 2010-05-11 14:30:15 +0000 | [diff] [blame] | 1066 | return; |
| 1067 | } |
| 1068 | item->next->next = NULL; |
| 1069 | } |
| 1070 | } |
| 1071 | } |
| 1072 | |
| 1073 | /** |
| 1074 | * tipc_port_list_free - free dynamically created entries in port_list chain |
| 1075 | * |
| 1076 | */ |
Paul Gortmaker | 4584310 | 2011-12-29 20:33:30 -0500 | [diff] [blame] | 1077 | void tipc_port_list_free(struct tipc_port_list *pl_ptr) |
Allan Stephens | 43608ed | 2010-05-11 14:30:15 +0000 | [diff] [blame] | 1078 | { |
Paul Gortmaker | 4584310 | 2011-12-29 20:33:30 -0500 | [diff] [blame] | 1079 | struct tipc_port_list *item; |
| 1080 | struct tipc_port_list *next; |
Allan Stephens | 43608ed | 2010-05-11 14:30:15 +0000 | [diff] [blame] | 1081 | |
| 1082 | for (item = pl_ptr->next; item; item = next) { |
| 1083 | next = item->next; |
| 1084 | kfree(item); |
| 1085 | } |
| 1086 | } |