port.c 23.0 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/port.c: TIPC port code
3
 *
4
 * Copyright (c) 1992-2007, 2014, Ericsson AB
5
 * Copyright (c) 2004-2008, 2010-2013, 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
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
#include "config.h"
#include "port.h"
#include "name_table.h"
41
#include "socket.h"
P
Per Liden 已提交
42 43 44 45 46 47 48 49

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

#define MAX_REJECT_SIZE 1024

I
Ingo Molnar 已提交
50
DEFINE_SPINLOCK(tipc_port_list_lock);
P
Per Liden 已提交
51

52
static LIST_HEAD(ports);
P
Per Liden 已提交
53
static void port_handle_node_down(unsigned long ref);
54 55
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 已提交
56 57
static void port_timeout(unsigned long ref);

58
/**
59 60 61 62 63 64 65 66 67 68
 * tipc_port_peer_msg - verify message was sent by connected port's peer
 *
 * Handles cases where the node's network address has changed from
 * the default of <0.0.0> to its configured setting.
 */
int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg)
{
	u32 peernode;
	u32 orignode;

69
	if (msg_origport(msg) != tipc_port_peerport(p_ptr))
70 71 72
		return 0;

	orignode = msg_orignode(msg);
73
	peernode = tipc_port_peernode(p_ptr);
74 75 76 77 78
	return (orignode == peernode) ||
		(!orignode && (peernode == tipc_own_addr)) ||
		(!peernode && (orignode == tipc_own_addr));
}

P
Per Liden 已提交
79
/**
80 81
 * tipc_port_mcast_xmit - send a multicast message to local and remote
 * destinations
P
Per Liden 已提交
82
 */
83 84
int tipc_port_mcast_xmit(u32 ref, struct tipc_name_seq const *seq,
			 struct iovec const *msg_sect, unsigned int len)
P
Per Liden 已提交
85 86 87 88
{
	struct tipc_msg *hdr;
	struct sk_buff *buf;
	struct sk_buff *ibuf = NULL;
89
	struct tipc_port_list dports = {0, NULL, };
90
	struct tipc_port *oport = tipc_port_deref(ref);
P
Per Liden 已提交
91 92 93 94 95 96 97
	int ext_targets;
	int res;

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

	/* Create multicast message */
98
	hdr = &oport->phdr;
P
Per Liden 已提交
99
	msg_set_type(hdr, TIPC_MCAST_MSG);
100
	msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
101 102
	msg_set_destport(hdr, 0);
	msg_set_destnode(hdr, 0);
P
Per Liden 已提交
103 104 105 106
	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);
107
	res = tipc_msg_build(hdr, msg_sect, len, MAX_MSG_SIZE, &buf);
P
Per Liden 已提交
108 109 110 111
	if (unlikely(!buf))
		return res;

	/* Figure out where to send multicast message */
112 113
	ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
						TIPC_NODE_SCOPE, &dports);
114 115

	/* Send message to destinations (duplicate it only if necessary) */
P
Per Liden 已提交
116 117 118 119
	if (ext_targets) {
		if (dports.count != 0) {
			ibuf = skb_copy(buf, GFP_ATOMIC);
			if (ibuf == NULL) {
120
				tipc_port_list_free(&dports);
121
				kfree_skb(buf);
P
Per Liden 已提交
122 123 124
				return -ENOMEM;
			}
		}
125
		res = tipc_bclink_xmit(buf);
126
		if ((res < 0) && (dports.count != 0))
127
			kfree_skb(ibuf);
P
Per Liden 已提交
128 129 130 131 132 133
	} else {
		ibuf = buf;
	}

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

/**
142
 * tipc_port_mcast_rcv - deliver multicast message to all destination ports
143
 *
P
Per Liden 已提交
144 145
 * If there is no port list, perform a lookup to create one
 */
