af_vsock.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * VMware vSockets Driver
  3. *
  4. * Copyright (C) 2007-2013 VMware, Inc. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation version 2 and no later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. */
  15. #ifndef __AF_VSOCK_H__
  16. #define __AF_VSOCK_H__
  17. #include <linux/kernel.h>
  18. #include <linux/workqueue.h>
  19. #include <linux/vm_sockets.h>
  20. #include "vsock_addr.h"
  21. #define LAST_RESERVED_PORT 1023
  22. #define VSOCK_HASH_SIZE 251
  23. extern struct list_head vsock_bind_table[VSOCK_HASH_SIZE + 1];
  24. extern struct list_head vsock_connected_table[VSOCK_HASH_SIZE];
  25. extern spinlock_t vsock_table_lock;
  26. #define vsock_sk(__sk) ((struct vsock_sock *)__sk)
  27. #define sk_vsock(__vsk) (&(__vsk)->sk)
  28. struct vsock_sock {
  29. /* sk must be the first member. */
  30. struct sock sk;
  31. struct sockaddr_vm local_addr;
  32. struct sockaddr_vm remote_addr;
  33. /* Links for the global tables of bound and connected sockets. */
  34. struct list_head bound_table;
  35. struct list_head connected_table;
  36. /* Accessed without the socket lock held. This means it can never be
  37. * modified outsided of socket create or destruct.
  38. */
  39. bool trusted;
  40. bool cached_peer_allow_dgram; /* Dgram communication allowed to
  41. * cached peer?
  42. */
  43. u32 cached_peer; /* Context ID of last dgram destination check. */
  44. const struct cred *owner;
  45. /* Rest are SOCK_STREAM only. */
  46. long connect_timeout;
  47. /* Listening socket that this came from. */
  48. struct sock *listener;
  49. /* Used for pending list and accept queue during connection handshake.
  50. * The listening socket is the head for both lists. Sockets created
  51. * for connection requests are placed in the pending list until they
  52. * are connected, at which point they are put in the accept queue list
  53. * so they can be accepted in accept(). If accept() cannot accept the
  54. * connection, it is marked as rejected so the cleanup function knows
  55. * to clean up the socket.
  56. */
  57. struct list_head pending_links;
  58. struct list_head accept_queue;
  59. bool rejected;
  60. struct delayed_work connect_work;
  61. struct delayed_work pending_work;
  62. struct delayed_work close_work;
  63. bool close_work_scheduled;
  64. u32 peer_shutdown;
  65. bool sent_request;
  66. bool ignore_connecting_rst;
  67. /* Private to transport. */
  68. void *trans;
  69. };
  70. s64 vsock_stream_has_data(struct vsock_sock *vsk);
  71. s64 vsock_stream_has_space(struct vsock_sock *vsk);
  72. struct sock *__vsock_create(struct net *net,
  73. struct socket *sock,
  74. struct sock *parent,
  75. gfp_t priority, unsigned short type, int kern);
  76. /**** TRANSPORT ****/
  77. struct vsock_transport_recv_notify_data {
  78. u64 data1; /* Transport-defined. */
  79. u64 data2; /* Transport-defined. */
  80. bool notify_on_block;
  81. };
  82. struct vsock_transport_send_notify_data {
  83. u64 data1; /* Transport-defined. */
  84. u64 data2; /* Transport-defined. */
  85. };
  86. struct vsock_transport {
  87. /* Initialize/tear-down socket. */
  88. int (*init)(struct vsock_sock *, struct vsock_sock *);
  89. void (*destruct)(struct vsock_sock *);
  90. void (*release)(struct vsock_sock *);
  91. /* Cancel all pending packets sent on vsock. */
  92. int (*cancel_pkt)(struct vsock_sock *vsk);
  93. /* Connections. */
  94. int (*connect)(struct vsock_sock *);
  95. /* DGRAM. */
  96. int (*dgram_bind)(struct vsock_sock *, struct sockaddr_vm *);
  97. int (*dgram_dequeue)(struct vsock_sock *vsk, struct msghdr *msg,
  98. size_t len, int flags);
  99. int (*dgram_enqueue)(struct vsock_sock *, struct sockaddr_vm *,
  100. struct msghdr *, size_t len);
  101. bool (*dgram_allow)(u32 cid, u32 port);
  102. /* STREAM. */
  103. /* TODO: stream_bind() */
  104. ssize_t (*stream_dequeue)(struct vsock_sock *, struct msghdr *,
  105. size_t len, int flags);
  106. ssize_t (*stream_enqueue)(struct vsock_sock *, struct msghdr *,
  107. size_t len);
  108. s64 (*stream_has_data)(struct vsock_sock *);
  109. s64 (*stream_has_space)(struct vsock_sock *);
  110. u64 (*stream_rcvhiwat)(struct vsock_sock *);
  111. bool (*stream_is_active)(struct vsock_sock *);
  112. bool (*stream_allow)(u32 cid, u32 port);
  113. /* Notification. */
  114. int (*notify_poll_in)(struct vsock_sock *, size_t, bool *);
  115. int (*notify_poll_out)(struct vsock_sock *, size_t, bool *);
  116. int (*notify_recv_init)(struct vsock_sock *, size_t,
  117. struct vsock_transport_recv_notify_data *);
  118. int (*notify_recv_pre_block)(struct vsock_sock *, size_t,
  119. struct vsock_transport_recv_notify_data *);
  120. int (*notify_recv_pre_dequeue)(struct vsock_sock *, size_t,
  121. struct vsock_transport_recv_notify_data *);
  122. int (*notify_recv_post_dequeue)(struct vsock_sock *, size_t,
  123. ssize_t, bool, struct vsock_transport_recv_notify_data *);
  124. int (*notify_send_init)(struct vsock_sock *,
  125. struct vsock_transport_send_notify_data *);
  126. int (*notify_send_pre_block)(struct vsock_sock *,
  127. struct vsock_transport_send_notify_data *);
  128. int (*notify_send_pre_enqueue)(struct vsock_sock *,
  129. struct vsock_transport_send_notify_data *);
  130. int (*notify_send_post_enqueue)(struct vsock_sock *, ssize_t,
  131. struct vsock_transport_send_notify_data *);
  132. /* Shutdown. */
  133. int (*shutdown)(struct vsock_sock *, int);
  134. /* Buffer sizes. */
  135. void (*set_buffer_size)(struct vsock_sock *, u64);
  136. void (*set_min_buffer_size)(struct vsock_sock *, u64);
  137. void (*set_max_buffer_size)(struct vsock_sock *, u64);
  138. u64 (*get_buffer_size)(struct vsock_sock *);
  139. u64 (*get_min_buffer_size)(struct vsock_sock *);
  140. u64 (*get_max_buffer_size)(struct vsock_sock *);
  141. /* Addressing. */
  142. u32 (*get_local_cid)(void);
  143. };
  144. /**** CORE ****/
  145. int __vsock_core_init(const struct vsock_transport *t, struct module *owner);
  146. static inline int vsock_core_init(const struct vsock_transport *t)
  147. {
  148. return __vsock_core_init(t, THIS_MODULE);
  149. }
  150. void vsock_core_exit(void);
  151. /* The transport may downcast this to access transport-specific functions */
  152. const struct vsock_transport *vsock_core_get_transport(void);
  153. /**** UTILS ****/
  154. /* vsock_table_lock must be held */
  155. static inline bool __vsock_in_bound_table(struct vsock_sock *vsk)
  156. {
  157. return !list_empty(&vsk->bound_table);
  158. }
  159. /* vsock_table_lock must be held */
  160. static inline bool __vsock_in_connected_table(struct vsock_sock *vsk)
  161. {
  162. return !list_empty(&vsk->connected_table);
  163. }
  164. void vsock_release_pending(struct sock *pending);
  165. void vsock_add_pending(struct sock *listener, struct sock *pending);
  166. void vsock_remove_pending(struct sock *listener, struct sock *pending);
  167. void vsock_enqueue_accept(struct sock *listener, struct sock *connected);
  168. void vsock_insert_connected(struct vsock_sock *vsk);
  169. void vsock_remove_bound(struct vsock_sock *vsk);
  170. void vsock_remove_connected(struct vsock_sock *vsk);
  171. struct sock *vsock_find_bound_socket(struct sockaddr_vm *addr);
  172. struct sock *vsock_find_connected_socket(struct sockaddr_vm *src,
  173. struct sockaddr_vm *dst);
  174. void vsock_remove_sock(struct vsock_sock *vsk);
  175. void vsock_for_each_connected_socket(void (*fn)(struct sock *sk));
  176. /**** TAP ****/
  177. struct vsock_tap {
  178. struct net_device *dev;
  179. struct module *module;
  180. struct list_head list;
  181. };
  182. int vsock_init_tap(void);
  183. int vsock_add_tap(struct vsock_tap *vt);
  184. int vsock_remove_tap(struct vsock_tap *vt);
  185. void vsock_deliver_tap(struct sk_buff *build_skb(void *opaque), void *opaque);
  186. #endif /* __AF_VSOCK_H__ */