port.c 40.4 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 49 50 51 52 53 54 55
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
#include "config.h"
#include "dbg.h"
#include "port.h"
#include "addr.h"
#include "link.h"
#include "node.h"
#include "name_table.h"
#include "user_reg.h"
#include "msg.h"
#include "bcast.h"

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

#define MAX_REJECT_SIZE 1024

56 57
static struct sk_buff *msg_queue_head = NULL;
static struct sk_buff *msg_queue_tail = NULL;
P
Per Liden 已提交
58

I
Ingo Molnar 已提交
59 60
DEFINE_SPINLOCK(tipc_port_list_lock);
static DEFINE_SPINLOCK(queue_lock);
P
Per Liden 已提交
61

62
static LIST_HEAD(ports);
P
Per Liden 已提交
63 64 65 66 67 68
static void port_handle_node_down(unsigned long ref);
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);
static void port_timeout(unsigned long ref);


S
Sam Ravnborg 已提交
69
static u32 port_peernode(struct port *p_ptr)
P
Per Liden 已提交
70 71 72 73
{
	return msg_destnode(&p_ptr->publ.phdr);
}

S
Sam Ravnborg 已提交
74
static u32 port_peerport(struct port *p_ptr)
P
Per Liden 已提交
75 76 77 78
{
	return msg_destport(&p_ptr->publ.phdr);
}

S
Sam Ravnborg 已提交
79
static u32 port_out_seqno(struct port *p_ptr)
P
Per Liden 已提交
80 81 82 83
{
	return msg_transp_seqno(&p_ptr->publ.phdr);
}

S
Sam Ravnborg 已提交
84
static void port_incr_out_seqno(struct port *p_ptr)
P
Per Liden 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
{
	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
 */

int tipc_multicast(u32 ref, struct tipc_name_seq const *seq, u32 domain,
		   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, };
104
	struct port *oport = tipc_port_deref(ref);
P
Per Liden 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
	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);
	res = msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
			!oport->user_port, &buf);
	if (unlikely(!buf))
		return res;

	/* Figure out where to send multicast message */

126 127
	ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
						TIPC_NODE_SCOPE, &dports);
128 129

	/* Send message to destinations (duplicate it only if necessary) */
P
Per Liden 已提交
130 131 132 133 134

	if (ext_targets) {
		if (dports.count != 0) {
			ibuf = skb_copy(buf, GFP_ATOMIC);
			if (ibuf == NULL) {
135
				tipc_port_list_free(&dports);
P
Per Liden 已提交
136 137 138 139
				buf_discard(buf);
				return -ENOMEM;
			}
		}
140
		res = tipc_bclink_send_msg(buf);
P
Per Liden 已提交
141 142 143 144 145 146 147 148 149
		if ((res < 0) && (dports.count != 0)) {
			buf_discard(ibuf);
		}
	} else {
		ibuf = buf;
	}

	if (res >= 0) {
		if (ibuf)
150
			tipc_port_recv_mcast(ibuf, &dports);
P
Per Liden 已提交
151
	} else {
152
		tipc_port_list_free(&dports);
P
Per Liden 已提交
153 154 155 156 157
	}
	return res;
}

/**
158
 * tipc_port_recv_mcast - deliver multicast message to all destination ports
159
 *
P
Per Liden 已提交
160 161 162
 * If there is no port list, perform a lookup to create one
 */

163
void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
P
Per Liden 已提交
164 165 166 167 168 169 170 171 172 173 174
{
	struct tipc_msg* msg;
	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) {
175
		tipc_nametbl_mc_translate(msg_nametype(msg),
P
Per Liden 已提交
176 177 178 179 180 181 182 183 184 185 186 187
				     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]);
188 189
			tipc_port_recv_msg(buf);
			tipc_port_list_free(dp);
P
Per Liden 已提交
190 191 192 193 194 195 196
			return;
		}
		for (; cnt < dp->count; cnt++) {
			int index = cnt % PLSIZE;
			struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);

			if (b == NULL) {
197
				warn("Unable to deliver multicast message(s)\n");
P
Per Liden 已提交
198 199 200 201 202 203 204
				msg_dbg(msg, "LOST:");
				goto exit;
			}
			if ((index == 0) && (cnt != 0)) {
				item = item->next;
			}
			msg_set_destport(buf_msg(b),item->ports[index]);
205
			tipc_port_recv_msg(b);
P
Per Liden 已提交
206 207 208 209
		}
	}
exit:
	buf_discard(buf);
210
	tipc_port_list_free(dp);
P
Per Liden 已提交
211 212 213
}

/**
214
 * tipc_createport_raw - create a generic TIPC port
215
 *
216
 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
P
Per Liden 已提交
217 218
 */

219
struct tipc_port *tipc_createport_raw(void *usr_handle,
P
Per Liden 已提交
220 221
			u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
			void (*wakeup)(struct tipc_port *),
222
			const u32 importance)
P
Per Liden 已提交
223 224 225 226 227
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	u32 ref;

228
	p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
229 230
	if (!p_ptr) {
		warn("Port creation failed, no memory\n");
231
		return NULL;
P
Per Liden 已提交
232
	}
233
	ref = tipc_ref_acquire(p_ptr, &p_ptr->publ.lock);
P
Per Liden 已提交
234
	if (!ref) {
235
		warn("Port creation failed, reference table exhausted\n");
P
Per Liden 已提交
236
		kfree(p_ptr);
237
		return NULL;
P
Per Liden 已提交
238 239
	}

240 241
	p_ptr->publ.usr_handle = usr_handle;
	p_ptr->publ.max_pkt = MAX_PKT_DEFAULT;
