| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 1 | /* | 
 | 2 |  * net/tipc/port.h: Include file for TIPC port code | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 3 |  * | 
| Allan Stephens | 05646c9 | 2007-06-10 17:25:24 -0700 | [diff] [blame] | 4 |  * Copyright (c) 1994-2007, Ericsson AB | 
 | 5 |  * Copyright (c) 2004-2007, Wind River Systems | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 6 |  * All rights reserved. | 
 | 7 |  * | 
| Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 8 |  * Redistribution and use in source and binary forms, with or without | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 9 |  * modification, are permitted provided that the following conditions are met: | 
 | 10 |  * | 
| Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 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. | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 19 |  * | 
| Per Liden | 9ea1fd3 | 2006-01-11 13:30:43 +0100 | [diff] [blame] | 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. | 
 | 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 Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 34 |  * POSSIBILITY OF SUCH DAMAGE. | 
 | 35 |  */ | 
 | 36 |  | 
 | 37 | #ifndef _TIPC_PORT_H | 
 | 38 | #define _TIPC_PORT_H | 
 | 39 |  | 
| Jon Maloy | 5f7c3ff | 2006-01-13 10:45:44 +0000 | [diff] [blame] | 40 | #include "core.h" | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 41 | #include "ref.h" | 
 | 42 | #include "net.h" | 
 | 43 | #include "msg.h" | 
 | 44 | #include "dbg.h" | 
 | 45 | #include "node_subscr.h" | 
 | 46 |  | 
 | 47 | /** | 
 | 48 |  * struct user_port - TIPC user port (used with native API) | 
 | 49 |  * @user_ref: id of user who created user port | 
 | 50 |  * @usr_handle: user-specified field | 
 | 51 |  * @ref: object reference to associated TIPC port | 
 | 52 |  * <various callback routines> | 
 | 53 |  * @uport_list: adjacent user ports in list of ports held by user | 
 | 54 |  */ | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 55 |  | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 56 | struct user_port { | 
 | 57 | 	u32 user_ref; | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 58 | 	void *usr_handle; | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 59 | 	u32 ref; | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 60 | 	tipc_msg_err_event err_cb; | 
 | 61 | 	tipc_named_msg_err_event named_err_cb; | 
 | 62 | 	tipc_conn_shutdown_event conn_err_cb; | 
 | 63 | 	tipc_msg_event msg_cb; | 
 | 64 | 	tipc_named_msg_event named_msg_cb; | 
 | 65 | 	tipc_conn_msg_event conn_msg_cb; | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 66 | 	tipc_continue_event continue_event_cb; | 
 | 67 | 	struct list_head uport_list; | 
 | 68 | }; | 
 | 69 |  | 
 | 70 | /** | 
 | 71 |  * struct port - TIPC port structure | 
 | 72 |  * @publ: TIPC port info available to privileged users | 
 | 73 |  * @port_list: adjacent ports in TIPC's global list of ports | 
 | 74 |  * @dispatcher: ptr to routine which handles received messages | 
 | 75 |  * @wakeup: ptr to routine to call when port is no longer congested | 
 | 76 |  * @user_port: ptr to user port associated with port (if any) | 
 | 77 |  * @wait_list: adjacent ports in list of ports waiting on link congestion | 
 | 78 |  * @congested_link: ptr to congested link port is waiting on | 
 | 79 |  * @waiting_pkts: | 
 | 80 |  * @sent: | 
 | 81 |  * @acked: | 
 | 82 |  * @publications: list of publications for port | 
 | 83 |  * @pub_count: total # of publications port has made during its lifetime | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 84 |  * @probing_state: | 
 | 85 |  * @probing_interval: | 
 | 86 |  * @last_in_seqno: | 
 | 87 |  * @timer_ref: | 
 | 88 |  * @subscription: "node down" subscription used to terminate failed connections | 
 | 89 |  */ | 
 | 90 |  | 
 | 91 | struct port { | 
 | 92 | 	struct tipc_port publ; | 
 | 93 | 	struct list_head port_list; | 
 | 94 | 	u32 (*dispatcher)(struct tipc_port *, struct sk_buff *); | 
 | 95 | 	void (*wakeup)(struct tipc_port *); | 
 | 96 | 	struct user_port *user_port; | 
 | 97 | 	struct list_head wait_list; | 
 | 98 | 	struct link *congested_link; | 
 | 99 | 	u32 waiting_pkts; | 
 | 100 | 	u32 sent; | 
 | 101 | 	u32 acked; | 
 | 102 | 	struct list_head publications; | 
 | 103 | 	u32 pub_count; | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 104 | 	u32 probing_state; | 
 | 105 | 	u32 probing_interval; | 
 | 106 | 	u32 last_in_seqno; | 
 | 107 | 	struct timer_list timer; | 
 | 108 | 	struct node_subscr subscription; | 
 | 109 | }; | 
 | 110 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 111 | extern spinlock_t tipc_port_list_lock; | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 112 | struct port_list; | 
 | 113 |  | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 114 | int tipc_port_recv_sections(struct port *p_ptr, u32 num_sect, | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 115 | 			    struct iovec const *msg_sect); | 
 | 116 | int tipc_port_reject_sections(struct port *p_ptr, struct tipc_msg *hdr, | 
 | 117 | 			      struct iovec const *msg_sect, u32 num_sect, | 
 | 118 | 			      int err); | 
 | 119 | struct sk_buff *tipc_port_get_ports(void); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 120 | struct sk_buff *port_show_stats(const void *req_tlv_area, int req_tlv_space); | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 121 | void tipc_port_recv_proto_msg(struct sk_buff *buf); | 
 | 122 | void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp); | 
 | 123 | void tipc_port_reinit(void); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 124 |  | 
 | 125 | /** | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 126 |  * tipc_port_lock - lock port instance referred to and return its pointer | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 127 |  */ | 
 | 128 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 129 | static inline struct port *tipc_port_lock(u32 ref) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 130 | { | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 131 | 	return (struct port *)tipc_ref_lock(ref); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 132 | } | 
 | 133 |  | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 134 | /** | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 135 |  * tipc_port_unlock - unlock a port instance | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 136 |  * | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 137 |  * Can use pointer instead of tipc_ref_unlock() since port is already locked. | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 138 |  */ | 
 | 139 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 140 | static inline void tipc_port_unlock(struct port *p_ptr) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 141 | { | 
 | 142 | 	spin_unlock_bh(p_ptr->publ.lock); | 
 | 143 | } | 
 | 144 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 145 | static inline struct port* tipc_port_deref(u32 ref) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 146 | { | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 147 | 	return (struct port *)tipc_ref_deref(ref); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 148 | } | 
 | 149 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 150 | static inline u32 tipc_peer_port(struct port *p_ptr) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 151 | { | 
 | 152 | 	return msg_destport(&p_ptr->publ.phdr); | 
 | 153 | } | 
 | 154 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 155 | static inline u32 tipc_peer_node(struct port *p_ptr) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 156 | { | 
 | 157 | 	return msg_destnode(&p_ptr->publ.phdr); | 
 | 158 | } | 
 | 159 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 160 | static inline int tipc_port_congested(struct port *p_ptr) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 161 | { | 
 | 162 | 	return((p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2)); | 
 | 163 | } | 
 | 164 |  | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 165 | /** | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 166 |  * tipc_port_recv_msg - receive message from lower layer and deliver to port user | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 167 |  */ | 
 | 168 |  | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 169 | static inline int tipc_port_recv_msg(struct sk_buff *buf) | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 170 | { | 
 | 171 | 	struct port *p_ptr; | 
 | 172 | 	struct tipc_msg *msg = buf_msg(buf); | 
 | 173 | 	u32 destport = msg_destport(msg); | 
 | 174 | 	u32 dsz = msg_data_sz(msg); | 
 | 175 | 	u32 err; | 
| YOSHIFUJI Hideaki | c430728 | 2007-02-09 23:25:21 +0900 | [diff] [blame] | 176 |  | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 177 | 	/* forward unresolved named message */ | 
 | 178 | 	if (unlikely(!destport)) { | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 179 | 		tipc_net_route_msg(buf); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 180 | 		return dsz; | 
 | 181 | 	} | 
 | 182 |  | 
 | 183 | 	/* validate destination & pass to port, otherwise reject message */ | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 184 | 	p_ptr = tipc_port_lock(destport); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 185 | 	if (likely(p_ptr)) { | 
 | 186 | 		if (likely(p_ptr->publ.connected)) { | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 187 | 			if ((unlikely(msg_origport(msg) != tipc_peer_port(p_ptr))) || | 
 | 188 | 			    (unlikely(msg_orignode(msg) != tipc_peer_node(p_ptr))) || | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 189 | 			    (unlikely(!msg_connected(msg)))) { | 
 | 190 | 				err = TIPC_ERR_NO_PORT; | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 191 | 				tipc_port_unlock(p_ptr); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 192 | 				goto reject; | 
 | 193 | 			} | 
 | 194 | 		} | 
 | 195 | 		err = p_ptr->dispatcher(&p_ptr->publ, buf); | 
| Per Liden | 4323add | 2006-01-18 00:38:21 +0100 | [diff] [blame] | 196 | 		tipc_port_unlock(p_ptr); | 
| Per Liden | b97bf3f | 2006-01-02 19:04:38 +0100 | [diff] [blame] | 197 | 		if (likely(!err)) | 
 | 198 | 			return dsz; | 
 | 199 | 	} else { | 
 | 200 | 		err = TIPC_ERR_NO_PORT; | 
 | 201 | 	} | 
 | 202 | reject: | 
 | 203 | 	dbg("port->rejecting, err = %x..\n",err); | 
 | 204 | 	return tipc_reject_msg(buf, err); | 
 | 205 | } | 
 | 206 |  | 
 | 207 | #endif |