port.c 32.6 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/port.c: TIPC port code
3
 *
4
 * Copyright (c) 1992-2007, Ericsson AB
5
 * Copyright (c) 2004-2008, Wind River Systems
P
Per Liden 已提交
6 7
 * All rights reserved.
 *
P
Per Liden 已提交
8
 * Redistribution and use in source and binary forms, with or without
P
Per Liden 已提交
9 10
 * modification, are permitted provided that the following conditions are met:
 *
P
Per Liden 已提交
11 12 13 14 15 16 17 18
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the names of the copyright holders nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
P
Per Liden 已提交
19
 *
P
Per Liden 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
P
Per Liden 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
#include "config.h"
#include "port.h"
#include "name_table.h"

/* Connection management: */
#define PROBING_INTERVAL 3600000	/* [ms] => 1 h */
#define CONFIRMED 0
#define PROBING 1

#define MAX_REJECT_SIZE 1024

49 50
static struct sk_buff *msg_queue_head;
static struct sk_buff *msg_queue_tail;
P
Per Liden 已提交
51

I
Ingo Molnar 已提交
52 53
DEFINE_SPINLOCK(tipc_port_list_lock);
static DEFINE_SPINLOCK(queue_lock);
P
Per Liden 已提交
54

55
static LIST_HEAD(ports);
P
Per Liden 已提交
56
static void port_handle_node_down(unsigned long ref);
57 58
static struct sk_buff *port_build_self_abort_msg(struct port *, u32 err);
static struct sk_buff *port_build_peer_abort_msg(struct port *, u32 err);
P
Per Liden 已提交
59 60 61
static void port_timeout(unsigned long ref);


S
Sam Ravnborg 已提交
62
static u32 port_peernode(struct port *p_ptr)
P
Per Liden 已提交
63 64 65 66
{
	return msg_destnode(&p_ptr->publ.phdr);
}

S
Sam Ravnborg 已提交
67
static u32 port_peerport(struct port *p_ptr)
P
Per Liden 已提交
68 69 70 71
{
	return msg_destport(&p_ptr->publ.phdr);
}

S
Sam Ravnborg 已提交
72
static u32 port_out_seqno(struct port *p_ptr)
P
Per Liden 已提交
73 74 75 76
{
	return msg_transp_seqno(&p_ptr->publ.phdr);
}

S
Sam Ravnborg 已提交
77
static void port_incr_out_seqno(struct port *p_ptr)
P
Per Liden 已提交
78 79 80 81 82 83 84 85 86 87 88 89
{
	struct tipc_msg *m = &p_ptr->publ.phdr;

	if (likely(!msg_routed(m)))
		return;
	msg_set_transp_seqno(m, (msg_transp_seqno(m) + 1));
}

/**
 * tipc_multicast - send a multicast message to local and remote destinations
 */

90
int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
P
Per Liden 已提交
91 92 93 94 95 96
		   u32 num_sect, struct iovec const *msg_sect)
{
	struct tipc_msg *hdr;
	struct sk_buff *buf;
	struct sk_buff *ibuf = NULL;
	struct port_list dports = {0, NULL, };
97
	struct port *oport = tipc_port_deref(ref);
P
Per Liden 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111
	int ext_targets;
	int res;

	if (unlikely(!oport))
		return -EINVAL;

	/* Create multicast message */

	hdr = &oport->publ.phdr;
	msg_set_type(hdr, TIPC_MCAST_MSG);
	msg_set_nametype(hdr, seq->type);
	msg_set_namelower(hdr, seq->lower);
	msg_set_nameupper(hdr, seq->upper);
	msg_set_hdr_sz(hdr, MCAST_H_SIZE);
112
	res = tipc_msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
P
Per Liden 已提交
113 114 115 116 117 118
			!oport->user_port, &buf);
	if (unlikely(!buf))
		return res;

	/* Figure out where to send multicast message */

119 120
	ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
						TIPC_NODE_SCOPE, &dports);
121 122

	/* Send message to destinations (duplicate it only if necessary) */
P
Per Liden 已提交
123 124 125 126 127

	if (ext_targets) {
		if (dports.count != 0) {
			ibuf = skb_copy(buf, GFP_ATOMIC);
			if (ibuf == NULL) {
128
				tipc_port_list_free(&dports);
P
Per Liden 已提交
129 130 131 132
				buf_discard(buf);
				return -ENOMEM;
			}
		}
133
		res = tipc_bclink_send_msg(buf);
134
		if ((res < 0) && (dports.count != 0))
P
Per Liden 已提交
135 136 137 138 139 140 141
			buf_discard(ibuf);
	} else {
		ibuf = buf;
	}

	if (res >= 0) {
		if (ibuf)
142
			tipc_port_recv_mcast(ibuf, &dports);
P
Per Liden 已提交
143
	} else {
144
		tipc_port_list_free(&dports);
P
Per Liden 已提交
145 146 147 148 149
	}
	return res;
}

/**
150
 * tipc_port_recv_mcast - deliver multicast message to all destination ports
151
 *
P
Per Liden 已提交
152 153 154
 * If there is no port list, perform a lookup to create one
 */

155
void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
P
Per Liden 已提交
156
{
157
	struct tipc_msg *msg;
P
Per Liden 已提交
158 159 160 161 162 163 164 165 166
	struct port_list dports = {0, NULL, };
	struct port_list *item = dp;
	int cnt = 0;

	msg = buf_msg(buf);

	/* Create destination port list, if one wasn't supplied */

	if (dp == NULL) {
167
		tipc_nametbl_mc_translate(msg_nametype(msg),
P
Per Liden 已提交
168 169 170 171 172 173 174 175 176 177 178 179
				     msg_namelower(msg),
				     msg_nameupper(msg),
				     TIPC_CLUSTER_SCOPE,
				     &dports);
		item = dp = &dports;
	}

	/* Deliver a copy of message to each destination port */

	if (dp->count != 0) {
		if (dp->count == 1) {
			msg_set_destport(msg, dp->ports[0]);
180 181
			tipc_port_recv_msg(buf);
			tipc_port_list_free(dp);
P
Per Liden 已提交
182 183 184 185 186 187 188
			return;
		}
		for (; cnt < dp->count; cnt++) {
			int index = cnt % PLSIZE;
			struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);

			if (b == NULL) {
189
				warn("Unable to deliver multicast message(s)\n");
P
Per Liden 已提交
190 191
				goto exit;
			}
192
			if ((index == 0) && (cnt != 0))
P
Per Liden 已提交
193
				item = item->next;
194
			msg_set_destport(buf_msg(b), item->ports[index]);
195
			tipc_port_recv_msg(b);
P
Per Liden 已提交
196 197 198 199
		}
	}