P
Per Liden 已提交
242 243
	p_ptr->publ.ref = ref;
	msg = &p_ptr->publ.phdr;
244
	msg_init(msg, importance, TIPC_NAMED_MSG, LONG_H_SIZE, 0);
P
Per Liden 已提交
245 246 247 248 249
	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);
250
	p_ptr->congested_link = NULL;
P
Per Liden 已提交
251 252
	p_ptr->dispatcher = dispatcher;
	p_ptr->wakeup = wakeup;
253
	p_ptr->user_port = NULL;
P
Per Liden 已提交
254
	k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
255
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
256 257 258
	INIT_LIST_HEAD(&p_ptr->publications);
	INIT_LIST_HEAD(&p_ptr->port_list);
	list_add_tail(&p_ptr->port_list, &ports);
259
	spin_unlock_bh(&tipc_port_list_lock);
260
	return &(p_ptr->publ);
P
Per Liden 已提交
261 262 263 264 265
}

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

268
	tipc_withdraw(ref, 0, NULL);
269
	p_ptr = tipc_port_lock(ref);
270
	if (!p_ptr)
P
Per Liden 已提交
271 272
		return -EINVAL;

273 274
	tipc_ref_discard(ref);
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
275 276 277 278

	k_cancel_timer(&p_ptr->timer);
	if (p_ptr->publ.connected) {
		buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
279
		tipc_nodesub_unsubscribe(&p_ptr->subscription);
P
Per Liden 已提交
280 281
	}
	if (p_ptr->user_port) {
282
		tipc_reg_remove_port(p_ptr->user_port);
P
Per Liden 已提交
283 284 285
		kfree(p_ptr->user_port);
	}

286
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
287 288
	list_del(&p_ptr->port_list);
	list_del(&p_ptr->wait_list);
289
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
290 291 292
	k_term_timer(&p_ptr->timer);
	kfree(p_ptr);
	dbg("Deleted port %u\n", ref);
293
	tipc_net_route_msg(buf);
P
Per Liden 已提交
294 295 296 297 298
	return TIPC_OK;
}

/**
 * tipc_get_port() - return port associated with 'ref'
299
 *
P
Per Liden 已提交
300 301 302 303 304
 * Note: Port is not locked.
 */

struct tipc_port *tipc_get_port(const u32 ref)
{
305
	return (struct tipc_port *)tipc_ref_deref(ref);
P
Per Liden 已提交
306 307 308 309 310 311 312 313 314 315 316
}

/**
 * tipc_get_handle - return user handle associated to port 'ref'
 */

void *tipc_get_handle(const u32 ref)
{
	struct port *p_ptr;
	void * handle;

317
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
318
	if (!p_ptr)
319
		return NULL;
P
Per Liden 已提交
320
	handle = p_ptr->publ.usr_handle;
321
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
322 323 324
	return handle;
}

S
Sam Ravnborg 已提交
325
static int port_unreliable(struct port *p_ptr)
P
Per Liden 已提交
326 327 328 329 330 331 332
{
	return msg_src_droppable(&p_ptr->publ.phdr);
}

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

334
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
335 336 337
	if (!p_ptr)
		return -EINVAL;
	*isunreliable = port_unreliable(p_ptr);
J
Julia Lawall 已提交
338
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
339 340 341 342 343 344
	return TIPC_OK;
}

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

346
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
347 348 349
	if (!p_ptr)
		return -EINVAL;
	msg_set_src_droppable(&p_ptr->publ.phdr, (isunreliable != 0));
350
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
351 352 353
	return TIPC_OK;
}

S
Sam Ravnborg 已提交
354
static int port_unreturnable(struct port *p_ptr)
P
Per Liden 已提交
355 356 357 358 359 360 361
{
	return msg_dest_droppable(&p_ptr->publ.phdr);
}

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

363
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
364 365 366
	if (!p_ptr)
		return -EINVAL;
	*isunrejectable = port_unreturnable(p_ptr);
J
Julia Lawall 已提交
367
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
368 369 370 371 372 373
	return TIPC_OK;
}

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

375
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
376 377 378
	if (!p_ptr)
		return -EINVAL;
	msg_set_dest_droppable(&p_ptr->publ.phdr, (isunrejectable != 0));
379
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
380 381 382
	return TIPC_OK;
}

383 384 385
/*
 * port_build_proto_msg(): build a port level protocol
 * or a connection abortion message. Called with
P
Per Liden 已提交
386 387 388 389
 * tipc_port lock on.
 */
static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
					    u32 origport, u32 orignode,
390
					    u32 usr, u32 type, u32 err,
P
Per Liden 已提交
391 392 393 394
					    u32 seqno, u32 ack)
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
395

P
Per Liden 已提交
396 397 398
	buf = buf_acquire(LONG_H_SIZE);
	if (buf) {
		msg = buf_msg(buf);
399 400
		msg_init(msg, usr, type, LONG_H_SIZE, destnode);
		msg_set_errcode(msg, err);
P
Per Liden 已提交
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
		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);
		msg_dbg(msg, "PORT>SEND>:");
	}
	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++;
	msg_dbg(msg, "port->rej: ");

	/* 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;
	rbuf = buf_acquire(data_sz + hdr_sz);
	if (rbuf == NULL) {
		buf_discard(buf);
		return data_sz;
	}
	rmsg = buf_msg(rbuf);
443 444
	msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
	msg_set_errcode(rmsg, err);
P
Per Liden 已提交
445 446
	msg_set_destport(rmsg, msg_origport(msg));
	msg_set_origport(rmsg, msg_destport(msg));
447
	if (msg_short(msg)) {
P
Per Liden 已提交
448
		msg_set_orignode(rmsg, tipc_own_addr);
449 450
		/* leave name type & instance as zeroes */
	} else {
P
Per Liden 已提交
451
		msg_set_orignode(rmsg, msg_destnode(msg));
452 453 454
		msg_set_nametype(rmsg, msg_nametype(msg));
		msg_set_nameinst(rmsg, msg_nameinst(msg));
	}
