port.c 32.2 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,
P
Per Liden 已提交
77 78 79 80 81 82
		   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, };
83
	struct tipc_port *oport = tipc_port_deref(ref);
P
Per Liden 已提交
84 85 86 87 88 89 90 91
	int ext_targets;
	int res;

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

	/* Create multicast message */

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

	/* Figure out where to send multicast message */

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

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

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

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

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

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

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

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

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

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

220 221 222 223
	p_ptr->usr_handle = usr_handle;
	p_ptr->max_pkt = MAX_PKT_DEFAULT;
	p_ptr->ref = ref;
	msg = &p_ptr->phdr;
224
	tipc_msg_init(msg, importance, TIPC_NAMED_MSG, LONG_H_SIZE, 0);
P
Per Liden 已提交
225 226 227 228 229
	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;
230
	p_ptr->user_port = NULL;
P
Per Liden 已提交
231
	k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
232
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
233 234 235
	INIT_LIST_HEAD(&p_ptr->publications);
	INIT_LIST_HEAD(&p_ptr->port_list);
	list_add_tail(&p_ptr->port_list, &ports);
236
	spin_unlock_bh(&tipc_port_list_lock);
237
	return p_ptr;
P
Per Liden 已提交
238 239 240 241
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

341
	buf = tipc_buf_acquire(LONG_H_SIZE);
P
Per Liden 已提交
342 343
	if (buf) {
		msg = buf_msg(buf);
344
		tipc_msg_init(msg, usr, type, LONG_H_SIZE, destnode);
345
		msg_set_errcode(msg, err);
P
Per Liden 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
		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;
	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;
379
	rbuf = tipc_buf_acquire(data_sz + hdr_sz);
P
Per Liden 已提交
380 381 382 383 384
	if (rbuf == NULL) {
		buf_discard(buf);
		return data_sz;
	}
	rmsg = buf_msg(rbuf);
385
	tipc_msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
386
	msg_set_errcode(rmsg, err);
P
Per Liden 已提交
387 388
	msg_set_destport(rmsg, msg_origport(msg));
	msg_set_origport(rmsg, msg_destport(msg));
389
	if (msg_short(msg)) {
P
Per Liden 已提交
390
		msg_set_orignode(rmsg, tipc_own_addr);
391 392
		/* leave name type & instance as zeroes */
	} else {
P
Per Liden 已提交
393
		msg_set_orignode(rmsg, msg_destnode(msg));
394 395 396
		msg_set_nametype(rmsg, msg_nametype(msg));
		msg_set_nameinst(rmsg, msg_nameinst(msg));
	}
397
	msg_set_size(rmsg, data_sz + hdr_sz);
398
	skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
P
Per Liden 已提交
399 400 401

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

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

	/* send rejected message */
	buf_discard(buf);
415
	tipc_net_route_msg(rbuf);
P
Per Liden 已提交
416 417 418
	return data_sz;
}

419
int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
420 421
			      struct iovec const *msg_sect, u32 num_sect,
			      int err)
P
Per Liden 已提交
422 423 424 425
{
	struct sk_buff *buf;
	int res;

426
	res = tipc_msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
P
Per Liden 已提交
427 428 429 430 431 432 433 434 435
			!p_ptr->user_port, &buf);
	if (!buf)
		return res;

	return tipc_reject_msg(buf, err);
}

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

439 440 441
	if (!p_ptr)
		return;

442
	if (!p_ptr->connected) {
443
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
444
		return;
445
	}
