port.c 32.3 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, 2010-2011, 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 tipc_port *, u32 err);
static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *, u32 err);
P
Per Liden 已提交
59 60 61
static void port_timeout(unsigned long ref);


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

67
static u32 port_peerport(struct tipc_port *p_ptr)
P
Per Liden 已提交
68
{
69
	return msg_destport(&p_ptr->phdr);
P
Per Liden 已提交
70 71 72 73 74 75
}

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

76
int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
77 78
		   u32 num_sect, struct iovec const *msg_sect,
		   unsigned int total_len)
P
Per Liden 已提交
79 80 81 82 83
{
	struct tipc_msg *hdr;
	struct sk_buff *buf;
	struct sk_buff *ibuf = NULL;
	struct port_list dports = {0, NULL, };
84
	struct tipc_port *oport = tipc_port_deref(ref);
P
Per Liden 已提交
85 86 87 88 89 90 91 92
	int ext_targets;
	int res;

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

	/* Create multicast message */

93
	hdr = &oport->phdr;
P
Per Liden 已提交
94
	msg_set_type(hdr, TIPC_MCAST_MSG);
95
	msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
96 97
	msg_set_destport(hdr, 0);
	msg_set_destnode(hdr, 0);
P
Per Liden 已提交
98 99 100 101
	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);
102
	res = tipc_msg_build(hdr, msg_sect, num_sect, total_len, MAX_MSG_SIZE,
P
Per Liden 已提交
103 104 105 106 107 108
			!oport->user_port, &buf);
	if (unlikely(!buf))
		return res;

	/* Figure out where to send multicast message */

109 110
	ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
						TIPC_NODE_SCOPE, &dports);
111 112

	/* Send message to destinations (duplicate it only if necessary) */
P
Per Liden 已提交
113 114 115 116 117

	if (ext_targets) {
		if (dports.count != 0) {
			ibuf = skb_copy(buf, GFP_ATOMIC);
			if (ibuf == NULL) {
118
				tipc_port_list_free(&dports);
P
Per Liden 已提交
119 120 121 122
				buf_discard(buf);
				return -ENOMEM;
			}
		}
123
		res = tipc_bclink_send_msg(buf);
124
		if ((res < 0) && (dports.count != 0))
P
Per Liden 已提交
125 126 127 128 129 130 131
			buf_discard(ibuf);
	} else {
		ibuf = buf;
	}

	if (res >= 0) {
		if (ibuf)
132
			tipc_port_recv_mcast(ibuf, &dports);
P
Per Liden 已提交
133
	} else {
134
		tipc_port_list_free(&dports);
P
Per Liden 已提交
135 136 137 138 139
	}
	return res;
}

/**
140
 * tipc_port_recv_mcast - deliver multicast message to all destination ports
141
 *
P
Per Liden 已提交
142 143 144
 * If there is no port list, perform a lookup to create one
 */

145
void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
P
Per Liden 已提交
146
{
147
	struct tipc_msg *msg;
P
Per Liden 已提交
148 149 150 151 152 153 154 155 156
	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) {
157
		tipc_nametbl_mc_translate(msg_nametype(msg),
P
Per Liden 已提交
158 159 160 161 162 163 164 165 166 167
				     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) {
168
		msg_set_destnode(msg, tipc_own_addr);
P
Per Liden 已提交
169 170
		if (dp->count == 1) {
			msg_set_destport(msg, dp->ports[0]);
171 172
			tipc_port_recv_msg(buf);
			tipc_port_list_free(dp);
P
Per Liden 已提交
173 174 175 176 177 178 179
			return;
		}
		for (; cnt < dp->count; cnt++) {
			int index = cnt % PLSIZE;
			struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);

			if (b == NULL) {
180
				warn("Unable to deliver multicast message(s)\n");
P
Per Liden 已提交
181 182
				goto exit;
			}
183
			if ((index == 0) && (cnt != 0))
P
Per Liden 已提交
184
				item = item->next;
185
			msg_set_destport(buf_msg(b), item->ports[index]);
186
			tipc_port_recv_msg(b);
P
Per Liden 已提交
187 188 189 190
		}
	}
exit:
	buf_discard(buf);
191
	tipc_port_list_free(dp);
P
Per Liden 已提交
192 193 194
}

/**
195
 * tipc_createport_raw - create a generic TIPC port
196
 *
197
 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
P
Per Liden 已提交
198 199
 */

200
struct tipc_port *tipc_createport_raw(void *usr_handle,
P
Per Liden 已提交
201 202
			u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
			void (*wakeup)(struct tipc_port *),
203
			const u32 importance)
