tipc: Optimize routing of returned payload messages
[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;
c68ca7b7 225 tipc_msg_init(msg, importance, TIPC_NAMED_MSG, LONG_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
31e3c3f6 342 buf = tipc_buf_acquire(LONG_H_SIZE);
b97bf3fd
PL
343 if (buf) {
344 msg = buf_msg(buf);
c68ca7b7 345 tipc_msg_init(msg, usr, type, LONG_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;
361 u32 imp = msg_importance(msg);
362 u32 data_sz = msg_data_sz(msg);
017dac31 363 u32 src_node;
b97bf3fd
PL
364
365 if (data_sz > MAX_REJECT_SIZE)
366 data_sz = MAX_REJECT_SIZE;
367 if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE))
368 imp++;
b97bf3fd
PL
369
370 /* discard rejected message if it shouldn't be returned to sender */
76d12527
AS
371
372 if (WARN(!msg_isdata(msg),
373 "attempt to reject message with user=%u", msg_user(msg))) {
374 dump_stack();
375 goto exit;
376 }
acc631bf
AS
377 if (msg_errcode(msg) || msg_dest_droppable(msg))
378 goto exit;
b97bf3fd
PL
379
380 /* construct rejected message */
381 if (msg_mcast(msg))
382 hdr_sz = MCAST_H_SIZE;
383 else
384 hdr_sz = LONG_H_SIZE;
31e3c3f6 385 rbuf = tipc_buf_acquire(data_sz + hdr_sz);
acc631bf
AS
386 if (rbuf == NULL)
387 goto exit;
388
b97bf3fd 389 rmsg = buf_msg(rbuf);
c68ca7b7 390 tipc_msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
75715217 391 msg_set_errcode(rmsg, err);
b97bf3fd 392 msg_set_destport(rmsg, msg_origport(msg));
b97bf3fd 393 msg_set_origport(rmsg, msg_destport(msg));
99c14593 394 if (msg_short(msg)) {
b97bf3fd 395 msg_set_orignode(rmsg, tipc_own_addr);
99c14593
AS
396 /* leave name type & instance as zeroes */
397 } else {
b97bf3fd 398 msg_set_orignode(rmsg, msg_destnode(msg));
99c14593
AS
399 msg_set_nametype(rmsg, msg_nametype(msg));
400 msg_set_nameinst(rmsg, msg_nameinst(msg));
401 }
c4307285 402 msg_set_size(rmsg, data_sz + hdr_sz);
27d7ff46 403 skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
b97bf3fd
PL
404
405 /* send self-abort message when rejecting on a connected port */
406 if (msg_connected(msg)) {
1fc54d8f 407 struct sk_buff *abuf = NULL;
23dd4cce 408 struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
b97bf3fd
PL
409
410 if (p_ptr) {
23dd4cce 411 if (p_ptr->connected)
b97bf3fd 412 abuf = port_build_self_abort_msg(p_ptr, err);
4323add6 413 tipc_port_unlock(p_ptr);
b97bf3fd 414 }
4323add6 415 tipc_net_route_msg(abuf);
b97bf3fd
PL
416 }
417
acc631bf
AS
418 /* send returned message & dispose of rejected message */
419
017dac31
AS
420 src_node = msg_prevnode(msg);
421 if (src_node == tipc_own_addr)
422 tipc_port_recv_msg(rbuf);
423 else
424 tipc_link_send(rbuf, src_node, msg_link_selector(rmsg));
acc631bf
AS
425exit:
426 buf_discard(buf);
b97bf3fd
PL
427 return data_sz;
428}
429
23dd4cce 430int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
4323add6 431 struct iovec const *msg_sect, u32 num_sect,
26896904 432 unsigned int total_len, int err)
b97bf3fd
PL
433{
434 struct sk_buff *buf;
435 int res;
436
26896904 437 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len, MAX_MSG_SIZE,
b97bf3fd
PL
438 !p_ptr->user_port, &buf);
439 if (!buf)
440 return res;
441
442 return tipc_reject_msg(buf, err);
443}
444
445static void port_timeout(unsigned long ref)
446{
23dd4cce 447 struct tipc_port *p_ptr = tipc_port_lock(ref);
1fc54d8f 448 struct sk_buff *buf = NULL;
b97bf3fd 449
065fd177
AS
450 if (!p_ptr)
451 return;
452
23dd4cce 453 if (!p_ptr->connected) {
065fd177 454 tipc_port_unlock(p_ptr);
b97bf3fd 455 return;
065fd177 456 }
b97bf3fd
PL
457
458 /* Last probe answered ? */
459 if (p_ptr->probing_state == PROBING) {
460 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
461 } else {
462 buf = port_build_proto_msg(port_peerport(p_ptr),
463 port_peernode(p_ptr),
23dd4cce 464 p_ptr->ref,
b97bf3fd
PL
465 tipc_own_addr,
466 CONN_MANAGER,
467 CONN_PROBE,
c4307285 468 TIPC_OK,
b97bf3fd 469 0);
b97bf3fd
PL
470 p_ptr->probing_state = PROBING;
471 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
472 }
4323add6
PL
473 tipc_port_unlock(p_ptr);
474 tipc_net_route_msg(buf);
b97bf3fd
PL
475}
476
477
478static void port_handle_node_down(unsigned long ref)
479{
23dd4cce 480 struct tipc_port *p_ptr = tipc_port_lock(ref);
0e65967e 481 struct sk_buff *buf = NULL;
b97bf3fd
PL
482
483 if (!p_ptr)
484 return;
485 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
4323add6
PL
486 tipc_port_unlock(p_ptr);
487 tipc_net_route_msg(buf);
b97bf3fd
PL
488}
489
490
23dd4cce 491static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
b97bf3fd 492{
23dd4cce 493 u32 imp = msg_importance(&p_ptr->phdr);
b97bf3fd 494
23dd4cce 495 if (!p_ptr->connected)
1fc54d8f 496 return NULL;
b97bf3fd
PL
497 if (imp < TIPC_CRITICAL_IMPORTANCE)
498 imp++;
23dd4cce 499 return port_build_proto_msg(p_ptr->ref,
b97bf3fd
PL
500 tipc_own_addr,
501 port_peerport(p_ptr),
502 port_peernode(p_ptr),
503 imp,
504 TIPC_CONN_MSG,
c4307285 505 err,
b97bf3fd
PL
506 0);
507}
508
509
23dd4cce 510static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
b97bf3fd 511{
23dd4cce 512 u32 imp = msg_importance(&p_ptr->phdr);
b97bf3fd 513
23dd4cce 514 if (!p_ptr->connected)
1fc54d8f 515 return NULL;
b97bf3fd
PL
516 if (imp < TIPC_CRITICAL_IMPORTANCE)
517 imp++;
518 return port_build_proto_msg(port_peerport(p_ptr),
519 port_peernode(p_ptr),
23dd4cce 520 p_ptr->ref,
b97bf3fd
PL
521 tipc_own_addr,
522 imp,
523 TIPC_CONN_MSG,
c4307285 524 err,
b97bf3fd
PL
525 0);
526}
527
4323add6 528void tipc_port_recv_proto_msg(struct sk_buff *buf)
b97bf3fd
PL
529{
530 struct tipc_msg *msg = buf_msg(buf);
23dd4cce 531 struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
b97bf3fd 532 u32 err = TIPC_OK;
1fc54d8f
SR
533 struct sk_buff *r_buf = NULL;
534 struct sk_buff *abort_buf = NULL;
b97bf3fd 535
b97bf3fd
PL
536 if (!p_ptr) {
537 err = TIPC_ERR_NO_PORT;
23dd4cce 538 } else if (p_ptr->connected) {
96d841b7
AS
539 if ((port_peernode(p_ptr) != msg_orignode(msg)) ||
540 (port_peerport(p_ptr) != msg_origport(msg))) {
b97bf3fd 541 err = TIPC_ERR_NO_PORT;
96d841b7 542 } else if (msg_type(msg) == CONN_ACK) {
c4307285 543 int wakeup = tipc_port_congested(p_ptr) &&
23dd4cce 544 p_ptr->congested &&
b97bf3fd
PL
545 p_ptr->wakeup;
546 p_ptr->acked += msg_msgcnt(msg);
4323add6 547 if (tipc_port_congested(p_ptr))
b97bf3fd 548 goto exit;
23dd4cce 549 p_ptr->congested = 0;
b97bf3fd
PL
550 if (!wakeup)
551 goto exit;
23dd4cce 552 p_ptr->wakeup(p_ptr);
b97bf3fd
PL
553 goto exit;
554 }
23dd4cce 555 } else if (p_ptr->published) {
b97bf3fd
PL
556 err = TIPC_ERR_NO_PORT;
557 }
558 if (err) {
559 r_buf = port_build_proto_msg(msg_origport(msg),
c4307285
YH
560 msg_orignode(msg),
561 msg_destport(msg),
b97bf3fd 562 tipc_own_addr,
06d82c91 563 TIPC_HIGH_IMPORTANCE,
b97bf3fd
PL
564 TIPC_CONN_MSG,
565 err,
b97bf3fd
PL
566 0);
567 goto exit;
568 }
569
570 /* All is fine */
571 if (msg_type(msg) == CONN_PROBE) {
c4307285
YH
572 r_buf = port_build_proto_msg(msg_origport(msg),
573 msg_orignode(msg),
574 msg_destport(msg),
575 tipc_own_addr,
b97bf3fd
PL
576 CONN_MANAGER,
577 CONN_PROBE_REPLY,
578 TIPC_OK,
b97bf3fd
PL
579 0);
580 }
581 p_ptr->probing_state = CONFIRMED;
b97bf3fd
PL
582exit:
583 if (p_ptr)
4323add6
PL
584 tipc_port_unlock(p_ptr);
585 tipc_net_route_msg(r_buf);
586 tipc_net_route_msg(abort_buf);
b97bf3fd
PL
587 buf_discard(buf);
588}
589
23dd4cce 590static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id)
b97bf3fd 591{
c4307285 592 struct publication *publ;
b97bf3fd
PL
593
594 if (full_id)
c4307285 595 tipc_printf(buf, "<%u.%u.%u:%u>:",
b97bf3fd 596 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
23dd4cce 597 tipc_node(tipc_own_addr), p_ptr->ref);
b97bf3fd 598 else
23dd4cce 599 tipc_printf(buf, "%-10u:", p_ptr->ref);
b97bf3fd 600
23dd4cce 601 if (p_ptr->connected) {
c4307285
YH
602 u32 dport = port_peerport(p_ptr);
603 u32 destnode = port_peernode(p_ptr);
604
605 tipc_printf(buf, " connected to <%u.%u.%u:%u>",
606 tipc_zone(destnode), tipc_cluster(destnode),
607 tipc_node(destnode), dport);
23dd4cce 608 if (p_ptr->conn_type != 0)
c4307285 609 tipc_printf(buf, " via {%u,%u}",
23dd4cce
AS
610 p_ptr->conn_type,
611 p_ptr->conn_instance);
612 } else if (p_ptr->published) {
c4307285
YH
613 tipc_printf(buf, " bound to");
614 list_for_each_entry(publ, &p_ptr->publications, pport_list) {
b97bf3fd
PL
615 if (publ->lower == publ->upper)
616 tipc_printf(buf, " {%u,%u}", publ->type,
617 publ->lower);
618 else
c4307285 619 tipc_printf(buf, " {%u,%u,%u}", publ->type,
b97bf3fd 620 publ->lower, publ->upper);
c4307285
YH
621 }
622 }
623 tipc_printf(buf, "\n");
b97bf3fd
PL
624}
625
626#define MAX_PORT_QUERY 32768
627
4323add6 628struct sk_buff *tipc_port_get_ports(void)
b97bf3fd
PL
629{
630 struct sk_buff *buf;
631 struct tlv_desc *rep_tlv;
632 struct print_buf pb;
23dd4cce 633 struct tipc_port *p_ptr;
b97bf3fd
PL
634 int str_len;
635
4323add6 636 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
b97bf3fd
PL
637 if (!buf)
638 return NULL;
639 rep_tlv = (struct tlv_desc *)buf->data;
640
4323add6
PL
641 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
642 spin_lock_bh(&tipc_port_list_lock);
b97bf3fd 643 list_for_each_entry(p_ptr, &ports, port_list) {
23dd4cce 644 spin_lock_bh(p_ptr->lock);
b97bf3fd 645 port_print(p_ptr, &pb, 0);
23dd4cce 646 spin_unlock_bh(p_ptr->lock);
b97bf3fd 647 }
4323add6
PL
648 spin_unlock_bh(&tipc_port_list_lock);
649 str_len = tipc_printbuf_validate(&pb);
b97bf3fd
PL
650
651 skb_put(buf, TLV_SPACE(str_len));
652 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
653
654 return buf;
655}
656
4323add6 657void tipc_port_reinit(void)
b97bf3fd 658{
23dd4cce 659 struct tipc_port *p_ptr;
b97bf3fd
PL
660 struct tipc_msg *msg;
661
4323add6 662 spin_lock_bh(&tipc_port_list_lock);
b97bf3fd 663 list_for_each_entry(p_ptr, &ports, port_list) {
23dd4cce 664 msg = &p_ptr->phdr;
b97bf3fd
PL
665 if (msg_orignode(msg) == tipc_own_addr)
666 break;
6d4a6672 667 msg_set_prevnode(msg, tipc_own_addr);
b97bf3fd
PL
668 msg_set_orignode(msg, tipc_own_addr);
669 }
4323add6 670 spin_unlock_bh(&tipc_port_list_lock);
b97bf3fd
PL
671}
672
673
674/*
675 * port_dispatcher_sigh(): Signal handler for messages destinated
676 * to the tipc_port interface.
677 */
678
679static void port_dispatcher_sigh(void *dummy)
680{
681 struct sk_buff *buf;
682
683 spin_lock_bh(&queue_lock);
684 buf = msg_queue_head;
1fc54d8f 685 msg_queue_head = NULL;
b97bf3fd
PL
686 spin_unlock_bh(&queue_lock);
687
688 while (buf) {
23dd4cce 689 struct tipc_port *p_ptr;
b97bf3fd
PL
690 struct user_port *up_ptr;
691 struct tipc_portid orig;
692 struct tipc_name_seq dseq;
693 void *usr_handle;
694 int connected;
695 int published;
9688243b 696 u32 message_type;
b97bf3fd
PL
697
698 struct sk_buff *next = buf->next;
699 struct tipc_msg *msg = buf_msg(buf);
700 u32 dref = msg_destport(msg);
c4307285 701
9688243b
AS
702 message_type = msg_type(msg);
703 if (message_type > TIPC_DIRECT_MSG)
704 goto reject; /* Unsupported message type */
705
4323add6 706 p_ptr = tipc_port_lock(dref);
9688243b
AS
707 if (!p_ptr)
708 goto reject; /* Port deleted while msg in queue */
709
b97bf3fd
PL
710 orig.ref = msg_origport(msg);
711 orig.node = msg_orignode(msg);
712 up_ptr = p_ptr->user_port;
713 usr_handle = up_ptr->usr_handle;
23dd4cce
AS
714 connected = p_ptr->connected;
715 published = p_ptr->published;
b97bf3fd
PL
716
717 if (unlikely(msg_errcode(msg)))
718 goto err;
719
9688243b 720 switch (message_type) {
c4307285 721
b97bf3fd
PL
722 case TIPC_CONN_MSG:{
723 tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
724 u32 peer_port = port_peerport(p_ptr);
725 u32 peer_node = port_peernode(p_ptr);
cb7ce914 726 u32 dsz;
b97bf3fd 727
4cec72c8 728 tipc_port_unlock(p_ptr);
5307e469
AS
729 if (unlikely(!cb))
730 goto reject;
b97bf3fd 731 if (unlikely(!connected)) {
84b07c16 732 if (tipc_connect2port(dref, &orig))
b97bf3fd 733 goto reject;
84b07c16
AS
734 } else if ((msg_origport(msg) != peer_port) ||
735 (msg_orignode(msg) != peer_node))
b97bf3fd 736 goto reject;
cb7ce914
AS
737 dsz = msg_data_sz(msg);
738 if (unlikely(dsz &&
739 (++p_ptr->conn_unacked >=
740 TIPC_FLOW_CONTROL_WIN)))
c4307285 741 tipc_acknowledge(dref,
23dd4cce 742 p_ptr->conn_unacked);
b97bf3fd 743 skb_pull(buf, msg_hdr_sz(msg));
cb7ce914 744 cb(usr_handle, dref, &buf, msg_data(msg), dsz);
b97bf3fd
PL
745 break;
746 }
747 case TIPC_DIRECT_MSG:{
748 tipc_msg_event cb = up_ptr->msg_cb;
749
4cec72c8 750 tipc_port_unlock(p_ptr);
5307e469 751 if (unlikely(!cb || connected))
b97bf3fd
PL
752 goto reject;
753 skb_pull(buf, msg_hdr_sz(msg));
c4307285 754 cb(usr_handle, dref, &buf, msg_data(msg),
b97bf3fd
PL
755 msg_data_sz(msg), msg_importance(msg),
756 &orig);
757 break;
758 }
9688243b 759 case TIPC_MCAST_MSG:
b97bf3fd
PL
760 case TIPC_NAMED_MSG:{
761 tipc_named_msg_event cb = up_ptr->named_msg_cb;
762
4cec72c8 763 tipc_port_unlock(p_ptr);
5307e469 764 if (unlikely(!cb || connected || !published))
b97bf3fd
PL
765 goto reject;
766 dseq.type = msg_nametype(msg);
767 dseq.lower = msg_nameinst(msg);
9688243b
AS
768 dseq.upper = (message_type == TIPC_NAMED_MSG)
769 ? dseq.lower : msg_nameupper(msg);
b97bf3fd 770 skb_pull(buf, msg_hdr_sz(msg));
c4307285 771 cb(usr_handle, dref, &buf, msg_data(msg),
b97bf3fd
PL
772 msg_data_sz(msg), msg_importance(msg),
773 &orig, &dseq);
774 break;
775 }
776 }
777 if (buf)
778 buf_discard(buf);
779 buf = next;
780 continue;
781err:
9688243b 782 switch (message_type) {
c4307285 783
b97bf3fd 784 case TIPC_CONN_MSG:{
c4307285 785 tipc_conn_shutdown_event cb =
b97bf3fd
PL
786 up_ptr->conn_err_cb;
787 u32 peer_port = port_peerport(p_ptr);
788 u32 peer_node = port_peernode(p_ptr);
789
4cec72c8 790 tipc_port_unlock(p_ptr);
5307e469 791 if (!cb || !connected)
b97bf3fd 792 break;
5307e469
AS
793 if ((msg_origport(msg) != peer_port) ||
794 (msg_orignode(msg) != peer_node))
b97bf3fd
PL
795 break;
796 tipc_disconnect(dref);
797 skb_pull(buf, msg_hdr_sz(msg));
798 cb(usr_handle, dref, &buf, msg_data(msg),
799 msg_data_sz(msg), msg_errcode(msg));
800 break;
801 }
802 case TIPC_DIRECT_MSG:{
803 tipc_msg_err_event cb = up_ptr->err_cb;
804
4cec72c8 805 tipc_port_unlock(p_ptr);
5307e469 806 if (!cb || connected)
b97bf3fd
PL
807 break;
808 skb_pull(buf, msg_hdr_sz(msg));
809 cb(usr_handle, dref, &buf, msg_data(msg),
810 msg_data_sz(msg), msg_errcode(msg), &orig);
811 break;
812 }
9688243b 813 case TIPC_MCAST_MSG:
b97bf3fd 814 case TIPC_NAMED_MSG:{
c4307285 815 tipc_named_msg_err_event cb =
b97bf3fd
PL
816 up_ptr->named_err_cb;
817
4cec72c8 818 tipc_port_unlock(p_ptr);
5307e469 819 if (!cb || connected)
b97bf3fd
PL
820 break;
821 dseq.type = msg_nametype(msg);
822 dseq.lower = msg_nameinst(msg);
9688243b
AS
823 dseq.upper = (message_type == TIPC_NAMED_MSG)
824 ? dseq.lower : msg_nameupper(msg);
b97bf3fd 825 skb_pull(buf, msg_hdr_sz(msg));
c4307285 826 cb(usr_handle, dref, &buf, msg_data(msg),
b97bf3fd
PL
827 msg_data_sz(msg), msg_errcode(msg), &dseq);
828 break;
829 }
830 }
831 if (buf)
832 buf_discard(buf);
833 buf = next;
834 continue;
835reject:
836 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
837 buf = next;
838 }
839}
840
841/*
842 * port_dispatcher(): Dispatcher for messages destinated
843 * to the tipc_port interface. Called with port locked.
844 */
845
846static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
847{
848 buf->next = NULL;
849 spin_lock_bh(&queue_lock);
850 if (msg_queue_head) {
851 msg_queue_tail->next = buf;
852 msg_queue_tail = buf;
853 } else {
854 msg_queue_tail = msg_queue_head = buf;
4323add6 855 tipc_k_signal((Handler)port_dispatcher_sigh, 0);
b97bf3fd
PL
856 }
857 spin_unlock_bh(&queue_lock);
0e35fd5e 858 return 0;
b97bf3fd
PL
859}
860
c4307285 861/*
b97bf3fd 862 * Wake up port after congestion: Called with port locked,
c4307285 863 *
b97bf3fd
PL
864 */
865
866static void port_wakeup_sh(unsigned long ref)
867{
23dd4cce 868 struct tipc_port *p_ptr;
b97bf3fd 869 struct user_port *up_ptr;
1fc54d8f
SR
870 tipc_continue_event cb = NULL;
871 void *uh = NULL;
b97bf3fd 872
4323add6 873 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
874 if (p_ptr) {
875 up_ptr = p_ptr->user_port;
876 if (up_ptr) {
877 cb = up_ptr->continue_event_cb;
878 uh = up_ptr->usr_handle;
879 }
4323add6 880 tipc_port_unlock(p_ptr);
b97bf3fd
PL
881 }
882 if (cb)
883 cb(uh, ref);
884}
885
886
887static void port_wakeup(struct tipc_port *p_ptr)
888{
4323add6 889 tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
b97bf3fd
PL
890}
891
892void tipc_acknowledge(u32 ref, u32 ack)
893{
23dd4cce 894 struct tipc_port *p_ptr;
1fc54d8f 895 struct sk_buff *buf = NULL;
b97bf3fd 896
4323add6 897 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
898 if (!p_ptr)
899 return;
23dd4cce
AS
900 if (p_ptr->connected) {
901 p_ptr->conn_unacked -= ack;
b97bf3fd
PL
902 buf = port_build_proto_msg(port_peerport(p_ptr),
903 port_peernode(p_ptr),
904 ref,
905 tipc_own_addr,
906 CONN_MANAGER,
907 CONN_ACK,
c4307285 908 TIPC_OK,
b97bf3fd
PL
909 ack);
910 }
4323add6
PL
911 tipc_port_unlock(p_ptr);
912 tipc_net_route_msg(buf);
b97bf3fd
PL
913}
914
915/*
b0c1e928 916 * tipc_createport(): user level call.
b97bf3fd
PL
917 */
918
b0c1e928 919int tipc_createport(void *usr_handle,
c4307285
YH
920 unsigned int importance,
921 tipc_msg_err_event error_cb,
922 tipc_named_msg_err_event named_error_cb,
923 tipc_conn_shutdown_event conn_error_cb,
924 tipc_msg_event msg_cb,
925 tipc_named_msg_event named_msg_cb,
926 tipc_conn_msg_event conn_msg_cb,
b97bf3fd
PL
927 tipc_continue_event continue_event_cb,/* May be zero */
928 u32 *portref)
929{
930 struct user_port *up_ptr;
23dd4cce 931 struct tipc_port *p_ptr;
b97bf3fd 932
0da974f4 933 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
a10bd924 934 if (!up_ptr) {
a75bf874 935 warn("Port creation failed, no memory\n");
b97bf3fd
PL
936 return -ENOMEM;
937 }
23dd4cce 938 p_ptr = (struct tipc_port *)tipc_createport_raw(NULL, port_dispatcher,
0ea52241
AS
939 port_wakeup, importance);
940 if (!p_ptr) {
b97bf3fd
PL
941 kfree(up_ptr);
942 return -ENOMEM;
943 }
944
945 p_ptr->user_port = up_ptr;
b97bf3fd 946 up_ptr->usr_handle = usr_handle;
23dd4cce 947 up_ptr->ref = p_ptr->ref;
b97bf3fd
PL
948 up_ptr->err_cb = error_cb;
949 up_ptr->named_err_cb = named_error_cb;
950 up_ptr->conn_err_cb = conn_error_cb;
951 up_ptr->msg_cb = msg_cb;
952 up_ptr->named_msg_cb = named_msg_cb;
953 up_ptr->conn_msg_cb = conn_msg_cb;
954 up_ptr->continue_event_cb = continue_event_cb;
23dd4cce 955 *portref = p_ptr->ref;
4323add6 956 tipc_port_unlock(p_ptr);
0e35fd5e 957 return 0;
b97bf3fd
PL
958}
959
b97bf3fd
PL
960int tipc_portimportance(u32 ref, unsigned int *importance)
961{
23dd4cce 962 struct tipc_port *p_ptr;
c4307285 963
4323add6 964 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
965 if (!p_ptr)
966 return -EINVAL;
23dd4cce 967 *importance = (unsigned int)msg_importance(&p_ptr->phdr);
4cec72c8 968 tipc_port_unlock(p_ptr);
0e35fd5e 969 return 0;
b97bf3fd
PL
970}
971
972int tipc_set_portimportance(u32 ref, unsigned int imp)
973{
23dd4cce 974 struct tipc_port *p_ptr;
b97bf3fd
PL
975
976 if (imp > TIPC_CRITICAL_IMPORTANCE)
977 return -EINVAL;
978
4323add6 979 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
980 if (!p_ptr)
981 return -EINVAL;
23dd4cce 982 msg_set_importance(&p_ptr->phdr, (u32)imp);
4cec72c8 983 tipc_port_unlock(p_ptr);
0e35fd5e 984 return 0;
b97bf3fd
PL
985}
986
987
988int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
989{
23dd4cce 990 struct tipc_port *p_ptr;
b97bf3fd
PL
991 struct publication *publ;
992 u32 key;
993 int res = -EINVAL;
994
4323add6 995 p_ptr = tipc_port_lock(ref);
d55b4c63
AB
996 if (!p_ptr)
997 return -EINVAL;
998
23dd4cce 999 if (p_ptr->connected)
b97bf3fd
PL
1000 goto exit;
1001 if (seq->lower > seq->upper)
1002 goto exit;
1003 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
1004 goto exit;
1005 key = ref + p_ptr->pub_count + 1;
1006 if (key == ref) {
1007 res = -EADDRINUSE;
1008 goto exit;
1009 }
4323add6 1010 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
23dd4cce 1011 scope, p_ptr->ref, key);
b97bf3fd
PL
1012 if (publ) {
1013 list_add(&publ->pport_list, &p_ptr->publications);
1014 p_ptr->pub_count++;
23dd4cce 1015 p_ptr->published = 1;
0e35fd5e 1016 res = 0;
b97bf3fd
PL
1017 }
1018exit:
4323add6 1019 tipc_port_unlock(p_ptr);
b97bf3fd
PL
1020 return res;
1021}
1022
1023int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1024{
23dd4cce 1025 struct tipc_port *p_ptr;
b97bf3fd
PL
1026 struct publication *publ;
1027 struct publication *tpubl;
1028 int res = -EINVAL;
c4307285 1029
4323add6 1030 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1031 if (!p_ptr)
1032 return -EINVAL;
b97bf3fd 1033 if (!seq) {
c4307285 1034 list_for_each_entry_safe(publ, tpubl,
b97bf3fd 1035 &p_ptr->publications, pport_list) {
c4307285 1036 tipc_nametbl_withdraw(publ->type, publ->lower,
4323add6 1037 publ->ref, publ->key);
b97bf3fd 1038 }
0e35fd5e 1039 res = 0;
b97bf3fd 1040 } else {
c4307285 1041 list_for_each_entry_safe(publ, tpubl,
b97bf3fd
PL
1042 &p_ptr->publications, pport_list) {
1043 if (publ->scope != scope)
1044 continue;
1045 if (publ->type != seq->type)
1046 continue;
1047 if (publ->lower != seq->lower)
1048 continue;
1049 if (publ->upper != seq->upper)
1050 break;
c4307285 1051 tipc_nametbl_withdraw(publ->type, publ->lower,
4323add6 1052 publ->ref, publ->key);
0e35fd5e 1053 res = 0;
b97bf3fd
PL
1054 break;
1055 }
1056 }
1057 if (list_empty(&p_ptr->publications))
23dd4cce 1058 p_ptr->published = 0;
4323add6 1059 tipc_port_unlock(p_ptr);
b97bf3fd
PL
1060 return res;
1061}
1062
1063int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
1064{
23dd4cce 1065 struct tipc_port *p_ptr;
b97bf3fd
PL
1066 struct tipc_msg *msg;
1067 int res = -EINVAL;
1068
4323add6 1069 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1070 if (!p_ptr)
1071 return -EINVAL;
23dd4cce 1072 if (p_ptr->published || p_ptr->connected)
b97bf3fd
PL
1073 goto exit;
1074 if (!peer->ref)
1075 goto exit;
1076
23dd4cce 1077 msg = &p_ptr->phdr;
b97bf3fd
PL
1078 msg_set_destnode(msg, peer->node);
1079 msg_set_destport(msg, peer->ref);
1080 msg_set_orignode(msg, tipc_own_addr);
23dd4cce 1081 msg_set_origport(msg, p_ptr->ref);
b97bf3fd 1082 msg_set_type(msg, TIPC_CONN_MSG);
53b94364 1083 msg_set_lookup_scope(msg, 0);
08c80e9a 1084 msg_set_hdr_sz(msg, SHORT_H_SIZE);
b97bf3fd
PL
1085
1086 p_ptr->probing_interval = PROBING_INTERVAL;
1087 p_ptr->probing_state = CONFIRMED;
23dd4cce 1088 p_ptr->connected = 1;
b97bf3fd
PL
1089 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
1090
0e65967e 1091 tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
880b005f 1092 (void *)(unsigned long)ref,
b97bf3fd 1093 (net_ev_handler)port_handle_node_down);
0e35fd5e 1094 res = 0;
b97bf3fd 1095exit:
4323add6 1096 tipc_port_unlock(p_ptr);
23dd4cce 1097 p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
b97bf3fd
PL
1098 return res;
1099}
1100
0c3141e9
AS
1101/**
1102 * tipc_disconnect_port - disconnect port from peer
1103 *
1104 * Port must be locked.
1105 */
1106
1107int tipc_disconnect_port(struct tipc_port *tp_ptr)
1108{
1109 int res;
1110
1111 if (tp_ptr->connected) {
1112 tp_ptr->connected = 0;
1113 /* let timer expire on it's own to avoid deadlock! */
1114 tipc_nodesub_unsubscribe(
23dd4cce 1115 &((struct tipc_port *)tp_ptr)->subscription);
0e35fd5e 1116 res = 0;
0c3141e9
AS
1117 } else {
1118 res = -ENOTCONN;
1119 }
1120 return res;
1121}
1122
b97bf3fd
PL
1123/*
1124 * tipc_disconnect(): Disconnect port form peer.
1125 * This is a node local operation.
1126 */
1127
1128int tipc_disconnect(u32 ref)
1129{
23dd4cce 1130 struct tipc_port *p_ptr;
0c3141e9 1131 int res;
b97bf3fd 1132
4323add6 1133 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1134 if (!p_ptr)
1135 return -EINVAL;
0c3141e9 1136 res = tipc_disconnect_port((struct tipc_port *)p_ptr);
4323add6 1137 tipc_port_unlock(p_ptr);
b97bf3fd
PL
1138 return res;
1139}
1140
1141/*
1142 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1143 */
1144int tipc_shutdown(u32 ref)
1145{
23dd4cce 1146 struct tipc_port *p_ptr;
1fc54d8f 1147 struct sk_buff *buf = NULL;
b97bf3fd 1148
4323add6 1149 p_ptr = tipc_port_lock(ref);
b97bf3fd
PL
1150 if (!p_ptr)
1151 return -EINVAL;
1152
23dd4cce
AS
1153 if (p_ptr->connected) {
1154 u32 imp = msg_importance(&p_ptr->phdr);
b97bf3fd
PL
1155 if (imp < TIPC_CRITICAL_IMPORTANCE)
1156 imp++;
1157 buf = port_build_proto_msg(port_peerport(p_ptr),
1158 port_peernode(p_ptr),
1159 ref,
1160 tipc_own_addr,
1161 imp,
1162 TIPC_CONN_MSG,
c4307285 1163 TIPC_CONN_SHUTDOWN,
b97bf3fd
PL
1164 0);
1165 }
4323add6
PL
1166 tipc_port_unlock(p_ptr);
1167 tipc_net_route_msg(buf);
b97bf3fd
PL
1168 return tipc_disconnect(ref);
1169}
1170
b97bf3fd 1171/*
4323add6 1172 * tipc_port_recv_sections(): Concatenate and deliver sectioned
b97bf3fd
PL
1173 * message for this node.
1174 */
1175
23dd4cce 1176static int tipc_port_recv_sections(struct tipc_port *sender, unsigned int num_sect,
26896904
AS
1177 struct iovec const *msg_sect,
1178 unsigned int total_len)
b97bf3fd
PL
1179{
1180 struct sk_buff *buf;
1181 int res;
c4307285 1182
26896904 1183 res = tipc_msg_build(&sender->phdr, msg_sect, num_sect, total_len,
b97bf3fd
PL
1184 MAX_MSG_SIZE, !sender->user_port, &buf);
1185 if (likely(buf))
4323add6 1186 tipc_port_recv_msg(buf);
b97bf3fd
PL
1187 return res;
1188}
1189
1190/**
1191 * tipc_send - send message sections on connection
1192 */
1193
26896904
AS
1194int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect,
1195 unsigned int total_len)
b97bf3fd 1196{
23dd4cce 1197 struct tipc_port *p_ptr;
b97bf3fd
PL
1198 u32 destnode;
1199 int res;
1200
4323add6 1201 p_ptr = tipc_port_deref(ref);
23dd4cce 1202 if (!p_ptr || !p_ptr->connected)
b97bf3fd
PL
1203 return -EINVAL;
1204
23dd4cce 1205 p_ptr->congested = 1;
4323add6 1206 if (!tipc_port_congested(p_ptr)) {
b97bf3fd
PL
1207 destnode = port_peernode(p_ptr);
1208 if (likely(destnode != tipc_own_addr))
4323add6 1209 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
26896904 1210 total_len, destnode);
b97bf3fd 1211 else
26896904
AS
1212 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
1213 total_len);
b97bf3fd
PL
1214
1215 if (likely(res != -ELINKCONG)) {
23dd4cce 1216 p_ptr->congested = 0;
cb7ce914
AS
1217 if (res > 0)
1218 p_ptr->sent++;
b97bf3fd
PL
1219 return res;
1220 }
1221 }
1222 if (port_unreliable(p_ptr)) {
23dd4cce 1223 p_ptr->congested = 0;
26896904 1224 return total_len;
b97bf3fd
PL
1225 }
1226 return -ELINKCONG;
1227}
1228
b97bf3fd 1229/**
12bae479 1230 * tipc_send2name - send message sections to port name
b97bf3fd
PL
1231 */
1232
12bae479 1233int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
26896904
AS
1234 unsigned int num_sect, struct iovec const *msg_sect,
1235 unsigned int total_len)
b97bf3fd 1236{
23dd4cce 1237 struct tipc_port *p_ptr;
b97bf3fd
PL
1238 struct tipc_msg *msg;
1239 u32 destnode = domain;
9ccc2eb4 1240 u32 destport;
b97bf3fd
PL
1241 int res;
1242
4323add6 1243 p_ptr = tipc_port_deref(ref);
23dd4cce 1244 if (!p_ptr || p_ptr->connected)
b97bf3fd
PL
1245 return -EINVAL;
1246
23dd4cce 1247 msg = &p_ptr->phdr;
b97bf3fd 1248 msg_set_type(msg, TIPC_NAMED_MSG);
12bae479
AS
1249 msg_set_orignode(msg, tipc_own_addr);
1250 msg_set_origport(msg, ref);
b97bf3fd
PL
1251 msg_set_hdr_sz(msg, LONG_H_SIZE);
1252 msg_set_nametype(msg, name->type);
1253 msg_set_nameinst(msg, name->instance);
c68ca7b7 1254 msg_set_lookup_scope(msg, tipc_addr_scope(domain));
4323add6 1255 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
b97bf3fd
PL
1256 msg_set_destnode(msg, destnode);
1257 msg_set_destport(msg, destport);
1258
5d9c54c1 1259 if (likely(destport)) {
b97bf3fd 1260 if (likely(destnode == tipc_own_addr))
cb7ce914 1261 res = tipc_port_recv_sections(p_ptr, num_sect,
26896904 1262 msg_sect, total_len);
cb7ce914
AS
1263 else
1264 res = tipc_link_send_sections_fast(p_ptr, msg_sect,
26896904
AS
1265 num_sect, total_len,
1266 destnode);
cb7ce914
AS
1267 if (likely(res != -ELINKCONG)) {
1268 if (res > 0)
1269 p_ptr->sent++;
b97bf3fd 1270 return res;
cb7ce914 1271 }
b97bf3fd 1272 if (port_unreliable(p_ptr)) {
26896904 1273 return total_len;
b97bf3fd
PL
1274 }
1275 return -ELINKCONG;
1276 }
c4307285 1277 return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
26896904 1278 total_len, TIPC_ERR_NO_NAME);
b97bf3fd
PL
1279}
1280
1281/**
12bae479 1282 * tipc_send2port - send message sections to port identity
b97bf3fd
PL
1283 */
1284
12bae479 1285int tipc_send2port(u32 ref, struct tipc_portid const *dest,
26896904
AS
1286 unsigned int num_sect, struct iovec const *msg_sect,
1287 unsigned int total_len)
b97bf3fd 1288{
23dd4cce 1289 struct tipc_port *p_ptr;
b97bf3fd
PL
1290 struct tipc_msg *msg;
1291 int res;
1292
4323add6 1293 p_ptr = tipc_port_deref(ref);
23dd4cce 1294 if (!p_ptr || p_ptr->connected)
b97bf3fd
PL
1295 return -EINVAL;
1296
23dd4cce 1297 msg = &p_ptr->phdr;
b97bf3fd 1298 msg_set_type(msg, TIPC_DIRECT_MSG);
53b94364 1299 msg_set_lookup_scope(msg, 0);
12bae479
AS
1300 msg_set_orignode(msg, tipc_own_addr);
1301 msg_set_origport(msg, ref);
b97bf3fd
PL
1302 msg_set_destnode(msg, dest->node);
1303 msg_set_destport(msg, dest->ref);
1304 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
cb7ce914 1305
b97bf3fd 1306 if (dest->node == tipc_own_addr)
26896904
AS
1307 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
1308 total_len);
cb7ce914
AS
1309 else
1310 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
26896904 1311 total_len, dest->node);
cb7ce914
AS
1312 if (likely(res != -ELINKCONG)) {
1313 if (res > 0)
1314 p_ptr->sent++;
b97bf3fd 1315 return res;
cb7ce914 1316 }
b97bf3fd 1317 if (port_unreliable(p_ptr)) {
26896904 1318 return total_len;
b97bf3fd
PL
1319 }
1320 return -ELINKCONG;
1321}
1322
c4307285 1323/**
12bae479 1324 * tipc_send_buf2port - send message buffer to port identity
b97bf3fd
PL
1325 */
1326
12bae479
AS
1327int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
1328 struct sk_buff *buf, unsigned int dsz)
b97bf3fd 1329{
23dd4cce 1330 struct tipc_port *p_ptr;
b97bf3fd
PL
1331 struct tipc_msg *msg;
1332 int res;
1333
23dd4cce
AS
1334 p_ptr = (struct tipc_port *)tipc_ref_deref(ref);
1335 if (!p_ptr || p_ptr->connected)
b97bf3fd
PL
1336 return -EINVAL;
1337
23dd4cce 1338 msg = &p_ptr->phdr;
b97bf3fd 1339 msg_set_type(msg, TIPC_DIRECT_MSG);
12bae479
AS
1340 msg_set_orignode(msg, tipc_own_addr);
1341 msg_set_origport(msg, ref);
b97bf3fd
PL
1342 msg_set_destnode(msg, dest->node);
1343 msg_set_destport(msg, dest->ref);
1344 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
b97bf3fd
PL
1345 msg_set_size(msg, DIR_MSG_H_SIZE + dsz);
1346 if (skb_cow(buf, DIR_MSG_H_SIZE))
1347 return -ENOMEM;
1348
1349 skb_push(buf, DIR_MSG_H_SIZE);
27d7ff46 1350 skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
cb7ce914 1351
b97bf3fd 1352 if (dest->node == tipc_own_addr)
cb7ce914
AS
1353 res = tipc_port_recv_msg(buf);
1354 else
1355 res = tipc_send_buf_fast(buf, dest->node);
1356 if (likely(res != -ELINKCONG)) {
1357 if (res > 0)
1358 p_ptr->sent++;
b97bf3fd 1359 return res;
cb7ce914 1360 }
b97bf3fd
PL
1361 if (port_unreliable(p_ptr))
1362 return dsz;
1363 return -ELINKCONG;
1364}
1365