P
Per Liden 已提交
446 447 448 449 450 451 452

	/* 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),
453
					   p_ptr->ref,
P
Per Liden 已提交
454 455 456
					   tipc_own_addr,
					   CONN_MANAGER,
					   CONN_PROBE,
457
					   TIPC_OK,
P
Per Liden 已提交
458 459 460 461
					   0);
		p_ptr->probing_state = PROBING;
		k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
	}
462 463
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
464 465 466 467 468
}


static void port_handle_node_down(unsigned long ref)
{
469
	struct tipc_port *p_ptr = tipc_port_lock(ref);
470
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
471 472 473 474

	if (!p_ptr)
		return;
	buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
475 476
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
477 478 479
}


480
static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
P
Per Liden 已提交
481
{
482
	u32 imp = msg_importance(&p_ptr->phdr);
P
Per Liden 已提交
483

484
	if (!p_ptr->connected)
485
		return NULL;
P
Per Liden 已提交
486 487
	if (imp < TIPC_CRITICAL_IMPORTANCE)
		imp++;
488
	return port_build_proto_msg(p_ptr->ref,
P
Per Liden 已提交
489 490 491 492 493
				    tipc_own_addr,
				    port_peerport(p_ptr),
				    port_peernode(p_ptr),
				    imp,
				    TIPC_CONN_MSG,
494
				    err,
P
Per Liden 已提交
495 496 497 498
				    0);
}


499
static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
P
Per Liden 已提交
500
{
501
	u32 imp = msg_importance(&p_ptr->phdr);
P
Per Liden 已提交
502

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

517
void tipc_port_recv_proto_msg(struct sk_buff *buf)
P
Per Liden 已提交
518 519
{
	struct tipc_msg *msg = buf_msg(buf);
520
	struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
521
	u32 err = TIPC_OK;
522 523
	struct sk_buff *r_buf = NULL;
	struct sk_buff *abort_buf = NULL;
P
Per Liden 已提交
524 525 526

	if (!p_ptr) {
		err = TIPC_ERR_NO_PORT;
527
	} else if (p_ptr->connected) {
528 529
		if ((port_peernode(p_ptr) != msg_orignode(msg)) ||
		    (port_peerport(p_ptr) != msg_origport(msg))) {
P
Per Liden 已提交
530
			err = TIPC_ERR_NO_PORT;
531
		} else if (msg_type(msg) == CONN_ACK) {
532
			int wakeup = tipc_port_congested(p_ptr) &&
533
				     p_ptr->congested &&
P
Per Liden 已提交
534 535
				     p_ptr->wakeup;
			p_ptr->acked += msg_msgcnt(msg);
536
			if (tipc_port_congested(p_ptr))
P
Per Liden 已提交
537
				goto exit;
538
			p_ptr->congested = 0;
P
Per Liden 已提交
539 540
			if (!wakeup)
				goto exit;
541
			p_ptr->wakeup(p_ptr);
P
Per Liden 已提交
542 543
			goto exit;
		}
544
	} else if (p_ptr->published) {
P
Per Liden 已提交
545 546 547 548
		err = TIPC_ERR_NO_PORT;
	}
	if (err) {
		r_buf = port_build_proto_msg(msg_origport(msg),
549 550
					     msg_orignode(msg),
					     msg_destport(msg),
P
Per Liden 已提交
551
					     tipc_own_addr,
552
					     TIPC_HIGH_IMPORTANCE,
P
Per Liden 已提交
553 554 555 556 557 558 559 560
					     TIPC_CONN_MSG,
					     err,
					     0);
		goto exit;
	}

	/* All is fine */
	if (msg_type(msg) == CONN_PROBE) {
561 562 563 564
		r_buf = port_build_proto_msg(msg_origport(msg),
					     msg_orignode(msg),
					     msg_destport(msg),
					     tipc_own_addr,
P
Per Liden 已提交
565 566 567 568 569 570 571 572
					     CONN_MANAGER,
					     CONN_PROBE_REPLY,
					     TIPC_OK,
					     0);
	}
	p_ptr->probing_state = CONFIRMED;
exit:
	if (p_ptr)
573 574 575
		tipc_port_unlock(p_ptr);
	tipc_net_route_msg(r_buf);
	tipc_net_route_msg(abort_buf);