exit:
	buf_discard(buf);
200
	tipc_port_list_free(dp);
P
Per Liden 已提交
201 202 203
}

/**
204
 * tipc_createport_raw - create a generic TIPC port
205
 *
206
 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
P
Per Liden 已提交
207 208
 */

209
struct tipc_port *tipc_createport_raw(void *usr_handle,
P
Per Liden 已提交
210 211
			u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
			void (*wakeup)(struct tipc_port *),
212
			const u32 importance)
P
Per Liden 已提交
213 214 215 216 217
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	u32 ref;

218
	p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
219 220
	if (!p_ptr) {
		warn("Port creation failed, no memory\n");
221
		return NULL;
P
Per Liden 已提交
222
	}
223
	ref = tipc_ref_acquire(p_ptr, &p_ptr->publ.lock);
P
Per Liden 已提交
224
	if (!ref) {
225
		warn("Port creation failed, reference table exhausted\n");
P
Per Liden 已提交
226
		kfree(p_ptr);
227
		return NULL;
P
Per Liden 已提交
228 229
	}

230 231
	p_ptr->publ.usr_handle = usr_handle;
	p_ptr->publ.max_pkt = MAX_PKT_DEFAULT;
P
Per Liden 已提交
232 233
	p_ptr->publ.ref = ref;
	msg = &p_ptr->publ.phdr;
234
	tipc_msg_init(msg, importance, TIPC_NAMED_MSG, LONG_H_SIZE, 0);
P
Per Liden 已提交
235 236 237 238 239 240 241
	msg_set_origport(msg, ref);
	p_ptr->last_in_seqno = 41;
	p_ptr->sent = 1;
	INIT_LIST_HEAD(&p_ptr->wait_list);
	INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
	p_ptr->dispatcher = dispatcher;
	p_ptr->wakeup = wakeup;
242
	p_ptr->user_port = NULL;
P
Per Liden 已提交
243
	k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
244
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
245 246 247
	INIT_LIST_HEAD(&p_ptr->publications);
	INIT_LIST_HEAD(&p_ptr->port_list);
	list_add_tail(&p_ptr->port_list, &ports);
248
	spin_unlock_bh(&tipc_port_list_lock);
249
	return &(p_ptr->publ);
P
Per Liden 已提交
250 251 252 253 254
}

int tipc_deleteport(u32 ref)
{
	struct port *p_ptr;
255
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
256

257
	tipc_withdraw(ref, 0, NULL);
258
	p_ptr = tipc_port_lock(ref);
259
	if (!p_ptr)
P
Per Liden 已提交
260 261
		return -EINVAL;

262 263
	tipc_ref_discard(ref);
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
264 265 266 267

	k_cancel_timer(&p_ptr->timer);
	if (p_ptr->publ.connected) {
		buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
268
		tipc_nodesub_unsubscribe(&p_ptr->subscription);
P
Per Liden 已提交
269
	}
270
	kfree(p_ptr->user_port);
P
Per Liden 已提交
271

272
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
273 274
	list_del(&p_ptr->port_list);
	list_del(&p_ptr->wait_list);
275
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
276 277
	k_term_timer(&p_ptr->timer);
	kfree(p_ptr);
278
	tipc_net_route_msg(buf);
279
	return 0;
P
Per Liden 已提交
280 281
}

S
Sam Ravnborg 已提交
282
static int port_unreliable(struct port *p_ptr)
P
Per Liden 已提交
283 284 285 286 287 288 289
{
	return msg_src_droppable(&p_ptr->publ.phdr);
}

int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
{
	struct port *p_ptr;
290

291
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
292 293 294
	if (!p_ptr)
		return -EINVAL;
	*isunreliable = port_unreliable(p_ptr);
J
Julia Lawall 已提交
295
	tipc_port_unlock(p_ptr);
296
	return 0;
P
Per Liden 已提交
297 298 299 300 301
}

int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
{
	struct port *p_ptr;
302

303
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
304 305 306
	if (!p_ptr)
		return -EINVAL;
	msg_set_src_droppable(&p_ptr->publ.phdr, (isunreliable != 0));
307
	tipc_port_unlock(p_ptr);
308
	return 0;
P
Per Liden 已提交
309 310
}

S
Sam Ravnborg 已提交
311
static int port_unreturnable(struct port *p_ptr)
P
Per Liden 已提交
312 313 314 315 316 317 318
{
	return msg_dest_droppable(&p_ptr->publ.phdr);
}

int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
{
	struct port *p_ptr;
319

320
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
321 322 323
	if (!p_ptr)
		return -EINVAL;
	*isunrejectable = port_unreturnable(p_ptr);
J
Julia Lawall 已提交
324
	tipc_port_unlock(p_ptr);
325
	return 0;
P
Per Liden 已提交
326 327 328 329 330
}

int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
{
	struct port *p_ptr;
331

332
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
333 334 335
	if (!p_ptr)
		return -EINVAL;
	msg_set_dest_droppable(&p_ptr->publ.phdr, (isunrejectable != 0));
336
	tipc_port_unlock(p_ptr);
337
	return 0;
P
Per Liden 已提交
338 339
}

340 341 342
/*
 * port_build_proto_msg(): build a port level protocol
 * or a connection abortion message. Called with
P
Per Liden 已提交
343 344 345 346
 * tipc_port lock on.
 */
