2 * net/tipc/port.h: Include file for TIPC port code
4 * Copyright (c) 1994-2007, Ericsson AB
5 * Copyright (c) 2004-2007, Wind River Systems
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * 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.
20 * 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.
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
34 * POSSIBILITY OF SUCH DAMAGE.
43 #include "node_subscr.h"
45 #define TIPC_FLOW_CONTROL_WIN 512
47 typedef void (*tipc_msg_err_event
) (void *usr_handle
, u32 portref
,
48 struct sk_buff
**buf
, unsigned char const *data
,
49 unsigned int size
, int reason
,
50 struct tipc_portid
const *attmpt_destid
);
52 typedef void (*tipc_named_msg_err_event
) (void *usr_handle
, u32 portref
,
53 struct sk_buff
**buf
, unsigned char const *data
,
54 unsigned int size
, int reason
,
55 struct tipc_name_seq
const *attmpt_dest
);
57 typedef void (*tipc_conn_shutdown_event
) (void *usr_handle
, u32 portref
,
58 struct sk_buff
**buf
, unsigned char const *data
,
59 unsigned int size
, int reason
);
61 typedef void (*tipc_msg_event
) (void *usr_handle
, u32 portref
,
62 struct sk_buff
**buf
, unsigned char const *data
,
63 unsigned int size
, unsigned int importance
,
64 struct tipc_portid
const *origin
);
66 typedef void (*tipc_named_msg_event
) (void *usr_handle
, u32 portref
,
67 struct sk_buff
**buf
, unsigned char const *data
,
68 unsigned int size
, unsigned int importance
,
69 struct tipc_portid
const *orig
,
70 struct tipc_name_seq
const *dest
);
72 typedef void (*tipc_conn_msg_event
) (void *usr_handle
, u32 portref
,
73 struct sk_buff
**buf
, unsigned char const *data
,
76 typedef void (*tipc_continue_event
) (void *usr_handle
, u32 portref
);
79 * struct user_port - TIPC user port (used with native API)
80 * @usr_handle: user-specified field
81 * @ref: object reference to associated TIPC port
82 * <various callback routines>
88 tipc_msg_err_event err_cb
;
89 tipc_named_msg_err_event named_err_cb
;
90 tipc_conn_shutdown_event conn_err_cb
;
91 tipc_msg_event msg_cb
;
92 tipc_named_msg_event named_msg_cb
;
93 tipc_conn_msg_event conn_msg_cb
;
94 tipc_continue_event continue_event_cb
;
98 * struct tipc_port - TIPC port info available to socket API
99 * @usr_handle: pointer to additional user-defined information about port
100 * @lock: pointer to spinlock for controlling access to port
101 * @connected: non-zero if port is currently connected to a peer port
102 * @conn_type: TIPC type used when connection was established
103 * @conn_instance: TIPC instance used when connection was established
104 * @conn_unacked: number of unacknowledged messages received from peer port
105 * @published: non-zero if port has one or more associated names
106 * @congested: non-zero if cannot send because of link or port congestion
107 * @max_pkt: maximum packet size "hint" used when building messages sent by port
108 * @ref: unique reference to port in TIPC object registry
109 * @phdr: preformatted message header used when sending messages
122 struct tipc_msg phdr
;
126 * struct port - TIPC port structure
127 * @publ: TIPC port info available to privileged users
128 * @port_list: adjacent ports in TIPC's global list of ports
129 * @dispatcher: ptr to routine which handles received messages
130 * @wakeup: ptr to routine to call when port is no longer congested
131 * @user_port: ptr to user port associated with port (if any)
132 * @wait_list: adjacent ports in list of ports waiting on link congestion
136 * @publications: list of publications for port
137 * @pub_count: total # of publications port has made during its lifetime
142 * @subscription: "node down" subscription used to terminate failed connections
146 struct tipc_port publ
;
147 struct list_head port_list
;
148 u32 (*dispatcher
)(struct tipc_port
*, struct sk_buff
*);
149 void (*wakeup
)(struct tipc_port
*);
150 struct user_port
*user_port
;
151 struct list_head wait_list
;
155 struct list_head publications
;
158 u32 probing_interval
;
160 struct timer_list timer
;
161 struct tipc_node_subscr subscription
;
164 extern spinlock_t tipc_port_list_lock
;
168 * TIPC port manipulation routines
170 struct tipc_port
*tipc_createport_raw(void *usr_handle
,
171 u32 (*dispatcher
)(struct tipc_port
*, struct sk_buff
*),
172 void (*wakeup
)(struct tipc_port
*), const u32 importance
);
174 int tipc_reject_msg(struct sk_buff
*buf
, u32 err
);
176 int tipc_send_buf_fast(struct sk_buff
*buf
, u32 destnode
);
178 void tipc_acknowledge(u32 port_ref
, u32 ack
);
180 int tipc_createport(void *usr_handle
,
181 unsigned int importance
, tipc_msg_err_event error_cb
,
182 tipc_named_msg_err_event named_error_cb
,
183 tipc_conn_shutdown_event conn_error_cb
, tipc_msg_event msg_cb
,
184 tipc_named_msg_event named_msg_cb
,
185 tipc_conn_msg_event conn_msg_cb
,
186 tipc_continue_event continue_event_cb
, u32
*portref
);
188 int tipc_deleteport(u32 portref
);
190 int tipc_portimportance(u32 portref
, unsigned int *importance
);
191 int tipc_set_portimportance(u32 portref
, unsigned int importance
);
193 int tipc_portunreliable(u32 portref
, unsigned int *isunreliable
);
194 int tipc_set_portunreliable(u32 portref
, unsigned int isunreliable
);
196 int tipc_portunreturnable(u32 portref
, unsigned int *isunreturnable
);
197 int tipc_set_portunreturnable(u32 portref
, unsigned int isunreturnable
);
199 int tipc_publish(u32 portref
, unsigned int scope
,
200 struct tipc_name_seq
const *name_seq
);
201 int tipc_withdraw(u32 portref
, unsigned int scope
,
202 struct tipc_name_seq
const *name_seq
);
204 int tipc_connect2port(u32 portref
, struct tipc_portid
const *port
);
206 int tipc_disconnect(u32 portref
);
208 int tipc_shutdown(u32 ref
);
212 * The following routines require that the port be locked on entry
214 int tipc_disconnect_port(struct tipc_port
*tp_ptr
);
217 * TIPC messaging routines
219 int tipc_send(u32 portref
, unsigned int num_sect
, struct iovec
const *msg_sect
);
221 int tipc_send2name(u32 portref
, struct tipc_name
const *name
, u32 domain
,
222 unsigned int num_sect
, struct iovec
const *msg_sect
);
224 int tipc_send2port(u32 portref
, struct tipc_portid
const *dest
,
225 unsigned int num_sect
, struct iovec
const *msg_sect
);
227 int tipc_send_buf2port(u32 portref
, struct tipc_portid
const *dest
,
228 struct sk_buff
*buf
, unsigned int dsz
);
230 int tipc_multicast(u32 portref
, struct tipc_name_seq
const *seq
,
231 unsigned int section_count
, struct iovec
const *msg
);
233 int tipc_port_reject_sections(struct port
*p_ptr
, struct tipc_msg
*hdr
,
234 struct iovec
const *msg_sect
, u32 num_sect
,
236 struct sk_buff
*tipc_port_get_ports(void);
237 void tipc_port_recv_proto_msg(struct sk_buff
*buf
);
238 void tipc_port_recv_mcast(struct sk_buff
*buf
, struct port_list
*dp
);
239 void tipc_port_reinit(void);
242 * tipc_port_lock - lock port instance referred to and return its pointer
245 static inline struct port
*tipc_port_lock(u32 ref
)
247 return (struct port
*)tipc_ref_lock(ref
);
251 * tipc_port_unlock - unlock a port instance
253 * Can use pointer instead of tipc_ref_unlock() since port is already locked.
256 static inline void tipc_port_unlock(struct port
*p_ptr
)
258 spin_unlock_bh(p_ptr
->publ
.lock
);
261 static inline struct port
*tipc_port_deref(u32 ref
)
263 return (struct port
*)tipc_ref_deref(ref
);
266 static inline u32
tipc_peer_port(struct port
*p_ptr
)
268 return msg_destport(&p_ptr
->publ
.phdr
);
271 static inline u32
tipc_peer_node(struct port
*p_ptr
)
273 return msg_destnode(&p_ptr
->publ
.phdr
);
276 static inline int tipc_port_congested(struct port
*p_ptr
)
278 return (p_ptr
->sent
- p_ptr
->acked
) >= (TIPC_FLOW_CONTROL_WIN
* 2);
282 * tipc_port_recv_msg - receive message from lower layer and deliver to port user
285 static inline int tipc_port_recv_msg(struct sk_buff
*buf
)
288 struct tipc_msg
*msg
= buf_msg(buf
);
289 u32 destport
= msg_destport(msg
);
290 u32 dsz
= msg_data_sz(msg
);
293 /* forward unresolved named message */
294 if (unlikely(!destport
)) {
295 tipc_net_route_msg(buf
);
299 /* validate destination & pass to port, otherwise reject message */
300 p_ptr
= tipc_port_lock(destport
);
302 if (likely(p_ptr
->publ
.connected
)) {
303 if ((unlikely(msg_origport(msg
) != tipc_peer_port(p_ptr
))) ||
304 (unlikely(msg_orignode(msg
) != tipc_peer_node(p_ptr
))) ||
305 (unlikely(!msg_connected(msg
)))) {
306 err
= TIPC_ERR_NO_PORT
;
307 tipc_port_unlock(p_ptr
);
311 err
= p_ptr
->dispatcher(&p_ptr
->publ
, buf
);
312 tipc_port_unlock(p_ptr
);
316 err
= TIPC_ERR_NO_PORT
;
319 return tipc_reject_msg(buf
, err
);