P
Per Liden 已提交
204
{
205
	struct tipc_port *p_ptr;
P
Per Liden 已提交
206 207 208
	struct tipc_msg *msg;
	u32 ref;

209
	p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
210 211
	if (!p_ptr) {
		warn("Port creation failed, no memory\n");
212
		return NULL;
P
Per Liden 已提交
213
	}
214
	ref = tipc_ref_acquire(p_ptr, &p_ptr->lock);
P
Per Liden 已提交
215
	if (!ref) {
216
		warn("Port creation failed, reference table exhausted\n");
P
Per Liden 已提交
217
		kfree(p_ptr);
218
		return NULL;
P
Per Liden 已提交
219 220
	}

221 222 223 224
	p_ptr->usr_handle = usr_handle;
	p_ptr->max_pkt = MAX_PKT_DEFAULT;
	p_ptr->ref = ref;
	msg = &p_ptr->phdr;
225
	tipc_msg_init(msg, importance, TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
P
Per Liden 已提交
226 227 228 229 230
	msg_set_origport(msg, ref);
	INIT_LIST_HEAD(&p_ptr->wait_list);
	INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
	p_ptr->dispatcher = dispatcher;
	p_ptr->wakeup = wakeup;
231
	p_ptr->user_port = NULL;
P
Per Liden 已提交
232
	k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
233
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
234 235 236
	INIT_LIST_HEAD(&p_ptr->publications);
	INIT_LIST_HEAD(&p_ptr->port_list);
	list_add_tail(&p_ptr->port_list, &ports);
237
	spin_unlock_bh(&tipc_port_list_lock);
238
	return p_ptr;
P
Per Liden 已提交
239 240 241 242
}

int tipc_deleteport(u32 ref)
{
243
	struct tipc_port *p_ptr;
244
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
245

246
	tipc_withdraw(ref, 0, NULL);
247
	p_ptr = tipc_port_lock(ref);
248
	if (!p_ptr)
P
Per Liden 已提交
249 250
		return -EINVAL;

251 252
	tipc_ref_discard(ref);
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
253 254

	k_cancel_timer(&p_ptr->timer);
255
	if (p_ptr->connected) {
P
Per Liden 已提交
256
		buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
257
		tipc_nodesub_unsubscribe(&p_ptr->subscription);
P
Per Liden 已提交
258
	}
259
	kfree(p_ptr->user_port);
P
Per Liden 已提交
260

261
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
262 263
	list_del(&p_ptr->port_list);
	list_del(&p_ptr->wait_list);
264
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
265 266
	k_term_timer(&p_ptr->timer);
	kfree(p_ptr);
267
	tipc_net_route_msg(buf);
268
	return 0;
P
Per Liden 已提交
269 270
}

271
static int port_unreliable(struct tipc_port *p_ptr)
P
Per Liden 已提交
272
{
273
	return msg_src_droppable(&p_ptr->phdr);
P
Per Liden 已提交
274 275 276 277
}

int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
{
278
	struct tipc_port *p_ptr;
279

280
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
281 282 283
	if (!p_ptr)
		return -EINVAL;
	*isunreliable = port_unreliable(p_ptr);
J
Julia Lawall 已提交
284
	tipc_port_unlock(p_ptr);
285
	return 0;
P
Per Liden 已提交
286 287 288 289
}

int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
{
290
	struct tipc_port *p_ptr;
291

292
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
293 294
	if (!p_ptr)
		return -EINVAL;
295
	msg_set_src_droppable(&p_ptr->phdr, (isunreliable != 0));
296
	tipc_port_unlock(p_ptr);
297
	return 0;
P
Per Liden 已提交
298 299
}

300
static int port_unreturnable(struct tipc_port *p_ptr)
P
Per Liden 已提交
301
{
302
	return msg_dest_droppable(&p_ptr->phdr);
P
Per Liden 已提交
303 304 305 306
}

int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
{
307
	struct tipc_port *p_ptr;
308

309
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
310 311 312
	if (!p_ptr)
		return -EINVAL;
	*isunrejectable = port_unreturnable(p_ptr);
J
Julia Lawall 已提交
313
	tipc_port_unlock(p_ptr);
314
	return 0;
P
Per Liden 已提交
315 316 317 318
}

int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
{
319
	struct tipc_port *p_ptr;
320

321
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
322 323
	if (!p_ptr)
		return -EINVAL;
324
	msg_set_dest_droppable(&p_ptr->phdr, (isunrejectable != 0));
325
	tipc_port_unlock(p_ptr);
326
	return 0;
P
Per Liden 已提交
327 328
}

329 330 331
/*
 * port_build_proto_msg(): build a port level protocol
 * or a connection abortion message. Called with
P
Per Liden 已提交
332 333 334 335
 * tipc_port lock on.
 */
static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
					    u32 origport, u32 orignode,
336
					    u32 usr, u32 type, u32 err,
337
					    u32 ack)
P
Per Liden 已提交
338 339 340
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
341

342
	buf = tipc_buf_acquire(INT_H_SIZE);
