1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/*
* SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len,
unsigned long, prot, unsigned long, flags,
unsigned long, fd, unsigned long, offset)
*
* sys_mmap2 (unsigned long addr, unsigned long len, int prot, int flags, int fd, long pgoff)
*/
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include "maps.h"
#include "sanitise.h"
#include "shm.h"
#include "arch.h"
#include "compat.h"
#include "objects.h"
#include "random.h"
#include "syscall.h"
#include "tables.h"
#include "trinity.h"
#include "utils.h" //ARRAY_SIZE
// need this to actually get MAP_UNINITIALIZED defined
#define CONFIG_MMAP_ALLOW_UNINITIALIZED
static void do_anon(struct syscallrecord *rec)
{
/* no fd if anonymous mapping. */
rec->a5 = -1;
rec->a6 = 0;
}
unsigned long mmap_excl_flags[] = {
MAP_SHARED, MAP_PRIVATE,
};
unsigned long get_rand_mmap_flags(void)
{
unsigned long flags;
const unsigned long mmap_flags[] = {
MAP_FIXED, MAP_ANONYMOUS, MAP_GROWSDOWN, MAP_DENYWRITE,
MAP_EXECUTABLE, MAP_LOCKED, MAP_NORESERVE, MAP_POPULATE,
MAP_NONBLOCK, MAP_STACK, MAP_HUGETLB, MAP_UNINITIALIZED,
#ifdef __x86_64__
MAP_32BIT,
#endif
};
flags = RAND_ARRAY(mmap_excl_flags);
if (RAND_BOOL())
flags |= set_rand_bitmask(ARRAY_SIZE(mmap_flags), mmap_flags);
return flags;
}
static void sanitise_mmap(struct syscallrecord *rec)
{
/* Don't actually set a hint right now. */
rec->a1 = 0;
rec->a2 = RAND_ARRAY(mapping_sizes);
/* this over-rides the ARG_OP in the syscall struct */
rec->a4 = get_rand_mmap_flags();
if (rec->a4 & MAP_ANONYMOUS) {
do_anon(rec);
} else {
rec->a5 = get_random_fd();
if (rec->a5 == (unsigned long) -1)
rec->a5 = 0;
if (this_syscallname("mmap2") == TRUE) {
/* mmap2 counts in 4K units */
rec->a6 /= 4096;
} else {
/* page align non-anonymous mappings. */
rec->a6 &= PAGE_MASK;
}
}
}
static void post_mmap(struct syscallrecord *rec)
{
char *p;
struct object *new;
p = (void *) rec->retval;
if (p == MAP_FAILED)
return;
new = alloc_object();
new->map.name = strdup("misc");
new->map.size = rec->a2;
new->map.prot = rec->a3;
//TODO: store fd if !anon
new->map.ptr = p;
new->map.type = CHILD_ANON;
// Add this to a list for use by subsequent syscalls.
add_object(new, OBJ_LOCAL, OBJ_MMAP_ANON);
/* Sometimes dirty the mapping. */
if (RAND_BOOL())
dirty_mapping(&new->map);
}
static char * decode_mmap(struct syscallrecord *rec, unsigned int argnum)
{
char *buf;
if (argnum == 3) {
int flags = rec->a3;
char *p;
p = buf = zmalloc(80);
p += sprintf(buf, "[");
if (flags == 0) {
p += sprintf(p, "PROT_NONE]");
return buf;
}
if (flags & PROT_READ)
p += sprintf(p, "PROT_READ|");
if (flags & PROT_WRITE)
p += sprintf(p, "PROT_WRITE|");
if (flags & PROT_EXEC)
p += sprintf(p, "PROT_EXEC|");
if (flags & PROT_SEM)
p += sprintf(p, "PROT_SEM ");
p--;
sprintf(p, "]");
return buf;
}
return NULL;
}
static unsigned long mmap_prots[] = {
PROT_READ, PROT_WRITE, PROT_EXEC, PROT_SEM,
};
struct syscallentry syscall_mmap = {
.name = "mmap",
.num_args = 6,
.sanitise = sanitise_mmap,
.post = post_mmap,
.decode = decode_mmap,
.arg1name = "addr",
.arg2name = "len",
.arg2type = ARG_LEN,
.arg3name = "prot",
.arg3type = ARG_LIST,
.arg3list = ARGLIST(mmap_prots),
.arg4name = "flags",
.arg4type = ARG_OP,
.arg4list = ARGLIST(mmap_excl_flags),
.arg5name = "fd",
.arg5type = ARG_FD,
.arg6name = "off",
.arg6type = ARG_LEN,
.group = GROUP_VM,
.flags = NEED_ALARM,
};
struct syscallentry syscall_mmap2 = {
.name = "mmap2",
.num_args = 6,
.sanitise = sanitise_mmap,
.post = post_mmap,
.decode = decode_mmap,
.arg1name = "addr",
.arg2name = "len",
.arg2type = ARG_LEN,
.arg3name = "prot",
.arg3type = ARG_LIST,
.arg3list = ARGLIST(mmap_prots),
.arg4name = "flags",
.arg4type = ARG_OP,
.arg4list = ARGLIST(mmap_excl_flags),
.arg5name = "fd",
.arg5type = ARG_FD,
.arg6name = "pgoff",
.arg6type = ARG_LEN,
.group = GROUP_VM,
.flags = NEED_ALARM,
};
|