blob: 3e5122c5ba3370ac66cc62efafbca1048ba51fe7 [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
Allan Stephens23dd4cc2011-01-07 11:43:40 -050072static u32 port_out_seqno(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010073{
Allan Stephens23dd4cc2011-01-07 11:43:40 -050074 return msg_transp_seqno(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +010075}
76
Allan Stephens23dd4cc2011-01-07 11:43:40 -050077static void port_incr_out_seqno(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010078{
Allan Stephens23dd4cc2011-01-07 11:43:40 -050079 struct tipc_msg *m = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +010080
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, };
Allan Stephens23dd4cc2011-01-07 11:43:40 -050097 struct tipc_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
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500106 hdr = &oport->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107 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);
Allan Stephensa0168922010-12-31 18:59:35 +0000134 if ((res < 0) && (dports.count != 0))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 buf_discard(ibuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136 } else {
137 ibuf = buf;
138 }
139
140 if (res >= 0) {
141 if (ibuf)
Per Liden4323add2006-01-18 00:38:21 +0100142 tipc_port_recv_mcast(ibuf, &dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143 } else {
Per Liden4323add2006-01-18 00:38:21 +0100144 tipc_port_list_free(&dports);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145 }
146 return res;
147}
148
149/**
Per Liden4323add2006-01-18 00:38:21 +0100150 * tipc_port_recv_mcast - deliver multicast message to all destination ports
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900151 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152 * If there is no port list, perform a lookup to create one
153 */
154
Per Liden4323add2006-01-18 00:38:21 +0100155void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156{
Allan Stephens0e659672010-12-31 18:59:32 +0000157 struct tipc_msg *msg;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158 struct port_list dports = {0, NULL, };
159 struct port_list *item = dp;
160 int cnt = 0;
161
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 msg = buf_msg(buf);
163
164 /* Create destination port list, if one wasn't supplied */
165
166 if (dp == NULL) {
Per Liden4323add2006-01-18 00:38:21 +0100167 tipc_nametbl_mc_translate(msg_nametype(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 msg_namelower(msg),
169 msg_nameupper(msg),
170 TIPC_CLUSTER_SCOPE,
171 &dports);
172 item = dp = &dports;
173 }
174
175 /* Deliver a copy of message to each destination port */
176
177 if (dp->count != 0) {
178 if (dp->count == 1) {
179 msg_set_destport(msg, dp->ports[0]);
Per Liden4323add2006-01-18 00:38:21 +0100180 tipc_port_recv_msg(buf);
181 tipc_port_list_free(dp);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 return;
183 }
184 for (; cnt < dp->count; cnt++) {
185 int index = cnt % PLSIZE;
186 struct sk_buff *b = skb_clone(buf, GFP_ATOMIC);
187
188 if (b == NULL) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700189 warn("Unable to deliver multicast message(s)\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100190 goto exit;
191 }
Allan Stephensa0168922010-12-31 18:59:35 +0000192 if ((index == 0) && (cnt != 0))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 item = item->next;
Allan Stephens0e659672010-12-31 18:59:32 +0000194 msg_set_destport(buf_msg(b), item->ports[index]);
Per Liden4323add2006-01-18 00:38:21 +0100195 tipc_port_recv_msg(b);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100196 }
197 }
198exit:
199 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100200 tipc_port_list_free(dp);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201}
202
203/**
Allan Stephens7ef43eb2008-05-12 15:42:28 -0700204 * tipc_createport_raw - create a generic TIPC port
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900205 *
Allan Stephens0ea52242008-07-14 22:42:19 -0700206 * Returns pointer to (locked) TIPC port, or NULL if unable to create it
Per Lidenb97bf3f2006-01-02 19:04:38 +0100207 */
208
Allan Stephens0ea52242008-07-14 22:42:19 -0700209struct tipc_port *tipc_createport_raw(void *usr_handle,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100210 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
211 void (*wakeup)(struct tipc_port *),
Allan Stephens0ea52242008-07-14 22:42:19 -0700212 const u32 importance)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500214 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 struct tipc_msg *msg;
216 u32 ref;
217
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700218 p_ptr = kzalloc(sizeof(*p_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700219 if (!p_ptr) {
220 warn("Port creation failed, no memory\n");
Allan Stephens0ea52242008-07-14 22:42:19 -0700221 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 }
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500223 ref = tipc_ref_acquire(p_ptr, &p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224 if (!ref) {
Allan Stephensa10bd922006-06-25 23:52:17 -0700225 warn("Port creation failed, reference table exhausted\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 kfree(p_ptr);
Allan Stephens0ea52242008-07-14 22:42:19 -0700227 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228 }
229
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500230 p_ptr->usr_handle = usr_handle;
231 p_ptr->max_pkt = MAX_PKT_DEFAULT;
232 p_ptr->ref = ref;
233 msg = &p_ptr->phdr;
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000234 tipc_msg_init(msg, importance, TIPC_NAMED_MSG, LONG_H_SIZE, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100235 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100236 p_ptr->last_in_seqno = 41;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 INIT_LIST_HEAD(&p_ptr->wait_list);
238 INIT_LIST_HEAD(&p_ptr->subscription.nodesub_list);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239 p_ptr->dispatcher = dispatcher;
240 p_ptr->wakeup = wakeup;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800241 p_ptr->user_port = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 k_init_timer(&p_ptr->timer, (Handler)port_timeout, ref);
Per Liden4323add2006-01-18 00:38:21 +0100243 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244 INIT_LIST_HEAD(&p_ptr->publications);
245 INIT_LIST_HEAD(&p_ptr->port_list);
246 list_add_tail(&p_ptr->port_list, &ports);
Per Liden4323add2006-01-18 00:38:21 +0100247 spin_unlock_bh(&tipc_port_list_lock);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500248 return p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249}
250
251int tipc_deleteport(u32 ref)
252{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500253 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800254 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800256 tipc_withdraw(ref, 0, NULL);
Per Liden4323add2006-01-18 00:38:21 +0100257 p_ptr = tipc_port_lock(ref);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900258 if (!p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259 return -EINVAL;
260
Per Liden4323add2006-01-18 00:38:21 +0100261 tipc_ref_discard(ref);
262 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263
264 k_cancel_timer(&p_ptr->timer);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500265 if (p_ptr->connected) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 buf = port_build_peer_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
Per Liden4323add2006-01-18 00:38:21 +0100267 tipc_nodesub_unsubscribe(&p_ptr->subscription);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268 }
Allan Stephense83504f2010-12-31 18:59:30 +0000269 kfree(p_ptr->user_port);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270
Per Liden4323add2006-01-18 00:38:21 +0100271 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 list_del(&p_ptr->port_list);
273 list_del(&p_ptr->wait_list);
Per Liden4323add2006-01-18 00:38:21 +0100274 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 k_term_timer(&p_ptr->timer);
276 kfree(p_ptr);
Per Liden4323add2006-01-18 00:38:21 +0100277 tipc_net_route_msg(buf);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700278 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279}
280
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500281static int port_unreliable(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500283 return msg_src_droppable(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100284}
285
286int tipc_portunreliable(u32 ref, unsigned int *isunreliable)
287{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500288 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900289
Per Liden4323add2006-01-18 00:38:21 +0100290 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291 if (!p_ptr)
292 return -EINVAL;
293 *isunreliable = port_unreliable(p_ptr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800294 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700295 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296}
297
298int tipc_set_portunreliable(u32 ref, unsigned int isunreliable)
299{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500300 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900301
Per Liden4323add2006-01-18 00:38:21 +0100302 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 if (!p_ptr)
304 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500305 msg_set_src_droppable(&p_ptr->phdr, (isunreliable != 0));
Per Liden4323add2006-01-18 00:38:21 +0100306 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700307 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308}
309
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500310static int port_unreturnable(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500312 return msg_dest_droppable(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313}
314
315int tipc_portunreturnable(u32 ref, unsigned int *isunrejectable)
316{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500317 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900318
Per Liden4323add2006-01-18 00:38:21 +0100319 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320 if (!p_ptr)
321 return -EINVAL;
322 *isunrejectable = port_unreturnable(p_ptr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800323 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700324 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325}
326
327int tipc_set_portunreturnable(u32 ref, unsigned int isunrejectable)
328{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500329 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900330
Per Liden4323add2006-01-18 00:38:21 +0100331 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 if (!p_ptr)
333 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500334 msg_set_dest_droppable(&p_ptr->phdr, (isunrejectable != 0));
Per Liden4323add2006-01-18 00:38:21 +0100335 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700336 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337}
338
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900339/*
340 * port_build_proto_msg(): build a port level protocol
341 * or a connection abortion message. Called with
Per Lidenb97bf3f2006-01-02 19:04:38 +0100342 * tipc_port lock on.
343 */
344static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode,
345 u32 origport, u32 orignode,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900346 u32 usr, u32 type, u32 err,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347 u32 seqno, u32 ack)
348{
349 struct sk_buff *buf;
350 struct tipc_msg *msg;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900351
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000352 buf = tipc_buf_acquire(LONG_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353 if (buf) {
354 msg = buf_msg(buf);
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000355 tipc_msg_init(msg, usr, type, LONG_H_SIZE, destnode);
Allan Stephens75715212008-06-04 17:37:34 -0700356 msg_set_errcode(msg, err);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 msg_set_destport(msg, destport);
358 msg_set_origport(msg, origport);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359 msg_set_orignode(msg, orignode);
360 msg_set_transp_seqno(msg, seqno);
361 msg_set_msgcnt(msg, ack);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362 }
363 return buf;
364}
365
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366int tipc_reject_msg(struct sk_buff *buf, u32 err)
367{
368 struct tipc_msg *msg = buf_msg(buf);
369 struct sk_buff *rbuf;
370 struct tipc_msg *rmsg;
371 int hdr_sz;
372 u32 imp = msg_importance(msg);
373 u32 data_sz = msg_data_sz(msg);
374
375 if (data_sz > MAX_REJECT_SIZE)
376 data_sz = MAX_REJECT_SIZE;
377 if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE))
378 imp++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379
380 /* discard rejected message if it shouldn't be returned to sender */
381 if (msg_errcode(msg) || msg_dest_droppable(msg)) {
382 buf_discard(buf);
383 return data_sz;
384 }
385
386 /* construct rejected message */
387 if (msg_mcast(msg))
388 hdr_sz = MCAST_H_SIZE;
389 else
390 hdr_sz = LONG_H_SIZE;
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000391 rbuf = tipc_buf_acquire(data_sz + hdr_sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392 if (rbuf == NULL) {
393 buf_discard(buf);
394 return data_sz;
395 }
396 rmsg = buf_msg(rbuf);
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000397 tipc_msg_init(rmsg, imp, msg_type(msg), hdr_sz, msg_orignode(msg));
Allan Stephens75715212008-06-04 17:37:34 -0700398 msg_set_errcode(rmsg, err);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 msg_set_destport(rmsg, msg_origport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100400 msg_set_origport(rmsg, msg_destport(msg));
Allan Stephens99c14592008-06-04 17:48:25 -0700401 if (msg_short(msg)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100402 msg_set_orignode(rmsg, tipc_own_addr);
Allan Stephens99c14592008-06-04 17:48:25 -0700403 /* leave name type & instance as zeroes */
404 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100405 msg_set_orignode(rmsg, msg_destnode(msg));
Allan Stephens99c14592008-06-04 17:48:25 -0700406 msg_set_nametype(rmsg, msg_nametype(msg));
407 msg_set_nameinst(rmsg, msg_nameinst(msg));
408 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900409 msg_set_size(rmsg, data_sz + hdr_sz);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300410 skb_copy_to_linear_data_offset(rbuf, hdr_sz, msg_data(msg), data_sz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100411
412 /* send self-abort message when rejecting on a connected port */
413 if (msg_connected(msg)) {
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800414 struct sk_buff *abuf = NULL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500415 struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100416
417 if (p_ptr) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500418 if (p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419 abuf = port_build_self_abort_msg(p_ptr, err);
Per Liden4323add2006-01-18 00:38:21 +0100420 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100421 }
Per Liden4323add2006-01-18 00:38:21 +0100422 tipc_net_route_msg(abuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 }
424
425 /* send rejected message */
426 buf_discard(buf);
Per Liden4323add2006-01-18 00:38:21 +0100427 tipc_net_route_msg(rbuf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428 return data_sz;
429}
430
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500431int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
Per Liden4323add2006-01-18 00:38:21 +0100432 struct iovec const *msg_sect, u32 num_sect,
433 int err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434{
435 struct sk_buff *buf;
436 int res;
437
Allan Stephensc68ca7b2010-05-11 14:30:12 +0000438 res = tipc_msg_build(hdr, msg_sect, num_sect, MAX_MSG_SIZE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100439 !p_ptr->user_port, &buf);
440 if (!buf)
441 return res;
442
443 return tipc_reject_msg(buf, err);
444}
445
446static void port_timeout(unsigned long ref)
447{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500448 struct tipc_port *p_ptr = tipc_port_lock(ref);
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800449 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450
Allan Stephens065fd172006-10-16 21:38:05 -0700451 if (!p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100452 return;
453
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500454 if (!p_ptr->connected) {
Allan Stephens065fd172006-10-16 21:38:05 -0700455 tipc_port_unlock(p_ptr);
456 return;
457 }
458
Per Lidenb97bf3f2006-01-02 19:04:38 +0100459 /* Last probe answered ? */
460 if (p_ptr->probing_state == PROBING) {
461 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_PORT);
462 } else {
463 buf = port_build_proto_msg(port_peerport(p_ptr),
464 port_peernode(p_ptr),
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500465 p_ptr->ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100466 tipc_own_addr,
467 CONN_MANAGER,
468 CONN_PROBE,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900469 TIPC_OK,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100470 port_out_seqno(p_ptr),
471 0);
472 port_incr_out_seqno(p_ptr);
473 p_ptr->probing_state = PROBING;
474 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
475 }
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
481static void port_handle_node_down(unsigned long ref)
482{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500483 struct tipc_port *p_ptr = tipc_port_lock(ref);
Allan Stephens0e659672010-12-31 18:59:32 +0000484 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485
486 if (!p_ptr)
487 return;
488 buf = port_build_self_abort_msg(p_ptr, TIPC_ERR_NO_NODE);
Per Liden4323add2006-01-18 00:38:21 +0100489 tipc_port_unlock(p_ptr);
490 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100491}
492
493
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500494static struct sk_buff *port_build_self_abort_msg(struct tipc_port *p_ptr, u32 err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500496 u32 imp = msg_importance(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100497
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500498 if (!p_ptr->connected)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800499 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100500 if (imp < TIPC_CRITICAL_IMPORTANCE)
501 imp++;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500502 return port_build_proto_msg(p_ptr->ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100503 tipc_own_addr,
504 port_peerport(p_ptr),
505 port_peernode(p_ptr),
506 imp,
507 TIPC_CONN_MSG,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900508 err,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100509 p_ptr->last_in_seqno + 1,
510 0);
511}
512
513
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500514static struct sk_buff *port_build_peer_abort_msg(struct tipc_port *p_ptr, u32 err)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100515{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500516 u32 imp = msg_importance(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100517
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500518 if (!p_ptr->connected)
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800519 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100520 if (imp < TIPC_CRITICAL_IMPORTANCE)
521 imp++;
522 return port_build_proto_msg(port_peerport(p_ptr),
523 port_peernode(p_ptr),
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500524 p_ptr->ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100525 tipc_own_addr,
526 imp,
527 TIPC_CONN_MSG,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900528 err,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100529 port_out_seqno(p_ptr),
530 0);
531}
532
Per Liden4323add2006-01-18 00:38:21 +0100533void tipc_port_recv_proto_msg(struct sk_buff *buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100534{
535 struct tipc_msg *msg = buf_msg(buf);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500536 struct tipc_port *p_ptr = tipc_port_lock(msg_destport(msg));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100537 u32 err = TIPC_OK;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800538 struct sk_buff *r_buf = NULL;
539 struct sk_buff *abort_buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100540
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541 if (!p_ptr) {
542 err = TIPC_ERR_NO_PORT;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500543 } else if (p_ptr->connected) {
Allan Stephens96d841b2010-08-17 11:00:11 +0000544 if ((port_peernode(p_ptr) != msg_orignode(msg)) ||
545 (port_peerport(p_ptr) != msg_origport(msg))) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100546 err = TIPC_ERR_NO_PORT;
Allan Stephens96d841b2010-08-17 11:00:11 +0000547 } else if (msg_type(msg) == CONN_ACK) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900548 int wakeup = tipc_port_congested(p_ptr) &&
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500549 p_ptr->congested &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550 p_ptr->wakeup;
551 p_ptr->acked += msg_msgcnt(msg);
Per Liden4323add2006-01-18 00:38:21 +0100552 if (tipc_port_congested(p_ptr))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100553 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500554 p_ptr->congested = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100555 if (!wakeup)
556 goto exit;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500557 p_ptr->wakeup(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100558 goto exit;
559 }
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500560 } else if (p_ptr->published) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100561 err = TIPC_ERR_NO_PORT;
562 }
563 if (err) {
564 r_buf = port_build_proto_msg(msg_origport(msg),
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900565 msg_orignode(msg),
566 msg_destport(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100567 tipc_own_addr,
Allan Stephens06d82c92008-03-06 15:06:55 -0800568 TIPC_HIGH_IMPORTANCE,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100569 TIPC_CONN_MSG,
570 err,
571 0,
572 0);
573 goto exit;
574 }
575
576 /* All is fine */
577 if (msg_type(msg) == CONN_PROBE) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900578 r_buf = port_build_proto_msg(msg_origport(msg),
579 msg_orignode(msg),
580 msg_destport(msg),
581 tipc_own_addr,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100582 CONN_MANAGER,
583 CONN_PROBE_REPLY,
584 TIPC_OK,
585 port_out_seqno(p_ptr),
586 0);
587 }
588 p_ptr->probing_state = CONFIRMED;
589 port_incr_out_seqno(p_ptr);
590exit:
591 if (p_ptr)
Per Liden4323add2006-01-18 00:38:21 +0100592 tipc_port_unlock(p_ptr);
593 tipc_net_route_msg(r_buf);
594 tipc_net_route_msg(abort_buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100595 buf_discard(buf);
596}
597
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500598static void port_print(struct tipc_port *p_ptr, struct print_buf *buf, int full_id)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900600 struct publication *publ;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100601
602 if (full_id)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900603 tipc_printf(buf, "<%u.%u.%u:%u>:",
Per Lidenb97bf3f2006-01-02 19:04:38 +0100604 tipc_zone(tipc_own_addr), tipc_cluster(tipc_own_addr),
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500605 tipc_node(tipc_own_addr), p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606 else
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500607 tipc_printf(buf, "%-10u:", p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100608
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500609 if (p_ptr->connected) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900610 u32 dport = port_peerport(p_ptr);
611 u32 destnode = port_peernode(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900613 tipc_printf(buf, " connected to <%u.%u.%u:%u>",
614 tipc_zone(destnode), tipc_cluster(destnode),
615 tipc_node(destnode), dport);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500616 if (p_ptr->conn_type != 0)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900617 tipc_printf(buf, " via {%u,%u}",
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500618 p_ptr->conn_type,
619 p_ptr->conn_instance);
620 } else if (p_ptr->published) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900621 tipc_printf(buf, " bound to");
622 list_for_each_entry(publ, &p_ptr->publications, pport_list) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100623 if (publ->lower == publ->upper)
624 tipc_printf(buf, " {%u,%u}", publ->type,
625 publ->lower);
626 else
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900627 tipc_printf(buf, " {%u,%u,%u}", publ->type,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628 publ->lower, publ->upper);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900629 }
630 }
631 tipc_printf(buf, "\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632}
633
634#define MAX_PORT_QUERY 32768
635
Per Liden4323add2006-01-18 00:38:21 +0100636struct sk_buff *tipc_port_get_ports(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100637{
638 struct sk_buff *buf;
639 struct tlv_desc *rep_tlv;
640 struct print_buf pb;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500641 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100642 int str_len;
643
Per Liden4323add2006-01-18 00:38:21 +0100644 buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_PORT_QUERY));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100645 if (!buf)
646 return NULL;
647 rep_tlv = (struct tlv_desc *)buf->data;
648
Per Liden4323add2006-01-18 00:38:21 +0100649 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), MAX_PORT_QUERY);
650 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100651 list_for_each_entry(p_ptr, &ports, port_list) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500652 spin_lock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100653 port_print(p_ptr, &pb, 0);
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500654 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100655 }
Per Liden4323add2006-01-18 00:38:21 +0100656 spin_unlock_bh(&tipc_port_list_lock);
657 str_len = tipc_printbuf_validate(&pb);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100658
659 skb_put(buf, TLV_SPACE(str_len));
660 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
661
662 return buf;
663}
664
Per Liden4323add2006-01-18 00:38:21 +0100665void tipc_port_reinit(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500667 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100668 struct tipc_msg *msg;
669
Per Liden4323add2006-01-18 00:38:21 +0100670 spin_lock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100671 list_for_each_entry(p_ptr, &ports, port_list) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500672 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100673 if (msg_orignode(msg) == tipc_own_addr)
674 break;
Allan Stephens6d4a6672008-05-21 14:54:12 -0700675 msg_set_prevnode(msg, tipc_own_addr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100676 msg_set_orignode(msg, tipc_own_addr);
677 }
Per Liden4323add2006-01-18 00:38:21 +0100678 spin_unlock_bh(&tipc_port_list_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100679}
680
681
682/*
683 * port_dispatcher_sigh(): Signal handler for messages destinated
684 * to the tipc_port interface.
685 */
686
687static void port_dispatcher_sigh(void *dummy)
688{
689 struct sk_buff *buf;
690
691 spin_lock_bh(&queue_lock);
692 buf = msg_queue_head;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800693 msg_queue_head = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100694 spin_unlock_bh(&queue_lock);
695
696 while (buf) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500697 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100698 struct user_port *up_ptr;
699 struct tipc_portid orig;
700 struct tipc_name_seq dseq;
701 void *usr_handle;
702 int connected;
703 int published;
Allan Stephens96882432006-06-25 23:38:58 -0700704 u32 message_type;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100705
706 struct sk_buff *next = buf->next;
707 struct tipc_msg *msg = buf_msg(buf);
708 u32 dref = msg_destport(msg);
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900709
Allan Stephens96882432006-06-25 23:38:58 -0700710 message_type = msg_type(msg);
711 if (message_type > TIPC_DIRECT_MSG)
712 goto reject; /* Unsupported message type */
713
Per Liden4323add2006-01-18 00:38:21 +0100714 p_ptr = tipc_port_lock(dref);
Allan Stephens96882432006-06-25 23:38:58 -0700715 if (!p_ptr)
716 goto reject; /* Port deleted while msg in queue */
717
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 orig.ref = msg_origport(msg);
719 orig.node = msg_orignode(msg);
720 up_ptr = p_ptr->user_port;
721 usr_handle = up_ptr->usr_handle;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500722 connected = p_ptr->connected;
723 published = p_ptr->published;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100724
725 if (unlikely(msg_errcode(msg)))
726 goto err;
727
Allan Stephens96882432006-06-25 23:38:58 -0700728 switch (message_type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900729
Per Lidenb97bf3f2006-01-02 19:04:38 +0100730 case TIPC_CONN_MSG:{
731 tipc_conn_msg_event cb = up_ptr->conn_msg_cb;
732 u32 peer_port = port_peerport(p_ptr);
733 u32 peer_node = port_peernode(p_ptr);
Allan Stephenscb7ce912011-01-24 15:02:14 -0500734 u32 dsz;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100735
Julia Lawall4cec72c2008-01-08 23:48:20 -0800736 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700737 if (unlikely(!cb))
738 goto reject;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100739 if (unlikely(!connected)) {
Allan Stephens84b07c12008-06-04 17:28:21 -0700740 if (tipc_connect2port(dref, &orig))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100741 goto reject;
Allan Stephens84b07c12008-06-04 17:28:21 -0700742 } else if ((msg_origport(msg) != peer_port) ||
743 (msg_orignode(msg) != peer_node))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100744 goto reject;
Allan Stephenscb7ce912011-01-24 15:02:14 -0500745 dsz = msg_data_sz(msg);
746 if (unlikely(dsz &&
747 (++p_ptr->conn_unacked >=
748 TIPC_FLOW_CONTROL_WIN)))
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900749 tipc_acknowledge(dref,
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500750 p_ptr->conn_unacked);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100751 skb_pull(buf, msg_hdr_sz(msg));
Allan Stephenscb7ce912011-01-24 15:02:14 -0500752 cb(usr_handle, dref, &buf, msg_data(msg), dsz);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100753 break;
754 }
755 case TIPC_DIRECT_MSG:{
756 tipc_msg_event cb = up_ptr->msg_cb;
757
Julia Lawall4cec72c2008-01-08 23:48:20 -0800758 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700759 if (unlikely(!cb || connected))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100760 goto reject;
761 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900762 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100763 msg_data_sz(msg), msg_importance(msg),
764 &orig);
765 break;
766 }
Allan Stephens96882432006-06-25 23:38:58 -0700767 case TIPC_MCAST_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100768 case TIPC_NAMED_MSG:{
769 tipc_named_msg_event cb = up_ptr->named_msg_cb;
770
Julia Lawall4cec72c2008-01-08 23:48:20 -0800771 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700772 if (unlikely(!cb || connected || !published))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100773 goto reject;
774 dseq.type = msg_nametype(msg);
775 dseq.lower = msg_nameinst(msg);
Allan Stephens96882432006-06-25 23:38:58 -0700776 dseq.upper = (message_type == TIPC_NAMED_MSG)
777 ? dseq.lower : msg_nameupper(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100778 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900779 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100780 msg_data_sz(msg), msg_importance(msg),
781 &orig, &dseq);
782 break;
783 }
784 }
785 if (buf)
786 buf_discard(buf);
787 buf = next;
788 continue;
789err:
Allan Stephens96882432006-06-25 23:38:58 -0700790 switch (message_type) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900791
Per Lidenb97bf3f2006-01-02 19:04:38 +0100792 case TIPC_CONN_MSG:{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900793 tipc_conn_shutdown_event cb =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100794 up_ptr->conn_err_cb;
795 u32 peer_port = port_peerport(p_ptr);
796 u32 peer_node = port_peernode(p_ptr);
797
Julia Lawall4cec72c2008-01-08 23:48:20 -0800798 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700799 if (!cb || !connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100800 break;
Allan Stephens5307e462008-06-04 17:28:45 -0700801 if ((msg_origport(msg) != peer_port) ||
802 (msg_orignode(msg) != peer_node))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100803 break;
804 tipc_disconnect(dref);
805 skb_pull(buf, msg_hdr_sz(msg));
806 cb(usr_handle, dref, &buf, msg_data(msg),
807 msg_data_sz(msg), msg_errcode(msg));
808 break;
809 }
810 case TIPC_DIRECT_MSG:{
811 tipc_msg_err_event cb = up_ptr->err_cb;
812
Julia Lawall4cec72c2008-01-08 23:48:20 -0800813 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700814 if (!cb || connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100815 break;
816 skb_pull(buf, msg_hdr_sz(msg));
817 cb(usr_handle, dref, &buf, msg_data(msg),
818 msg_data_sz(msg), msg_errcode(msg), &orig);
819 break;
820 }
Allan Stephens96882432006-06-25 23:38:58 -0700821 case TIPC_MCAST_MSG:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100822 case TIPC_NAMED_MSG:{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900823 tipc_named_msg_err_event cb =
Per Lidenb97bf3f2006-01-02 19:04:38 +0100824 up_ptr->named_err_cb;
825
Julia Lawall4cec72c2008-01-08 23:48:20 -0800826 tipc_port_unlock(p_ptr);
Allan Stephens5307e462008-06-04 17:28:45 -0700827 if (!cb || connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100828 break;
829 dseq.type = msg_nametype(msg);
830 dseq.lower = msg_nameinst(msg);
Allan Stephens96882432006-06-25 23:38:58 -0700831 dseq.upper = (message_type == TIPC_NAMED_MSG)
832 ? dseq.lower : msg_nameupper(msg);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100833 skb_pull(buf, msg_hdr_sz(msg));
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900834 cb(usr_handle, dref, &buf, msg_data(msg),
Per Lidenb97bf3f2006-01-02 19:04:38 +0100835 msg_data_sz(msg), msg_errcode(msg), &dseq);
836 break;
837 }
838 }
839 if (buf)
840 buf_discard(buf);
841 buf = next;
842 continue;
843reject:
844 tipc_reject_msg(buf, TIPC_ERR_NO_PORT);
845 buf = next;
846 }
847}
848
849/*
850 * port_dispatcher(): Dispatcher for messages destinated
851 * to the tipc_port interface. Called with port locked.
852 */
853
854static u32 port_dispatcher(struct tipc_port *dummy, struct sk_buff *buf)
855{
856 buf->next = NULL;
857 spin_lock_bh(&queue_lock);
858 if (msg_queue_head) {
859 msg_queue_tail->next = buf;
860 msg_queue_tail = buf;
861 } else {
862 msg_queue_tail = msg_queue_head = buf;
Per Liden4323add2006-01-18 00:38:21 +0100863 tipc_k_signal((Handler)port_dispatcher_sigh, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100864 }
865 spin_unlock_bh(&queue_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700866 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100867}
868
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900869/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100870 * Wake up port after congestion: Called with port locked,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900871 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100872 */
873
874static void port_wakeup_sh(unsigned long ref)
875{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500876 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100877 struct user_port *up_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800878 tipc_continue_event cb = NULL;
879 void *uh = 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 up_ptr = p_ptr->user_port;
884 if (up_ptr) {
885 cb = up_ptr->continue_event_cb;
886 uh = up_ptr->usr_handle;
887 }
Per Liden4323add2006-01-18 00:38:21 +0100888 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100889 }
890 if (cb)
891 cb(uh, ref);
892}
893
894
895static void port_wakeup(struct tipc_port *p_ptr)
896{
Per Liden4323add2006-01-18 00:38:21 +0100897 tipc_k_signal((Handler)port_wakeup_sh, p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100898}
899
900void tipc_acknowledge(u32 ref, u32 ack)
901{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500902 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800903 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100904
Per Liden4323add2006-01-18 00:38:21 +0100905 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100906 if (!p_ptr)
907 return;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500908 if (p_ptr->connected) {
909 p_ptr->conn_unacked -= ack;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100910 buf = port_build_proto_msg(port_peerport(p_ptr),
911 port_peernode(p_ptr),
912 ref,
913 tipc_own_addr,
914 CONN_MANAGER,
915 CONN_ACK,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900916 TIPC_OK,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100917 port_out_seqno(p_ptr),
918 ack);
919 }
Per Liden4323add2006-01-18 00:38:21 +0100920 tipc_port_unlock(p_ptr);
921 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100922}
923
924/*
Allan Stephensb0c1e922010-12-31 18:59:22 +0000925 * tipc_createport(): user level call.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100926 */
927
Allan Stephensb0c1e922010-12-31 18:59:22 +0000928int tipc_createport(void *usr_handle,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900929 unsigned int importance,
930 tipc_msg_err_event error_cb,
931 tipc_named_msg_err_event named_error_cb,
932 tipc_conn_shutdown_event conn_error_cb,
933 tipc_msg_event msg_cb,
934 tipc_named_msg_event named_msg_cb,
935 tipc_conn_msg_event conn_msg_cb,
Per Lidenb97bf3f2006-01-02 19:04:38 +0100936 tipc_continue_event continue_event_cb,/* May be zero */
937 u32 *portref)
938{
939 struct user_port *up_ptr;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500940 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100941
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700942 up_ptr = kmalloc(sizeof(*up_ptr), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700943 if (!up_ptr) {
Allan Stephensa75bf872006-06-25 23:50:01 -0700944 warn("Port creation failed, no memory\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100945 return -ENOMEM;
946 }
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500947 p_ptr = (struct tipc_port *)tipc_createport_raw(NULL, port_dispatcher,
Allan Stephens0ea52242008-07-14 22:42:19 -0700948 port_wakeup, importance);
949 if (!p_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100950 kfree(up_ptr);
951 return -ENOMEM;
952 }
953
954 p_ptr->user_port = up_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100955 up_ptr->usr_handle = usr_handle;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500956 up_ptr->ref = p_ptr->ref;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100957 up_ptr->err_cb = error_cb;
958 up_ptr->named_err_cb = named_error_cb;
959 up_ptr->conn_err_cb = conn_error_cb;
960 up_ptr->msg_cb = msg_cb;
961 up_ptr->named_msg_cb = named_msg_cb;
962 up_ptr->conn_msg_cb = conn_msg_cb;
963 up_ptr->continue_event_cb = continue_event_cb;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500964 *portref = p_ptr->ref;
Per Liden4323add2006-01-18 00:38:21 +0100965 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700966 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100967}
968
Per Lidenb97bf3f2006-01-02 19:04:38 +0100969int tipc_portimportance(u32 ref, unsigned int *importance)
970{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500971 struct tipc_port *p_ptr;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900972
Per Liden4323add2006-01-18 00:38:21 +0100973 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100974 if (!p_ptr)
975 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500976 *importance = (unsigned int)msg_importance(&p_ptr->phdr);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800977 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700978 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100979}
980
981int tipc_set_portimportance(u32 ref, unsigned int imp)
982{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500983 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100984
985 if (imp > TIPC_CRITICAL_IMPORTANCE)
986 return -EINVAL;
987
Per Liden4323add2006-01-18 00:38:21 +0100988 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100989 if (!p_ptr)
990 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500991 msg_set_importance(&p_ptr->phdr, (u32)imp);
Julia Lawall4cec72c2008-01-08 23:48:20 -0800992 tipc_port_unlock(p_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700993 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100994}
995
996
997int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
998{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500999 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001000 struct publication *publ;
1001 u32 key;
1002 int res = -EINVAL;
1003
Per Liden4323add2006-01-18 00:38:21 +01001004 p_ptr = tipc_port_lock(ref);
Adrian Bunkd55b4c62006-10-31 16:59:35 -08001005 if (!p_ptr)
1006 return -EINVAL;
1007
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001008 if (p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001009 goto exit;
1010 if (seq->lower > seq->upper)
1011 goto exit;
1012 if ((scope < TIPC_ZONE_SCOPE) || (scope > TIPC_NODE_SCOPE))
1013 goto exit;
1014 key = ref + p_ptr->pub_count + 1;
1015 if (key == ref) {
1016 res = -EADDRINUSE;
1017 goto exit;
1018 }
Per Liden4323add2006-01-18 00:38:21 +01001019 publ = tipc_nametbl_publish(seq->type, seq->lower, seq->upper,
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001020 scope, p_ptr->ref, key);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001021 if (publ) {
1022 list_add(&publ->pport_list, &p_ptr->publications);
1023 p_ptr->pub_count++;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001024 p_ptr->published = 1;
Allan Stephens0e35fd52008-07-14 22:44:01 -07001025 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001026 }
1027exit:
Per Liden4323add2006-01-18 00:38:21 +01001028 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001029 return res;
1030}
1031
1032int tipc_withdraw(u32 ref, unsigned int scope, struct tipc_name_seq const *seq)
1033{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001034 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001035 struct publication *publ;
1036 struct publication *tpubl;
1037 int res = -EINVAL;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001038
Per Liden4323add2006-01-18 00:38:21 +01001039 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001040 if (!p_ptr)
1041 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001042 if (!seq) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001043 list_for_each_entry_safe(publ, tpubl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001044 &p_ptr->publications, pport_list) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001045 tipc_nametbl_withdraw(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +01001046 publ->ref, publ->key);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001047 }
Allan Stephens0e35fd52008-07-14 22:44:01 -07001048 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001049 } else {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001050 list_for_each_entry_safe(publ, tpubl,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001051 &p_ptr->publications, pport_list) {
1052 if (publ->scope != scope)
1053 continue;
1054 if (publ->type != seq->type)
1055 continue;
1056 if (publ->lower != seq->lower)
1057 continue;
1058 if (publ->upper != seq->upper)
1059 break;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001060 tipc_nametbl_withdraw(publ->type, publ->lower,
Per Liden4323add2006-01-18 00:38:21 +01001061 publ->ref, publ->key);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001062 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001063 break;
1064 }
1065 }
1066 if (list_empty(&p_ptr->publications))
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001067 p_ptr->published = 0;
Per Liden4323add2006-01-18 00:38:21 +01001068 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001069 return res;
1070}
1071
1072int tipc_connect2port(u32 ref, struct tipc_portid const *peer)
1073{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001074 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001075 struct tipc_msg *msg;
1076 int res = -EINVAL;
1077
Per Liden4323add2006-01-18 00:38:21 +01001078 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001079 if (!p_ptr)
1080 return -EINVAL;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001081 if (p_ptr->published || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001082 goto exit;
1083 if (!peer->ref)
1084 goto exit;
1085
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001086 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001087 msg_set_destnode(msg, peer->node);
1088 msg_set_destport(msg, peer->ref);
1089 msg_set_orignode(msg, tipc_own_addr);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001090 msg_set_origport(msg, p_ptr->ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001091 msg_set_transp_seqno(msg, 42);
1092 msg_set_type(msg, TIPC_CONN_MSG);
Allan Stephens08c80e92010-12-31 18:59:17 +00001093 msg_set_hdr_sz(msg, SHORT_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001094
1095 p_ptr->probing_interval = PROBING_INTERVAL;
1096 p_ptr->probing_state = CONFIRMED;
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001097 p_ptr->connected = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001098 k_start_timer(&p_ptr->timer, p_ptr->probing_interval);
1099
Allan Stephens0e659672010-12-31 18:59:32 +00001100 tipc_nodesub_subscribe(&p_ptr->subscription, peer->node,
David S. Miller880b0052006-01-12 13:22:32 -08001101 (void *)(unsigned long)ref,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001102 (net_ev_handler)port_handle_node_down);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001103 res = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001104exit:
Per Liden4323add2006-01-18 00:38:21 +01001105 tipc_port_unlock(p_ptr);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001106 p_ptr->max_pkt = tipc_link_get_max_pkt(peer->node, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001107 return res;
1108}
1109
Allan Stephens0c3141e2008-04-15 00:22:02 -07001110/**
1111 * tipc_disconnect_port - disconnect port from peer
1112 *
1113 * Port must be locked.
1114 */
1115
1116int tipc_disconnect_port(struct tipc_port *tp_ptr)
1117{
1118 int res;
1119
1120 if (tp_ptr->connected) {
1121 tp_ptr->connected = 0;
1122 /* let timer expire on it's own to avoid deadlock! */
1123 tipc_nodesub_unsubscribe(
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001124 &((struct tipc_port *)tp_ptr)->subscription);
Allan Stephens0e35fd52008-07-14 22:44:01 -07001125 res = 0;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001126 } else {
1127 res = -ENOTCONN;
1128 }
1129 return res;
1130}
1131
Per Lidenb97bf3f2006-01-02 19:04:38 +01001132/*
1133 * tipc_disconnect(): Disconnect port form peer.
1134 * This is a node local operation.
1135 */
1136
1137int tipc_disconnect(u32 ref)
1138{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001139 struct tipc_port *p_ptr;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001140 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001141
Per Liden4323add2006-01-18 00:38:21 +01001142 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001143 if (!p_ptr)
1144 return -EINVAL;
Allan Stephens0c3141e2008-04-15 00:22:02 -07001145 res = tipc_disconnect_port((struct tipc_port *)p_ptr);
Per Liden4323add2006-01-18 00:38:21 +01001146 tipc_port_unlock(p_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001147 return res;
1148}
1149
1150/*
1151 * tipc_shutdown(): Send a SHUTDOWN msg to peer and disconnect
1152 */
1153int tipc_shutdown(u32 ref)
1154{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001155 struct tipc_port *p_ptr;
Sam Ravnborg1fc54d82006-03-20 22:36:47 -08001156 struct sk_buff *buf = NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001157
Per Liden4323add2006-01-18 00:38:21 +01001158 p_ptr = tipc_port_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001159 if (!p_ptr)
1160 return -EINVAL;
1161
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001162 if (p_ptr->connected) {
1163 u32 imp = msg_importance(&p_ptr->phdr);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001164 if (imp < TIPC_CRITICAL_IMPORTANCE)
1165 imp++;
1166 buf = port_build_proto_msg(port_peerport(p_ptr),
1167 port_peernode(p_ptr),
1168 ref,
1169 tipc_own_addr,
1170 imp,
1171 TIPC_CONN_MSG,
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001172 TIPC_CONN_SHUTDOWN,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001173 port_out_seqno(p_ptr),
1174 0);
1175 }
Per Liden4323add2006-01-18 00:38:21 +01001176 tipc_port_unlock(p_ptr);
1177 tipc_net_route_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001178 return tipc_disconnect(ref);
1179}
1180
Per Lidenb97bf3f2006-01-02 19:04:38 +01001181/*
Per Liden4323add2006-01-18 00:38:21 +01001182 * tipc_port_recv_sections(): Concatenate and deliver sectioned
Per Lidenb97bf3f2006-01-02 19:04:38 +01001183 * message for this node.
1184 */
1185
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001186static int tipc_port_recv_sections(struct tipc_port *sender, unsigned int num_sect,
stephen hemminger31e3c3f2010-10-13 13:20:35 +00001187 struct iovec const *msg_sect)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001188{
1189 struct sk_buff *buf;
1190 int res;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001191
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001192 res = tipc_msg_build(&sender->phdr, msg_sect, num_sect,
Per Lidenb97bf3f2006-01-02 19:04:38 +01001193 MAX_MSG_SIZE, !sender->user_port, &buf);
1194 if (likely(buf))
Per Liden4323add2006-01-18 00:38:21 +01001195 tipc_port_recv_msg(buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001196 return res;
1197}
1198
1199/**
1200 * tipc_send - send message sections on connection
1201 */
1202
1203int tipc_send(u32 ref, unsigned int num_sect, struct iovec const *msg_sect)
1204{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001205 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001206 u32 destnode;
1207 int res;
1208
Per Liden4323add2006-01-18 00:38:21 +01001209 p_ptr = tipc_port_deref(ref);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001210 if (!p_ptr || !p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001211 return -EINVAL;
1212
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001213 p_ptr->congested = 1;
Per Liden4323add2006-01-18 00:38:21 +01001214 if (!tipc_port_congested(p_ptr)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001215 destnode = port_peernode(p_ptr);
1216 if (likely(destnode != tipc_own_addr))
Per Liden4323add2006-01-18 00:38:21 +01001217 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1218 destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001219 else
Per Liden4323add2006-01-18 00:38:21 +01001220 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001221
1222 if (likely(res != -ELINKCONG)) {
1223 port_incr_out_seqno(p_ptr);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001224 p_ptr->congested = 0;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001225 if (res > 0)
1226 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001227 return res;
1228 }
1229 }
1230 if (port_unreliable(p_ptr)) {
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001231 p_ptr->congested = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001232 /* Just calculate msg length and return */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001233 return tipc_msg_calc_data_size(msg_sect, num_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001234 }
1235 return -ELINKCONG;
1236}
1237
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001238/**
Allan Stephens12bae472010-11-30 12:01:02 +00001239 * tipc_send2name - send message sections to port name
Per Lidenb97bf3f2006-01-02 19:04:38 +01001240 */
1241
Allan Stephens12bae472010-11-30 12:01:02 +00001242int tipc_send2name(u32 ref, struct tipc_name const *name, unsigned int domain,
1243 unsigned int num_sect, struct iovec const *msg_sect)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001244{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001245 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001246 struct tipc_msg *msg;
1247 u32 destnode = domain;
Allan Stephens9ccc2eb2010-05-11 14:30:06 +00001248 u32 destport;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001249 int res;
1250
Per Liden4323add2006-01-18 00:38:21 +01001251 p_ptr = tipc_port_deref(ref);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001252 if (!p_ptr || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001253 return -EINVAL;
1254
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001255 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001256 msg_set_type(msg, TIPC_NAMED_MSG);
Allan Stephens12bae472010-11-30 12:01:02 +00001257 msg_set_orignode(msg, tipc_own_addr);
1258 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001259 msg_set_hdr_sz(msg, LONG_H_SIZE);
1260 msg_set_nametype(msg, name->type);
1261 msg_set_nameinst(msg, name->instance);
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001262 msg_set_lookup_scope(msg, tipc_addr_scope(domain));
Per Liden4323add2006-01-18 00:38:21 +01001263 destport = tipc_nametbl_translate(name->type, name->instance, &destnode);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001264 msg_set_destnode(msg, destnode);
1265 msg_set_destport(msg, destport);
1266
Allan Stephens5d9c54c2010-09-03 08:33:39 +00001267 if (likely(destport)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +01001268 if (likely(destnode == tipc_own_addr))
Allan Stephenscb7ce912011-01-24 15:02:14 -05001269 res = tipc_port_recv_sections(p_ptr, num_sect,
1270 msg_sect);
1271 else
1272 res = tipc_link_send_sections_fast(p_ptr, msg_sect,
1273 num_sect, destnode);
1274 if (likely(res != -ELINKCONG)) {
1275 if (res > 0)
1276 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001277 return res;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001278 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001279 if (port_unreliable(p_ptr)) {
1280 /* Just calculate msg length and return */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001281 return tipc_msg_calc_data_size(msg_sect, num_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001282 }
1283 return -ELINKCONG;
1284 }
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001285 return tipc_port_reject_sections(p_ptr, msg, msg_sect, num_sect,
Per Liden4323add2006-01-18 00:38:21 +01001286 TIPC_ERR_NO_NAME);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001287}
1288
1289/**
Allan Stephens12bae472010-11-30 12:01:02 +00001290 * tipc_send2port - send message sections to port identity
Per Lidenb97bf3f2006-01-02 19:04:38 +01001291 */
1292
Allan Stephens12bae472010-11-30 12:01:02 +00001293int tipc_send2port(u32 ref, struct tipc_portid const *dest,
1294 unsigned int num_sect, struct iovec const *msg_sect)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001295{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001296 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001297 struct tipc_msg *msg;
1298 int res;
1299
Per Liden4323add2006-01-18 00:38:21 +01001300 p_ptr = tipc_port_deref(ref);
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001301 if (!p_ptr || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001302 return -EINVAL;
1303
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001304 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001305 msg_set_type(msg, TIPC_DIRECT_MSG);
Allan Stephens12bae472010-11-30 12:01:02 +00001306 msg_set_orignode(msg, tipc_own_addr);
1307 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001308 msg_set_destnode(msg, dest->node);
1309 msg_set_destport(msg, dest->ref);
1310 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001311
Per Lidenb97bf3f2006-01-02 19:04:38 +01001312 if (dest->node == tipc_own_addr)
Allan Stephenscb7ce912011-01-24 15:02:14 -05001313 res = tipc_port_recv_sections(p_ptr, num_sect, msg_sect);
1314 else
1315 res = tipc_link_send_sections_fast(p_ptr, msg_sect, num_sect,
1316 dest->node);
1317 if (likely(res != -ELINKCONG)) {
1318 if (res > 0)
1319 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001320 return res;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001321 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001322 if (port_unreliable(p_ptr)) {
1323 /* Just calculate msg length and return */
Allan Stephensc68ca7b2010-05-11 14:30:12 +00001324 return tipc_msg_calc_data_size(msg_sect, num_sect);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001325 }
1326 return -ELINKCONG;
1327}
1328
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09001329/**
Allan Stephens12bae472010-11-30 12:01:02 +00001330 * tipc_send_buf2port - send message buffer to port identity
Per Lidenb97bf3f2006-01-02 19:04:38 +01001331 */
1332
Allan Stephens12bae472010-11-30 12:01:02 +00001333int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest,
1334 struct sk_buff *buf, unsigned int dsz)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001335{
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001336 struct tipc_port *p_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001337 struct tipc_msg *msg;
1338 int res;
1339
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001340 p_ptr = (struct tipc_port *)tipc_ref_deref(ref);
1341 if (!p_ptr || p_ptr->connected)
Per Lidenb97bf3f2006-01-02 19:04:38 +01001342 return -EINVAL;
1343
Allan Stephens23dd4cc2011-01-07 11:43:40 -05001344 msg = &p_ptr->phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001345 msg_set_type(msg, TIPC_DIRECT_MSG);
Allan Stephens12bae472010-11-30 12:01:02 +00001346 msg_set_orignode(msg, tipc_own_addr);
1347 msg_set_origport(msg, ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001348 msg_set_destnode(msg, dest->node);
1349 msg_set_destport(msg, dest->ref);
1350 msg_set_hdr_sz(msg, DIR_MSG_H_SIZE);
Per Lidenb97bf3f2006-01-02 19:04:38 +01001351 msg_set_size(msg, DIR_MSG_H_SIZE + dsz);
1352 if (skb_cow(buf, DIR_MSG_H_SIZE))
1353 return -ENOMEM;
1354
1355 skb_push(buf, DIR_MSG_H_SIZE);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001356 skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE);
Allan Stephenscb7ce912011-01-24 15:02:14 -05001357
Per Lidenb97bf3f2006-01-02 19:04:38 +01001358 if (dest->node == tipc_own_addr)
Allan Stephenscb7ce912011-01-24 15:02:14 -05001359 res = tipc_port_recv_msg(buf);
1360 else
1361 res = tipc_send_buf_fast(buf, dest->node);
1362 if (likely(res != -ELINKCONG)) {
1363 if (res > 0)
1364 p_ptr->sent++;
Per Lidenb97bf3f2006-01-02 19:04:38 +01001365 return res;
Allan Stephenscb7ce912011-01-24 15:02:14 -05001366 }
Per Lidenb97bf3f2006-01-02 19:04:38 +01001367 if (port_unreliable(p_ptr))
1368 return dsz;
1369 return -ELINKCONG;
1370}
1371