P
Per Liden 已提交
343 344
	if (buf) {
		msg = buf_msg(buf);
345
		tipc_msg_init(msg, usr, type, INT_H_SIZE, destnode);
346
		msg_set_errcode(msg, err);
P
Per Liden 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360
		msg_set_destport(msg, destport);
		msg_set_origport(msg, origport);
		msg_set_orignode(msg, orignode);
		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;
361
	u32 imp;
P
Per Liden 已提交
362
	u32 data_sz = msg_data_sz(msg);
363
	u32 src_node;
364
	u32 rmsg_sz;
P
Per Liden 已提交
365 366

	/* discard rejected message if it shouldn't be returned to sender */
367 368 369 370 371 372

	if (WARN(!msg_isdata(msg),
		 "attempt to reject message with user=%u", msg_user(msg))) {
		dump_stack();
		goto exit;
	}
373 374
	if (msg_errcode(msg) || msg_dest_droppable(msg))
		goto exit;
P
Per Liden 已提交
375

376 377 378 379 380 381 382 383 384
	/*
	 * construct returned message by copying rejected message header and
	 * data (or subset), then updating header fields that need adjusting
	 */

	hdr_sz = msg_hdr_sz(msg);
	rmsg_sz = hdr_sz + min_t(u32, data_sz, MAX_REJECT_SIZE);

	rbuf = tipc_buf_acquire(rmsg_sz);
385 386 387
	if (rbuf == NULL)
		goto exit;

P
Per Liden 已提交
388
	rmsg = buf_msg(rbuf);
389 390 391 392 393 394
	skb_copy_to_linear_data(rbuf, msg, rmsg_sz);

	if (msg_connected(rmsg)) {
		imp = msg_importance(rmsg);
		if (imp < TIPC_CRITICAL_IMPORTANCE)
			msg_set_importance(rmsg, ++imp);
395
	}
396 397 398 399 400 401 402
	msg_set_non_seq(rmsg, 0);
	msg_set_size(rmsg, rmsg_sz);
	msg_set_errcode(rmsg, err);
	msg_set_prevnode(rmsg, tipc_own_addr);
	msg_swap_words(rmsg, 4, 5);
	if (!msg_short(rmsg))
		msg_swap_words(rmsg, 6, 7);
P
Per Liden 已提交
403 404 405

	/* send self-abort message when rejecting on a connected port */
	if (msg_connected(msg)) {
406
		struct sk_buff *abuf = NULL;
407
		struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
408 409

		if (p_ptr) {
410
			if (p_ptr->connected)
P
Per Liden 已提交
411
				abuf = port_build_self_abort_msg(p_ptr, err);
412
			tipc_port_unlock(p_ptr);
P
Per Liden 已提交
413
		}
414
		tipc_net_route_msg(abuf);
P
Per Liden 已提交
415 416
	}

417 418
	/* send returned message & dispose of rejected message */

419 420 421 422 423
	src_node = msg_prevnode(msg);
	if (src_node == tipc_own_addr)
		tipc_port_recv_msg(rbuf);
	else
		tipc_link_send(rbuf, src_node, msg_link_selector(rmsg));
424 425
exit:
	buf_discard(buf);
P
Per Liden 已提交
426 427 428
	return data_sz;
}

429
int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
430
			      struct iovec const *msg_sect, u32 num_sect,
431
			      unsigned int total_len, int err)
P
Per Liden 已提交
432 433 434 435
{
	struct sk_buff *buf;
	int res;

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

	return tipc_reject_msg(buf, err);
}