static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
					    u32 origport, u32 orignode,
347
					    u32 usr, u32 type, u32 err,
P
Per Liden 已提交
348 349 350 351
					    u32 seqno, u32 ack)
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
352

353
	buf = tipc_buf_acquire(LONG_H_SIZE);
P
Per Liden 已提交
354 355
	if (buf) {
		msg = buf_msg(buf);
356
		tipc_msg_init(msg, usr, type, LONG_H_SIZE, destnode);
357
		msg_set_errcode(msg, err);
P
Per Liden 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
		msg_set_destport(msg, destport);
		msg_set_origport(msg, origport);
		msg_set_orignode(msg, orignode);
		msg_set_transp_seqno(msg, seqno);
		msg_set_msgcnt(msg, ack);
	}
	return buf;
}

int tipc_reject_msg(struct sk_buff *buf, u32 err)
{
	struct tipc_msg *msg = buf_msg(buf);
	struct sk_buff *rbuf;
	struct tipc_msg *rmsg;
	int hdr_sz;
	u32 imp = msg_importance(msg);
	u32 data_sz = msg_data_sz(msg);

	if (data_sz > MAX_REJECT_SIZE)
		data_sz = MAX_REJECT_SIZE;
	if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE))
		imp++;

	/* discard rejected message if it shouldn't be returned to sender */
	if (msg_errcode(msg) || msg_dest_droppable(msg)) {
		buf_discard(buf);
		return data_sz;
	}

	/* construct rejected message */
	if (msg_mcast(msg))
		hdr_sz = MCAST_H_SIZE;
	else
		hdr_sz = LONG_H_SIZE;
392
	rbuf = tipc_buf_acquire(data_sz + hdr_sz);
P
Per Liden 已提交
393 394 395 396 397
	if (rbuf == NULL) {
		buf_discard(buf);
		return data_sz;
	}
	rmsg = buf_msg(rbuf);
398
	tipc_msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
399
	msg_set_errcode(rmsg, err);
P
Per Liden 已提交
400 401
	msg_set_destport(rmsg, msg_origport(msg));
	msg_set_origport(rmsg, msg_destport(msg));
402
	if (msg_short(msg)) {
P
Per Liden 已提交
403
		msg_set_orignode(rmsg, tipc_own_addr);
404 405
		/* leave name type & instance as zeroes */
	} else {
P
Per Liden 已提交
406
		msg_set_orignode(rmsg, msg_destnode(msg));
407 408 409
		msg_set_nametype(rmsg, msg_nametype(msg));
		msg_set_nameinst(rmsg, msg_nameinst(msg));
	}
410
	msg_set_size(rmsg, data_sz + hdr_sz);
411
	skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
P
Per Liden 已提交
412 413 414

	/* send self-abort message when rejecting on a connected port */
	if (msg_connected(msg)) {
415
		struct sk_buff *abuf = NULL;
416
		struct port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
417 418 419 420

		if (p_ptr) {
			if (p_ptr->publ.connected)
				abuf = port_build_self_abort_msg(p_ptr, err);
421
			tipc_port_unlock(p_ptr);
P
Per Liden 已提交
422
		}
423
		tipc_net_route_msg(abuf);
P
Per Liden 已提交
424 425 426 427
	}

	/* send rejected message */
	buf_discard(buf);
428
	tipc_net_route_msg(rbuf);
P
Per Liden 已提交
429 430 431
	return data_sz;
}

432 433 434
int tipc_port_reject_sections(struct port *p_ptr, struct tipc_msg *hdr,
			      struct iovec const *msg_sect, u32 num_sect,
			      int err)
P
Per Liden 已提交
435 436 437 438
{
	struct sk_buff *buf;
	int res;

439
	res = tipc_msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
P
Per Liden 已提交
440 441 442 443 444 445 446 447 448
			!p_ptr->user_port, &buf);
	if (!buf)
		return res;

	return tipc_reject_msg(buf, err);
}

static void port_timeout(unsigned long ref)
{
449
	struct port *p_ptr = tipc_port_lock(ref);
450
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
451

452 453 454 455 456
	if (!p_ptr)
		return;

	if (!p_ptr->publ.connected) {
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
457
		return;
458
	}
P
Per Liden 已提交
459 460 461 462 463 464 465 466 467 468 469

	/* Last probe answered ? */
	if (p_ptr->probing_state == PROBING) {
		buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
	} else {
		buf = port_build_proto_msg(port_peerport(p_ptr),
					   port_peernode(p_ptr),
					   p_ptr->publ.ref,
					   tipc_own_addr,
					   CONN_MANAGER,
					   CONN_PROBE,
470
					   TIPC_OK,
P
Per Liden 已提交
471 472 473 474 475 476
					   port_out_seqno(p_ptr),
					   0);
		port_incr_out_seqno(p_ptr);
		p_ptr->probing_state = PROBING;
		k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
	}
477 478
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
479 480 481 482 483
}


static void port_handle_node_down(unsigned long ref)
{
484
	struct port *p_ptr = tipc_port_lock(ref);
485
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
486 487 488 489

	if (!p_ptr)
		return;
	buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
490 491
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
492 493 494 495 496 497 498 499
}


static struct sk_buff *port_build_self_abort_msg(struct port *p_ptr, u32 err)
{
	u32 imp = msg_importance(&p_ptr->publ.phdr);

	if (!p_ptr->publ.connected)
500
		return NULL;
P
Per Liden 已提交
501 502 503 504 505 506 507 508
	if (imp < TIPC_CRITICAL_IMPORTANCE)
		imp++;
	return port_build_proto_msg(p_ptr->publ.ref,
				    tipc_own_addr,
				    port_peerport(p_ptr),
				    port_peernode(p_ptr),
				    imp,
				    TIPC_CONN_MSG,
509
				    err,
P
Per Liden 已提交
510 511 512 513 514 515 516 517 518 519
				    p_ptr->last_in_seqno + 1,
				    0);
}


