summaryrefslogtreecommitdiffhomepage
path: root/src/logic
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-17 04:11:07 -0500
committermidipix <writeonce@midipix.org>2016-11-11 00:22:28 -0500
commitcde03b7121400bd61167e8db5303b3cd0ff03a0c (patch)
tree58a4ff993fefddf8d963f6a3dd5d1ae6760e2df9 /src/logic
parent08279ea75fe76bdccb9809030ed3e5b261c9d557 (diff)
downloadmdso-cde03b7121400bd61167e8db5303b3cd0ff03a0c.tar.bz2
mdso-cde03b7121400bd61167e8db5303b3cd0ff03a0c.tar.xz
created skeleton.
Diffstat (limited to 'src/logic')
-rw-r--r--src/logic/mdso_map_input.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/logic/mdso_map_input.c b/src/logic/mdso_map_input.c
new file mode 100644
index 0000000..1e1084a
--- /dev/null
+++ b/src/logic/mdso_map_input.c
@@ -0,0 +1,51 @@
+/****************************************************************/
+/* mdso: midipix dso scavenger */
+/* Copyright (C) 2015 Z. Gilboa */
+/* Released under GPLv2 and GPLv3; see COPYING.MDSO. */
+/****************************************************************/
+
+#include <stdint.h>
+#include <stdbool.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/mman.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+
+#include <mdso/mdso.h>
+
+int mdso_map_input(
+ int fd,
+ const char * path,
+ int prot,
+ struct mdso_input * map)
+{
+ struct stat stat;
+ bool fnew;
+ int ret;
+
+ if ((fnew = (fd < 0)))
+ fd = open(path,O_RDONLY | O_CLOEXEC);
+
+ if (fd < 0)
+ return -1;
+
+ if ((ret = fstat(fd,&stat) < 0) && fnew)
+ close(fd);
+
+ if (ret < 0)
+ return -1;
+
+ map->size = stat.st_size;
+ map->addr = mmap(0,map->size,prot,MAP_PRIVATE,fd,0);
+
+ if (fnew)
+ close(fd);
+
+ return (map->addr == MAP_FAILED) ? -1 : 0;
+}
+
+int mdso_unmap_input(struct mdso_input * map)
+{
+ return munmap(map->addr,map->size);
+}