port.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. /*
  2. * net/tipc/port.h: Include file for TIPC port code
  3. *
  4. * Copyright (c) 1994-2007, Ericsson AB
  5. * Copyright (c) 2004-2007, Wind River Systems
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions are met:
  10. *
  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.
  19. *
  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
  34. * POSSIBILITY OF SUCH DAMAGE.
  35. */
  36. #ifndef _TIPC_PORT_H
  37. #define _TIPC_PORT_H
  38. #include "ref.h"
  39. #include "net.h"
  40. #include "msg.h"
  41. #include "node_subscr.h"
  42. #define TIPC_FLOW_CONTROL_WIN 512
  43. typedef void (*tipc_msg_err_event) (void *usr_handle, u32 portref,
  44. struct sk_buff **buf, unsigned char const *data,
  45. unsigned int size, int reason,
  46. struct tipc_portid const *attmpt_destid);
  47. typedef void (*tipc_named_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_name_seq const *attmpt_dest);
  51. typedef void (*tipc_conn_shutdown_event) (void *usr_handle, u32 portref,
  52. struct sk_buff **buf, unsigned char const *data,
  53. unsigned int size, int reason);
  54. typedef void (*tipc_msg_event) (void *usr_handle, u32 portref,
  55. struct sk_buff **buf, unsigned char const *data,
  56. unsigned int size, unsigned int importance,
  57. struct tipc_portid const *origin);
  58. typedef void (*tipc_named_msg_event) (void *usr_handle, u32 portref,
  59. struct sk_buff **buf, unsigned char const *data,
  60. unsigned int size, unsigned int importance,
  61. struct tipc_portid const *orig,
  62. struct tipc_name_seq const *dest);
  63. typedef void (*tipc_conn_msg_event) (void *usr_handle, u32 portref,
  64. struct sk_buff **buf, unsigned char const *data,
  65. unsigned int size);
  66. typedef void (*tipc_continue_event) (void *usr_handle, u32 portref);
  67. /**
  68. * struct user_port - TIPC user port (used with native API)
  69. * @user_ref: id of user who created user port
  70. * @usr_handle: user-specified field
  71. * @ref: object reference to associated TIPC port
  72. * <various callback routines>
  73. * @uport_list: adjacent user ports in list of ports held by user
  74. */
  75. struct user_port {
  76. u32 user_ref;
  77. void *usr_handle;
  78. u32 ref;
  79. tipc_msg_err_event err_cb;
  80. tipc_named_msg_err_event named_err_cb;
  81. tipc_conn_shutdown_event conn_err_cb;
  82. tipc_msg_event msg_cb;
  83. tipc_named_msg_event named_msg_cb;
  84. tipc_conn_msg_event conn_msg_cb;
  85. tipc_continue_event continue_event_cb;
  86. struct list_head uport_list;
  87. };
  88. /**
  89. * struct tipc_port - TIPC port info available to socket API
  90. * @usr_handle: pointer to additional user-defined information about port
  91. * @lock: pointer to spinlock for controlling access to port
  92. * @connected: non-zero if port is currently connected to a peer port
  93. * @conn_type: TIPC type used when connection was established
  94. * @conn_instance: TIPC instance used when connection was established
  95. * @conn_unacked: number of unacknowledged messages received from peer port
  96. * @published: non-zero if port has one or more associated names
  97. * @congested: non-zero if cannot send because of link or port congestion
  98. * @max_pkt: maximum packet size "hint" used when building messages sent by port
  99. * @ref: unique reference to port in TIPC object registry
  100. * @phdr: preformatted message header used when sending messages
  101. */
  102. struct tipc_port {
  103. void *usr_handle;
  104. spinlock_t *lock;
  105. int connected;
  106. u32 conn_type;
  107. u32 conn_instance;
  108. u32 conn_unacked;
  109. int published;
  110. u32 congested;
  111. u32 max_pkt;
  112. u32 ref;
  113. struct tipc_msg phdr;
  114. };
  115. /**
  116. * struct port - TIPC port structure
  117. * @publ: TIPC port info available to privileged users
  118. * @port_list: adjacent ports in TIPC's global list of ports
  119. * @dispatcher: ptr to routine which handles received messages
  120. * @wakeup: ptr to routine to call when port is no longer congested
  121. * @user_port: ptr to user port associated with port (if any)
  122. * @wait_list: adjacent ports in list of ports waiting on link congestion
  123. * @waiting_pkts:
  124. * @sent:
  125. * @acked:
  126. * @publications: list of publications for port
  127. * @pub_count: total # of publications port has made during its lifetime
  128. * @probing_state:
  129. * @probing_interval:
  130. * @last_in_seqno:
  131. * @timer_ref:
  132. * @subscription: "node down" subscription used to terminate failed connections
  133. */
  134. struct port {
  135. struct tipc_port publ;
  136. struct list_head port_list;
  137. u32 (*dispatcher)(struct tipc_port *, struct sk_buff *);
  138. void (*wakeup)(struct tipc_port *);
  139. struct user_port *user_port;
  140. struct list_head wait_list;
  141. u32 waiting_pkts;
  142. u32 sent;
  143. u32 acked;
  144. struct list_head publications;
  145. u32 pub_count;
  146. u32 probing_state;
  147. u32 probing_interval;
  148. u32 last_in_seqno;
  149. struct timer_list timer;
  150. struct tipc_node_subscr subscription;
  151. };
  152. extern spinlock_t tipc_port_list_lock;
  153. struct port_list;
  154. /*
  155. * TIPC port manipulation routines
  156. */
  157. struct tipc_port *tipc_createport_raw(void *usr_handle,
  158. u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
  159. void (*wakeup)(struct tipc_port *), const u32 importance);
  160. int tipc_reject_msg(struct sk_buff *buf, u32 err);
  161. int tipc_send_buf_fast(struct sk_buff *buf, u32 destnode);
  162. void tipc_acknowledge(u32 port_ref, u32 ack);
  163. int tipc_createport(unsigned int tipc_user, void *usr_handle,
  164. unsigned int importance, tipc_msg_err_event error_cb,
  165. tipc_named_msg_err_event named_error_cb,
  166. tipc_conn_shutdown_event conn_error_cb, tipc_msg_event msg_cb,
  167. tipc_named_msg_event named_msg_cb,
  168. tipc_conn_msg_event conn_msg_cb,
  169. tipc_continue_event continue_event_cb, u32 *portref);
  170. int tipc_deleteport(u32 portref);
  171. int tipc_ownidentity(u32 portref, struct tipc_portid *port);
  172. int tipc_portimportance(u32 portref, unsigned int *importance);
  173. int tipc_set_portimportance(u32 portref, unsigned int importance);
  174. int tipc_portunreliable(u32 portref, unsigned int *isunreliable);
  175. int tipc_set_portunreliable(u32 portref, unsigned int isunreliable);
  176. int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable);
  177. int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable);
  178. int tipc_publish(u32 portref, unsigned int scope,
  179. struct tipc_name_seq const *name_seq);
  180. int tipc_withdraw(u32 portref, unsigned int scope,
  181. struct tipc_name_seq const *name_seq);
  182. int tipc_connect2port(u32 portref, struct tipc_portid const *port);
  183. int tipc_disconnect(u32 portref);
  184. int tipc_shutdown(u32 ref);
  185. /*
  186. * The following routines require that the port be locked on entry
  187. */
  188. int tipc_disconnect_port(struct tipc_port *tp_ptr);
  189. /*
  190. * TIPC messaging routines
  191. */
  192. int tipc_send(u32 portref, unsigned int num_sect, struct iovec const *msg_sect);
  193. int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain,
  194. unsigned int num_sect, struct iovec const *msg_sect);
  195. int tipc_send2port(u32 portref, struct tipc_portid const *dest,
  196. unsigned int num_sect, struct iovec const *msg_sect);
  197. int tipc_send_buf2port(u32 portref, struct tipc_portid const *dest,
  198. struct sk_buff *buf, unsigned int dsz);
  199. int tipc_multicast(u32 portref, struct tipc_name_seq const *seq,
  200. unsigned int section_count, struct iovec const *msg);
  201. int tipc_port_reject_sections(struct port *p_ptr, struct tipc_msg *hdr,
  202. struct iovec const *msg_sect, u32 num_sect,
  203. int err);
  204. struct sk_buff *tipc_port_get_ports(void);
  205. void tipc_port_recv_proto_msg(struct sk_buff *buf);
  206. void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp);
  207. void tipc_port_reinit(void);
  208. /**
  209. * tipc_port_lock - lock port instance referred to and return its pointer
  210. */
  211. static inline struct port *tipc_port_lock(u32 ref)
  212. {
  213. return (struct port *)tipc_ref_lock(ref);
  214. }
  215. /**
  216. * tipc_port_unlock - unlock a port instance
  217. *
  218. * Can use pointer instead of tipc_ref_unlock() since port is already locked.
  219. */
  220. static inline void tipc_port_unlock(struct port *p_ptr)
  221. {
  222. spin_unlock_bh(p_ptr->publ.lock);
  223. }
  224. static inline struct port* tipc_port_deref(u32 ref)
  225. {
  226. return (struct port *)tipc_ref_deref(ref);
  227. }
  228. static inline u32 tipc_peer_port(struct port *p_ptr)
  229. {
  230. return msg_destport(&p_ptr->publ.phdr);
  231. }
  232. static inline u32 tipc_peer_node(struct port *p_ptr)
  233. {
  234. return msg_destnode(&p_ptr->publ.phdr);
  235. }
  236. static inline int tipc_port_congested(struct port *p_ptr)
  237. {
  238. return (p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2);
  239. }
  240. /**
  241. * tipc_port_recv_msg - receive message from lower layer and deliver to port user
  242. */
  243. static inline int tipc_port_recv_msg(struct sk_buff *buf)
  244. {
  245. struct port *p_ptr;
  246. struct tipc_msg *msg = buf_msg(buf);
  247. u32 destport = msg_destport(msg);
  248. u32 dsz = msg_data_sz(msg);
  249. u32 err;
  250. /* forward unresolved named message */
  251. if (unlikely(!destport)) {
  252. tipc_net_route_msg(buf);
  253. return dsz;
  254. }
  255. /* validate destination & pass to port, otherwise reject message */
  256. p_ptr = tipc_port_lock(destport);
  257. if (likely(p_ptr)) {
  258. if (likely(p_ptr->publ.connected)) {
  259. if ((unlikely(msg_origport(msg) != tipc_peer_port(p_ptr))) ||
  260. (unlikely(msg_orignode(msg) != tipc_peer_node(p_ptr))) ||
  261. (unlikely(!msg_connected(msg)))) {
  262. err = TIPC_ERR_NO_PORT;
  263. tipc_port_unlock(p_ptr);
  264. goto reject;
  265. }
  266. }
  267. err = p_ptr->dispatcher(&p_ptr->publ, buf);
  268. tipc_port_unlock(p_ptr);
  269. if (likely(!err))
  270. return dsz;
  271. } else {
  272. err = TIPC_ERR_NO_PORT;
  273. }
  274. reject:
  275. dbg("port->rejecting, err = %x..\n",err);
  276. return tipc_reject_msg(buf, err);
  277. }
  278. #endif