P
Per Liden 已提交
576 577 578
	buf_discard(buf);
}

579
static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id)
P
Per Liden 已提交
580
{
581
	struct publication *publ;
P
Per Liden 已提交
582 583

	if (full_id)
584
		tipc_printf(buf, "<%u.%u.%u:%u>:",
P
Per Liden 已提交
585
			    tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
586
			    tipc_node(tipc_own_addr), p_ptr->ref);
P
Per Liden 已提交
587
	else
588
		tipc_printf(buf, "%-10u:", p_ptr->ref);
P
Per Liden 已提交
589

590
	if (p_ptr->connected) {
591 592 593 594 595 596
		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);
597
		if (p_ptr->conn_type != 0)
598
			tipc_printf(buf, " via {%u,%u}",
599 600 601
				    p_ptr->conn_type,
				    p_ptr->conn_instance);
	} else if (p_ptr->published) {
602 603
		tipc_printf(buf, " bound to");
		list_for_each_entry(publ, &p_ptr->publications, pport_list) {
P
Per Liden 已提交
604 605 606 607
			if (publ->lower == publ->upper)
				tipc_printf(buf, " {%u,%u}", publ->type,
					    publ->lower);
			else
608
				tipc_printf(buf, " {%u,%u,%u}", publ->type,
P
Per Liden 已提交
609
					    publ->lower, publ->upper);
610 611 612
		}
	}
	tipc_printf(buf, "\n");
P
Per Liden 已提交
613 614 615 616
}

#define MAX_PORT_QUERY 32768

617
struct sk_buff *tipc_port_get_ports(void)
P
Per Liden 已提交
618 619 620 621
{
	struct sk_buff *buf;
	struct tlv_desc *rep_tlv;
	struct print_buf pb;
622
	struct tipc_port *p_ptr;
P
Per Liden 已提交
623 624
	int str_len;

625
	buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
P
Per Liden 已提交
626 627 628 629
	if (!buf)
		return NULL;
	rep_tlv = (struct tlv_desc *)buf->data;

630 631
	tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
632
	list_for_each_entry(p_ptr, &ports, port_list) {
633
		spin_lock_bh(p_ptr->lock);
P
Per Liden 已提交
634
		port_print(p_ptr, &pb, 0);
635
		spin_unlock_bh(p_ptr->lock);
P
Per Liden 已提交
636
	}
637 638
	spin_unlock_bh(&tipc_port_list_lock);
	str_len = tipc_printbuf_validate(&pb);
P
Per Liden 已提交
639 640 641 642 643 644 645

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

	return buf;
}

646
void tipc_port_reinit(void)
P
Per Liden 已提交
647
{
648
	struct tipc_port *p_ptr;
P
Per Liden 已提交
649 650
	struct tipc_msg *msg;

651
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
652
	list_for_each_entry(p_ptr, &ports, port_list) {
653
		msg = &p_ptr->phdr;
P
Per Liden 已提交
654 655
		if (msg_orignode(msg) == tipc_own_addr)
			break;
656
		msg_set_prevnode(msg, tipc_own_addr);
P
Per Liden 已提交
657 658
		msg_set_orignode(msg, tipc_own_addr);
	}
659
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673
}


/*
 *  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;
674
	msg_queue_head = NULL;
P
Per Liden 已提交
675 676 677
	spin_unlock_bh(&queue_lock);

	while (buf) {
678
		struct tipc_port *p_ptr;
P
Per Liden 已提交
679 680 681 682 683 684
		struct user_port *up_ptr;
		struct tipc_portid orig;
		struct tipc_name_seq dseq;
		void *usr_handle;
		int connected;
		int published;
685
		u32 message_type;
P
Per Liden 已提交
686 687 688 689

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

691 692 693 694
		message_type = msg_type(msg);
		if (message_type > TIPC_DIRECT_MSG)
			goto reject;	/* Unsupported message type */