static struct sk_buff *port_build_peer_abort_msg(struct port *p_ptr, u32 err)
{
	u32 imp = msg_importance(&p_ptr->publ.phdr);

	if (!p_ptr->publ.connected)
520
		return NULL;
P
Per Liden 已提交
521 522 523 524 525 526 527 528
	if (imp < TIPC_CRITICAL_IMPORTANCE)
		imp++;
	return port_build_proto_msg(port_peerport(p_ptr),
				    port_peernode(p_ptr),
				    p_ptr->publ.ref,
				    tipc_own_addr,
				    imp,
				    TIPC_CONN_MSG,
529
				    err,
P
Per Liden 已提交
530 531 532 533
				    port_out_seqno(p_ptr),
				    0);
}

534
void tipc_port_recv_proto_msg(struct sk_buff *buf)
P
Per Liden 已提交
535 536
{
	struct tipc_msg *msg = buf_msg(buf);
537
	struct port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
538
	u32 err = TIPC_OK;
539 540
	struct sk_buff *r_buf = NULL;
	struct sk_buff *abort_buf = NULL;
P
Per Liden 已提交
541 542 543 544

	if (!p_ptr) {
		err = TIPC_ERR_NO_PORT;
	} else if (p_ptr->publ.connected) {
545 546
		if ((port_peernode(p_ptr) != msg_orignode(msg)) ||
		    (port_peerport(p_ptr) != msg_origport(msg))) {
P
Per Liden 已提交
547
			err = TIPC_ERR_NO_PORT;
548
		} else if (msg_type(msg) == CONN_ACK) {
549
			int wakeup = tipc_port_congested(p_ptr) &&
P
Per Liden 已提交
550 551 552
				     p_ptr->publ.congested &&
				     p_ptr->wakeup;
			p_ptr->acked += msg_msgcnt(msg);
553
			if (tipc_port_congested(p_ptr))
P
Per Liden 已提交
554 555 556 557 558 559 560 561 562 563 564 565
				goto exit;
			p_ptr->publ.congested = 0;
			if (!wakeup)
				goto exit;
			p_ptr->wakeup(&p_ptr->publ);
			goto exit;
		}
	} else if (p_ptr->publ.published) {
		err = TIPC_ERR_NO_PORT;
	}
	if (err) {
		r_buf = port_build_proto_msg(msg_origport(msg),
566 567
					     msg_orignode(msg),
					     msg_destport(msg),
P
Per Liden 已提交
568
					     tipc_own_addr,
569
					     TIPC_HIGH_IMPORTANCE,
P
Per Liden 已提交
570 571 572 573 574 575 576 577 578
					     TIPC_CONN_MSG,
					     err,
					     0,
					     0);
		goto exit;
	}

	/* All is fine */
	if (msg_type(msg) == CONN_PROBE) {
579 580 581 582
		r_buf = port_build_proto_msg(msg_origport(msg),
					     msg_orignode(msg),
					     msg_destport(msg),
					     tipc_own_addr,
P
Per Liden 已提交
583 584 585 586 587 588 589 590 591 592
					     CONN_MANAGER,
					     CONN_PROBE_REPLY,
					     TIPC_OK,
					     port_out_seqno(p_ptr),
					     0);
	}
	p_ptr->probing_state = CONFIRMED;
	port_incr_out_seqno(p_ptr);
exit:
	if (p_ptr)
593 594 595
		tipc_port_unlock(p_ptr);
	tipc_net_route_msg(r_buf);
	tipc_net_route_msg(abort_buf);
P
Per Liden 已提交
596 597 598 599 600
	buf_discard(buf);
}

static void port_print(struct port *p_ptr, struct print_buf *buf, int full_id)
{
601
	struct publication *publ;
P
Per Liden 已提交
602 603

	if (full_id)
604
		tipc_printf(buf, "<%u.%u.%u:%u>:",
P
Per Liden 已提交
605
			    tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
606
			    tipc_node(tipc_own_addr), p_ptr->publ.ref);
P
Per Liden 已提交
607 608 609
	else
		tipc_printf(buf, "%-10u:", p_ptr->publ.ref);

610 611 612 613 614 615 616 617 618 619 620
	if (p_ptr->publ.connected) {
		u32 dport = port_peerport(p_ptr);
		u32 destnode = port_peernode(p_ptr);

		tipc_printf(buf, " connected to <%u.%u.%u:%u>",
			    tipc_zone(destnode), tipc_cluster(destnode),
			    tipc_node(destnode), dport);
		if (p_ptr->publ.conn_type != 0)
			tipc_printf(buf, " via {%u,%u}",
				    p_ptr->publ.conn_type,
				    p_ptr->publ.conn_instance);
621
	} else if (p_ptr->publ.published) {
622 623
		tipc_printf(buf, " bound to");
		list_for_each_entry(publ, &p_ptr->publications, pport_list) {
P
Per Liden 已提交
624 625 626 627
			if (publ->lower == publ->upper)
				tipc_printf(buf, " {%u,%u}", publ->type,
					    publ->lower);
			else
628
				tipc_printf(buf, " {%u,%u,%u}", publ->type,
P
Per Liden 已提交
629
					    publ->lower, publ->upper);
630 631 632
		}
	}
	tipc_printf(buf, "\n");
P
Per Liden 已提交
633 634 635 636
}

#define MAX_PORT_QUERY 32768

637
struct sk_buff *tipc_port_get_ports(void)
P
Per Liden 已提交
638 639 640 641 642 643 644
{
	struct sk_buff *buf;
	struct tlv_desc *rep_tlv;
	struct print_buf pb;
	struct port *p_ptr;
	int str_len;

645
	buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
P
Per Liden 已提交
646 647 648 649
	if (!buf)
		return NULL;
	rep_tlv = (struct tlv_desc *)buf->data;

650 651
	tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
652 653 654 655 656
	list_for_each_entry(p_ptr, &ports, port_list) {
		spin_lock_bh(p_ptr->publ.lock);
		port_print(p_ptr, &pb, 0);
		spin_unlock_bh(p_ptr->publ.lock);
	}
657 658
	spin_unlock_bh(&tipc_port_list_lock);
	str_len = tipc_printbuf_validate(&pb);
P
Per Liden 已提交
659 660 661 662 663 664 665

	skb_put(buf, TLV_SPACE(str_len));
	TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);

	return buf;
}