146
void tipc_port_mcast_rcv(struct sk_buff *buf, struct tipc_port_list *dp)
P
Per Liden 已提交
147
{
148
	struct tipc_msg *msg;
149 150
	struct tipc_port_list dports = {0, NULL, };
	struct tipc_port_list *item = dp;
P
Per Liden 已提交
151 152 153 154 155 156
	int cnt = 0;

	msg = buf_msg(buf);

	/* Create destination port list, if one wasn't supplied */
	if (dp == NULL) {
157
		tipc_nametbl_mc_translate(msg_nametype(msg),
P
Per Liden 已提交
158 159 160 161 162 163 164 165 166
				     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
			tipc_port_rcv(buf);
171
			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
				pr_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_rcv(b);
P
Per Liden 已提交
186 187 188
		}
	}
exit:
189
	kfree_skb(buf);
190
	tipc_port_list_free(dp);
P
Per Liden 已提交
191 192
}

193 194 195 196 197 198 199

void tipc_port_wakeup(struct tipc_port *port)
{
	tipc_sk_wakeup(tipc_port_to_sk(port));
}

/* tipc_port_init - intiate TIPC port and lock it
200
 *
201
 * Returns obtained reference if initialization is successful, zero otherwise
P
Per Liden 已提交
202
 */
203 204
u32 tipc_port_init(struct tipc_port *p_ptr,
		   const unsigned int importance)
