]>
Commit | Line | Data |
---|---|---|
b97bf3fd PL |
1 | /* |
2 | * net/tipc/node.c: TIPC node management routines | |
c4307285 | 3 | * |
dd3f9e70 | 4 | * Copyright (c) 2000-2006, 2012-2015, Ericsson AB |
46651c59 | 5 | * Copyright (c) 2005-2006, 2010-2014, Wind River Systems |
b97bf3fd PL |
6 | * All rights reserved. |
7 | * | |
9ea1fd3c | 8 | * Redistribution and use in source and binary forms, with or without |
b97bf3fd PL |
9 | * modification, are permitted provided that the following conditions are met: |
10 | * | |
9ea1fd3c PL |
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. | |
b97bf3fd | 19 | * |
9ea1fd3c PL |
20 | * Alternatively, this software may be distributed under the terms of the |
21 | * GNU General Public License ("GPL") version 2 as published by the Free | |
22 | * Software Foundation. | |
23 | * | |
24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
28 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
29 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
30 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
31 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
32 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
33 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
b97bf3fd PL |
34 | * POSSIBILITY OF SUCH DAMAGE. |
35 | */ | |
36 | ||
37 | #include "core.h" | |
22ae7cff | 38 | #include "link.h" |
b97bf3fd | 39 | #include "node.h" |
b97bf3fd | 40 | #include "name_distr.h" |
50100a5e | 41 | #include "socket.h" |
a6bf70f7 | 42 | #include "bcast.h" |
d999297c | 43 | #include "discover.h" |
b97bf3fd | 44 | |
6e498158 JPM |
45 | /* Node FSM states and events: |
46 | */ | |
47 | enum { | |
48 | SELF_DOWN_PEER_DOWN = 0xdd, | |
49 | SELF_UP_PEER_UP = 0xaa, | |
50 | SELF_DOWN_PEER_LEAVING = 0xd1, | |
51 | SELF_UP_PEER_COMING = 0xac, | |
52 | SELF_COMING_PEER_UP = 0xca, | |
53 | SELF_LEAVING_PEER_DOWN = 0x1d, | |
54 | NODE_FAILINGOVER = 0xf0, | |
55 | NODE_SYNCHING = 0xcc | |
56 | }; | |
57 | ||
58 | enum { | |
59 | SELF_ESTABL_CONTACT_EVT = 0xece, | |
60 | SELF_LOST_CONTACT_EVT = 0x1ce, | |
61 | PEER_ESTABL_CONTACT_EVT = 0x9ece, | |
62 | PEER_LOST_CONTACT_EVT = 0x91ce, | |
63 | NODE_FAILOVER_BEGIN_EVT = 0xfbe, | |
64 | NODE_FAILOVER_END_EVT = 0xfee, | |
65 | NODE_SYNCH_BEGIN_EVT = 0xcbe, | |
66 | NODE_SYNCH_END_EVT = 0xcee | |
67 | }; | |
68 | ||
598411d7 JPM |
69 | static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id, |
70 | struct sk_buff_head *xmitq, | |
71 | struct tipc_media_addr **maddr); | |
72 | static void tipc_node_link_down(struct tipc_node *n, int bearer_id, | |
73 | bool delete); | |
74 | static void node_lost_contact(struct tipc_node *n, struct sk_buff_head *inputq); | |
6c00055a | 75 | static void node_established_contact(struct tipc_node *n_ptr); |
8a0f6ebe | 76 | static void tipc_node_delete(struct tipc_node *node); |
8a1577c9 | 77 | static void tipc_node_timeout(unsigned long data); |
d999297c | 78 | static void tipc_node_fsm_evt(struct tipc_node *n, int evt); |
b97bf3fd | 79 | |
02be61a9 JPM |
80 | struct tipc_sock_conn { |
81 | u32 port; | |
82 | u32 peer_port; | |
83 | u32 peer_node; | |
84 | struct list_head list; | |
85 | }; | |
86 | ||
3e4b6ab5 RA |
87 | static const struct nla_policy tipc_nl_node_policy[TIPC_NLA_NODE_MAX + 1] = { |
88 | [TIPC_NLA_NODE_UNSPEC] = { .type = NLA_UNSPEC }, | |
89 | [TIPC_NLA_NODE_ADDR] = { .type = NLA_U32 }, | |
90 | [TIPC_NLA_NODE_UP] = { .type = NLA_FLAG } | |
91 | }; | |
92 | ||
a635b46b AS |
93 | /* |
94 | * A trivial power-of-two bitmask technique is used for speed, since this | |
95 | * operation is done for every incoming TIPC packet. The number of hash table | |
96 | * entries has been chosen so that no hash chain exceeds 8 nodes and will | |
97 | * usually be much smaller (typically only a single node). | |
98 | */ | |
872f24db | 99 | static unsigned int tipc_hashfn(u32 addr) |
a635b46b AS |
100 | { |
101 | return addr & (NODE_HTABLE_SIZE - 1); | |
102 | } | |
103 | ||
8a0f6ebe YX |
104 | static void tipc_node_kref_release(struct kref *kref) |
105 | { | |
106 | struct tipc_node *node = container_of(kref, struct tipc_node, kref); | |
107 | ||
108 | tipc_node_delete(node); | |
109 | } | |
110 | ||
111 | void tipc_node_put(struct tipc_node *node) | |
112 | { | |
113 | kref_put(&node->kref, tipc_node_kref_release); | |
114 | } | |
115 | ||
116 | static void tipc_node_get(struct tipc_node *node) | |
117 | { | |
118 | kref_get(&node->kref); | |
119 | } | |
120 | ||
1ec2bb08 | 121 | /* |
672d99e1 AS |
122 | * tipc_node_find - locate specified node object, if it exists |
123 | */ | |
f2f9800d | 124 | struct tipc_node *tipc_node_find(struct net *net, u32 addr) |
672d99e1 | 125 | { |
f2f9800d | 126 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
672d99e1 | 127 | struct tipc_node *node; |
672d99e1 | 128 | |
34747539 | 129 | if (unlikely(!in_own_cluster_exact(net, addr))) |
672d99e1 AS |
130 | return NULL; |
131 | ||
6c7a762e | 132 | rcu_read_lock(); |
f2f9800d YX |
133 | hlist_for_each_entry_rcu(node, &tn->node_htable[tipc_hashfn(addr)], |
134 | hash) { | |
46651c59 | 135 | if (node->addr == addr) { |
8a0f6ebe | 136 | tipc_node_get(node); |
6c7a762e | 137 | rcu_read_unlock(); |
672d99e1 | 138 | return node; |
46651c59 | 139 | } |
672d99e1 | 140 | } |
6c7a762e | 141 | rcu_read_unlock(); |
672d99e1 AS |
142 | return NULL; |
143 | } | |
144 | ||
cf148816 | 145 | struct tipc_node *tipc_node_create(struct net *net, u32 addr, u16 capabilities) |
b97bf3fd | 146 | { |
f2f9800d | 147 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
672d99e1 | 148 | struct tipc_node *n_ptr, *temp_node; |
b97bf3fd | 149 | |
f2f9800d | 150 | spin_lock_bh(&tn->node_list_lock); |
b45db71b JPM |
151 | n_ptr = tipc_node_find(net, addr); |
152 | if (n_ptr) | |
153 | goto exit; | |
5af54792 | 154 | n_ptr = kzalloc(sizeof(*n_ptr), GFP_ATOMIC); |
a10bd924 | 155 | if (!n_ptr) { |
2cf8aa19 | 156 | pr_warn("Node creation failed, no memory\n"); |
b45db71b | 157 | goto exit; |
a10bd924 | 158 | } |
a10bd924 | 159 | n_ptr->addr = addr; |
f2f9800d | 160 | n_ptr->net = net; |
cf148816 | 161 | n_ptr->capabilities = capabilities; |
8a0f6ebe | 162 | kref_init(&n_ptr->kref); |
51a8e4de | 163 | spin_lock_init(&n_ptr->lock); |
672d99e1 AS |
164 | INIT_HLIST_NODE(&n_ptr->hash); |
165 | INIT_LIST_HEAD(&n_ptr->list); | |
a8f48af5 | 166 | INIT_LIST_HEAD(&n_ptr->publ_list); |
02be61a9 | 167 | INIT_LIST_HEAD(&n_ptr->conn_sks); |
d39bbd44 | 168 | skb_queue_head_init(&n_ptr->bclink.namedq); |
05dcc5aa | 169 | __skb_queue_head_init(&n_ptr->bclink.deferdq); |
f2f9800d | 170 | hlist_add_head_rcu(&n_ptr->hash, &tn->node_htable[tipc_hashfn(addr)]); |
f2f9800d | 171 | list_for_each_entry_rcu(temp_node, &tn->node_list, list) { |
672d99e1 AS |
172 | if (n_ptr->addr < temp_node->addr) |
173 | break; | |
174 | } | |
6c7a762e | 175 | list_add_tail_rcu(&n_ptr->list, &temp_node->list); |
d999297c | 176 | n_ptr->state = SELF_DOWN_PEER_LEAVING; |
fc0eea69 | 177 | n_ptr->signature = INVALID_NODE_SIG; |
36e78a46 JPM |
178 | n_ptr->active_links[0] = INVALID_BEARER_ID; |
179 | n_ptr->active_links[1] = INVALID_BEARER_ID; | |
8a0f6ebe | 180 | tipc_node_get(n_ptr); |
8a1577c9 JPM |
181 | setup_timer(&n_ptr->timer, tipc_node_timeout, (unsigned long)n_ptr); |
182 | n_ptr->keepalive_intv = U32_MAX; | |
b45db71b | 183 | exit: |
f2f9800d | 184 | spin_unlock_bh(&tn->node_list_lock); |
b97bf3fd PL |
185 | return n_ptr; |
186 | } | |
187 | ||
8a1577c9 JPM |
188 | static void tipc_node_calculate_timer(struct tipc_node *n, struct tipc_link *l) |
189 | { | |
190 | unsigned long tol = l->tolerance; | |
191 | unsigned long intv = ((tol / 4) > 500) ? 500 : tol / 4; | |
192 | unsigned long keepalive_intv = msecs_to_jiffies(intv); | |
193 | ||
194 | /* Link with lowest tolerance determines timer interval */ | |
195 | if (keepalive_intv < n->keepalive_intv) | |
196 | n->keepalive_intv = keepalive_intv; | |
197 | ||
198 | /* Ensure link's abort limit corresponds to current interval */ | |
199 | l->abort_limit = l->tolerance / jiffies_to_msecs(n->keepalive_intv); | |
200 | } | |
201 | ||
8a0f6ebe | 202 | static void tipc_node_delete(struct tipc_node *node) |
b97bf3fd | 203 | { |
8a0f6ebe YX |
204 | list_del_rcu(&node->list); |
205 | hlist_del_rcu(&node->hash); | |
206 | kfree_rcu(node, rcu); | |
b97bf3fd PL |
207 | } |
208 | ||
f2f9800d | 209 | void tipc_node_stop(struct net *net) |
46651c59 | 210 | { |
f2f9800d | 211 | struct tipc_net *tn = net_generic(net, tipc_net_id); |
46651c59 YX |
212 | struct tipc_node *node, *t_node; |
213 | ||
f2f9800d | 214 | spin_lock_bh(&tn->node_list_lock); |
8a1577c9 JPM |
215 | list_for_each_entry_safe(node, t_node, &tn->node_list, list) { |
216 | if (del_timer(&node->timer)) | |
217 | tipc_node_put(node); | |
8a0f6ebe | 218 | tipc_node_put(node); |
8a1577c9 | 219 | } |
f2f9800d | 220 | spin_unlock_bh(&tn->node_list_lock); |
46651c59 YX |
221 | } |
222 | ||
f2f9800d | 223 | int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port) |
02be61a9 JPM |
224 | { |
225 | struct tipc_node *node; | |
226 | struct tipc_sock_conn *conn; | |
8a0f6ebe | 227 | int err = 0; |
02be61a9 | 228 | |
34747539 | 229 | if (in_own_node(net, dnode)) |
02be61a9 JPM |
230 | return 0; |
231 | ||
f2f9800d | 232 | node = tipc_node_find(net, dnode); |
02be61a9 JPM |
233 | if (!node) { |
234 | pr_warn("Connecting sock to node 0x%x failed\n", dnode); | |
235 | return -EHOSTUNREACH; | |
236 | } | |
237 | conn = kmalloc(sizeof(*conn), GFP_ATOMIC); | |
8a0f6ebe YX |
238 | if (!conn) { |
239 | err = -EHOSTUNREACH; | |
240 | goto exit; | |
241 | } | |
02be61a9 JPM |
242 | conn->peer_node = dnode; |
243 | conn->port = port; | |
244 | conn->peer_port = peer_port; | |
245 | ||
246 | tipc_node_lock(node); | |
247 | list_add_tail(&conn->list, &node->conn_sks); | |
248 | tipc_node_unlock(node); | |
8a0f6ebe YX |
249 | exit: |
250 | tipc_node_put(node); | |
251 | return err; | |
02be61a9 JPM |
252 | } |
253 | ||
f2f9800d | 254 | void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port) |
02be61a9 JPM |
255 | { |
256 | struct tipc_node *node; | |
257 | struct tipc_sock_conn *conn, *safe; | |
258 | ||
34747539 | 259 | if (in_own_node(net, dnode)) |
02be61a9 JPM |
260 | return; |
261 | ||
f2f9800d | 262 | node = tipc_node_find(net, dnode); |
02be61a9 JPM |
263 | if (!node) |
264 | return; | |
265 | ||
266 | tipc_node_lock(node); | |
267 | list_for_each_entry_safe(conn, safe, &node->conn_sks, list) { | |
268 | if (port != conn->port) | |
269 | continue; | |
270 | list_del(&conn->list); | |
271 | kfree(conn); | |
272 | } | |
273 | tipc_node_unlock(node); | |
8a0f6ebe | 274 | tipc_node_put(node); |
02be61a9 JPM |
275 | } |
276 | ||
8a1577c9 JPM |
277 | /* tipc_node_timeout - handle expiration of node timer |
278 | */ | |
279 | static void tipc_node_timeout(unsigned long data) | |
280 | { | |
281 | struct tipc_node *n = (struct tipc_node *)data; | |
598411d7 | 282 | struct tipc_link_entry *le; |
8a1577c9 | 283 | struct sk_buff_head xmitq; |
8a1577c9 JPM |
284 | int bearer_id; |
285 | int rc = 0; | |
286 | ||
287 | __skb_queue_head_init(&xmitq); | |
288 | ||
289 | for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) { | |
290 | tipc_node_lock(n); | |
598411d7 JPM |
291 | le = &n->links[bearer_id]; |
292 | if (le->link) { | |
8a1577c9 | 293 | /* Link tolerance may change asynchronously: */ |
598411d7 JPM |
294 | tipc_node_calculate_timer(n, le->link); |
295 | rc = tipc_link_timeout(le->link, &xmitq); | |
8a1577c9 JPM |
296 | } |
297 | tipc_node_unlock(n); | |
598411d7 JPM |
298 | tipc_bearer_xmit(n->net, bearer_id, &xmitq, &le->maddr); |
299 | if (rc & TIPC_LINK_DOWN_EVT) | |
300 | tipc_node_link_down(n, bearer_id, false); | |
8a1577c9 JPM |
301 | } |
302 | if (!mod_timer(&n->timer, jiffies + n->keepalive_intv)) | |
303 | tipc_node_get(n); | |
304 | tipc_node_put(n); | |
305 | } | |
306 | ||
b97bf3fd | 307 | /** |
598411d7 JPM |
308 | * __tipc_node_link_up - handle addition of link |
309 | * Node lock must be held by caller | |
b97bf3fd PL |
310 | * Link becomes active (alone or shared) or standby, depending on its priority. |
311 | */ | |
598411d7 JPM |
312 | static void __tipc_node_link_up(struct tipc_node *n, int bearer_id, |
313 | struct sk_buff_head *xmitq) | |
b97bf3fd | 314 | { |
36e78a46 JPM |
315 | int *slot0 = &n->active_links[0]; |
316 | int *slot1 = &n->active_links[1]; | |
6e498158 JPM |
317 | struct tipc_link *ol = node_active_link(n, 0); |
318 | struct tipc_link *nl = n->links[bearer_id].link; | |
9d13ec65 | 319 | |
598411d7 JPM |
320 | if (!nl || !tipc_link_is_up(nl)) |
321 | return; | |
322 | ||
6e498158 JPM |
323 | if (n->working_links > 1) { |
324 | pr_warn("Attempt to establish 3rd link to %x\n", n->addr); | |
325 | return; | |
326 | } | |
9d13ec65 JPM |
327 | n->working_links++; |
328 | n->action_flags |= TIPC_NOTIFY_LINK_UP; | |
6e498158 JPM |
329 | n->link_id = nl->peer_bearer_id << 16 | bearer_id; |
330 | ||
331 | /* Leave room for tunnel header when returning 'mtu' to users: */ | |
332 | n->links[bearer_id].mtu = nl->mtu - INT_H_SIZE; | |
7b8613e0 | 333 | |
cbeb83ca JPM |
334 | tipc_bearer_add_dest(n->net, bearer_id, n->addr); |
335 | ||
3fa9cacd | 336 | pr_debug("Established link <%s> on network plane %c\n", |
6e498158 | 337 | nl->name, nl->net_plane); |
c4307285 | 338 | |
6e498158 JPM |
339 | /* First link? => give it both slots */ |
340 | if (!ol) { | |
36e78a46 JPM |
341 | *slot0 = bearer_id; |
342 | *slot1 = bearer_id; | |
5045f7b9 | 343 | tipc_link_build_bcast_sync_msg(nl, xmitq); |
9d13ec65 JPM |
344 | node_established_contact(n); |
345 | return; | |
b97bf3fd | 346 | } |
36e78a46 | 347 | |
6e498158 JPM |
348 | /* Second link => redistribute slots */ |
349 | if (nl->priority > ol->priority) { | |
350 | pr_debug("Old link <%s> becomes standby\n", ol->name); | |
36e78a46 | 351 | *slot0 = bearer_id; |
6e498158 JPM |
352 | *slot1 = bearer_id; |
353 | } else if (nl->priority == ol->priority) { | |
354 | *slot0 = bearer_id; | |
355 | } else { | |
356 | pr_debug("New link <%s> is standby\n", nl->name); | |
b97bf3fd | 357 | } |
b97bf3fd | 358 | |
6e498158 JPM |
359 | /* Prepare synchronization with first link */ |
360 | tipc_link_tnl_prepare(ol, nl, SYNCH_MSG, xmitq); | |
b97bf3fd PL |
361 | } |
362 | ||
363 | /** | |
598411d7 JPM |
364 | * tipc_node_link_up - handle addition of link |
365 | * | |
366 | * Link becomes active (alone or shared) or standby, depending on its priority. | |
b97bf3fd | 367 | */ |
598411d7 JPM |
368 | static void tipc_node_link_up(struct tipc_node *n, int bearer_id, |
369 | struct sk_buff_head *xmitq) | |
b97bf3fd | 370 | { |
598411d7 JPM |
371 | tipc_node_lock(n); |
372 | __tipc_node_link_up(n, bearer_id, xmitq); | |
373 | tipc_node_unlock(n); | |
374 | } | |
375 | ||
376 | /** | |
377 | * __tipc_node_link_down - handle loss of link | |
378 | */ | |
379 | static void __tipc_node_link_down(struct tipc_node *n, int *bearer_id, | |
380 | struct sk_buff_head *xmitq, | |
381 | struct tipc_media_addr **maddr) | |
382 | { | |
383 | struct tipc_link_entry *le = &n->links[*bearer_id]; | |
36e78a46 JPM |
384 | int *slot0 = &n->active_links[0]; |
385 | int *slot1 = &n->active_links[1]; | |
386 | int i, highest = 0; | |
6e498158 | 387 | struct tipc_link *l, *_l, *tnl; |
b97bf3fd | 388 | |
598411d7 | 389 | l = n->links[*bearer_id].link; |
662921cd | 390 | if (!l || tipc_link_is_reset(l)) |
655fb243 JPM |
391 | return; |
392 | ||
9d13ec65 JPM |
393 | n->working_links--; |
394 | n->action_flags |= TIPC_NOTIFY_LINK_DOWN; | |
598411d7 | 395 | n->link_id = l->peer_bearer_id << 16 | *bearer_id; |
5392d646 | 396 | |
598411d7 | 397 | tipc_bearer_remove_dest(n->net, *bearer_id, n->addr); |
655fb243 | 398 | |
3fa9cacd | 399 | pr_debug("Lost link <%s> on network plane %c\n", |
9d13ec65 | 400 | l->name, l->net_plane); |
16e166b8 | 401 | |
36e78a46 JPM |
402 | /* Select new active link if any available */ |
403 | *slot0 = INVALID_BEARER_ID; | |
404 | *slot1 = INVALID_BEARER_ID; | |
405 | for (i = 0; i < MAX_BEARERS; i++) { | |
406 | _l = n->links[i].link; | |
407 | if (!_l || !tipc_link_is_up(_l)) | |
408 | continue; | |
655fb243 JPM |
409 | if (_l == l) |
410 | continue; | |
36e78a46 JPM |
411 | if (_l->priority < highest) |
412 | continue; | |
413 | if (_l->priority > highest) { | |
414 | highest = _l->priority; | |
415 | *slot0 = i; | |
416 | *slot1 = i; | |
417 | continue; | |
418 | } | |
419 | *slot1 = i; | |
420 | } | |
655fb243 | 421 | |
6e498158 JPM |
422 | if (!tipc_node_is_up(n)) { |
423 | tipc_link_reset(l); | |
598411d7 | 424 | node_lost_contact(n, &le->inputq); |
6e498158 JPM |
425 | return; |
426 | } | |
655fb243 | 427 | |
6e498158 JPM |
428 | /* There is still a working link => initiate failover */ |
429 | tnl = node_active_link(n, 0); | |
6e498158 | 430 | n->sync_point = tnl->rcv_nxt + (U16_MAX / 2 - 1); |
598411d7 | 431 | tipc_link_tnl_prepare(l, tnl, FAILOVER_MSG, xmitq); |
655fb243 | 432 | tipc_link_reset(l); |
662921cd | 433 | tipc_link_fsm_evt(l, LINK_FAILOVER_BEGIN_EVT); |
598411d7 JPM |
434 | tipc_node_fsm_evt(n, NODE_FAILOVER_BEGIN_EVT); |
435 | *maddr = &n->links[tnl->bearer_id].maddr; | |
436 | *bearer_id = tnl->bearer_id; | |
437 | } | |
438 | ||
439 | static void tipc_node_link_down(struct tipc_node *n, int bearer_id, bool delete) | |
440 | { | |
441 | struct tipc_link_entry *le = &n->links[bearer_id]; | |
442 | struct tipc_media_addr *maddr; | |
443 | struct sk_buff_head xmitq; | |
444 | ||
445 | __skb_queue_head_init(&xmitq); | |
446 | ||
447 | tipc_node_lock(n); | |
448 | __tipc_node_link_down(n, &bearer_id, &xmitq, &maddr); | |
449 | if (delete && le->link) { | |
450 | kfree(le->link); | |
451 | le->link = NULL; | |
452 | n->link_cnt--; | |
453 | } | |
454 | tipc_node_unlock(n); | |
455 | ||
456 | tipc_bearer_xmit(n->net, bearer_id, &xmitq, maddr); | |
457 | tipc_sk_rcv(n->net, &le->inputq); | |
b97bf3fd PL |
458 | } |
459 | ||
9d13ec65 | 460 | bool tipc_node_is_up(struct tipc_node *n) |
b97bf3fd | 461 | { |
36e78a46 | 462 | return n->active_links[0] != INVALID_BEARER_ID; |
b97bf3fd PL |
463 | } |
464 | ||
cf148816 JPM |
465 | void tipc_node_check_dest(struct net *net, u32 onode, |
466 | struct tipc_bearer *b, | |
467 | u16 capabilities, u32 signature, | |
468 | struct tipc_media_addr *maddr, | |
469 | bool *respond, bool *dupl_addr) | |
d3a43b90 | 470 | { |
cf148816 JPM |
471 | struct tipc_node *n; |
472 | struct tipc_link *l; | |
473 | struct tipc_media_addr *curr_maddr; | |
474 | struct sk_buff_head *inputq; | |
475 | bool addr_match = false; | |
476 | bool sign_match = false; | |
477 | bool link_up = false; | |
478 | bool accept_addr = false; | |
598411d7 | 479 | bool reset = true; |
cf148816 JPM |
480 | *dupl_addr = false; |
481 | *respond = false; | |
482 | ||
483 | n = tipc_node_create(net, onode, capabilities); | |
484 | if (!n) | |
485 | return; | |
d3a43b90 | 486 | |
cf148816 JPM |
487 | tipc_node_lock(n); |
488 | ||
489 | curr_maddr = &n->links[b->identity].maddr; | |
490 | inputq = &n->links[b->identity].inputq; | |
491 | ||
492 | /* Prepare to validate requesting node's signature and media address */ | |
493 | l = n->links[b->identity].link; | |
494 | link_up = l && tipc_link_is_up(l); | |
495 | addr_match = l && !memcmp(curr_maddr, maddr, sizeof(*maddr)); | |
496 | sign_match = (signature == n->signature); | |
497 | ||
498 | /* These three flags give us eight permutations: */ | |
499 | ||
500 | if (sign_match && addr_match && link_up) { | |
501 | /* All is fine. Do nothing. */ | |
598411d7 | 502 | reset = false; |
cf148816 JPM |
503 | } else if (sign_match && addr_match && !link_up) { |
504 | /* Respond. The link will come up in due time */ | |
505 | *respond = true; | |
506 | } else if (sign_match && !addr_match && link_up) { | |
507 | /* Peer has changed i/f address without rebooting. | |
508 | * If so, the link will reset soon, and the next | |
509 | * discovery will be accepted. So we can ignore it. | |
510 | * It may also be an cloned or malicious peer having | |
511 | * chosen the same node address and signature as an | |
512 | * existing one. | |
513 | * Ignore requests until the link goes down, if ever. | |
514 | */ | |
515 | *dupl_addr = true; | |
516 | } else if (sign_match && !addr_match && !link_up) { | |
517 | /* Peer link has changed i/f address without rebooting. | |
518 | * It may also be a cloned or malicious peer; we can't | |
519 | * distinguish between the two. | |
520 | * The signature is correct, so we must accept. | |
521 | */ | |
522 | accept_addr = true; | |
523 | *respond = true; | |
524 | } else if (!sign_match && addr_match && link_up) { | |
525 | /* Peer node rebooted. Two possibilities: | |
526 | * - Delayed re-discovery; this link endpoint has already | |
527 | * reset and re-established contact with the peer, before | |
528 | * receiving a discovery message from that node. | |
529 | * (The peer happened to receive one from this node first). | |
530 | * - The peer came back so fast that our side has not | |
531 | * discovered it yet. Probing from this side will soon | |
532 | * reset the link, since there can be no working link | |
533 | * endpoint at the peer end, and the link will re-establish. | |
534 | * Accept the signature, since it comes from a known peer. | |
535 | */ | |
536 | n->signature = signature; | |
537 | } else if (!sign_match && addr_match && !link_up) { | |
538 | /* The peer node has rebooted. | |
539 | * Accept signature, since it is a known peer. | |
540 | */ | |
541 | n->signature = signature; | |
542 | *respond = true; | |
543 | } else if (!sign_match && !addr_match && link_up) { | |
544 | /* Peer rebooted with new address, or a new/duplicate peer. | |
545 | * Ignore until the link goes down, if ever. | |
546 | */ | |
547 | *dupl_addr = true; | |
548 | } else if (!sign_match && !addr_match && !link_up) { | |
549 | /* Peer rebooted with new address, or it is a new peer. | |
550 | * Accept signature and address. | |
551 | */ | |
552 | n->signature = signature; | |
553 | accept_addr = true; | |
554 | *respond = true; | |
555 | } | |
d3a43b90 | 556 | |
cf148816 JPM |
557 | if (!accept_addr) |
558 | goto exit; | |
d3a43b90 | 559 | |
cf148816 | 560 | /* Now create new link if not already existing */ |
8a1577c9 | 561 | if (!l) { |
d39bbd44 | 562 | l = tipc_link_create(n, b, maddr, inputq, &n->bclink.namedq); |
cf148816 JPM |
563 | if (!l) { |
564 | *respond = false; | |
565 | goto exit; | |
566 | } | |
8a1577c9 | 567 | tipc_node_calculate_timer(n, l); |
cf148816 | 568 | if (n->link_cnt == 1) |
8a1577c9 JPM |
569 | if (!mod_timer(&n->timer, jiffies + n->keepalive_intv)) |
570 | tipc_node_get(n); | |
8a1577c9 | 571 | } |
d3a43b90 | 572 | memcpy(&l->media_addr, maddr, sizeof(*maddr)); |
cf148816 | 573 | memcpy(curr_maddr, maddr, sizeof(*maddr)); |
cf148816 JPM |
574 | exit: |
575 | tipc_node_unlock(n); | |
598411d7 JPM |
576 | if (reset) |
577 | tipc_node_link_down(n, b->identity, false); | |
cf148816 | 578 | tipc_node_put(n); |
d3a43b90 JPM |
579 | } |
580 | ||
6144a996 JPM |
581 | void tipc_node_delete_links(struct net *net, int bearer_id) |
582 | { | |
583 | struct tipc_net *tn = net_generic(net, tipc_net_id); | |
6144a996 JPM |
584 | struct tipc_node *n; |
585 | ||
586 | rcu_read_lock(); | |
587 | list_for_each_entry_rcu(n, &tn->node_list, list) { | |
598411d7 | 588 | tipc_node_link_down(n, bearer_id, true); |
6144a996 JPM |
589 | } |
590 | rcu_read_unlock(); | |
591 | } | |
592 | ||
593 | static void tipc_node_reset_links(struct tipc_node *n) | |
594 | { | |
595 | char addr_string[16]; | |
598411d7 | 596 | int i; |
6144a996 JPM |
597 | |
598 | pr_warn("Resetting all links to %s\n", | |
599 | tipc_addr_string_fill(addr_string, n->addr)); | |
600 | ||
601 | for (i = 0; i < MAX_BEARERS; i++) { | |
598411d7 | 602 | tipc_node_link_down(n, i, false); |
6144a996 | 603 | } |
6144a996 JPM |
604 | } |
605 | ||
a18c4bc3 | 606 | void tipc_node_attach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr) |
b97bf3fd | 607 | { |
9d13ec65 | 608 | n_ptr->links[l_ptr->bearer_id].link = l_ptr; |
37b9c08a | 609 | n_ptr->link_cnt++; |
b97bf3fd PL |
610 | } |
611 | ||
a18c4bc3 | 612 | void tipc_node_detach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr) |
b97bf3fd | 613 | { |
7d33939f JPM |
614 | int i; |
615 | ||
616 | for (i = 0; i < MAX_BEARERS; i++) { | |
9d13ec65 | 617 | if (l_ptr != n_ptr->links[i].link) |
074bb43e | 618 | continue; |
9d13ec65 | 619 | n_ptr->links[i].link = NULL; |
074bb43e | 620 | n_ptr->link_cnt--; |
7d33939f | 621 | } |
b97bf3fd PL |
622 | } |
623 | ||
1a20cc25 JPM |
624 | /* tipc_node_fsm_evt - node finite state machine |
625 | * Determines when contact is allowed with peer node | |
626 | */ | |
d999297c | 627 | static void tipc_node_fsm_evt(struct tipc_node *n, int evt) |
1a20cc25 JPM |
628 | { |
629 | int state = n->state; | |
630 | ||
631 | switch (state) { | |
632 | case SELF_DOWN_PEER_DOWN: | |
633 | switch (evt) { | |
634 | case SELF_ESTABL_CONTACT_EVT: | |
635 | state = SELF_UP_PEER_COMING; | |
636 | break; | |
637 | case PEER_ESTABL_CONTACT_EVT: | |
638 | state = SELF_COMING_PEER_UP; | |
639 | break; | |
640 | case SELF_LOST_CONTACT_EVT: | |
641 | case PEER_LOST_CONTACT_EVT: | |
642 | break; | |
66996b6c JPM |
643 | case NODE_SYNCH_END_EVT: |
644 | case NODE_SYNCH_BEGIN_EVT: | |
645 | case NODE_FAILOVER_BEGIN_EVT: | |
646 | case NODE_FAILOVER_END_EVT: | |
1a20cc25 | 647 | default: |
66996b6c | 648 | goto illegal_evt; |
1a20cc25 JPM |
649 | } |
650 | break; | |
651 | case SELF_UP_PEER_UP: | |
652 | switch (evt) { | |
653 | case SELF_LOST_CONTACT_EVT: | |
654 | state = SELF_DOWN_PEER_LEAVING; | |
655 | break; | |
656 | case PEER_LOST_CONTACT_EVT: | |
657 | state = SELF_LEAVING_PEER_DOWN; | |
658 | break; | |
66996b6c JPM |
659 | case NODE_SYNCH_BEGIN_EVT: |
660 | state = NODE_SYNCHING; | |
661 | break; | |
662 | case NODE_FAILOVER_BEGIN_EVT: | |
663 | state = NODE_FAILINGOVER; | |
664 | break; | |
1a20cc25 JPM |
665 | case SELF_ESTABL_CONTACT_EVT: |
666 | case PEER_ESTABL_CONTACT_EVT: | |
66996b6c JPM |
667 | case NODE_SYNCH_END_EVT: |
668 | case NODE_FAILOVER_END_EVT: | |
1a20cc25 JPM |
669 | break; |
670 | default: | |
66996b6c | 671 | goto illegal_evt; |
1a20cc25 JPM |
672 | } |
673 | break; | |
674 | case SELF_DOWN_PEER_LEAVING: | |
675 | switch (evt) { | |
676 | case PEER_LOST_CONTACT_EVT: | |
677 | state = SELF_DOWN_PEER_DOWN; | |
678 | break; | |
679 | case SELF_ESTABL_CONTACT_EVT: | |
680 | case PEER_ESTABL_CONTACT_EVT: | |
681 | case SELF_LOST_CONTACT_EVT: | |
682 | break; | |
66996b6c JPM |
683 | case NODE_SYNCH_END_EVT: |
684 | case NODE_SYNCH_BEGIN_EVT: | |
685 | case NODE_FAILOVER_BEGIN_EVT: | |
686 | case NODE_FAILOVER_END_EVT: | |
1a20cc25 | 687 | default: |
66996b6c | 688 | goto illegal_evt; |
1a20cc25 JPM |
689 | } |
690 | break; | |
691 | case SELF_UP_PEER_COMING: | |
692 | switch (evt) { | |
693 | case PEER_ESTABL_CONTACT_EVT: | |
694 | state = SELF_UP_PEER_UP; | |
695 | break; | |
696 | case SELF_LOST_CONTACT_EVT: | |
697 | state = SELF_DOWN_PEER_LEAVING; | |
698 | break; | |
699 | case SELF_ESTABL_CONTACT_EVT: | |
700 | case PEER_LOST_CONTACT_EVT: | |
701 | break; | |
66996b6c JPM |
702 | case NODE_SYNCH_END_EVT: |
703 | case NODE_SYNCH_BEGIN_EVT: | |
704 | case NODE_FAILOVER_BEGIN_EVT: | |
705 | case NODE_FAILOVER_END_EVT: | |
1a20cc25 | 706 | default: |
66996b6c | 707 | goto illegal_evt; |
1a20cc25 JPM |
708 | } |
709 | break; | |
710 | case SELF_COMING_PEER_UP: | |
711 | switch (evt) { | |
712 | case SELF_ESTABL_CONTACT_EVT: | |
713 | state = SELF_UP_PEER_UP; | |
714 | break; | |
715 | case PEER_LOST_CONTACT_EVT: | |
716 | state = SELF_LEAVING_PEER_DOWN; | |
717 | break; | |
718 | case SELF_LOST_CONTACT_EVT: | |
719 | case PEER_ESTABL_CONTACT_EVT: | |
720 | break; | |
66996b6c JPM |
721 | case NODE_SYNCH_END_EVT: |
722 | case NODE_SYNCH_BEGIN_EVT: | |
723 | case NODE_FAILOVER_BEGIN_EVT: | |
724 | case NODE_FAILOVER_END_EVT: | |
1a20cc25 | 725 | default: |
66996b6c | 726 | goto illegal_evt; |
1a20cc25 JPM |
727 | } |
728 | break; | |
729 | case SELF_LEAVING_PEER_DOWN: | |
730 | switch (evt) { | |
731 | case SELF_LOST_CONTACT_EVT: | |
732 | state = SELF_DOWN_PEER_DOWN; | |
733 | break; | |
734 | case SELF_ESTABL_CONTACT_EVT: | |
735 | case PEER_ESTABL_CONTACT_EVT: | |
736 | case PEER_LOST_CONTACT_EVT: | |
737 | break; | |
66996b6c JPM |
738 | case NODE_SYNCH_END_EVT: |
739 | case NODE_SYNCH_BEGIN_EVT: | |
740 | case NODE_FAILOVER_BEGIN_EVT: | |
741 | case NODE_FAILOVER_END_EVT: | |
742 | default: | |
743 | goto illegal_evt; | |
744 | } | |
745 | break; | |
746 | case NODE_FAILINGOVER: | |
747 | switch (evt) { | |
748 | case SELF_LOST_CONTACT_EVT: | |
749 | state = SELF_DOWN_PEER_LEAVING; | |
750 | break; | |
751 | case PEER_LOST_CONTACT_EVT: | |
752 | state = SELF_LEAVING_PEER_DOWN; | |
753 | break; | |
754 | case NODE_FAILOVER_END_EVT: | |
755 | state = SELF_UP_PEER_UP; | |
756 | break; | |
757 | case NODE_FAILOVER_BEGIN_EVT: | |
758 | case SELF_ESTABL_CONTACT_EVT: | |
759 | case PEER_ESTABL_CONTACT_EVT: | |
760 | break; | |
761 | case NODE_SYNCH_BEGIN_EVT: | |
762 | case NODE_SYNCH_END_EVT: | |
1a20cc25 | 763 | default: |
66996b6c JPM |
764 | goto illegal_evt; |
765 | } | |
766 | break; | |
767 | case NODE_SYNCHING: | |
768 | switch (evt) { | |
769 | case SELF_LOST_CONTACT_EVT: | |
770 | state = SELF_DOWN_PEER_LEAVING; | |
771 | break; | |
772 | case PEER_LOST_CONTACT_EVT: | |
773 | state = SELF_LEAVING_PEER_DOWN; | |
774 | break; | |
775 | case NODE_SYNCH_END_EVT: | |
776 | state = SELF_UP_PEER_UP; | |
777 | break; | |
778 | case NODE_FAILOVER_BEGIN_EVT: | |
779 | state = NODE_FAILINGOVER; | |
780 | break; | |
781 | case NODE_SYNCH_BEGIN_EVT: | |
782 | case SELF_ESTABL_CONTACT_EVT: | |
783 | case PEER_ESTABL_CONTACT_EVT: | |
784 | break; | |
785 | case NODE_FAILOVER_END_EVT: | |
786 | default: | |
787 | goto illegal_evt; | |
1a20cc25 JPM |
788 | } |
789 | break; | |
790 | default: | |
791 | pr_err("Unknown node fsm state %x\n", state); | |
792 | break; | |
793 | } | |
1a20cc25 | 794 | n->state = state; |
66996b6c JPM |
795 | return; |
796 | ||
797 | illegal_evt: | |
798 | pr_err("Illegal node fsm evt %x in state %x\n", evt, state); | |
1a20cc25 JPM |
799 | } |
800 | ||
6e498158 | 801 | bool tipc_node_filter_pkt(struct tipc_node *n, struct tipc_msg *hdr) |
1a20cc25 JPM |
802 | { |
803 | int state = n->state; | |
804 | ||
805 | if (likely(state == SELF_UP_PEER_UP)) | |
806 | return true; | |
d999297c | 807 | |
1a20cc25 JPM |
808 | if (state == SELF_LEAVING_PEER_DOWN) |
809 | return false; | |
d999297c JPM |
810 | |
811 | if (state == SELF_DOWN_PEER_LEAVING) { | |
6e498158 | 812 | if (msg_peer_node_is_up(hdr)) |
d999297c | 813 | return false; |
d999297c | 814 | } |
6e498158 JPM |
815 | |
816 | return true; | |
1a20cc25 JPM |
817 | } |
818 | ||
6c00055a | 819 | static void node_established_contact(struct tipc_node *n_ptr) |
b97bf3fd | 820 | { |
1a20cc25 | 821 | tipc_node_fsm_evt(n_ptr, SELF_ESTABL_CONTACT_EVT); |
aecb9bb8 | 822 | n_ptr->action_flags |= TIPC_NOTIFY_NODE_UP; |
c64f7a6a | 823 | n_ptr->bclink.oos_state = 0; |
1da46568 YX |
824 | n_ptr->bclink.acked = tipc_bclink_get_last_sent(n_ptr->net); |
825 | tipc_bclink_add_node(n_ptr->net, n_ptr->addr); | |
b97bf3fd PL |
826 | } |
827 | ||
598411d7 JPM |
828 | static void node_lost_contact(struct tipc_node *n_ptr, |
829 | struct sk_buff_head *inputq) | |
b97bf3fd | 830 | { |
b97bf3fd | 831 | char addr_string[16]; |
708ac32c | 832 | struct tipc_sock_conn *conn, *safe; |
598411d7 | 833 | struct tipc_link *l; |
708ac32c JPM |
834 | struct list_head *conns = &n_ptr->conn_sks; |
835 | struct sk_buff *skb; | |
836 | struct tipc_net *tn = net_generic(n_ptr->net, tipc_net_id); | |
837 | uint i; | |
b97bf3fd | 838 | |
3fa9cacd EH |
839 | pr_debug("Lost contact with %s\n", |
840 | tipc_addr_string_fill(addr_string, n_ptr->addr)); | |
c5bd4d85 AS |
841 | |
842 | /* Flush broadcast link info associated with lost node */ | |
389dd9bc | 843 | if (n_ptr->bclink.recv_permitted) { |
05dcc5aa | 844 | __skb_queue_purge(&n_ptr->bclink.deferdq); |
c5bd4d85 | 845 | |
37e22164 JPM |
846 | if (n_ptr->bclink.reasm_buf) { |
847 | kfree_skb(n_ptr->bclink.reasm_buf); | |
848 | n_ptr->bclink.reasm_buf = NULL; | |
c5bd4d85 AS |
849 | } |
850 | ||
1da46568 | 851 | tipc_bclink_remove_node(n_ptr->net, n_ptr->addr); |
36559591 | 852 | tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ); |
b97bf3fd | 853 | |
389dd9bc | 854 | n_ptr->bclink.recv_permitted = false; |
c5bd4d85 | 855 | } |
b97bf3fd | 856 | |
dff29b1a | 857 | /* Abort any ongoing link failover */ |
b97bf3fd | 858 | for (i = 0; i < MAX_BEARERS; i++) { |
598411d7 JPM |
859 | l = n_ptr->links[i].link; |
860 | if (l) | |
861 | tipc_link_fsm_evt(l, LINK_FAILOVER_END_EVT); | |
b97bf3fd | 862 | } |
598411d7 | 863 | |
708ac32c | 864 | /* Prevent re-contact with node until cleanup is done */ |
1a20cc25 | 865 | tipc_node_fsm_evt(n_ptr, SELF_LOST_CONTACT_EVT); |
708ac32c JPM |
866 | |
867 | /* Notify publications from this node */ | |
868 | n_ptr->action_flags |= TIPC_NOTIFY_NODE_DOWN; | |
869 | ||
870 | /* Notify sockets connected to node */ | |
871 | list_for_each_entry_safe(conn, safe, conns, list) { | |
872 | skb = tipc_msg_create(TIPC_CRITICAL_IMPORTANCE, TIPC_CONN_MSG, | |
873 | SHORT_H_SIZE, 0, tn->own_addr, | |
874 | conn->peer_node, conn->port, | |
875 | conn->peer_port, TIPC_ERR_NO_NODE); | |
876 | if (likely(skb)) { | |
598411d7 | 877 | skb_queue_tail(inputq, skb); |
708ac32c JPM |
878 | n_ptr->action_flags |= TIPC_MSG_EVT; |
879 | } | |
880 | list_del(&conn->list); | |
881 | kfree(conn); | |
882 | } | |
b97bf3fd PL |
883 | } |
884 | ||
78acb1f9 EH |
885 | /** |
886 | * tipc_node_get_linkname - get the name of a link | |
887 | * | |
888 | * @bearer_id: id of the bearer | |
889 | * @node: peer node address | |
890 | * @linkname: link name output buffer | |
891 | * | |
892 | * Returns 0 on success | |
893 | */ | |
f2f9800d YX |
894 | int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 addr, |
895 | char *linkname, size_t len) | |
78acb1f9 EH |
896 | { |
897 | struct tipc_link *link; | |
8a0f6ebe | 898 | int err = -EINVAL; |
f2f9800d | 899 | struct tipc_node *node = tipc_node_find(net, addr); |
78acb1f9 | 900 | |
8a0f6ebe YX |
901 | if (!node) |
902 | return err; | |
903 | ||
904 | if (bearer_id >= MAX_BEARERS) | |
905 | goto exit; | |
906 | ||
78acb1f9 | 907 | tipc_node_lock(node); |
9d13ec65 | 908 | link = node->links[bearer_id].link; |
78acb1f9 EH |
909 | if (link) { |
910 | strncpy(linkname, link->name, len); | |
8a0f6ebe | 911 | err = 0; |
78acb1f9 | 912 | } |
8a0f6ebe | 913 | exit: |
78acb1f9 | 914 | tipc_node_unlock(node); |
8a0f6ebe YX |
915 | tipc_node_put(node); |
916 | return err; | |
78acb1f9 | 917 | } |
9db9fdd1 YX |
918 | |
919 | void tipc_node_unlock(struct tipc_node *node) | |
920 | { | |
f2f9800d | 921 | struct net *net = node->net; |
ca0c4273 | 922 | u32 addr = 0; |
c637c103 | 923 | u32 flags = node->action_flags; |
7b8613e0 | 924 | u32 link_id = 0; |
708ac32c | 925 | struct list_head *publ_list; |
c637c103 | 926 | struct sk_buff_head *inputq = node->inputq; |
708ac32c | 927 | struct sk_buff_head *namedq; |
9db9fdd1 | 928 | |
c637c103 JPM |
929 | if (likely(!flags || (flags == TIPC_MSG_EVT))) { |
930 | node->action_flags = 0; | |
9db9fdd1 | 931 | spin_unlock_bh(&node->lock); |
c637c103 JPM |
932 | if (flags == TIPC_MSG_EVT) |
933 | tipc_sk_rcv(net, inputq); | |
9db9fdd1 YX |
934 | return; |
935 | } | |
936 | ||
7b8613e0 YX |
937 | addr = node->addr; |
938 | link_id = node->link_id; | |
c637c103 | 939 | namedq = node->namedq; |
708ac32c | 940 | publ_list = &node->publ_list; |
7b8613e0 | 941 | |
cb1b7280 JPM |
942 | node->action_flags &= ~(TIPC_MSG_EVT | |
943 | TIPC_NOTIFY_NODE_DOWN | TIPC_NOTIFY_NODE_UP | | |
944 | TIPC_NOTIFY_LINK_DOWN | TIPC_NOTIFY_LINK_UP | | |
945 | TIPC_WAKEUP_BCAST_USERS | TIPC_BCAST_MSG_EVT | | |
b952b2be | 946 | TIPC_NAMED_MSG_EVT | TIPC_BCAST_RESET); |
7b8613e0 | 947 | |
9db9fdd1 YX |
948 | spin_unlock_bh(&node->lock); |
949 | ||
708ac32c JPM |
950 | if (flags & TIPC_NOTIFY_NODE_DOWN) |
951 | tipc_publ_notify(net, publ_list, addr); | |
50100a5e | 952 | |
908344cd | 953 | if (flags & TIPC_WAKEUP_BCAST_USERS) |
f2f9800d | 954 | tipc_bclink_wakeup_users(net); |
908344cd | 955 | |
7b8613e0 | 956 | if (flags & TIPC_NOTIFY_NODE_UP) |
f2f9800d | 957 | tipc_named_node_up(net, addr); |
7b8613e0 YX |
958 | |
959 | if (flags & TIPC_NOTIFY_LINK_UP) | |
f2f9800d | 960 | tipc_nametbl_publish(net, TIPC_LINK_STATE, addr, addr, |
7b8613e0 YX |
961 | TIPC_NODE_SCOPE, link_id, addr); |
962 | ||
963 | if (flags & TIPC_NOTIFY_LINK_DOWN) | |
f2f9800d | 964 | tipc_nametbl_withdraw(net, TIPC_LINK_STATE, addr, |
7b8613e0 | 965 | link_id, addr); |
c637c103 JPM |
966 | |
967 | if (flags & TIPC_MSG_EVT) | |
968 | tipc_sk_rcv(net, inputq); | |
969 | ||
970 | if (flags & TIPC_NAMED_MSG_EVT) | |
971 | tipc_named_rcv(net, namedq); | |
cb1b7280 JPM |
972 | |
973 | if (flags & TIPC_BCAST_MSG_EVT) | |
974 | tipc_bclink_input(net); | |
b952b2be YX |
975 | |
976 | if (flags & TIPC_BCAST_RESET) | |
6144a996 | 977 | tipc_node_reset_links(node); |
9db9fdd1 | 978 | } |
3e4b6ab5 RA |
979 | |
980 | /* Caller should hold node lock for the passed node */ | |
d8182804 | 981 | static int __tipc_nl_add_node(struct tipc_nl_msg *msg, struct tipc_node *node) |
3e4b6ab5 RA |
982 | { |
983 | void *hdr; | |
984 | struct nlattr *attrs; | |
985 | ||
bfb3e5dd | 986 | hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family, |
3e4b6ab5 RA |
987 | NLM_F_MULTI, TIPC_NL_NODE_GET); |
988 | if (!hdr) | |
989 | return -EMSGSIZE; | |
990 | ||
991 | attrs = nla_nest_start(msg->skb, TIPC_NLA_NODE); | |
992 | if (!attrs) | |
993 | goto msg_full; | |
994 | ||
995 | if (nla_put_u32(msg->skb, TIPC_NLA_NODE_ADDR, node->addr)) | |
996 | goto attr_msg_full; | |
997 | if (tipc_node_is_up(node)) | |
998 | if (nla_put_flag(msg->skb, TIPC_NLA_NODE_UP)) | |
999 | goto attr_msg_full; | |
1000 | ||
1001 | nla_nest_end(msg->skb, attrs); | |
1002 | genlmsg_end(msg->skb, hdr); | |
1003 | ||
1004 | return 0; | |
1005 | ||
1006 | attr_msg_full: | |
1007 | nla_nest_cancel(msg->skb, attrs); | |
1008 | msg_full: | |
1009 | genlmsg_cancel(msg->skb, hdr); | |
1010 | ||
1011 | return -EMSGSIZE; | |
1012 | } | |
1013 | ||
af9b028e JPM |
1014 | static struct tipc_link *tipc_node_select_link(struct tipc_node *n, int sel, |
1015 | int *bearer_id, | |
1016 | struct tipc_media_addr **maddr) | |
1017 | { | |
1018 | int id = n->active_links[sel & 1]; | |
1019 | ||
1020 | if (unlikely(id < 0)) | |
1021 | return NULL; | |
1022 | ||
1023 | *bearer_id = id; | |
1024 | *maddr = &n->links[id].maddr; | |
1025 | return n->links[id].link; | |
1026 | } | |
1027 | ||
1028 | /** | |
1029 | * tipc_node_xmit() is the general link level function for message sending | |
1030 | * @net: the applicable net namespace | |
1031 | * @list: chain of buffers containing message | |
1032 | * @dnode: address of destination node | |
1033 | * @selector: a number used for deterministic link selection | |
1034 | * Consumes the buffer chain, except when returning -ELINKCONG | |
1035 | * Returns 0 if success, otherwise errno: -ELINKCONG,-EHOSTUNREACH,-EMSGSIZE | |
1036 | */ | |
1037 | int tipc_node_xmit(struct net *net, struct sk_buff_head *list, | |
1038 | u32 dnode, int selector) | |
1039 | { | |
1040 | struct tipc_link *l = NULL; | |
1041 | struct tipc_node *n; | |
1042 | struct sk_buff_head xmitq; | |
1043 | struct tipc_media_addr *maddr; | |
1044 | int bearer_id; | |
1045 | int rc = -EHOSTUNREACH; | |
1046 | ||
1047 | __skb_queue_head_init(&xmitq); | |
1048 | n = tipc_node_find(net, dnode); | |
1049 | if (likely(n)) { | |
1050 | tipc_node_lock(n); | |
1051 | l = tipc_node_select_link(n, selector, &bearer_id, &maddr); | |
1052 | if (likely(l)) | |
1053 | rc = tipc_link_xmit(l, list, &xmitq); | |
af9b028e | 1054 | tipc_node_unlock(n); |
598411d7 JPM |
1055 | if (unlikely(rc == -ENOBUFS)) |
1056 | tipc_node_link_down(n, bearer_id, false); | |
af9b028e JPM |
1057 | tipc_node_put(n); |
1058 | } | |
1059 | if (likely(!rc)) { | |
1060 | tipc_bearer_xmit(net, bearer_id, &xmitq, maddr); | |
1061 | return 0; | |
1062 | } | |
1063 | if (likely(in_own_node(net, dnode))) { | |
1064 | tipc_sk_rcv(net, list); | |
1065 | return 0; | |
1066 | } | |
1067 | return rc; | |
1068 | } | |
1069 | ||
1070 | /* tipc_node_xmit_skb(): send single buffer to destination | |
1071 | * Buffers sent via this functon are generally TIPC_SYSTEM_IMPORTANCE | |
1072 | * messages, which will not be rejected | |
1073 | * The only exception is datagram messages rerouted after secondary | |
1074 | * lookup, which are rare and safe to dispose of anyway. | |
1075 | * TODO: Return real return value, and let callers use | |
1076 | * tipc_wait_for_sendpkt() where applicable | |
1077 | */ | |
1078 | int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode, | |
1079 | u32 selector) | |
1080 | { | |
1081 | struct sk_buff_head head; | |
1082 | int rc; | |
1083 | ||
1084 | skb_queue_head_init(&head); | |
1085 | __skb_queue_tail(&head, skb); | |
1086 | rc = tipc_node_xmit(net, &head, dnode, selector); | |
1087 | if (rc == -ELINKCONG) | |
1088 | kfree_skb(skb); | |
1089 | return 0; | |
1090 | } | |
1091 | ||
6e498158 JPM |
1092 | /** |
1093 | * tipc_node_check_state - check and if necessary update node state | |
1094 | * @skb: TIPC packet | |
1095 | * @bearer_id: identity of bearer delivering the packet | |
1096 | * Returns true if state is ok, otherwise consumes buffer and returns false | |
6144a996 | 1097 | */ |
6e498158 | 1098 | static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb, |
662921cd | 1099 | int bearer_id, struct sk_buff_head *xmitq) |
6144a996 | 1100 | { |
6144a996 | 1101 | struct tipc_msg *hdr = buf_msg(skb); |
6e498158 JPM |
1102 | int usr = msg_user(hdr); |
1103 | int mtyp = msg_type(hdr); | |
6144a996 | 1104 | u16 oseqno = msg_seqno(hdr); |
6e498158 JPM |
1105 | u16 iseqno = msg_seqno(msg_get_wrapped(hdr)); |
1106 | u16 exp_pkts = msg_msgcnt(hdr); | |
1107 | u16 rcv_nxt, syncpt, dlv_nxt; | |
1108 | int state = n->state; | |
1109 | struct tipc_link *l, *pl = NULL; | |
598411d7 JPM |
1110 | struct tipc_media_addr *maddr; |
1111 | int i, pb_id; | |
6144a996 | 1112 | |
6e498158 JPM |
1113 | l = n->links[bearer_id].link; |
1114 | if (!l) | |
1115 | return false; | |
1116 | rcv_nxt = l->rcv_nxt; | |
6144a996 | 1117 | |
6144a996 | 1118 | |
6e498158 JPM |
1119 | if (likely((state == SELF_UP_PEER_UP) && (usr != TUNNEL_PROTOCOL))) |
1120 | return true; | |
6144a996 | 1121 | |
6e498158 JPM |
1122 | /* Find parallel link, if any */ |
1123 | for (i = 0; i < MAX_BEARERS; i++) { | |
1124 | if ((i != bearer_id) && n->links[i].link) { | |
1125 | pl = n->links[i].link; | |
1126 | break; | |
1127 | } | |
1128 | } | |
6144a996 | 1129 | |
6e498158 JPM |
1130 | /* Update node accesibility if applicable */ |
1131 | if (state == SELF_UP_PEER_COMING) { | |
1132 | if (!tipc_link_is_up(l)) | |
1133 | return true; | |
1134 | if (!msg_peer_link_is_up(hdr)) | |
1135 | return true; | |
1136 | tipc_node_fsm_evt(n, PEER_ESTABL_CONTACT_EVT); | |
1137 | } | |
1138 | ||
1139 | if (state == SELF_DOWN_PEER_LEAVING) { | |
1140 | if (msg_peer_node_is_up(hdr)) | |
1141 | return false; | |
1142 | tipc_node_fsm_evt(n, PEER_LOST_CONTACT_EVT); | |
1143 | } | |
1144 | ||
1145 | /* Ignore duplicate packets */ | |
1146 | if (less(oseqno, rcv_nxt)) | |
1147 | return true; | |
1148 | ||
1149 | /* Initiate or update failover mode if applicable */ | |
1150 | if ((usr == TUNNEL_PROTOCOL) && (mtyp == FAILOVER_MSG)) { | |
1151 | syncpt = oseqno + exp_pkts - 1; | |
598411d7 JPM |
1152 | if (pl && tipc_link_is_up(pl)) { |
1153 | pb_id = pl->bearer_id; | |
1154 | __tipc_node_link_down(n, &pb_id, xmitq, &maddr); | |
1155 | tipc_skb_queue_splice_tail_init(pl->inputq, l->inputq); | |
1156 | } | |
6e498158 JPM |
1157 | /* If pkts arrive out of order, use lowest calculated syncpt */ |
1158 | if (less(syncpt, n->sync_point)) | |
1159 | n->sync_point = syncpt; | |
1160 | } | |
1161 | ||
1162 | /* Open parallel link when tunnel link reaches synch point */ | |
662921cd JPM |
1163 | if ((n->state == NODE_FAILINGOVER) && !tipc_link_is_failingover(l)) { |
1164 | if (!more(rcv_nxt, n->sync_point)) | |
1165 | return true; | |
6e498158 JPM |
1166 | tipc_node_fsm_evt(n, NODE_FAILOVER_END_EVT); |
1167 | if (pl) | |
662921cd | 1168 | tipc_link_fsm_evt(pl, LINK_FAILOVER_END_EVT); |
6e498158 JPM |
1169 | return true; |
1170 | } | |
1171 | ||
1172 | /* Initiate or update synch mode if applicable */ | |
1173 | if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG)) { | |
1174 | syncpt = iseqno + exp_pkts - 1; | |
662921cd JPM |
1175 | if (!tipc_link_is_up(l)) { |
1176 | tipc_link_fsm_evt(l, LINK_ESTABLISH_EVT); | |
598411d7 | 1177 | __tipc_node_link_up(n, bearer_id, xmitq); |
662921cd | 1178 | } |
6e498158 JPM |
1179 | if (n->state == SELF_UP_PEER_UP) { |
1180 | n->sync_point = syncpt; | |
662921cd | 1181 | tipc_link_fsm_evt(l, LINK_SYNCH_BEGIN_EVT); |
6e498158 JPM |
1182 | tipc_node_fsm_evt(n, NODE_SYNCH_BEGIN_EVT); |
1183 | } | |
6e498158 JPM |
1184 | if (less(syncpt, n->sync_point)) |
1185 | n->sync_point = syncpt; | |
6144a996 | 1186 | } |
6e498158 JPM |
1187 | |
1188 | /* Open tunnel link when parallel link reaches synch point */ | |
662921cd | 1189 | if ((n->state == NODE_SYNCHING) && tipc_link_is_synching(l)) { |
6e498158 JPM |
1190 | if (pl) |
1191 | dlv_nxt = mod(pl->rcv_nxt - skb_queue_len(pl->inputq)); | |
1192 | if (!pl || more(dlv_nxt, n->sync_point)) { | |
662921cd | 1193 | tipc_link_fsm_evt(l, LINK_SYNCH_END_EVT); |
6e498158 | 1194 | tipc_node_fsm_evt(n, NODE_SYNCH_END_EVT); |
6e498158 JPM |
1195 | return true; |
1196 | } | |
1197 | if ((usr == TUNNEL_PROTOCOL) && (mtyp == SYNCH_MSG)) | |
1198 | return true; | |
1199 | if (usr == LINK_PROTOCOL) | |
1200 | return true; | |
1201 | return false; | |
1202 | } | |
1203 | return true; | |
6144a996 JPM |
1204 | } |
1205 | ||
d999297c JPM |
1206 | /** |
1207 | * tipc_rcv - process TIPC packets/messages arriving from off-node | |
1208 | * @net: the applicable net namespace | |
1209 | * @skb: TIPC packet | |
1210 | * @bearer: pointer to bearer message arrived on | |
1211 | * | |
1212 | * Invoked with no locks held. Bearer pointer must point to a valid bearer | |
1213 | * structure (i.e. cannot be NULL), but bearer can be inactive. | |
1214 | */ | |
1215 | void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b) | |
1216 | { | |
1217 | struct sk_buff_head xmitq; | |
1218 | struct tipc_node *n; | |
6e498158 JPM |
1219 | struct tipc_msg *hdr = buf_msg(skb); |
1220 | int usr = msg_user(hdr); | |
d999297c | 1221 | int bearer_id = b->identity; |
6e498158 | 1222 | struct tipc_link_entry *le; |
d999297c JPM |
1223 | int rc = 0; |
1224 | ||
1225 | __skb_queue_head_init(&xmitq); | |
1226 | ||
1227 | /* Ensure message is well-formed */ | |
1228 | if (unlikely(!tipc_msg_validate(skb))) | |
1229 | goto discard; | |
1230 | ||
1231 | /* Handle arrival of a non-unicast link packet */ | |
d999297c | 1232 | if (unlikely(msg_non_seq(hdr))) { |
6144a996 | 1233 | if (usr == LINK_CONFIG) |
d999297c JPM |
1234 | tipc_disc_rcv(net, skb, b); |
1235 | else | |
1236 | tipc_bclink_rcv(net, skb); | |
1237 | return; | |
1238 | } | |
1239 | ||
1240 | /* Locate neighboring node that sent packet */ | |
1241 | n = tipc_node_find(net, msg_prevnode(hdr)); | |
1242 | if (unlikely(!n)) | |
1243 | goto discard; | |
6e498158 | 1244 | le = &n->links[bearer_id]; |
d999297c | 1245 | |
6e498158 | 1246 | tipc_node_lock(n); |
6144a996 | 1247 | |
6e498158 JPM |
1248 | /* Is reception permitted at the moment ? */ |
1249 | if (!tipc_node_filter_pkt(n, hdr)) | |
d999297c JPM |
1250 | goto unlock; |
1251 | ||
6e498158 | 1252 | if (unlikely(msg_user(hdr) == LINK_PROTOCOL)) |
d999297c JPM |
1253 | tipc_bclink_sync_state(n, hdr); |
1254 | ||
598411d7 | 1255 | /* Release acked broadcast packets */ |
d999297c JPM |
1256 | if (unlikely(n->bclink.acked != msg_bcast_ack(hdr))) |
1257 | tipc_bclink_acknowledge(n, msg_bcast_ack(hdr)); | |
1258 | ||
6e498158 | 1259 | /* Check and if necessary update node state */ |
662921cd | 1260 | if (likely(tipc_node_check_state(n, skb, bearer_id, &xmitq))) { |
6e498158 JPM |
1261 | rc = tipc_link_rcv(le->link, skb, &xmitq); |
1262 | skb = NULL; | |
1263 | } | |
598411d7 JPM |
1264 | unlock: |
1265 | tipc_node_unlock(n); | |
d999297c JPM |
1266 | |
1267 | if (unlikely(rc & TIPC_LINK_UP_EVT)) | |
6e498158 JPM |
1268 | tipc_node_link_up(n, bearer_id, &xmitq); |
1269 | ||
d999297c | 1270 | if (unlikely(rc & TIPC_LINK_DOWN_EVT)) |
598411d7 | 1271 | tipc_node_link_down(n, bearer_id, false); |
6e498158 JPM |
1272 | |
1273 | if (!skb_queue_empty(&le->inputq)) | |
1274 | tipc_sk_rcv(net, &le->inputq); | |
1275 | ||
1276 | if (!skb_queue_empty(&xmitq)) | |
1277 | tipc_bearer_xmit(net, bearer_id, &xmitq, &le->maddr); | |
1278 | ||
d999297c JPM |
1279 | tipc_node_put(n); |
1280 | discard: | |
1281 | kfree_skb(skb); | |
1282 | } | |
1283 | ||
3e4b6ab5 RA |
1284 | int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb) |
1285 | { | |
1286 | int err; | |
f2f9800d YX |
1287 | struct net *net = sock_net(skb->sk); |
1288 | struct tipc_net *tn = net_generic(net, tipc_net_id); | |
3e4b6ab5 RA |
1289 | int done = cb->args[0]; |
1290 | int last_addr = cb->args[1]; | |
1291 | struct tipc_node *node; | |
1292 | struct tipc_nl_msg msg; | |
1293 | ||
1294 | if (done) | |
1295 | return 0; | |
1296 | ||
1297 | msg.skb = skb; | |
1298 | msg.portid = NETLINK_CB(cb->skb).portid; | |
1299 | msg.seq = cb->nlh->nlmsg_seq; | |
1300 | ||
1301 | rcu_read_lock(); | |
8a0f6ebe YX |
1302 | if (last_addr) { |
1303 | node = tipc_node_find(net, last_addr); | |
1304 | if (!node) { | |
1305 | rcu_read_unlock(); | |
1306 | /* We never set seq or call nl_dump_check_consistent() | |
1307 | * this means that setting prev_seq here will cause the | |
1308 | * consistence check to fail in the netlink callback | |
1309 | * handler. Resulting in the NLMSG_DONE message having | |
1310 | * the NLM_F_DUMP_INTR flag set if the node state | |
1311 | * changed while we released the lock. | |
1312 | */ | |
1313 | cb->prev_seq = 1; | |
1314 | return -EPIPE; | |
1315 | } | |
1316 | tipc_node_put(node); | |
3e4b6ab5 RA |
1317 | } |
1318 | ||
f2f9800d | 1319 | list_for_each_entry_rcu(node, &tn->node_list, list) { |
3e4b6ab5 RA |
1320 | if (last_addr) { |
1321 | if (node->addr == last_addr) | |
1322 | last_addr = 0; | |
1323 | else | |
1324 | continue; | |
1325 | } | |
1326 | ||
1327 | tipc_node_lock(node); | |
1328 | err = __tipc_nl_add_node(&msg, node); | |
1329 | if (err) { | |
1330 | last_addr = node->addr; | |
1331 | tipc_node_unlock(node); | |
1332 | goto out; | |
1333 | } | |
1334 | ||
1335 | tipc_node_unlock(node); | |
1336 | } | |
1337 | done = 1; | |
1338 | out: | |
1339 | cb->args[0] = done; | |
1340 | cb->args[1] = last_addr; | |
1341 | rcu_read_unlock(); | |
1342 | ||
1343 | return skb->len; | |
1344 | } |