blob: 2485649c408aee65caffbb1137ee52b1370f09f0 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/port.h: Include file for TIPC port code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1994-2007, Ericsson AB
Allan Stephens23dd4cc2011-01-07 11:43:40 -05005 * Copyright (c) 2004-2007, 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#ifndef _TIPC_PORT_H
38#define _TIPC_PORT_H
39
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "ref.h"
41#include "net.h"
42#include "msg.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043#include "node_subscr.h"
44
Allan Stephensd265fef2010-11-30 12:00:53 +000045#define TIPC_FLOW_CONTROL_WIN 512
Ying Xuecc79dd12013-06-17 10:54:37 -040046#define CONN_OVERLOAD_LIMIT ((TIPC_FLOW_CONTROL_WIN * 2 + 1) * \
47 SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
Allan Stephensd265fef2010-11-30 12:00:53 +000048
49typedef void (*tipc_msg_err_event) (void *usr_handle, u32 portref,
50 struct sk_buff **buf, unsigned char const *data,
51 unsigned int size, int reason,
52 struct tipc_portid const *attmpt_destid);
53
54typedef void (*tipc_named_msg_err_event) (void *usr_handle, u32 portref,
55 struct sk_buff **buf, unsigned char const *data,
56 unsigned int size, int reason,
57 struct tipc_name_seq const *attmpt_dest);
58
59typedef void (*tipc_conn_shutdown_event) (void *usr_handle, u32 portref,
60 struct sk_buff **buf, unsigned char const *data,
61 unsigned int size, int reason);
62
63typedef void (*tipc_msg_event) (void *usr_handle, u32 portref,
64 struct sk_buff **buf, unsigned char const *data,
65 unsigned int size, unsigned int importance,
66 struct tipc_portid const *origin);
67
68typedef void (*tipc_named_msg_event) (void *usr_handle, u32 portref,
69 struct sk_buff **buf, unsigned char const *data,
70 unsigned int size, unsigned int importance,
71 struct tipc_portid const *orig,
72 struct tipc_name_seq const *dest);
73
74typedef void (*tipc_conn_msg_event) (void *usr_handle, u32 portref,
75 struct sk_buff **buf, unsigned char const *data,
76 unsigned int size);
77
78typedef void (*tipc_continue_event) (void *usr_handle, u32 portref);
79
Per Lidenb97bf3f2006-01-02 19:04:38 +010080/**
81 * struct user_port - TIPC user port (used with native API)
Per Lidenb97bf3f2006-01-02 19:04:38 +010082 * @usr_handle: user-specified field
83 * @ref: object reference to associated TIPC port
Ben Hutchings2c530402012-07-10 10:55:09 +000084 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010085 * <various callback routines>
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010087struct user_port {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090088 void *usr_handle;
Per Lidenb97bf3f2006-01-02 19:04:38 +010089 u32 ref;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090090 tipc_msg_err_event err_cb;
91 tipc_named_msg_err_event named_err_cb;
92 tipc_conn_shutdown_event conn_err_cb;
93 tipc_msg_event msg_cb;
94 tipc_named_msg_event named_msg_cb;
95 tipc_conn_msg_event conn_msg_cb;
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 tipc_continue_event continue_event_cb;
Per Lidenb97bf3f2006-01-02 19:04:38 +010097};
98
99/**
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500100 * struct tipc_port - TIPC port structure
Allan Stephensd265fef2010-11-30 12:00:53 +0000101 * @usr_handle: pointer to additional user-defined information about port
102 * @lock: pointer to spinlock for controlling access to port
103 * @connected: non-zero if port is currently connected to a peer port
104 * @conn_type: TIPC type used when connection was established
105 * @conn_instance: TIPC instance used when connection was established
106 * @conn_unacked: number of unacknowledged messages received from peer port
107 * @published: non-zero if port has one or more associated names
108 * @congested: non-zero if cannot send because of link or port congestion
109 * @max_pkt: maximum packet size "hint" used when building messages sent by port
110 * @ref: unique reference to port in TIPC object registry
111 * @phdr: preformatted message header used when sending messages
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112 * @port_list: adjacent ports in TIPC's global list of ports
113 * @dispatcher: ptr to routine which handles received messages
114 * @wakeup: ptr to routine to call when port is no longer congested
115 * @user_port: ptr to user port associated with port (if any)
116 * @wait_list: adjacent ports in list of ports waiting on link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117 * @waiting_pkts:
Allan Stephenscb7ce912011-01-24 15:02:14 -0500118 * @sent: # of non-empty messages sent by port
119 * @acked: # of non-empty message acknowledgements from connected port's peer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120 * @publications: list of publications for port
121 * @pub_count: total # of publications port has made during its lifetime
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 * @probing_state:
123 * @probing_interval:
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 * @timer_ref:
125 * @subscription: "node down" subscription used to terminate failed connections
126 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500127struct tipc_port {
128 void *usr_handle;
129 spinlock_t *lock;
130 int connected;
131 u32 conn_type;
132 u32 conn_instance;
133 u32 conn_unacked;
134 int published;
135 u32 congested;
136 u32 max_pkt;
137 u32 ref;
138 struct tipc_msg phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139 struct list_head port_list;
140 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *);
141 void (*wakeup)(struct tipc_port *);
142 struct user_port *user_port;
143 struct list_head wait_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 u32 waiting_pkts;
145 u32 sent;
146 u32 acked;
147 struct list_head publications;
148 u32 pub_count;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149 u32 probing_state;
150 u32 probing_interval;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151 struct timer_list timer;
David S. Miller6c000552008-09-02 23:38:32 -0700152 struct tipc_node_subscr subscription;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153};
154
Per Liden4323add2006-01-18 00:38:21 +0100155extern spinlock_t tipc_port_list_lock;
Paul Gortmaker45843102011-12-29 20:33:30 -0500156struct tipc_port_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157
Allan Stephensd265fef2010-11-30 12:00:53 +0000158/*
159 * TIPC port manipulation routines
160 */
161struct tipc_port *tipc_createport_raw(void *usr_handle,
162 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
163 void (*wakeup)(struct tipc_port *), const u32 importance);
164
165int tipc_reject_msg(struct sk_buff *buf, u32 err);
166
167int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode);
168
169void tipc_acknowledge(u32 port_ref, u32 ack);
170
Allan Stephensb0c1e922010-12-31 18:59:22 +0000171int tipc_createport(void *usr_handle,
Allan Stephensd265fef2010-11-30 12:00:53 +0000172 unsigned int importance, tipc_msg_err_event error_cb,
173 tipc_named_msg_err_event named_error_cb,
174 tipc_conn_shutdown_event conn_error_cb, tipc_msg_event msg_cb,
175 tipc_named_msg_event named_msg_cb,
176 tipc_conn_msg_event conn_msg_cb,
177 tipc_continue_event continue_event_cb, u32 *portref);
178
179int tipc_deleteport(u32 portref);
180
Allan Stephensd265fef2010-11-30 12:00:53 +0000181int tipc_portimportance(u32 portref, unsigned int *importance);
182int tipc_set_portimportance(u32 portref, unsigned int importance);
183
184int tipc_portunreliable(u32 portref, unsigned int *isunreliable);
185int tipc_set_portunreliable(u32 portref, unsigned int isunreliable);
186
187int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable);
188int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable);
189
190int tipc_publish(u32 portref, unsigned int scope,
191 struct tipc_name_seq const *name_seq);
192int tipc_withdraw(u32 portref, unsigned int scope,
193 struct tipc_name_seq const *name_seq);
194
Paul Gortmakerbc879112012-11-29 13:48:40 -0500195int tipc_connect(u32 portref, struct tipc_portid const *port);
Allan Stephensd265fef2010-11-30 12:00:53 +0000196
197int tipc_disconnect(u32 portref);
198
199int tipc_shutdown(u32 ref);
200
201
202/*
203 * The following routines require that the port be locked on entry
204 */
Paul Gortmakerbc879112012-11-29 13:48:40 -0500205int __tipc_disconnect(struct tipc_port *tp_ptr);
206int __tipc_connect(u32 ref, struct tipc_port *p_ptr,
207 struct tipc_portid const *peer);
Allan Stephensf0712e862012-04-17 18:42:28 -0400208int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
Allan Stephensd265fef2010-11-30 12:00:53 +0000209
210/*
211 * TIPC messaging routines
212 */
Allan Stephens9b641252011-11-09 13:29:18 -0500213int tipc_port_recv_msg(struct sk_buff *buf);
Allan Stephens26896902011-04-21 10:42:07 -0500214int tipc_send(u32 portref, unsigned int num_sect, struct iovec const *msg_sect,
215 unsigned int total_len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000216
217int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain,
Allan Stephens26896902011-04-21 10:42:07 -0500218 unsigned int num_sect, struct iovec const *msg_sect,
219 unsigned int total_len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000220
221int tipc_send2port(u32 portref, struct tipc_portid const *dest,
Allan Stephens26896902011-04-21 10:42:07 -0500222 unsigned int num_sect, struct iovec const *msg_sect,
223 unsigned int total_len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000224
225int tipc_send_buf2port(u32 portref, struct tipc_portid const *dest,
226 struct sk_buff *buf, unsigned int dsz);
227
Allan Stephens38f232e2010-11-30 12:00:59 +0000228int tipc_multicast(u32 portref, struct tipc_name_seq const *seq,
Allan Stephens26896902011-04-21 10:42:07 -0500229 unsigned int section_count, struct iovec const *msg,
230 unsigned int total_len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000231
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500232int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
Per Liden4323add2006-01-18 00:38:21 +0100233 struct iovec const *msg_sect, u32 num_sect,
Allan Stephens26896902011-04-21 10:42:07 -0500234 unsigned int total_len, int err);
Per Liden4323add2006-01-18 00:38:21 +0100235struct sk_buff *tipc_port_get_ports(void);
Per Liden4323add2006-01-18 00:38:21 +0100236void tipc_port_recv_proto_msg(struct sk_buff *buf);
Paul Gortmaker45843102011-12-29 20:33:30 -0500237void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp);
Per Liden4323add2006-01-18 00:38:21 +0100238void tipc_port_reinit(void);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239
240/**
Per Liden4323add2006-01-18 00:38:21 +0100241 * tipc_port_lock - lock port instance referred to and return its pointer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500243static inline struct tipc_port *tipc_port_lock(u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500245 return (struct tipc_port *)tipc_ref_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246}
247
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900248/**
Per Liden4323add2006-01-18 00:38:21 +0100249 * tipc_port_unlock - unlock a port instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900250 *
Per Liden4323add2006-01-18 00:38:21 +0100251 * Can use pointer instead of tipc_ref_unlock() since port is already locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500253static inline void tipc_port_unlock(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100254{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500255 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256}
257
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500258static inline struct tipc_port *tipc_port_deref(u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500260 return (struct tipc_port *)tipc_ref_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261}
262
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500263static inline int tipc_port_congested(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000265 return (p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266}
267
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268#endif