af_vsock.h 7.5 KB

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