tipc.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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,2010 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. #define TIPC_NOT_RUNNING 0
  48. #define TIPC_NODE_MODE 1
  49. #define TIPC_NET_MODE 2
  50. typedef void (*tipc_mode_event)(void *usr_handle, int mode, u32 addr);
  51. int tipc_attach(unsigned int *userref, tipc_mode_event, void *usr_handle);
  52. void tipc_detach(unsigned int userref);
  53. /*
  54. * TIPC port manipulation routines
  55. */
  56. typedef void (*tipc_msg_err_event) (void *usr_handle,
  57. u32 portref,
  58. struct sk_buff **buf,
  59. unsigned char const *data,
  60. unsigned int size,
  61. int reason,
  62. struct tipc_portid const *attmpt_destid);
  63. typedef void (*tipc_named_msg_err_event) (void *usr_handle,
  64. u32 portref,
  65. struct sk_buff **buf,
  66. unsigned char const *data,
  67. unsigned int size,
  68. int reason,
  69. struct tipc_name_seq const *attmpt_dest);
  70. typedef void (*tipc_conn_shutdown_event) (void *usr_handle,
  71. u32 portref,
  72. struct sk_buff **buf,
  73. unsigned char const *data,
  74. unsigned int size,
  75. int reason);
  76. typedef void (*tipc_msg_event) (void *usr_handle,
  77. u32 portref,
  78. struct sk_buff **buf,
  79. unsigned char const *data,
  80. unsigned int size,
  81. unsigned int importance,
  82. struct tipc_portid const *origin);
  83. typedef void (*tipc_named_msg_event) (void *usr_handle,
  84. u32 portref,
  85. struct sk_buff **buf,
  86. unsigned char const *data,
  87. unsigned int size,
  88. unsigned int importance,
  89. struct tipc_portid const *orig,
  90. struct tipc_name_seq const *dest);
  91. typedef void (*tipc_conn_msg_event) (void *usr_handle,
  92. u32 portref,
  93. struct sk_buff **buf,
  94. unsigned char const *data,
  95. unsigned int size);
  96. typedef void (*tipc_continue_event) (void *usr_handle,
  97. u32 portref);
  98. int tipc_createport(unsigned int tipc_user,
  99. void *usr_handle,
  100. unsigned int importance,
  101. tipc_msg_err_event error_cb,
  102. tipc_named_msg_err_event named_error_cb,
  103. tipc_conn_shutdown_event conn_error_cb,
  104. tipc_msg_event message_cb,
  105. tipc_named_msg_event named_message_cb,
  106. tipc_conn_msg_event conn_message_cb,
  107. tipc_continue_event continue_event_cb,
  108. u32 *portref);
  109. int tipc_deleteport(u32 portref);
  110. int tipc_ownidentity(u32 portref, struct tipc_portid *port);
  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_connect2port(u32 portref, struct tipc_portid const *port);
  122. int tipc_disconnect(u32 portref);
  123. int tipc_shutdown(u32 ref);
  124. /*
  125. * TIPC messaging routines
  126. */
  127. #define TIPC_PORT_IMPORTANCE 100 /* send using current port setting */
  128. int tipc_send(u32 portref,
  129. unsigned int num_sect,
  130. struct iovec const *msg_sect);
  131. int tipc_send2name(u32 portref,
  132. struct tipc_name const *name,
  133. u32 domain,
  134. unsigned int num_sect,
  135. struct iovec const *msg_sect);
  136. int tipc_send2port(u32 portref,
  137. struct tipc_portid const *dest,
  138. unsigned int num_sect,
  139. struct iovec const *msg_sect);
  140. int tipc_send_buf2port(u32 portref,
  141. struct tipc_portid const *dest,
  142. struct sk_buff *buf,
  143. unsigned int dsz);
  144. int tipc_multicast(u32 portref,
  145. struct tipc_name_seq const *seq,
  146. u32 domain, /* currently unused */
  147. unsigned int section_count,
  148. struct iovec const *msg);
  149. #endif
  150. #endif