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