port.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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 "core.h"
  39. #include "ref.h"
  40. #include "net.h"
  41. #include "msg.h"
  42. #include "dbg.h"
  43. #include "node_subscr.h"
  44. /**
  45. * struct user_port - TIPC user port (used with native API)
  46. * @user_ref: id of user who created user port
  47. * @usr_handle: user-specified field
  48. * @ref: object reference to associated TIPC port
  49. * <various callback routines>
  50. * @uport_list: adjacent user ports in list of ports held by user
  51. */
  52. struct user_port {
  53. u32 user_ref;
  54. void *usr_handle;
  55. u32 ref;
  56. tipc_msg_err_event err_cb;
  57. tipc_named_msg_err_event named_err_cb;
  58. tipc_conn_shutdown_event conn_err_cb;
  59. tipc_msg_event msg_cb;
  60. tipc_named_msg_event named_msg_cb;
  61. tipc_conn_msg_event conn_msg_cb;
  62. tipc_continue_event continue_event_cb;
  63. struct list_head uport_list;
  64. };
  65. /**
  66. * struct port - TIPC port structure
  67. * @publ: TIPC port info available to privileged users
  68. * @port_list: adjacent ports in TIPC's global list of ports
  69. * @dispatcher: ptr to routine which handles received messages
  70. * @wakeup: ptr to routine to call when port is no longer congested
  71. * @user_port: ptr to user port associated with port (if any)
  72. * @wait_list: adjacent ports in list of ports waiting on link congestion
  73. * @congested_link: ptr to congested link port is waiting on
  74. * @waiting_pkts:
  75. * @sent:
  76. * @acked:
  77. * @publications: list of publications for port
  78. * @pub_count: total # of publications port has made during its lifetime
  79. * @probing_state:
  80. * @probing_interval:
  81. * @last_in_seqno:
  82. * @timer_ref:
  83. * @subscription: "node down" subscription used to terminate failed connections
  84. */
  85. struct port {
  86. struct tipc_port publ;
  87. struct list_head port_list;
  88. u32 (*dispatcher)(struct tipc_port *, struct sk_buff *);
  89. void (*wakeup)(struct tipc_port *);
  90. struct user_port *user_port;
  91. struct list_head wait_list;
  92. struct link *congested_link;
  93. u32 waiting_pkts;
  94. u32 sent;
  95. u32 acked;
  96. struct list_head publications;
  97. u32 pub_count;
  98. u32 probing_state;
  99. u32 probing_interval;
  100. u32 last_in_seqno;
  101. struct timer_list timer;
  102. struct tipc_node_subscr subscription;
  103. };
  104. extern spinlock_t tipc_port_list_lock;
  105. struct port_list;
  106. int tipc_port_recv_sections(struct port *p_ptr, u32 num_sect,
  107. struct iovec const *msg_sect);
  108. int tipc_port_reject_sections(struct port *p_ptr, struct tipc_msg *hdr,
  109. struct iovec const *msg_sect, u32 num_sect,
  110. int err);
  111. struct sk_buff *tipc_port_get_ports(void);
  112. struct sk_buff *port_show_stats(const void *req_tlv_area, int req_tlv_space);
  113. void tipc_port_recv_proto_msg(struct sk_buff *buf);
  114. void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp);
  115. void tipc_port_reinit(void);
  116. /**
  117. * tipc_port_lock - lock port instance referred to and return its pointer
  118. */
  119. static inline struct port *tipc_port_lock(u32 ref)
  120. {
  121. return (struct port *)tipc_ref_lock(ref);
  122. }
  123. /**
  124. * tipc_port_unlock - unlock a port instance
  125. *
  126. * Can use pointer instead of tipc_ref_unlock() since port is already locked.
  127. */
  128. static inline void tipc_port_unlock(struct port *p_ptr)
  129. {
  130. spin_unlock_bh(p_ptr->publ.lock);
  131. }
  132. static inline struct port* tipc_port_deref(u32 ref)
  133. {
  134. return (struct port *)tipc_ref_deref(ref);
  135. }
  136. static inline u32 tipc_peer_port(struct port *p_ptr)
  137. {
  138. return msg_destport(&p_ptr->publ.phdr);
  139. }
  140. static inline u32 tipc_peer_node(struct port *p_ptr)
  141. {
  142. return msg_destnode(&p_ptr->publ.phdr);
  143. }
  144. static inline int tipc_port_congested(struct port *p_ptr)
  145. {
  146. return((p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2));
  147. }
  148. /**
  149. * tipc_port_recv_msg - receive message from lower layer and deliver to port user
  150. */
  151. static inline int tipc_port_recv_msg(struct sk_buff *buf)
  152. {
  153. struct port *p_ptr;
  154. struct tipc_msg *msg = buf_msg(buf);
  155. u32 destport = msg_destport(msg);
  156. u32 dsz = msg_data_sz(msg);
  157. u32 err;
  158. /* forward unresolved named message */
  159. if (unlikely(!destport)) {
  160. tipc_net_route_msg(buf);
  161. return dsz;
  162. }
  163. /* validate destination & pass to port, otherwise reject message */
  164. p_ptr = tipc_port_lock(destport);
  165. if (likely(p_ptr)) {
  166. if (likely(p_ptr->publ.connected)) {
  167. if ((unlikely(msg_origport(msg) != tipc_peer_port(p_ptr))) ||
  168. (unlikely(msg_orignode(msg) != tipc_peer_node(p_ptr))) ||
  169. (unlikely(!msg_connected(msg)))) {
  170. err = TIPC_ERR_NO_PORT;
  171. tipc_port_unlock(p_ptr);
  172. goto reject;
  173. }
  174. }
  175. err = p_ptr->dispatcher(&p_ptr->publ, buf);
  176. tipc_port_unlock(p_ptr);
  177. if (likely(!err))
  178. return dsz;
  179. } else {
  180. err = TIPC_ERR_NO_PORT;
  181. }
  182. reject:
  183. dbg("port->rejecting, err = %x..\n",err);
  184. return tipc_reject_msg(buf, err);
  185. }
  186. #endif