static void port_timeout(unsigned long ref)
{
446
	struct tipc_port *p_ptr = tipc_port_lock(ref);
447
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
448

449 450 451
	if (!p_ptr)
		return;

452
	if (!p_ptr->connected) {
453
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
454
		return;
455
	}
P
Per Liden 已提交
456 457 458 459 460 461 462

	/* 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),
463
					   p_ptr->ref,
P
Per Liden 已提交
464 465 466
					   tipc_own_addr,
					   CONN_MANAGER,
					   CONN_PROBE,
467
					   TIPC_OK,
P
Per Liden 已提交
468 469 470 471
					   0);
		p_ptr->probing_state = PROBING;
		k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
	}
472 473
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
474 475 476 477 478
}


static void port_handle_node_down(unsigned long ref)
{
479
	struct tipc_port *p_ptr = tipc_port_lock(ref);
480
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
481 482 483 484

	if (!p_ptr)
		return;
	buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
485 486
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
487 488 489
}


490
static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
P
Per Liden 已提交
491
{
492
	u32 imp = msg_importance(&p_ptr->phdr);
P
Per Liden 已提交
493

494
	if (!p_ptr->connected)
495
		return NULL;
P
Per Liden 已提交
496 497
	if (imp < TIPC_CRITICAL_IMPORTANCE)
		imp++;
498
	return port_build_proto_msg(p_ptr->ref,
P
Per Liden 已提交
499 500 501 502 503
				    tipc_own_addr,
				    port_peerport(p_ptr),
				    port_peernode(p_ptr),
				    imp,
				    TIPC_CONN_MSG,
504
				    err,
P
Per Liden 已提交
505 506 507 508
				    0);
}


509
static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
P
Per Liden 已提交
510
{
511
	u32 imp = msg_importance(&p_ptr->phdr);
P
Per Liden 已提交
512

513
	if (!p_ptr->connected)
514
		return NULL;
P
Per Liden 已提交
515 516 517 518
	if (imp < TIPC_CRITICAL_IMPORTANCE)
		imp++;
	return port_build_proto_msg(port_peerport(p_ptr),
				    port_peernode(p_ptr),
519
				    p_ptr->ref,
P
Per Liden 已提交
520 521 522
				    tipc_own_addr,
				    imp,
				    TIPC_CONN_MSG,
523
				    err,
P
Per Liden 已提交
524 525 526
				    0);
}

527
void tipc_port_recv_proto_msg(struct sk_buff *buf)
P
Per Liden 已提交
528 529
{
	struct tipc_msg *msg = buf_msg(buf);
530
	struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
531
	u32 err = TIPC_OK;
532 533
	struct sk_buff *r_buf = NULL;
	struct sk_buff *abort_buf = NULL;
P
Per Liden 已提交
534 535 536

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

	/* All is fine */
	if (msg_type(msg) == CONN_PROBE) {
571 572 573 574
		r_buf = port_build_proto_msg(msg_origport(msg),
					     msg_orignode(msg),
					     msg_destport(msg),
					     tipc_own_addr,
P
Per Liden 已提交
575 576 577 578 579 580 581 582
					     CONN_MANAGER,
					     CONN_PROBE_REPLY,
					     TIPC_OK,
					     0);
	}
	p_ptr->probing_state = CONFIRMED;
exit:
	if (p_ptr)
583 584 585
		tipc_port_unlock(p_ptr);
	tipc_net_route_msg(r_buf);
	tipc_net_route_msg(abort_buf);
P
Per Liden 已提交
586 587 588
	buf_discard(buf);
}

589
static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id)
P
Per Liden 已提交
590
{
591
	struct publication *publ;
P
Per Liden 已提交
592 593

	if (full_id)
594
		tipc_printf(buf, "<%u.%u.%u:%u>:",
P
Per Liden 已提交
595
			    tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
596
			    tipc_node(tipc_own_addr), p_ptr->ref);
P
Per Liden 已提交
597
	else
598
		tipc_printf(buf, "%-10u:", p_ptr->ref);
P
Per Liden 已提交
599

600
	if (p_ptr->connected) {
601 602 603 604 605 606
		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);
607
		if (p_ptr->conn_type != 0)
608
			tipc_printf(buf, " via {%u,%u}",
609 610 611
				    p_ptr->conn_type,
				    p_ptr->conn_instance);
	} else if (p_ptr->published) {
612 613
		tipc_printf(buf, " bound to");
		list_for_each_entry(publ, &p_ptr->publications, pport_list) {
P
Per Liden 已提交
614 615 616 617
			if (publ->lower == publ->upper)
				tipc_printf(buf, " {%u,%u}", publ->type,
					    publ->lower);
			else
618
				tipc_printf(buf, " {%u,%u,%u}", publ->type,
P
Per Liden 已提交
619
					    publ->lower, publ->upper);
620 621 622
		}
	}
	tipc_printf(buf, "\n");
P
Per Liden 已提交
623 624 625 626
}

#define MAX_PORT_QUERY 32768

627
struct sk_buff *tipc_port_get_ports(void)
P
Per Liden 已提交
628 629 630 631
{
	struct sk_buff *buf;
	struct tlv_desc *rep_tlv;
	struct print_buf pb;
632
	struct tipc_port *p_ptr;
P
Per Liden 已提交
633 634
	int str_len;

635
	buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
P
Per Liden 已提交
636 637 638 639
	if (!buf)
		return NULL;
	rep_tlv = (struct tlv_desc *)buf->data;

640 641
	tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
642
	list_for_each_entry(p_ptr, &ports, port_list) {
643
		spin_lock_bh(p_ptr->lock);
P
Per Liden 已提交
644
		port_print(p_ptr, &pb, 0);
645
		spin_unlock_bh(p_ptr->lock);
P
Per Liden 已提交
646
	}
647 648
	spin_unlock_bh(&tipc_port_list_lock);
	str_len = tipc_printbuf_validate(&pb);
P
Per Liden 已提交
649 650 651 652 653 654 655

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

	return buf;
}

656
void tipc_port_reinit(void)
P
Per Liden 已提交
657
{
658
	struct tipc_port *p_ptr;
P
Per Liden 已提交
659 660
	struct tipc_msg *msg;

661
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
662
	list_for_each_entry(p_ptr, &ports, port_list) {
663
		msg = &p_ptr->phdr;
P
Per Liden 已提交
664 665
		if (msg_orignode(msg) == tipc_own_addr)
			break;
666
		msg_set_prevnode(msg, tipc_own_addr);
P
Per Liden 已提交
667 668
		msg_set_orignode(msg, tipc_own_addr);
	}
669
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683
}


