summaryrefslogtreecommitdiffstats
path: root/video/out/vo_wlshm.c
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2019-10-17 13:03:14 +0200
committerwm4 <1387750+wm4@users.noreply.github.com>2019-10-17 19:38:04 +0200
commita6000d3114214cf697d628ad09c8ca226c31340d (patch)
tree2890a0c1a3c4a1122ac92c00e5acf52a72e4c0d6 /video/out/vo_wlshm.c
parent273cc3055cb5829fe62dce88e596c21ae85ef1c2 (diff)
downloadmpv-a6000d3114214cf697d628ad09c8ca226c31340d.tar.bz2
mpv-a6000d3114214cf697d628ad09c8ca226c31340d.tar.xz
vo_wlshm: use memfd_create() instead of shm_open()
This syscall avoids the need to guess an unused filename in /dev/shm and allows seals to be placed on it. We immediately return if no fd got returned, as there isn’t anything we can do otherwise. Seals especially allow the compositor to drop the SIGBUS protections, since the kernel promises the fd won’t ever shrink. This removes support for any platform but Linux from this vo.
Diffstat (limited to 'video/out/vo_wlshm.c')
-rw-r--r--video/out/vo_wlshm.c34
1 files changed, 11 insertions, 23 deletions
diff --git a/video/out/vo_wlshm.c b/video/out/vo_wlshm.c
index 1577248407..213b05b150 100644
--- a/video/out/vo_wlshm.c
+++ b/video/out/vo_wlshm.c
@@ -73,30 +73,18 @@ static void buffer_destroy(void *p)
munmap(buf->mpi.planes[0], buf->size);
}
-/* modeled after randname and mkostemps from musl */
-static int alloc_shm(size_t size)
+static int allocate_memfd(size_t size)
{
- struct timespec ts;
- unsigned long r;
- int i, fd, retries = 100;
- char template[] = "/mpv-XXXXXX";
-
- do {
- clock_gettime(CLOCK_REALTIME, &ts);
- r = ts.tv_nsec * 65537 ^ ((uintptr_t)&ts / 16 + (uintptr_t)template);
- for (i = 5; i < sizeof(template) - 1; i++, r >>= 5)
- template[i] = 'A' + (r & 15) + (r & 16) * 2;
-
- fd = shm_open(template, O_RDWR | O_CREAT | O_EXCL, 0600);
- if (fd >= 0) {
- shm_unlink(template);
- if (posix_fallocate(fd, 0, size) == 0)
- return fd;
- close(fd);
- break;
- }
- } while (--retries && errno == EEXIST);
+ int fd = memfd_create("mpv", MFD_CLOEXEC | MFD_ALLOW_SEALING);
+ if (fd < 0)
+ return -1;
+ fcntl(fd, F_ADD_SEALS, F_SEAL_SHRINK | F_SEAL_SEAL);
+
+ if (posix_fallocate(fd, 0, size) == 0)
+ return fd;
+
+ close(fd);
return -1;
}
@@ -112,7 +100,7 @@ static struct buffer *buffer_create(struct vo *vo, int width, int height)
stride = MP_ALIGN_UP(width * 4, 16);
size = height * stride;
- fd = alloc_shm(size);
+ fd = allocate_memfd(size);
if (fd < 0)
goto error0;
data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);