P
Per Liden 已提交
205 206 207 208
{
	struct tipc_msg *msg;
	u32 ref;

209
	ref = tipc_ref_acquire(p_ptr, &p_ptr->lock);
P
Per Liden 已提交
210
	if (!ref) {
211
		pr_warn("Port registration failed, ref. table exhausted\n");
212
		return 0;
P
Per Liden 已提交
213 214
	}

215 216
	p_ptr->max_pkt = MAX_PKT_DEFAULT;
	p_ptr->ref = ref;
P
Per Liden 已提交
217 218 219 220 221
	INIT_LIST_HEAD(&p_ptr->wait_list);
	INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
	k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
	INIT_LIST_HEAD(&p_ptr->publications);
	INIT_LIST_HEAD(&p_ptr->port_list);
222 223 224 225 226 227 228 229 230 231

	/*
	 * Must hold port list lock while initializing message header template
	 * to ensure a change to node's own network address doesn't result
	 * in template containing out-dated network address information
	 */
	spin_lock_bh(&tipc_port_list_lock);
	msg = &p_ptr->phdr;
	tipc_msg_init(msg, importance, TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
	msg_set_origport(msg, ref);
P
Per Liden 已提交
232
	list_add_tail(&p_ptr->port_list, &ports);
233
	spin_unlock_bh(&tipc_port_list_lock);
234
	return ref;
P
Per Liden 已提交
235 236
}

237
void tipc_port_destroy(struct tipc_port *p_ptr)
P
Per Liden 已提交
238
{
239
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
240

241
	tipc_withdraw(p_ptr, 0, NULL);
P
Per Liden 已提交
242

243 244 245
	spin_lock_bh(p_ptr->lock);
	tipc_ref_discard(p_ptr->ref);
	spin_unlock_bh(p_ptr->lock);
P
Per Liden 已提交
246 247

	k_cancel_timer(&p_ptr->timer);
248
	if (p_ptr->connected) {
P
Per Liden 已提交
249
		buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
250
		tipc_nodesub_unsubscribe(&p_ptr->subscription);
P
Per Liden 已提交
251 252
	}

253
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
254 255
	list_del(&p_ptr->port_list);
	list_del(&p_ptr->wait_list);
256
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
257
	k_term_timer(&p_ptr->timer);
258
	tipc_net_route_msg(buf);
P
Per Liden 已提交
259 260
}

261
/*
262 263 264
 * port_build_proto_msg(): create connection protocol message for port
 *
 * On entry the port must be locked and connected.
P
Per Liden 已提交
265
 */
266 267
static struct sk_buff *port_build_proto_msg(struct tipc_port *p_ptr,
					    u32 type, u32 ack)
P
Per Liden 已提交
268 269 270
{
	struct sk_buff *buf;
	struct tipc_msg *msg;
271

272
	buf = tipc_buf_acquire(INT_H_SIZE);
P
Per Liden 已提交
273 274
	if (buf) {
		msg = buf_msg(buf);
275
		tipc_msg_init(msg, CONN_MANAGER, type, INT_H_SIZE,
276 277
			      tipc_port_peernode(p_ptr));
		msg_set_destport(msg, tipc_port_peerport(p_ptr));
278
		msg_set_origport(msg, p_ptr->ref);
P
Per Liden 已提交
279 280 281 282 283 284 285 286 287 288 289
		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;
290
	u32 imp;
P
Per Liden 已提交
291
	u32 data_sz = msg_data_sz(msg);
292
	u32 src_node;
293
	u32 rmsg_sz;
P
Per Liden 已提交
294 295

	/* discard rejected message if it shouldn't be returned to sender */
296 297 298 299 300
	if (WARN(!msg_isdata(msg),
		 "attempt to reject message with user=%u", msg_user(msg))) {
		dump_stack();
		goto exit;
	}
301 302
	if (msg_errcode(msg) || msg_dest_droppable(msg))
		goto exit;
P
Per Liden 已提交
303

304 305 306 307 308 309 310 311
	/*
	 * construct returned message by copying rejected message header and
	 * data (or subset), then updating header fields that need adjusting
	 */
	hdr_sz = msg_hdr_sz(msg);
	rmsg_sz = hdr_sz + min_t(u32, data_sz, MAX_REJECT_SIZE);

	rbuf = tipc_buf_acquire(rmsg_sz);
312 313 314
	if (rbuf == NULL)
		goto exit;

P
Per Liden 已提交
315
	rmsg = buf_msg(rbuf);
316 317 318 319 320 321
	skb_copy_to_linear_data(rbuf, msg, rmsg_sz);

	if (msg_connected(rmsg)) {
		imp = msg_importance(rmsg);
		if (imp < TIPC_CRITICAL_IMPORTANCE)
			msg_set_importance(rmsg, ++imp);
322
	}
323 324 325 326 327 328 329
	msg_set_non_seq(rmsg, 0);
	msg_set_size(rmsg, rmsg_sz);
	msg_set_errcode(rmsg, err);
	msg_set_prevnode(rmsg, tipc_own_addr);
	msg_swap_words(rmsg, 4, 5);
	if (!msg_short(rmsg))
		msg_swap_words(rmsg, 6, 7);
P
Per Liden 已提交
330 331 332

	/* send self-abort message when rejecting on a connected port */
	if (msg_connected(msg)) {
333
		struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
P
Per Liden 已提交
334 335

		if (p_ptr) {
336 337
			struct sk_buff *abuf = NULL;

338
			if (p_ptr->connected)
P
Per Liden 已提交
339
				abuf = port_build_self_abort_msg(p_ptr, err);
340
			tipc_port_unlock(p_ptr);
341
			tipc_net_route_msg(abuf);
P
Per Liden 已提交
342 343 344
		}
	}

345
	/* send returned message & dispose of rejected message */
346
	src_node = msg_prevnode(msg);
347
	if (in_own_node(src_node))
348
		tipc_port_rcv(rbuf);
349
	else
350
		tipc_link_xmit(rbuf, src_node, msg_link_selector(rmsg));
351
exit:
352
	kfree_skb(buf);
P
Per Liden 已提交
353 354 355
	return data_sz;
}

356 357 358
int tipc_port_iovec_reject(struct tipc_port *p_ptr, struct tipc_msg *hdr,
			   struct iovec const *msg_sect, unsigned int len,
			   int err)
P
Per Liden 已提交
359 360 361 362
{
	struct sk_buff *buf;
	int res;

363
	res = tipc_msg_build(hdr, msg_sect, len, MAX_MSG_SIZE, &buf);
P
Per Liden 已提交
364 365 366 367 368 369 370 371
	if (!buf)
		return res;

	return tipc_reject_msg(buf, err);
}

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

375 376 377
	if (!p_ptr)
		return;

378
	if (!p_ptr->connected) {
379
		tipc_port_unlock(p_ptr);
P
Per Liden 已提交
380
		return;
381
	}
P
Per Liden 已提交
382 383 384 385 386

	/* Last probe answered ? */
	if (p_ptr->probing_state == PROBING) {
		buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
	} else {
387
		buf = port_build_proto_msg(p_ptr, CONN_PROBE, 0);
P
Per Liden 已提交
388 389 390
		p_ptr->probing_state = PROBING;
		k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
	}
391 392
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
393 394 395 396 397
}


static void port_handle_node_down(unsigned long ref)
{
398
	struct tipc_port *p_ptr = tipc_port_lock(ref);
399
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
400 401 402 403

	if (!p_ptr)
		return;
	buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
404 405
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
406 407 408
}


409
static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
P
Per Liden 已提交
410
{
411
	struct sk_buff *buf = port_build_peer_abort_msg(p_ptr, err);
P
Per Liden 已提交
412

413 414 415 416 417 418
	if (buf) {
		struct tipc_msg *msg = buf_msg(buf);
		msg_swap_words(msg, 4, 5);
		msg_swap_words(msg, 6, 7);
	}
	return buf;
P
Per Liden 已提交
419 420 421
}


422
static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
P
Per Liden 已提交
423
{
424 425 426
	struct sk_buff *buf;
	struct tipc_msg *msg;
	u32 imp;
P
Per Liden 已提交
427

428
	if (!p_ptr->connected)
429
		return NULL;
430 431 432 433 434 435 436 437 438 439 440 441 442

	buf = tipc_buf_acquire(BASIC_H_SIZE);
	if (buf) {
		msg = buf_msg(buf);
		memcpy(msg, &p_ptr->phdr, BASIC_H_SIZE);
		msg_set_hdr_sz(msg, BASIC_H_SIZE);
		msg_set_size(msg, BASIC_H_SIZE);
		imp = msg_importance(msg);
		if (imp < TIPC_CRITICAL_IMPORTANCE)
			msg_set_importance(msg, ++imp);
		msg_set_errcode(msg, err);
	}
	return buf;
P
Per Liden 已提交
443 444
}

445
void tipc_port_proto_rcv(struct sk_buff *buf)
P
Per Liden 已提交
446 447
{
	struct tipc_msg *msg = buf_msg(buf);
448
	struct tipc_port *p_ptr;
449
	struct sk_buff *r_buf = NULL;
450 451 452 453 454
	u32 destport = msg_destport(msg);
	int wakeable;

	/* Validate connection */
	p_ptr = tipc_port_lock(destport);
455
	if (!p_ptr || !p_ptr->connected || !tipc_port_peer_msg(p_ptr, msg)) {
456 457 458 459
		r_buf = tipc_buf_acquire(BASIC_H_SIZE);
		if (r_buf) {
			msg = buf_msg(r_buf);
			tipc_msg_init(msg, TIPC_HIGH_IMPORTANCE, TIPC_CONN_MSG,
460
				      BASIC_H_SIZE, msg_orignode(msg));
461 462
			msg_set_errcode(msg, TIPC_ERR_NO_PORT);
			msg_set_origport(msg, destport);
463
			msg_set_destport(msg, msg_origport(msg));
464
		}
465 466
		if (p_ptr)
			tipc_port_unlock(p_ptr);
P
Per Liden 已提交
467 468 469
		goto exit;
	}

470 471 472
	/* Process protocol message sent by peer */
	switch (msg_type(msg)) {
	case CONN_ACK:
473
		wakeable = tipc_port_congested(p_ptr) && p_ptr->congested;
474 475 476 477
		p_ptr->acked += msg_msgcnt(msg);
		if (!tipc_port_congested(p_ptr)) {
			p_ptr->congested = 0;
			if (wakeable)
478
				tipc_port_wakeup(p_ptr);
479 480 481
		}
		break;
	case CONN_PROBE:
482
		r_buf = port_build_proto_msg(p_ptr, CONN_PROBE_REPLY, 0);
483 484 485 486
		break;
	default:
		/* CONN_PROBE_REPLY or unrecognized - no action required */
		break;
P
Per Liden 已提交
487 488
	}
	p_ptr->probing_state = CONFIRMED;
489
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
490
exit:
491
	tipc_net_route_msg(r_buf);
492
	kfree_skb(buf);
P
Per Liden 已提交
493 494
}

495
static int port_print(struct tipc_port *p_ptr, char *buf, int len, int full_id)
P
Per Liden 已提交
496
{
497
	struct publication *publ;
498
	int ret;
P
Per Liden 已提交
499 500

	if (full_id)
501 502 503 504
		ret = tipc_snprintf(buf, len, "<%u.%u.%u:%u>:",
				    tipc_zone(tipc_own_addr),
				    tipc_cluster(tipc_own_addr),
				    tipc_node(tipc_own_addr), p_ptr->ref);
P
Per Liden 已提交
505
	else
506
		ret = tipc_snprintf(buf, len, "%-10u:", p_ptr->ref);
P
Per Liden 已提交
507

508
	if (p_ptr->connected) {
509 510
		u32 dport = tipc_port_peerport(p_ptr);
		u32 destnode = tipc_port_peernode(p_ptr);
511

512 513 514 515 516
		ret += tipc_snprintf(buf + ret, len - ret,
				     " connected to <%u.%u.%u:%u>",
				     tipc_zone(destnode),
				     tipc_cluster(destnode),
				     tipc_node(destnode), dport);
517
		if (p_ptr->conn_type != 0)
518 519 520
			ret += tipc_snprintf(buf + ret, len - ret,
					     " via {%u,%u}", p_ptr->conn_type,
					     p_ptr->conn_instance);
521
	} else if (p_ptr->published) {
522
		ret += tipc_snprintf(buf + ret, len - ret, " bound to");
523
		list_for_each_entry(publ, &p_ptr->publications, pport_list) {
P
Per Liden 已提交
524
			if (publ->lower == publ->upper)
525 526 527
				ret += tipc_snprintf(buf + ret, len - ret,
						     " {%u,%u}", publ->type,
						     publ->lower);
P
Per Liden 已提交
528
			else
529 530 531
				ret += tipc_snprintf(buf + ret, len - ret,
						     " {%u,%u,%u}", publ->type,
						     publ->lower, publ->upper);
532 533
		}
	}
534 535
	ret += tipc_snprintf(buf + ret, len - ret, "\n");
	return ret;
P
Per Liden 已提交
536 537
}

538
struct sk_buff *tipc_port_get_ports(void)
P
Per Liden 已提交
539 540 541
{
	struct sk_buff *buf;
	struct tlv_desc *rep_tlv;
542 543
	char *pb;
	int pb_len;
544
	struct tipc_port *p_ptr;
545
	int str_len = 0;
P
Per Liden 已提交
546

547
	buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
P
Per Liden 已提交
548 549 550
	if (!buf)
		return NULL;
	rep_tlv = (struct tlv_desc *)buf->data;
551 552
	pb = TLV_DATA(rep_tlv);
	pb_len = ULTRA_STRING_MAX_LEN;
P
Per Liden 已提交
553

554
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
555
	list_for_each_entry(p_ptr, &ports, port_list) {
556
		spin_lock_bh(p_ptr->lock);
557
		str_len += port_print(p_ptr, pb, pb_len, 0);
558
		spin_unlock_bh(p_ptr->lock);
P
Per Liden 已提交
559
	}
560
	spin_unlock_bh(&tipc_port_list_lock);
561
	str_len += 1;	/* for "\0" */
P
Per Liden 已提交
562 563 564 565 566 567
	skb_put(buf, TLV_SPACE(str_len));
	TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);

	return buf;
}