/*
 *  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;
684
	msg_queue_head = NULL;
P
Per Liden 已提交
685 686 687
	spin_unlock_bh(&queue_lock);

	while (buf) {
688
		struct tipc_port *p_ptr;
P
Per Liden 已提交
689 690 691 692 693 694
		struct user_port *up_ptr;
		struct tipc_portid orig;
		struct tipc_name_seq dseq;
		void *usr_handle;
		int connected;
		int published;
695
		u32 message_type;
P
Per Liden 已提交
696 697 698 699

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

701 702 703 704
		message_type = msg_type(msg);
		if (message_type > TIPC_DIRECT_MSG)
			goto reject;	/* Unsupported message type */

705
		p_ptr = tipc_port_lock(dref);
706 707 708
		if (!p_ptr)
			goto reject;	/* Port deleted while msg in queue */

P
Per Liden 已提交
709 710 711 712
		orig.ref = msg_origport(msg);
		orig.node = msg_orignode(msg);
		up_ptr = p_ptr->user_port;
		usr_handle = up_ptr->usr_handle;
713 714
		connected = p_ptr->connected;
		published = p_ptr->published;
P
Per Liden 已提交
715 716 717 718

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

719
		switch (message_type) {
720

P
Per Liden 已提交
721 722 723 724
		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);
725
				u32 dsz;
P
Per Liden 已提交
726

J
Julia Lawall 已提交
727
				tipc_port_unlock(p_ptr);
728 729
				if (unlikely(!cb))
					goto reject;
P
Per Liden 已提交
730
				if (unlikely(!connected)) {
731
					if (tipc_connect2port(dref, &orig))
P
Per Liden 已提交
732
						goto reject;
733 734
				} else if ((msg_origport(msg) != peer_port) ||
					   (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
735
					goto reject;
736 737 738 739
				dsz = msg_data_sz(msg);
				if (unlikely(dsz &&
					     (++p_ptr->conn_unacked >=
					      TIPC_FLOW_CONTROL_WIN)))
740
					tipc_acknowledge(dref,
741
							 p_ptr->conn_unacked);
P
Per Liden 已提交
742
				skb_pull(buf, msg_hdr_sz(msg));
743
				cb(usr_handle, dref, &buf, msg_data(msg), dsz);
P
Per Liden 已提交
744 745 746 747 748
				break;
			}
		case TIPC_DIRECT_MSG:{
				tipc_msg_event cb = up_ptr->msg_cb;

J
Julia Lawall 已提交
749
				tipc_port_unlock(p_ptr);
750
				if (unlikely(!cb || connected))
P
Per Liden 已提交
751 752
					goto reject;
				skb_pull(buf, msg_hdr_sz(msg));
753
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
754 755 756 757
				   msg_data_sz(msg), msg_importance(msg),
				   &orig);
				break;
			}