455
	msg_set_size(rmsg, data_sz + hdr_sz);
456
	skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
P
Per Liden 已提交
457 458 459

	/* send self-abort message when rejecting on a connected port */
	if (msg_connected(msg)) {
460
		struct sk_buff *abuf = NULL;
461
		struct port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
462 463 464 465

		if (p_ptr) {
			if (p_ptr->publ.connected)
				abuf = port_build_self_abort_msg(p_ptr, err);
466
			tipc_port_unlock(p_ptr);
P
Per Liden 已提交
467
		}
468
		tipc_net_route_msg(abuf);
P
Per Liden 已提交
469 470 471 472
	}

	/* send rejected message */
	buf_discard(buf);
473
	tipc_net_route_msg(rbuf);
P
Per Liden 已提交
474 475 476
	return data_sz;
}

477 478 479
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 已提交
480 481 482 483
{
	struct sk_buff *buf;
	int res;

484
	res = msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
P
Per Liden 已提交
485 486 487 488 489 490 491 492 493
			!p_ptr->user_port, &buf);
	if (!buf)
		return res;

	return tipc_reject_msg(buf, err);
}

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

497 498 499 500 501
	if (!p_ptr)
		return;

	if (!p_ptr->publ.connected) {
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
502
		return;
503
	}
P
Per Liden 已提交
504 505 506 507 508 509 510 511 512 513 514

	/* 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,
515
					   TIPC_OK,
P
Per Liden 已提交
516 517 518 519 520 521
					   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);
	}
522 523
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
524 525 526 527 528
}


static void port_handle_node_down(unsigned long ref)
{
529
	struct port *p_ptr = tipc_port_lock(ref);
530
	struct sk_buff* buf = NULL;
P
Per Liden 已提交
531 532 533 534

	if (!p_ptr)
		return;
	buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
535 536
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
537 538 539 540 541 542 543 544
}


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)
545
		return NULL;
P
Per Liden 已提交
546 547 548 549 550 551 552 553
	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,
554
				    err,
P
Per Liden 已提交
555 556 557 558 559 560 561 562 563 564
				    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)
565
		return NULL;
P
Per Liden 已提交
566 567 568 569 570 571 572 573
	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,
574
				    err,
P
Per Liden 已提交
575 576 577 578
				    port_out_seqno(p_ptr),
				    0);
}

579
void tipc_port_recv_proto_msg(struct sk_buff *buf)
P
Per Liden 已提交
580 581
{
	struct tipc_msg *msg = buf_msg(buf);
582
	struct port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
583
	u32 err = TIPC_OK;
584 585
	struct sk_buff *r_buf = NULL;
	struct sk_buff *abort_buf = NULL;
P
Per Liden 已提交
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604

	msg_dbg(msg, "PORT<RECV<:");

	if (!p_ptr) {
		err = TIPC_ERR_NO_PORT;
	} else if (p_ptr->publ.connected) {
		if (port_peernode(p_ptr) != msg_orignode(msg))
			err = TIPC_ERR_NO_PORT;
		if (port_peerport(p_ptr) != msg_origport(msg))
			err = TIPC_ERR_NO_PORT;
		if (!err && msg_routed(msg)) {
			u32 seqno = msg_transp_seqno(msg);
			u32 myno =  ++p_ptr->last_in_seqno;
			if (seqno != myno) {
				err = TIPC_ERR_NO_PORT;
				abort_buf = port_build_self_abort_msg(p_ptr, err);
			}
		}
		if (msg_type(msg) == CONN_ACK) {
605
			int wakeup = tipc_port_congested(p_ptr) &&
P
Per Liden 已提交
606 607 608
				     p_ptr->publ.congested &&
				     p_ptr->wakeup;
			p_ptr->acked += msg_msgcnt(msg);
609
			if (tipc_port_congested(p_ptr))
P
Per Liden 已提交
610 611 612 613 614 615 616 617 618 619 620 621
				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),
622 623
					     msg_orignode(msg),
					     msg_destport(msg),
P
Per Liden 已提交
624
					     tipc_own_addr,
625
					     TIPC_HIGH_IMPORTANCE,
P
Per Liden 已提交
626 627 628 629 630 631 632 633 634
					     TIPC_CONN_MSG,
					     err,
					     0,
					     0);
		goto exit;
	}

	/* All is fine */
	if (msg_type(msg) == CONN_PROBE) {
635 636 637 638
		r_buf = port_build_proto_msg(msg_origport(msg),
					     msg_orignode(msg),
					     msg_destport(msg),
					     tipc_own_addr,
P
Per Liden 已提交
639 640 641 642 643 644 645 646 647 648
					     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)
649 650 651
		tipc_port_unlock(p_ptr);
	tipc_net_route_msg(r_buf);
	tipc_net_route_msg(abort_buf);
P
Per Liden 已提交
652 653 654 655 656
	buf_discard(buf);
}

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

	if (full_id)
660
		tipc_printf(buf, "<%u.%u.%u:%u>:",
P
Per Liden 已提交
661
			    tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
662
			    tipc_node(tipc_own_addr), p_ptr->publ.ref);