666
void tipc_port_reinit(void)
P
Per Liden 已提交
667 668 669 670
{
	struct port *p_ptr;
	struct tipc_msg *msg;

671
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
672 673 674 675
	list_for_each_entry(p_ptr, &ports, port_list) {
		msg = &p_ptr->publ.phdr;
		if (msg_orignode(msg) == tipc_own_addr)
			break;
676
		msg_set_prevnode(msg, tipc_own_addr);
P
Per Liden 已提交
677 678
		msg_set_orignode(msg, tipc_own_addr);
	}
679
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693
}


/*
 *  port_dispatcher_sigh(): Signal handler for messages destinated
 *                          to the tipc_port interface.
 */

static void port_dispatcher_sigh(void *dummy)
{
	struct sk_buff *buf;

	spin_lock_bh(&queue_lock);
	buf = msg_queue_head;
694
	msg_queue_head = NULL;
P
Per Liden 已提交
695 696 697 698 699 700 701 702 703 704
	spin_unlock_bh(&queue_lock);

	while (buf) {
		struct port *p_ptr;
		struct user_port *up_ptr;
		struct tipc_portid orig;
		struct tipc_name_seq dseq;
		void *usr_handle;
		int connected;
		int published;
705
		u32 message_type;
P
Per Liden 已提交
706 707 708 709

		struct sk_buff *next = buf->next;
		struct tipc_msg *msg = buf_msg(buf);
		u32 dref = msg_destport(msg);
710

711 712 713 714
		message_type = msg_type(msg);
		if (message_type > TIPC_DIRECT_MSG)
			goto reject;	/* Unsupported message type */

715
		p_ptr = tipc_port_lock(dref);
716 717 718
		if (!p_ptr)
			goto reject;	/* Port deleted while msg in queue */

P
Per Liden 已提交
719 720 721 722 723 724 725 726 727 728
		orig.ref = msg_origport(msg);
		orig.node = msg_orignode(msg);
		up_ptr = p_ptr->user_port;
		usr_handle = up_ptr->usr_handle;
		connected = p_ptr->publ.connected;
		published = p_ptr->publ.published;

		if (unlikely(msg_errcode(msg)))
			goto err;

729
		switch (message_type) {
730

P
Per Liden 已提交
731 732 733 734 735
		case TIPC_CONN_MSG:{
				tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
				u32 peer_port = port_peerport(p_ptr);
				u32 peer_node = port_peernode(p_ptr);

J
Julia Lawall 已提交
736
				tipc_port_unlock(p_ptr);
737 738
				if (unlikely(!cb))
					goto reject;
P
Per Liden 已提交
739
				if (unlikely(!connected)) {
740
					if (tipc_connect2port(dref, &orig))
P
Per Liden 已提交
741
						goto reject;
742 743
				} else if ((msg_origport(msg) != peer_port) ||
					   (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
744
					goto reject;
745
				if (unlikely(++p_ptr->publ.conn_unacked >=
P
Per Liden 已提交
746
					     TIPC_FLOW_CONTROL_WIN))
747
					tipc_acknowledge(dref,
P
Per Liden 已提交
748 749 750 751 752 753 754 755 756
							 p_ptr->publ.conn_unacked);
				skb_pull(buf, msg_hdr_sz(msg));
				cb(usr_handle, dref, &buf, msg_data(msg),
				   msg_data_sz(msg));
				break;
			}
		case TIPC_DIRECT_MSG:{
				tipc_msg_event cb = up_ptr->msg_cb;

J
Julia Lawall 已提交
757
				tipc_port_unlock(p_ptr);
758
				if (unlikely(!cb || connected))
P
Per Liden 已提交
759 760
					goto reject;
				skb_pull(buf, msg_hdr_sz(msg));
761
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
762 763 764 765
				   msg_data_sz(msg), msg_importance(msg),
				   &orig);
				break;
			}
766
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
767 768 769
		case TIPC_NAMED_MSG:{
				tipc_named_msg_event cb = up_ptr->named_msg_cb;

J
Julia Lawall 已提交
770
				tipc_port_unlock(p_ptr);
771
				if (unlikely(!cb || connected || !published))
P
Per Liden 已提交
772 773 774
					goto reject;
				dseq.type =  msg_nametype(msg);
				dseq.lower = msg_nameinst(msg);
775 776
				dseq.upper = (message_type == TIPC_NAMED_MSG)
					? dseq.lower : msg_nameupper(msg);
P
Per Liden 已提交
777
				skb_pull(buf, msg_hdr_sz(msg));
778
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
779 780 781 782 783 784 785 786 787 788
				   msg_data_sz(msg), msg_importance(msg),
				   &orig, &dseq);
				break;
			}
		}
		if (buf)
			buf_discard(buf);
		buf = next;
		continue;
err:
789
		switch (message_type) {
790

P
Per Liden 已提交
791
		case TIPC_CONN_MSG:{
792
				tipc_conn_shutdown_event cb =
P
Per Liden 已提交
793 794 795 796
					up_ptr->conn_err_cb;
				u32 peer_port = port_peerport(p_ptr);
				u32 peer_node = port_peernode(p_ptr);

J
Julia Lawall 已提交
797
				tipc_port_unlock(p_ptr);
798
				if (!cb || !connected)
P
Per Liden 已提交
799
					break;
800 801
				if ((msg_origport(msg) != peer_port) ||
				    (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
802 803 804 805 806 807 808 809 810 811
					break;
				tipc_disconnect(dref);
				skb_pull(buf, msg_hdr_sz(msg));
				cb(usr_handle, dref, &buf, msg_data(msg),
				   msg_data_sz(msg), msg_errcode(msg));
				break;
			}
		case TIPC_DIRECT_MSG:{
				tipc_msg_err_event cb = up_ptr->err_cb;

J
Julia Lawall 已提交
812
				tipc_port_unlock(p_ptr);
813
				if (!cb || connected)
P
Per Liden 已提交
814 815 816 817 818 819
					break;
				skb_pull(buf, msg_hdr_sz(msg));
				cb(usr_handle, dref, &buf, msg_data(msg),
				   msg_data_sz(msg), msg_errcode(msg), &orig);
				break;
			}
820
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
821
		case TIPC_NAMED_MSG:{
822
				tipc_named_msg_err_event cb =
P
Per Liden 已提交
823 824
					up_ptr->named_err_cb;

J
Julia Lawall 已提交
825
				tipc_port_unlock(p_ptr);
826
				if (!cb || connected)
P
Per Liden 已提交
827 828 829
					break;
				dseq.type =  msg_nametype(msg);
				dseq.lower = msg_nameinst(msg);
830 831
				dseq.upper = (message_type == TIPC_NAMED_MSG)
					? dseq.lower : msg_nameupper(msg);
P
Per Liden 已提交
832
				skb_pull(buf, msg_hdr_sz(msg));
833
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
				   msg_data_sz(msg), msg_errcode(msg), &dseq);
				break;
			}
		}
		if (buf)
			buf_discard(buf);
		buf = next;
		continue;
reject:
		tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
		buf = next;
	}
}

/*
 *  port_dispatcher(): Dispatcher for messages destinated
 *  to the tipc_port interface. Called with port locked.
 */

static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
{
	buf->next = NULL;
	spin_lock_bh(&queue_lock);
	if (msg_queue_head) {
		msg_queue_tail->next = buf;
		msg_queue_tail = buf;
	} else {
		msg_queue_tail = msg_queue_head = buf;
862
		tipc_k_signal((Handler)port_dispatcher_sigh, 0);
P
Per Liden 已提交
863 864
	}
	spin_unlock_bh(&queue_lock);
865
	return 0;
P
Per Liden 已提交
866 867
}

868
/*
P
Per Liden 已提交
869
 * Wake up port after congestion: Called with port locked,
870
 *
P
Per Liden 已提交
871 872 873 874 875 876
 */

static void port_wakeup_sh(unsigned long ref)
{
	struct port *p_ptr;
	struct user_port *up_ptr;
877 878
	tipc_continue_event cb = NULL;
	void *uh = NULL;
P
Per Liden 已提交
879

880
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
881 882 883 884 885 886
	if (p_ptr) {
		up_ptr = p_ptr->user_port;
		if (up_ptr) {
			cb = up_ptr->continue_event_cb;
			uh = up_ptr->usr_handle;
		}
887
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
888 889 890 891 892 893 894 895
	}
	if (cb)
		cb(uh, ref);
}


static void port_wakeup(struct tipc_port *p_ptr)
{
896
	tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
P
Per Liden 已提交
897 898 899 900 901
}

void tipc_acknowledge(u32 ref, u32 ack)
{
	struct port *p_ptr;
902
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
903

904
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
905 906 907 908 909 910 911 912 913 914
	if (!p_ptr)
		return;
	if (p_ptr->publ.connected) {
		p_ptr->publ.conn_unacked -= ack;
		buf = port_build_proto_msg(port_peerport(p_ptr),
					   port_peernode(p_ptr),
					   ref,
					   tipc_own_addr,
					   CONN_MANAGER,
					   CONN_ACK,
915
					   TIPC_OK,
P
Per Liden 已提交
916 917 918
					   port_out_seqno(p_ptr),
					   ack);
	}
919 920
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
921 922 923
}

/*
924
 * tipc_createport(): user level call.
P
Per Liden 已提交
925 926
 */

927
int tipc_createport(void *usr_handle,
928 929 930 931 932 933 934
		    unsigned int importance,
		    tipc_msg_err_event error_cb,
		    tipc_named_msg_err_event named_error_cb,
		    tipc_conn_shutdown_event conn_error_cb,
		    tipc_msg_event msg_cb,
		    tipc_named_msg_event named_msg_cb,
		    tipc_conn_msg_event conn_msg_cb,
P
Per Liden 已提交
935 936 937 938
		    tipc_continue_event continue_event_cb,/* May be zero */
		    u32 *portref)
{
	struct user_port *up_ptr;
939
	struct port *p_ptr;
P
Per Liden 已提交
940

941
	up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
942
	if (!up_ptr) {
943
		warn("Port creation failed, no memory\n");
P
Per Liden 已提交
944 945
		return -ENOMEM;
	}
946 947 948
	p_ptr = (struct port *)tipc_createport_raw(NULL, port_dispatcher,
						   port_wakeup, importance);
	if (!p_ptr) {
P
Per Liden 已提交
949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
		kfree(up_ptr);
		return -ENOMEM;
	}

	p_ptr->user_port = up_ptr;
	up_ptr->usr_handle = usr_handle;
	up_ptr->ref = p_ptr->publ.ref;
	up_ptr->err_cb = error_cb;
	up_ptr->named_err_cb = named_error_cb;
	up_ptr->conn_err_cb = conn_error_cb;
	up_ptr->msg_cb = msg_cb;
	up_ptr->named_msg_cb = named_msg_cb;
	up_ptr->conn_msg_cb = conn_msg_cb;
	up_ptr->continue_event_cb = continue_event_cb;
	*portref = p_ptr->publ.ref;
964
	tipc_port_unlock(p_ptr);
965
	return 0;
P
Per Liden 已提交
966 967 968 969 970
}

int tipc_portimportance(u32 ref, unsigned int *importance)
{
	struct port *p_ptr;
971

972
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
973 974 975
	if (!p_ptr)
		return -EINVAL;
	*importance = (unsigned int)msg_importance(&p_ptr->publ.phdr);
J
Julia Lawall 已提交
976
	tipc_port_unlock(p_ptr);
977
	return 0;
P
Per Liden 已提交
978 979 980 981 982 983 984 985 986
}

int tipc_set_portimportance(u32 ref, unsigned int imp)
{
	struct port *p_ptr;

	if (imp > TIPC_CRITICAL_IMPORTANCE)
		return -EINVAL;

987
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
988 989 990
	if (!p_ptr)
		return -EINVAL;
	msg_set_importance(&p_ptr->publ.phdr, (u32)imp);
J
Julia Lawall 已提交
991
	tipc_port_unlock(p_ptr);
992
	return 0;
P
Per Liden 已提交
993 994 995 996 997 998 999 1000 1001 1002
}


int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
{
	struct port *p_ptr;
	struct publication *publ;
	u32 key;
	int res = -EINVAL;

1003
	p_ptr = tipc_port_lock(ref);
1004 1005 1006
	if (!p_ptr)
		return -EINVAL;

P
Per Liden 已提交
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
	if (p_ptr->publ.connected)
		goto exit;
	if (seq->lower > seq->upper)
		goto exit;
	if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
		goto exit;
	key = ref + p_ptr->pub_count + 1;
	if (key == ref) {
		res = -EADDRINUSE;
		goto exit;
	}
1018 1019
	publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
				    scope, p_ptr->publ.ref, key);
P
Per Liden 已提交
1020 1021 1022 1023
	if (publ) {
		list_add(&publ->pport_list, &p_ptr->publications);
		p_ptr->pub_count++;
		p_ptr->publ.published = 1;
1024
		res = 0;
P
Per Liden 已提交
1025 1026
	}
exit:
1027
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036
	return res;
}

