xref: /illumos-gate/usr/src/cmd/bhyve/pci_virtio_9p.c (revision 5d9d9091f564c198a760790b0bfa72c44e17912b)
1 /*-
2  * Copyright (c) 2015 iXsystems Inc.
3  * Copyright (c) 2017-2018 Jakub Klama <jceel@FreeBSD.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer
11  *    in this position and unchanged.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 /*
30  * VirtIO filesystem passthrough using 9p protocol.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include <sys/param.h>
37 #include <sys/linker_set.h>
38 #include <sys/uio.h>
39 #ifndef WITHOUT_CAPSICUM
40 #include <sys/capsicum.h>
41 #endif
42 
43 #include <errno.h>
44 #include <fcntl.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <unistd.h>
49 #include <assert.h>
50 #include <pthread.h>
51 
52 #include <lib9p.h>
53 #include <backend/fs.h>
54 
55 #include "bhyverun.h"
56 #include "config.h"
57 #include "debug.h"
58 #include "pci_emul.h"
59 #include "virtio.h"
60 
61 #ifndef __FreeBSD__
62 #include "privileges.h"
63 #endif
64 
65 #define	VT9P_MAX_IOV	128
66 #define VT9P_RINGSZ	256
67 #define	VT9P_MAXTAGSZ	256
68 #define	VT9P_CONFIGSPACESZ	(VT9P_MAXTAGSZ + sizeof(uint16_t))
69 
70 static int pci_vt9p_debug;
71 #define DPRINTF(params) if (pci_vt9p_debug) printf params
72 #define WPRINTF(params) printf params
73 
74 /*
75  * Per-device softc
76  */
77 struct pci_vt9p_softc {
78 	struct virtio_softc      vsc_vs;
79 	struct vqueue_info       vsc_vq;
80 	pthread_mutex_t          vsc_mtx;
81 	uint64_t                 vsc_cfg;
82 	uint64_t                 vsc_features;
83 	char *                   vsc_rootpath;
84 	struct pci_vt9p_config * vsc_config;
85 	struct l9p_backend *     vsc_fs_backend;
86 	struct l9p_server *      vsc_server;
87         struct l9p_connection *  vsc_conn;
88 };
89 
90 struct pci_vt9p_request {
91 	struct pci_vt9p_softc *	vsr_sc;
92 	struct iovec *		vsr_iov;
93 	size_t			vsr_niov;
94 	size_t			vsr_respidx;
95 	size_t			vsr_iolen;
96 	uint16_t		vsr_idx;
97 };
98 
99 struct pci_vt9p_config {
100 	uint16_t tag_len;
101 #ifdef	__FreeBSD__
102 	char tag[0];
103 #else
104 	char tag[VT9P_MAXTAGSZ];
105 #endif
106 } __attribute__((packed));
107 
108 static int pci_vt9p_send(struct l9p_request *, const struct iovec *,
109     const size_t, const size_t, void *);
110 static void pci_vt9p_drop(struct l9p_request *, const struct iovec *, size_t,
111     void *);
112 static void pci_vt9p_reset(void *);
113 static void pci_vt9p_notify(void *, struct vqueue_info *);
114 static int pci_vt9p_cfgread(void *, int, int, uint32_t *);
115 static void pci_vt9p_neg_features(void *, uint64_t);
116 
117 static struct virtio_consts vt9p_vi_consts = {
118 	.vc_name =	"vt9p",
119 	.vc_nvq =	1,
120 	.vc_cfgsize =	VT9P_CONFIGSPACESZ,
121 	.vc_reset =	pci_vt9p_reset,
122 	.vc_qnotify =	pci_vt9p_notify,
123 	.vc_cfgread =	pci_vt9p_cfgread,
124 	.vc_apply_features = pci_vt9p_neg_features,
125 	.vc_hv_caps =	(1 << 0),
126 };
127 
128 static void
129 pci_vt9p_reset(void *vsc)
130 {
131 	struct pci_vt9p_softc *sc;
132 
133 	sc = vsc;
134 
135 	DPRINTF(("vt9p: device reset requested !\n"));
136 	vi_reset_dev(&sc->vsc_vs);
137 }
138 
139 static void
140 pci_vt9p_neg_features(void *vsc, uint64_t negotiated_features)
141 {
142 	struct pci_vt9p_softc *sc = vsc;
143 
144 	sc->vsc_features = negotiated_features;
145 }
146 
147 static int
148 pci_vt9p_cfgread(void *vsc, int offset, int size, uint32_t *retval)
149 {
150 	struct pci_vt9p_softc *sc = vsc;
151 	void *ptr;
152 
153 	ptr = (uint8_t *)sc->vsc_config + offset;
154 	memcpy(retval, ptr, size);
155 	return (0);
156 }
157 
158 static int
159 pci_vt9p_get_buffer(struct l9p_request *req, struct iovec *iov, size_t *niov,
160     void *arg __unused)
161 {
162 	struct pci_vt9p_request *preq = req->lr_aux;
163 	size_t n = preq->vsr_niov - preq->vsr_respidx;
164 
165 	memcpy(iov, preq->vsr_iov + preq->vsr_respidx,
166 	    n * sizeof(struct iovec));
167 	*niov = n;
168 	return (0);
169 }
170 
171 static int
172 pci_vt9p_send(struct l9p_request *req, const struct iovec *iov __unused,
173     const size_t niov __unused, const size_t iolen, void *arg __unused)
174 {
175 	struct pci_vt9p_request *preq = req->lr_aux;
176 	struct pci_vt9p_softc *sc = preq->vsr_sc;
177 
178 	preq->vsr_iolen = iolen;
179 
180 	pthread_mutex_lock(&sc->vsc_mtx);
181 	vq_relchain(&sc->vsc_vq, preq->vsr_idx, preq->vsr_iolen);
182 	vq_endchains(&sc->vsc_vq, 1);
183 	pthread_mutex_unlock(&sc->vsc_mtx);
184 	free(preq);
185 	return (0);
186 }
187 
188 static void
189 pci_vt9p_drop(struct l9p_request *req, const struct iovec *iov __unused,
190     size_t niov __unused, void *arg __unused)
191 {
192 	struct pci_vt9p_request *preq = req->lr_aux;
193 	struct pci_vt9p_softc *sc = preq->vsr_sc;
194 
195 	pthread_mutex_lock(&sc->vsc_mtx);
196 	vq_relchain(&sc->vsc_vq, preq->vsr_idx, 0);
197 	vq_endchains(&sc->vsc_vq, 1);
198 	pthread_mutex_unlock(&sc->vsc_mtx);
199 	free(preq);
200 }
201 
202 static void
203 pci_vt9p_notify(void *vsc, struct vqueue_info *vq)
204 {
205 	struct iovec iov[VT9P_MAX_IOV];
206 	struct pci_vt9p_softc *sc;
207 	struct pci_vt9p_request *preq;
208 	struct vi_req req;
209 	int n;
210 
211 	sc = vsc;
212 
213 	while (vq_has_descs(vq)) {
214 		n = vq_getchain(vq, iov, VT9P_MAX_IOV, &req);
215 		assert(n >= 1 && n <= VT9P_MAX_IOV);
216 		preq = calloc(1, sizeof(struct pci_vt9p_request));
217 #ifndef __FreeBSD__
218 		if (preq == NULL) {
219 			EPRINTLN("virtio-9p: allocation failure: %s",
220 			    strerror(errno));
221 			break;
222 		}
223 #endif
224 		preq->vsr_sc = sc;
225 		preq->vsr_idx = req.idx;
226 		preq->vsr_iov = iov;
227 		preq->vsr_niov = n;
228 		preq->vsr_respidx = req.readable;
229 
230 		for (int i = 0; i < n; i++) {
231 			DPRINTF(("vt9p: vt9p_notify(): desc%d base=%p, "
232 			    "len=%zu\r\n", i, iov[i].iov_base,
233 			    iov[i].iov_len));
234 		}
235 
236 		l9p_connection_recv(sc->vsc_conn, iov, preq->vsr_respidx, preq);
237 	}
238 }
239 
240 static int
241 pci_vt9p_legacy_config(nvlist_t *nvl, const char *opts)
242 {
243 	char *sharename = NULL, *tofree, *token, *tokens;
244 
245 	if (opts == NULL)
246 		return (0);
247 
248 	tokens = tofree = strdup(opts);
249 	while ((token = strsep(&tokens, ",")) != NULL) {
250 		if (strchr(token, '=') != NULL) {
251 			if (sharename != NULL) {
252 				EPRINTLN(
253 			    "virtio-9p: more than one share name given");
254 				return (-1);
255 			}
256 
257 			sharename = strsep(&token, "=");
258 			set_config_value_node(nvl, "sharename", sharename);
259 			set_config_value_node(nvl, "path", token);
260 		} else
261 			set_config_bool_node(nvl, token, true);
262 	}
263 	free(tofree);
264 
265 	return (0);
266 }
267 
268 static int
269 pci_vt9p_init(struct vmctx *ctx __unused, struct pci_devinst *pi, nvlist_t *nvl)
270 {
271 	struct pci_vt9p_softc *sc;
272 	const char *value;
273 	const char *sharename;
274 	int rootfd;
275 	bool ro;
276 #ifndef WITHOUT_CAPSICUM
277 	cap_rights_t rootcap;
278 #endif
279 
280 	ro = get_config_bool_node_default(nvl, "ro", false);
281 
282 #ifndef __FreeBSD__
283 	illumos_priv_add_min(PRIV_FILE_DAC_READ, "vt9p");
284 	illumos_priv_add_min(PRIV_FILE_DAC_SEARCH, "vt9p");
285 
286 	if (!ro) {
287 		illumos_priv_add_min(PRIV_FILE_CHOWN, "vt9p");
288 		illumos_priv_add_min(PRIV_FILE_CHOWN_SELF, "vt9p");
289 		illumos_priv_add_min(PRIV_FILE_WRITE, "vt9p");
290 		illumos_priv_add_min(PRIV_FILE_DAC_WRITE, "vt9p");
291 		illumos_priv_add_min(PRIV_FILE_OWNER, "vt9p");
292 		illumos_priv_add_min(PRIV_FILE_LINK_ANY, "vt9p");
293 	}
294 #endif
295 
296 	value = get_config_value_node(nvl, "path");
297 	if (value == NULL) {
298 		EPRINTLN("virtio-9p: path required");
299 		return (1);
300 	}
301 	rootfd = open(value, O_DIRECTORY);
302 	if (rootfd < 0) {
303 		EPRINTLN("virtio-9p: failed to open '%s': %s", value,
304 		    strerror(errno));
305 		return (-1);
306 	}
307 
308 	sharename = get_config_value_node(nvl, "sharename");
309 	if (sharename == NULL) {
310 		EPRINTLN("virtio-9p: share name required");
311 		return (1);
312 	}
313 	if (strlen(sharename) > VT9P_MAXTAGSZ) {
314 		EPRINTLN("virtio-9p: share name too long");
315 		return (1);
316 	}
317 
318 	sc = calloc(1, sizeof(struct pci_vt9p_softc));
319 #ifdef	__FreeBSD__
320 	sc->vsc_config = calloc(1, sizeof(struct pci_vt9p_config) +
321 	    VT9P_MAXTAGSZ);
322 #else
323 	if (sc == NULL) {
324 		EPRINTLN("virtio-9p: soft state allocation failure: %s",
325 		    strerror(errno));
326 		return (1);
327 	}
328 	sc->vsc_config = calloc(1, sizeof(struct pci_vt9p_config));
329 	if (sc == NULL) {
330 		EPRINTLN("virtio-9p: vsc_config allocation failure: %s",
331 		    strerror(errno));
332 		return (1);
333 	}
334 #endif
335 
336 	pthread_mutex_init(&sc->vsc_mtx, NULL);
337 
338 #ifndef WITHOUT_CAPSICUM
339 	cap_rights_init(&rootcap,
340 	    CAP_LOOKUP, CAP_ACL_CHECK, CAP_ACL_DELETE, CAP_ACL_GET,
341 	    CAP_ACL_SET, CAP_READ, CAP_WRITE, CAP_SEEK, CAP_FSTAT,
342 	    CAP_CREATE, CAP_FCHMODAT, CAP_FCHOWNAT, CAP_FTRUNCATE,
343 	    CAP_LINKAT_SOURCE, CAP_LINKAT_TARGET, CAP_MKDIRAT, CAP_MKNODAT,
344 	    CAP_PREAD, CAP_PWRITE, CAP_RENAMEAT_SOURCE, CAP_RENAMEAT_TARGET,
345 	    CAP_SEEK, CAP_SYMLINKAT, CAP_UNLINKAT, CAP_EXTATTR_DELETE,
346 	    CAP_EXTATTR_GET, CAP_EXTATTR_LIST, CAP_EXTATTR_SET,
347 	    CAP_FUTIMES, CAP_FSTATFS, CAP_FSYNC, CAP_FPATHCONF);
348 
349 	if (cap_rights_limit(rootfd, &rootcap) != 0)
350 		return (1);
351 #endif
352 
353 	sc->vsc_config->tag_len = (uint16_t)strlen(sharename);
354 	memcpy(sc->vsc_config->tag, sharename, sc->vsc_config->tag_len);
355 
356 	if (l9p_backend_fs_init(&sc->vsc_fs_backend, rootfd, ro) != 0) {
357 		errno = ENXIO;
358 		return (1);
359 	}
360 
361 	if (l9p_server_init(&sc->vsc_server, sc->vsc_fs_backend) != 0) {
362 		errno = ENXIO;
363 		return (1);
364 	}
365 
366 	if (l9p_connection_init(sc->vsc_server, &sc->vsc_conn) != 0) {
367 		errno = EIO;
368 		return (1);
369 	}
370 
371 	sc->vsc_conn->lc_msize = L9P_MAX_IOV * PAGE_SIZE;
372 	sc->vsc_conn->lc_lt.lt_get_response_buffer = pci_vt9p_get_buffer;
373 	sc->vsc_conn->lc_lt.lt_send_response = pci_vt9p_send;
374 	sc->vsc_conn->lc_lt.lt_drop_response = pci_vt9p_drop;
375 
376 	vi_softc_linkup(&sc->vsc_vs, &vt9p_vi_consts, sc, pi, &sc->vsc_vq);
377 	sc->vsc_vs.vs_mtx = &sc->vsc_mtx;
378 	sc->vsc_vq.vq_qsize = VT9P_RINGSZ;
379 
380 	/* initialize config space */
381 	pci_set_cfgdata16(pi, PCIR_DEVICE, VIRTIO_DEV_9P);
382 	pci_set_cfgdata16(pi, PCIR_VENDOR, VIRTIO_VENDOR);
383 	pci_set_cfgdata8(pi, PCIR_CLASS, PCIC_STORAGE);
384 	pci_set_cfgdata16(pi, PCIR_SUBDEV_0, VIRTIO_ID_9P);
385 	pci_set_cfgdata16(pi, PCIR_SUBVEND_0, VIRTIO_VENDOR);
386 
387 	if (vi_intr_init(&sc->vsc_vs, 1, fbsdrun_virtio_msix()))
388 		return (1);
389 	vi_set_io_bar(&sc->vsc_vs, 0);
390 
391 	return (0);
392 }
393 
394 static const struct pci_devemu pci_de_v9p = {
395 	.pe_emu =	"virtio-9p",
396 	.pe_legacy_config = pci_vt9p_legacy_config,
397 	.pe_init =	pci_vt9p_init,
398 	.pe_barwrite =	vi_pci_write,
399 	.pe_barread =	vi_pci_read
400 };
401 PCI_EMUL_SET(pci_de_v9p);
402