568
void tipc_port_reinit(void)
P
Per Liden 已提交
569
{
570
	struct tipc_port *p_ptr;
P
Per Liden 已提交
571 572
	struct tipc_msg *msg;

573
	spin_lock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
574
	list_for_each_entry(p_ptr, &ports, port_list) {
575
		msg = &p_ptr->phdr;
576
		msg_set_prevnode(msg, tipc_own_addr);
P
Per Liden 已提交
577 578
		msg_set_orignode(msg, tipc_own_addr);
	}
579
	spin_unlock_bh(&tipc_port_list_lock);
P
Per Liden 已提交
580 581 582 583
}

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

587
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
588 589
	if (!p_ptr)
		return;
590 591
	if (p_ptr->connected) {
		p_ptr->conn_unacked -= ack;
592
		buf = port_build_proto_msg(p_ptr, CONN_ACK, ack);
P
Per Liden 已提交
593
	}
594 595
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
P
Per Liden 已提交
596 597
}

598 599
int tipc_publish(struct tipc_port *p_ptr, unsigned int scope,
		 struct tipc_name_seq const *seq)
P
Per Liden 已提交
600 601 602 603
{
	struct publication *publ;
	u32 key;

604
	if (p_ptr->connected)
605
		return -EINVAL;
606 607 608
	key = p_ptr->ref + p_ptr->pub_count + 1;
	if (key == p_ptr->ref)
		return -EADDRINUSE;
609

610
	publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
611
				    scope, p_ptr->ref, key);