P
Per Liden 已提交
663 664 665
	else
		tipc_printf(buf, "%-10u:", p_ptr->publ.ref);

666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
	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);
	}
	else if (p_ptr->publ.published) {
		tipc_printf(buf, " bound to");
		list_for_each_entry(publ, &p_ptr->publications, pport_list) {
P
Per Liden 已提交
681 682 683 684
			if (publ->lower == publ->upper)
				tipc_printf(buf, " {%u,%u}", publ->type,
					    publ->lower);
			else
685
				tipc_printf(buf, " {%u,%u,%u}", publ->type,
P
Per Liden 已提交
686
					    publ->lower, publ->upper);
687 688 689
		}
	}
	tipc_printf(buf, "\n");
P
Per Liden 已提交
690 691 692 693
}

#define MAX_PORT_QUERY 32768

694
struct sk_buff *tipc_port_get_ports(void)
P
Per Liden 已提交
695 696 697 698 699 700 701
{
	struct sk_buff *buf;
	struct tlv_desc *rep_tlv;
	struct print_buf pb;
	struct port *p_ptr;
	int str_len;

702
	buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
P
Per Liden 已提交
703 704 705 706
	if (!buf)
		return NULL;
	rep_tlv = (struct tlv_desc *)buf->data;

707 708
	tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
709 710 711 712 713
	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);
	}
714 715
	spin_unlock_bh(&tipc_port_list_lock);
	str_len = tipc_printbuf_validate(&pb);
P
Per Liden 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

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

	return buf;
}

#if 0

#define MAX_PORT_STATS 2000

struct sk_buff *port_show_stats(const void *req_tlv_area, int req_tlv_space)
{
	u32 ref;
	struct port *p_ptr;
	struct sk_buff *buf;
	struct tlv_desc *rep_tlv;
	struct print_buf pb;
	int str_len;

	if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_PORT_REF))
		return cfg_reply_error_string(TIPC_CFG_TLV_ERROR);

	ref = *(u32 *)TLV_DATA(req_tlv_area);
	ref = ntohl(ref);

742
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
743 744 745
	if (!p_ptr)
		return cfg_reply_error_string("port not found");

746
	buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_STATS));
P
Per Liden 已提交
747
	if (!buf) {
748
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
749 750 751 752
		return NULL;
	}
	rep_tlv = (struct tlv_desc *)buf->data;

753
	tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_STATS);
P
Per Liden 已提交
754 755
	port_print(p_ptr, &pb, 1);
	/* NEED TO FILL IN ADDITIONAL PORT STATISTICS HERE */
756 757
	tipc_port_unlock(p_ptr);
	str_len = tipc_printbuf_validate(&pb);
P
Per Liden 已提交
758 759 760 761 762 763 764 765 766

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

	return buf;
}

#endif

767
void tipc_port_reinit(void)
P
Per Liden 已提交
768 769 770 771
{
	struct port *p_ptr;
	struct tipc_msg *msg;

772
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
773 774 775 776
	list_for_each_entry(p_ptr, &ports, port_list) {
		msg = &p_ptr->publ.phdr;
		if (msg_orignode(msg) == tipc_own_addr)
			break;
777
		msg_set_prevnode(msg, tipc_own_addr);
P
Per Liden 已提交
778 779
		msg_set_orignode(msg, tipc_own_addr);
	}
780
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
781 782 783 784 785 786 787 788 789 790 791 792 793 794
}


/*
 *  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;
795
	msg_queue_head = NULL;
P
Per Liden 已提交
796 797 798 799 800 801 802 803 804 805
	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;
806
		u32 message_type;
P
Per Liden 已提交
807 808 809 810

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

812 813 814 815
		message_type = msg_type(msg);
		if (message_type > TIPC_DIRECT_MSG)
			goto reject;	/* Unsupported message type */

816
		p_ptr = tipc_port_lock(dref);
817 818 819
		if (!p_ptr)
			goto reject;	/* Port deleted while msg in queue */

P
Per Liden 已提交
820 821 822 823 824 825 826 827 828 829
		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;

830
		switch (message_type) {
831

P
Per Liden 已提交
832 833 834 835 836
		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 已提交
837
				tipc_port_unlock(p_ptr);
838 839
				if (unlikely(!cb))
					goto reject;
P
Per Liden 已提交
840
				if (unlikely(!connected)) {
841
					if (tipc_connect2port(dref, &orig))
P
Per Liden 已提交
842
						goto reject;
843 844
				} else if ((msg_origport(msg) != peer_port) ||
					   (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
845
					goto reject;
846
				if (unlikely(++p_ptr->publ.conn_unacked >=
P
Per Liden 已提交
847
					     TIPC_FLOW_CONTROL_WIN))
848
					tipc_acknowledge(dref,
P
Per Liden 已提交
849 850 851 852 853 854 855 856 857
							 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 已提交
858
				tipc_port_unlock(p_ptr);
859
				if (unlikely(!cb || connected))
P
Per Liden 已提交
860 861
					goto reject;
				skb_pull(buf, msg_hdr_sz(msg));
862
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
863 864 865 866
				   msg_data_sz(msg), msg_importance(msg),
				   &orig);
				break;
			}
867
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
868 869 870
		case TIPC_NAMED_MSG:{
				tipc_named_msg_event cb = up_ptr->named_msg_cb;

J
Julia Lawall 已提交
871
				tipc_port_unlock(p_ptr);
872
				if (unlikely(!cb || connected || !published))
P
Per Liden 已提交
873 874 875
					goto reject;
				dseq.type =  msg_nametype(msg);
				dseq.lower = msg_nameinst(msg);
876 877
				dseq.upper = (message_type == TIPC_NAMED_MSG)
					? dseq.lower : msg_nameupper(msg);
P
Per Liden 已提交
878
				skb_pull(buf, msg_hdr_sz(msg));
879
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
880 881 882 883 884 885 886 887 888 889
				   msg_data_sz(msg), msg_importance(msg),
				   &orig, &dseq);
				break;
			}
		}
		if (buf)
			buf_discard(buf);
		buf = next;
		continue;