int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
{
	struct port *p_ptr;
	struct publication *publ;
	struct publication *tpubl;
	int res = -EINVAL;
1037

1038
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1039 1040 1041
	if (!p_ptr)
		return -EINVAL;
	if (!seq) {
1042
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1043
					 &p_ptr->publications, pport_list) {
1044
			tipc_nametbl_withdraw(publ->type, publ->lower,
1045
					      publ->ref, publ->key);
P
Per Liden 已提交
1046
		}
1047
		res = 0;
P
Per Liden 已提交
1048
	} else {
1049
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058
					 &p_ptr->publications, pport_list) {
			if (publ->scope != scope)
				continue;
			if (publ->type != seq->type)
				continue;
			if (publ->lower != seq->lower)
				continue;
			if (publ->upper != seq->upper)
				break;
1059
			tipc_nametbl_withdraw(publ->type, publ->lower,
1060
					      publ->ref, publ->key);
1061
			res = 0;
P
Per Liden 已提交
1062 1063 1064 1065 1066
			break;
		}
	}
	if (list_empty(&p_ptr->publications))
		p_ptr->publ.published = 0;
1067
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1068 1069 1070 1071 1072 1073 1074 1075 1076
	return res;
}

int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	int res = -EINVAL;

1077
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
	if (!p_ptr)
		return -EINVAL;
	if (p_ptr->publ.published || p_ptr->publ.connected)
		goto exit;
	if (!peer->ref)
		goto exit;

	msg = &p_ptr->publ.phdr;
	msg_set_destnode(msg, peer->node);
	msg_set_destport(msg, peer->ref);
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, p_ptr->publ.ref);
	msg_set_transp_seqno(msg, 42);
	msg_set_type(msg, TIPC_CONN_MSG);