758
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
759 760 761
		case TIPC_NAMED_MSG:{
				tipc_named_msg_event cb = up_ptr->named_msg_cb;

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

P
Per Liden 已提交
783
		case TIPC_CONN_MSG:{
784
				tipc_conn_shutdown_event cb =
P
Per Liden 已提交
785 786 787 788
					up_ptr->conn_err_cb;
				u32 peer_port = port_peerport(p_ptr);
				u32 peer_node = port_peernode(p_ptr);

J
Julia Lawall 已提交
789
				tipc_port_unlock(p_ptr);
790
				if (!cb || !connected)
P
Per Liden 已提交
791
					break;
792 793
				if ((msg_origport(msg) != peer_port) ||
				    (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
794 795 796 797 798 799 800 801 802 803
					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 已提交
804
				tipc_port_unlock(p_ptr);
805
				if (!cb || connected)
P
Per Liden 已提交
806 807 808 809 810 811
					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;
			}
812
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
813
		case TIPC_NAMED_MSG:{
814
				tipc_named_msg_err_event cb =
P
Per Liden 已提交
815 816
					up_ptr->named_err_cb;

J
Julia Lawall 已提交
817
				tipc_port_unlock(p_ptr);
818
				if (!cb || connected)
P
Per Liden 已提交
819 820 821
					break;
				dseq.type =  msg_nametype(msg);
				dseq.lower = msg_nameinst(msg);
822 823
				dseq.upper = (message_type == TIPC_NAMED_MSG)
					? dseq.lower : msg_nameupper(msg);
P
Per Liden 已提交
824
				skb_pull(buf, msg_hdr_sz(msg));
825
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
				   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;
854
		tipc_k_signal((Handler)port_dispatcher_sigh, 0);
P
Per Liden 已提交
855 856
	}
	spin_unlock_bh(&queue_lock);
857
	return 0;
P
Per Liden 已提交
858 859
}

860
/*
P
Per Liden 已提交
861
 * Wake up port after congestion: Called with port locked,
862
 *
P
Per Liden 已提交
863 864 865 866
 */

static void port_wakeup_sh(unsigned long ref)
{
867
	struct tipc_port *p_ptr;
P
Per Liden 已提交
868
	struct user_port *up_ptr;
869 870
	tipc_continue_event cb = NULL;
	void *uh = NULL;
P
Per Liden 已提交
871

872
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
873 874 875 876 877 878
	if (p_ptr) {
		up_ptr = p_ptr->user_port;
		if (up_ptr) {
			cb = up_ptr->continue_event_cb;
			uh = up_ptr->usr_handle;
		}
879
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
880 881 882 883 884 885 886 887
	}
	if (cb)
		cb(uh, ref);
}


static void port_wakeup(struct tipc_port *p_ptr)
{
888
	tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
P
Per Liden 已提交
889 890 891 892
}

void tipc_acknowledge(u32 ref, u32 ack)
{
893
	struct tipc_port *p_ptr;
894
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
895

896
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
897 898
	if (!p_ptr)
		return;
899 900
	if (p_ptr->connected) {
		p_ptr->conn_unacked -= ack;
P
Per Liden 已提交
901 902 903 904 905 906
		buf = port_build_proto_msg(port_peerport(p_ptr),
					   port_peernode(p_ptr),
					   ref,
					   tipc_own_addr,
					   CONN_MANAGER,
					   CONN_ACK,
907
					   TIPC_OK,
P
Per Liden 已提交
908 909
					   ack);
	}
910 911
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
912 913 914
}

/*
915
 * tipc_createport(): user level call.
P
Per Liden 已提交
916 917
 */

918
int tipc_createport(void *usr_handle,
919 920 921 922 923 924 925
		    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 已提交
926 927 928 929
		    tipc_continue_event continue_event_cb,/* May be zero */
		    u32 *portref)
{
	struct user_port *up_ptr;
930
	struct tipc_port *p_ptr;
P
Per Liden 已提交
931

932
	up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
933
	if (!up_ptr) {
934
		warn("Port creation failed, no memory\n");
P
Per Liden 已提交
935 936
		return -ENOMEM;
	}
937
	p_ptr = (struct tipc_port *)tipc_createport_raw(NULL, port_dispatcher,
938 939
						   port_wakeup, importance);
	if (!p_ptr) {
P
Per Liden 已提交
940 941 942 943 944 945
		kfree(up_ptr);
		return -ENOMEM;
	}

	p_ptr->user_port = up_ptr;
	up_ptr->usr_handle = usr_handle;
946
	up_ptr->ref = p_ptr->ref;
P
Per Liden 已提交
947 948 949 950 951 952 953
	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;
954
	*portref = p_ptr->ref;
955
	tipc_port_unlock(p_ptr);
956
	return 0;
P
Per Liden 已提交
957 958 959 960
}

int tipc_portimportance(u32 ref, unsigned int *importance)
{
961
	struct tipc_port *p_ptr;
962

963
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
964 965
	if (!p_ptr)
		return -EINVAL;
966
	*importance = (unsigned int)msg_importance(&p_ptr->phdr);
J
Julia Lawall 已提交
967
	tipc_port_unlock(p_ptr);
968
	return 0;
P
Per Liden 已提交
969 970 971 972
}

int tipc_set_portimportance(u32 ref, unsigned int imp)
{
973
	struct tipc_port *p_ptr;
P
Per Liden 已提交
974 975 976 977

	if (imp > TIPC_CRITICAL_IMPORTANCE)
		return -EINVAL;

978
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
979 980
	if (!p_ptr)
		return -EINVAL;
981
	msg_set_importance(&p_ptr->phdr, (u32)imp);
J
Julia Lawall 已提交
982
	tipc_port_unlock(p_ptr);
983
	return 0;
P
Per Liden 已提交
984 985 986 987 988
}


int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
{
989
	struct tipc_port *p_ptr;
P
Per Liden 已提交
990 991 992 993
	struct publication *publ;
	u32 key;
	int res = -EINVAL;

994
	p_ptr = tipc_port_lock(ref);
995 996 997
	if (!p_ptr)
		return -EINVAL;

998
	if (p_ptr->connected)
P
Per Liden 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008
		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;
	}
1009
	publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
1010
				    scope, p_ptr->ref, key);
P
Per Liden 已提交
1011 1012 1013
	if (publ) {
		list_add(&publ->pport_list, &p_ptr->publications);
		p_ptr->pub_count++;
1014
		p_ptr->published = 1;
1015
		res = 0;
P
Per Liden 已提交
1016 1017
	}
exit:
1018
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1019 1020 1021 1022 1023
	return res;
}

int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
{
1024
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1025 1026 1027
	struct publication *publ;
	struct publication *tpubl;
	int res = -EINVAL;
1028

1029
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1030 1031 1032
	if (!p_ptr)
		return -EINVAL;
	if (!seq) {
1033
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1034
					 &p_ptr->publications, pport_list) {
1035
			tipc_nametbl_withdraw(publ->type, publ->lower,
1036
					      publ->ref, publ->key);
P
Per Liden 已提交
1037
		}
1038
		res = 0;
P
Per Liden 已提交
1039
	} else {
1040
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1041 1042 1043 1044 1045 1046 1047 1048 1049
					 &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;
1050
			tipc_nametbl_withdraw(publ->type, publ->lower,
1051
					      publ->ref, publ->key);
1052
			res = 0;
P
Per Liden 已提交
1053 1054 1055 1056
			break;
		}
	}
	if (list_empty(&p_ptr->publications))