err:
890
		switch (message_type) {
891

P
Per Liden 已提交
892
		case TIPC_CONN_MSG:{
893
				tipc_conn_shutdown_event cb =
P
Per Liden 已提交
894 895 896 897
					up_ptr->conn_err_cb;
				u32 peer_port = port_peerport(p_ptr);
				u32 peer_node = port_peernode(p_ptr);

J
Julia Lawall 已提交
898
				tipc_port_unlock(p_ptr);
899
				if (!cb || !connected)
P
Per Liden 已提交
900
					break;
901 902
				if ((msg_origport(msg) != peer_port) ||
				    (msg_orignode(msg) != peer_node))
P
Per Liden 已提交
903 904 905 906 907 908 909 910 911 912
					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 已提交
913
				tipc_port_unlock(p_ptr);
914
				if (!cb || connected)
P
Per Liden 已提交
915 916 917 918 919 920
					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;
			}
921
		case TIPC_MCAST_MSG:
P
Per Liden 已提交
922
		case TIPC_NAMED_MSG:{
923
				tipc_named_msg_err_event cb =
P
Per Liden 已提交
924 925
					up_ptr->named_err_cb;

J
Julia Lawall 已提交
926
				tipc_port_unlock(p_ptr);
927
				if (!cb || connected)
P
Per Liden 已提交
928 929 930
					break;
				dseq.type =  msg_nametype(msg);
				dseq.lower = msg_nameinst(msg);
931 932
				dseq.upper = (message_type == TIPC_NAMED_MSG)
					? dseq.lower : msg_nameupper(msg);
P
Per Liden 已提交
933
				skb_pull(buf, msg_hdr_sz(msg));
934
				cb(usr_handle, dref, &buf, msg_data(msg),
P
Per Liden 已提交
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
				   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;
963
		tipc_k_signal((Handler)port_dispatcher_sigh, 0);
P
Per Liden 已提交
964 965 966 967 968
	}
	spin_unlock_bh(&queue_lock);
	return TIPC_OK;
}

969
/*
P
Per Liden 已提交
970
 * Wake up port after congestion: Called with port locked,
971
 *
P
Per Liden 已提交
972 973 974 975 976 977
 */

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

981
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
982 983 984 985 986 987
	if (p_ptr) {
		up_ptr = p_ptr->user_port;
		if (up_ptr) {
			cb = up_ptr->continue_event_cb;
			uh = up_ptr->usr_handle;
		}
988
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
989 990 991 992 993 994 995 996
	}
	if (cb)
		cb(uh, ref);
}


static void port_wakeup(struct tipc_port *p_ptr)
{
997
	tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
P
Per Liden 已提交
998 999 1000 1001 1002
}

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

1005
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
	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,
1016
					   TIPC_OK,
P
Per Liden 已提交
1017 1018 1019
					   port_out_seqno(p_ptr),
					   ack);
	}
1020 1021
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
1022 1023 1024 1025 1026 1027 1028
}

/*
 * tipc_createport(): user level call. Will add port to
 *                    registry if non-zero user_ref.
 */

1029 1030 1031 1032 1033 1034 1035 1036 1037
int tipc_createport(u32 user_ref,
		    void *usr_handle,
		    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 已提交
1038 1039 1040 1041
		    tipc_continue_event continue_event_cb,/* May be zero */
		    u32 *portref)
{
	struct user_port *up_ptr;
1042
	struct port *p_ptr;
P
Per Liden 已提交
1043

1044
	up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
1045
	if (!up_ptr) {
1046
		warn("Port creation failed, no memory\n");
P
Per Liden 已提交
1047 1048
		return -ENOMEM;
	}
1049 1050 1051
	p_ptr = (struct port *)tipc_createport_raw(NULL, port_dispatcher,
						   port_wakeup, importance);
	if (!p_ptr) {
P
Per Liden 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
		kfree(up_ptr);
		return -ENOMEM;
	}

	p_ptr->user_port = up_ptr;
	up_ptr->user_ref = user_ref;
	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;
	INIT_LIST_HEAD(&up_ptr->uport_list);
1068
	tipc_reg_add_port(up_ptr);
P
Per Liden 已提交
1069
	*portref = p_ptr->publ.ref;
1070
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
	return TIPC_OK;
}

int tipc_ownidentity(u32 ref, struct tipc_portid *id)
{
	id->ref = ref;
	id->node = tipc_own_addr;
	return TIPC_OK;
}

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

1085
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1086 1087 1088
	if (!p_ptr)
		return -EINVAL;
	*importance = (unsigned int)msg_importance(&p_ptr->publ.phdr);
J
Julia Lawall 已提交
1089
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
	return TIPC_OK;
}

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

	if (imp > TIPC_CRITICAL_IMPORTANCE)
		return -EINVAL;

1100
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1101 1102 1103
	if (!p_ptr)
		return -EINVAL;
	msg_set_importance(&p_ptr->publ.phdr, (u32)imp);
J
Julia Lawall 已提交
1104
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
	return TIPC_OK;
}


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;

1116
	p_ptr = tipc_port_lock(ref);