695
		p_ptr = tipc_port_lock(dref);
696 697 698
		if (!p_ptr)
			goto reject;	/* Port deleted while msg in queue */

P
Per Liden 已提交
699 700 701 702
		orig.ref = msg_origport(msg);
		orig.node = msg_orignode(msg);
		up_ptr = p_ptr->user_port;
		usr_handle = up_ptr->usr_handle;
703 704
		connected = p_ptr->connected;
		published = p_ptr->published;
P
Per Liden 已提交
705 706 707 708

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

709
		switch (message_type) {
710

P
Per Liden 已提交
711 712 713 714
		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);
715
				u32 dsz;
P
Per Liden 已提交
716

J
Julia Lawall 已提交
717
				tipc_port_unlock(p_ptr);
718 719
				if (unlikely(!cb))
					goto reject;
P
Per Liden 已提交
720
				if (unlikely(!connected)) {
721
					if (tipc_connect2port(dref, &orig))
P
Per Liden 已提交
722
						goto reject;
723 724
				} else if ((msg_origport(msg) != peer_port) ||
					   (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
725
					goto reject;
726 727 728 729
				dsz = msg_data_sz(msg);
				if (unlikely(dsz &&
					     (++p_ptr->conn_unacked >=
					      TIPC_FLOW_CONTROL_WIN)))
730
					tipc_acknowledge(dref,
731
							 p_ptr->conn_unacked);
P
Per Liden 已提交
732
				skb_pull(buf, msg_hdr_sz(msg));
733
				cb(usr_handle, dref, &buf, msg_data(msg), dsz);
P
Per Liden 已提交
734 735 736 737 738
				break;
			}
		case TIPC_DIRECT_MSG:{
				tipc_msg_event cb = up_ptr->msg_cb;

J
Julia Lawall 已提交
739
				tipc_port_unlock(p_ptr);
740
				if (unlikely(!cb || connected))
P
Per Liden 已提交
741 742
					goto reject;
				skb_pull(buf, msg_hdr_sz(msg));
743
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
744 745 746 747
				   msg_data_sz(msg), msg_importance(msg),
				   &orig);
				break;
			}
748
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
749 750 751
		case TIPC_NAMED_MSG:{
				tipc_named_msg_event cb = up_ptr->named_msg_cb;

J
Julia Lawall 已提交
752
				tipc_port_unlock(p_ptr);
753
				if (unlikely(!cb || connected || !published))
P
Per Liden 已提交
754 755 756
					goto reject;
				dseq.type =  msg_nametype(msg);
				dseq.lower = msg_nameinst(msg);
757 758
				dseq.upper = (message_type == TIPC_NAMED_MSG)
					? dseq.lower : msg_nameupper(msg);
P
Per Liden 已提交
759
				skb_pull(buf, msg_hdr_sz(msg));
760
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
761 762 763 764 765 766 767 768 769 770
				   msg_data_sz(msg), msg_importance(msg),
				   &orig, &dseq);
				break;
			}
		}
		if (buf)
			buf_discard(buf);
		buf = next;
		continue;
