blob: 94d2904cce668b678b9688ff7da5309100609617 [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 Stephens23dd4cc2011-01-07 11:43:40 -05005 * Copyright (c) 2004-2008, 2010-2011, 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
Allan Stephense3ec9c72010-12-31 18:59:34 +000049static struct sk_buff *msg_queue_head;
50static struct sk_buff *msg_queue_tail;
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);
Allan Stephens23dd4cc2011-01-07 11:43:40 -050057static struct sk_buff *port_build_self_abort_msg(struct tipc_port *, u32 err);
58static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *, u32 err);
Per Lidenb97bf3f2006-01-02 19:04:38 +010059static void port_timeout(unsigned long ref);
60
61
Allan Stephens23dd4cc2011-01-07 11:43:40 -050062static u32 port_peernode(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010063{
Allan Stephens23dd4cc2011-01-07 11:43:40 -050064 return msg_destnode(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +010065}
66
Allan Stephens23dd4cc2011-01-07 11:43:40 -050067static u32 port_peerport(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010068{
Allan Stephens23dd4cc2011-01-07 11:43:40 -050069 return msg_destport(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +010070}
71
Per Lidenb97bf3f2006-01-02 19:04:38 +010072/**
73 * tipc_multicast - send a multicast message to local and remote destinations
74 */
75
Allan Stephens38f232e2010-11-30 12:00:59 +000076int tipc_multicast(u32 ref, struct tipc_name_seq const *seq,
Allan Stephens26896902011-04-21 10:42:07 -050077 u32 num_sect, struct iovec const *msg_sect,
78 unsigned int total_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +010079{
80 struct tipc_msg *hdr;
81 struct sk_buff *buf;
82 struct sk_buff *ibuf = NULL;
Paul Gortmaker45843102011-12-29 20:33:30 -050083 struct tipc_port_list dports = {0, NULL, };
Allan Stephens23dd4cc2011-01-07 11:43:40 -050084 struct tipc_port *oport = tipc_port_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +010085 int ext_targets;
86 int res;
87
88 if (unlikely(!oport))
89 return -EINVAL;
90
91 /* Create multicast message */
92
Allan Stephens23dd4cc2011-01-07 11:43:40 -050093 hdr = &oport->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 msg_set_type(hdr, TIPC_MCAST_MSG);
Allan Stephens53b94362011-04-17 16:02:11 -040095 msg_set_lookup_scope(hdr, TIPC_CLUSTER_SCOPE);
Allan Stephens7462b9e2011-04-18 10:08:22 -040096 msg_set_destport(hdr, 0);
97 msg_set_destnode(hdr, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 msg_set_nametype(hdr, seq->type);
99 msg_set_namelower(hdr, seq->lower);
100 msg_set_nameupper(hdr, seq->upper);
101 msg_set_hdr_sz(hdr, MCAST_H_SIZE);
Allan Stephens26896902011-04-21 10:42:07 -0500102 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len, MAX_MSG_SIZE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100103 !oport->user_port, &buf);
104 if (unlikely(!buf))
105 return res;
106
107 /* Figure out where to send multicast message */
108
Per Liden4323add2006-01-18 00:38:21 +0100109 ext_targets = tipc_nametbl_mc_translate(seq->type, seq->lower, seq->upper,
110 TIPC_NODE_SCOPE, &dports);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900111
112 /* Send message to destinations (duplicate it only if necessary) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113
114 if (ext_targets) {
115 if (dports.count != 0) {
116 ibuf = skb_copy(buf, GFP_ATOMIC);
117 if (ibuf == NULL) {
Per Liden4323add2006-01-18 00:38:21 +0100118 tipc_port_list_free(&dports);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400119 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120 return -ENOMEM;
121 }
122 }
Per Liden4323add2006-01-18 00:38:21 +0100123 res = tipc_bclink_send_msg(buf);
Allan Stephensa0168922010-12-31 18:59:35 +0000124 if ((res < 0) && (dports.count != 0))
Allan Stephens5f6d9122011-11-04 13:24:29 -0400125 kfree_skb(ibuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126 } else {
127 ibuf = buf;
128 }
129
130 if (res >= 0) {
131 if (ibuf)
Per Liden4323add2006-01-18 00:38:21 +0100132 tipc_port_recv_mcast(ibuf, &dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100133 } else {
Per Liden4323add2006-01-18 00:38:21 +0100134 tipc_port_list_free(&dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 }
136 return res;
137}
138
139/**
Per Liden4323add2006-01-18 00:38:21 +0100140 * tipc_port_recv_mcast - deliver multicast message to all destination ports
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900141 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 * If there is no port list, perform a lookup to create one
143 */
144
Paul Gortmaker45843102011-12-29 20:33:30 -0500145void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100146{
Allan Stephens0e659672010-12-31 18:59:32 +0000147 struct tipc_msg *msg;
Paul Gortmaker45843102011-12-29 20:33:30 -0500148 struct tipc_port_list dports = {0, NULL, };
149 struct tipc_port_list *item = dp;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 int cnt = 0;
151
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152 msg = buf_msg(buf);
153
154 /* Create destination port list, if one wasn't supplied */
155
156 if (dp == NULL) {
Per Liden4323add2006-01-18 00:38:21 +0100157 tipc_nametbl_mc_translate(msg_nametype(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158 msg_namelower(msg),
159 msg_nameupper(msg),
160 TIPC_CLUSTER_SCOPE,
161 &dports);
162 item = dp = &dports;
163 }
164
165 /* Deliver a copy of message to each destination port */
166
167 if (dp->count != 0) {
Allan Stephens7f47f5c2011-04-18 10:14:26 -0400168 msg_set_destnode(msg, tipc_own_addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169 if (dp->count == 1) {
170 msg_set_destport(msg, dp->ports[0]);
Per Liden4323add2006-01-18 00:38:21 +0100171 tipc_port_recv_msg(buf);
172 tipc_port_list_free(dp);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 return;
174 }
175 for (; cnt < dp->count; cnt++) {
176 int index = cnt % PLSIZE;
177 struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);
178
179 if (b == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700180 warn("Unable to deliver multicast message(s)\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 goto exit;
182 }
Allan Stephensa0168922010-12-31 18:59:35 +0000183 if ((index == 0) && (cnt != 0))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 item = item->next;
Allan Stephens0e659672010-12-31 18:59:32 +0000185 msg_set_destport(buf_msg(b), item->ports[index]);
Per Liden4323add2006-01-18 00:38:21 +0100186 tipc_port_recv_msg(b);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187 }
188 }
189exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -0400190 kfree_skb(buf);
Per Liden4323add2006-01-18 00:38:21 +0100191 tipc_port_list_free(dp);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192}
193
194/**
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700195 * tipc_createport_raw - create a generic TIPC port
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900196 *
Allan Stephens0ea52242008-07-14 22:42:19 -0700197 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 */
199
Allan Stephens0ea52242008-07-14 22:42:19 -0700200struct tipc_port *tipc_createport_raw(void *usr_handle,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
202 void (*wakeup)(struct tipc_port *),
Allan Stephens0ea52242008-07-14 22:42:19 -0700203 const u32 importance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500205 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206 struct tipc_msg *msg;
207 u32 ref;
208
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700209 p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700210 if (!p_ptr) {
211 warn("Port creation failed, no memory\n");
Allan Stephens0ea52242008-07-14 22:42:19 -0700212 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 }
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500214 ref = tipc_ref_acquire(p_ptr, &p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 if (!ref) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700216 warn("Port creation failed, reference table exhausted\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100217 kfree(p_ptr);
Allan Stephens0ea52242008-07-14 22:42:19 -0700218 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 }
220
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500221 p_ptr->usr_handle = usr_handle;
222 p_ptr->max_pkt = MAX_PKT_DEFAULT;
223 p_ptr->ref = ref;
224 msg = &p_ptr->phdr;
Allan Stephens741d9eb2011-05-31 15:03:18 -0400225 tipc_msg_init(msg, importance, TIPC_NAMED_MSG, NAMED_H_SIZE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100227 INIT_LIST_HEAD(&p_ptr->wait_list);
228 INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100229 p_ptr->dispatcher = dispatcher;
230 p_ptr->wakeup = wakeup;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800231 p_ptr->user_port = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100232 k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
Per Liden4323add2006-01-18 00:38:21 +0100233 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 INIT_LIST_HEAD(&p_ptr->publications);
235 INIT_LIST_HEAD(&p_ptr->port_list);
236 list_add_tail(&p_ptr->port_list, &ports);
Per Liden4323add2006-01-18 00:38:21 +0100237 spin_unlock_bh(&tipc_port_list_lock);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500238 return p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239}
240
241int tipc_deleteport(u32 ref)
242{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500243 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800244 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800246 tipc_withdraw(ref, 0, NULL);
Per Liden4323add2006-01-18 00:38:21 +0100247 p_ptr = tipc_port_lock(ref);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900248 if (!p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 return -EINVAL;
250
Per Liden4323add2006-01-18 00:38:21 +0100251 tipc_ref_discard(ref);
252 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100253
254 k_cancel_timer(&p_ptr->timer);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500255 if (p_ptr->connected) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
Per Liden4323add2006-01-18 00:38:21 +0100257 tipc_nodesub_unsubscribe(&p_ptr->subscription);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 }
Allan Stephense83504f2010-12-31 18:59:30 +0000259 kfree(p_ptr->user_port);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260
Per Liden4323add2006-01-18 00:38:21 +0100261 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 list_del(&p_ptr->port_list);
263 list_del(&p_ptr->wait_list);
Per Liden4323add2006-01-18 00:38:21 +0100264 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265 k_term_timer(&p_ptr->timer);
266 kfree(p_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100267 tipc_net_route_msg(buf);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700268 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269}
270
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500271static int port_unreliable(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500273 return msg_src_droppable(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274}
275
276int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
277{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500278 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900279
Per Liden4323add2006-01-18 00:38:21 +0100280 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100281 if (!p_ptr)
282 return -EINVAL;
283 *isunreliable = port_unreliable(p_ptr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800284 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700285 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286}
287
288int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
289{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500290 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900291
Per Liden4323add2006-01-18 00:38:21 +0100292 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 if (!p_ptr)
294 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500295 msg_set_src_droppable(&p_ptr->phdr, (isunreliable != 0));
Per Liden4323add2006-01-18 00:38:21 +0100296 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700297 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298}
299
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500300static int port_unreturnable(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500302 return msg_dest_droppable(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303}
304
305int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
306{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500307 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900308
Per Liden4323add2006-01-18 00:38:21 +0100309 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 if (!p_ptr)
311 return -EINVAL;
312 *isunrejectable = port_unreturnable(p_ptr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800313 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700314 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315}
316
317int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
318{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500319 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900320
Per Liden4323add2006-01-18 00:38:21 +0100321 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322 if (!p_ptr)
323 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500324 msg_set_dest_droppable(&p_ptr->phdr, (isunrejectable != 0));
Per Liden4323add2006-01-18 00:38:21 +0100325 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700326 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327}
328
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900329/*
Allan Stephense4a0aee2011-06-01 16:21:12 -0400330 * port_build_proto_msg(): create connection protocol message for port
331 *
332 * On entry the port must be locked and connected.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 */
Allan Stephense4a0aee2011-06-01 16:21:12 -0400334static struct sk_buff *port_build_proto_msg(struct tipc_port *p_ptr,
335 u32 type, u32 ack)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336{
337 struct sk_buff *buf;
338 struct tipc_msg *msg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900339
Allan Stephens741d9eb2011-05-31 15:03:18 -0400340 buf = tipc_buf_acquire(INT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 if (buf) {
342 msg = buf_msg(buf);
Allan Stephense4a0aee2011-06-01 16:21:12 -0400343 tipc_msg_init(msg, CONN_MANAGER, type, INT_H_SIZE,
344 port_peernode(p_ptr));
345 msg_set_destport(msg, port_peerport(p_ptr));
346 msg_set_origport(msg, p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 msg_set_msgcnt(msg, ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 }
349 return buf;
350}
351
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352int tipc_reject_msg(struct sk_buff *buf, u32 err)
353{
354 struct tipc_msg *msg = buf_msg(buf);
355 struct sk_buff *rbuf;
356 struct tipc_msg *rmsg;
357 int hdr_sz;
Allan Stephens7dd1bf22011-05-23 16:23:32 -0400358 u32 imp;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359 u32 data_sz = msg_data_sz(msg);
Allan Stephens017dac32011-05-24 13:20:09 -0400360 u32 src_node;
Allan Stephens7dd1bf22011-05-23 16:23:32 -0400361 u32 rmsg_sz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362
363 /* discard rejected message if it shouldn't be returned to sender */
Allan Stephens76d12522011-05-23 13:57:25 -0400364
365 if (WARN(!msg_isdata(msg),
366 "attempt to reject message with user=%u", msg_user(msg))) {
367 dump_stack();
368 goto exit;
369 }
Allan Stephensacc631b2011-05-23 13:47:44 -0400370 if (msg_errcode(msg) || msg_dest_droppable(msg))
371 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372
Allan Stephens7dd1bf22011-05-23 16:23:32 -0400373 /*
374 * construct returned message by copying rejected message header and
375 * data (or subset), then updating header fields that need adjusting
376 */
377
378 hdr_sz = msg_hdr_sz(msg);
379 rmsg_sz = hdr_sz + min_t(u32, data_sz, MAX_REJECT_SIZE);
380
381 rbuf = tipc_buf_acquire(rmsg_sz);
Allan Stephensacc631b2011-05-23 13:47:44 -0400382 if (rbuf == NULL)
383 goto exit;
384
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 rmsg = buf_msg(rbuf);
Allan Stephens7dd1bf22011-05-23 16:23:32 -0400386 skb_copy_to_linear_data(rbuf, msg, rmsg_sz);
387
388 if (msg_connected(rmsg)) {
389 imp = msg_importance(rmsg);
390 if (imp < TIPC_CRITICAL_IMPORTANCE)
391 msg_set_importance(rmsg, ++imp);
Allan Stephens99c14592008-06-04 17:48:25 -0700392 }
Allan Stephens7dd1bf22011-05-23 16:23:32 -0400393 msg_set_non_seq(rmsg, 0);
394 msg_set_size(rmsg, rmsg_sz);
395 msg_set_errcode(rmsg, err);
396 msg_set_prevnode(rmsg, tipc_own_addr);
397 msg_swap_words(rmsg, 4, 5);
398 if (!msg_short(rmsg))
399 msg_swap_words(rmsg, 6, 7);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400
401 /* send self-abort message when rejecting on a connected port */
402 if (msg_connected(msg)) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500403 struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404
405 if (p_ptr) {
Allan Stephensdff10e92011-11-02 10:32:14 -0400406 struct sk_buff *abuf = NULL;
407
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500408 if (p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100409 abuf = port_build_self_abort_msg(p_ptr, err);
Per Liden4323add2006-01-18 00:38:21 +0100410 tipc_port_unlock(p_ptr);
Allan Stephensdff10e92011-11-02 10:32:14 -0400411 tipc_net_route_msg(abuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100412 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413 }
414
Allan Stephensacc631b2011-05-23 13:47:44 -0400415 /* send returned message & dispose of rejected message */
416
Allan Stephens017dac32011-05-24 13:20:09 -0400417 src_node = msg_prevnode(msg);
418 if (src_node == tipc_own_addr)
419 tipc_port_recv_msg(rbuf);
420 else
421 tipc_link_send(rbuf, src_node, msg_link_selector(rmsg));
Allan Stephensacc631b2011-05-23 13:47:44 -0400422exit:
Allan Stephens5f6d9122011-11-04 13:24:29 -0400423 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 return data_sz;
425}
426
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500427int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
Per Liden4323add2006-01-18 00:38:21 +0100428 struct iovec const *msg_sect, u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -0500429 unsigned int total_len, int err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430{
431 struct sk_buff *buf;
432 int res;
433
Allan Stephens26896902011-04-21 10:42:07 -0500434 res = tipc_msg_build(hdr, msg_sect, num_sect, total_len, MAX_MSG_SIZE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100435 !p_ptr->user_port, &buf);
436 if (!buf)
437 return res;
438
439 return tipc_reject_msg(buf, err);
440}
441
442static void port_timeout(unsigned long ref)
443{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500444 struct tipc_port *p_ptr = tipc_port_lock(ref);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800445 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100446
Allan Stephens065fd172006-10-16 21:38:05 -0700447 if (!p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100448 return;
449
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500450 if (!p_ptr->connected) {
Allan Stephens065fd172006-10-16 21:38:05 -0700451 tipc_port_unlock(p_ptr);
452 return;
453 }
454
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455 /* Last probe answered ? */
456 if (p_ptr->probing_state == PROBING) {
457 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
458 } else {
Allan Stephense4a0aee2011-06-01 16:21:12 -0400459 buf = port_build_proto_msg(p_ptr, CONN_PROBE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100460 p_ptr->probing_state = PROBING;
461 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
462 }
Per Liden4323add2006-01-18 00:38:21 +0100463 tipc_port_unlock(p_ptr);
464 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100465}
466
467
468static void port_handle_node_down(unsigned long ref)
469{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500470 struct tipc_port *p_ptr = tipc_port_lock(ref);
Allan Stephens0e659672010-12-31 18:59:32 +0000471 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100472
473 if (!p_ptr)
474 return;
475 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
Per Liden4323add2006-01-18 00:38:21 +0100476 tipc_port_unlock(p_ptr);
477 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478}
479
480
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500481static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100482{
Allan Stephense244a912011-05-31 16:10:08 -0400483 struct sk_buff *buf = port_build_peer_abort_msg(p_ptr, err);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100484
Allan Stephense244a912011-05-31 16:10:08 -0400485 if (buf) {
486 struct tipc_msg *msg = buf_msg(buf);
487 msg_swap_words(msg, 4, 5);
488 msg_swap_words(msg, 6, 7);
489 }
490 return buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100491}
492
493
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500494static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495{
Allan Stephense244a912011-05-31 16:10:08 -0400496 struct sk_buff *buf;
497 struct tipc_msg *msg;
498 u32 imp;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100499
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500500 if (!p_ptr->connected)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800501 return NULL;
Allan Stephense244a912011-05-31 16:10:08 -0400502
503 buf = tipc_buf_acquire(BASIC_H_SIZE);
504 if (buf) {
505 msg = buf_msg(buf);
506 memcpy(msg, &p_ptr->phdr, BASIC_H_SIZE);
507 msg_set_hdr_sz(msg, BASIC_H_SIZE);
508 msg_set_size(msg, BASIC_H_SIZE);
509 imp = msg_importance(msg);
510 if (imp < TIPC_CRITICAL_IMPORTANCE)
511 msg_set_importance(msg, ++imp);
512 msg_set_errcode(msg, err);
513 }
514 return buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515}
516
Per Liden4323add2006-01-18 00:38:21 +0100517void tipc_port_recv_proto_msg(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100518{
519 struct tipc_msg *msg = buf_msg(buf);
Allan Stephens1c1a5512011-06-01 15:08:10 -0400520 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800521 struct sk_buff *r_buf = NULL;
Allan Stephens1c1a5512011-06-01 15:08:10 -0400522 u32 orignode = msg_orignode(msg);
523 u32 origport = msg_origport(msg);
524 u32 destport = msg_destport(msg);
525 int wakeable;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100526
Allan Stephens1c1a5512011-06-01 15:08:10 -0400527 /* Validate connection */
528
529 p_ptr = tipc_port_lock(destport);
530 if (!p_ptr || !p_ptr->connected ||
531 (port_peernode(p_ptr) != orignode) ||
532 (port_peerport(p_ptr) != origport)) {
Allan Stephensf55b5642011-06-01 15:48:42 -0400533 r_buf = tipc_buf_acquire(BASIC_H_SIZE);
534 if (r_buf) {
535 msg = buf_msg(r_buf);
536 tipc_msg_init(msg, TIPC_HIGH_IMPORTANCE, TIPC_CONN_MSG,
537 BASIC_H_SIZE, orignode);
538 msg_set_errcode(msg, TIPC_ERR_NO_PORT);
539 msg_set_origport(msg, destport);
540 msg_set_destport(msg, origport);
541 }
Allan Stephens1c1a5512011-06-01 15:08:10 -0400542 if (p_ptr)
543 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100544 goto exit;
545 }
546
Allan Stephens1c1a5512011-06-01 15:08:10 -0400547 /* Process protocol message sent by peer */
548
549 switch (msg_type(msg)) {
550 case CONN_ACK:
551 wakeable = tipc_port_congested(p_ptr) && p_ptr->congested &&
552 p_ptr->wakeup;
553 p_ptr->acked += msg_msgcnt(msg);
554 if (!tipc_port_congested(p_ptr)) {
555 p_ptr->congested = 0;
556 if (wakeable)
557 p_ptr->wakeup(p_ptr);
558 }
559 break;
560 case CONN_PROBE:
Allan Stephense4a0aee2011-06-01 16:21:12 -0400561 r_buf = port_build_proto_msg(p_ptr, CONN_PROBE_REPLY, 0);
Allan Stephens1c1a5512011-06-01 15:08:10 -0400562 break;
563 default:
564 /* CONN_PROBE_REPLY or unrecognized - no action required */
565 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566 }
567 p_ptr->probing_state = CONFIRMED;
Allan Stephens1c1a5512011-06-01 15:08:10 -0400568 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569exit:
Per Liden4323add2006-01-18 00:38:21 +0100570 tipc_net_route_msg(r_buf);
Allan Stephens5f6d9122011-11-04 13:24:29 -0400571 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100572}
573
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500574static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100575{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900576 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100577
578 if (full_id)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900579 tipc_printf(buf, "<%u.%u.%u:%u>:",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100580 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500581 tipc_node(tipc_own_addr), p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582 else
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500583 tipc_printf(buf, "%-10u:", p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500585 if (p_ptr->connected) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900586 u32 dport = port_peerport(p_ptr);
587 u32 destnode = port_peernode(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100588
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900589 tipc_printf(buf, " connected to <%u.%u.%u:%u>",
590 tipc_zone(destnode), tipc_cluster(destnode),
591 tipc_node(destnode), dport);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500592 if (p_ptr->conn_type != 0)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900593 tipc_printf(buf, " via {%u,%u}",
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500594 p_ptr->conn_type,
595 p_ptr->conn_instance);
596 } else if (p_ptr->published) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900597 tipc_printf(buf, " bound to");
598 list_for_each_entry(publ, &p_ptr->publications, pport_list) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 if (publ->lower == publ->upper)
600 tipc_printf(buf, " {%u,%u}", publ->type,
601 publ->lower);
602 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900603 tipc_printf(buf, " {%u,%u,%u}", publ->type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604 publ->lower, publ->upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900605 }
606 }
607 tipc_printf(buf, "\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608}
609
610#define MAX_PORT_QUERY 32768
611
Per Liden4323add2006-01-18 00:38:21 +0100612struct sk_buff *tipc_port_get_ports(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100613{
614 struct sk_buff *buf;
615 struct tlv_desc *rep_tlv;
616 struct print_buf pb;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500617 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100618 int str_len;
619
Per Liden4323add2006-01-18 00:38:21 +0100620 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100621 if (!buf)
622 return NULL;
623 rep_tlv = (struct tlv_desc *)buf->data;
624
Per Liden4323add2006-01-18 00:38:21 +0100625 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
626 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100627 list_for_each_entry(p_ptr, &ports, port_list) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500628 spin_lock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100629 port_print(p_ptr, &pb, 0);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500630 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100631 }
Per Liden4323add2006-01-18 00:38:21 +0100632 spin_unlock_bh(&tipc_port_list_lock);
633 str_len = tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634
635 skb_put(buf, TLV_SPACE(str_len));
636 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
637
638 return buf;
639}
640
Per Liden4323add2006-01-18 00:38:21 +0100641void tipc_port_reinit(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500643 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100644 struct tipc_msg *msg;
645
Per Liden4323add2006-01-18 00:38:21 +0100646 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647 list_for_each_entry(p_ptr, &ports, port_list) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500648 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 if (msg_orignode(msg) == tipc_own_addr)
650 break;
Allan Stephens6d4a6672008-05-21 14:54:12 -0700651 msg_set_prevnode(msg, tipc_own_addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652 msg_set_orignode(msg, tipc_own_addr);
653 }
Per Liden4323add2006-01-18 00:38:21 +0100654 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655}
656
657
658/*
659 * port_dispatcher_sigh(): Signal handler for messages destinated
660 * to the tipc_port interface.
661 */
662
663static void port_dispatcher_sigh(void *dummy)
664{
665 struct sk_buff *buf;
666
667 spin_lock_bh(&queue_lock);
668 buf = msg_queue_head;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800669 msg_queue_head = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100670 spin_unlock_bh(&queue_lock);
671
672 while (buf) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500673 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100674 struct user_port *up_ptr;
675 struct tipc_portid orig;
676 struct tipc_name_seq dseq;
677 void *usr_handle;
678 int connected;
679 int published;
Allan Stephens96882432006-06-25 23:38:58 -0700680 u32 message_type;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100681
682 struct sk_buff *next = buf->next;
683 struct tipc_msg *msg = buf_msg(buf);
684 u32 dref = msg_destport(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900685
Allan Stephens96882432006-06-25 23:38:58 -0700686 message_type = msg_type(msg);
687 if (message_type > TIPC_DIRECT_MSG)
688 goto reject; /* Unsupported message type */
689
Per Liden4323add2006-01-18 00:38:21 +0100690 p_ptr = tipc_port_lock(dref);
Allan Stephens96882432006-06-25 23:38:58 -0700691 if (!p_ptr)
692 goto reject; /* Port deleted while msg in queue */
693
Per Lidenb97bf3f2006-01-02 19:04:38 +0100694 orig.ref = msg_origport(msg);
695 orig.node = msg_orignode(msg);
696 up_ptr = p_ptr->user_port;
697 usr_handle = up_ptr->usr_handle;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500698 connected = p_ptr->connected;
699 published = p_ptr->published;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100700
701 if (unlikely(msg_errcode(msg)))
702 goto err;
703
Allan Stephens96882432006-06-25 23:38:58 -0700704 switch (message_type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900705
Per Lidenb97bf3f2006-01-02 19:04:38 +0100706 case TIPC_CONN_MSG:{
707 tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
708 u32 peer_port = port_peerport(p_ptr);
709 u32 peer_node = port_peernode(p_ptr);
Allan Stephenscb7ce912011-01-24 15:02:14 -0500710 u32 dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100711
Julia Lawall4cec72c2008-01-08 23:48:20 -0800712 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700713 if (unlikely(!cb))
714 goto reject;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100715 if (unlikely(!connected)) {
Allan Stephens84b07c12008-06-04 17:28:21 -0700716 if (tipc_connect2port(dref, &orig))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100717 goto reject;
Allan Stephens84b07c12008-06-04 17:28:21 -0700718 } else if ((msg_origport(msg) != peer_port) ||
719 (msg_orignode(msg) != peer_node))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720 goto reject;
Allan Stephenscb7ce912011-01-24 15:02:14 -0500721 dsz = msg_data_sz(msg);
722 if (unlikely(dsz &&
723 (++p_ptr->conn_unacked >=
724 TIPC_FLOW_CONTROL_WIN)))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900725 tipc_acknowledge(dref,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500726 p_ptr->conn_unacked);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727 skb_pull(buf, msg_hdr_sz(msg));
Allan Stephenscb7ce912011-01-24 15:02:14 -0500728 cb(usr_handle, dref, &buf, msg_data(msg), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100729 break;
730 }
731 case TIPC_DIRECT_MSG:{
732 tipc_msg_event cb = up_ptr->msg_cb;
733
Julia Lawall4cec72c2008-01-08 23:48:20 -0800734 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700735 if (unlikely(!cb || connected))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100736 goto reject;
737 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900738 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739 msg_data_sz(msg), msg_importance(msg),
740 &orig);
741 break;
742 }
Allan Stephens96882432006-06-25 23:38:58 -0700743 case TIPC_MCAST_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 case TIPC_NAMED_MSG:{
745 tipc_named_msg_event cb = up_ptr->named_msg_cb;
746
Julia Lawall4cec72c2008-01-08 23:48:20 -0800747 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700748 if (unlikely(!cb || connected || !published))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100749 goto reject;
750 dseq.type = msg_nametype(msg);
751 dseq.lower = msg_nameinst(msg);
Allan Stephens96882432006-06-25 23:38:58 -0700752 dseq.upper = (message_type == TIPC_NAMED_MSG)
753 ? dseq.lower : msg_nameupper(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100754 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900755 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100756 msg_data_sz(msg), msg_importance(msg),
757 &orig, &dseq);
758 break;
759 }
760 }
761 if (buf)
Allan Stephens5f6d9122011-11-04 13:24:29 -0400762 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763 buf = next;
764 continue;
765err:
Allan Stephens96882432006-06-25 23:38:58 -0700766 switch (message_type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900767
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768 case TIPC_CONN_MSG:{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900769 tipc_conn_shutdown_event cb =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100770 up_ptr->conn_err_cb;
771 u32 peer_port = port_peerport(p_ptr);
772 u32 peer_node = port_peernode(p_ptr);
773
Julia Lawall4cec72c2008-01-08 23:48:20 -0800774 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700775 if (!cb || !connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100776 break;
Allan Stephens5307e462008-06-04 17:28:45 -0700777 if ((msg_origport(msg) != peer_port) ||
778 (msg_orignode(msg) != peer_node))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100779 break;
780 tipc_disconnect(dref);
781 skb_pull(buf, msg_hdr_sz(msg));
782 cb(usr_handle, dref, &buf, msg_data(msg),
783 msg_data_sz(msg), msg_errcode(msg));
784 break;
785 }
786 case TIPC_DIRECT_MSG:{
787 tipc_msg_err_event cb = up_ptr->err_cb;
788
Julia Lawall4cec72c2008-01-08 23:48:20 -0800789 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700790 if (!cb || connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100791 break;
792 skb_pull(buf, msg_hdr_sz(msg));
793 cb(usr_handle, dref, &buf, msg_data(msg),
794 msg_data_sz(msg), msg_errcode(msg), &orig);
795 break;
796 }
Allan Stephens96882432006-06-25 23:38:58 -0700797 case TIPC_MCAST_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100798 case TIPC_NAMED_MSG:{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900799 tipc_named_msg_err_event cb =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 up_ptr->named_err_cb;
801
Julia Lawall4cec72c2008-01-08 23:48:20 -0800802 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700803 if (!cb || connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100804 break;
805 dseq.type = msg_nametype(msg);
806 dseq.lower = msg_nameinst(msg);
Allan Stephens96882432006-06-25 23:38:58 -0700807 dseq.upper = (message_type == TIPC_NAMED_MSG)
808 ? dseq.lower : msg_nameupper(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100809 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900810 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100811 msg_data_sz(msg), msg_errcode(msg), &dseq);
812 break;
813 }
814 }
815 if (buf)
Allan Stephens5f6d9122011-11-04 13:24:29 -0400816 kfree_skb(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100817 buf = next;
818 continue;
819reject:
820 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
821 buf = next;
822 }
823}
824
825/*
826 * port_dispatcher(): Dispatcher for messages destinated
827 * to the tipc_port interface. Called with port locked.
828 */
829
830static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
831{
832 buf->next = NULL;
833 spin_lock_bh(&queue_lock);
834 if (msg_queue_head) {
835 msg_queue_tail->next = buf;
836 msg_queue_tail = buf;
837 } else {
838 msg_queue_tail = msg_queue_head = buf;
Per Liden4323add2006-01-18 00:38:21 +0100839 tipc_k_signal((Handler)port_dispatcher_sigh, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100840 }
841 spin_unlock_bh(&queue_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700842 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100843}
844
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900845/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100846 * Wake up port after congestion: Called with port locked,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900847 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100848 */
849
850static void port_wakeup_sh(unsigned long ref)
851{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500852 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100853 struct user_port *up_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800854 tipc_continue_event cb = NULL;
855 void *uh = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100856
Per Liden4323add2006-01-18 00:38:21 +0100857 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100858 if (p_ptr) {
859 up_ptr = p_ptr->user_port;
860 if (up_ptr) {
861 cb = up_ptr->continue_event_cb;
862 uh = up_ptr->usr_handle;
863 }
Per Liden4323add2006-01-18 00:38:21 +0100864 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100865 }
866 if (cb)
867 cb(uh, ref);
868}
869
870
871static void port_wakeup(struct tipc_port *p_ptr)
872{
Per Liden4323add2006-01-18 00:38:21 +0100873 tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100874}
875
876void tipc_acknowledge(u32 ref, u32 ack)
877{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500878 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800879 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100880
Per Liden4323add2006-01-18 00:38:21 +0100881 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100882 if (!p_ptr)
883 return;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500884 if (p_ptr->connected) {
885 p_ptr->conn_unacked -= ack;
Allan Stephense4a0aee2011-06-01 16:21:12 -0400886 buf = port_build_proto_msg(p_ptr, CONN_ACK, ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100887 }
Per Liden4323add2006-01-18 00:38:21 +0100888 tipc_port_unlock(p_ptr);
889 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100890}
891
892/*
Allan Stephensb0c1e922010-12-31 18:59:22 +0000893 * tipc_createport(): user level call.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100894 */
895
Allan Stephensb0c1e922010-12-31 18:59:22 +0000896int tipc_createport(void *usr_handle,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900897 unsigned int importance,
898 tipc_msg_err_event error_cb,
899 tipc_named_msg_err_event named_error_cb,
900 tipc_conn_shutdown_event conn_error_cb,
901 tipc_msg_event msg_cb,
902 tipc_named_msg_event named_msg_cb,
903 tipc_conn_msg_event conn_msg_cb,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904 tipc_continue_event continue_event_cb,/* May be zero */
905 u32 *portref)
906{
907 struct user_port *up_ptr;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500908 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100909
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700910 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700911 if (!up_ptr) {
Allan Stephensa75bf872006-06-25 23:50:01 -0700912 warn("Port creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100913 return -ENOMEM;
914 }
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500915 p_ptr = (struct tipc_port *)tipc_createport_raw(NULL, port_dispatcher,
Allan Stephens0ea52242008-07-14 22:42:19 -0700916 port_wakeup, importance);
917 if (!p_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100918 kfree(up_ptr);
919 return -ENOMEM;
920 }
921
922 p_ptr->user_port = up_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100923 up_ptr->usr_handle = usr_handle;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500924 up_ptr->ref = p_ptr->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100925 up_ptr->err_cb = error_cb;
926 up_ptr->named_err_cb = named_error_cb;
927 up_ptr->conn_err_cb = conn_error_cb;
928 up_ptr->msg_cb = msg_cb;
929 up_ptr->named_msg_cb = named_msg_cb;
930 up_ptr->conn_msg_cb = conn_msg_cb;
931 up_ptr->continue_event_cb = continue_event_cb;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500932 *portref = p_ptr->ref;
Per Liden4323add2006-01-18 00:38:21 +0100933 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700934 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100935}
936
Per Lidenb97bf3f2006-01-02 19:04:38 +0100937int tipc_portimportance(u32 ref, unsigned int *importance)
938{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500939 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900940
Per Liden4323add2006-01-18 00:38:21 +0100941 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100942 if (!p_ptr)
943 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500944 *importance = (unsigned int)msg_importance(&p_ptr->phdr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800945 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700946 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100947}
948
949int tipc_set_portimportance(u32 ref, unsigned int imp)
950{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500951 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100952
953 if (imp > TIPC_CRITICAL_IMPORTANCE)
954 return -EINVAL;
955
Per Liden4323add2006-01-18 00:38:21 +0100956 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100957 if (!p_ptr)
958 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500959 msg_set_importance(&p_ptr->phdr, (u32)imp);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800960 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700961 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100962}
963
964
965int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
966{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500967 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100968 struct publication *publ;
969 u32 key;
970 int res = -EINVAL;
971
Per Liden4323add2006-01-18 00:38:21 +0100972 p_ptr = tipc_port_lock(ref);
Adrian Bunkd55b4c62006-10-31 16:59:35 -0800973 if (!p_ptr)
974 return -EINVAL;
975
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500976 if (p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100977 goto exit;
978 if (seq->lower > seq->upper)
979 goto exit;
980 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
981 goto exit;
982 key = ref + p_ptr->pub_count + 1;
983 if (key == ref) {
984 res = -EADDRINUSE;
985 goto exit;
986 }
Per Liden4323add2006-01-18 00:38:21 +0100987 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500988 scope, p_ptr->ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989 if (publ) {
990 list_add(&publ->pport_list, &p_ptr->publications);
991 p_ptr->pub_count++;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500992 p_ptr->published = 1;
Allan Stephens0e35fd52008-07-14 22:44:01 -0700993 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100994 }
995exit:
Per Liden4323add2006-01-18 00:38:21 +0100996 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100997 return res;
998}
999
1000int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1001{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001002 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001003 struct publication *publ;
1004 struct publication *tpubl;
1005 int res = -EINVAL;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001006
Per Liden4323add2006-01-18 00:38:21 +01001007 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001008 if (!p_ptr)
1009 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001010 if (!seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001011 list_for_each_entry_safe(publ, tpubl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001012 &p_ptr->publications, pport_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001013 tipc_nametbl_withdraw(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +01001014 publ->ref, publ->key);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001015 }
Allan Stephens0e35fd52008-07-14 22:44:01 -07001016 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001017 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001018 list_for_each_entry_safe(publ, tpubl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001019 &p_ptr->publications, pport_list) {
1020 if (publ->scope != scope)
1021 continue;
1022 if (publ->type != seq->type)
1023 continue;
1024 if (publ->lower != seq->lower)
1025 continue;
1026 if (publ->upper != seq->upper)
1027 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001028 tipc_nametbl_withdraw(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +01001029 publ->ref, publ->key);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001030 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001031 break;
1032 }
1033 }
1034 if (list_empty(&p_ptr->publications))
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001035 p_ptr->published = 0;
Per Liden4323add2006-01-18 00:38:21 +01001036 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001037 return res;
1038}
1039
1040int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
1041{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001042 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001043 struct tipc_msg *msg;
1044 int res = -EINVAL;
1045
Per Liden4323add2006-01-18 00:38:21 +01001046 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001047 if (!p_ptr)
1048 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001049 if (p_ptr->published || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001050 goto exit;
1051 if (!peer->ref)
1052 goto exit;
1053
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001054 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001055 msg_set_destnode(msg, peer->node);
1056 msg_set_destport(msg, peer->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001057 msg_set_type(msg, TIPC_CONN_MSG);
Allan Stephens53b94362011-04-17 16:02:11 -04001058 msg_set_lookup_scope(msg, 0);
Allan Stephens08c80e92010-12-31 18:59:17 +00001059 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001060
1061 p_ptr->probing_interval = PROBING_INTERVAL;
1062 p_ptr->probing_state = CONFIRMED;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001063 p_ptr->connected = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001064 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
1065
Allan Stephens0e659672010-12-31 18:59:32 +00001066 tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
David S. Miller880b0052006-01-12 13:22:32 -08001067 (void *)(unsigned long)ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001068 (net_ev_handler)port_handle_node_down);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001069 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001070exit:
Per Liden4323add2006-01-18 00:38:21 +01001071 tipc_port_unlock(p_ptr);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001072 p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001073 return res;
1074}
1075
Allan Stephens0c3141e2008-04-15 00:22:02 -07001076/**
1077 * tipc_disconnect_port - disconnect port from peer
1078 *
1079 * Port must be locked.
1080 */
1081
1082int tipc_disconnect_port(struct tipc_port *tp_ptr)
1083{
1084 int res;
1085
1086 if (tp_ptr->connected) {
1087 tp_ptr->connected = 0;
1088 /* let timer expire on it's own to avoid deadlock! */
1089 tipc_nodesub_unsubscribe(
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001090 &((struct tipc_port *)tp_ptr)->subscription);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001091 res = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001092 } else {
1093 res = -ENOTCONN;
1094 }
1095 return res;
1096}
1097
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098/*
1099 * tipc_disconnect(): Disconnect port form peer.
1100 * This is a node local operation.
1101 */
1102
1103int tipc_disconnect(u32 ref)
1104{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001105 struct tipc_port *p_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001106 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001107
Per Liden4323add2006-01-18 00:38:21 +01001108 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001109 if (!p_ptr)
1110 return -EINVAL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001111 res = tipc_disconnect_port((struct tipc_port *)p_ptr);
Per Liden4323add2006-01-18 00:38:21 +01001112 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001113 return res;
1114}
1115
1116/*
1117 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1118 */
1119int tipc_shutdown(u32 ref)
1120{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001121 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001122 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001123
Per Liden4323add2006-01-18 00:38:21 +01001124 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001125 if (!p_ptr)
1126 return -EINVAL;
1127
Allan Stephense244a912011-05-31 16:10:08 -04001128 buf = port_build_peer_abort_msg(p_ptr, TIPC_CONN_SHUTDOWN);
Per Liden4323add2006-01-18 00:38:21 +01001129 tipc_port_unlock(p_ptr);
1130 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001131 return tipc_disconnect(ref);
1132}
1133
Allan Stephens9b641252011-11-09 13:29:18 -05001134/**
1135 * tipc_port_recv_msg - receive message from lower layer and deliver to port user
1136 */
1137
1138int tipc_port_recv_msg(struct sk_buff *buf)
1139{
1140 struct tipc_port *p_ptr;
1141 struct tipc_msg *msg = buf_msg(buf);
1142 u32 destport = msg_destport(msg);
1143 u32 dsz = msg_data_sz(msg);
1144 u32 err;
1145
1146 /* forward unresolved named message */
1147 if (unlikely(!destport)) {
1148 tipc_net_route_msg(buf);
1149 return dsz;
1150 }
1151
1152 /* validate destination & pass to port, otherwise reject message */
1153 p_ptr = tipc_port_lock(destport);
1154 if (likely(p_ptr)) {
1155 if (likely(p_ptr->connected)) {
1156 if ((unlikely(msg_origport(msg) !=
1157 tipc_peer_port(p_ptr))) ||
1158 (unlikely(msg_orignode(msg) !=
1159 tipc_peer_node(p_ptr))) ||
1160 (unlikely(!msg_connected(msg)))) {
1161 err = TIPC_ERR_NO_PORT;
1162 tipc_port_unlock(p_ptr);
1163 goto reject;
1164 }
1165 }
1166 err = p_ptr->dispatcher(p_ptr, buf);
1167 tipc_port_unlock(p_ptr);
1168 if (likely(!err))
1169 return dsz;
1170 } else {
1171 err = TIPC_ERR_NO_PORT;
1172 }
1173reject:
1174 return tipc_reject_msg(buf, err);
1175}
1176
Per Lidenb97bf3f2006-01-02 19:04:38 +01001177/*
Per Liden4323add2006-01-18 00:38:21 +01001178 * tipc_port_recv_sections(): Concatenate and deliver sectioned
Per Lidenb97bf3f2006-01-02 19:04:38 +01001179 * message for this node.
1180 */
1181
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001182static int tipc_port_recv_sections(struct tipc_port *sender, unsigned int num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001183 struct iovec const *msg_sect,
1184 unsigned int total_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001185{
1186 struct sk_buff *buf;
1187 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001188
Allan Stephens26896902011-04-21 10:42:07 -05001189 res = tipc_msg_build(&sender->phdr, msg_sect, num_sect, total_len,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001190 MAX_MSG_SIZE, !sender->user_port, &buf);
1191 if (likely(buf))
Per Liden4323add2006-01-18 00:38:21 +01001192 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193 return res;
1194}
1195
1196/**
1197 * tipc_send - send message sections on connection
1198 */
1199
Allan Stephens26896902011-04-21 10:42:07 -05001200int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect,
1201 unsigned int total_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001202{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001203 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001204 u32 destnode;
1205 int res;
1206
Per Liden4323add2006-01-18 00:38:21 +01001207 p_ptr = tipc_port_deref(ref);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001208 if (!p_ptr || !p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001209 return -EINVAL;
1210
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001211 p_ptr->congested = 1;
Per Liden4323add2006-01-18 00:38:21 +01001212 if (!tipc_port_congested(p_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001213 destnode = port_peernode(p_ptr);
1214 if (likely(destnode != tipc_own_addr))
Per Liden4323add2006-01-18 00:38:21 +01001215 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001216 total_len, destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001217 else
Allan Stephens26896902011-04-21 10:42:07 -05001218 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
1219 total_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001220
1221 if (likely(res != -ELINKCONG)) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001222 p_ptr->congested = 0;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001223 if (res > 0)
1224 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001225 return res;
1226 }
1227 }
1228 if (port_unreliable(p_ptr)) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001229 p_ptr->congested = 0;
Allan Stephens26896902011-04-21 10:42:07 -05001230 return total_len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001231 }
1232 return -ELINKCONG;
1233}
1234
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001235/**
Allan Stephens12bae472010-11-30 12:01:02 +00001236 * tipc_send2name - send message sections to port name
Per Lidenb97bf3f2006-01-02 19:04:38 +01001237 */
1238
Allan Stephens12bae472010-11-30 12:01:02 +00001239int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
Allan Stephens26896902011-04-21 10:42:07 -05001240 unsigned int num_sect, struct iovec const *msg_sect,
1241 unsigned int total_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001242{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001243 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001244 struct tipc_msg *msg;
1245 u32 destnode = domain;
Allan Stephens9ccc2eb2010-05-11 14:30:06 +00001246 u32 destport;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001247 int res;
1248
Per Liden4323add2006-01-18 00:38:21 +01001249 p_ptr = tipc_port_deref(ref);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001250 if (!p_ptr || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001251 return -EINVAL;
1252
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001253 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001254 msg_set_type(msg, TIPC_NAMED_MSG);
Allan Stephens741d9eb2011-05-31 15:03:18 -04001255 msg_set_hdr_sz(msg, NAMED_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 msg_set_nametype(msg, name->type);
1257 msg_set_nameinst(msg, name->instance);
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001258 msg_set_lookup_scope(msg, tipc_addr_scope(domain));
Per Liden4323add2006-01-18 00:38:21 +01001259 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001260 msg_set_destnode(msg, destnode);
1261 msg_set_destport(msg, destport);
1262
Allan Stephensbc9f8142011-11-07 17:00:54 -05001263 if (likely(destport || destnode)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 if (likely(destnode == tipc_own_addr))
Allan Stephenscb7ce912011-01-24 15:02:14 -05001265 res = tipc_port_recv_sections(p_ptr, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001266 msg_sect, total_len);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001267 else
1268 res = tipc_link_send_sections_fast(p_ptr, msg_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001269 num_sect, total_len,
1270 destnode);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001271 if (likely(res != -ELINKCONG)) {
1272 if (res > 0)
1273 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001274 return res;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001275 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001276 if (port_unreliable(p_ptr)) {
Allan Stephens26896902011-04-21 10:42:07 -05001277 return total_len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001278 }
1279 return -ELINKCONG;
1280 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001281 return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001282 total_len, TIPC_ERR_NO_NAME);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001283}
1284
1285/**
Allan Stephens12bae472010-11-30 12:01:02 +00001286 * tipc_send2port - send message sections to port identity
Per Lidenb97bf3f2006-01-02 19:04:38 +01001287 */
1288
Allan Stephens12bae472010-11-30 12:01:02 +00001289int tipc_send2port(u32 ref, struct tipc_portid const *dest,
Allan Stephens26896902011-04-21 10:42:07 -05001290 unsigned int num_sect, struct iovec const *msg_sect,
1291 unsigned int total_len)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001292{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001293 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001294 struct tipc_msg *msg;
1295 int res;
1296
Per Liden4323add2006-01-18 00:38:21 +01001297 p_ptr = tipc_port_deref(ref);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001298 if (!p_ptr || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001299 return -EINVAL;
1300
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001301 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001302 msg_set_type(msg, TIPC_DIRECT_MSG);
Allan Stephens53b94362011-04-17 16:02:11 -04001303 msg_set_lookup_scope(msg, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001304 msg_set_destnode(msg, dest->node);
1305 msg_set_destport(msg, dest->ref);
Allan Stephens741d9eb2011-05-31 15:03:18 -04001306 msg_set_hdr_sz(msg, BASIC_H_SIZE);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001307
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 if (dest->node == tipc_own_addr)
Allan Stephens26896902011-04-21 10:42:07 -05001309 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect,
1310 total_len);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001311 else
1312 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
Allan Stephens26896902011-04-21 10:42:07 -05001313 total_len, dest->node);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001314 if (likely(res != -ELINKCONG)) {
1315 if (res > 0)
1316 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001317 return res;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001318 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001319 if (port_unreliable(p_ptr)) {
Allan Stephens26896902011-04-21 10:42:07 -05001320 return total_len;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001321 }
1322 return -ELINKCONG;
1323}
1324
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001325/**
Allan Stephens12bae472010-11-30 12:01:02 +00001326 * tipc_send_buf2port - send message buffer to port identity
Per Lidenb97bf3f2006-01-02 19:04:38 +01001327 */
1328
Allan Stephens12bae472010-11-30 12:01:02 +00001329int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
1330 struct sk_buff *buf, unsigned int dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001331{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001332 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001333 struct tipc_msg *msg;
1334 int res;
1335
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001336 p_ptr = (struct tipc_port *)tipc_ref_deref(ref);
1337 if (!p_ptr || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001338 return -EINVAL;
1339
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001340 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001341 msg_set_type(msg, TIPC_DIRECT_MSG);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342 msg_set_destnode(msg, dest->node);
1343 msg_set_destport(msg, dest->ref);
Allan Stephens741d9eb2011-05-31 15:03:18 -04001344 msg_set_hdr_sz(msg, BASIC_H_SIZE);
1345 msg_set_size(msg, BASIC_H_SIZE + dsz);
1346 if (skb_cow(buf, BASIC_H_SIZE))
Per Lidenb97bf3f2006-01-02 19:04:38 +01001347 return -ENOMEM;
1348
Allan Stephens741d9eb2011-05-31 15:03:18 -04001349 skb_push(buf, BASIC_H_SIZE);
1350 skb_copy_to_linear_data(buf, msg, BASIC_H_SIZE);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001351
Per Lidenb97bf3f2006-01-02 19:04:38 +01001352 if (dest->node == tipc_own_addr)
Allan Stephenscb7ce912011-01-24 15:02:14 -05001353 res = tipc_port_recv_msg(buf);
1354 else
1355 res = tipc_send_buf_fast(buf, dest->node);
1356 if (likely(res != -ELINKCONG)) {
1357 if (res > 0)
1358 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001359 return res;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001360 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001361 if (port_unreliable(p_ptr))
1362 return dsz;
1363 return -ELINKCONG;
1364}
1365