1117 1118 1119
	if (!p_ptr)
		return -EINVAL;

P
Per Liden 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
	dbg("tipc_publ %u, p_ptr = %x, conn = %x, scope = %x, "
	    "lower = %u, upper = %u\n",
	    ref, p_ptr, p_ptr->publ.connected, scope, seq->lower, seq->upper);
	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;
	}
1134 1135
	publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
				    scope, p_ptr->publ.ref, key);
P
Per Liden 已提交
1136 1137 1138 1139 1140 1141 1142
	if (publ) {
		list_add(&publ->pport_list, &p_ptr->publications);
		p_ptr->pub_count++;
		p_ptr->publ.published = 1;
		res = TIPC_OK;
	}
exit:
1143
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152
	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;
1153

1154
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1155 1156 1157
	if (!p_ptr)
		return -EINVAL;
	if (!seq) {
1158
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1159
					 &p_ptr->publications, pport_list) {
1160
			tipc_nametbl_withdraw(publ->type, publ->lower,
1161
					      publ->ref, publ->key);
P
Per Liden 已提交
1162 1163 1164
		}
		res = TIPC_OK;
	} else {
1165
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
1166 1167 1168 1169 1170 1171 1172 1173 1174
					 &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;
1175
			tipc_nametbl_withdraw(publ->type, publ->lower,
1176
					      publ->ref, publ->key);
P
Per Liden 已提交
1177 1178 1179 1180 1181 1182
			res = TIPC_OK;
			break;
		}
	}
	if (list_empty(&p_ptr->publications))
		p_ptr->publ.published = 0;
1183
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1184 1185 1186 1187 1188 1189 1190 1191 1192
	return res;
}

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

1193
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
	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);
	if (!may_route(peer->node))
		msg_set_hdr_sz(msg, SHORT_H_SIZE);
	else
		msg_set_hdr_sz(msg, LONG_H_SIZE);

	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);

1218
	tipc_nodesub_subscribe(&p_ptr->subscription,peer->node,
1219
			  (void *)(unsigned long)ref,
P
Per Liden 已提交
1220 1221 1222
			  (net_ev_handler)port_handle_node_down);
	res = TIPC_OK;
exit:
1223
	tipc_port_unlock(p_ptr);
1224
	p_ptr->publ.max_pkt = tipc_link_get_max_pkt(peer->node, ref);
P
Per Liden 已提交
1225 1226 1227
	return res;
}

1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
/**
 * 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);
		res = TIPC_OK;
	} else {
		res = -ENOTCONN;
	}
	return res;
}

P
Per Liden 已提交
1250 1251 1252 1253 1254 1255 1256 1257
/*
 * tipc_disconnect(): Disconnect port form peer.
 *                    This is a node local operation.
 */

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

1260
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1261 1262
	if (!p_ptr)
		return -EINVAL;
1263
	res = tipc_disconnect_port((struct tipc_port *)p_ptr);
1264
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1265 1266 1267 1268 1269 1270 1271 1272 1273
	return res;
}

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

1276
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
	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,
1290
					   TIPC_CONN_SHUTDOWN,
P
Per Liden 已提交
1291 1292 1293
					   port_out_seqno(p_ptr),
					   0);
	}
1294 1295
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
1296 1297 1298 1299 1300 1301
	return tipc_disconnect(ref);
}

int tipc_isconnected(u32 ref, int *isconnected)
{
	struct port *p_ptr;
1302

1303
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1304 1305 1306
	if (!p_ptr)
		return -EINVAL;
	*isconnected = p_ptr->publ.connected;
1307
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1308 1309 1310 1311 1312 1313 1314
	return TIPC_OK;
}

int tipc_peer(u32 ref, struct tipc_portid *peer)
{
	struct port *p_ptr;
	int res;
1315

1316
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
1317 1318 1319 1320 1321 1322 1323 1324
	if (!p_ptr)
		return -EINVAL;
	if (p_ptr->publ.connected) {
		peer->ref = port_peerport(p_ptr);
		peer->node = port_peernode(p_ptr);
		res = TIPC_OK;
	} else
		res = -ENOTCONN;
1325
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
1326 1327 1328 1329 1330 1331
	return res;
}

int tipc_ref_valid(u32 ref)
{
	/* Works irrespective of type */
1332
	return !!tipc_ref_deref(ref);
P
Per Liden 已提交
1333 1334 1335 1336
}


/*
1337
 *  tipc_port_recv_sections(): Concatenate and deliver sectioned
P
Per Liden 已提交
1338 1339 1340
 *                        message for this node.
 */

1341
int tipc_port_recv_sections(struct port *sender, unsigned int num_sect,
P
Per Liden 已提交
1342 1343 1344 1345
		       struct iovec const *msg_sect)
{
	struct sk_buff *buf;
	int res;
1346

P
Per Liden 已提交
1347 1348 1349
	res = msg_build(&sender->publ.phdr, msg_sect, num_sect,
			MAX_MSG_SIZE, !sender->user_port, &buf);
	if (likely(buf))
1350
		tipc_port_recv_msg(buf);
P
Per Liden 已提交
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
	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;

1364
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1365 1366 1367 1368
	if (!p_ptr || !p_ptr->publ.connected)
		return -EINVAL;

	p_ptr->publ.congested = 1;
1369
	if (!tipc_port_congested(p_ptr)) {
P
Per Liden 已提交
1370 1371
		destnode = port_peernode(p_ptr);
		if (likely(destnode != tipc_own_addr))
1372 1373
			res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
							   destnode);
P
Per Liden 已提交
1374
		else
1375
			res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
P
Per Liden 已提交
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391

		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 */
		return msg_calc_data_size(msg_sect, num_sect);
	}
	return -ELINKCONG;
}