P
Per Liden 已提交
612 613 614
	if (publ) {
		list_add(&publ->pport_list, &p_ptr->publications);
		p_ptr->pub_count++;
615
		p_ptr->published = 1;
616
		return 0;
P
Per Liden 已提交
617
	}
618
	return -EINVAL;
P
Per Liden 已提交
619 620
}

621 622
int tipc_withdraw(struct tipc_port *p_ptr, unsigned int scope,
		  struct tipc_name_seq const *seq)
P
Per Liden 已提交
623 624 625 626
{
	struct publication *publ;
	struct publication *tpubl;
	int res = -EINVAL;
627

P
Per Liden 已提交
628
	if (!seq) {
629
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
630
					 &p_ptr->publications, pport_list) {
631
			tipc_nametbl_withdraw(publ->type, publ->lower,
632
					      publ->ref, publ->key);
P
Per Liden 已提交
633
		}
634
		res = 0;
P
Per Liden 已提交
635
	} else {
636
		list_for_each_entry_safe(publ, tpubl,
P
Per Liden 已提交
637 638 639 640 641 642 643 644 645
					 &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;
646
			tipc_nametbl_withdraw(publ->type, publ->lower,
647
					      publ->ref, publ->key);
648
			res = 0;
P
Per Liden 已提交
649 650 651 652
			break;
		}
	}
	if (list_empty(&p_ptr->publications))