err:
771
		switch (message_type) {
772

P
Per Liden 已提交
773
		case TIPC_CONN_MSG:{
774
				tipc_conn_shutdown_event cb =
P
Per Liden 已提交
775 776 777 778
					up_ptr->conn_err_cb;
				u32 peer_port = port_peerport(p_ptr);
				u32 peer_node = port_peernode(p_ptr);

J
Julia Lawall 已提交
779
				tipc_port_unlock(p_ptr);
780
				if (!cb || !connected)
P
Per Liden 已提交
781
					break;
782 783
				if ((msg_origport(msg) != peer_port) ||
				    (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
784 785 786 787 788 789 790 791 792 793
					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 已提交
794
				tipc_port_unlock(p_ptr);
795
				if (!cb || connected)
P
Per Liden 已提交
796 797 798 799 800 801
					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;
			}
802
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
803
		case TIPC_NAMED_MSG:{
804
				tipc_named_msg_err_event cb =
P
Per Liden 已提交
805 806
					up_ptr->named_err_cb;

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

850
/*
P
Per Liden 已提交
851
 * Wake up port after congestion: Called with port locked,
852
 *
P
Per Liden 已提交
853 854 855 856
 */

static void port_wakeup_sh(unsigned long ref)
{
857
	struct tipc_port *p_ptr;
P
Per Liden 已提交
858
	struct user_port *up_ptr;
859 860
	tipc_continue_event cb = NULL;
	void *uh = NULL;
P
Per Liden 已提交
861

862
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
863 864 865 866 867 868
	if (p_ptr) {
		up_ptr = p_ptr->user_port;
		if (up_ptr) {
			cb = up_ptr->continue_event_cb;
			uh = up_ptr->usr_handle;
		}
869
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
870 871 872 873 874 875 876 877
	}
	if (cb)
		cb(uh, ref);
}


static void port_wakeup(struct tipc_port *p_ptr)
{
878
	tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
P
Per Liden 已提交
879 880 881 882
}

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

886
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
887 888
	if (!p_ptr)
		return;
889 890
	if (p_ptr->connected) {
		p_ptr->conn_unacked -= ack;
P
Per Liden 已提交
891 892 893 894 895 896
		buf = port_build_proto_msg(port_peerport(p_ptr),
					   port_peernode(p_ptr),
					   ref,
					   tipc_own_addr,
					   CONN_MANAGER,
					   CONN_ACK,
897
					   TIPC_OK,
P
Per Liden 已提交
898 899
					   ack);
	}
900 901
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
902 903 904
}

/*
905
 * tipc_createport(): user level call.
P
Per Liden 已提交
906 907
 */

908
int tipc_createport(void *usr_handle,
909 910 911 912 913 914 915
		    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 已提交
916 917 918 919
		    tipc_continue_event continue_event_cb,/* May be zero */
		    u32 *portref)
{
	struct user_port *up_ptr;
920
	struct tipc_port *p_ptr;
P
Per Liden 已提交
921

922
	up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
923
	if (!up_ptr) {
924
		warn("Port creation failed, no memory\n");
P
Per Liden 已提交
925 926
		return -ENOMEM;
	}
927
	p_ptr = (struct tipc_port *)tipc_createport_raw(NULL, port_dispatcher,
928 929
						   port_wakeup, importance);
	if (!p_ptr) {
P
Per Liden 已提交
930 931 932 933 934 935
		kfree(up_ptr);
		return -ENOMEM;
	}

	p_ptr->user_port = up_ptr;
	up_ptr->usr_handle = usr_handle;
936
	up_ptr->ref = p_ptr->ref;
P
Per Liden 已提交
937 938 939 940 941 942 943
	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;
944
	*portref = p_ptr->ref;
945
	tipc_port_unlock(p_ptr);
946
	return 0;
P
Per Liden 已提交
947 948 949 950
}

int tipc_portimportance(u32 ref, unsigned int *importance)
{
951
	struct tipc_port *p_ptr;
952

953
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
954 955
	if (!p_ptr)
		return -EINVAL;
956
	*importance = (unsigned int)msg_importance(&p_ptr->phdr);
J
Julia Lawall 已提交
957
	tipc_port_unlock(p_ptr);
958
	return 0;
P
Per Liden 已提交
959 960 961 962
}

int tipc_set_portimportance(u32 ref, unsigned int imp)
{
963
	struct tipc_port *p_ptr;
P
Per Liden 已提交
964 965 966 967

	if (imp > TIPC_CRITICAL_IMPORTANCE)
		return -EINVAL;

968
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
969 970
	if (!p_ptr)
		return -EINVAL;
971
	msg_set_importance(&p_ptr->phdr, (u32)imp);
J
Julia Lawall 已提交
972
	tipc_port_unlock(p_ptr);
973
	return 0;
P
Per Liden 已提交
974 975 976 977 978
}


int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
{
979
	struct tipc_port *p_ptr;
P
Per Liden 已提交
980 981 982 983
	struct publication *publ;
	u32 key;
	int res = -EINVAL;

984
	p_ptr = tipc_port_lock(ref);
985 986 987
	if (!p_ptr)
		return -EINVAL;

988
	if (p_ptr->connected)
P
Per Liden 已提交
989 990 991 992 993 994 995 996 997 998
		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;
	}
999
	publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
1000
				    scope, p_ptr->ref, key);
P
Per Liden 已提交
1001 1002 1003
	if (publ) {
		list_add(&publ->pport_list, &p_ptr->publications);
		p_ptr->pub_count++;
1004
		p_ptr->published = 1;
1005
		res = 0;
P
Per Liden 已提交
1006 1007
	}
exit:
1008
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1009 1010 1011 1012 1013
	return res;
}

int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
{
1014
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1015 1016 1017
	struct publication *publ;
	struct publication *tpubl;
	int res = -EINVAL;
1018

1019
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1020 1021 1022
	if (!p_ptr)
		return -EINVAL;
	if (!seq) {
1023
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1024
					 &p_ptr->publications, pport_list) {
1025
			tipc_nametbl_withdraw(publ->type, publ->lower,
1026
					      publ->ref, publ->key);
P
Per Liden 已提交
1027
		}
1028
		res = 0;
P
Per Liden 已提交
1029
	} else {
1030
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1031 1032 1033 1034 1035 1036 1037 1038 1039
					 &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;
1040
			tipc_nametbl_withdraw(publ->type, publ->lower,
1041
					      publ->ref, publ->key);
1042
			res = 0;
P
Per Liden 已提交
1043 1044 1045 1046
			break;
		}
	}
	if (list_empty(&p_ptr->publications))
