af_vsock.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. /* vsock-specific sock->sk_state constants */
  22. #define VSOCK_SS_LISTEN 255
  23. #define LAST_RESERVED_PORT 1023
  24. #define vsock_sk(__sk) ((struct vsock_sock *)__sk)
  25. #define sk_vsock(__vsk) (&(__vsk)->sk)
  26. struct vsock_sock {
  27. /* sk must be the first member. */
  28. struct sock sk;
  29. struct sockaddr_vm local_addr;
  30. struct sockaddr_vm remote_addr;
  31. /* Links for the global tables of bound and connected sockets. */
  32. struct list_head bound_table;
  33. struct list_head connected_table;
  34. /* Accessed without the socket lock held. This means it can never be
  35. * modified outsided of socket create or destruct.
  36. */
  37. bool trusted;
  38. bool cached_peer_allow_dgram; /* Dgram communication allowed to
  39. * cached peer?
  40. */
  41. u32 cached_peer; /* Context ID of last dgram destination check. */
  42. const struct cred *owner;
  43. /* Rest are SOCK_STREAM only. */
  44. long connect_timeout;
  45. /* Listening socket that this came from. */
  46. struct sock *listener;
  47. /* Used for pending list and accept queue during connection handshake.
  48. * The listening socket is the head for both lists. Sockets created
  49. * for connection requests are placed in the pending list until they
  50. * are connected, at which point they are put in the accept queue list
  51. * so they can be accepted in accept(). If accept() cannot accept the
  52. * connection, it is marked as rejected so the cleanup function knows
  53. * to clean up the socket.
  54. */
  55. struct list_head pending_links;
  56. struct list_head accept_queue;
  57. bool rejected;
  58. struct delayed_work connect_work;
  59. struct delayed_work pending_work;
  60. u32 peer_shutdown;
  61. bool sent_request;
  62. bool ignore_connecting_rst;
  63. /* Private to transport. */
  64. void *trans;
  65. };
  66. s64 vsock_stream_has_data(struct vsock_sock *vsk);
  67. s64 vsock_stream_has_space(struct vsock_sock *vsk);
  68. struct sock *__vsock_create(struct net *net,
  69. struct socket *sock,
  70. struct sock *parent,
  71. gfp_t priority, unsigned short type, int kern);
  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. struct vsock_transport {
  83. /* Initialize/tear-down socket. */
  84. int (*init)(struct vsock_sock *, struct vsock_sock *);
  85. void (*destruct)(struct vsock_sock *);
  86. void (*release)(struct vsock_sock *);
  87. /* Connections. */
  88. int (*connect)(struct vsock_sock *);
  89. /* DGRAM. */
  90. int (*dgram_bind)(struct vsock_sock *, struct sockaddr_vm *);
  91. int (*dgram_dequeue)(struct vsock_sock *vsk, struct msghdr *msg,
  92. size_t len, int flags);
  93. int (*dgram_enqueue)(struct vsock_sock *, struct sockaddr_vm *,
  94. struct msghdr *, size_t len);
  95. bool (*dgram_allow)(u32 cid, u32 port);
  96. /* STREAM. */
  97. /* TODO: stream_bind() */
  98. ssize_t (*stream_dequeue)(struct vsock_sock *, struct msghdr *,
  99. size_t len, int flags);
  100. ssize_t (*stream_enqueue)(struct vsock_sock *, struct msghdr *,
  101. size_t len);
  102. s64 (*stream_has_data)(struct vsock_sock *);
  103. s64 (*stream_has_space)(struct vsock_sock *);
  104. u64 (*stream_rcvhiwat)(struct vsock_sock *);
  105. bool (*stream_is_active)(struct vsock_sock *);
  106. bool (*stream_allow)(u32 cid, u32 port);
  107. /* Notification. */
  108. int (*notify_poll_in)(struct vsock_sock *, size_t, bool *);
  109. int (*notify_poll_out)(struct vsock_sock *, size_t, bool *);
  110. int (*notify_recv_init)(struct vsock_sock *, size_t,
  111. struct vsock_transport_recv_notify_data *);
  112. int (*notify_recv_pre_block)(struct vsock_sock *, size_t,
  113. struct vsock_transport_recv_notify_data *);
  114. int (*notify_recv_pre_dequeue)(struct vsock_sock *, size_t,
  115. struct vsock_transport_recv_notify_data *);
  116. int (*notify_recv_post_dequeue)(struct vsock_sock *, size_t,
  117. ssize_t, bool, struct vsock_transport_recv_notify_data *);
  118. int (*notify_send_init)(struct vsock_sock *,
  119. struct vsock_transport_send_notify_data *);
  120. int (*notify_send_pre_block)(struct vsock_sock *,
  121. struct vsock_transport_send_notify_data *);
  122. int (*notify_send_pre_enqueue)(struct vsock_sock *,
  123. struct vsock_transport_send_notify_data *);
  124. int (*notify_send_post_enqueue)(struct vsock_sock *, ssize_t,
  125. struct vsock_transport_send_notify_data *);
  126. /* Shutdown. */
  127. int (*shutdown)(struct vsock_sock *, int);
  128. /* Buffer sizes. */
  129. void (*set_buffer_size)(struct vsock_sock *, u64);
  130. void (*set_min_buffer_size)(struct vsock_sock *, u64);
  131. void (*set_max_buffer_size)(struct vsock_sock *, u64);
  132. u64 (*get_buffer_size)(struct vsock_sock *);
  133. u64 (*get_min_buffer_size)(struct vsock_sock *);
  134. u64 (*get_max_buffer_size)(struct vsock_sock *);
  135. /* Addressing. */
  136. u32 (*get_local_cid)(void);
  137. };
  138. /**** CORE ****/
  139. int __vsock_core_init(const struct vsock_transport *t, struct module *owner);
  140. static inline int vsock_core_init(const struct vsock_transport *t)
  141. {
  142. return __vsock_core_init(t, THIS_MODULE);
  143. }
  144. void vsock_core_exit(void);
  145. /**** UTILS ****/
  146. void vsock_release_pending(struct sock *pending);
  147. void vsock_add_pending(struct sock *listener, struct sock *pending);
  148. void vsock_remove_pending(struct sock *listener, struct sock *pending);
  149. void vsock_enqueue_accept(struct sock *listener, struct sock *connected);
  150. void vsock_insert_connected(struct vsock_sock *vsk);
  151. void vsock_remove_bound(struct vsock_sock *vsk);
  152. void vsock_remove_connected(struct vsock_sock *vsk);
  153. struct sock *vsock_find_bound_socket(struct sockaddr_vm *addr);
  154. struct sock *vsock_find_connected_socket(struct sockaddr_vm *src,
  155. struct sockaddr_vm *dst);
  156. void vsock_for_each_connected_socket(void (*fn)(struct sock *sk));
  157. #endif /* __AF_VSOCK_H__ */