port.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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, 2010-2013, 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. #define CONN_OVERLOAD_LIMIT ((TIPC_FLOW_CONTROL_WIN * 2 + 1) * \
  44. SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
  45. /**
  46. * struct tipc_port - TIPC port structure
  47. * @sk: pointer to socket handle
  48. * @lock: pointer to spinlock for controlling access to port
  49. * @connected: non-zero if port is currently connected to a peer port
  50. * @conn_type: TIPC type used when connection was established
  51. * @conn_instance: TIPC instance used when connection was established
  52. * @conn_unacked: number of unacknowledged messages received from peer port
  53. * @published: non-zero if port has one or more associated names
  54. * @congested: non-zero if cannot send because of link or port congestion
  55. * @max_pkt: maximum packet size "hint" used when building messages sent by port
  56. * @ref: unique reference to port in TIPC object registry
  57. * @phdr: preformatted message header used when sending messages
  58. * @port_list: adjacent ports in TIPC's global list of ports
  59. * @dispatcher: ptr to routine which handles received messages
  60. * @wakeup: ptr to routine to call when port is no longer congested
  61. * @wait_list: adjacent ports in list of ports waiting on link congestion
  62. * @waiting_pkts:
  63. * @sent: # of non-empty messages sent by port
  64. * @acked: # of non-empty message acknowledgements from connected port's peer
  65. * @publications: list of publications for port
  66. * @pub_count: total # of publications port has made during its lifetime
  67. * @probing_state:
  68. * @probing_interval:
  69. * @timer_ref:
  70. * @subscription: "node down" subscription used to terminate failed connections
  71. */
  72. struct tipc_port {
  73. struct sock *sk;
  74. spinlock_t *lock;
  75. int connected;
  76. u32 conn_type;
  77. u32 conn_instance;
  78. u32 conn_unacked;
  79. int published;
  80. u32 congested;
  81. u32 max_pkt;
  82. u32 ref;
  83. struct tipc_msg phdr;
  84. struct list_head port_list;
  85. u32 (*dispatcher)(struct tipc_port *, struct sk_buff *);
  86. void (*wakeup)(struct tipc_port *);
  87. struct list_head wait_list;
  88. u32 waiting_pkts;
  89. u32 sent;
  90. u32 acked;
  91. struct list_head publications;
  92. u32 pub_count;
  93. u32 probing_state;
  94. u32 probing_interval;
  95. struct timer_list timer;
  96. struct tipc_node_subscr subscription;
  97. };
  98. extern spinlock_t tipc_port_list_lock;
  99. struct tipc_port_list;
  100. /*
  101. * TIPC port manipulation routines
  102. */
  103. struct tipc_port *tipc_createport(struct sock *sk,
  104. u32 (*dispatcher)(struct tipc_port *,
  105. struct sk_buff *),
  106. void (*wakeup)(struct tipc_port *),
  107. const u32 importance);
  108. int tipc_reject_msg(struct sk_buff *buf, u32 err);
  109. void tipc_acknowledge(u32 port_ref, u32 ack);
  110. int tipc_deleteport(u32 portref);
  111. int tipc_portimportance(u32 portref, unsigned int *importance);
  112. int tipc_set_portimportance(u32 portref, unsigned int importance);
  113. int tipc_portunreliable(u32 portref, unsigned int *isunreliable);
  114. int tipc_set_portunreliable(u32 portref, unsigned int isunreliable);
  115. int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable);
  116. int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable);
  117. int tipc_publish(u32 portref, unsigned int scope,
  118. struct tipc_name_seq const *name_seq);
  119. int tipc_withdraw(u32 portref, unsigned int scope,
  120. struct tipc_name_seq const *name_seq);
  121. int tipc_connect(u32 portref, struct tipc_portid const *port);
  122. int tipc_disconnect(u32 portref);
  123. int tipc_shutdown(u32 ref);
  124. /*
  125. * The following routines require that the port be locked on entry
  126. */
  127. int __tipc_disconnect(struct tipc_port *tp_ptr);
  128. int __tipc_connect(u32 ref, struct tipc_port *p_ptr,
  129. struct tipc_portid const *peer);
  130. int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
  131. /*
  132. * TIPC messaging routines
  133. */
  134. int tipc_port_recv_msg(struct sk_buff *buf);
  135. int tipc_send(u32 portref, unsigned int num_sect, struct iovec const *msg_sect,
  136. unsigned int total_len);
  137. int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain,
  138. unsigned int num_sect, struct iovec const *msg_sect,
  139. unsigned int total_len);
  140. int tipc_send2port(u32 portref, struct tipc_portid const *dest,
  141. unsigned int num_sect, struct iovec const *msg_sect,
  142. unsigned int total_len);
  143. int tipc_multicast(u32 portref, struct tipc_name_seq const *seq,
  144. unsigned int section_count, struct iovec const *msg,
  145. unsigned int total_len);
  146. int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
  147. struct iovec const *msg_sect, u32 num_sect,
  148. unsigned int total_len, int err);
  149. struct sk_buff *tipc_port_get_ports(void);
  150. void tipc_port_recv_proto_msg(struct sk_buff *buf);
  151. void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp);
  152. void tipc_port_reinit(void);
  153. /**
  154. * tipc_port_lock - lock port instance referred to and return its pointer
  155. */
  156. static inline struct tipc_port *tipc_port_lock(u32 ref)
  157. {
  158. return (struct tipc_port *)tipc_ref_lock(ref);
  159. }
  160. /**
  161. * tipc_port_unlock - unlock a port instance
  162. *
  163. * Can use pointer instead of tipc_ref_unlock() since port is already locked.
  164. */
  165. static inline void tipc_port_unlock(struct tipc_port *p_ptr)
  166. {
  167. spin_unlock_bh(p_ptr->lock);
  168. }
  169. static inline struct tipc_port *tipc_port_deref(u32 ref)
  170. {
  171. return (struct tipc_port *)tipc_ref_deref(ref);
  172. }
  173. static inline int tipc_port_congested(struct tipc_port *p_ptr)
  174. {
  175. return (p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2);
  176. }
  177. #endif