1047
		p_ptr->published = 0;
1048
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1049 1050 1051 1052 1053
	return res;
}

int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
{
1054
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1055 1056 1057
	struct tipc_msg *msg;
	int res = -EINVAL;

1058
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1059 1060
	if (!p_ptr)
		return -EINVAL;
1061
	if (p_ptr->published || p_ptr->connected)
P
Per Liden 已提交
1062 1063 1064 1065
		goto exit;
	if (!peer->ref)
		goto exit;

1066
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1067 1068 1069
	msg_set_destnode(msg, peer->node);
	msg_set_destport(msg, peer->ref);
	msg_set_orignode(msg, tipc_own_addr);
1070
	msg_set_origport(msg, p_ptr->ref);
P
Per Liden 已提交
1071
	msg_set_type(msg, TIPC_CONN_MSG);
1072
	msg_set_lookup_scope(msg, 0);
1073
	msg_set_hdr_sz(msg, SHORT_H_SIZE);
P
Per Liden 已提交
1074 1075 1076

	p_ptr->probing_interval = PROBING_INTERVAL;
	p_ptr->probing_state = CONFIRMED;
1077
	p_ptr->connected = 1;
P
Per Liden 已提交
1078 1079
	k_start_timer(&p_ptr->timer, p_ptr->probing_interval);

1080
	tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
1081
			  (void *)(unsigned long)ref,
P
Per Liden 已提交
1082
			  (net_ev_handler)port_handle_node_down);
1083
	res = 0;
P
Per Liden 已提交
1084
exit:
1085
	tipc_port_unlock(p_ptr);
1086
	p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
P
Per Liden 已提交
1087 1088 1089
	return res;
}

1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
/**
 * 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(
1104
			&((struct tipc_port *)tp_ptr)->subscription);
1105
		res = 0;
1106 1107 1108 1109 1110 1111
	} else {
		res = -ENOTCONN;
	}
	return res;
}

P
Per Liden 已提交
1112 1113 1114 1115 1116 1117 1118
/*
 * tipc_disconnect(): Disconnect port form peer.
 *                    This is a node local operation.
 */