1092
	msg_set_hdr_sz(msg, SHORT_H_SIZE);
P
Per Liden 已提交
1093 1094 1095 1096 1097 1098

	p_ptr->probing_interval = PROBING_INTERVAL;
	p_ptr->probing_state = CONFIRMED;
	p_ptr->publ.connected = 1;
	k_start_timer(&p_ptr->timer, p_ptr->probing_interval);

1099
	tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
1100
			  (void *)(unsigned long)ref,
P
Per Liden 已提交
1101
			  (net_ev_handler)port_handle_node_down);
1102
	res = 0;
P
Per Liden 已提交
1103
exit:
1104
	tipc_port_unlock(p_ptr);
1105
	p_ptr->publ.max_pkt = tipc_link_get_max_pkt(peer->node, ref);
P
Per Liden 已提交
1106 1107 1108
	return res;
}

1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
/**
 * tipc_disconnect_port - disconnect port from peer
 *
 * Port must be locked.
 */

int tipc_disconnect_port(struct tipc_port *tp_ptr)
{
	int res;

	if (tp_ptr->connected) {
		tp_ptr->connected = 0;
		/* let timer expire on it's own to avoid deadlock! */
		tipc_nodesub_unsubscribe(
			&((struct port *)tp_ptr)->subscription);
1124
		res = 0;
1125 1126 1127 1128 1129 1130
	} else {
		res = -ENOTCONN;
	}
	return res;
}

P
Per Liden 已提交
1131 1132 1133 1134 1135 1136 1137 1138
/*
 * tipc_disconnect(): Disconnect port form peer.
 *                    This is a node local operation.
 */

int tipc_disconnect(u32 ref)
{
	struct port *p_ptr;
1139
	int res;
P
Per Liden 已提交
1140

1141
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1142 1143
	if (!p_ptr)
		return -EINVAL;
1144
	res = tipc_disconnect_port((struct tipc_port *)p_ptr);
1145
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1146 1147 1148 1149 1150 1151 1152 1153 1154
	return res;
}

/*
 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
 */
int tipc_shutdown(u32 ref)
{
	struct port *p_ptr;
1155
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
1156

1157
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
	if (!p_ptr)
		return -EINVAL;

	if (p_ptr->publ.connected) {
		u32 imp = msg_importance(&p_ptr->publ.phdr);
		if (imp < TIPC_CRITICAL_IMPORTANCE)
			imp++;
		buf = port_build_proto_msg(port_peerport(p_ptr),
					   port_peernode(p_ptr),
					   ref,
					   tipc_own_addr,
					   imp,
					   TIPC_CONN_MSG,
1171
					   TIPC_CONN_SHUTDOWN,
P
Per Liden 已提交
1172 1173 1174
					   port_out_seqno(p_ptr),
					   0);
	}
1175 1176
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
1177 1178 1179 1180
	return tipc_disconnect(ref);
}

