blob: db14b7e0afdc308be369e8ca85b33fc748a74f5c [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/port.c: TIPC port code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1992-2007, Ericsson AB
Allan Stephens0ea52242008-07-14 22:42:19 -07005 * Copyright (c) 2004-2008, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "port.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "name_table.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42/* Connection management: */
43#define PROBING_INTERVAL 3600000 /* [ms] => 1 h */
44#define CONFIRMED 0
45#define PROBING 1
46
47#define MAX_REJECT_SIZE 1024
48
Sam Ravnborg1fc54d82006-03-20 22:36:47 -080049static struct sk_buff *msg_queue_head = NULL;
50static struct sk_buff *msg_queue_tail = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010051
Ingo Molnar34af9462006-06-27 02:53:55 -070052DEFINE_SPINLOCK(tipc_port_list_lock);
53static DEFINE_SPINLOCK(queue_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +010054
Per Liden4323add2006-01-18 00:38:21 +010055static LIST_HEAD(ports);
Per Lidenb97bf3f2006-01-02 19:04:38 +010056static void port_handle_node_down(unsigned long ref);
57static struct sk_buff* port_build_self_abort_msg(struct port *,u32 err);
58static struct sk_buff* port_build_peer_abort_msg(struct port *,u32 err);
59static void port_timeout(unsigned long ref);
60
61
Sam Ravnborg05790c62006-03-20 22:37:04 -080062static u32 port_peernode(struct port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010063{
64 return msg_destnode(&p_ptr->publ.phdr);
65}
66
Sam Ravnborg05790c62006-03-20 22:37:04 -080067static u32 port_peerport(struct port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010068{
69 return msg_destport(&p_ptr->publ.phdr);
70}
71
Sam Ravnborg05790c62006-03-20 22:37:04 -080072static u32 port_out_seqno(struct port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010073{
74 return msg_transp_seqno(&p_ptr->publ.phdr);
75}
76
Sam Ravnborg05790c62006-03-20 22:37:04 -080077static void port_incr_out_seqno(struct port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010078{
79 struct tipc_msg *m = &p_ptr->publ.phdr;
80
81 if (likely(!msg_routed(m)))
82 return;
83 msg_set_transp_seqno(m, (msg_transp_seqno(m) + 1));
84}
85
86/**
87 * tipc_multicast - send a multicast message to local and remote destinations
88 */
89
Allan Stephens38f232e2010-11-30 12:00:59 +000090int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
Per Lidenb97bf3f2006-01-02 19:04:38 +010091 u32 num_sect, struct iovec const *msg_sect)
92{
93 struct tipc_msg *hdr;
94 struct sk_buff *buf;
95 struct sk_buff *ibuf = NULL;
96 struct port_list dports = {0, NULL, };
Per Liden4323add2006-01-18 00:38:21 +010097 struct port *oport = tipc_port_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 int ext_targets;
99 int res;
100
101 if (unlikely(!oport))
102 return -EINVAL;
103
104 /* Create multicast message */
105
106 hdr = &oport->publ.phdr;
107 msg_set_type(hdr, TIPC_MCAST_MSG);
108 msg_set_nametype(hdr, seq->type);
109 msg_set_namelower(hdr, seq->lower);
110 msg_set_nameupper(hdr, seq->upper);
111 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000112 res = tipc_msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113 !oport->user_port, &buf);
114 if (unlikely(!buf))
115 return res;
116
117 /* Figure out where to send multicast message */
118
Per Liden4323add2006-01-18 00:38:21 +0100119 ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
120 TIPC_NODE_SCOPE, &dports);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900121
122 /* Send message to destinations (duplicate it only if necessary) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123
124 if (ext_targets) {
125 if (dports.count != 0) {
126 ibuf = skb_copy(buf, GFP_ATOMIC);
127 if (ibuf == NULL) {
Per Liden4323add2006-01-18 00:38:21 +0100128 tipc_port_list_free(&dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129 buf_discard(buf);
130 return -ENOMEM;
131 }
132 }
Per Liden4323add2006-01-18 00:38:21 +0100133 res = tipc_bclink_send_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134 if ((res < 0) && (dports.count != 0)) {
135 buf_discard(ibuf);
136 }
137 } else {
138 ibuf = buf;
139 }
140
141 if (res >= 0) {
142 if (ibuf)
Per Liden4323add2006-01-18 00:38:21 +0100143 tipc_port_recv_mcast(ibuf, &dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 } else {
Per Liden4323add2006-01-18 00:38:21 +0100145 tipc_port_list_free(&dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146 }
147 return res;
148}
149
150/**
Per Liden4323add2006-01-18 00:38:21 +0100151 * tipc_port_recv_mcast - deliver multicast message to all destination ports
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900152 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153 * If there is no port list, perform a lookup to create one
154 */
155
Per Liden4323add2006-01-18 00:38:21 +0100156void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157{
158 struct tipc_msg* msg;
159 struct port_list dports = {0, NULL, };
160 struct port_list *item = dp;
161 int cnt = 0;
162
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 msg = buf_msg(buf);
164
165 /* Create destination port list, if one wasn't supplied */
166
167 if (dp == NULL) {
Per Liden4323add2006-01-18 00:38:21 +0100168 tipc_nametbl_mc_translate(msg_nametype(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169 msg_namelower(msg),
170 msg_nameupper(msg),
171 TIPC_CLUSTER_SCOPE,
172 &dports);
173 item = dp = &dports;
174 }
175
176 /* Deliver a copy of message to each destination port */
177
178 if (dp->count != 0) {
179 if (dp->count == 1) {
180 msg_set_destport(msg, dp->ports[0]);
Per Liden4323add2006-01-18 00:38:21 +0100181 tipc_port_recv_msg(buf);
182 tipc_port_list_free(dp);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100183 return;
184 }
185 for (; cnt < dp->count; cnt++) {
186 int index = cnt % PLSIZE;
187 struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);
188
189 if (b == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700190 warn("Unable to deliver multicast message(s)\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100191 goto exit;
192 }
193 if ((index == 0) && (cnt != 0)) {
194 item = item->next;
195 }
196 msg_set_destport(buf_msg(b),item->ports[index]);
Per Liden4323add2006-01-18 00:38:21 +0100197 tipc_port_recv_msg(b);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 }
199 }
200exit:
201 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100202 tipc_port_list_free(dp);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100203}
204
205/**
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700206 * tipc_createport_raw - create a generic TIPC port
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900207 *
Allan Stephens0ea52242008-07-14 22:42:19 -0700208 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209 */
210
Allan Stephens0ea52242008-07-14 22:42:19 -0700211struct tipc_port *tipc_createport_raw(void *usr_handle,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
213 void (*wakeup)(struct tipc_port *),
Allan Stephens0ea52242008-07-14 22:42:19 -0700214 const u32 importance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215{
216 struct port *p_ptr;
217 struct tipc_msg *msg;
218 u32 ref;
219
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700220 p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700221 if (!p_ptr) {
222 warn("Port creation failed, no memory\n");
Allan Stephens0ea52242008-07-14 22:42:19 -0700223 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224 }
Per Liden4323add2006-01-18 00:38:21 +0100225 ref = tipc_ref_acquire(p_ptr, &p_ptr->publ.lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 if (!ref) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700227 warn("Port creation failed, reference table exhausted\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228 kfree(p_ptr);
Allan Stephens0ea52242008-07-14 22:42:19 -0700229 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 }
231
Allan Stephens05646c92007-06-10 17:25:24 -0700232 p_ptr->publ.usr_handle = usr_handle;
233 p_ptr->publ.max_pkt = MAX_PKT_DEFAULT;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 p_ptr->publ.ref = ref;
235 msg = &p_ptr->publ.phdr;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000236 tipc_msg_init(msg, importance, TIPC_NAMED_MSG, LONG_H_SIZE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238 p_ptr->last_in_seqno = 41;
239 p_ptr->sent = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240 INIT_LIST_HEAD(&p_ptr->wait_list);
241 INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 p_ptr->dispatcher = dispatcher;
243 p_ptr->wakeup = wakeup;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800244 p_ptr->user_port = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245 k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
Per Liden4323add2006-01-18 00:38:21 +0100246 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247 INIT_LIST_HEAD(&p_ptr->publications);
248 INIT_LIST_HEAD(&p_ptr->port_list);
249 list_add_tail(&p_ptr->port_list, &ports);
Per Liden4323add2006-01-18 00:38:21 +0100250 spin_unlock_bh(&tipc_port_list_lock);
Allan Stephens0ea52242008-07-14 22:42:19 -0700251 return &(p_ptr->publ);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252}
253
254int tipc_deleteport(u32 ref)
255{
256 struct port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800257 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800259 tipc_withdraw(ref, 0, NULL);
Per Liden4323add2006-01-18 00:38:21 +0100260 p_ptr = tipc_port_lock(ref);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900261 if (!p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 return -EINVAL;
263
Per Liden4323add2006-01-18 00:38:21 +0100264 tipc_ref_discard(ref);
265 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266
267 k_cancel_timer(&p_ptr->timer);
268 if (p_ptr->publ.connected) {
269 buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
Per Liden4323add2006-01-18 00:38:21 +0100270 tipc_nodesub_unsubscribe(&p_ptr->subscription);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100271 }
Allan Stephense83504f2010-12-31 18:59:30 +0000272 kfree(p_ptr->user_port);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100273
Per Liden4323add2006-01-18 00:38:21 +0100274 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 list_del(&p_ptr->port_list);
276 list_del(&p_ptr->wait_list);
Per Liden4323add2006-01-18 00:38:21 +0100277 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100278 k_term_timer(&p_ptr->timer);
279 kfree(p_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100280 tipc_net_route_msg(buf);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700281 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282}
283
Sam Ravnborg05790c62006-03-20 22:37:04 -0800284static int port_unreliable(struct port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285{
286 return msg_src_droppable(&p_ptr->publ.phdr);
287}
288
289int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
290{
291 struct port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900292
Per Liden4323add2006-01-18 00:38:21 +0100293 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294 if (!p_ptr)
295 return -EINVAL;
296 *isunreliable = port_unreliable(p_ptr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800297 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700298 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299}
300
301int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
302{
303 struct port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900304
Per Liden4323add2006-01-18 00:38:21 +0100305 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306 if (!p_ptr)
307 return -EINVAL;
308 msg_set_src_droppable(&p_ptr->publ.phdr, (isunreliable != 0));
Per Liden4323add2006-01-18 00:38:21 +0100309 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700310 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311}
312
Sam Ravnborg05790c62006-03-20 22:37:04 -0800313static int port_unreturnable(struct port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314{
315 return msg_dest_droppable(&p_ptr->publ.phdr);
316}
317
318int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
319{
320 struct port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900321
Per Liden4323add2006-01-18 00:38:21 +0100322 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 if (!p_ptr)
324 return -EINVAL;
325 *isunrejectable = port_unreturnable(p_ptr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800326 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700327 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328}
329
330int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
331{
332 struct port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900333
Per Liden4323add2006-01-18 00:38:21 +0100334 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 if (!p_ptr)
336 return -EINVAL;
337 msg_set_dest_droppable(&p_ptr->publ.phdr, (isunrejectable != 0));
Per Liden4323add2006-01-18 00:38:21 +0100338 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700339 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340}
341
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900342/*
343 * port_build_proto_msg(): build a port level protocol
344 * or a connection abortion message. Called with
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 * tipc_port lock on.
346 */
347static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
348 u32 origport, u32 orignode,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900349 u32 usr, u32 type, u32 err,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 u32 seqno, u32 ack)
351{
352 struct sk_buff *buf;
353 struct tipc_msg *msg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900354
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000355 buf = tipc_buf_acquire(LONG_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100356 if (buf) {
357 msg = buf_msg(buf);
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000358 tipc_msg_init(msg, usr, type, LONG_H_SIZE, destnode);
Allan Stephens75715212008-06-04 17:37:34 -0700359 msg_set_errcode(msg, err);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360 msg_set_destport(msg, destport);
361 msg_set_origport(msg, origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362 msg_set_orignode(msg, orignode);
363 msg_set_transp_seqno(msg, seqno);
364 msg_set_msgcnt(msg, ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365 }
366 return buf;
367}
368
Per Lidenb97bf3f2006-01-02 19:04:38 +0100369int tipc_reject_msg(struct sk_buff *buf, u32 err)
370{
371 struct tipc_msg *msg = buf_msg(buf);
372 struct sk_buff *rbuf;
373 struct tipc_msg *rmsg;
374 int hdr_sz;
375 u32 imp = msg_importance(msg);
376 u32 data_sz = msg_data_sz(msg);
377
378 if (data_sz > MAX_REJECT_SIZE)
379 data_sz = MAX_REJECT_SIZE;
380 if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE))
381 imp++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382
383 /* discard rejected message if it shouldn't be returned to sender */
384 if (msg_errcode(msg) || msg_dest_droppable(msg)) {
385 buf_discard(buf);
386 return data_sz;
387 }
388
389 /* construct rejected message */
390 if (msg_mcast(msg))
391 hdr_sz = MCAST_H_SIZE;
392 else
393 hdr_sz = LONG_H_SIZE;
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000394 rbuf = tipc_buf_acquire(data_sz + hdr_sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395 if (rbuf == NULL) {
396 buf_discard(buf);
397 return data_sz;
398 }
399 rmsg = buf_msg(rbuf);
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000400 tipc_msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
Allan Stephens75715212008-06-04 17:37:34 -0700401 msg_set_errcode(rmsg, err);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 msg_set_destport(rmsg, msg_origport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100403 msg_set_origport(rmsg, msg_destport(msg));
Allan Stephens99c14592008-06-04 17:48:25 -0700404 if (msg_short(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 msg_set_orignode(rmsg, tipc_own_addr);
Allan Stephens99c14592008-06-04 17:48:25 -0700406 /* leave name type & instance as zeroes */
407 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408 msg_set_orignode(rmsg, msg_destnode(msg));
Allan Stephens99c14592008-06-04 17:48:25 -0700409 msg_set_nametype(rmsg, msg_nametype(msg));
410 msg_set_nameinst(rmsg, msg_nameinst(msg));
411 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900412 msg_set_size(rmsg, data_sz + hdr_sz);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300413 skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414
415 /* send self-abort message when rejecting on a connected port */
416 if (msg_connected(msg)) {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800417 struct sk_buff *abuf = NULL;
Per Liden4323add2006-01-18 00:38:21 +0100418 struct port *p_ptr = tipc_port_lock(msg_destport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419
420 if (p_ptr) {
421 if (p_ptr->publ.connected)
422 abuf = port_build_self_abort_msg(p_ptr, err);
Per Liden4323add2006-01-18 00:38:21 +0100423 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 }
Per Liden4323add2006-01-18 00:38:21 +0100425 tipc_net_route_msg(abuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426 }
427
428 /* send rejected message */
429 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100430 tipc_net_route_msg(rbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100431 return data_sz;
432}
433
Per Liden4323add2006-01-18 00:38:21 +0100434int tipc_port_reject_sections(struct port *p_ptr, struct tipc_msg *hdr,
435 struct iovec const *msg_sect, u32 num_sect,
436 int err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437{
438 struct sk_buff *buf;
439 int res;
440
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000441 res = tipc_msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100442 !p_ptr->user_port, &buf);
443 if (!buf)
444 return res;
445
446 return tipc_reject_msg(buf, err);
447}
448
449static void port_timeout(unsigned long ref)
450{
Per Liden4323add2006-01-18 00:38:21 +0100451 struct port *p_ptr = tipc_port_lock(ref);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800452 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100453
Allan Stephens065fd172006-10-16 21:38:05 -0700454 if (!p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455 return;
456
Allan Stephens065fd172006-10-16 21:38:05 -0700457 if (!p_ptr->publ.connected) {
458 tipc_port_unlock(p_ptr);
459 return;
460 }
461
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462 /* Last probe answered ? */
463 if (p_ptr->probing_state == PROBING) {
464 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
465 } else {
466 buf = port_build_proto_msg(port_peerport(p_ptr),
467 port_peernode(p_ptr),
468 p_ptr->publ.ref,
469 tipc_own_addr,
470 CONN_MANAGER,
471 CONN_PROBE,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900472 TIPC_OK,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 port_out_seqno(p_ptr),
474 0);
475 port_incr_out_seqno(p_ptr);
476 p_ptr->probing_state = PROBING;
477 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
478 }
Per Liden4323add2006-01-18 00:38:21 +0100479 tipc_port_unlock(p_ptr);
480 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100481}
482
483
484static void port_handle_node_down(unsigned long ref)
485{
Per Liden4323add2006-01-18 00:38:21 +0100486 struct port *p_ptr = tipc_port_lock(ref);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800487 struct sk_buff* buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100488
489 if (!p_ptr)
490 return;
491 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
Per Liden4323add2006-01-18 00:38:21 +0100492 tipc_port_unlock(p_ptr);
493 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100494}
495
496
497static struct sk_buff *port_build_self_abort_msg(struct port *p_ptr, u32 err)
498{
499 u32 imp = msg_importance(&p_ptr->publ.phdr);
500
501 if (!p_ptr->publ.connected)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800502 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100503 if (imp < TIPC_CRITICAL_IMPORTANCE)
504 imp++;
505 return port_build_proto_msg(p_ptr->publ.ref,
506 tipc_own_addr,
507 port_peerport(p_ptr),
508 port_peernode(p_ptr),
509 imp,
510 TIPC_CONN_MSG,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900511 err,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512 p_ptr->last_in_seqno + 1,
513 0);
514}
515
516
517static struct sk_buff *port_build_peer_abort_msg(struct port *p_ptr, u32 err)
518{
519 u32 imp = msg_importance(&p_ptr->publ.phdr);
520
521 if (!p_ptr->publ.connected)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800522 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100523 if (imp < TIPC_CRITICAL_IMPORTANCE)
524 imp++;
525 return port_build_proto_msg(port_peerport(p_ptr),
526 port_peernode(p_ptr),
527 p_ptr->publ.ref,
528 tipc_own_addr,
529 imp,
530 TIPC_CONN_MSG,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900531 err,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100532 port_out_seqno(p_ptr),
533 0);
534}
535
Per Liden4323add2006-01-18 00:38:21 +0100536void tipc_port_recv_proto_msg(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537{
538 struct tipc_msg *msg = buf_msg(buf);
Per Liden4323add2006-01-18 00:38:21 +0100539 struct port *p_ptr = tipc_port_lock(msg_destport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540 u32 err = TIPC_OK;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800541 struct sk_buff *r_buf = NULL;
542 struct sk_buff *abort_buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100543
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544 if (!p_ptr) {
545 err = TIPC_ERR_NO_PORT;
546 } else if (p_ptr->publ.connected) {
Allan Stephens96d841b2010-08-17 11:00:11 +0000547 if ((port_peernode(p_ptr) != msg_orignode(msg)) ||
548 (port_peerport(p_ptr) != msg_origport(msg))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100549 err = TIPC_ERR_NO_PORT;
Allan Stephens96d841b2010-08-17 11:00:11 +0000550 } else if (msg_type(msg) == CONN_ACK) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900551 int wakeup = tipc_port_congested(p_ptr) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100552 p_ptr->publ.congested &&
553 p_ptr->wakeup;
554 p_ptr->acked += msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +0100555 if (tipc_port_congested(p_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100556 goto exit;
557 p_ptr->publ.congested = 0;
558 if (!wakeup)
559 goto exit;
560 p_ptr->wakeup(&p_ptr->publ);
561 goto exit;
562 }
563 } else if (p_ptr->publ.published) {
564 err = TIPC_ERR_NO_PORT;
565 }
566 if (err) {
567 r_buf = port_build_proto_msg(msg_origport(msg),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900568 msg_orignode(msg),
569 msg_destport(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100570 tipc_own_addr,
Allan Stephens06d82c92008-03-06 15:06:55 -0800571 TIPC_HIGH_IMPORTANCE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100572 TIPC_CONN_MSG,
573 err,
574 0,
575 0);
576 goto exit;
577 }
578
579 /* All is fine */
580 if (msg_type(msg) == CONN_PROBE) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900581 r_buf = port_build_proto_msg(msg_origport(msg),
582 msg_orignode(msg),
583 msg_destport(msg),
584 tipc_own_addr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585 CONN_MANAGER,
586 CONN_PROBE_REPLY,
587 TIPC_OK,
588 port_out_seqno(p_ptr),
589 0);
590 }
591 p_ptr->probing_state = CONFIRMED;
592 port_incr_out_seqno(p_ptr);
593exit:
594 if (p_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100595 tipc_port_unlock(p_ptr);
596 tipc_net_route_msg(r_buf);
597 tipc_net_route_msg(abort_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598 buf_discard(buf);
599}
600
601static void port_print(struct port *p_ptr, struct print_buf *buf, int full_id)
602{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900603 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604
605 if (full_id)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900606 tipc_printf(buf, "<%u.%u.%u:%u>:",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100607 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900608 tipc_node(tipc_own_addr), p_ptr->publ.ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100609 else
610 tipc_printf(buf, "%-10u:", p_ptr->publ.ref);
611
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900612 if (p_ptr->publ.connected) {
613 u32 dport = port_peerport(p_ptr);
614 u32 destnode = port_peernode(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100615
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900616 tipc_printf(buf, " connected to <%u.%u.%u:%u>",
617 tipc_zone(destnode), tipc_cluster(destnode),
618 tipc_node(destnode), dport);
619 if (p_ptr->publ.conn_type != 0)
620 tipc_printf(buf, " via {%u,%u}",
621 p_ptr->publ.conn_type,
622 p_ptr->publ.conn_instance);
623 }
624 else if (p_ptr->publ.published) {
625 tipc_printf(buf, " bound to");
626 list_for_each_entry(publ, &p_ptr->publications, pport_list) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 if (publ->lower == publ->upper)
628 tipc_printf(buf, " {%u,%u}", publ->type,
629 publ->lower);
630 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900631 tipc_printf(buf, " {%u,%u,%u}", publ->type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 publ->lower, publ->upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900633 }
634 }
635 tipc_printf(buf, "\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636}
637
638#define MAX_PORT_QUERY 32768
639
Per Liden4323add2006-01-18 00:38:21 +0100640struct sk_buff *tipc_port_get_ports(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641{
642 struct sk_buff *buf;
643 struct tlv_desc *rep_tlv;
644 struct print_buf pb;
645 struct port *p_ptr;
646 int str_len;
647
Per Liden4323add2006-01-18 00:38:21 +0100648 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 if (!buf)
650 return NULL;
651 rep_tlv = (struct tlv_desc *)buf->data;
652
Per Liden4323add2006-01-18 00:38:21 +0100653 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
654 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 list_for_each_entry(p_ptr, &ports, port_list) {
656 spin_lock_bh(p_ptr->publ.lock);
657 port_print(p_ptr, &pb, 0);
658 spin_unlock_bh(p_ptr->publ.lock);
659 }
Per Liden4323add2006-01-18 00:38:21 +0100660 spin_unlock_bh(&tipc_port_list_lock);
661 str_len = tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100662
663 skb_put(buf, TLV_SPACE(str_len));
664 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
665
666 return buf;
667}
668
Per Liden4323add2006-01-18 00:38:21 +0100669void tipc_port_reinit(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670{
671 struct port *p_ptr;
672 struct tipc_msg *msg;
673
Per Liden4323add2006-01-18 00:38:21 +0100674 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100675 list_for_each_entry(p_ptr, &ports, port_list) {
676 msg = &p_ptr->publ.phdr;
677 if (msg_orignode(msg) == tipc_own_addr)
678 break;
Allan Stephens6d4a6672008-05-21 14:54:12 -0700679 msg_set_prevnode(msg, tipc_own_addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100680 msg_set_orignode(msg, tipc_own_addr);
681 }
Per Liden4323add2006-01-18 00:38:21 +0100682 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100683}
684
685
686/*
687 * port_dispatcher_sigh(): Signal handler for messages destinated
688 * to the tipc_port interface.
689 */
690
691static void port_dispatcher_sigh(void *dummy)
692{
693 struct sk_buff *buf;
694
695 spin_lock_bh(&queue_lock);
696 buf = msg_queue_head;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800697 msg_queue_head = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698 spin_unlock_bh(&queue_lock);
699
700 while (buf) {
701 struct port *p_ptr;
702 struct user_port *up_ptr;
703 struct tipc_portid orig;
704 struct tipc_name_seq dseq;
705 void *usr_handle;
706 int connected;
707 int published;
Allan Stephens96882432006-06-25 23:38:58 -0700708 u32 message_type;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100709
710 struct sk_buff *next = buf->next;
711 struct tipc_msg *msg = buf_msg(buf);
712 u32 dref = msg_destport(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900713
Allan Stephens96882432006-06-25 23:38:58 -0700714 message_type = msg_type(msg);
715 if (message_type > TIPC_DIRECT_MSG)
716 goto reject; /* Unsupported message type */
717
Per Liden4323add2006-01-18 00:38:21 +0100718 p_ptr = tipc_port_lock(dref);
Allan Stephens96882432006-06-25 23:38:58 -0700719 if (!p_ptr)
720 goto reject; /* Port deleted while msg in queue */
721
Per Lidenb97bf3f2006-01-02 19:04:38 +0100722 orig.ref = msg_origport(msg);
723 orig.node = msg_orignode(msg);
724 up_ptr = p_ptr->user_port;
725 usr_handle = up_ptr->usr_handle;
726 connected = p_ptr->publ.connected;
727 published = p_ptr->publ.published;
728
729 if (unlikely(msg_errcode(msg)))
730 goto err;
731
Allan Stephens96882432006-06-25 23:38:58 -0700732 switch (message_type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900733
Per Lidenb97bf3f2006-01-02 19:04:38 +0100734 case TIPC_CONN_MSG:{
735 tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
736 u32 peer_port = port_peerport(p_ptr);
737 u32 peer_node = port_peernode(p_ptr);
738
Julia Lawall4cec72c2008-01-08 23:48:20 -0800739 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700740 if (unlikely(!cb))
741 goto reject;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100742 if (unlikely(!connected)) {
Allan Stephens84b07c12008-06-04 17:28:21 -0700743 if (tipc_connect2port(dref, &orig))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 goto reject;
Allan Stephens84b07c12008-06-04 17:28:21 -0700745 } else if ((msg_origport(msg) != peer_port) ||
746 (msg_orignode(msg) != peer_node))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100747 goto reject;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900748 if (unlikely(++p_ptr->publ.conn_unacked >=
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749 TIPC_FLOW_CONTROL_WIN))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900750 tipc_acknowledge(dref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 p_ptr->publ.conn_unacked);
752 skb_pull(buf, msg_hdr_sz(msg));
753 cb(usr_handle, dref, &buf, msg_data(msg),
754 msg_data_sz(msg));
755 break;
756 }
757 case TIPC_DIRECT_MSG:{
758 tipc_msg_event cb = up_ptr->msg_cb;
759
Julia Lawall4cec72c2008-01-08 23:48:20 -0800760 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700761 if (unlikely(!cb || connected))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100762 goto reject;
763 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900764 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100765 msg_data_sz(msg), msg_importance(msg),
766 &orig);
767 break;
768 }
Allan Stephens96882432006-06-25 23:38:58 -0700769 case TIPC_MCAST_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100770 case TIPC_NAMED_MSG:{
771 tipc_named_msg_event cb = up_ptr->named_msg_cb;
772
Julia Lawall4cec72c2008-01-08 23:48:20 -0800773 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700774 if (unlikely(!cb || connected || !published))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100775 goto reject;
776 dseq.type = msg_nametype(msg);
777 dseq.lower = msg_nameinst(msg);
Allan Stephens96882432006-06-25 23:38:58 -0700778 dseq.upper = (message_type == TIPC_NAMED_MSG)
779 ? dseq.lower : msg_nameupper(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900781 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100782 msg_data_sz(msg), msg_importance(msg),
783 &orig, &dseq);
784 break;
785 }
786 }
787 if (buf)
788 buf_discard(buf);
789 buf = next;
790 continue;
791err:
Allan Stephens96882432006-06-25 23:38:58 -0700792 switch (message_type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900793
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 case TIPC_CONN_MSG:{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900795 tipc_conn_shutdown_event cb =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100796 up_ptr->conn_err_cb;
797 u32 peer_port = port_peerport(p_ptr);
798 u32 peer_node = port_peernode(p_ptr);
799
Julia Lawall4cec72c2008-01-08 23:48:20 -0800800 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700801 if (!cb || !connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100802 break;
Allan Stephens5307e462008-06-04 17:28:45 -0700803 if ((msg_origport(msg) != peer_port) ||
804 (msg_orignode(msg) != peer_node))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100805 break;
806 tipc_disconnect(dref);
807 skb_pull(buf, msg_hdr_sz(msg));
808 cb(usr_handle, dref, &buf, msg_data(msg),
809 msg_data_sz(msg), msg_errcode(msg));
810 break;
811 }
812 case TIPC_DIRECT_MSG:{
813 tipc_msg_err_event cb = up_ptr->err_cb;
814
Julia Lawall4cec72c2008-01-08 23:48:20 -0800815 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700816 if (!cb || connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100817 break;
818 skb_pull(buf, msg_hdr_sz(msg));
819 cb(usr_handle, dref, &buf, msg_data(msg),
820 msg_data_sz(msg), msg_errcode(msg), &orig);
821 break;
822 }
Allan Stephens96882432006-06-25 23:38:58 -0700823 case TIPC_MCAST_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824 case TIPC_NAMED_MSG:{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900825 tipc_named_msg_err_event cb =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100826 up_ptr->named_err_cb;
827
Julia Lawall4cec72c2008-01-08 23:48:20 -0800828 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700829 if (!cb || connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100830 break;
831 dseq.type = msg_nametype(msg);
832 dseq.lower = msg_nameinst(msg);
Allan Stephens96882432006-06-25 23:38:58 -0700833 dseq.upper = (message_type == TIPC_NAMED_MSG)
834 ? dseq.lower : msg_nameupper(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900836 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100837 msg_data_sz(msg), msg_errcode(msg), &dseq);
838 break;
839 }
840 }
841 if (buf)
842 buf_discard(buf);
843 buf = next;
844 continue;
845reject:
846 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
847 buf = next;
848 }
849}
850
851/*
852 * port_dispatcher(): Dispatcher for messages destinated
853 * to the tipc_port interface. Called with port locked.
854 */
855
856static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
857{
858 buf->next = NULL;
859 spin_lock_bh(&queue_lock);
860 if (msg_queue_head) {
861 msg_queue_tail->next = buf;
862 msg_queue_tail = buf;
863 } else {
864 msg_queue_tail = msg_queue_head = buf;
Per Liden4323add2006-01-18 00:38:21 +0100865 tipc_k_signal((Handler)port_dispatcher_sigh, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100866 }
867 spin_unlock_bh(&queue_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700868 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100869}
870
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900871/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872 * Wake up port after congestion: Called with port locked,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900873 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874 */
875
876static void port_wakeup_sh(unsigned long ref)
877{
878 struct port *p_ptr;
879 struct user_port *up_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800880 tipc_continue_event cb = NULL;
881 void *uh = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882
Per Liden4323add2006-01-18 00:38:21 +0100883 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100884 if (p_ptr) {
885 up_ptr = p_ptr->user_port;
886 if (up_ptr) {
887 cb = up_ptr->continue_event_cb;
888 uh = up_ptr->usr_handle;
889 }
Per Liden4323add2006-01-18 00:38:21 +0100890 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100891 }
892 if (cb)
893 cb(uh, ref);
894}
895
896
897static void port_wakeup(struct tipc_port *p_ptr)
898{
Per Liden4323add2006-01-18 00:38:21 +0100899 tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100900}
901
902void tipc_acknowledge(u32 ref, u32 ack)
903{
904 struct port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800905 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100906
Per Liden4323add2006-01-18 00:38:21 +0100907 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100908 if (!p_ptr)
909 return;
910 if (p_ptr->publ.connected) {
911 p_ptr->publ.conn_unacked -= ack;
912 buf = port_build_proto_msg(port_peerport(p_ptr),
913 port_peernode(p_ptr),
914 ref,
915 tipc_own_addr,
916 CONN_MANAGER,
917 CONN_ACK,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900918 TIPC_OK,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100919 port_out_seqno(p_ptr),
920 ack);
921 }
Per Liden4323add2006-01-18 00:38:21 +0100922 tipc_port_unlock(p_ptr);
923 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100924}
925
926/*
Allan Stephensb0c1e922010-12-31 18:59:22 +0000927 * tipc_createport(): user level call.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100928 */
929
Allan Stephensb0c1e922010-12-31 18:59:22 +0000930int tipc_createport(void *usr_handle,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900931 unsigned int importance,
932 tipc_msg_err_event error_cb,
933 tipc_named_msg_err_event named_error_cb,
934 tipc_conn_shutdown_event conn_error_cb,
935 tipc_msg_event msg_cb,
936 tipc_named_msg_event named_msg_cb,
937 tipc_conn_msg_event conn_msg_cb,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100938 tipc_continue_event continue_event_cb,/* May be zero */
939 u32 *portref)
940{
941 struct user_port *up_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900942 struct port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100943
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700944 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700945 if (!up_ptr) {
Allan Stephensa75bf872006-06-25 23:50:01 -0700946 warn("Port creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947 return -ENOMEM;
948 }
Allan Stephens0ea52242008-07-14 22:42:19 -0700949 p_ptr = (struct port *)tipc_createport_raw(NULL, port_dispatcher,
950 port_wakeup, importance);
951 if (!p_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100952 kfree(up_ptr);
953 return -ENOMEM;
954 }
955
956 p_ptr->user_port = up_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100957 up_ptr->usr_handle = usr_handle;
958 up_ptr->ref = p_ptr->publ.ref;
959 up_ptr->err_cb = error_cb;
960 up_ptr->named_err_cb = named_error_cb;
961 up_ptr->conn_err_cb = conn_error_cb;
962 up_ptr->msg_cb = msg_cb;
963 up_ptr->named_msg_cb = named_msg_cb;
964 up_ptr->conn_msg_cb = conn_msg_cb;
965 up_ptr->continue_event_cb = continue_event_cb;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100966 *portref = p_ptr->publ.ref;
Per Liden4323add2006-01-18 00:38:21 +0100967 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700968 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969}
970
Per Lidenb97bf3f2006-01-02 19:04:38 +0100971int tipc_portimportance(u32 ref, unsigned int *importance)
972{
973 struct port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900974
Per Liden4323add2006-01-18 00:38:21 +0100975 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100976 if (!p_ptr)
977 return -EINVAL;
978 *importance = (unsigned int)msg_importance(&p_ptr->publ.phdr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800979 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700980 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100981}
982
983int tipc_set_portimportance(u32 ref, unsigned int imp)
984{
985 struct port *p_ptr;
986
987 if (imp > TIPC_CRITICAL_IMPORTANCE)
988 return -EINVAL;
989
Per Liden4323add2006-01-18 00:38:21 +0100990 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100991 if (!p_ptr)
992 return -EINVAL;
993 msg_set_importance(&p_ptr->publ.phdr, (u32)imp);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800994 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700995 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100996}
997
998
999int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1000{
1001 struct port *p_ptr;
1002 struct publication *publ;
1003 u32 key;
1004 int res = -EINVAL;
1005
Per Liden4323add2006-01-18 00:38:21 +01001006 p_ptr = tipc_port_lock(ref);
Adrian Bunkd55b4c62006-10-31 16:59:35 -08001007 if (!p_ptr)
1008 return -EINVAL;
1009
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 if (p_ptr->publ.connected)
1011 goto exit;
1012 if (seq->lower > seq->upper)
1013 goto exit;
1014 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
1015 goto exit;
1016 key = ref + p_ptr->pub_count + 1;
1017 if (key == ref) {
1018 res = -EADDRINUSE;
1019 goto exit;
1020 }
Per Liden4323add2006-01-18 00:38:21 +01001021 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
1022 scope, p_ptr->publ.ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001023 if (publ) {
1024 list_add(&publ->pport_list, &p_ptr->publications);
1025 p_ptr->pub_count++;
1026 p_ptr->publ.published = 1;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001027 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001028 }
1029exit:
Per Liden4323add2006-01-18 00:38:21 +01001030 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 return res;
1032}
1033
1034int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1035{
1036 struct port *p_ptr;
1037 struct publication *publ;
1038 struct publication *tpubl;
1039 int res = -EINVAL;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001040
Per Liden4323add2006-01-18 00:38:21 +01001041 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 if (!p_ptr)
1043 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001044 if (!seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001045 list_for_each_entry_safe(publ, tpubl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001046 &p_ptr->publications, pport_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001047 tipc_nametbl_withdraw(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +01001048 publ->ref, publ->key);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049 }
Allan Stephens0e35fd52008-07-14 22:44:01 -07001050 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001051 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001052 list_for_each_entry_safe(publ, tpubl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001053 &p_ptr->publications, pport_list) {
1054 if (publ->scope != scope)
1055 continue;
1056 if (publ->type != seq->type)
1057 continue;
1058 if (publ->lower != seq->lower)
1059 continue;
1060 if (publ->upper != seq->upper)
1061 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001062 tipc_nametbl_withdraw(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +01001063 publ->ref, publ->key);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001064 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001065 break;
1066 }
1067 }
1068 if (list_empty(&p_ptr->publications))
1069 p_ptr->publ.published = 0;
Per Liden4323add2006-01-18 00:38:21 +01001070 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001071 return res;
1072}
1073
1074int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
1075{
1076 struct port *p_ptr;
1077 struct tipc_msg *msg;
1078 int res = -EINVAL;
1079
Per Liden4323add2006-01-18 00:38:21 +01001080 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001081 if (!p_ptr)
1082 return -EINVAL;
1083 if (p_ptr->publ.published || p_ptr->publ.connected)
1084 goto exit;
1085 if (!peer->ref)
1086 goto exit;
1087
1088 msg = &p_ptr->publ.phdr;
1089 msg_set_destnode(msg, peer->node);
1090 msg_set_destport(msg, peer->ref);
1091 msg_set_orignode(msg, tipc_own_addr);
1092 msg_set_origport(msg, p_ptr->publ.ref);
1093 msg_set_transp_seqno(msg, 42);
1094 msg_set_type(msg, TIPC_CONN_MSG);
Allan Stephens08c80e92010-12-31 18:59:17 +00001095 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001096
1097 p_ptr->probing_interval = PROBING_INTERVAL;
1098 p_ptr->probing_state = CONFIRMED;
1099 p_ptr->publ.connected = 1;
1100 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
1101
Per Liden4323add2006-01-18 00:38:21 +01001102 tipc_nodesub_subscribe(&p_ptr->subscription,peer->node,
David S. Miller880b0052006-01-12 13:22:32 -08001103 (void *)(unsigned long)ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001104 (net_ev_handler)port_handle_node_down);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001105 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001106exit:
Per Liden4323add2006-01-18 00:38:21 +01001107 tipc_port_unlock(p_ptr);
Allan Stephens05646c92007-06-10 17:25:24 -07001108 p_ptr->publ.max_pkt = tipc_link_get_max_pkt(peer->node, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109 return res;
1110}
1111
Allan Stephens0c3141e2008-04-15 00:22:02 -07001112/**
1113 * tipc_disconnect_port - disconnect port from peer
1114 *
1115 * Port must be locked.
1116 */
1117
1118int tipc_disconnect_port(struct tipc_port *tp_ptr)
1119{
1120 int res;
1121
1122 if (tp_ptr->connected) {
1123 tp_ptr->connected = 0;
1124 /* let timer expire on it's own to avoid deadlock! */
1125 tipc_nodesub_unsubscribe(
1126 &((struct port *)tp_ptr)->subscription);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001127 res = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001128 } else {
1129 res = -ENOTCONN;
1130 }
1131 return res;
1132}
1133
Per Lidenb97bf3f2006-01-02 19:04:38 +01001134/*
1135 * tipc_disconnect(): Disconnect port form peer.
1136 * This is a node local operation.
1137 */
1138
1139int tipc_disconnect(u32 ref)
1140{
1141 struct port *p_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001142 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143
Per Liden4323add2006-01-18 00:38:21 +01001144 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001145 if (!p_ptr)
1146 return -EINVAL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001147 res = tipc_disconnect_port((struct tipc_port *)p_ptr);
Per Liden4323add2006-01-18 00:38:21 +01001148 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001149 return res;
1150}
1151
1152/*
1153 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1154 */
1155int tipc_shutdown(u32 ref)
1156{
1157 struct port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001158 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159
Per Liden4323add2006-01-18 00:38:21 +01001160 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001161 if (!p_ptr)
1162 return -EINVAL;
1163
1164 if (p_ptr->publ.connected) {
1165 u32 imp = msg_importance(&p_ptr->publ.phdr);
1166 if (imp < TIPC_CRITICAL_IMPORTANCE)
1167 imp++;
1168 buf = port_build_proto_msg(port_peerport(p_ptr),
1169 port_peernode(p_ptr),
1170 ref,
1171 tipc_own_addr,
1172 imp,
1173 TIPC_CONN_MSG,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001174 TIPC_CONN_SHUTDOWN,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001175 port_out_seqno(p_ptr),
1176 0);
1177 }
Per Liden4323add2006-01-18 00:38:21 +01001178 tipc_port_unlock(p_ptr);
1179 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001180 return tipc_disconnect(ref);
1181}
1182
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183/*
Per Liden4323add2006-01-18 00:38:21 +01001184 * tipc_port_recv_sections(): Concatenate and deliver sectioned
Per Lidenb97bf3f2006-01-02 19:04:38 +01001185 * message for this node.
1186 */
1187
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001188static int tipc_port_recv_sections(struct port *sender, unsigned int num_sect,
1189 struct iovec const *msg_sect)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001190{
1191 struct sk_buff *buf;
1192 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001193
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001194 res = tipc_msg_build(&sender->publ.phdr, msg_sect, num_sect,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001195 MAX_MSG_SIZE, !sender->user_port, &buf);
1196 if (likely(buf))
Per Liden4323add2006-01-18 00:38:21 +01001197 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001198 return res;
1199}
1200
1201/**
1202 * tipc_send - send message sections on connection
1203 */
1204
1205int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect)
1206{
1207 struct port *p_ptr;
1208 u32 destnode;
1209 int res;
1210
Per Liden4323add2006-01-18 00:38:21 +01001211 p_ptr = tipc_port_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001212 if (!p_ptr || !p_ptr->publ.connected)
1213 return -EINVAL;
1214
1215 p_ptr->publ.congested = 1;
Per Liden4323add2006-01-18 00:38:21 +01001216 if (!tipc_port_congested(p_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001217 destnode = port_peernode(p_ptr);
1218 if (likely(destnode != tipc_own_addr))
Per Liden4323add2006-01-18 00:38:21 +01001219 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1220 destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221 else
Per Liden4323add2006-01-18 00:38:21 +01001222 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001223
1224 if (likely(res != -ELINKCONG)) {
1225 port_incr_out_seqno(p_ptr);
1226 p_ptr->publ.congested = 0;
1227 p_ptr->sent++;
1228 return res;
1229 }
1230 }
1231 if (port_unreliable(p_ptr)) {
1232 p_ptr->publ.congested = 0;
1233 /* Just calculate msg length and return */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001234 return tipc_msg_calc_data_size(msg_sect, num_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001235 }
1236 return -ELINKCONG;
1237}
1238
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001239/**
Allan Stephens12bae472010-11-30 12:01:02 +00001240 * tipc_send2name - send message sections to port name
Per Lidenb97bf3f2006-01-02 19:04:38 +01001241 */
1242
Allan Stephens12bae472010-11-30 12:01:02 +00001243int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
1244 unsigned int num_sect, struct iovec const *msg_sect)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001245{
1246 struct port *p_ptr;
1247 struct tipc_msg *msg;
1248 u32 destnode = domain;
Allan Stephens9ccc2eb2010-05-11 14:30:06 +00001249 u32 destport;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001250 int res;
1251
Per Liden4323add2006-01-18 00:38:21 +01001252 p_ptr = tipc_port_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253 if (!p_ptr || p_ptr->publ.connected)
1254 return -EINVAL;
1255
1256 msg = &p_ptr->publ.phdr;
1257 msg_set_type(msg, TIPC_NAMED_MSG);
Allan Stephens12bae472010-11-30 12:01:02 +00001258 msg_set_orignode(msg, tipc_own_addr);
1259 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 msg_set_hdr_sz(msg, LONG_H_SIZE);
1261 msg_set_nametype(msg, name->type);
1262 msg_set_nameinst(msg, name->instance);
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001263 msg_set_lookup_scope(msg, tipc_addr_scope(domain));
Per Liden4323add2006-01-18 00:38:21 +01001264 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001265 msg_set_destnode(msg, destnode);
1266 msg_set_destport(msg, destport);
1267
Allan Stephens5d9c54c2010-09-03 08:33:39 +00001268 if (likely(destport)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001269 p_ptr->sent++;
1270 if (likely(destnode == tipc_own_addr))
Per Liden4323add2006-01-18 00:38:21 +01001271 return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001272 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
Per Liden4323add2006-01-18 00:38:21 +01001273 destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 if (likely(res != -ELINKCONG))
1275 return res;
1276 if (port_unreliable(p_ptr)) {
1277 /* Just calculate msg length and return */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001278 return tipc_msg_calc_data_size(msg_sect, num_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 }
1280 return -ELINKCONG;
1281 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001282 return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
Per Liden4323add2006-01-18 00:38:21 +01001283 TIPC_ERR_NO_NAME);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001284}
1285
1286/**
Allan Stephens12bae472010-11-30 12:01:02 +00001287 * tipc_send2port - send message sections to port identity
Per Lidenb97bf3f2006-01-02 19:04:38 +01001288 */
1289
Allan Stephens12bae472010-11-30 12:01:02 +00001290int tipc_send2port(u32 ref, struct tipc_portid const *dest,
1291 unsigned int num_sect, struct iovec const *msg_sect)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001292{
1293 struct port *p_ptr;
1294 struct tipc_msg *msg;
1295 int res;
1296
Per Liden4323add2006-01-18 00:38:21 +01001297 p_ptr = tipc_port_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001298 if (!p_ptr || p_ptr->publ.connected)
1299 return -EINVAL;
1300
1301 msg = &p_ptr->publ.phdr;
1302 msg_set_type(msg, TIPC_DIRECT_MSG);
Allan Stephens12bae472010-11-30 12:01:02 +00001303 msg_set_orignode(msg, tipc_own_addr);
1304 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 msg_set_destnode(msg, dest->node);
1306 msg_set_destport(msg, dest->ref);
1307 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 p_ptr->sent++;
1309 if (dest->node == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001310 return tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1311 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect, dest->node);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001312 if (likely(res != -ELINKCONG))
1313 return res;
1314 if (port_unreliable(p_ptr)) {
1315 /* Just calculate msg length and return */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001316 return tipc_msg_calc_data_size(msg_sect, num_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 }
1318 return -ELINKCONG;
1319}
1320
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001321/**
Allan Stephens12bae472010-11-30 12:01:02 +00001322 * tipc_send_buf2port - send message buffer to port identity
Per Lidenb97bf3f2006-01-02 19:04:38 +01001323 */
1324
Allan Stephens12bae472010-11-30 12:01:02 +00001325int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
1326 struct sk_buff *buf, unsigned int dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001327{
1328 struct port *p_ptr;
1329 struct tipc_msg *msg;
1330 int res;
1331
Per Liden4323add2006-01-18 00:38:21 +01001332 p_ptr = (struct port *)tipc_ref_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001333 if (!p_ptr || p_ptr->publ.connected)
1334 return -EINVAL;
1335
1336 msg = &p_ptr->publ.phdr;
1337 msg_set_type(msg, TIPC_DIRECT_MSG);
Allan Stephens12bae472010-11-30 12:01:02 +00001338 msg_set_orignode(msg, tipc_own_addr);
1339 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001340 msg_set_destnode(msg, dest->node);
1341 msg_set_destport(msg, dest->ref);
1342 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001343 msg_set_size(msg, DIR_MSG_H_SIZE + dsz);
1344 if (skb_cow(buf, DIR_MSG_H_SIZE))
1345 return -ENOMEM;
1346
1347 skb_push(buf, DIR_MSG_H_SIZE);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001348 skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001349 p_ptr->sent++;
1350 if (dest->node == tipc_own_addr)
Per Liden4323add2006-01-18 00:38:21 +01001351 return tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001352 res = tipc_send_buf_fast(buf, dest->node);
1353 if (likely(res != -ELINKCONG))
1354 return res;
1355 if (port_unreliable(p_ptr))
1356 return dsz;
1357 return -ELINKCONG;
1358}
1359