1392
/**
P
Per Liden 已提交
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
 * tipc_send_buf - send message buffer on connection
 */

int tipc_send_buf(u32 ref, struct sk_buff *buf, unsigned int dsz)
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	u32 destnode;
	u32 hsz;
	u32 sz;
	u32 res;
1404

1405
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
	if (!p_ptr || !p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	hsz = msg_hdr_sz(msg);
	sz = hsz + dsz;
	msg_set_size(msg, sz);
	if (skb_cow(buf, hsz))
		return -ENOMEM;

	skb_push(buf, hsz);
1417
	skb_copy_to_linear_data(buf, msg, hsz);
P
Per Liden 已提交
1418 1419
	destnode = msg_destnode(msg);
	p_ptr->publ.congested = 1;
1420
	if (!tipc_port_congested(p_ptr)) {
P
Per Liden 已提交
1421 1422 1423
		if (likely(destnode != tipc_own_addr))
			res = tipc_send_buf_fast(buf, destnode);
		else {
1424
			tipc_port_recv_msg(buf);
P
Per Liden 已提交
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
			res = sz;
		}
		if (likely(res != -ELINKCONG)) {
			port_incr_out_seqno(p_ptr);
			p_ptr->sent++;
			p_ptr->publ.congested = 0;
			return res;
		}
	}
	if (port_unreliable(p_ptr)) {
		p_ptr->publ.congested = 0;
		return dsz;
	}
	return -ELINKCONG;
}

/**
 * tipc_forward2name - forward message sections to port name
 */

1445 1446
int tipc_forward2name(u32 ref,
		      struct tipc_name const *name,
P
Per Liden 已提交
1447
		      u32 domain,
1448
		      u32 num_sect,
P
Per Liden 已提交
1449
		      struct iovec const *msg_sect,
1450
		      struct tipc_portid const *orig,
P
Per Liden 已提交
1451 1452 1453 1454 1455 1456 1457 1458
		      unsigned int importance)
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	u32 destnode = domain;
	u32 destport = 0;
	int res;

1459
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	msg_set_type(msg, TIPC_NAMED_MSG);
	msg_set_orignode(msg, orig->node);
	msg_set_origport(msg, orig->ref);
	msg_set_hdr_sz(msg, LONG_H_SIZE);
	msg_set_nametype(msg, name->type);
	msg_set_nameinst(msg, name->instance);
	msg_set_lookup_scope(msg, addr_scope(domain));
	if (importance <= TIPC_CRITICAL_IMPORTANCE)
		msg_set_importance(msg,importance);
1473
	destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
P
Per Liden 已提交
1474 1475 1476 1477 1478 1479
	msg_set_destnode(msg, destnode);
	msg_set_destport(msg, destport);

	if (likely(destport || destnode)) {
		p_ptr->sent++;
		if (likely(destnode == tipc_own_addr))
1480
			return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1481
		res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1482
						   destnode);
P
Per Liden 已提交
1483 1484 1485 1486 1487 1488 1489 1490
		if (likely(res != -ELINKCONG))
			return res;
		if (port_unreliable(p_ptr)) {
			/* Just calculate msg length and return */
			return msg_calc_data_size(msg_sect, num_sect);
		}
		return -ELINKCONG;
	}
1491
	return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
1492
					 TIPC_ERR_NO_NAME);
P
Per Liden 已提交
1493 1494 1495 1496 1497 1498
}

/**
 * tipc_send2name - send message sections to port name
 */

1499
int tipc_send2name(u32 ref,
P
Per Liden 已提交
1500
		   struct tipc_name const *name,
1501 1502
		   unsigned int domain,
		   unsigned int num_sect,
P
Per Liden 已提交
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
		   struct iovec const *msg_sect)
{
	struct tipc_portid orig;

	orig.ref = ref;
	orig.node = tipc_own_addr;
	return tipc_forward2name(ref, name, domain, num_sect, msg_sect, &orig,
				 TIPC_PORT_IMPORTANCE);
}

1513
/**
P
Per Liden 已提交
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530
 * tipc_forward_buf2name - forward message buffer to port name
 */

int tipc_forward_buf2name(u32 ref,
			  struct tipc_name const *name,
			  u32 domain,
			  struct sk_buff *buf,
			  unsigned int dsz,
			  struct tipc_portid const *orig,
			  unsigned int importance)
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	u32 destnode = domain;
	u32 destport = 0;
	int res;

1531
	p_ptr = (struct port *)tipc_ref_deref(ref);
P
Per Liden 已提交
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	if (importance <= TIPC_CRITICAL_IMPORTANCE)
		msg_set_importance(msg, importance);
	msg_set_type(msg, TIPC_NAMED_MSG);
	msg_set_orignode(msg, orig->node);
	msg_set_origport(msg, orig->ref);
	msg_set_nametype(msg, name->type);
	msg_set_nameinst(msg, name->instance);
	msg_set_lookup_scope(msg, addr_scope(domain));
	msg_set_hdr_sz(msg, LONG_H_SIZE);
	msg_set_size(msg, LONG_H_SIZE + dsz);
1546
	destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
P
Per Liden 已提交
1547 1548 1549 1550 1551 1552
	msg_set_destnode(msg, destnode);
	msg_set_destport(msg, destport);
	msg_dbg(msg, "forw2name ==> ");
	if (skb_cow(buf, LONG_H_SIZE))
		return -ENOMEM;
	skb_push(buf, LONG_H_SIZE);
