]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/tipc/bcast.c
tipc: check bearer name with right length in tipc_nl_compat_bearer_enable
[mirror_ubuntu-bionic-kernel.git] / net / tipc / bcast.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/bcast.c: TIPC broadcast code
c4307285 3 *
9999974a 4 * Copyright (c) 2004-2006, 2014-2016, Ericsson AB
b97bf3fd 5 * Copyright (c) 2004, Intel Corporation.
2d627b92 6 * Copyright (c) 2005, 2010-2011, Wind River Systems
b97bf3fd
PL
7 * All rights reserved.
8 *
9ea1fd3c 9 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
10 * modification, are permitted provided that the following conditions are met:
11 *
9ea1fd3c
PL
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
b97bf3fd 20 *
9ea1fd3c
PL
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
b97bf3fd
PL
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
6beb19a6 38#include <linux/tipc_config.h>
078bec82
JPM
39#include "socket.h"
40#include "msg.h"
b97bf3fd 41#include "bcast.h"
6beb19a6 42#include "link.h"
2ae0b8af 43#include "name_table.h"
b97bf3fd 44
53387c4e
JPM
45#define BCLINK_WIN_DEFAULT 50 /* bcast link window size (default) */
46#define BCLINK_WIN_MIN 32 /* bcast minimum link window size */
b97bf3fd 47
3aec9cc9 48const char tipc_bclink_name[] = "broadcast-link";
b97bf3fd 49
6beb19a6 50/**
2af5ae37 51 * struct tipc_bc_base - base structure for keeping broadcast send state
b06b281e 52 * @link: broadcast send link structure
2af5ae37
JPM
53 * @inputq: data input queue; will only carry SOCK_WAKEUP messages
54 * @dest: array keeping number of reachable destinations per bearer
55 * @primary_bearer: a bearer having links to all broadcast destinations, if any
9999974a 56 * @bcast_support: indicates if primary bearer, if any, supports broadcast
01fd12bb
JPM
57 * @rcast_support: indicates if all peer nodes support replicast
58 * @rc_ratio: dest count as percentage of cluster size where send method changes
59 * @bc_threshold: calculated drom rc_ratio; if dests > threshold use broadcast
6beb19a6
JPM
60 */
61struct tipc_bc_base {
32301906 62 struct tipc_link *link;
6beb19a6 63 struct sk_buff_head inputq;
b06b281e
JPM
64 int dests[MAX_BEARERS];
65 int primary_bearer;
9999974a 66 bool bcast_support;
01fd12bb
JPM
67 bool rcast_support;
68 int rc_ratio;
69 int bc_threshold;
6beb19a6
JPM
70};
71
5fd9fd63
JPM
72static struct tipc_bc_base *tipc_bc_base(struct net *net)
73{
74 return tipc_net(net)->bcbase;
75}
76
959e1781 77int tipc_bcast_get_mtu(struct net *net)
078bec82 78{
a853e4c6 79 return tipc_link_mtu(tipc_bc_sndlink(net)) - INT_H_SIZE;
078bec82
JPM
80}
81
01fd12bb
JPM
82void tipc_bcast_disable_rcast(struct net *net)
83{
84 tipc_bc_base(net)->rcast_support = false;
85}
86
87static void tipc_bcbase_calc_bc_threshold(struct net *net)
88{
89 struct tipc_bc_base *bb = tipc_bc_base(net);
90 int cluster_size = tipc_link_bc_peers(tipc_bc_sndlink(net));
91
92 bb->bc_threshold = 1 + (cluster_size * bb->rc_ratio / 100);
93}
94
b06b281e
JPM
95/* tipc_bcbase_select_primary(): find a bearer with links to all destinations,
96 * if any, and make it primary bearer
97 */
98static void tipc_bcbase_select_primary(struct net *net)
99{
100 struct tipc_bc_base *bb = tipc_bc_base(net);
101 int all_dests = tipc_link_bc_peers(bb->link);
9999974a 102 int i, mtu, prim;
b06b281e
JPM
103
104 bb->primary_bearer = INVALID_BEARER_ID;
9999974a 105 bb->bcast_support = true;
b06b281e
JPM
106
107 if (!all_dests)
108 return;
109
110 for (i = 0; i < MAX_BEARERS; i++) {
959e1781
JPM
111 if (!bb->dests[i])
112 continue;
113
114 mtu = tipc_bearer_mtu(net, i);
115 if (mtu < tipc_link_mtu(bb->link))
116 tipc_link_set_mtu(bb->link, mtu);
9999974a 117 bb->bcast_support &= tipc_bearer_bcast_support(net, i);
b06b281e
JPM
118 if (bb->dests[i] < all_dests)
119 continue;
120
121 bb->primary_bearer = i;
122
123 /* Reduce risk that all nodes select same primary */
124 if ((i ^ tipc_own_addr(net)) & 1)
125 break;
126 }
9999974a
JPM
127 prim = bb->primary_bearer;
128 if (prim != INVALID_BEARER_ID)
129 bb->bcast_support = tipc_bearer_bcast_support(net, prim);
b06b281e
JPM
130}
131
132void tipc_bcast_inc_bearer_dst_cnt(struct net *net, int bearer_id)
133{
134 struct tipc_bc_base *bb = tipc_bc_base(net);
135
136 tipc_bcast_lock(net);
137 bb->dests[bearer_id]++;
138 tipc_bcbase_select_primary(net);
139 tipc_bcast_unlock(net);
140}
141
142void tipc_bcast_dec_bearer_dst_cnt(struct net *net, int bearer_id)
143{
144 struct tipc_bc_base *bb = tipc_bc_base(net);
145
146 tipc_bcast_lock(net);
147 bb->dests[bearer_id]--;
148 tipc_bcbase_select_primary(net);
149 tipc_bcast_unlock(net);
150}
151
b06b281e
JPM
152/* tipc_bcbase_xmit - broadcast a packet queue across one or more bearers
153 *
154 * Note that number of reachable destinations, as indicated in the dests[]
155 * array, may transitionally differ from the number of destinations indicated
156 * in each sent buffer. We can sustain this. Excess destination nodes will
157 * drop and never acknowledge the unexpected packets, and missing destinations
158 * will either require retransmission (if they are just about to be added to
159 * the bearer), or be removed from the buffer's 'ackers' counter (if they
160 * just went down)
161 */
162static void tipc_bcbase_xmit(struct net *net, struct sk_buff_head *xmitq)
163{
164 int bearer_id;
165 struct tipc_bc_base *bb = tipc_bc_base(net);
166 struct sk_buff *skb, *_skb;
167 struct sk_buff_head _xmitq;
168
169 if (skb_queue_empty(xmitq))
170 return;
171
172 /* The typical case: at least one bearer has links to all nodes */
173 bearer_id = bb->primary_bearer;
174 if (bearer_id >= 0) {
175 tipc_bearer_bc_xmit(net, bearer_id, xmitq);
176 return;
177 }
178
179 /* We have to transmit across all bearers */
180 skb_queue_head_init(&_xmitq);
181 for (bearer_id = 0; bearer_id < MAX_BEARERS; bearer_id++) {
182 if (!bb->dests[bearer_id])
183 continue;
184
185 skb_queue_walk(xmitq, skb) {
186 _skb = pskb_copy_for_clone(skb, GFP_ATOMIC);
187 if (!_skb)
188 break;
189 __skb_queue_tail(&_xmitq, _skb);
190 }
191 tipc_bearer_bc_xmit(net, bearer_id, &_xmitq);
192 }
193 __skb_queue_purge(xmitq);
194 __skb_queue_purge(&_xmitq);
195}
196
01fd12bb
JPM
197static void tipc_bcast_select_xmit_method(struct net *net, int dests,
198 struct tipc_mc_method *method)
199{
200 struct tipc_bc_base *bb = tipc_bc_base(net);
201 unsigned long exp = method->expires;
202
203 /* Broadcast supported by used bearer/bearers? */
204 if (!bb->bcast_support) {
205 method->rcast = true;
206 return;
207 }
208 /* Any destinations which don't support replicast ? */
209 if (!bb->rcast_support) {
210 method->rcast = false;
211 return;
212 }
213 /* Can current method be changed ? */
214 method->expires = jiffies + TIPC_METHOD_EXPIRE;
215 if (method->mandatory || time_before(jiffies, exp))
216 return;
217
218 /* Determine method to use now */
219 method->rcast = dests <= bb->bc_threshold;
220}
221
a853e4c6 222/* tipc_bcast_xmit - broadcast the buffer chain to all external nodes
f2f9800d 223 * @net: the applicable net namespace
a853e4c6
JPM
224 * @pkts: chain of buffers containing message
225 * @cong_link_cnt: set to 1 if broadcast link is congested, otherwise 0
365ad353 226 * Consumes the buffer chain.
a853e4c6 227 * Returns 0 if success, otherwise errno: -EHOSTUNREACH,-EMSGSIZE
078bec82 228 */
a853e4c6
JPM
229static int tipc_bcast_xmit(struct net *net, struct sk_buff_head *pkts,
230 u16 *cong_link_cnt)
078bec82 231{
2f566124 232 struct tipc_link *l = tipc_bc_sndlink(net);
a853e4c6 233 struct sk_buff_head xmitq;
078bec82 234 int rc = 0;
078bec82 235
3382605f 236 skb_queue_head_init(&xmitq);
2f566124
JPM
237 tipc_bcast_lock(net);
238 if (tipc_link_bc_peers(l))
a853e4c6 239 rc = tipc_link_xmit(l, pkts, &xmitq);
2f566124 240 tipc_bcast_unlock(net);
a853e4c6
JPM
241 tipc_bcbase_xmit(net, &xmitq);
242 __skb_queue_purge(pkts);
243 if (rc == -ELINKCONG) {
244 *cong_link_cnt = 1;
245 rc = 0;
246 }
247 return rc;
248}
249
250/* tipc_rcast_xmit - replicate and send a message to given destination nodes
251 * @net: the applicable net namespace
252 * @pkts: chain of buffers containing message
253 * @dests: list of destination nodes
254 * @cong_link_cnt: returns number of congested links
255 * @cong_links: returns identities of congested links
256 * Returns 0 if success, otherwise errno
257 */
258static int tipc_rcast_xmit(struct net *net, struct sk_buff_head *pkts,
259 struct tipc_nlist *dests, u16 *cong_link_cnt)
260{
a80ae530 261 struct tipc_dest *dst, *tmp;
a853e4c6 262 struct sk_buff_head _pkts;
a80ae530 263 u32 dnode, selector;
a853e4c6
JPM
264
265 selector = msg_link_selector(buf_msg(skb_peek(pkts)));
3382605f 266 skb_queue_head_init(&_pkts);
a853e4c6 267
a80ae530
JM
268 list_for_each_entry_safe(dst, tmp, &dests->list, list) {
269 dnode = dst->node;
270 if (!tipc_msg_pskb_copy(dnode, pkts, &_pkts))
a853e4c6 271 return -ENOMEM;
078bec82 272
a853e4c6 273 /* Any other return value than -ELINKCONG is ignored */
a80ae530 274 if (tipc_node_xmit(net, &_pkts, dnode, selector) == -ELINKCONG)
a853e4c6 275 (*cong_link_cnt)++;
cb1b7280 276 }
a853e4c6
JPM
277 return 0;
278}
52666986 279
a853e4c6
JPM
280/* tipc_mcast_xmit - deliver message to indicated destination nodes
281 * and to identified node local sockets
282 * @net: the applicable net namespace
283 * @pkts: chain of buffers containing message
01fd12bb
JPM
284 * @method: send method to be used
285 * @dests: destination nodes for message.
a853e4c6 286 * @cong_link_cnt: returns number of encountered congested destination links
a853e4c6
JPM
287 * Consumes buffer chain.
288 * Returns 0 if success, otherwise errno
289 */
290int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts,
01fd12bb
JPM
291 struct tipc_mc_method *method, struct tipc_nlist *dests,
292 u16 *cong_link_cnt)
a853e4c6 293{
a853e4c6
JPM
294 struct sk_buff_head inputq, localq;
295 int rc = 0;
296
297 skb_queue_head_init(&inputq);
298 skb_queue_head_init(&localq);
299
300 /* Clone packets before they are consumed by next call */
301 if (dests->local && !tipc_msg_reassemble(pkts, &localq)) {
302 rc = -ENOMEM;
303 goto exit;
304 }
01fd12bb 305 /* Send according to determined transmit method */
a853e4c6 306 if (dests->remote) {
01fd12bb
JPM
307 tipc_bcast_select_xmit_method(net, dests->remote, method);
308 if (method->rcast)
a853e4c6
JPM
309 rc = tipc_rcast_xmit(net, pkts, dests, cong_link_cnt);
310 else
311 rc = tipc_bcast_xmit(net, pkts, cong_link_cnt);
312 }
313
314 if (dests->local)
315 tipc_sk_mcast_rcv(net, &localq, &inputq);
316exit:
01fd12bb 317 /* This queue should normally be empty by now */
a853e4c6 318 __skb_queue_purge(pkts);
365ad353 319 return rc;
078bec82 320}
52666986
JPM
321
322/* tipc_bcast_rcv - receive a broadcast packet, and deliver to rcv link
323 *
324 * RCU is locked, no other locks set
325 */
326int tipc_bcast_rcv(struct net *net, struct tipc_link *l, struct sk_buff *skb)
327{
328 struct tipc_msg *hdr = buf_msg(skb);
329 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
330 struct sk_buff_head xmitq;
331 int rc;
332
333 __skb_queue_head_init(&xmitq);
334
335 if (msg_mc_netid(hdr) != tipc_netid(net) || !tipc_link_is_up(l)) {
336 kfree_skb(skb);
337 return 0;
338 }
339
340 tipc_bcast_lock(net);
341 if (msg_user(hdr) == BCAST_PROTOCOL)
342 rc = tipc_link_bc_nack_rcv(l, skb, &xmitq);
343 else
344 rc = tipc_link_rcv(l, skb, NULL);
345 tipc_bcast_unlock(net);
346
b06b281e 347 tipc_bcbase_xmit(net, &xmitq);
52666986
JPM
348
349 /* Any socket wakeup messages ? */
350 if (!skb_queue_empty(inputq))
351 tipc_sk_rcv(net, inputq);
352
353 return rc;
354}
355
356/* tipc_bcast_ack_rcv - receive and handle a broadcast acknowledge
357 *
358 * RCU is locked, no other locks set
359 */
06bd2b1e
JPM
360void tipc_bcast_ack_rcv(struct net *net, struct tipc_link *l,
361 struct tipc_msg *hdr)
52666986
JPM
362{
363 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
06bd2b1e 364 u16 acked = msg_bcast_ack(hdr);
52666986
JPM
365 struct sk_buff_head xmitq;
366
06bd2b1e
JPM
367 /* Ignore bc acks sent by peer before bcast synch point was received */
368 if (msg_bc_ack_invalid(hdr))
369 return;
370
52666986
JPM
371 __skb_queue_head_init(&xmitq);
372
373 tipc_bcast_lock(net);
374 tipc_link_bc_ack_rcv(l, acked, &xmitq);
375 tipc_bcast_unlock(net);
376
b06b281e 377 tipc_bcbase_xmit(net, &xmitq);
52666986
JPM
378
379 /* Any socket wakeup messages ? */
380 if (!skb_queue_empty(inputq))
381 tipc_sk_rcv(net, inputq);
382}
383
384/* tipc_bcast_synch_rcv - check and update rcv link with peer's send state
385 *
386 * RCU is locked, no other locks set
387 */
02d11ca2
JPM
388int tipc_bcast_sync_rcv(struct net *net, struct tipc_link *l,
389 struct tipc_msg *hdr)
52666986
JPM
390{
391 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
392 struct sk_buff_head xmitq;
02d11ca2 393 int rc = 0;
52666986
JPM
394
395 __skb_queue_head_init(&xmitq);
396
397 tipc_bcast_lock(net);
06bd2b1e
JPM
398 if (msg_type(hdr) != STATE_MSG) {
399 tipc_link_bc_init_rcv(l, hdr);
400 } else if (!msg_bc_ack_invalid(hdr)) {
52666986 401 tipc_link_bc_ack_rcv(l, msg_bcast_ack(hdr), &xmitq);
02d11ca2 402 rc = tipc_link_bc_sync_rcv(l, hdr, &xmitq);
52666986
JPM
403 }
404 tipc_bcast_unlock(net);
405
b06b281e 406 tipc_bcbase_xmit(net, &xmitq);
52666986
JPM
407
408 /* Any socket wakeup messages ? */
409 if (!skb_queue_empty(inputq))
410 tipc_sk_rcv(net, inputq);
02d11ca2 411 return rc;
52666986
JPM
412}
413
414/* tipc_bcast_add_peer - add a peer node to broadcast link and bearer
415 *
416 * RCU is locked, node lock is set
417 */
b06b281e 418void tipc_bcast_add_peer(struct net *net, struct tipc_link *uc_l,
52666986
JPM
419 struct sk_buff_head *xmitq)
420{
52666986
JPM
421 struct tipc_link *snd_l = tipc_bc_sndlink(net);
422
b06b281e 423 tipc_bcast_lock(net);
52666986 424 tipc_link_add_bc_peer(snd_l, uc_l, xmitq);
b06b281e 425 tipc_bcbase_select_primary(net);
01fd12bb 426 tipc_bcbase_calc_bc_threshold(net);
b06b281e 427 tipc_bcast_unlock(net);
52666986
JPM
428}
429
430/* tipc_bcast_remove_peer - remove a peer node from broadcast link and bearer
431 *
432 * RCU is locked, node lock is set
433 */
b06b281e 434void tipc_bcast_remove_peer(struct net *net, struct tipc_link *rcv_l)
52666986 435{
52666986 436 struct tipc_link *snd_l = tipc_bc_sndlink(net);
b06b281e 437 struct sk_buff_head *inputq = &tipc_bc_base(net)->inputq;
52666986
JPM
438 struct sk_buff_head xmitq;
439
440 __skb_queue_head_init(&xmitq);
441
b06b281e 442 tipc_bcast_lock(net);
52666986 443 tipc_link_remove_bc_peer(snd_l, rcv_l, &xmitq);
b06b281e 444 tipc_bcbase_select_primary(net);
01fd12bb 445 tipc_bcbase_calc_bc_threshold(net);
b06b281e 446 tipc_bcast_unlock(net);
52666986 447
b06b281e 448 tipc_bcbase_xmit(net, &xmitq);
52666986
JPM
449
450 /* Any socket wakeup messages ? */
451 if (!skb_queue_empty(inputq))
452 tipc_sk_rcv(net, inputq);
453}
454
1da46568 455int tipc_bclink_reset_stats(struct net *net)
b97bf3fd 456{
38206d59 457 struct tipc_link *l = tipc_bc_sndlink(net);
1da46568 458
38206d59 459 if (!l)
b97bf3fd
PL
460 return -ENOPROTOOPT;
461
2af5ae37 462 tipc_bcast_lock(net);
38206d59 463 tipc_link_reset_stats(l);
2af5ae37 464 tipc_bcast_unlock(net);
0e35fd5e 465 return 0;
b97bf3fd
PL
466}
467
2af5ae37 468static int tipc_bc_link_set_queue_limits(struct net *net, u32 limit)
b97bf3fd 469{
2af5ae37 470 struct tipc_link *l = tipc_bc_sndlink(net);
1da46568 471
2af5ae37 472 if (!l)
b97bf3fd 473 return -ENOPROTOOPT;
53387c4e
JPM
474 if (limit < BCLINK_WIN_MIN)
475 limit = BCLINK_WIN_MIN;
476 if (limit > TIPC_MAX_LINK_WIN)
b97bf3fd 477 return -EINVAL;
2af5ae37
JPM
478 tipc_bcast_lock(net);
479 tipc_link_set_queue_limits(l, limit);
480 tipc_bcast_unlock(net);
0e35fd5e 481 return 0;
b97bf3fd
PL
482}
483
670f4f88
RA
484int tipc_nl_bc_link_set(struct net *net, struct nlattr *attrs[])
485{
486 int err;
487 u32 win;
488 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
489
490 if (!attrs[TIPC_NLA_LINK_PROP])
491 return -EINVAL;
492
493 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_LINK_PROP], props);
494 if (err)
495 return err;
496
497 if (!props[TIPC_NLA_PROP_WIN])
498 return -EOPNOTSUPP;
499
500 win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
501
2af5ae37 502 return tipc_bc_link_set_queue_limits(net, win);
670f4f88
RA
503}
504
6beb19a6 505int tipc_bcast_init(struct net *net)
b97bf3fd 506{
32301906 507 struct tipc_net *tn = tipc_net(net);
32301906
JPM
508 struct tipc_bc_base *bb = NULL;
509 struct tipc_link *l = NULL;
510
32301906
JPM
511 bb = kzalloc(sizeof(*bb), GFP_ATOMIC);
512 if (!bb)
513 goto enomem;
514 tn->bcbase = bb;
0043550b 515 spin_lock_init(&tipc_net(net)->bclock);
32301906 516
c72fa872 517 if (!tipc_link_bc_create(net, 0, 0,
959e1781 518 U16_MAX,
32301906 519 BCLINK_WIN_DEFAULT,
fd556f20 520 0,
32301906 521 &bb->inputq,
2af5ae37 522 NULL,
52666986 523 NULL,
32301906
JPM
524 &l))
525 goto enomem;
526 bb->link = l;
527 tn->bcl = l;
01fd12bb
JPM
528 bb->rc_ratio = 25;
529 bb->rcast_support = true;
eb8b00f5 530 return 0;
32301906 531enomem:
32301906
JPM
532 kfree(bb);
533 kfree(l);
534 return -ENOMEM;
b97bf3fd
PL
535}
536
6beb19a6 537void tipc_bcast_stop(struct net *net)
b97bf3fd 538{
7f9f95d9
YX
539 struct tipc_net *tn = net_generic(net, tipc_net_id);
540
eb8b00f5 541 synchronize_net();
6beb19a6 542 kfree(tn->bcbase);
32301906 543 kfree(tn->bcl);
b97bf3fd 544}
2ae0b8af
JPM
545
546void tipc_nlist_init(struct tipc_nlist *nl, u32 self)
547{
548 memset(nl, 0, sizeof(*nl));
549 INIT_LIST_HEAD(&nl->list);
550 nl->self = self;
551}
552
553void tipc_nlist_add(struct tipc_nlist *nl, u32 node)
554{
555 if (node == nl->self)
556 nl->local = true;
a80ae530 557 else if (tipc_dest_push(&nl->list, node, 0))
2ae0b8af
JPM
558 nl->remote++;
559}
560
561void tipc_nlist_del(struct tipc_nlist *nl, u32 node)
562{
563 if (node == nl->self)
564 nl->local = false;
a80ae530 565 else if (tipc_dest_del(&nl->list, node, 0))
2ae0b8af
JPM
566 nl->remote--;
567}
568
569void tipc_nlist_purge(struct tipc_nlist *nl)
570{
a80ae530 571 tipc_dest_list_purge(&nl->list);
2ae0b8af
JPM
572 nl->remote = 0;
573 nl->local = 0;
574}