653
		p_ptr->published = 0;
P
Per Liden 已提交
654 655 656
	return res;
}

657
int tipc_port_connect(u32 ref, struct tipc_portid const *peer)
P
Per Liden 已提交
658
{
659
	struct tipc_port *p_ptr;
660
	int res;
P
Per Liden 已提交
661

662
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
663 664
	if (!p_ptr)
		return -EINVAL;
665
	res = __tipc_port_connect(ref, p_ptr, peer);
666 667 668 669 670
	tipc_port_unlock(p_ptr);
	return res;
}

/*
671
 * __tipc_port_connect - connect to a remote peer
672 673 674
 *
 * Port must be locked.
 */
675
int __tipc_port_connect(u32 ref, struct tipc_port *p_ptr,
676 677 678 679 680
			struct tipc_portid const *peer)
{
	struct tipc_msg *msg;
	int res = -EINVAL;

681
	if (p_ptr->published || p_ptr->connected)
P
Per Liden 已提交
682 683 684 685
		goto exit;
	if (!peer->ref)
		goto exit;

686
	msg = &p_ptr->phdr;
P
Per Liden 已提交
687 688 689
	msg_set_destnode(msg, peer->node);
	msg_set_destport(msg, peer->ref);
	msg_set_type(msg, TIPC_CONN_MSG);
690
	msg_set_lookup_scope(msg, 0);
691
	msg_set_hdr_sz(msg, SHORT_H_SIZE);
P
Per Liden 已提交
692 693 694

	p_ptr->probing_interval = PROBING_INTERVAL;
	p_ptr->probing_state = CONFIRMED;
695
	p_ptr->connected = 1;
P
Per Liden 已提交
696 697
	k_start_timer(&p_ptr->timer, p_ptr->probing_interval);

698
	tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
699
			  (void *)(unsigned long)ref,
P
Per Liden 已提交
700
			  (net_ev_handler)port_handle_node_down);
701
	res = 0;
P
Per Liden 已提交
702
exit:
703
	p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
P
Per Liden 已提交
704 705 706
	return res;
}

707 708
/*
 * __tipc_disconnect - disconnect port from peer
709 710 711
 *
 * Port must be locked.
 */
712
int __tipc_port_disconnect(struct tipc_port *tp_ptr)
713 714 715 716
{
	if (tp_ptr->connected) {
		tp_ptr->connected = 0;
		/* let timer expire on it's own to avoid deadlock! */
J
Joe Perches 已提交
717
		tipc_nodesub_unsubscribe(&tp_ptr->subscription);
718
		return 0;
719
	}
720 721

	return -ENOTCONN;
722 723
}

P
Per Liden 已提交
724
/*
725
 * tipc_port_disconnect(): Disconnect port form peer.
P
Per Liden 已提交
726 727
 *                    This is a node local operation.
 */
