xref: /freebsd/sys/dev/xen/privcmd/privcmd.c (revision 0012f373e43db2341c20329163ed2d5ad3b0f341)
1 /*
2  * Copyright (c) 2014 Roger Pau Monné <roger.pau@citrix.com>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/uio.h>
33 #include <sys/bus.h>
34 #include <sys/malloc.h>
35 #include <sys/kernel.h>
36 #include <sys/lock.h>
37 #include <sys/mutex.h>
38 #include <sys/rwlock.h>
39 #include <sys/selinfo.h>
40 #include <sys/poll.h>
41 #include <sys/conf.h>
42 #include <sys/fcntl.h>
43 #include <sys/ioccom.h>
44 #include <sys/rman.h>
45 #include <sys/tree.h>
46 #include <sys/module.h>
47 #include <sys/proc.h>
48 #include <sys/bitset.h>
49 
50 #include <vm/vm.h>
51 #include <vm/vm_param.h>
52 #include <vm/vm_extern.h>
53 #include <vm/vm_kern.h>
54 #include <vm/vm_page.h>
55 #include <vm/vm_map.h>
56 #include <vm/vm_object.h>
57 #include <vm/vm_pager.h>
58 
59 #include <machine/md_var.h>
60 
61 #include <xen/xen-os.h>
62 #include <xen/hypervisor.h>
63 #include <xen/privcmd.h>
64 #include <xen/error.h>
65 
66 MALLOC_DEFINE(M_PRIVCMD, "privcmd_dev", "Xen privcmd user-space device");
67 
68 struct privcmd_map {
69 	vm_object_t mem;
70 	vm_size_t size;
71 	struct resource *pseudo_phys_res;
72 	int pseudo_phys_res_id;
73 	vm_paddr_t phys_base_addr;
74 	boolean_t mapped;
75 	BITSET_DEFINE_VAR() *err;
76 };
77 
78 static d_ioctl_t     privcmd_ioctl;
79 static d_mmap_single_t	privcmd_mmap_single;
80 
81 static struct cdevsw privcmd_devsw = {
82 	.d_version = D_VERSION,
83 	.d_ioctl = privcmd_ioctl,
84 	.d_mmap_single = privcmd_mmap_single,
85 	.d_name = "privcmd",
86 };
87 
88 static int privcmd_pg_ctor(void *handle, vm_ooffset_t size, vm_prot_t prot,
89     vm_ooffset_t foff, struct ucred *cred, u_short *color);
90 static void privcmd_pg_dtor(void *handle);
91 static int privcmd_pg_fault(vm_object_t object, vm_ooffset_t offset,
92     int prot, vm_page_t *mres);
93 
94 static struct cdev_pager_ops privcmd_pg_ops = {
95 	.cdev_pg_fault = privcmd_pg_fault,
96 	.cdev_pg_ctor =	privcmd_pg_ctor,
97 	.cdev_pg_dtor =	privcmd_pg_dtor,
98 };
99 
100 static device_t privcmd_dev = NULL;
101 
102 /*------------------------- Privcmd Pager functions --------------------------*/
103 static int
104 privcmd_pg_ctor(void *handle, vm_ooffset_t size, vm_prot_t prot,
105     vm_ooffset_t foff, struct ucred *cred, u_short *color)
106 {
107 
108 	return (0);
109 }
110 
111 static void
112 privcmd_pg_dtor(void *handle)
113 {
114 	struct xen_remove_from_physmap rm = { .domid = DOMID_SELF };
115 	struct privcmd_map *map = handle;
116 	int error;
117 	vm_size_t i;
118 	vm_page_t m;
119 
120 	/*
121 	 * Remove the mappings from the used pages. This will remove the
122 	 * underlying p2m bindings in Xen second stage translation.
123 	 */
124 	if (map->mapped == true) {
125 		VM_OBJECT_WLOCK(map->mem);
126 retry:
127 		for (i = 0; i < map->size; i++) {
128 			m = vm_page_lookup(map->mem, i);
129 			if (m == NULL)
130 				continue;
131 			if (vm_page_busy_acquire(m, VM_ALLOC_WAITFAIL) == 0)
132 				goto retry;
133 			cdev_pager_free_page(map->mem, m);
134 		}
135 		VM_OBJECT_WUNLOCK(map->mem);
136 
137 		for (i = 0; i < map->size; i++) {
138 			rm.gpfn = atop(map->phys_base_addr) + i;
139 			HYPERVISOR_memory_op(XENMEM_remove_from_physmap, &rm);
140 		}
141 		free(map->err, M_PRIVCMD);
142 	}
143 
144 	error = xenmem_free(privcmd_dev, map->pseudo_phys_res_id,
145 	    map->pseudo_phys_res);
146 	KASSERT(error == 0, ("Unable to release memory resource: %d", error));
147 
148 	free(map, M_PRIVCMD);
149 }
150 
151 static int
152 privcmd_pg_fault(vm_object_t object, vm_ooffset_t offset,
153     int prot, vm_page_t *mres)
154 {
155 	struct privcmd_map *map = object->handle;
156 	vm_pindex_t pidx;
157 	vm_page_t page, oldm;
158 
159 	if (map->mapped != true)
160 		return (VM_PAGER_FAIL);
161 
162 	pidx = OFF_TO_IDX(offset);
163 	if (pidx >= map->size || BIT_ISSET(map->size, pidx, map->err))
164 		return (VM_PAGER_FAIL);
165 
166 	page = PHYS_TO_VM_PAGE(map->phys_base_addr + offset);
167 	if (page == NULL)
168 		return (VM_PAGER_FAIL);
169 
170 	KASSERT((page->flags & PG_FICTITIOUS) != 0,
171 	    ("not fictitious %p", page));
172 	KASSERT(vm_page_wired(page), ("page %p not wired", page));
173 	KASSERT(!vm_page_busied(page), ("page %p is busy", page));
174 
175 	if (*mres != NULL) {
176 		oldm = *mres;
177 		vm_page_free(oldm);
178 		*mres = NULL;
179 	}
180 
181 	vm_page_busy_acquire(page, 0);
182 	vm_page_valid(page);
183 	vm_page_insert(page, object, pidx);
184 	*mres = page;
185 	return (VM_PAGER_OK);
186 }
187 
188 /*----------------------- Privcmd char device methods ------------------------*/
189 static int
190 privcmd_mmap_single(struct cdev *cdev, vm_ooffset_t *offset, vm_size_t size,
191     vm_object_t *object, int nprot)
192 {
193 	struct privcmd_map *map;
194 
195 	map = malloc(sizeof(*map), M_PRIVCMD, M_WAITOK | M_ZERO);
196 
197 	map->size = OFF_TO_IDX(size);
198 	map->pseudo_phys_res_id = 0;
199 
200 	map->pseudo_phys_res = xenmem_alloc(privcmd_dev,
201 	    &map->pseudo_phys_res_id, size);
202 	if (map->pseudo_phys_res == NULL) {
203 		free(map, M_PRIVCMD);
204 		return (ENOMEM);
205 	}
206 
207 	map->phys_base_addr = rman_get_start(map->pseudo_phys_res);
208 	map->mem = cdev_pager_allocate(map, OBJT_MGTDEVICE, &privcmd_pg_ops,
209 	    size, nprot, *offset, NULL);
210 	if (map->mem == NULL) {
211 		xenmem_free(privcmd_dev, map->pseudo_phys_res_id,
212 		    map->pseudo_phys_res);
213 		free(map, M_PRIVCMD);
214 		return (ENOMEM);
215 	}
216 
217 	*object = map->mem;
218 
219 	return (0);
220 }
221 
222 static int
223 privcmd_ioctl(struct cdev *dev, unsigned long cmd, caddr_t arg,
224 	      int mode, struct thread *td)
225 {
226 	int error, i;
227 
228 	switch (cmd) {
229 	case IOCTL_PRIVCMD_HYPERCALL: {
230 		struct ioctl_privcmd_hypercall *hcall;
231 
232 		hcall = (struct ioctl_privcmd_hypercall *)arg;
233 #ifdef __amd64__
234 		/*
235 		 * The hypervisor page table walker will refuse to access
236 		 * user-space pages if SMAP is enabled, so temporary disable it
237 		 * while performing the hypercall.
238 		 */
239 		if (cpu_stdext_feature & CPUID_STDEXT_SMAP)
240 			stac();
241 #endif
242 		error = privcmd_hypercall(hcall->op, hcall->arg[0],
243 		    hcall->arg[1], hcall->arg[2], hcall->arg[3], hcall->arg[4]);
244 #ifdef __amd64__
245 		if (cpu_stdext_feature & CPUID_STDEXT_SMAP)
246 			clac();
247 #endif
248 		if (error >= 0) {
249 			hcall->retval = error;
250 			error = 0;
251 		} else {
252 			error = xen_translate_error(error);
253 			hcall->retval = 0;
254 		}
255 		break;
256 	}
257 	case IOCTL_PRIVCMD_MMAPBATCH: {
258 		struct ioctl_privcmd_mmapbatch *mmap;
259 		vm_map_t map;
260 		vm_map_entry_t entry;
261 		vm_object_t mem;
262 		vm_pindex_t pindex;
263 		vm_prot_t prot;
264 		boolean_t wired;
265 		struct xen_add_to_physmap_range add;
266 		xen_ulong_t *idxs;
267 		xen_pfn_t *gpfns;
268 		int *errs, index;
269 		struct privcmd_map *umap;
270 		uint16_t num;
271 
272 		mmap = (struct ioctl_privcmd_mmapbatch *)arg;
273 
274 		if ((mmap->num == 0) ||
275 		    ((mmap->addr & PAGE_MASK) != 0)) {
276 			error = EINVAL;
277 			break;
278 		}
279 
280 		map = &td->td_proc->p_vmspace->vm_map;
281 		error = vm_map_lookup(&map, mmap->addr, VM_PROT_NONE, &entry,
282 		    &mem, &pindex, &prot, &wired);
283 		if (error != KERN_SUCCESS) {
284 			error = EINVAL;
285 			break;
286 		}
287 		if ((entry->start != mmap->addr) ||
288 		    (entry->end != mmap->addr + (mmap->num * PAGE_SIZE))) {
289 			vm_map_lookup_done(map, entry);
290 			error = EINVAL;
291 			break;
292 		}
293 		vm_map_lookup_done(map, entry);
294 		if ((mem->type != OBJT_MGTDEVICE) ||
295 		    (mem->un_pager.devp.ops != &privcmd_pg_ops)) {
296 			error = EINVAL;
297 			break;
298 		}
299 		umap = mem->handle;
300 
301 		add.domid = DOMID_SELF;
302 		add.space = XENMAPSPACE_gmfn_foreign;
303 		add.foreign_domid = mmap->dom;
304 
305 		/*
306 		 * The 'size' field in the xen_add_to_physmap_range only
307 		 * allows for UINT16_MAX mappings in a single hypercall.
308 		 */
309 		num = MIN(mmap->num, UINT16_MAX);
310 
311 		idxs = malloc(sizeof(*idxs) * num, M_PRIVCMD, M_WAITOK);
312 		gpfns = malloc(sizeof(*gpfns) * num, M_PRIVCMD, M_WAITOK);
313 		errs = malloc(sizeof(*errs) * num, M_PRIVCMD, M_WAITOK);
314 
315 		set_xen_guest_handle(add.idxs, idxs);
316 		set_xen_guest_handle(add.gpfns, gpfns);
317 		set_xen_guest_handle(add.errs, errs);
318 
319 		/* Allocate a bitset to store broken page mappings. */
320 		umap->err = BITSET_ALLOC(mmap->num, M_PRIVCMD,
321 		    M_WAITOK | M_ZERO);
322 
323 		for (index = 0; index < mmap->num; index += num) {
324 			num = MIN(mmap->num - index, UINT16_MAX);
325 			add.size = num;
326 
327 			error = copyin(&mmap->arr[index], idxs,
328 			    sizeof(idxs[0]) * num);
329 			if (error != 0)
330 				goto mmap_out;
331 
332 			for (i = 0; i < num; i++)
333 				gpfns[i] = atop(umap->phys_base_addr +
334 				    (i + index) * PAGE_SIZE);
335 
336 			bzero(errs, sizeof(*errs) * num);
337 
338 			error = HYPERVISOR_memory_op(
339 			    XENMEM_add_to_physmap_range, &add);
340 			if (error != 0) {
341 				error = xen_translate_error(error);
342 				goto mmap_out;
343 			}
344 
345 			for (i = 0; i < num; i++) {
346 				if (errs[i] != 0) {
347 					errs[i] = xen_translate_error(errs[i]);
348 
349 					/* Mark the page as invalid. */
350 					BIT_SET(mmap->num, index + i,
351 					    umap->err);
352 				}
353 			}
354 
355 			error = copyout(errs, &mmap->err[index],
356 			    sizeof(errs[0]) * num);
357 			if (error != 0)
358 				goto mmap_out;
359 		}
360 
361 		umap->mapped = true;
362 
363 mmap_out:
364 		free(idxs, M_PRIVCMD);
365 		free(gpfns, M_PRIVCMD);
366 		free(errs, M_PRIVCMD);
367 		if (!umap->mapped)
368 			free(umap->err, M_PRIVCMD);
369 
370 		break;
371 	}
372 
373 	default:
374 		error = ENOSYS;
375 		break;
376 	}
377 
378 	return (error);
379 }
380 
381 /*------------------ Private Device Attachment Functions  --------------------*/
382 static void
383 privcmd_identify(driver_t *driver, device_t parent)
384 {
385 
386 	KASSERT(xen_domain(),
387 	    ("Trying to attach privcmd device on non Xen domain"));
388 
389 	if (BUS_ADD_CHILD(parent, 0, "privcmd", 0) == NULL)
390 		panic("unable to attach privcmd user-space device");
391 }
392 
393 static int
394 privcmd_probe(device_t dev)
395 {
396 
397 	privcmd_dev = dev;
398 	device_set_desc(dev, "Xen privileged interface user-space device");
399 	return (BUS_PROBE_NOWILDCARD);
400 }
401 
402 static int
403 privcmd_attach(device_t dev)
404 {
405 
406 	make_dev_credf(MAKEDEV_ETERNAL, &privcmd_devsw, 0, NULL, UID_ROOT,
407 	    GID_WHEEL, 0600, "xen/privcmd");
408 	return (0);
409 }
410 
411 /*-------------------- Private Device Attachment Data  -----------------------*/
412 static device_method_t privcmd_methods[] = {
413 	DEVMETHOD(device_identify,	privcmd_identify),
414 	DEVMETHOD(device_probe,		privcmd_probe),
415 	DEVMETHOD(device_attach,	privcmd_attach),
416 
417 	DEVMETHOD_END
418 };
419 
420 static driver_t privcmd_driver = {
421 	"privcmd",
422 	privcmd_methods,
423 	0,
424 };
425 
426 devclass_t privcmd_devclass;
427 
428 DRIVER_MODULE(privcmd, xenpv, privcmd_driver, privcmd_devclass, 0, 0);
429 MODULE_DEPEND(privcmd, xenpv, 1, 1, 1);
430