1057
		p_ptr->published = 0;
1058
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1059 1060 1061 1062 1063
	return res;
}

int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
{
1064
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1065 1066 1067
	struct tipc_msg *msg;
	int res = -EINVAL;

1068
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1069 1070
	if (!p_ptr)
		return -EINVAL;
1071
	if (p_ptr->published || p_ptr->connected)
P
Per Liden 已提交
1072 1073 1074 1075
		goto exit;
	if (!peer->ref)
		goto exit;

1076
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1077 1078 1079
	msg_set_destnode(msg, peer->node);
	msg_set_destport(msg, peer->ref);
	msg_set_orignode(msg, tipc_own_addr);
1080
	msg_set_origport(msg, p_ptr->ref);
P
Per Liden 已提交
1081
	msg_set_type(msg, TIPC_CONN_MSG);
1082
	msg_set_lookup_scope(msg, 0);
1083
	msg_set_hdr_sz(msg, SHORT_H_SIZE);
P
Per Liden 已提交
1084 1085 1086

	p_ptr->probing_interval = PROBING_INTERVAL;
	p_ptr->probing_state = CONFIRMED;
1087
	p_ptr->connected = 1;
P
Per Liden 已提交
1088 1089
	k_start_timer(&p_ptr->timer, p_ptr->probing_interval);

1090
	tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
1091
			  (void *)(unsigned long)ref,
P
Per Liden 已提交
1092
			  (net_ev_handler)port_handle_node_down);
1093
	res = 0;
P
Per Liden 已提交
1094
exit:
1095
	tipc_port_unlock(p_ptr);
1096
	p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
P
Per Liden 已提交
1097 1098 1099
	return res;
}

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
/**
 * 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(
1114
			&((struct tipc_port *)tp_ptr)->subscription);
1115
		res = 0;
1116 1117 1118 1119 1120 1121
	} else {
		res = -ENOTCONN;
	}
	return res;
}

P
Per Liden 已提交
1122 1123 1124 1125 1126 1127 1128
/*
 * tipc_disconnect(): Disconnect port form peer.
 *                    This is a node local operation.
 */

int tipc_disconnect(u32 ref)
{
1129
	struct tipc_port *p_ptr;
1130
	int res;
P
Per Liden 已提交
1131

1132
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1133 1134
	if (!p_ptr)
		return -EINVAL;
1135
	res = tipc_disconnect_port((struct tipc_port *)p_ptr);
1136
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1137 1138 1139 1140 1141 1142 1143 1144
	return res;
}

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

1148
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1149 1150 1151
	if (!p_ptr)
		return -EINVAL;

1152 1153
	if (p_ptr->connected) {
		u32 imp = msg_importance(&p_ptr->phdr);
P
Per Liden 已提交
1154 1155 1156 1157 1158 1159 1160 1161
		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,
1162
					   TIPC_CONN_SHUTDOWN,
P
Per Liden 已提交
1163 1164
					   0);
	}
1165 1166
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
1167 1168 1169 1170
	return tipc_disconnect(ref);
}

/*
1171
 *  tipc_port_recv_sections(): Concatenate and deliver sectioned
P
Per Liden 已提交
1172 1173 1174
 *                        message for this node.
 */

1175
static int tipc_port_recv_sections(struct tipc_port *sender, unsigned int num_sect,
1176 1177
				   struct iovec const *msg_sect,
				   unsigned int total_len)
P
Per Liden 已提交
1178 1179 1180
{
	struct sk_buff *buf;
	int res;
1181

1182
	res = tipc_msg_build(&sender->phdr, msg_sect, num_sect, total_len,
P
Per Liden 已提交
1183 1184
			MAX_MSG_SIZE, !sender->user_port, &buf);
	if (likely(buf))
1185
		tipc_port_recv_msg(buf);
P
Per Liden 已提交
1186 1187 1188 1189 1190 1191 1192
	return res;
}

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

1193 1194
int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect,
	      unsigned int total_len)
P
Per Liden 已提交
1195
{
1196
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1197 1198 1199
	u32 destnode;
	int res;

1200
	p_ptr = tipc_port_deref(ref);
1201
	if (!p_ptr || !p_ptr->connected)
P
Per Liden 已提交
1202 1203
		return -EINVAL;

1204
	p_ptr->congested = 1;
1205
	if (!tipc_port_congested(p_ptr)) {
P
Per Liden 已提交
1206 1207
		destnode = port_peernode(p_ptr);
		if (likely(destnode != tipc_own_addr))
1208
			res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1209
							   total_len, destnode);
P
Per Liden 已提交
1210
		else
1211 1212
			res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
						      total_len);