728
int tipc_port_disconnect(u32 ref)
P
Per Liden 已提交
729
{
730
	struct tipc_port *p_ptr;
731
	int res;
P
Per Liden 已提交
732

733
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
734 735
	if (!p_ptr)
		return -EINVAL;
736
	res = __tipc_port_disconnect(p_ptr);
737
	tipc_port_unlock(p_ptr);
P
Per Liden 已提交
738 739 740 741
	return res;
}

/*
742
 * tipc_port_shutdown(): Send a SHUTDOWN msg to peer and disconnect
P
Per Liden 已提交
743
 */
744
int tipc_port_shutdown(u32 ref)
P
Per Liden 已提交
745
{
746
	struct tipc_port *p_ptr;
747
	struct sk_buff *buf = NULL;
P
Per Liden 已提交
748

749
	p_ptr = tipc_port_lock(ref);
P
Per Liden 已提交
750 751 752
	if (!p_ptr)
		return -EINVAL;

753
	buf = port_build_peer_abort_msg(p_ptr, TIPC_CONN_SHUTDOWN);
754 755
	tipc_port_unlock(p_ptr);
	tipc_net_route_msg(buf);
756
	return tipc_port_disconnect(ref);
P
Per Liden 已提交
757 758
}

759
/**
760
 * tipc_port_rcv - receive message from lower layer and deliver to port user
761
 */
762
int tipc_port_rcv(struct sk_buff *buf)
763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
{
	struct tipc_port *p_ptr;
	struct tipc_msg *msg = buf_msg(buf);
	u32 destport = msg_destport(msg);
	u32 dsz = msg_data_sz(msg);
	u32 err;

	/* forward unresolved named message */
	if (unlikely(!destport)) {
		tipc_net_route_msg(buf);
		return dsz;
	}

	/* validate destination & pass to port, otherwise reject message */
	p_ptr = tipc_port_lock(destport);
	if (likely(p_ptr)) {
779
		err = tipc_sk_rcv(tipc_port_to_sk(p_ptr), buf);
780 781 782 783 784 785
		tipc_port_unlock(p_ptr);
		if (likely(!err))
			return dsz;
	} else {
		err = TIPC_ERR_NO_PORT;
	}
786

787 788 789
	return tipc_reject_msg(buf, err);
}

P
Per Liden 已提交
790
/*
791 792
 *  tipc_port_iovec_rcv: Concatenate and deliver sectioned
 *                       message for this node.
P
Per Liden 已提交
793
 */
794 795 796
static int tipc_port_iovec_rcv(struct tipc_port *sender,
			       struct iovec const *msg_sect,
			       unsigned int len)
P
Per Liden 已提交
797 798 799
{
	struct sk_buff *buf;
	int res;
800

801
	res = tipc_msg_build(&sender->phdr, msg_sect, len, MAX_MSG_SIZE, &buf);
P
Per Liden 已提交
802
	if (likely(buf))
803
		tipc_port_rcv(buf);
P
Per Liden 已提交
804 805 806 807 808 809
	return res;
}

/**
 * tipc_send - send message sections on connection
 */
810
int tipc_send(u32 ref, struct iovec const *msg_sect, unsigned int len)
P
Per Liden 已提交
811
{
812
	struct tipc_port *p_ptr;
P
Per Liden 已提交
813 814 815
	u32 destnode;
	int res;

816
	p_ptr = tipc_port_deref(ref);
817
	if (!p_ptr || !p_ptr->connected)
P
Per Liden 已提交
818 819
		return -EINVAL;

820
	p_ptr->congested = 1;
821
	if (!tipc_port_congested(p_ptr)) {
822
		destnode = tipc_port_peernode(p_ptr);
823
		if (likely(!in_own_node(destnode)))
824 825
			res = tipc_link_iovec_xmit_fast(p_ptr, msg_sect, len,
							destnode);
P
Per Liden 已提交
826
		else
827
			res = tipc_port_iovec_rcv(p_ptr, msg_sect, len);
P
Per Liden 已提交
828 829

		if (likely(res != -ELINKCONG)) {
830
			p_ptr->congested = 0;
831 832
			if (res > 0)
				p_ptr->sent++;
P
Per Liden 已提交
833 834 835
			return res;
		}
	}
836
	if (tipc_port_unreliable(p_ptr)) {
837
		p_ptr->congested = 0;
838
		return len;
P
Per Liden 已提交
839 840 841 842 843
	}
	return -ELINKCONG;
}

