]> granicus.if.org Git - strace/blob - mmap_cache.h
tests/ioctl_kvm_run.c: handle cpuid at the end of vcpu dentry
[strace] / mmap_cache.h
1 /*
2  * Copyright (c) 2013-2018 The strace developers.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #ifndef STRACE_MMAP_CACHE_H
28 #define STRACE_MMAP_CACHE_H
29
30 /*
31  * Keep a sorted array of cache entries,
32  * so that we can binary search through it.
33  */
34 struct mmap_cache_t {
35         /**
36          * example entry:
37          * 7fabbb09b000-7fabbb09f000 r-xp 00179000 fc:00 1180246 /lib/libc-2.11.1.so
38          *
39          * start_addr  is 0x7fabbb09b000
40          * end_addr    is 0x7fabbb09f000
41          * mmap_offset is 0x179000
42          * protections is MMAP_CACHE_PROT_READABLE|MMAP_CACHE_PROT_EXECUTABLE
43          * major       is 0xfc
44          * minor       is 0x00
45          * binary_filename is "/lib/libc-2.11.1.so"
46          */
47         unsigned long start_addr;
48         unsigned long end_addr;
49         unsigned long mmap_offset;
50         unsigned char protections;
51         unsigned long major, minor;
52         char *binary_filename;
53 };
54
55 enum mmap_cache_protection {
56         MMAP_CACHE_PROT_READABLE   = 1 << 0,
57         MMAP_CACHE_PROT_WRITABLE   = 1 << 1,
58         MMAP_CACHE_PROT_EXECUTABLE = 1 << 2,
59         MMAP_CACHE_PROT_SHARED     = 1 << 3,
60 };
61
62 enum mmap_cache_rebuild_result {
63         MMAP_CACHE_REBUILD_NOCACHE,
64         MMAP_CACHE_REBUILD_READY,
65         MMAP_CACHE_REBUILD_RENEWED,
66 };
67
68 extern void
69 mmap_cache_enable(void);
70
71 extern bool
72 mmap_cache_is_enabled(void);
73
74 extern void
75 mmap_cache_invalidate(struct tcb *);
76
77 extern void
78 mmap_cache_delete(struct tcb *, const char *caller);
79
80 extern enum mmap_cache_rebuild_result
81 mmap_cache_rebuild_if_invalid(struct tcb *, const char *caller);
82
83 extern struct mmap_cache_t *
84 mmap_cache_search(struct tcb *, unsigned long ip);
85
86 #endif /* !STRACE_MMAP_CACHE_H */