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