/**
844
 * tipc_send2name - send message sections to port name
P
Per Liden 已提交
845
 */
846
int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
847
		   struct iovec const *msg_sect, unsigned int len)
P
Per Liden 已提交
848
{
849
	struct tipc_port *p_ptr;
P
Per Liden 已提交
850 851
	struct tipc_msg *msg;
	u32 destnode = domain;
852
	u32 destport;
P
Per Liden 已提交
853 854
	int res;

855
	p_ptr = tipc_port_deref(ref);
856
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
857 858
		return -EINVAL;

859
	msg = &p_ptr->phdr;
P
Per Liden 已提交
860
	msg_set_type(msg, TIPC_NAMED_MSG);
861
	msg_set_hdr_sz(msg, NAMED_H_SIZE);
P
Per Liden 已提交
862 863
	msg_set_nametype(msg, name->type);
	msg_set_nameinst(msg, name->instance);
864
	msg_set_lookup_scope(msg, tipc_addr_scope(domain));
865
	destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
P
Per Liden 已提交
866 867 868
	msg_set_destnode(msg, destnode);
	msg_set_destport(msg, destport);

869
	if (likely(destport || destnode)) {
870
		if (likely(in_own_node(destnode)))
871
			res = tipc_port_iovec_rcv(p_ptr, msg_sect, len);
872
		else if (tipc_own_addr)
873 874
			res = tipc_link_iovec_xmit_fast(p_ptr, msg_sect, len,
							destnode);
875
		else
876 877
			res = tipc_port_iovec_reject(p_ptr, msg, msg_sect,
						     len, TIPC_ERR_NO_NODE);
878 879 880
		if (likely(res != -ELINKCONG)) {
			if (res > 0)
				p_ptr->sent++;
P
Per Liden 已提交
881
			return res;
882
		}
883
		if (tipc_port_unreliable(p_ptr))
884
			return len;
885

P
Per Liden 已提交
886 887
		return -ELINKCONG;
	}
888 889
	return tipc_port_iovec_reject(p_ptr, msg, msg_sect, len,
				      TIPC_ERR_NO_NAME);
P
Per Liden 已提交
890 891 892
}

/**
893
 * tipc_send2port - send message sections to port identity
P
Per Liden 已提交
894
 */
895
int tipc_send2port(u32 ref, struct tipc_portid const *dest,
896
		   struct iovec const *msg_sect, unsigned int len)
P
Per Liden 已提交
897
{
898
	struct tipc_port *p_ptr;
P
Per Liden 已提交
899 900 901
	struct tipc_msg *msg;
	int res;

902
	p_ptr = tipc_port_deref(ref);
903
	if (!p_ptr || p_ptr->connected)
P
Per Liden 已提交
904 905
		return -EINVAL;

906
	msg = &p_ptr->phdr;
P
Per Liden 已提交
907
	msg_set_type(msg, TIPC_DIRECT_MSG);
908
	msg_set_lookup_scope(msg, 0);
P
Per Liden 已提交
909 910
	msg_set_destnode(msg, dest->node);
	msg_set_destport(msg, dest->ref);
911
	msg_set_hdr_sz(msg, BASIC_H_SIZE);
912

913
	if (in_own_node(dest->node))
914
		res =  tipc_port_iovec_rcv(p_ptr, msg_sect, len);
915
	else if (tipc_own_addr)
916 917
		res = tipc_link_iovec_xmit_fast(p_ptr, msg_sect, len,
						dest->node);
918
	else
919
		res = tipc_port_iovec_reject(p_ptr, msg, msg_sect, len,
920
						TIPC_ERR_NO_NODE);
921 922 923
	if (likely(res != -ELINKCONG)) {
		if (res > 0)
			p_ptr->sent++;
P
Per Liden 已提交
924
		return res;
925
	}
926
	if (tipc_port_unreliable(p_ptr))
927
		return len;
928

P
Per Liden 已提交
929 930
	return -ELINKCONG;
}