int tipc_disconnect(u32 ref)
{
1119
	struct tipc_port *p_ptr;
1120
	int res;
P
Per Liden 已提交
1121

1122
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1123 1124
	if (!p_ptr)
		return -EINVAL;
1125
	res = tipc_disconnect_port((struct tipc_port *)p_ptr);
1126
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1127 1128 1129 1130 1131 1132 1133 1134
	return res;
}

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

1138
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1139 1140 1141
	if (!p_ptr)
		return -EINVAL;

1142 1143
	if (p_ptr->connected) {
		u32 imp = msg_importance(&p_ptr->phdr);
P
Per Liden 已提交
1144 1145 1146 1147 1148 1149 1150 1151
		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,
1152
					   TIPC_CONN_SHUTDOWN,
P
Per Liden 已提交
1153 1154
					   0);
	}
1155 1156
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
1157 1158 1159 1160
	return tipc_disconnect(ref);
}

/*
1161
 *  tipc_port_recv_sections(): Concatenate and deliver sectioned
P
Per Liden 已提交
1162 1163 1164
 *                        message for this node.
 */

1165
static int tipc_port_recv_sections(struct tipc_port *sender, unsigned int num_sect,
1166
				   struct iovec const *msg_sect)
P
Per Liden 已提交
1167 1168 1169
{
	struct sk_buff *buf;
	int res;
1170

1171
	res = tipc_msg_build(&sender->phdr, msg_sect, num_sect,
P
Per Liden 已提交
1172 1173
			MAX_MSG_SIZE, !sender->user_port, &buf);
	if (likely(buf))
1174
		tipc_port_recv_msg(buf);
P
Per Liden 已提交
1175 1176 1177 1178 1179 1180 1181 1182 1183
	return res;
}

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

int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect)
{
1184
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1185 1186 1187
	u32 destnode;
	int res;

1188
	p_ptr = tipc_port_deref(ref);
1189
	if (!p_ptr || !p_ptr->connected)
P
Per Liden 已提交
1190 1191
		return -EINVAL;

1192
	p_ptr->congested = 1;
1193
	if (!tipc_port_congested(p_ptr)) {
P
Per Liden 已提交
1194 1195
		destnode = port_peernode(p_ptr);
		if (likely(destnode != tipc_own_addr))
1196 1197
			res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
							   destnode);
P
Per Liden 已提交
1198
		else
1199
			res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
P
Per Liden 已提交
1200 1201

		if (likely(res != -ELINKCONG)) {
1202
			p_ptr->congested = 0;
1203 1204
			if (res > 0)
				p_ptr->sent++;
P
Per Liden 已提交
1205 1206 1207 1208
			return res;
		}
	}
	if (port_unreliable(p_ptr)) {
1209
		p_ptr->congested = 0;
P
Per Liden 已提交
1210
		/* Just calculate msg length and return */
1211
		return tipc_msg_calc_data_size(msg_sect, num_sect);
P
Per Liden 已提交
1212 1213 1214 1215 1216
	}
	return -ELINKCONG;
}

/**
1217
 * tipc_send2name - send message sections to port name
P
Per Liden 已提交
1218 1219
 */