P
Per Liden 已提交
1213 1214

		if (likely(res != -ELINKCONG)) {
1215
			p_ptr->congested = 0;
1216 1217
			if (res > 0)
				p_ptr->sent++;
P
Per Liden 已提交
1218 1219 1220 1221
			return res;
		}
	}
	if (port_unreliable(p_ptr)) {
1222
		p_ptr->congested = 0;
1223
		return total_len;
P
Per Liden 已提交
1224 1225 1226 1227 1228
	}
	return -ELINKCONG;
}

/**
1229
 * tipc_send2name - send message sections to port name
P
Per Liden 已提交
1230 1231
 */

1232
int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
1233 1234
		   unsigned int num_sect, struct iovec const *msg_sect,
		   unsigned int total_len)
P
Per Liden 已提交
1235
{
1236
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1237 1238
	struct tipc_msg *msg;
	u32 destnode = domain;
1239
	u32 destport;
P
Per Liden 已提交
1240 1241
	int res;

1242
	p_ptr = tipc_port_deref(ref);
1243
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
1244 1245
		return -EINVAL;

1246
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1247
	msg_set_type(msg, TIPC_NAMED_MSG);
1248 1249
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
1250
	msg_set_hdr_sz(msg, NAMED_H_SIZE);
P
Per Liden 已提交
1251 1252
	msg_set_nametype(msg, name->type);
	msg_set_nameinst(msg, name->instance);
1253
	msg_set_lookup_scope(msg, tipc_addr_scope(domain));
1254
	destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
P
Per Liden 已提交
1255 1256 1257
	msg_set_destnode(msg, destnode);
	msg_set_destport(msg, destport);

1258
	if (likely(destport)) {
P
Per Liden 已提交
1259
		if (likely(destnode == tipc_own_addr))
1260
			res = tipc_port_recv_sections(p_ptr, num_sect,
1261
						      msg_sect, total_len);
1262 1263
		else
			res = tipc_link_send_sections_fast(p_ptr, msg_sect,
1264 1265
							   num_sect, total_len,
							   destnode);
1266 1267 1268
		if (likely(res != -ELINKCONG)) {
			if (res > 0)
				p_ptr->sent++;
P
Per Liden 已提交
1269
			return res;
1270
		}
P
Per Liden 已提交
1271
		if (port_unreliable(p_ptr)) {
1272
			return total_len;
P
Per Liden 已提交
1273 1274 1275
		}
		return -ELINKCONG;
	}
1276
	return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
1277
					 total_len, TIPC_ERR_NO_NAME);
P
Per Liden 已提交
1278 1279 1280
}

/**
1281
 * tipc_send2port - send message sections to port identity
P
Per Liden 已提交
1282 1283
 */

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

1292
	p_ptr = tipc_port_deref(ref);
1293
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
1294 1295
		return -EINVAL;

1296
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1297
	msg_set_type(msg, TIPC_DIRECT_MSG);
1298
	msg_set_lookup_scope(msg, 0);
1299 1300
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1301 1302
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
1303
	msg_set_hdr_sz(msg, BASIC_H_SIZE);
1304

P
Per Liden 已提交
1305
	if (dest->node == tipc_own_addr)
1306 1307
		res =  tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
					       total_len);
1308 1309
	else
		res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1310
						   total_len, dest->node);
1311 1312 1313
	if (likely(res != -ELINKCONG)) {
		if (res > 0)
			p_ptr->sent++;
P
Per Liden 已提交
1314
		return res;
1315
	}
P
Per Liden 已提交
1316
	if (port_unreliable(p_ptr)) {
1317
		return total_len;
P
Per Liden 已提交
1318 1319 1320 1321
	}
	return -ELINKCONG;
}

1322
/**
1323
 * tipc_send_buf2port - send message buffer to port identity
P
Per Liden 已提交
1324 1325
 */

1326 1327
int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
	       struct sk_buff *buf, unsigned int dsz)
P
Per Liden 已提交
1328
{
1329
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1330 1331 1332
	struct tipc_msg *msg;
	int res;

1333 1334
	p_ptr = (struct tipc_port *)tipc_ref_deref(ref);
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
1335 1336
		return -EINVAL;

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

1348 1349
	skb_push(buf, BASIC_H_SIZE);
	skb_copy_to_linear_data(buf, msg, BASIC_H_SIZE);
1350

P
Per Liden 已提交
1351
	if (dest->node == tipc_own_addr)
1352 1353 1354 1355 1356 1357
		res = tipc_port_recv_msg(buf);
	else
		res = tipc_send_buf_fast(buf, dest->node);
	if (likely(res != -ELINKCONG)) {
		if (res > 0)
			p_ptr->sent++;
P
Per Liden 已提交
1358
		return res;
1359
	}
P
Per Liden 已提交
1360 1361 1362 1363 1364
	if (port_unreliable(p_ptr))
		return dsz;
	return -ELINKCONG;
}