1553
	skb_copy_to_linear_data(buf, msg, LONG_H_SIZE);
P
Per Liden 已提交
1554 1555 1556 1557
	msg_dbg(buf_msg(buf),"PREP:");
	if (likely(destport || destnode)) {
		p_ptr->sent++;
		if (destnode == tipc_own_addr)
1558
			return tipc_port_recv_msg(buf);
P
Per Liden 已提交
1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
		res = tipc_send_buf_fast(buf, destnode);
		if (likely(res != -ELINKCONG))
			return res;
		if (port_unreliable(p_ptr))
			return dsz;
		return -ELINKCONG;
	}
	return tipc_reject_msg(buf, TIPC_ERR_NO_NAME);
}

1569
/**
P
Per Liden 已提交
1570 1571 1572
 * tipc_send_buf2name - send message buffer to port name
 */

1573 1574
int tipc_send_buf2name(u32 ref,
		       struct tipc_name const *dest,
P
Per Liden 已提交
1575
		       u32 domain,
1576
		       struct sk_buff *buf,
P
Per Liden 已提交
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
		       unsigned int dsz)
{
	struct tipc_portid orig;

	orig.ref = ref;
	orig.node = tipc_own_addr;
	return tipc_forward_buf2name(ref, dest, domain, buf, dsz, &orig,
				     TIPC_PORT_IMPORTANCE);
}

1587
/**
P
Per Liden 已提交
1588 1589 1590 1591 1592
 * tipc_forward2port - forward message sections to port identity
 */

int tipc_forward2port(u32 ref,
		      struct tipc_portid const *dest,
1593
		      unsigned int num_sect,
P
Per Liden 已提交
1594
		      struct iovec const *msg_sect,
1595
		      struct tipc_portid const *orig,
P
Per Liden 已提交
1596 1597 1598 1599 1600 1601
		      unsigned int importance)
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	int res;

1602
	p_ptr = tipc_port_deref(ref);
P
Per Liden 已提交
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	msg_set_type(msg, TIPC_DIRECT_MSG);
	msg_set_orignode(msg, orig->node);
	msg_set_origport(msg, orig->ref);
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
	msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
	if (importance <= TIPC_CRITICAL_IMPORTANCE)
		msg_set_importance(msg, importance);
	p_ptr->sent++;
	if (dest->node == tipc_own_addr)
1617 1618
		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 已提交
1619 1620 1621 1622 1623 1624 1625 1626 1627
	if (likely(res != -ELINKCONG))
		return res;
	if (port_unreliable(p_ptr)) {
		/* Just calculate msg length and return */
		return msg_calc_data_size(msg_sect, num_sect);
	}
	return -ELINKCONG;
}

1628 1629
/**
 * tipc_send2port - send message sections to port identity
P
Per Liden 已提交
1630 1631
 */

1632
int tipc_send2port(u32 ref,
P
Per Liden 已提交
1633
		   struct tipc_portid const *dest,
1634
		   unsigned int num_sect,
P
Per Liden 已提交
1635 1636 1637 1638 1639 1640
		   struct iovec const *msg_sect)
{
	struct tipc_portid orig;

	orig.ref = ref;
	orig.node = tipc_own_addr;
1641
	return tipc_forward2port(ref, dest, num_sect, msg_sect, &orig,
P
Per Liden 已提交
1642 1643 1644
				 TIPC_PORT_IMPORTANCE);
}

1645
/**
P
Per Liden 已提交
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
 * tipc_forward_buf2port - forward message buffer to port identity
 */
int tipc_forward_buf2port(u32 ref,
			  struct tipc_portid const *dest,
			  struct sk_buff *buf,
			  unsigned int dsz,
			  struct tipc_portid const *orig,
			  unsigned int importance)
{
	struct port *p_ptr;
	struct tipc_msg *msg;
	int res;

1659
	p_ptr = (struct port *)tipc_ref_deref(ref);
P
Per Liden 已提交
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
	if (!p_ptr || p_ptr->publ.connected)
		return -EINVAL;

	msg = &p_ptr->publ.phdr;
	msg_set_type(msg, TIPC_DIRECT_MSG);
	msg_set_orignode(msg, orig->node);
	msg_set_origport(msg, orig->ref);
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
	msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
	if (importance <= TIPC_CRITICAL_IMPORTANCE)
		msg_set_importance(msg, importance);
	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);
1677
	skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
P
Per Liden 已提交
1678 1679 1680
	msg_dbg(msg, "buf2port: ");
	p_ptr->sent++;
	if (dest->node == tipc_own_addr)
1681
		return tipc_port_recv_msg(buf);
P
Per Liden 已提交
1682 1683 1684 1685 1686 1687 1688 1689
	res = tipc_send_buf_fast(buf, dest->node);
	if (likely(res != -ELINKCONG))
		return res;
	if (port_unreliable(p_ptr))
		return dsz;
	return -ELINKCONG;
}

1690
/**
P
Per Liden 已提交
1691 1692 1693
 * tipc_send_buf2port - send message buffer to port identity
 */

1694
int tipc_send_buf2port(u32 ref,
P
Per Liden 已提交
1695
		       struct tipc_portid const *dest,
1696
		       struct sk_buff *buf,
P
Per Liden 已提交
1697 1698 1699 1700 1701 1702
		       unsigned int dsz)
{
	struct tipc_portid orig;

	orig.ref = ref;
	orig.node = tipc_own_addr;
1703
	return tipc_forward_buf2port(ref, dest, buf, dsz, &orig,
P
Per Liden 已提交
1704 1705 1706
				     TIPC_PORT_IMPORTANCE);
}