tipc.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /*
  2. * include/net/tipc/tipc.h: Main include file for TIPC users
  3. *
  4. * Copyright (c) 2003-2006, Ericsson AB
  5. * Copyright (c) 2005, 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 _NET_TIPC_H_
  37. #define _NET_TIPC_H_
  38. #ifdef __KERNEL__
  39. #include <linux/tipc.h>
  40. #include <linux/skbuff.h>
  41. /*
  42. * Native API
  43. */
  44. /*
  45. * TIPC operating mode routines
  46. */
  47. u32 tipc_get_addr(void);
  48. #define TIPC_NOT_RUNNING 0
  49. #define TIPC_NODE_MODE 1
  50. #define TIPC_NET_MODE 2
  51. typedef void (*tipc_mode_event)(void *usr_handle, int mode, u32 addr);
  52. int tipc_attach(unsigned int *userref, tipc_mode_event, void *usr_handle);
  53. void tipc_detach(unsigned int userref);
  54. int tipc_get_mode(void);
  55. /*
  56. * TIPC port manipulation routines
  57. */
  58. typedef void (*tipc_msg_err_event) (void *usr_handle,
  59. u32 portref,
  60. struct sk_buff **buf,
  61. unsigned char const *data,
  62. unsigned int size,
  63. int reason,
  64. struct tipc_portid const *attmpt_destid);
  65. typedef void (*tipc_named_msg_err_event) (void *usr_handle,
  66. u32 portref,
  67. struct sk_buff **buf,
  68. unsigned char const *data,
  69. unsigned int size,
  70. int reason,
  71. struct tipc_name_seq const *attmpt_dest);
  72. typedef void (*tipc_conn_shutdown_event) (void *usr_handle,
  73. u32 portref,
  74. struct sk_buff **buf,
  75. unsigned char const *data,
  76. unsigned int size,
  77. int reason);
  78. typedef void (*tipc_msg_event) (void *usr_handle,
  79. u32 portref,
  80. struct sk_buff **buf,
  81. unsigned char const *data,
  82. unsigned int size,
  83. unsigned int importance,
  84. struct tipc_portid const *origin);
  85. typedef void (*tipc_named_msg_event) (void *usr_handle,
  86. u32 portref,
  87. struct sk_buff **buf,
  88. unsigned char const *data,
  89. unsigned int size,
  90. unsigned int importance,
  91. struct tipc_portid const *orig,
  92. struct tipc_name_seq const *dest);
  93. typedef void (*tipc_conn_msg_event) (void *usr_handle,
  94. u32 portref,
  95. struct sk_buff **buf,
  96. unsigned char const *data,
  97. unsigned int size);
  98. typedef void (*tipc_continue_event) (void *usr_handle,
  99. u32 portref);
  100. int tipc_createport(unsigned int tipc_user,
  101. void *usr_handle,
  102. unsigned int importance,
  103. tipc_msg_err_event error_cb,
  104. tipc_named_msg_err_event named_error_cb,
  105. tipc_conn_shutdown_event conn_error_cb,
  106. tipc_msg_event message_cb,
  107. tipc_named_msg_event named_message_cb,
  108. tipc_conn_msg_event conn_message_cb,
  109. tipc_continue_event continue_event_cb,/* May be zero */
  110. u32 *portref);
  111. int tipc_deleteport(u32 portref);
  112. int tipc_ownidentity(u32 portref, struct tipc_portid *port);
  113. int tipc_portimportance(u32 portref, unsigned int *importance);
  114. int tipc_set_portimportance(u32 portref, unsigned int importance);
  115. int tipc_portunreliable(u32 portref, unsigned int *isunreliable);
  116. int tipc_set_portunreliable(u32 portref, unsigned int isunreliable);
  117. int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable);
  118. int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable);
  119. int tipc_publish(u32 portref, unsigned int scope,
  120. struct tipc_name_seq const *name_seq);
  121. int tipc_withdraw(u32 portref, unsigned int scope,
  122. struct tipc_name_seq const *name_seq); /* 0: all */
  123. int tipc_connect2port(u32 portref, struct tipc_portid const *port);
  124. int tipc_disconnect(u32 portref);
  125. int tipc_shutdown(u32 ref); /* Sends SHUTDOWN msg */
  126. int tipc_isconnected(u32 portref, int *isconnected);
  127. int tipc_peer(u32 portref, struct tipc_portid *peer);
  128. int tipc_ref_valid(u32 portref);
  129. /*
  130. * TIPC messaging routines
  131. */
  132. #define TIPC_PORT_IMPORTANCE 100 /* send using current port setting */
  133. int tipc_send(u32 portref,
  134. unsigned int num_sect,
  135. struct iovec const *msg_sect);
  136. int tipc_send_buf(u32 portref,
  137. struct sk_buff *buf,
  138. unsigned int dsz);
  139. int tipc_send2name(u32 portref,
  140. struct tipc_name const *name,
  141. u32 domain, /* 0:own zone */
  142. unsigned int num_sect,
  143. struct iovec const *msg_sect);
  144. int tipc_send_buf2name(u32 portref,
  145. struct tipc_name const *name,
  146. u32 domain,
  147. struct sk_buff *buf,
  148. unsigned int dsz);
  149. int tipc_forward2name(u32 portref,
  150. struct tipc_name const *name,
  151. u32 domain, /*0: own zone */
  152. unsigned int section_count,
  153. struct iovec const *msg_sect,
  154. struct tipc_portid const *origin,
  155. unsigned int importance);
  156. int tipc_forward_buf2name(u32 portref,
  157. struct tipc_name const *name,
  158. u32 domain,
  159. struct sk_buff *buf,
  160. unsigned int dsz,
  161. struct tipc_portid const *orig,
  162. unsigned int importance);
  163. int tipc_send2port(u32 portref,
  164. struct tipc_portid const *dest,
  165. unsigned int num_sect,
  166. struct iovec const *msg_sect);
  167. int tipc_send_buf2port(u32 portref,
  168. struct tipc_portid const *dest,
  169. struct sk_buff *buf,
  170. unsigned int dsz);
  171. int tipc_forward2port(u32 portref,
  172. struct tipc_portid const *dest,
  173. unsigned int num_sect,
  174. struct iovec const *msg_sect,
  175. struct tipc_portid const *origin,
  176. unsigned int importance);
  177. int tipc_forward_buf2port(u32 portref,
  178. struct tipc_portid const *dest,
  179. struct sk_buff *buf,
  180. unsigned int dsz,
  181. struct tipc_portid const *orig,
  182. unsigned int importance);
  183. int tipc_multicast(u32 portref,
  184. struct tipc_name_seq const *seq,
  185. u32 domain, /* 0:own zone */
  186. unsigned int section_count,
  187. struct iovec const *msg);
  188. #if 0
  189. int tipc_multicast_buf(u32 portref,
  190. struct tipc_name_seq const *seq,
  191. u32 domain, /* 0:own zone */
  192. void *buf,
  193. unsigned int size);
  194. #endif
  195. /*
  196. * TIPC subscription routines
  197. */
  198. int tipc_ispublished(struct tipc_name const *name);
  199. /*
  200. * Get number of available nodes within specified domain (excluding own node)
  201. */
  202. unsigned int tipc_available_nodes(const u32 domain);
  203. #endif
  204. #endif