port.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. * net/tipc/port.h: Include file for TIPC port code
  3. *
  4. * Copyright (c) 1994-2007, 2014, 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_CONNACK_INTV 256
  43. #define TIPC_FLOWCTRL_WIN (TIPC_CONNACK_INTV * 2)
  44. #define TIPC_CONN_OVERLOAD_LIMIT ((TIPC_FLOWCTRL_WIN * 2 + 1) * \
  45. SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
  46. /**
  47. * struct tipc_port - TIPC port structure
  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. * @published: non-zero if port has one or more associated names
  53. * @max_pkt: maximum packet size "hint" used when building messages sent by port
  54. * @ref: unique reference to port in TIPC object registry
  55. * @phdr: preformatted message header used when sending messages
  56. * @port_list: adjacent ports in TIPC's global list of ports
  57. * @wait_list: adjacent ports in list of ports waiting on link congestion
  58. * @waiting_pkts:
  59. * @publications: list of publications for port
  60. * @pub_count: total # of publications port has made during its lifetime
  61. * @probing_state:
  62. * @probing_interval:
  63. * @timer_ref:
  64. * @subscription: "node down" subscription used to terminate failed connections
  65. */
  66. struct tipc_port {
  67. spinlock_t *lock;
  68. int connected;
  69. u32 conn_type;
  70. u32 conn_instance;
  71. int published;
  72. u32 max_pkt;
  73. u32 ref;
  74. struct tipc_msg phdr;
  75. struct list_head port_list;
  76. struct list_head wait_list;
  77. u32 waiting_pkts;
  78. struct list_head publications;
  79. u32 pub_count;
  80. u32 probing_state;
  81. u32 probing_interval;
  82. struct timer_list timer;
  83. struct tipc_node_subscr subscription;
  84. };
  85. extern spinlock_t tipc_port_list_lock;
  86. struct tipc_port_list;
  87. /*
  88. * TIPC port manipulation routines
  89. */
  90. u32 tipc_port_init(struct tipc_port *p_ptr,
  91. const unsigned int importance);
  92. void tipc_acknowledge(u32 port_ref, u32 ack);
  93. void tipc_port_destroy(struct tipc_port *p_ptr);
  94. int tipc_publish(struct tipc_port *p_ptr, unsigned int scope,
  95. struct tipc_name_seq const *name_seq);
  96. int tipc_withdraw(struct tipc_port *p_ptr, unsigned int scope,
  97. struct tipc_name_seq const *name_seq);
  98. int tipc_port_connect(u32 portref, struct tipc_portid const *port);
  99. int tipc_port_disconnect(u32 portref);
  100. int tipc_port_shutdown(u32 ref);
  101. /*
  102. * The following routines require that the port be locked on entry
  103. */
  104. int __tipc_port_disconnect(struct tipc_port *tp_ptr);
  105. int __tipc_port_connect(u32 ref, struct tipc_port *p_ptr,
  106. struct tipc_portid const *peer);
  107. int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
  108. struct sk_buff *tipc_port_get_ports(void);
  109. void tipc_port_reinit(void);
  110. /**
  111. * tipc_port_lock - lock port instance referred to and return its pointer
  112. */
  113. static inline struct tipc_port *tipc_port_lock(u32 ref)
  114. {
  115. return (struct tipc_port *)tipc_ref_lock(ref);
  116. }
  117. /**
  118. * tipc_port_unlock - unlock a port instance
  119. *
  120. * Can use pointer instead of tipc_ref_unlock() since port is already locked.
  121. */
  122. static inline void tipc_port_unlock(struct tipc_port *p_ptr)
  123. {
  124. spin_unlock_bh(p_ptr->lock);
  125. }
  126. static inline u32 tipc_port_peernode(struct tipc_port *p_ptr)
  127. {
  128. return msg_destnode(&p_ptr->phdr);
  129. }
  130. static inline u32 tipc_port_peerport(struct tipc_port *p_ptr)
  131. {
  132. return msg_destport(&p_ptr->phdr);
  133. }
  134. static inline bool tipc_port_unreliable(struct tipc_port *port)
  135. {
  136. return msg_src_droppable(&port->phdr) != 0;
  137. }
  138. static inline void tipc_port_set_unreliable(struct tipc_port *port,
  139. bool unreliable)
  140. {
  141. msg_set_src_droppable(&port->phdr, unreliable ? 1 : 0);
  142. }
  143. static inline bool tipc_port_unreturnable(struct tipc_port *port)
  144. {
  145. return msg_dest_droppable(&port->phdr) != 0;
  146. }
  147. static inline void tipc_port_set_unreturnable(struct tipc_port *port,
  148. bool unreturnable)
  149. {
  150. msg_set_dest_droppable(&port->phdr, unreturnable ? 1 : 0);
  151. }
  152. static inline int tipc_port_importance(struct tipc_port *port)
  153. {
  154. return msg_importance(&port->phdr);
  155. }
  156. static inline int tipc_port_set_importance(struct tipc_port *port, int imp)
  157. {
  158. if (imp > TIPC_CRITICAL_IMPORTANCE)
  159. return -EINVAL;
  160. msg_set_importance(&port->phdr, (u32)imp);
  161. return 0;
  162. }
  163. #endif