xref: /freebsd-12.1/sys/kern/uipc_shm.c (revision 5de05474)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2006, 2011, 2016-2017 Robert N. M. Watson
5  * All rights reserved.
6  *
7  * Portions of this software were developed by BAE Systems, the University of
8  * Cambridge Computer Laboratory, and Memorial University under DARPA/AFRL
9  * contract FA8650-15-C-7558 ("CADETS"), as part of the DARPA Transparent
10  * Computing (TC) research program.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 /*
35  * Support for shared swap-backed anonymous memory objects via
36  * shm_open(2) and shm_unlink(2).  While most of the implementation is
37  * here, vm_mmap.c contains mapping logic changes.
38  *
39  * posixshmcontrol(1) allows users to inspect the state of the memory
40  * objects.  Per-uid swap resource limit controls total amount of
41  * memory that user can consume for anonymous objects, including
42  * shared.
43  */
44 
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD$");
47 
48 #include "opt_capsicum.h"
49 #include "opt_ktrace.h"
50 
51 #include <sys/param.h>
52 #include <sys/capsicum.h>
53 #include <sys/conf.h>
54 #include <sys/fcntl.h>
55 #include <sys/file.h>
56 #include <sys/filedesc.h>
57 #include <sys/filio.h>
58 #include <sys/fnv_hash.h>
59 #include <sys/kernel.h>
60 #include <sys/limits.h>
61 #include <sys/uio.h>
62 #include <sys/signal.h>
63 #include <sys/jail.h>
64 #include <sys/ktrace.h>
65 #include <sys/lock.h>
66 #include <sys/malloc.h>
67 #include <sys/mman.h>
68 #include <sys/mutex.h>
69 #include <sys/priv.h>
70 #include <sys/proc.h>
71 #include <sys/refcount.h>
72 #include <sys/resourcevar.h>
73 #include <sys/rwlock.h>
74 #include <sys/sbuf.h>
75 #include <sys/stat.h>
76 #include <sys/syscallsubr.h>
77 #include <sys/sysctl.h>
78 #include <sys/sysproto.h>
79 #include <sys/systm.h>
80 #include <sys/sx.h>
81 #include <sys/time.h>
82 #include <sys/vnode.h>
83 #include <sys/unistd.h>
84 #include <sys/user.h>
85 
86 #include <security/audit/audit.h>
87 #include <security/mac/mac_framework.h>
88 
89 #include <vm/vm.h>
90 #include <vm/vm_param.h>
91 #include <vm/pmap.h>
92 #include <vm/vm_extern.h>
93 #include <vm/vm_map.h>
94 #include <vm/vm_kern.h>
95 #include <vm/vm_object.h>
96 #include <vm/vm_page.h>
97 #include <vm/vm_pageout.h>
98 #include <vm/vm_pager.h>
99 #include <vm/swap_pager.h>
100 
101 struct shm_mapping {
102 	char		*sm_path;
103 	Fnv32_t		sm_fnv;
104 	struct shmfd	*sm_shmfd;
105 	LIST_ENTRY(shm_mapping) sm_link;
106 };
107 
108 static MALLOC_DEFINE(M_SHMFD, "shmfd", "shared memory file descriptor");
109 static LIST_HEAD(, shm_mapping) *shm_dictionary;
110 static struct sx shm_dict_lock;
111 static struct mtx shm_timestamp_lock;
112 static u_long shm_hash;
113 static struct unrhdr64 shm_ino_unr;
114 static dev_t shm_dev_ino;
115 
116 #define	SHM_HASH(fnv)	(&shm_dictionary[(fnv) & shm_hash])
117 
118 static void	shm_init(void *arg);
119 static void	shm_insert(char *path, Fnv32_t fnv, struct shmfd *shmfd);
120 static struct shmfd *shm_lookup(char *path, Fnv32_t fnv);
121 static int	shm_remove(char *path, Fnv32_t fnv, struct ucred *ucred);
122 
123 static fo_rdwr_t	shm_read;
124 static fo_rdwr_t	shm_write;
125 static fo_truncate_t	shm_truncate;
126 static fo_ioctl_t	shm_ioctl;
127 static fo_stat_t	shm_stat;
128 static fo_close_t	shm_close;
129 static fo_chmod_t	shm_chmod;
130 static fo_chown_t	shm_chown;
131 static fo_seek_t	shm_seek;
132 static fo_fill_kinfo_t	shm_fill_kinfo;
133 static fo_mmap_t	shm_mmap;
134 
135 /* File descriptor operations. */
136 struct fileops shm_ops = {
137 	.fo_read = shm_read,
138 	.fo_write = shm_write,
139 	.fo_truncate = shm_truncate,
140 	.fo_ioctl = shm_ioctl,
141 	.fo_poll = invfo_poll,
142 	.fo_kqfilter = invfo_kqfilter,
143 	.fo_stat = shm_stat,
144 	.fo_close = shm_close,
145 	.fo_chmod = shm_chmod,
146 	.fo_chown = shm_chown,
147 	.fo_sendfile = vn_sendfile,
148 	.fo_seek = shm_seek,
149 	.fo_fill_kinfo = shm_fill_kinfo,
150 	.fo_mmap = shm_mmap,
151 	.fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE
152 };
153 
154 FEATURE(posix_shm, "POSIX shared memory");
155 
156 static int
uiomove_object_page(vm_object_t obj,size_t len,struct uio * uio)157 uiomove_object_page(vm_object_t obj, size_t len, struct uio *uio)
158 {
159 	vm_page_t m;
160 	vm_pindex_t idx;
161 	size_t tlen;
162 	int error, offset, rv;
163 
164 	idx = OFF_TO_IDX(uio->uio_offset);
165 	offset = uio->uio_offset & PAGE_MASK;
166 	tlen = MIN(PAGE_SIZE - offset, len);
167 
168 	VM_OBJECT_WLOCK(obj);
169 
170 	/*
171 	 * Read I/O without either a corresponding resident page or swap
172 	 * page: use zero_region.  This is intended to avoid instantiating
173 	 * pages on read from a sparse region.
174 	 */
175 	if (uio->uio_rw == UIO_READ && vm_page_lookup(obj, idx) == NULL &&
176 	    !vm_pager_has_page(obj, idx, NULL, NULL)) {
177 		VM_OBJECT_WUNLOCK(obj);
178 		return (uiomove(__DECONST(void *, zero_region), tlen, uio));
179 	}
180 
181 	/*
182 	 * Parallel reads of the page content from disk are prevented
183 	 * by exclusive busy.
184 	 *
185 	 * Although the tmpfs vnode lock is held here, it is
186 	 * nonetheless safe to sleep waiting for a free page.  The
187 	 * pageout daemon does not need to acquire the tmpfs vnode
188 	 * lock to page out tobj's pages because tobj is a OBJT_SWAP
189 	 * type object.
190 	 */
191 	m = vm_page_grab(obj, idx, VM_ALLOC_NORMAL | VM_ALLOC_NOBUSY);
192 	if (m->valid != VM_PAGE_BITS_ALL) {
193 		vm_page_xbusy(m);
194 		if (vm_pager_has_page(obj, idx, NULL, NULL)) {
195 			rv = vm_pager_get_pages(obj, &m, 1, NULL, NULL);
196 			if (rv != VM_PAGER_OK) {
197 				printf(
198 	    "uiomove_object: vm_obj %p idx %jd valid %x pager error %d\n",
199 				    obj, idx, m->valid, rv);
200 				vm_page_lock(m);
201 				vm_page_free(m);
202 				vm_page_unlock(m);
203 				VM_OBJECT_WUNLOCK(obj);
204 				return (EIO);
205 			}
206 		} else
207 			vm_page_zero_invalid(m, TRUE);
208 		vm_page_xunbusy(m);
209 	}
210 	vm_page_lock(m);
211 	vm_page_hold(m);
212 	if (vm_page_active(m))
213 		vm_page_reference(m);
214 	else
215 		vm_page_activate(m);
216 	vm_page_unlock(m);
217 	VM_OBJECT_WUNLOCK(obj);
218 	error = uiomove_fromphys(&m, offset, tlen, uio);
219 	if (uio->uio_rw == UIO_WRITE && error == 0) {
220 		VM_OBJECT_WLOCK(obj);
221 		vm_page_dirty(m);
222 		vm_pager_page_unswapped(m);
223 		VM_OBJECT_WUNLOCK(obj);
224 	}
225 	vm_page_lock(m);
226 	vm_page_unhold(m);
227 	vm_page_unlock(m);
228 
229 	return (error);
230 }
231 
232 int
uiomove_object(vm_object_t obj,off_t obj_size,struct uio * uio)233 uiomove_object(vm_object_t obj, off_t obj_size, struct uio *uio)
234 {
235 	ssize_t resid;
236 	size_t len;
237 	int error;
238 
239 	error = 0;
240 	while ((resid = uio->uio_resid) > 0) {
241 		if (obj_size <= uio->uio_offset)
242 			break;
243 		len = MIN(obj_size - uio->uio_offset, resid);
244 		if (len == 0)
245 			break;
246 		error = uiomove_object_page(obj, len, uio);
247 		if (error != 0 || resid == uio->uio_resid)
248 			break;
249 	}
250 	return (error);
251 }
252 
253 static int
shm_seek(struct file * fp,off_t offset,int whence,struct thread * td)254 shm_seek(struct file *fp, off_t offset, int whence, struct thread *td)
255 {
256 	struct shmfd *shmfd;
257 	off_t foffset;
258 	int error;
259 
260 	shmfd = fp->f_data;
261 	foffset = foffset_lock(fp, 0);
262 	error = 0;
263 	switch (whence) {
264 	case L_INCR:
265 		if (foffset < 0 ||
266 		    (offset > 0 && foffset > OFF_MAX - offset)) {
267 			error = EOVERFLOW;
268 			break;
269 		}
270 		offset += foffset;
271 		break;
272 	case L_XTND:
273 		if (offset > 0 && shmfd->shm_size > OFF_MAX - offset) {
274 			error = EOVERFLOW;
275 			break;
276 		}
277 		offset += shmfd->shm_size;
278 		break;
279 	case L_SET:
280 		break;
281 	default:
282 		error = EINVAL;
283 	}
284 	if (error == 0) {
285 		if (offset < 0 || offset > shmfd->shm_size)
286 			error = EINVAL;
287 		else
288 			td->td_uretoff.tdu_off = offset;
289 	}
290 	foffset_unlock(fp, offset, error != 0 ? FOF_NOUPDATE : 0);
291 	return (error);
292 }
293 
294 static int
shm_read(struct file * fp,struct uio * uio,struct ucred * active_cred,int flags,struct thread * td)295 shm_read(struct file *fp, struct uio *uio, struct ucred *active_cred,
296     int flags, struct thread *td)
297 {
298 	struct shmfd *shmfd;
299 	void *rl_cookie;
300 	int error;
301 
302 	shmfd = fp->f_data;
303 #ifdef MAC
304 	error = mac_posixshm_check_read(active_cred, fp->f_cred, shmfd);
305 	if (error)
306 		return (error);
307 #endif
308 	foffset_lock_uio(fp, uio, flags);
309 	rl_cookie = rangelock_rlock(&shmfd->shm_rl, uio->uio_offset,
310 	    uio->uio_offset + uio->uio_resid, &shmfd->shm_mtx);
311 	error = uiomove_object(shmfd->shm_object, shmfd->shm_size, uio);
312 	rangelock_unlock(&shmfd->shm_rl, rl_cookie, &shmfd->shm_mtx);
313 	foffset_unlock_uio(fp, uio, flags);
314 	return (error);
315 }
316 
317 static int
shm_write(struct file * fp,struct uio * uio,struct ucred * active_cred,int flags,struct thread * td)318 shm_write(struct file *fp, struct uio *uio, struct ucred *active_cred,
319     int flags, struct thread *td)
320 {
321 	struct shmfd *shmfd;
322 	void *rl_cookie;
323 	int error;
324 
325 	shmfd = fp->f_data;
326 #ifdef MAC
327 	error = mac_posixshm_check_write(active_cred, fp->f_cred, shmfd);
328 	if (error)
329 		return (error);
330 #endif
331 	foffset_lock_uio(fp, uio, flags);
332 	if ((flags & FOF_OFFSET) == 0) {
333 		rl_cookie = rangelock_wlock(&shmfd->shm_rl, 0, OFF_MAX,
334 		    &shmfd->shm_mtx);
335 	} else {
336 		rl_cookie = rangelock_wlock(&shmfd->shm_rl, uio->uio_offset,
337 		    uio->uio_offset + uio->uio_resid, &shmfd->shm_mtx);
338 	}
339 
340 	error = uiomove_object(shmfd->shm_object, shmfd->shm_size, uio);
341 	rangelock_unlock(&shmfd->shm_rl, rl_cookie, &shmfd->shm_mtx);
342 	foffset_unlock_uio(fp, uio, flags);
343 	return (error);
344 }
345 
346 static int
shm_truncate(struct file * fp,off_t length,struct ucred * active_cred,struct thread * td)347 shm_truncate(struct file *fp, off_t length, struct ucred *active_cred,
348     struct thread *td)
349 {
350 	struct shmfd *shmfd;
351 #ifdef MAC
352 	int error;
353 #endif
354 
355 	shmfd = fp->f_data;
356 #ifdef MAC
357 	error = mac_posixshm_check_truncate(active_cred, fp->f_cred, shmfd);
358 	if (error)
359 		return (error);
360 #endif
361 	return (shm_dotruncate(shmfd, length));
362 }
363 
364 int
shm_ioctl(struct file * fp,u_long com,void * data,struct ucred * active_cred,struct thread * td)365 shm_ioctl(struct file *fp, u_long com, void *data, struct ucred *active_cred,
366     struct thread *td)
367 {
368 
369 	switch (com) {
370 	case FIONBIO:
371 	case FIOASYNC:
372 		/*
373 		 * Allow fcntl(fd, F_SETFL, O_NONBLOCK) to work,
374 		 * just like it would on an unlinked regular file
375 		 */
376 		return (0);
377 	default:
378 		return (ENOTTY);
379 	}
380 }
381 
382 static int
shm_stat(struct file * fp,struct stat * sb,struct ucred * active_cred,struct thread * td)383 shm_stat(struct file *fp, struct stat *sb, struct ucred *active_cred,
384     struct thread *td)
385 {
386 	struct shmfd *shmfd;
387 #ifdef MAC
388 	int error;
389 #endif
390 
391 	shmfd = fp->f_data;
392 
393 #ifdef MAC
394 	error = mac_posixshm_check_stat(active_cred, fp->f_cred, shmfd);
395 	if (error)
396 		return (error);
397 #endif
398 
399 	/*
400 	 * Attempt to return sanish values for fstat() on a memory file
401 	 * descriptor.
402 	 */
403 	bzero(sb, sizeof(*sb));
404 	sb->st_blksize = PAGE_SIZE;
405 	sb->st_size = shmfd->shm_size;
406 	sb->st_blocks = howmany(sb->st_size, sb->st_blksize);
407 	mtx_lock(&shm_timestamp_lock);
408 	sb->st_atim = shmfd->shm_atime;
409 	sb->st_ctim = shmfd->shm_ctime;
410 	sb->st_mtim = shmfd->shm_mtime;
411 	sb->st_birthtim = shmfd->shm_birthtime;
412 	sb->st_mode = S_IFREG | shmfd->shm_mode;		/* XXX */
413 	sb->st_uid = shmfd->shm_uid;
414 	sb->st_gid = shmfd->shm_gid;
415 	mtx_unlock(&shm_timestamp_lock);
416 	sb->st_dev = shm_dev_ino;
417 	sb->st_ino = shmfd->shm_ino;
418 	sb->st_nlink = shmfd->shm_object->ref_count;
419 
420 	return (0);
421 }
422 
423 static int
shm_close(struct file * fp,struct thread * td)424 shm_close(struct file *fp, struct thread *td)
425 {
426 	struct shmfd *shmfd;
427 
428 	shmfd = fp->f_data;
429 	fp->f_data = NULL;
430 	shm_drop(shmfd);
431 
432 	return (0);
433 }
434 
435 int
shm_dotruncate(struct shmfd * shmfd,off_t length)436 shm_dotruncate(struct shmfd *shmfd, off_t length)
437 {
438 	vm_object_t object;
439 	vm_page_t m;
440 	vm_pindex_t idx, nobjsize;
441 	vm_ooffset_t delta;
442 	int base, rv;
443 
444 	KASSERT(length >= 0, ("shm_dotruncate: length < 0"));
445 	object = shmfd->shm_object;
446 	VM_OBJECT_WLOCK(object);
447 	if (length == shmfd->shm_size) {
448 		VM_OBJECT_WUNLOCK(object);
449 		return (0);
450 	}
451 	nobjsize = OFF_TO_IDX(length + PAGE_MASK);
452 
453 	/* Are we shrinking?  If so, trim the end. */
454 	if (length < shmfd->shm_size) {
455 		/*
456 		 * Disallow any requests to shrink the size if this
457 		 * object is mapped into the kernel.
458 		 */
459 		if (shmfd->shm_kmappings > 0) {
460 			VM_OBJECT_WUNLOCK(object);
461 			return (EBUSY);
462 		}
463 
464 		/*
465 		 * Zero the truncated part of the last page.
466 		 */
467 		base = length & PAGE_MASK;
468 		if (base != 0) {
469 			idx = OFF_TO_IDX(length);
470 retry:
471 			m = vm_page_lookup(object, idx);
472 			if (m != NULL) {
473 				if (vm_page_sleep_if_busy(m, "shmtrc"))
474 					goto retry;
475 			} else if (vm_pager_has_page(object, idx, NULL, NULL)) {
476 				m = vm_page_alloc(object, idx,
477 				    VM_ALLOC_NORMAL | VM_ALLOC_WAITFAIL);
478 				if (m == NULL)
479 					goto retry;
480 				rv = vm_pager_get_pages(object, &m, 1, NULL,
481 				    NULL);
482 				vm_page_lock(m);
483 				if (rv == VM_PAGER_OK) {
484 					/*
485 					 * Since the page was not resident,
486 					 * and therefore not recently
487 					 * accessed, immediately enqueue it
488 					 * for asynchronous laundering.  The
489 					 * current operation is not regarded
490 					 * as an access.
491 					 */
492 					vm_page_launder(m);
493 					vm_page_unlock(m);
494 					vm_page_xunbusy(m);
495 				} else {
496 					vm_page_free(m);
497 					vm_page_unlock(m);
498 					VM_OBJECT_WUNLOCK(object);
499 					return (EIO);
500 				}
501 			}
502 			if (m != NULL) {
503 				pmap_zero_page_area(m, base, PAGE_SIZE - base);
504 				KASSERT(m->valid == VM_PAGE_BITS_ALL,
505 				    ("shm_dotruncate: page %p is invalid", m));
506 				vm_page_dirty(m);
507 				vm_pager_page_unswapped(m);
508 			}
509 		}
510 		delta = IDX_TO_OFF(object->size - nobjsize);
511 
512 		/* Toss in memory pages. */
513 		if (nobjsize < object->size)
514 			vm_object_page_remove(object, nobjsize, object->size,
515 			    0);
516 
517 		/* Toss pages from swap. */
518 		if (object->type == OBJT_SWAP)
519 			swap_pager_freespace(object, nobjsize, delta);
520 
521 		/* Free the swap accounted for shm */
522 		swap_release_by_cred(delta, object->cred);
523 		object->charge -= delta;
524 	} else {
525 		/* Try to reserve additional swap space. */
526 		delta = IDX_TO_OFF(nobjsize - object->size);
527 		if (!swap_reserve_by_cred(delta, object->cred)) {
528 			VM_OBJECT_WUNLOCK(object);
529 			return (ENOMEM);
530 		}
531 		object->charge += delta;
532 	}
533 	shmfd->shm_size = length;
534 	mtx_lock(&shm_timestamp_lock);
535 	vfs_timestamp(&shmfd->shm_ctime);
536 	shmfd->shm_mtime = shmfd->shm_ctime;
537 	mtx_unlock(&shm_timestamp_lock);
538 	object->size = nobjsize;
539 	VM_OBJECT_WUNLOCK(object);
540 	return (0);
541 }
542 
543 /*
544  * shmfd object management including creation and reference counting
545  * routines.
546  */
547 struct shmfd *
shm_alloc(struct ucred * ucred,mode_t mode)548 shm_alloc(struct ucred *ucred, mode_t mode)
549 {
550 	struct shmfd *shmfd;
551 
552 	shmfd = malloc(sizeof(*shmfd), M_SHMFD, M_WAITOK | M_ZERO);
553 	shmfd->shm_size = 0;
554 	shmfd->shm_uid = ucred->cr_uid;
555 	shmfd->shm_gid = ucred->cr_gid;
556 	shmfd->shm_mode = mode;
557 	shmfd->shm_object = vm_pager_allocate(OBJT_DEFAULT, NULL,
558 	    shmfd->shm_size, VM_PROT_DEFAULT, 0, ucred);
559 	KASSERT(shmfd->shm_object != NULL, ("shm_create: vm_pager_allocate"));
560 	shmfd->shm_object->pg_color = 0;
561 	VM_OBJECT_WLOCK(shmfd->shm_object);
562 	vm_object_clear_flag(shmfd->shm_object, OBJ_ONEMAPPING);
563 	vm_object_set_flag(shmfd->shm_object, OBJ_COLORED | OBJ_NOSPLIT);
564 	VM_OBJECT_WUNLOCK(shmfd->shm_object);
565 	vfs_timestamp(&shmfd->shm_birthtime);
566 	shmfd->shm_atime = shmfd->shm_mtime = shmfd->shm_ctime =
567 	    shmfd->shm_birthtime;
568 	shmfd->shm_ino = alloc_unr64(&shm_ino_unr);
569 	refcount_init(&shmfd->shm_refs, 1);
570 	mtx_init(&shmfd->shm_mtx, "shmrl", NULL, MTX_DEF);
571 	rangelock_init(&shmfd->shm_rl);
572 #ifdef MAC
573 	mac_posixshm_init(shmfd);
574 	mac_posixshm_create(ucred, shmfd);
575 #endif
576 
577 	return (shmfd);
578 }
579 
580 struct shmfd *
shm_hold(struct shmfd * shmfd)581 shm_hold(struct shmfd *shmfd)
582 {
583 
584 	refcount_acquire(&shmfd->shm_refs);
585 	return (shmfd);
586 }
587 
588 void
shm_drop(struct shmfd * shmfd)589 shm_drop(struct shmfd *shmfd)
590 {
591 
592 	if (refcount_release(&shmfd->shm_refs)) {
593 #ifdef MAC
594 		mac_posixshm_destroy(shmfd);
595 #endif
596 		rangelock_destroy(&shmfd->shm_rl);
597 		mtx_destroy(&shmfd->shm_mtx);
598 		vm_object_deallocate(shmfd->shm_object);
599 		free(shmfd, M_SHMFD);
600 	}
601 }
602 
603 /*
604  * Determine if the credentials have sufficient permissions for a
605  * specified combination of FREAD and FWRITE.
606  */
607 int
shm_access(struct shmfd * shmfd,struct ucred * ucred,int flags)608 shm_access(struct shmfd *shmfd, struct ucred *ucred, int flags)
609 {
610 	accmode_t accmode;
611 	int error;
612 
613 	accmode = 0;
614 	if (flags & FREAD)
615 		accmode |= VREAD;
616 	if (flags & FWRITE)
617 		accmode |= VWRITE;
618 	mtx_lock(&shm_timestamp_lock);
619 	error = vaccess(VREG, shmfd->shm_mode, shmfd->shm_uid, shmfd->shm_gid,
620 	    accmode, ucred, NULL);
621 	mtx_unlock(&shm_timestamp_lock);
622 	return (error);
623 }
624 
625 /*
626  * Dictionary management.  We maintain an in-kernel dictionary to map
627  * paths to shmfd objects.  We use the FNV hash on the path to store
628  * the mappings in a hash table.
629  */
630 static void
shm_init(void * arg)631 shm_init(void *arg)
632 {
633 
634 	mtx_init(&shm_timestamp_lock, "shm timestamps", NULL, MTX_DEF);
635 	sx_init(&shm_dict_lock, "shm dictionary");
636 	shm_dictionary = hashinit(1024, M_SHMFD, &shm_hash);
637 	new_unrhdr64(&shm_ino_unr, 1);
638 	shm_dev_ino = devfs_alloc_cdp_inode();
639 	KASSERT(shm_dev_ino > 0, ("shm dev inode not initialized"));
640 }
641 SYSINIT(shm_init, SI_SUB_SYSV_SHM, SI_ORDER_ANY, shm_init, NULL);
642 
643 static struct shmfd *
shm_lookup(char * path,Fnv32_t fnv)644 shm_lookup(char *path, Fnv32_t fnv)
645 {
646 	struct shm_mapping *map;
647 
648 	LIST_FOREACH(map, SHM_HASH(fnv), sm_link) {
649 		if (map->sm_fnv != fnv)
650 			continue;
651 		if (strcmp(map->sm_path, path) == 0)
652 			return (map->sm_shmfd);
653 	}
654 
655 	return (NULL);
656 }
657 
658 static void
shm_insert(char * path,Fnv32_t fnv,struct shmfd * shmfd)659 shm_insert(char *path, Fnv32_t fnv, struct shmfd *shmfd)
660 {
661 	struct shm_mapping *map;
662 
663 	map = malloc(sizeof(struct shm_mapping), M_SHMFD, M_WAITOK);
664 	map->sm_path = path;
665 	map->sm_fnv = fnv;
666 	map->sm_shmfd = shm_hold(shmfd);
667 	shmfd->shm_path = path;
668 	LIST_INSERT_HEAD(SHM_HASH(fnv), map, sm_link);
669 }
670 
671 static int
shm_remove(char * path,Fnv32_t fnv,struct ucred * ucred)672 shm_remove(char *path, Fnv32_t fnv, struct ucred *ucred)
673 {
674 	struct shm_mapping *map;
675 	int error;
676 
677 	LIST_FOREACH(map, SHM_HASH(fnv), sm_link) {
678 		if (map->sm_fnv != fnv)
679 			continue;
680 		if (strcmp(map->sm_path, path) == 0) {
681 #ifdef MAC
682 			error = mac_posixshm_check_unlink(ucred, map->sm_shmfd);
683 			if (error)
684 				return (error);
685 #endif
686 			error = shm_access(map->sm_shmfd, ucred,
687 			    FREAD | FWRITE);
688 			if (error)
689 				return (error);
690 			map->sm_shmfd->shm_path = NULL;
691 			LIST_REMOVE(map, sm_link);
692 			shm_drop(map->sm_shmfd);
693 			free(map->sm_path, M_SHMFD);
694 			free(map, M_SHMFD);
695 			return (0);
696 		}
697 	}
698 
699 	return (ENOENT);
700 }
701 
702 int
kern_shm_open(struct thread * td,const char * userpath,int flags,mode_t mode,struct filecaps * fcaps)703 kern_shm_open(struct thread *td, const char *userpath, int flags, mode_t mode,
704     struct filecaps *fcaps)
705 {
706 	struct filedesc *fdp;
707 	struct shmfd *shmfd;
708 	struct file *fp;
709 	char *path;
710 	const char *pr_path;
711 	size_t pr_pathlen;
712 	Fnv32_t fnv;
713 	mode_t cmode;
714 	int fd, error;
715 
716 #ifdef CAPABILITY_MODE
717 	/*
718 	 * shm_open(2) is only allowed for anonymous objects.
719 	 */
720 	if (IN_CAPABILITY_MODE(td) && (userpath != SHM_ANON))
721 		return (ECAPMODE);
722 #endif
723 
724 	AUDIT_ARG_FFLAGS(flags);
725 	AUDIT_ARG_MODE(mode);
726 
727 	if ((flags & O_ACCMODE) != O_RDONLY && (flags & O_ACCMODE) != O_RDWR)
728 		return (EINVAL);
729 
730 	if ((flags & ~(O_ACCMODE | O_CREAT | O_EXCL | O_TRUNC | O_CLOEXEC)) != 0)
731 		return (EINVAL);
732 
733 	fdp = td->td_proc->p_fd;
734 	cmode = (mode & ~fdp->fd_cmask) & ACCESSPERMS;
735 
736 	/*
737 	 * shm_open(2) created shm should always have O_CLOEXEC set, as mandated
738 	 * by POSIX.  We allow it to be unset here so that an in-kernel
739 	 * interface may be written as a thin layer around shm, optionally not
740 	 * setting CLOEXEC.  For shm_open(2), O_CLOEXEC is set unconditionally
741 	 * in sys_shm_open() to keep this implementation compliant.
742 	 */
743 	error = falloc_caps(td, &fp, &fd, flags & O_CLOEXEC, fcaps);
744 	if (error)
745 		return (error);
746 
747 	/* A SHM_ANON path pointer creates an anonymous object. */
748 	if (userpath == SHM_ANON) {
749 		/* A read-only anonymous object is pointless. */
750 		if ((flags & O_ACCMODE) == O_RDONLY) {
751 			fdclose(td, fp, fd);
752 			fdrop(fp, td);
753 			return (EINVAL);
754 		}
755 		shmfd = shm_alloc(td->td_ucred, cmode);
756 	} else {
757 		path = malloc(MAXPATHLEN, M_SHMFD, M_WAITOK);
758 		pr_path = td->td_ucred->cr_prison->pr_path;
759 
760 		/* Construct a full pathname for jailed callers. */
761 		pr_pathlen = strcmp(pr_path, "/") == 0 ? 0
762 		    : strlcpy(path, pr_path, MAXPATHLEN);
763 		error = copyinstr(userpath, path + pr_pathlen,
764 		    MAXPATHLEN - pr_pathlen, NULL);
765 #ifdef KTRACE
766 		if (error == 0 && KTRPOINT(curthread, KTR_NAMEI))
767 			ktrnamei(path);
768 #endif
769 		/* Require paths to start with a '/' character. */
770 		if (error == 0 && path[pr_pathlen] != '/')
771 			error = EINVAL;
772 		if (error) {
773 			fdclose(td, fp, fd);
774 			fdrop(fp, td);
775 			free(path, M_SHMFD);
776 			return (error);
777 		}
778 
779 		AUDIT_ARG_UPATH1_CANON(path);
780 		fnv = fnv_32_str(path, FNV1_32_INIT);
781 		sx_xlock(&shm_dict_lock);
782 		shmfd = shm_lookup(path, fnv);
783 		if (shmfd == NULL) {
784 			/* Object does not yet exist, create it if requested. */
785 			if (flags & O_CREAT) {
786 #ifdef MAC
787 				error = mac_posixshm_check_create(td->td_ucred,
788 				    path);
789 				if (error == 0) {
790 #endif
791 					shmfd = shm_alloc(td->td_ucred, cmode);
792 					shm_insert(path, fnv, shmfd);
793 #ifdef MAC
794 				}
795 #endif
796 			} else {
797 				free(path, M_SHMFD);
798 				error = ENOENT;
799 			}
800 		} else {
801 			/*
802 			 * Object already exists, obtain a new
803 			 * reference if requested and permitted.
804 			 */
805 			free(path, M_SHMFD);
806 			if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
807 				error = EEXIST;
808 			else {
809 #ifdef MAC
810 				error = mac_posixshm_check_open(td->td_ucred,
811 				    shmfd, FFLAGS(flags & O_ACCMODE));
812 				if (error == 0)
813 #endif
814 				error = shm_access(shmfd, td->td_ucred,
815 				    FFLAGS(flags & O_ACCMODE));
816 			}
817 
818 			/*
819 			 * Truncate the file back to zero length if
820 			 * O_TRUNC was specified and the object was
821 			 * opened with read/write.
822 			 */
823 			if (error == 0 &&
824 			    (flags & (O_ACCMODE | O_TRUNC)) ==
825 			    (O_RDWR | O_TRUNC)) {
826 #ifdef MAC
827 				error = mac_posixshm_check_truncate(
828 					td->td_ucred, fp->f_cred, shmfd);
829 				if (error == 0)
830 #endif
831 					shm_dotruncate(shmfd, 0);
832 			}
833 			if (error == 0)
834 				shm_hold(shmfd);
835 		}
836 		sx_xunlock(&shm_dict_lock);
837 
838 		if (error) {
839 			fdclose(td, fp, fd);
840 			fdrop(fp, td);
841 			return (error);
842 		}
843 	}
844 
845 	finit(fp, FFLAGS(flags & O_ACCMODE), DTYPE_SHM, shmfd, &shm_ops);
846 
847 	td->td_retval[0] = fd;
848 	fdrop(fp, td);
849 
850 	return (0);
851 }
852 
853 /* System calls. */
854 int
sys_shm_open(struct thread * td,struct shm_open_args * uap)855 sys_shm_open(struct thread *td, struct shm_open_args *uap)
856 {
857 
858 	return (kern_shm_open(td, uap->path, uap->flags | O_CLOEXEC, uap->mode,
859 	    NULL));
860 }
861 
862 int
sys_shm_unlink(struct thread * td,struct shm_unlink_args * uap)863 sys_shm_unlink(struct thread *td, struct shm_unlink_args *uap)
864 {
865 	char *path;
866 	const char *pr_path;
867 	size_t pr_pathlen;
868 	Fnv32_t fnv;
869 	int error;
870 
871 	path = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
872 	pr_path = td->td_ucred->cr_prison->pr_path;
873 	pr_pathlen = strcmp(pr_path, "/") == 0 ? 0
874 	    : strlcpy(path, pr_path, MAXPATHLEN);
875 	error = copyinstr(uap->path, path + pr_pathlen, MAXPATHLEN - pr_pathlen,
876 	    NULL);
877 	if (error) {
878 		free(path, M_TEMP);
879 		return (error);
880 	}
881 #ifdef KTRACE
882 	if (KTRPOINT(curthread, KTR_NAMEI))
883 		ktrnamei(path);
884 #endif
885 	AUDIT_ARG_UPATH1_CANON(path);
886 	fnv = fnv_32_str(path, FNV1_32_INIT);
887 	sx_xlock(&shm_dict_lock);
888 	error = shm_remove(path, fnv, td->td_ucred);
889 	sx_xunlock(&shm_dict_lock);
890 	free(path, M_TEMP);
891 
892 	return (error);
893 }
894 
895 int
shm_mmap(struct file * fp,vm_map_t map,vm_offset_t * addr,vm_size_t objsize,vm_prot_t prot,vm_prot_t cap_maxprot,int flags,vm_ooffset_t foff,struct thread * td)896 shm_mmap(struct file *fp, vm_map_t map, vm_offset_t *addr, vm_size_t objsize,
897     vm_prot_t prot, vm_prot_t cap_maxprot, int flags,
898     vm_ooffset_t foff, struct thread *td)
899 {
900 	struct shmfd *shmfd;
901 	vm_prot_t maxprot;
902 	int error;
903 
904 	shmfd = fp->f_data;
905 	maxprot = VM_PROT_NONE;
906 
907 	/* FREAD should always be set. */
908 	if ((fp->f_flag & FREAD) != 0)
909 		maxprot |= VM_PROT_EXECUTE | VM_PROT_READ;
910 	if ((fp->f_flag & FWRITE) != 0)
911 		maxprot |= VM_PROT_WRITE;
912 
913 	/* Don't permit shared writable mappings on read-only descriptors. */
914 	if ((flags & MAP_SHARED) != 0 &&
915 	    (maxprot & VM_PROT_WRITE) == 0 &&
916 	    (prot & VM_PROT_WRITE) != 0)
917 		return (EACCES);
918 	maxprot &= cap_maxprot;
919 
920 	/* See comment in vn_mmap(). */
921 	if (
922 #ifdef _LP64
923 	    objsize > OFF_MAX ||
924 #endif
925 	    foff < 0 || foff > OFF_MAX - objsize)
926 		return (EINVAL);
927 
928 #ifdef MAC
929 	error = mac_posixshm_check_mmap(td->td_ucred, shmfd, prot, flags);
930 	if (error != 0)
931 		return (error);
932 #endif
933 
934 	mtx_lock(&shm_timestamp_lock);
935 	vfs_timestamp(&shmfd->shm_atime);
936 	mtx_unlock(&shm_timestamp_lock);
937 	vm_object_reference(shmfd->shm_object);
938 
939 	error = vm_mmap_object(map, addr, objsize, prot, maxprot, flags,
940 	    shmfd->shm_object, foff, FALSE, td);
941 	if (error != 0)
942 		vm_object_deallocate(shmfd->shm_object);
943 	return (error);
944 }
945 
946 static int
shm_chmod(struct file * fp,mode_t mode,struct ucred * active_cred,struct thread * td)947 shm_chmod(struct file *fp, mode_t mode, struct ucred *active_cred,
948     struct thread *td)
949 {
950 	struct shmfd *shmfd;
951 	int error;
952 
953 	error = 0;
954 	shmfd = fp->f_data;
955 	mtx_lock(&shm_timestamp_lock);
956 	/*
957 	 * SUSv4 says that x bits of permission need not be affected.
958 	 * Be consistent with our shm_open there.
959 	 */
960 #ifdef MAC
961 	error = mac_posixshm_check_setmode(active_cred, shmfd, mode);
962 	if (error != 0)
963 		goto out;
964 #endif
965 	error = vaccess(VREG, shmfd->shm_mode, shmfd->shm_uid,
966 	    shmfd->shm_gid, VADMIN, active_cred, NULL);
967 	if (error != 0)
968 		goto out;
969 	shmfd->shm_mode = mode & ACCESSPERMS;
970 out:
971 	mtx_unlock(&shm_timestamp_lock);
972 	return (error);
973 }
974 
975 static int
shm_chown(struct file * fp,uid_t uid,gid_t gid,struct ucred * active_cred,struct thread * td)976 shm_chown(struct file *fp, uid_t uid, gid_t gid, struct ucred *active_cred,
977     struct thread *td)
978 {
979 	struct shmfd *shmfd;
980 	int error;
981 
982 	error = 0;
983 	shmfd = fp->f_data;
984 	mtx_lock(&shm_timestamp_lock);
985 #ifdef MAC
986 	error = mac_posixshm_check_setowner(active_cred, shmfd, uid, gid);
987 	if (error != 0)
988 		goto out;
989 #endif
990 	if (uid == (uid_t)-1)
991 		uid = shmfd->shm_uid;
992 	if (gid == (gid_t)-1)
993                  gid = shmfd->shm_gid;
994 	if (((uid != shmfd->shm_uid && uid != active_cred->cr_uid) ||
995 	    (gid != shmfd->shm_gid && !groupmember(gid, active_cred))) &&
996 	    (error = priv_check_cred(active_cred, PRIV_VFS_CHOWN, 0)))
997 		goto out;
998 	shmfd->shm_uid = uid;
999 	shmfd->shm_gid = gid;
1000 out:
1001 	mtx_unlock(&shm_timestamp_lock);
1002 	return (error);
1003 }
1004 
1005 /*
1006  * Helper routines to allow the backing object of a shared memory file
1007  * descriptor to be mapped in the kernel.
1008  */
1009 int
shm_map(struct file * fp,size_t size,off_t offset,void ** memp)1010 shm_map(struct file *fp, size_t size, off_t offset, void **memp)
1011 {
1012 	struct shmfd *shmfd;
1013 	vm_offset_t kva, ofs;
1014 	vm_object_t obj;
1015 	int rv;
1016 
1017 	if (fp->f_type != DTYPE_SHM)
1018 		return (EINVAL);
1019 	shmfd = fp->f_data;
1020 	obj = shmfd->shm_object;
1021 	VM_OBJECT_WLOCK(obj);
1022 	/*
1023 	 * XXXRW: This validation is probably insufficient, and subject to
1024 	 * sign errors.  It should be fixed.
1025 	 */
1026 	if (offset >= shmfd->shm_size ||
1027 	    offset + size > round_page(shmfd->shm_size)) {
1028 		VM_OBJECT_WUNLOCK(obj);
1029 		return (EINVAL);
1030 	}
1031 
1032 	shmfd->shm_kmappings++;
1033 	vm_object_reference_locked(obj);
1034 	VM_OBJECT_WUNLOCK(obj);
1035 
1036 	/* Map the object into the kernel_map and wire it. */
1037 	kva = vm_map_min(kernel_map);
1038 	ofs = offset & PAGE_MASK;
1039 	offset = trunc_page(offset);
1040 	size = round_page(size + ofs);
1041 	rv = vm_map_find(kernel_map, obj, offset, &kva, size, 0,
1042 	    VMFS_OPTIMAL_SPACE, VM_PROT_READ | VM_PROT_WRITE,
1043 	    VM_PROT_READ | VM_PROT_WRITE, 0);
1044 	if (rv == KERN_SUCCESS) {
1045 		rv = vm_map_wire(kernel_map, kva, kva + size,
1046 		    VM_MAP_WIRE_SYSTEM | VM_MAP_WIRE_NOHOLES);
1047 		if (rv == KERN_SUCCESS) {
1048 			*memp = (void *)(kva + ofs);
1049 			return (0);
1050 		}
1051 		vm_map_remove(kernel_map, kva, kva + size);
1052 	} else
1053 		vm_object_deallocate(obj);
1054 
1055 	/* On failure, drop our mapping reference. */
1056 	VM_OBJECT_WLOCK(obj);
1057 	shmfd->shm_kmappings--;
1058 	VM_OBJECT_WUNLOCK(obj);
1059 
1060 	return (vm_mmap_to_errno(rv));
1061 }
1062 
1063 /*
1064  * We require the caller to unmap the entire entry.  This allows us to
1065  * safely decrement shm_kmappings when a mapping is removed.
1066  */
1067 int
shm_unmap(struct file * fp,void * mem,size_t size)1068 shm_unmap(struct file *fp, void *mem, size_t size)
1069 {
1070 	struct shmfd *shmfd;
1071 	vm_map_entry_t entry;
1072 	vm_offset_t kva, ofs;
1073 	vm_object_t obj;
1074 	vm_pindex_t pindex;
1075 	vm_prot_t prot;
1076 	boolean_t wired;
1077 	vm_map_t map;
1078 	int rv;
1079 
1080 	if (fp->f_type != DTYPE_SHM)
1081 		return (EINVAL);
1082 	shmfd = fp->f_data;
1083 	kva = (vm_offset_t)mem;
1084 	ofs = kva & PAGE_MASK;
1085 	kva = trunc_page(kva);
1086 	size = round_page(size + ofs);
1087 	map = kernel_map;
1088 	rv = vm_map_lookup(&map, kva, VM_PROT_READ | VM_PROT_WRITE, &entry,
1089 	    &obj, &pindex, &prot, &wired);
1090 	if (rv != KERN_SUCCESS)
1091 		return (EINVAL);
1092 	if (entry->start != kva || entry->end != kva + size) {
1093 		vm_map_lookup_done(map, entry);
1094 		return (EINVAL);
1095 	}
1096 	vm_map_lookup_done(map, entry);
1097 	if (obj != shmfd->shm_object)
1098 		return (EINVAL);
1099 	vm_map_remove(map, kva, kva + size);
1100 	VM_OBJECT_WLOCK(obj);
1101 	KASSERT(shmfd->shm_kmappings > 0, ("shm_unmap: object not mapped"));
1102 	shmfd->shm_kmappings--;
1103 	VM_OBJECT_WUNLOCK(obj);
1104 	return (0);
1105 }
1106 
1107 static int
shm_fill_kinfo_locked(struct shmfd * shmfd,struct kinfo_file * kif,bool list)1108 shm_fill_kinfo_locked(struct shmfd *shmfd, struct kinfo_file *kif, bool list)
1109 {
1110 	const char *path, *pr_path;
1111 	size_t pr_pathlen;
1112 	bool visible;
1113 
1114 	sx_assert(&shm_dict_lock, SA_LOCKED);
1115 	kif->kf_type = KF_TYPE_SHM;
1116 	kif->kf_un.kf_file.kf_file_mode = S_IFREG | shmfd->shm_mode;
1117 	kif->kf_un.kf_file.kf_file_size = shmfd->shm_size;
1118 	if (shmfd->shm_path != NULL) {
1119 		if (shmfd->shm_path != NULL) {
1120 			path = shmfd->shm_path;
1121 			pr_path = curthread->td_ucred->cr_prison->pr_path;
1122 			if (strcmp(pr_path, "/") != 0) {
1123 				/* Return the jail-rooted pathname. */
1124 				pr_pathlen = strlen(pr_path);
1125 				visible = strncmp(path, pr_path, pr_pathlen)
1126 				    == 0 && path[pr_pathlen] == '/';
1127 				if (list && !visible)
1128 					return (EPERM);
1129 				if (visible)
1130 					path += pr_pathlen;
1131 			}
1132 			strlcpy(kif->kf_path, path, sizeof(kif->kf_path));
1133 		}
1134 	}
1135 	return (0);
1136 }
1137 
1138 static int
shm_fill_kinfo(struct file * fp,struct kinfo_file * kif,struct filedesc * fdp __unused)1139 shm_fill_kinfo(struct file *fp, struct kinfo_file *kif,
1140     struct filedesc *fdp __unused)
1141 {
1142 	int res;
1143 
1144 	sx_slock(&shm_dict_lock);
1145 	res = shm_fill_kinfo_locked(fp->f_data, kif, false);
1146 	sx_sunlock(&shm_dict_lock);
1147 	return (res);
1148 }
1149 
1150 static int
sysctl_posix_shm_list(SYSCTL_HANDLER_ARGS)1151 sysctl_posix_shm_list(SYSCTL_HANDLER_ARGS)
1152 {
1153 	struct shm_mapping *shmm;
1154 	struct sbuf sb;
1155 	struct kinfo_file kif;
1156 	u_long i;
1157 	ssize_t curlen;
1158 	int error, error2;
1159 
1160 	sbuf_new_for_sysctl(&sb, NULL, sizeof(struct kinfo_file) * 5, req);
1161 	sbuf_clear_flags(&sb, SBUF_INCLUDENUL);
1162 	curlen = 0;
1163 	error = 0;
1164 	sx_slock(&shm_dict_lock);
1165 	for (i = 0; i < shm_hash + 1; i++) {
1166 		LIST_FOREACH(shmm, &shm_dictionary[i], sm_link) {
1167 			error = shm_fill_kinfo_locked(shmm->sm_shmfd,
1168 			    &kif, true);
1169 			if (error == EPERM)
1170 				continue;
1171 			if (error != 0)
1172 				break;
1173 			pack_kinfo(&kif);
1174 			if (req->oldptr != NULL &&
1175 			    kif.kf_structsize + curlen > req->oldlen)
1176 				break;
1177 			error = sbuf_bcat(&sb, &kif, kif.kf_structsize) == 0 ?
1178 			    0 : ENOMEM;
1179 			if (error != 0)
1180 				break;
1181 			curlen += kif.kf_structsize;
1182 		}
1183 	}
1184 	sx_sunlock(&shm_dict_lock);
1185 	error2 = sbuf_finish(&sb);
1186 	sbuf_delete(&sb);
1187 	return (error != 0 ? error : error2);
1188 }
1189 
1190 SYSCTL_PROC(_kern_ipc, OID_AUTO, posix_shm_list,
1191     CTLFLAG_RD | CTLFLAG_MPSAFE | CTLTYPE_OPAQUE,
1192     NULL, 0, sysctl_posix_shm_list, "",
1193     "POSIX SHM list");
1194