/*
1181
 *  tipc_port_recv_sections(): Concatenate and deliver sectioned
P
Per Liden 已提交
1182 1183 1184
 *                        message for this node.
 */

1185 1186
static int tipc_port_recv_sections(struct port *sender, unsigned int num_sect,
				   struct iovec const *msg_sect)
P
Per Liden 已提交
1187 1188 1189
{
	struct sk_buff *buf;
	int res;
1190

1191
	res = tipc_msg_build(&sender->publ.phdr, msg_sect, num_sect,
P
Per Liden 已提交
1192 1193
			MAX_MSG_SIZE, !sender->user_port, &buf);
	if (likely(buf))
1194
		tipc_port_recv_msg(buf);
P
Per Liden 已提交
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
	return res;
}

/**
 * tipc_send - send message sections on connection
 */

int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect)
{
	struct port *p_ptr;
	u32 destnode;
	int res;

1208
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1209 1210 1211 1212
	if (!p_ptr || !p_ptr->publ.connected)
		return -EINVAL;

	p_ptr->publ.congested = 1;
1213
	if (!tipc_port_congested(p_ptr)) {
P
Per Liden 已提交
1214 1215
		destnode = port_peernode(p_ptr);
		if (likely(destnode != tipc_own_addr))
1216 1217
			res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
							   destnode);
P
Per Liden 已提交
1218
		else
1219
			res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
P
Per Liden 已提交
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230

		if (likely(res != -ELINKCONG)) {
			port_incr_out_seqno(p_ptr);
			p_ptr->publ.congested = 0;
			p_ptr->sent++;
			return res;
		}
	}
	if (port_unreliable(p_ptr)) {
		p_ptr->publ.congested = 0;
		/* Just calculate msg length and return */
1231
		return tipc_msg_calc_data_size(msg_sect, num_sect);
P
Per Liden 已提交
1232 1233 1234 1235 1236
	}
	return -ELINKCONG;
}

/**
1237
 * tipc_send2name - send message sections to port name
P
Per Liden 已提交
1238 1239
 */

1240 1241
int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
	   unsigned int num_sect, struct iovec const *msg_sect)
P
Per Liden 已提交
1242 1243 1244 1245
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	u32 destnode = domain;
1246
	u32 destport;
P
Per Liden 已提交
1247 1248
	int res;

1249
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1250 1251 1252 1253 1254
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	msg_set_type(msg, TIPC_NAMED_MSG);
1255 1256
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1257 1258 1259
	msg_set_hdr_sz(msg, LONG_H_SIZE);
	msg_set_nametype(msg, name->type);
	msg_set_nameinst(msg, name->instance);
1260
	msg_set_lookup_scope(msg, tipc_addr_scope(domain));
1261
	destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
P
Per Liden 已提交
1262 1263 1264
	msg_set_destnode(msg, destnode);
	msg_set_destport(msg, destport);

1265
	if (likely(destport)) {
P
Per Liden 已提交
1266 1267
		p_ptr->sent++;
		if (likely(destnode == tipc_own_addr))
1268
			return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1269
		res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1270
						   destnode);
P
Per Liden 已提交
1271 1272 1273 1274
		if (likely(res != -ELINKCONG))
			return res;
		if (port_unreliable(p_ptr)) {
			/* Just calculate msg length and return */
1275
			return tipc_msg_calc_data_size(msg_sect, num_sect);
P
Per Liden 已提交
1276 1277 1278
		}
		return -ELINKCONG;
	}
1279
	return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
1280
					 TIPC_ERR_NO_NAME);
P
Per Liden 已提交
1281 1282 1283
}

/**
1284
 * tipc_send2port - send message sections to port identity
P
Per Liden 已提交
1285 1286
 */

1287 1288
int tipc_send2port(u32 ref, struct tipc_portid const *dest,
	   unsigned int num_sect, struct iovec const *msg_sect)
P
Per Liden 已提交
1289 1290 1291 1292 1293
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	int res;

1294
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1295 1296 1297 1298 1299
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	msg_set_type(msg, TIPC_DIRECT_MSG);
1300 1301
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1302 1303 1304 1305 1306
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
	msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
	p_ptr->sent++;
	if (dest->node == tipc_own_addr)
1307 1308
		return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
	res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect, dest->node);
P
Per Liden 已提交
1309 1310 1311 1312
	if (likely(res != -ELINKCONG))
		return res;
	if (port_unreliable(p_ptr)) {
		/* Just calculate msg length and return */
1313
		return tipc_msg_calc_data_size(msg_sect, num_sect);
P
Per Liden 已提交
1314 1315 1316 1317
	}
	return -ELINKCONG;
}

1318
/**
1319
 * tipc_send_buf2port - send message buffer to port identity
P
Per Liden 已提交
1320 1321
 */

1322 1323
int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
	       struct sk_buff *buf, unsigned int dsz)
P
Per Liden 已提交
1324 1325 1326 1327 1328
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	int res;

1329
	p_ptr = (struct port *)tipc_ref_deref(ref);
P
Per Liden 已提交
1330 1331 1332 1333 1334
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	msg_set_type(msg, TIPC_DIRECT_MSG);
1335 1336
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1337 1338 1339 1340 1341 1342 1343 1344
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
	msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
	msg_set_size(msg, DIR_MSG_H_SIZE + dsz);
	if (skb_cow(buf, DIR_MSG_H_SIZE))
		return -ENOMEM;

	skb_push(buf, DIR_MSG_H_SIZE);
1345
	skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
P
Per Liden 已提交
1346 1347
	p_ptr->sent++;
	if (dest->node == tipc_own_addr)
1348
		return tipc_port_recv_msg(buf);
P
Per Liden 已提交
1349 1350 1351 1352 1353 1354 1355 1356
	res = tipc_send_buf_fast(buf, dest->node);
	if (likely(res != -ELINKCONG))
		return res;
	if (port_unreliable(p_ptr))
		return dsz;
	return -ELINKCONG;
}