1220 1221
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 已提交
1222
{
1223
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1224 1225
	struct tipc_msg *msg;
	u32 destnode = domain;
1226
	u32 destport;
P
Per Liden 已提交
1227 1228
	int res;

1229
	p_ptr = tipc_port_deref(ref);
1230
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
1231 1232
		return -EINVAL;

1233
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1234
	msg_set_type(msg, TIPC_NAMED_MSG);
1235 1236
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1237 1238 1239
	msg_set_hdr_sz(msg, LONG_H_SIZE);
	msg_set_nametype(msg, name->type);
	msg_set_nameinst(msg, name->instance);
1240
	msg_set_lookup_scope(msg, tipc_addr_scope(domain));
1241
	destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
P
Per Liden 已提交
1242 1243 1244
	msg_set_destnode(msg, destnode);
	msg_set_destport(msg, destport);

1245
	if (likely(destport)) {
P
Per Liden 已提交
1246
		if (likely(destnode == tipc_own_addr))
1247 1248 1249 1250 1251 1252 1253 1254
			res = tipc_port_recv_sections(p_ptr, num_sect,
						      msg_sect);
		else
			res = tipc_link_send_sections_fast(p_ptr, msg_sect,
							   num_sect, destnode);
		if (likely(res != -ELINKCONG)) {
			if (res > 0)
				p_ptr->sent++;
P
Per Liden 已提交
1255
			return res;
1256
		}
P
Per Liden 已提交
1257 1258
		if (port_unreliable(p_ptr)) {
			/* Just calculate msg length and return */
1259
			return tipc_msg_calc_data_size(msg_sect, num_sect);
P
Per Liden 已提交
1260 1261 1262
		}
		return -ELINKCONG;
	}
1263
	return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
1264
					 TIPC_ERR_NO_NAME);
P
Per Liden 已提交
1265 1266 1267
}

/**
1268
 * tipc_send2port - send message sections to port identity
P
Per Liden 已提交
1269 1270
 */

1271 1272
int tipc_send2port(u32 ref, struct tipc_portid const *dest,
	   unsigned int num_sect, struct iovec const *msg_sect)
P
Per Liden 已提交
1273
{
1274
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1275 1276 1277
	struct tipc_msg *msg;
	int res;

1278
	p_ptr = tipc_port_deref(ref);
1279
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
1280 1281
		return -EINVAL;

1282
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1283
	msg_set_type(msg, TIPC_DIRECT_MSG);
1284
	msg_set_lookup_scope(msg, 0);
1285 1286
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1287 1288 1289
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
	msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
1290

P
Per Liden 已提交
1291
	if (dest->node == tipc_own_addr)
1292 1293 1294 1295 1296 1297 1298
		res =  tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
	else
		res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
						   dest->node);
	if (likely(res != -ELINKCONG)) {
		if (res > 0)
			p_ptr->sent++;
P
Per Liden 已提交
1299
		return res;
1300
	}
P
Per Liden 已提交
1301 1302
	if (port_unreliable(p_ptr)) {
		/* Just calculate msg length and return */
1303
		return tipc_msg_calc_data_size(msg_sect, num_sect);
P
Per Liden 已提交
1304 1305 1306 1307
	}
	return -ELINKCONG;
}

1308
/**
1309
 * tipc_send_buf2port - send message buffer to port identity
P
Per Liden 已提交
1310 1311
 */

1312 1313
int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
	       struct sk_buff *buf, unsigned int dsz)
P
Per Liden 已提交
1314
{
1315
	struct tipc_port *p_ptr;
P
Per Liden 已提交
1316 1317 1318
	struct tipc_msg *msg;
	int res;

1319 1320
	p_ptr = (struct tipc_port *)tipc_ref_deref(ref);
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
1321 1322
		return -EINVAL;

1323
	msg = &p_ptr->phdr;
P
Per Liden 已提交
1324
	msg_set_type(msg, TIPC_DIRECT_MSG);
1325 1326
	msg_set_orignode(msg, tipc_own_addr);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
1327 1328 1329 1330 1331 1332 1333 1334
	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);
1335
	skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
1336

P
Per Liden 已提交
1337
	if (dest->node == tipc_own_addr)
1338 1339 1340 1341 1342 1343
		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 已提交
1344
		return res;
1345
	}
P
Per Liden 已提交
1346 1347 1348 1349 1350
	if (port_unreliable(p_ptr))
		return dsz;
	return -ELINKCONG;
}