|
@@ -70,16 +70,6 @@ __kprobes int PRINT_TYPE_FUNC_NAME(string)(struct trace_seq *s,
|
|
|
|
|
|
const char PRINT_TYPE_FMT_NAME(string)[] = "\\\"%s\\\"";
|
|
|
|
|
|
-/*
|
|
|
- * Define macro for basic types - we don't need to define s* types, because
|
|
|
- * we have to care only about bitwidth at recording time.
|
|
|
- */
|
|
|
-#define DEFINE_BASIC_FETCH_FUNCS(method) \
|
|
|
-DEFINE_FETCH_##method(u8) \
|
|
|
-DEFINE_FETCH_##method(u16) \
|
|
|
-DEFINE_FETCH_##method(u32) \
|
|
|
-DEFINE_FETCH_##method(u64)
|
|
|
-
|
|
|
#define CHECK_FETCH_FUNCS(method, fn) \
|
|
|
(((FETCH_FUNC_NAME(method, u8) == fn) || \
|
|
|
(FETCH_FUNC_NAME(method, u16) == fn) || \
|
|
@@ -102,18 +92,6 @@ DEFINE_BASIC_FETCH_FUNCS(reg)
|
|
|
#define fetch_reg_string NULL
|
|
|
#define fetch_reg_string_size NULL
|
|
|
|
|
|
-#define DEFINE_FETCH_stack(type) \
|
|
|
-__kprobes void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \
|
|
|
- void *offset, void *dest) \
|
|
|
-{ \
|
|
|
- *(type *)dest = (type)regs_get_kernel_stack_nth(regs, \
|
|
|
- (unsigned int)((unsigned long)offset)); \
|
|
|
-}
|
|
|
-DEFINE_BASIC_FETCH_FUNCS(stack)
|
|
|
-/* No string on the stack entry */
|
|
|
-#define fetch_stack_string NULL
|
|
|
-#define fetch_stack_string_size NULL
|
|
|
-
|
|
|
#define DEFINE_FETCH_retval(type) \
|
|
|
__kprobes void FETCH_FUNC_NAME(retval, type)(struct pt_regs *regs, \
|
|
|
void *dummy, void *dest) \
|