[REFACTOR] Buffer: move getting next queue element into separate function
[kernel/swap-modules.git] / kprobe / dbi_kprobes_deps.h
1 #ifndef _DBI_KPROBES_DEPS_H
2 #define _DBI_KPROBES_DEPS_H
3
4 /*
5  *  Dynamic Binary Instrumentation Module based on KProbes
6  *  modules/kprobe/dbi_kprobes_deps.h
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  *
22  * Copyright (C) Samsung Electronics, 2006-2010
23  *
24  * 2008-2009    Alexey Gerenkov <a.gerenkov@samsung.com> User-Space
25  *              Probes initial implementation; Support x86/ARM/MIPS for both user and kernel spaces.
26  * 2010         Ekaterina Gorelkina <e.gorelkina@samsung.com>: redesign module for separating core and arch parts
27  *
28  */
29
30 #include <linux/version.h>      // LINUX_VERSION_CODE, KERNEL_VERSION()
31 #include <linux/hugetlb.h>
32 #include <linux/mempolicy.h>
33 #include <linux/highmem.h>
34 #include <linux/pagemap.h>
35 #include <ksyms/ksyms.h>
36
37 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
38 #define DECLARE_NODE_PTR_FOR_HLIST(var_name)
39 #define swap_hlist_for_each_entry_rcu(tpos, pos, head, member) hlist_for_each_entry_rcu(tpos, head, member)
40 #define swap_hlist_for_each_entry_safe(tpos, pos, n, head, member) hlist_for_each_entry_safe(tpos, n, head, member)
41 #define swap_hlist_for_each_entry(tpos, pos, head, member) hlist_for_each_entry(tpos, head, member)
42 #else /* LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0) */
43 #define DECLARE_NODE_PTR_FOR_HLIST(var_name) struct hlist_node *var_name
44 #define swap_hlist_for_each_entry_rcu(tpos, pos, head, member) hlist_for_each_entry_rcu(tpos, pos, head, member)
45 #define swap_hlist_for_each_entry_safe(tpos, pos, n, head, member) hlist_for_each_entry_safe(tpos, pos, n, head, member)
46 #define swap_hlist_for_each_entry(tpos, pos, head, member) hlist_for_each_entry(tpos, pos, head, member)
47 #endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0) */
48
49 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 12))
50 #define synchronize_sched       synchronize_kernel
51 #endif
52
53 //--------------------- Declaration of module dependencies ------------------------//
54
55 #define DECLARE_MOD_FUNC_DEP(name, ret, ...) ret(*__ref_##name)(__VA_ARGS__)
56 #define DECLARE_MOD_CB_DEP(name, ret, ...) ret(*name)(__VA_ARGS__)
57
58
59 //----------------- Implementation of module dependencies wrappers -----------------//
60
61 #define DECLARE_MOD_DEP_WRAPPER(name, ret, ...) ret name(__VA_ARGS__)
62 #define IMP_MOD_DEP_WRAPPER(name, ...) \
63 { \
64         return __ref_##name(__VA_ARGS__); \
65 }
66
67
68 //---------------------- Module dependencies initialization --------------------//
69
70 #define INIT_MOD_DEP_VAR(dep, name) \
71 { \
72         __ref_##dep = (void *) swap_ksyms (#name); \
73         if (!__ref_##dep) \
74         { \
75                 DBPRINTF (#name " is not found! Oops. Where is it?"); \
76                 return -ESRCH; \
77         } \
78 }
79
80 #define INIT_MOD_DEP_CB(dep, name) \
81 { \
82         dep = (void *) swap_ksyms (#name); \
83         if (!dep) \
84         { \
85                 DBPRINTF (#name " is not found! Oops. Where is it?"); \
86                 return -ESRCH; \
87         } \
88 }
89
90
91 int init_module_dependencies(void);
92
93 int access_process_vm_atomic(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write);
94
95 #define read_proc_vm_atomic(tsk, addr, buf, len)        access_process_vm_atomic (tsk, addr, buf, len, 0)
96 #define write_proc_vm_atomic(tsk, addr, buf, len)       access_process_vm_atomic (tsk, addr, buf, len, 1)
97 int page_present (struct mm_struct *mm, unsigned long addr);
98
99 DECLARE_MOD_DEP_WRAPPER (__flush_anon_page, \
100                         void, struct vm_area_struct *vma, \
101                         struct page *page, unsigned long vmaddr);
102
103 DECLARE_MOD_DEP_WRAPPER(flush_ptrace_access, \
104         void, struct vm_area_struct *vma, struct page *page, \
105         unsigned long uaddr, void *kaddr, unsigned long len, int write);
106
107 #endif /* _DBI_KPROBES_DEPS_H */