tipc: Reject connection protocol message sent to unconnected port
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / tipc / port.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/port.c: TIPC port code
c4307285 3 *
05646c91 4 * Copyright (c) 1992-2007, Ericsson AB
23dd4cce 5 * Copyright (c) 2004-2008, 2010-2011, 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"
38#include "config.h"
b97bf3fd 39#include "port.h"
b97bf3fd 40#include "name_table.h"
b97bf3fd
PL
41
42/* Connection management: */
43#define PROBING_INTERVAL 3600000 /* [ms] => 1 h */
44#define CONFIRMED 0
45#define PROBING 1
46
47#define MAX_REJECT_SIZE 1024
48
e3ec9c7d
AS
49static struct sk_buff *msg_queue_head;
50static struct sk_buff *msg_queue_tail;
b97bf3fd 51
34af946a
IM
52DEFINE_SPINLOCK(tipc_port_list_lock);
53static DEFINE_SPINLOCK(queue_lock);
b97bf3fd 54
4323add6 55static LIST_HEAD(ports);
b97bf3fd 56static void port_handle_node_down(unsigned long ref);
23dd4cce
AS
57static struct sk_buff *port_build_self_abort_msg(struct tipc_port *, u32 err);
58static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *, u32 err);
b97bf3fd
PL
59static void port_timeout(unsigned long ref);
60
61
23dd4cce 62static u32 port_peernode(struct tipc_port *p_ptr)
b97bf3fd 63{
23dd4cce 64 return msg_destnode(&p_ptr->phdr);
b97bf3fd
PL
65}
66
23dd4cce 67static u32 port_peerport(struct tipc_port *p_ptr)
b97bf3fd 68{
23dd4cce 69 return msg_destport(&p_ptr->phdr);
b97bf3fd
PL
70}
71
b97bf3fd
PL
72/**
73 * tipc_multicast - send a multicast message to local and remote destinations
74 */
75
38f232ea 76int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
26896904
AS
77 u32 num_sect, struct iovec const *msg_sect,
78 unsigned int total_len)
b97bf3fd
PL
79{
80 struct tipc_msg *hdr;
81 struct sk_buff *buf;
82 struct sk_buff *ibuf = NULL;
83 struct port_list dports = {0, NULL, };
23dd4cce 84 struct tipc_port *oport = tipc_port_deref(ref);
b97bf3fd
PL
85 int ext_targets;
86 int res;
87
88 if (unlikely(!oport))
89 return -EINVAL;
90
91 /* Create multicast message */
92
23dd4cce 93 hdr = &oport->phdr;
b97bf3fd 94 msg_set_type(hdr, TIPC_MCAST_MSG);
53b94364 95 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
7462b9e9
AS
96 msg_set_destport(hdr, 0);
97 msg_set_destnode(hdr, 0);
b97bf3fd
PL
98 msg_set_nametype(hdr, seq->type);
99 msg_set_namelower(hdr, seq->lower);
100 msg_set_nameupper(hdr, seq->upper);
101 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
26896904 102 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len, MAX_MSG_SIZE,
b97bf3fd
PL
103 !oport->user_port, &buf);
104 if (unlikely(!buf))
105 return res;
106
107 /* Figure out where to send multicast message */
108
4323add6
PL
109 ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
110 TIPC_NODE_SCOPE, &dports);
c4307285
YH
111
112 /* Send message to destinations (duplicate it only if necessary) */
b97bf3fd
PL
113
114 if (ext_targets) {
115 if (dports.count != 0) {
116 ibuf = skb_copy(buf, GFP_ATOMIC);
117 if (ibuf == NULL) {
4323add6 118 tipc_port_list_free(&dports);
b97bf3fd
PL
119 buf_discard(buf);
120 return -ENOMEM;
121 }
122 }
4323add6 123 res = tipc_bclink_send_msg(buf);
a016892c 124 if ((res < 0) && (dports.count != 0))
b97bf3fd 125 buf_discard(ibuf);
b97bf3fd
PL
126 } else {
127 ibuf = buf;
128 }
129
130 if (res >= 0) {
131 if (ibuf)
4323add6 132 tipc_port_recv_mcast(ibuf, &dports);
b97bf3fd 133 } else {
4323add6 134 tipc_port_list_free(&dports);
b97bf3fd
PL
135 }
136 return res;
137}
138
139/**
4323add6 140 * tipc_port_recv_mcast - deliver multicast message to all destination ports
c4307285 141 *
b97bf3fd
PL
142 * If there is no port list, perform a lookup to create one
143 */
144
4323add6 145void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
b97bf3fd 146{
0e65967e 147 struct tipc_msg *msg;
b97bf3fd
PL
148 struct port_list dports = {0, NULL, };
149 struct port_list *item = dp;
150 int cnt = 0;
151
b97bf3fd
PL
152 msg = buf_msg(buf);
153
154 /* Create destination port list, if one wasn't supplied */
155
156 if (dp == NULL) {
4323add6 157 tipc_nametbl_mc_translate(msg_nametype(msg),
b97bf3fd
PL
158 msg_namelower(msg),
159 msg_nameupper(msg),
160 TIPC_CLUSTER_SCOPE,
161 &dports);
162 item = dp = &dports;
163 }
164
165 /* Deliver a copy of message to each destination port */
166
167 if (dp->count != 0) {
7f47f5c7 168 msg_set_destnode(msg, tipc_own_addr);
b97bf3fd
PL
169 if (dp->count == 1) {
170 msg_set_destport(msg, dp->ports[0]);
4323add6
PL
171 tipc_port_recv_msg(buf);
172 tipc_port_list_free(dp);
b97bf3fd
PL
173 return;
174 }
175 for (; cnt < dp->count; cnt++) {
176 int index = cnt % PLSIZE;
177 struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);
178
179 if (b == NULL) {
a10bd924 180 warn("Unable to deliver multicast message(s)\n");
b97bf3fd
PL
181 goto exit;
182 }
a016892c 183 if ((index == 0) && (cnt != 0))
b97bf3fd 184 item = item->next;
0e65967e 185 msg_set_destport(buf_msg(b), item->ports[index]);
4323add6 186 tipc_port_recv_msg(b);
b97bf3fd
PL
187 }
188 }
189exit:
190 buf_discard(buf);
4323add6 191 tipc_port_list_free(dp);
b97bf3fd
PL
192}
193
194/**
7ef43eba 195 * tipc_createport_raw - create a generic TIPC port
c4307285 196 *
0ea52241 197 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
b97bf3fd
PL
198 */
199
0ea52241 200struct tipc_port *tipc_createport_raw(void *usr_handle,
b97bf3fd
PL
201 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
202 void (*wakeup)(struct tipc_port *),
0ea52241 203 const u32 importance)
b97bf3fd 204{
23dd4cce 205 struct tipc_port *p_ptr;
b97bf3fd
PL
206 struct tipc_msg *msg;
207 u32 ref;
208
0da974f4 209 p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
a10bd924
AS
210 if (!p_ptr) {
211 warn("Port creation failed, no memory\n");
0ea52241 212 return NULL;
b97bf3fd 213 }
23dd4cce 214 ref = tipc_ref_acquire(p_ptr, &p_ptr->lock);
b97bf3fd 215 if (!ref) {
a10bd924 216 warn("Port creation failed, reference table exhausted\n");
b97bf3fd 217 kfree(p_ptr);
0ea52241 218 return NULL;
b97bf3fd
PL
219 }
220
23dd4cce
AS
221 p_ptr->usr_handle = usr_handle;
222 p_ptr->max_pkt = MAX_PKT_DEFAULT;
223 p_ptr->ref = ref;
224 msg = &p_ptr->phdr;
741d9eb7 225 tipc_msg_init(msg, importance, TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
b97bf3fd 226 msg_set_origport(msg, ref);
b97bf3fd
PL
227 INIT_LIST_HEAD(&p_ptr->wait_list);
228 INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
b97bf3fd
PL
229 p_ptr->dispatcher = dispatcher;
230 p_ptr->wakeup = wakeup;
1fc54d8f 231 p_ptr->user_port = NULL;
b97bf3fd 232 k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
4323add6 233 spin_lock_bh(&tipc_port_list_lock);
b97bf3fd
PL
234 INIT_LIST_HEAD(&p_ptr->publications);
235 INIT_LIST_HEAD(&p_ptr->port_list);
236 list_add_tail(&p_ptr->port_list, &ports);
4323add6 237 spin_unlock_bh(&tipc_port_list_lock);
23dd4cce 238 return p_ptr;
b97bf3fd
PL
239}
240
241int tipc_deleteport(u32 ref)
242{
23dd4cce 243 struct tipc_port *p_ptr;
1fc54d8f 244 struct sk_buff *buf = NULL;
b97bf3fd 245
1fc54d8f 246 tipc_withdraw(ref, 0, NULL);
4323add6 247 p_ptr = tipc_port_lock(ref);
c4307285 248 if (!p_ptr)
b97bf3fd
PL
249 return -EINVAL;
250
4323add6
PL
251 tipc_ref_discard(ref);
252 tipc_port_unlock(p_ptr);
b97bf3fd
PL
253
254 k_cancel_timer(&p_ptr->timer);
23dd4cce 255 if (p_ptr->connected) {
b97bf3fd 256 buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
4323add6 257 tipc_nodesub_unsubscribe(&p_ptr->subscription);
b97bf3fd 258 }
e83504f7 259 kfree(p_ptr->user_port);
b97bf3fd 260
4323add6 261 spin_lock_bh(&tipc_port_list_lock);
b97bf3fd
PL
262 list_del(&p_ptr->port_list);
263 list_del(&p_ptr->wait_list);
4323add6 264 spin_unlock_bh(&tipc_port_list_lock);
b97bf3fd
PL
265 k_term_timer(&p_ptr->timer);
266 kfree(p_ptr);
4323add6 267 tipc_net_route_msg(buf);
0e35fd5e 268 return 0;
b97bf3fd
PL
269}
270
23dd4cce 271static int port_unreliable(struct tipc_port *p_ptr)
b97bf3fd 272{
23dd4cce 273 return msg_src_droppable(&p_ptr->phdr);
b97bf3fd
PL
274}
275
276int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
277{
23dd4cce 278 struct tipc_port *p_ptr;
c4307285 279
4323add6 280 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
281 if (!p_ptr)
282 return -EINVAL;
283 *isunreliable = port_unreliable(p_ptr);
4cec72c8 284 tipc_port_unlock(p_ptr);
0e35fd5e 285 return 0;
b97bf3fd
PL
286}
287
288int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
289{
23dd4cce 290 struct tipc_port *p_ptr;
c4307285 291
4323add6 292 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
293 if (!p_ptr)
294 return -EINVAL;
23dd4cce 295 msg_set_src_droppable(&p_ptr->phdr, (isunreliable != 0));
4323add6 296 tipc_port_unlock(p_ptr);
0e35fd5e 297 return 0;
b97bf3fd
PL
298}
299
23dd4cce 300static int port_unreturnable(struct tipc_port *p_ptr)
b97bf3fd 301{
23dd4cce 302 return msg_dest_droppable(&p_ptr->phdr);
b97bf3fd
PL
303}
304
305int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
306{
23dd4cce 307 struct tipc_port *p_ptr;
c4307285 308
4323add6 309 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
310 if (!p_ptr)
311 return -EINVAL;
312 *isunrejectable = port_unreturnable(p_ptr);
4cec72c8 313 tipc_port_unlock(p_ptr);
0e35fd5e 314 return 0;
b97bf3fd
PL
315}
316
317int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
318{
23dd4cce 319 struct tipc_port *p_ptr;
c4307285 320
4323add6 321 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
322 if (!p_ptr)
323 return -EINVAL;
23dd4cce 324 msg_set_dest_droppable(&p_ptr->phdr, (isunrejectable != 0));
4323add6 325 tipc_port_unlock(p_ptr);
0e35fd5e 326 return 0;
b97bf3fd
PL
327}
328
c4307285
YH
329/*
330 * port_build_proto_msg(): build a port level protocol
331 * or a connection abortion message. Called with
b97bf3fd
PL
332 * tipc_port lock on.
333 */
334static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
335 u32 origport, u32 orignode,
c4307285 336 u32 usr, u32 type, u32 err,
741de3e9 337 u32 ack)
b97bf3fd
PL
338{
339 struct sk_buff *buf;
340 struct tipc_msg *msg;
c4307285 341
741d9eb7 342 buf = tipc_buf_acquire(INT_H_SIZE);
b97bf3fd
PL
343 if (buf) {
344 msg = buf_msg(buf);
741d9eb7 345 tipc_msg_init(msg, usr, type, INT_H_SIZE, destnode);
75715217 346 msg_set_errcode(msg, err);
b97bf3fd
PL
347 msg_set_destport(msg, destport);
348 msg_set_origport(msg, origport);
b97bf3fd 349 msg_set_orignode(msg, orignode);
b97bf3fd 350 msg_set_msgcnt(msg, ack);
b97bf3fd
PL
351 }
352 return buf;
353}
354
b97bf3fd
PL
355int tipc_reject_msg(struct sk_buff *buf, u32 err)
356{
357 struct tipc_msg *msg = buf_msg(buf);
358 struct sk_buff *rbuf;
359 struct tipc_msg *rmsg;
360 int hdr_sz;
7dd1bf28 361 u32 imp;
b97bf3fd 362 u32 data_sz = msg_data_sz(msg);
017dac31 363 u32 src_node;
7dd1bf28 364 u32 rmsg_sz;
b97bf3fd
PL
365
366 /* discard rejected message if it shouldn't be returned to sender */
76d12527
AS
367
368 if (WARN(!msg_isdata(msg),
369 "attempt to reject message with user=%u", msg_user(msg))) {
370 dump_stack();
371 goto exit;
372 }
acc631bf
AS
373 if (msg_errcode(msg) || msg_dest_droppable(msg))
374 goto exit;
b97bf3fd 375
7dd1bf28
AS
376 /*
377 * construct returned message by copying rejected message header and
378 * data (or subset), then updating header fields that need adjusting
379 */
380
381 hdr_sz = msg_hdr_sz(msg);
382 rmsg_sz = hdr_sz + min_t(u32, data_sz, MAX_REJECT_SIZE);
383
384 rbuf = tipc_buf_acquire(rmsg_sz);
acc631bf
AS
385 if (rbuf == NULL)
386 goto exit;
387
b97bf3fd 388 rmsg = buf_msg(rbuf);
7dd1bf28
AS
389 skb_copy_to_linear_data(rbuf, msg, rmsg_sz);
390
391 if (msg_connected(rmsg)) {
392 imp = msg_importance(rmsg);
393 if (imp < TIPC_CRITICAL_IMPORTANCE)
394 msg_set_importance(rmsg, ++imp);
99c14593 395 }
7dd1bf28
AS
396 msg_set_non_seq(rmsg, 0);
397 msg_set_size(rmsg, rmsg_sz);
398 msg_set_errcode(rmsg, err);
399 msg_set_prevnode(rmsg, tipc_own_addr);
400 msg_swap_words(rmsg, 4, 5);
401 if (!msg_short(rmsg))
402 msg_swap_words(rmsg, 6, 7);
b97bf3fd
PL
403
404 /* send self-abort message when rejecting on a connected port */
405 if (msg_connected(msg)) {
1fc54d8f 406 struct sk_buff *abuf = NULL;
23dd4cce 407 struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
b97bf3fd
PL
408
409 if (p_ptr) {
23dd4cce 410 if (p_ptr->connected)
b97bf3fd 411 abuf = port_build_self_abort_msg(p_ptr, err);
4323add6 412 tipc_port_unlock(p_ptr);
b97bf3fd 413 }
4323add6 414 tipc_net_route_msg(abuf);
b97bf3fd
PL
415 }
416
acc631bf
AS
417 /* send returned message & dispose of rejected message */
418
017dac31
AS
419 src_node = msg_prevnode(msg);
420 if (src_node == tipc_own_addr)
421 tipc_port_recv_msg(rbuf);
422 else
423 tipc_link_send(rbuf, src_node, msg_link_selector(rmsg));
acc631bf
AS
424exit:
425 buf_discard(buf);
b97bf3fd
PL
426 return data_sz;
427}
428
23dd4cce 429int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
4323add6 430 struct iovec const *msg_sect, u32 num_sect,
26896904 431 unsigned int total_len, int err)
b97bf3fd
PL
432{
433 struct sk_buff *buf;
434 int res;
435
26896904 436 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len, MAX_MSG_SIZE,
b97bf3fd
PL
437 !p_ptr->user_port, &buf);
438 if (!buf)
439 return res;
440
441 return tipc_reject_msg(buf, err);
442}
443
444static void port_timeout(unsigned long ref)
445{
23dd4cce 446 struct tipc_port *p_ptr = tipc_port_lock(ref);
1fc54d8f 447 struct sk_buff *buf = NULL;
b97bf3fd 448
065fd177
AS
449 if (!p_ptr)
450 return;
451
23dd4cce 452 if (!p_ptr->connected) {
065fd177 453 tipc_port_unlock(p_ptr);
b97bf3fd 454 return;
065fd177 455 }
b97bf3fd
PL
456
457 /* Last probe answered ? */
458 if (p_ptr->probing_state == PROBING) {
459 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
460 } else {
461 buf = port_build_proto_msg(port_peerport(p_ptr),
462 port_peernode(p_ptr),
23dd4cce 463 p_ptr->ref,
b97bf3fd
PL
464 tipc_own_addr,
465 CONN_MANAGER,
466 CONN_PROBE,
c4307285 467 TIPC_OK,
b97bf3fd 468 0);
b97bf3fd
PL
469 p_ptr->probing_state = PROBING;
470 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
471 }
4323add6
PL
472 tipc_port_unlock(p_ptr);
473 tipc_net_route_msg(buf);
b97bf3fd
PL
474}
475
476
477static void port_handle_node_down(unsigned long ref)
478{
23dd4cce 479 struct tipc_port *p_ptr = tipc_port_lock(ref);
0e65967e 480 struct sk_buff *buf = NULL;
b97bf3fd
PL
481
482 if (!p_ptr)
483 return;
484 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
4323add6
PL
485 tipc_port_unlock(p_ptr);
486 tipc_net_route_msg(buf);
b97bf3fd
PL
487}
488
489
23dd4cce 490static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
b97bf3fd 491{
e244a915 492 struct sk_buff *buf = port_build_peer_abort_msg(p_ptr, err);
b97bf3fd 493
e244a915
AS
494 if (buf) {
495 struct tipc_msg *msg = buf_msg(buf);
496 msg_swap_words(msg, 4, 5);
497 msg_swap_words(msg, 6, 7);
498 }
499 return buf;
b97bf3fd
PL
500}
501
502
23dd4cce 503static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
b97bf3fd 504{
e244a915
AS
505 struct sk_buff *buf;
506 struct tipc_msg *msg;
507 u32 imp;
b97bf3fd 508
23dd4cce 509 if (!p_ptr->connected)
1fc54d8f 510 return NULL;
e244a915
AS
511
512 buf = tipc_buf_acquire(BASIC_H_SIZE);
513 if (buf) {
514 msg = buf_msg(buf);
515 memcpy(msg, &p_ptr->phdr, BASIC_H_SIZE);
516 msg_set_hdr_sz(msg, BASIC_H_SIZE);
517 msg_set_size(msg, BASIC_H_SIZE);
518 imp = msg_importance(msg);
519 if (imp < TIPC_CRITICAL_IMPORTANCE)
520 msg_set_importance(msg, ++imp);
521 msg_set_errcode(msg, err);
522 }
523 return buf;
b97bf3fd
PL
524}
525
4323add6 526void tipc_port_recv_proto_msg(struct sk_buff *buf)
b97bf3fd
PL
527{
528 struct tipc_msg *msg = buf_msg(buf);
1c1a551a 529 struct tipc_port *p_ptr;
1fc54d8f 530 struct sk_buff *r_buf = NULL;
1c1a551a
AS
531 u32 orignode = msg_orignode(msg);
532 u32 origport = msg_origport(msg);
533 u32 destport = msg_destport(msg);
534 int wakeable;
535
536 /* Validate connection */
537
538 p_ptr = tipc_port_lock(destport);
539 if (!p_ptr || !p_ptr->connected ||
540 (port_peernode(p_ptr) != orignode) ||
541 (port_peerport(p_ptr) != origport)) {
542 r_buf = port_build_proto_msg(origport,
543 orignode,
544 destport,
b97bf3fd 545 tipc_own_addr,
06d82c91 546 TIPC_HIGH_IMPORTANCE,
b97bf3fd 547 TIPC_CONN_MSG,
1c1a551a 548 TIPC_ERR_NO_PORT,
b97bf3fd 549 0);
1c1a551a
AS
550 if (p_ptr)
551 tipc_port_unlock(p_ptr);
b97bf3fd
PL
552 goto exit;
553 }
554
1c1a551a
AS
555 /* Process protocol message sent by peer */
556
557 switch (msg_type(msg)) {
558 case CONN_ACK:
559 wakeable = tipc_port_congested(p_ptr) && p_ptr->congested &&
560 p_ptr->wakeup;
561 p_ptr->acked += msg_msgcnt(msg);
562 if (!tipc_port_congested(p_ptr)) {
563 p_ptr->congested = 0;
564 if (wakeable)
565 p_ptr->wakeup(p_ptr);
566 }
567 break;
568 case CONN_PROBE:
569 r_buf = port_build_proto_msg(origport,
570 orignode,
571 destport,
c4307285 572 tipc_own_addr,
b97bf3fd
PL
573 CONN_MANAGER,
574 CONN_PROBE_REPLY,
575 TIPC_OK,
b97bf3fd 576 0);
1c1a551a
AS
577 break;
578 default:
579 /* CONN_PROBE_REPLY or unrecognized - no action required */
580 break;
b97bf3fd
PL
581 }
582 p_ptr->probing_state = CONFIRMED;
1c1a551a 583 tipc_port_unlock(p_ptr);
b97bf3fd 584exit:
4323add6 585 tipc_net_route_msg(r_buf);
b97bf3fd
PL
586 buf_discard(buf);
587}
588
23dd4cce 589static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id)
b97bf3fd 590{
c4307285 591 struct publication *publ;
b97bf3fd
PL
592
593 if (full_id)
c4307285 594 tipc_printf(buf, "<%u.%u.%u:%u>:",
b97bf3fd 595 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
23dd4cce 596 tipc_node(tipc_own_addr), p_ptr->ref);
b97bf3fd 597 else
23dd4cce 598 tipc_printf(buf, "%-10u:", p_ptr->ref);
b97bf3fd 599
23dd4cce 600 if (p_ptr->connected) {
c4307285
YH
601 u32 dport = port_peerport(p_ptr);
602 u32 destnode = port_peernode(p_ptr);
603
604 tipc_printf(buf, " connected to <%u.%u.%u:%u>",
605 tipc_zone(destnode), tipc_cluster(destnode),
606 tipc_node(destnode), dport);
23dd4cce 607 if (p_ptr->conn_type != 0)
c4307285 608 tipc_printf(buf, " via {%u,%u}",
23dd4cce
AS
609 p_ptr->conn_type,
610 p_ptr->conn_instance);
611 } else if (p_ptr->published) {
c4307285
YH
612 tipc_printf(buf, " bound to");
613 list_for_each_entry(publ, &p_ptr->publications, pport_list) {
b97bf3fd
PL
614 if (publ->lower == publ->upper)
615 tipc_printf(buf, " {%u,%u}", publ->type,
616 publ->lower);
617 else
c4307285 618 tipc_printf(buf, " {%u,%u,%u}", publ->type,
b97bf3fd 619 publ->lower, publ->upper);
c4307285
YH
620 }
621 }
622 tipc_printf(buf, "\n");
b97bf3fd
PL
623}
624
625#define MAX_PORT_QUERY 32768
626
4323add6 627struct sk_buff *tipc_port_get_ports(void)
b97bf3fd
PL
628{
629 struct sk_buff *buf;
630 struct tlv_desc *rep_tlv;
631 struct print_buf pb;
23dd4cce 632 struct tipc_port *p_ptr;
b97bf3fd
PL
633 int str_len;
634
4323add6 635 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
b97bf3fd
PL
636 if (!buf)
637 return NULL;
638 rep_tlv = (struct tlv_desc *)buf->data;
639
4323add6
PL
640 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
641 spin_lock_bh(&tipc_port_list_lock);
b97bf3fd 642 list_for_each_entry(p_ptr, &ports, port_list) {
23dd4cce 643 spin_lock_bh(p_ptr->lock);
b97bf3fd 644 port_print(p_ptr, &pb, 0);
23dd4cce 645 spin_unlock_bh(p_ptr->lock);
b97bf3fd 646 }
4323add6
PL
647 spin_unlock_bh(&tipc_port_list_lock);
648 str_len = tipc_printbuf_validate(&pb);
b97bf3fd
PL
649
650 skb_put(buf, TLV_SPACE(str_len));
651 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
652
653 return buf;
654}
655
4323add6 656void tipc_port_reinit(void)
b97bf3fd 657{
23dd4cce 658 struct tipc_port *p_ptr;
b97bf3fd
PL
659 struct tipc_msg *msg;
660
4323add6 661 spin_lock_bh(&tipc_port_list_lock);
b97bf3fd 662 list_for_each_entry(p_ptr, &ports, port_list) {
23dd4cce 663 msg = &p_ptr->phdr;
b97bf3fd
PL
664 if (msg_orignode(msg) == tipc_own_addr)
665 break;
6d4a6672 666 msg_set_prevnode(msg, tipc_own_addr);
b97bf3fd
PL
667 msg_set_orignode(msg, tipc_own_addr);
668 }
4323add6 669 spin_unlock_bh(&tipc_port_list_lock);
b97bf3fd
PL
670}
671
672
673/*
674 * port_dispatcher_sigh(): Signal handler for messages destinated
675 * to the tipc_port interface.
676 */
677
678static void port_dispatcher_sigh(void *dummy)
679{
680 struct sk_buff *buf;
681
682 spin_lock_bh(&queue_lock);
683 buf = msg_queue_head;
1fc54d8f 684 msg_queue_head = NULL;
b97bf3fd
PL
685 spin_unlock_bh(&queue_lock);
686
687 while (buf) {
23dd4cce 688 struct tipc_port *p_ptr;
b97bf3fd
PL
689 struct user_port *up_ptr;
690 struct tipc_portid orig;
691 struct tipc_name_seq dseq;
692 void *usr_handle;
693 int connected;
694 int published;
9688243b 695 u32 message_type;
b97bf3fd
PL
696
697 struct sk_buff *next = buf->next;
698 struct tipc_msg *msg = buf_msg(buf);
699 u32 dref = msg_destport(msg);
c4307285 700
9688243b
AS
701 message_type = msg_type(msg);
702 if (message_type > TIPC_DIRECT_MSG)
703 goto reject; /* Unsupported message type */
704
4323add6 705 p_ptr = tipc_port_lock(dref);
9688243b
AS
706 if (!p_ptr)
707 goto reject; /* Port deleted while msg in queue */
708
b97bf3fd
PL
709 orig.ref = msg_origport(msg);
710 orig.node = msg_orignode(msg);
711 up_ptr = p_ptr->user_port;
712 usr_handle = up_ptr->usr_handle;
23dd4cce
AS
713 connected = p_ptr->connected;
714 published = p_ptr->published;
b97bf3fd
PL
715
716 if (unlikely(msg_errcode(msg)))
717 goto err;
718
9688243b 719 switch (message_type) {
c4307285 720
b97bf3fd
PL
721 case TIPC_CONN_MSG:{
722 tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
723 u32 peer_port = port_peerport(p_ptr);
724 u32 peer_node = port_peernode(p_ptr);
cb7ce914 725 u32 dsz;
b97bf3fd 726
4cec72c8 727 tipc_port_unlock(p_ptr);
5307e469
AS
728 if (unlikely(!cb))
729 goto reject;
b97bf3fd 730 if (unlikely(!connected)) {
84b07c16 731 if (tipc_connect2port(dref, &orig))
b97bf3fd 732 goto reject;
84b07c16
AS
733 } else if ((msg_origport(msg) != peer_port) ||
734 (msg_orignode(msg) != peer_node))
b97bf3fd 735 goto reject;
cb7ce914
AS
736 dsz = msg_data_sz(msg);
737 if (unlikely(dsz &&
738 (++p_ptr->conn_unacked >=
739 TIPC_FLOW_CONTROL_WIN)))
c4307285 740 tipc_acknowledge(dref,
23dd4cce 741 p_ptr->conn_unacked);
b97bf3fd 742 skb_pull(buf, msg_hdr_sz(msg));
cb7ce914 743 cb(usr_handle, dref, &buf, msg_data(msg), dsz);
b97bf3fd
PL
744 break;
745 }
746 case TIPC_DIRECT_MSG:{
747 tipc_msg_event cb = up_ptr->msg_cb;
748
4cec72c8 749 tipc_port_unlock(p_ptr);
5307e469 750 if (unlikely(!cb || connected))
b97bf3fd
PL
751 goto reject;
752 skb_pull(buf, msg_hdr_sz(msg));
c4307285 753 cb(usr_handle, dref, &buf, msg_data(msg),
b97bf3fd
PL
754 msg_data_sz(msg), msg_importance(msg),
755 &orig);
756 break;
757 }
9688243b 758 case TIPC_MCAST_MSG:
b97bf3fd
PL
759 case TIPC_NAMED_MSG:{
760 tipc_named_msg_event cb = up_ptr->named_msg_cb;
761
4cec72c8 762 tipc_port_unlock(p_ptr);
5307e469 763 if (unlikely(!cb || connected || !published))
b97bf3fd
PL
764 goto reject;
765 dseq.type = msg_nametype(msg);
766 dseq.lower = msg_nameinst(msg);
9688243b
AS
767 dseq.upper = (message_type == TIPC_NAMED_MSG)
768 ? dseq.lower : msg_nameupper(msg);
b97bf3fd 769 skb_pull(buf, msg_hdr_sz(msg));
c4307285 770 cb(usr_handle, dref, &buf, msg_data(msg),
b97bf3fd
PL
771 msg_data_sz(msg), msg_importance(msg),
772 &orig, &dseq);
773 break;
774 }
775 }
776 if (buf)
777 buf_discard(buf);
778 buf = next;
779 continue;
780err:
9688243b 781 switch (message_type) {
c4307285 782
b97bf3fd 783 case TIPC_CONN_MSG:{
c4307285 784 tipc_conn_shutdown_event cb =
b97bf3fd
PL
785 up_ptr->conn_err_cb;
786 u32 peer_port = port_peerport(p_ptr);
787 u32 peer_node = port_peernode(p_ptr);
788
4cec72c8 789 tipc_port_unlock(p_ptr);
5307e469 790 if (!cb || !connected)
b97bf3fd 791 break;
5307e469
AS
792 if ((msg_origport(msg) != peer_port) ||
793 (msg_orignode(msg) != peer_node))
b97bf3fd
PL
794 break;
795 tipc_disconnect(dref);
796 skb_pull(buf, msg_hdr_sz(msg));
797 cb(usr_handle, dref, &buf, msg_data(msg),
798 msg_data_sz(msg), msg_errcode(msg));
799 break;
800 }
801 case TIPC_DIRECT_MSG:{
802 tipc_msg_err_event cb = up_ptr->err_cb;
803
4cec72c8 804 tipc_port_unlock(p_ptr);
5307e469 805 if (!cb || connected)
b97bf3fd
PL
806 break;
807 skb_pull(buf, msg_hdr_sz(msg));
808 cb(usr_handle, dref, &buf, msg_data(msg),
809 msg_data_sz(msg), msg_errcode(msg), &orig);
810 break;
811 }
9688243b 812 case TIPC_MCAST_MSG:
b97bf3fd 813 case TIPC_NAMED_MSG:{
c4307285 814 tipc_named_msg_err_event cb =
b97bf3fd
PL
815 up_ptr->named_err_cb;
816
4cec72c8 817 tipc_port_unlock(p_ptr);
5307e469 818 if (!cb || connected)
b97bf3fd
PL
819 break;
820 dseq.type = msg_nametype(msg);
821 dseq.lower = msg_nameinst(msg);
9688243b
AS
822 dseq.upper = (message_type == TIPC_NAMED_MSG)
823 ? dseq.lower : msg_nameupper(msg);
b97bf3fd 824 skb_pull(buf, msg_hdr_sz(msg));
c4307285 825 cb(usr_handle, dref, &buf, msg_data(msg),
b97bf3fd
PL
826 msg_data_sz(msg), msg_errcode(msg), &dseq);
827 break;
828 }
829 }
830 if (buf)
831 buf_discard(buf);
832 buf = next;
833 continue;
834reject:
835 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
836 buf = next;
837 }
838}
839
840/*
841 * port_dispatcher(): Dispatcher for messages destinated
842 * to the tipc_port interface. Called with port locked.
843 */
844
845static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
846{
847 buf->next = NULL;
848 spin_lock_bh(&queue_lock);
849 if (msg_queue_head) {
850 msg_queue_tail->next = buf;
851 msg_queue_tail = buf;
852 } else {
853 msg_queue_tail = msg_queue_head = buf;
4323add6 854 tipc_k_signal((Handler)port_dispatcher_sigh, 0);
b97bf3fd
PL
855 }
856 spin_unlock_bh(&queue_lock);
0e35fd5e 857 return 0;
b97bf3fd
PL
858}
859
c4307285 860/*
b97bf3fd 861 * Wake up port after congestion: Called with port locked,
c4307285 862 *
b97bf3fd
PL
863 */
864
865static void port_wakeup_sh(unsigned long ref)
866{
23dd4cce 867 struct tipc_port *p_ptr;
b97bf3fd 868 struct user_port *up_ptr;
1fc54d8f
SR
869 tipc_continue_event cb = NULL;
870 void *uh = NULL;
b97bf3fd 871
4323add6 872 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
873 if (p_ptr) {
874 up_ptr = p_ptr->user_port;
875 if (up_ptr) {
876 cb = up_ptr->continue_event_cb;
877 uh = up_ptr->usr_handle;
878 }
4323add6 879 tipc_port_unlock(p_ptr);
b97bf3fd
PL
880 }
881 if (cb)
882 cb(uh, ref);
883}
884
885
886static void port_wakeup(struct tipc_port *p_ptr)
887{
4323add6 888 tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
b97bf3fd
PL
889}
890
891void tipc_acknowledge(u32 ref, u32 ack)
892{
23dd4cce 893 struct tipc_port *p_ptr;
1fc54d8f 894 struct sk_buff *buf = NULL;
b97bf3fd 895
4323add6 896 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
897 if (!p_ptr)
898 return;
23dd4cce
AS
899 if (p_ptr->connected) {
900 p_ptr->conn_unacked -= ack;
b97bf3fd
PL
901 buf = port_build_proto_msg(port_peerport(p_ptr),
902 port_peernode(p_ptr),
903 ref,
904 tipc_own_addr,
905 CONN_MANAGER,
906 CONN_ACK,
c4307285 907 TIPC_OK,
b97bf3fd
PL
908 ack);
909 }
4323add6
PL
910 tipc_port_unlock(p_ptr);
911 tipc_net_route_msg(buf);
b97bf3fd
PL
912}
913
914/*
b0c1e928 915 * tipc_createport(): user level call.
b97bf3fd
PL
916 */
917
b0c1e928 918int tipc_createport(void *usr_handle,
c4307285
YH
919 unsigned int importance,
920 tipc_msg_err_event error_cb,
921 tipc_named_msg_err_event named_error_cb,
922 tipc_conn_shutdown_event conn_error_cb,
923 tipc_msg_event msg_cb,
924 tipc_named_msg_event named_msg_cb,
925 tipc_conn_msg_event conn_msg_cb,
b97bf3fd
PL
926 tipc_continue_event continue_event_cb,/* May be zero */
927 u32 *portref)
928{
929 struct user_port *up_ptr;
23dd4cce 930 struct tipc_port *p_ptr;
b97bf3fd 931
0da974f4 932 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
a10bd924 933 if (!up_ptr) {
a75bf874 934 warn("Port creation failed, no memory\n");
b97bf3fd
PL
935 return -ENOMEM;
936 }
23dd4cce 937 p_ptr = (struct tipc_port *)tipc_createport_raw(NULL, port_dispatcher,
0ea52241
AS
938 port_wakeup, importance);
939 if (!p_ptr) {
b97bf3fd
PL
940 kfree(up_ptr);
941 return -ENOMEM;
942 }
943
944 p_ptr->user_port = up_ptr;
b97bf3fd 945 up_ptr->usr_handle = usr_handle;
23dd4cce 946 up_ptr->ref = p_ptr->ref;
b97bf3fd
PL
947 up_ptr->err_cb = error_cb;
948 up_ptr->named_err_cb = named_error_cb;
949 up_ptr->conn_err_cb = conn_error_cb;
950 up_ptr->msg_cb = msg_cb;
951 up_ptr->named_msg_cb = named_msg_cb;
952 up_ptr->conn_msg_cb = conn_msg_cb;
953 up_ptr->continue_event_cb = continue_event_cb;
23dd4cce 954 *portref = p_ptr->ref;
4323add6 955 tipc_port_unlock(p_ptr);
0e35fd5e 956 return 0;
b97bf3fd
PL
957}
958
b97bf3fd
PL
959int tipc_portimportance(u32 ref, unsigned int *importance)
960{
23dd4cce 961 struct tipc_port *p_ptr;
c4307285 962
4323add6 963 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
964 if (!p_ptr)
965 return -EINVAL;
23dd4cce 966 *importance = (unsigned int)msg_importance(&p_ptr->phdr);
4cec72c8 967 tipc_port_unlock(p_ptr);
0e35fd5e 968 return 0;
b97bf3fd
PL
969}
970
971int tipc_set_portimportance(u32 ref, unsigned int imp)
972{
23dd4cce 973 struct tipc_port *p_ptr;
b97bf3fd
PL
974
975 if (imp > TIPC_CRITICAL_IMPORTANCE)
976 return -EINVAL;
977
4323add6 978 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
979 if (!p_ptr)
980 return -EINVAL;
23dd4cce 981 msg_set_importance(&p_ptr->phdr, (u32)imp);
4cec72c8 982 tipc_port_unlock(p_ptr);
0e35fd5e 983 return 0;
b97bf3fd
PL
984}
985
986
987int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
988{
23dd4cce 989 struct tipc_port *p_ptr;
b97bf3fd
PL
990 struct publication *publ;
991 u32 key;
992 int res = -EINVAL;
993
4323add6 994 p_ptr = tipc_port_lock(ref);
d55b4c63
AB
995 if (!p_ptr)
996 return -EINVAL;
997
23dd4cce 998 if (p_ptr->connected)
b97bf3fd
PL
999 goto exit;
1000 if (seq->lower > seq->upper)
1001 goto exit;
1002 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
1003 goto exit;
1004 key = ref + p_ptr->pub_count + 1;
1005 if (key == ref) {
1006 res = -EADDRINUSE;
1007 goto exit;
1008 }
4323add6 1009 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
23dd4cce 1010 scope, p_ptr->ref, key);
b97bf3fd
PL
1011 if (publ) {
1012 list_add(&publ->pport_list, &p_ptr->publications);
1013 p_ptr->pub_count++;
23dd4cce 1014 p_ptr->published = 1;
0e35fd5e 1015 res = 0;
b97bf3fd
PL
1016 }
1017exit:
4323add6 1018 tipc_port_unlock(p_ptr);
b97bf3fd
PL
1019 return res;
1020}
1021
1022int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1023{
23dd4cce 1024 struct tipc_port *p_ptr;
b97bf3fd
PL
1025 struct publication *publ;
1026 struct publication *tpubl;
1027 int res = -EINVAL;
c4307285 1028
4323add6 1029 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1030 if (!p_ptr)
1031 return -EINVAL;
b97bf3fd 1032 if (!seq) {
c4307285 1033 list_for_each_entry_safe(publ, tpubl,
b97bf3fd 1034 &p_ptr->publications, pport_list) {
c4307285 1035 tipc_nametbl_withdraw(publ->type, publ->lower,
4323add6 1036 publ->ref, publ->key);
b97bf3fd 1037 }
0e35fd5e 1038 res = 0;
b97bf3fd 1039 } else {
c4307285 1040 list_for_each_entry_safe(publ, tpubl,
b97bf3fd
PL
1041 &p_ptr->publications, pport_list) {
1042 if (publ->scope != scope)
1043 continue;
1044 if (publ->type != seq->type)
1045 continue;
1046 if (publ->lower != seq->lower)
1047 continue;
1048 if (publ->upper != seq->upper)
1049 break;
c4307285 1050 tipc_nametbl_withdraw(publ->type, publ->lower,
4323add6 1051 publ->ref, publ->key);
0e35fd5e 1052 res = 0;
b97bf3fd
PL
1053 break;
1054 }
1055 }
1056 if (list_empty(&p_ptr->publications))
23dd4cce 1057 p_ptr->published = 0;
4323add6 1058 tipc_port_unlock(p_ptr);
b97bf3fd
PL
1059 return res;
1060}
1061
1062int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
1063{
23dd4cce 1064 struct tipc_port *p_ptr;
b97bf3fd
PL
1065 struct tipc_msg *msg;
1066 int res = -EINVAL;
1067
4323add6 1068 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1069 if (!p_ptr)
1070 return -EINVAL;
23dd4cce 1071 if (p_ptr->published || p_ptr->connected)
b97bf3fd
PL
1072 goto exit;
1073 if (!peer->ref)
1074 goto exit;
1075
23dd4cce 1076 msg = &p_ptr->phdr;
b97bf3fd
PL
1077 msg_set_destnode(msg, peer->node);
1078 msg_set_destport(msg, peer->ref);
1079 msg_set_orignode(msg, tipc_own_addr);
23dd4cce 1080 msg_set_origport(msg, p_ptr->ref);
b97bf3fd 1081 msg_set_type(msg, TIPC_CONN_MSG);
53b94364 1082 msg_set_lookup_scope(msg, 0);
08c80e9a 1083 msg_set_hdr_sz(msg, SHORT_H_SIZE);
b97bf3fd
PL
1084
1085 p_ptr->probing_interval = PROBING_INTERVAL;
1086 p_ptr->probing_state = CONFIRMED;
23dd4cce 1087 p_ptr->connected = 1;
b97bf3fd
PL
1088 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
1089
0e65967e 1090 tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
880b005f 1091 (void *)(unsigned long)ref,
b97bf3fd 1092 (net_ev_handler)port_handle_node_down);
0e35fd5e 1093 res = 0;
b97bf3fd 1094exit:
4323add6 1095 tipc_port_unlock(p_ptr);
23dd4cce 1096 p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
b97bf3fd
PL
1097 return res;
1098}
1099
0c3141e9
AS
1100/**
1101 * tipc_disconnect_port - disconnect port from peer
1102 *
1103 * Port must be locked.
1104 */
1105
1106int tipc_disconnect_port(struct tipc_port *tp_ptr)
1107{
1108 int res;
1109
1110 if (tp_ptr->connected) {
1111 tp_ptr->connected = 0;
1112 /* let timer expire on it's own to avoid deadlock! */
1113 tipc_nodesub_unsubscribe(
23dd4cce 1114 &((struct tipc_port *)tp_ptr)->subscription);
0e35fd5e 1115 res = 0;
0c3141e9
AS
1116 } else {
1117 res = -ENOTCONN;
1118 }
1119 return res;
1120}
1121
b97bf3fd
PL
1122/*
1123 * tipc_disconnect(): Disconnect port form peer.
1124 * This is a node local operation.
1125 */
1126
1127int tipc_disconnect(u32 ref)
1128{
23dd4cce 1129 struct tipc_port *p_ptr;
0c3141e9 1130 int res;
b97bf3fd 1131
4323add6 1132 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1133 if (!p_ptr)
1134 return -EINVAL;
0c3141e9 1135 res = tipc_disconnect_port((struct tipc_port *)p_ptr);
4323add6 1136 tipc_port_unlock(p_ptr);
b97bf3fd
PL
1137 return res;
1138}
1139
1140/*
1141 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1142 */
1143int tipc_shutdown(u32 ref)
1144{
23dd4cce 1145 struct tipc_port *p_ptr;
1fc54d8f 1146 struct sk_buff *buf = NULL;
b97bf3fd 1147
4323add6 1148 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1149 if (!p_ptr)
1150 return -EINVAL;
1151
e244a915 1152 buf = port_build_peer_abort_msg(p_ptr, TIPC_CONN_SHUTDOWN);
4323add6
PL
1153 tipc_port_unlock(p_ptr);
1154 tipc_net_route_msg(buf);
b97bf3fd
PL
1155 return tipc_disconnect(ref);
1156}
1157
b97bf3fd 1158/*
4323add6 1159 * tipc_port_recv_sections(): Concatenate and deliver sectioned
b97bf3fd
PL
1160 * message for this node.
1161 */
1162
23dd4cce 1163static int tipc_port_recv_sections(struct tipc_port *sender, unsigned int num_sect,
26896904
AS
1164 struct iovec const *msg_sect,
1165 unsigned int total_len)
b97bf3fd
PL
1166{
1167 struct sk_buff *buf;
1168 int res;
c4307285 1169
26896904 1170 res = tipc_msg_build(&sender->phdr, msg_sect, num_sect, total_len,
b97bf3fd
PL
1171 MAX_MSG_SIZE, !sender->user_port, &buf);
1172 if (likely(buf))
4323add6 1173 tipc_port_recv_msg(buf);
b97bf3fd
PL
1174 return res;
1175}
1176
1177/**
1178 * tipc_send - send message sections on connection
1179 */
1180
26896904
AS
1181int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect,
1182 unsigned int total_len)
b97bf3fd 1183{
23dd4cce 1184 struct tipc_port *p_ptr;
b97bf3fd
PL
1185 u32 destnode;
1186 int res;
1187
4323add6 1188 p_ptr = tipc_port_deref(ref);
23dd4cce 1189 if (!p_ptr || !p_ptr->connected)
b97bf3fd
PL
1190 return -EINVAL;
1191
23dd4cce 1192 p_ptr->congested = 1;
4323add6 1193 if (!tipc_port_congested(p_ptr)) {
b97bf3fd
PL
1194 destnode = port_peernode(p_ptr);
1195 if (likely(destnode != tipc_own_addr))
4323add6 1196 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
26896904 1197 total_len, destnode);
b97bf3fd 1198 else
26896904
AS
1199 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
1200 total_len);
b97bf3fd
PL
1201
1202 if (likely(res != -ELINKCONG)) {
23dd4cce 1203 p_ptr->congested = 0;
cb7ce914
AS
1204 if (res > 0)
1205 p_ptr->sent++;
b97bf3fd
PL
1206 return res;
1207 }
1208 }
1209 if (port_unreliable(p_ptr)) {
23dd4cce 1210 p_ptr->congested = 0;
26896904 1211 return total_len;
b97bf3fd
PL
1212 }
1213 return -ELINKCONG;
1214}
1215
b97bf3fd 1216/**
12bae479 1217 * tipc_send2name - send message sections to port name
b97bf3fd
PL
1218 */
1219
12bae479 1220int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
26896904
AS
1221 unsigned int num_sect, struct iovec const *msg_sect,
1222 unsigned int total_len)
b97bf3fd 1223{
23dd4cce 1224 struct tipc_port *p_ptr;
b97bf3fd
PL
1225 struct tipc_msg *msg;
1226 u32 destnode = domain;
9ccc2eb4 1227 u32 destport;
b97bf3fd
PL
1228 int res;
1229
4323add6 1230 p_ptr = tipc_port_deref(ref);
23dd4cce 1231 if (!p_ptr || p_ptr->connected)
b97bf3fd
PL
1232 return -EINVAL;
1233
23dd4cce 1234 msg = &p_ptr->phdr;
b97bf3fd 1235 msg_set_type(msg, TIPC_NAMED_MSG);
12bae479
AS
1236 msg_set_orignode(msg, tipc_own_addr);
1237 msg_set_origport(msg, ref);
741d9eb7 1238 msg_set_hdr_sz(msg, NAMED_H_SIZE);
b97bf3fd
PL
1239 msg_set_nametype(msg, name->type);
1240 msg_set_nameinst(msg, name->instance);
c68ca7b7 1241 msg_set_lookup_scope(msg, tipc_addr_scope(domain));
4323add6 1242 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
b97bf3fd
PL
1243 msg_set_destnode(msg, destnode);
1244 msg_set_destport(msg, destport);
1245
5d9c54c1 1246 if (likely(destport)) {
b97bf3fd 1247 if (likely(destnode == tipc_own_addr))
cb7ce914 1248 res = tipc_port_recv_sections(p_ptr, num_sect,
26896904 1249 msg_sect, total_len);
cb7ce914
AS
1250 else
1251 res = tipc_link_send_sections_fast(p_ptr, msg_sect,
26896904
AS
1252 num_sect, total_len,
1253 destnode);
cb7ce914
AS
1254 if (likely(res != -ELINKCONG)) {
1255 if (res > 0)
1256 p_ptr->sent++;
b97bf3fd 1257 return res;
cb7ce914 1258 }
b97bf3fd 1259 if (port_unreliable(p_ptr)) {
26896904 1260 return total_len;
b97bf3fd
PL
1261 }
1262 return -ELINKCONG;
1263 }
c4307285 1264 return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
26896904 1265 total_len, TIPC_ERR_NO_NAME);
b97bf3fd
PL
1266}
1267
1268/**
12bae479 1269 * tipc_send2port - send message sections to port identity
b97bf3fd
PL
1270 */
1271
12bae479 1272int tipc_send2port(u32 ref, struct tipc_portid const *dest,
26896904
AS
1273 unsigned int num_sect, struct iovec const *msg_sect,
1274 unsigned int total_len)
b97bf3fd 1275{
23dd4cce 1276 struct tipc_port *p_ptr;
b97bf3fd
PL
1277 struct tipc_msg *msg;
1278 int res;
1279
4323add6 1280 p_ptr = tipc_port_deref(ref);
23dd4cce 1281 if (!p_ptr || p_ptr->connected)
b97bf3fd
PL
1282 return -EINVAL;
1283
23dd4cce 1284 msg = &p_ptr->phdr;
b97bf3fd 1285 msg_set_type(msg, TIPC_DIRECT_MSG);
53b94364 1286 msg_set_lookup_scope(msg, 0);
12bae479
AS
1287 msg_set_orignode(msg, tipc_own_addr);
1288 msg_set_origport(msg, ref);
b97bf3fd
PL
1289 msg_set_destnode(msg, dest->node);
1290 msg_set_destport(msg, dest->ref);
741d9eb7 1291 msg_set_hdr_sz(msg, BASIC_H_SIZE);
cb7ce914 1292
b97bf3fd 1293 if (dest->node == tipc_own_addr)
26896904
AS
1294 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
1295 total_len);
cb7ce914
AS
1296 else
1297 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
26896904 1298 total_len, dest->node);
cb7ce914
AS
1299 if (likely(res != -ELINKCONG)) {
1300 if (res > 0)
1301 p_ptr->sent++;
b97bf3fd 1302 return res;
cb7ce914 1303 }
b97bf3fd 1304 if (port_unreliable(p_ptr)) {
26896904 1305 return total_len;
b97bf3fd
PL
1306 }
1307 return -ELINKCONG;
1308}
1309
c4307285 1310/**
12bae479 1311 * tipc_send_buf2port - send message buffer to port identity
b97bf3fd
PL
1312 */
1313
12bae479
AS
1314int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
1315 struct sk_buff *buf, unsigned int dsz)
b97bf3fd 1316{
23dd4cce 1317 struct tipc_port *p_ptr;
b97bf3fd
PL
1318 struct tipc_msg *msg;
1319 int res;
1320
23dd4cce
AS
1321 p_ptr = (struct tipc_port *)tipc_ref_deref(ref);
1322 if (!p_ptr || p_ptr->connected)
b97bf3fd
PL
1323 return -EINVAL;
1324
23dd4cce 1325 msg = &p_ptr->phdr;
b97bf3fd 1326 msg_set_type(msg, TIPC_DIRECT_MSG);
12bae479
AS
1327 msg_set_orignode(msg, tipc_own_addr);
1328 msg_set_origport(msg, ref);
b97bf3fd
PL
1329 msg_set_destnode(msg, dest->node);
1330 msg_set_destport(msg, dest->ref);
741d9eb7
AS
1331 msg_set_hdr_sz(msg, BASIC_H_SIZE);
1332 msg_set_size(msg, BASIC_H_SIZE + dsz);
1333 if (skb_cow(buf, BASIC_H_SIZE))
b97bf3fd
PL
1334 return -ENOMEM;
1335
741d9eb7
AS
1336 skb_push(buf, BASIC_H_SIZE);
1337 skb_copy_to_linear_data(buf, msg, BASIC_H_SIZE);
cb7ce914 1338
b97bf3fd 1339 if (dest->node == tipc_own_addr)
cb7ce914
AS
1340 res = tipc_port_recv_msg(buf);
1341 else
1342 res = tipc_send_buf_fast(buf, dest->node);
1343 if (likely(res != -ELINKCONG)) {
1344 if (res > 0)
1345 p_ptr->sent++;
b97bf3fd 1346 return res;
cb7ce914 1347 }
b97bf3fd
PL
1348 if (port_unreliable(p_ptr))
1349 return dsz;
1350 return -ELINKCONG;
1351}
1352