-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjhook.c
101 lines (88 loc) · 2.48 KB
/
jhook.c
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
/*******************************************
* SPDX-License-Identifier: MIT *
* Copyright (C) 2024-.... Jing Leng *
* Contact: Jing Leng <[email protected]> *
* https://github.com/lengjingzju/jcore *
*******************************************/
#include <string.h>
#ifndef JHOOK_WRAP
#define JHOOK_WRAP 0
#endif
#if JHOOK_WRAP
#define jhook_free __wrap_free
#define jhook_malloc __wrap_malloc
#define jhook_calloc __wrap_calloc
#define jhook_realloc __wrap_realloc
#define jhook_strdup __wrap_strdup
#define jhook_strndup __wrap_strndup
#else
#define jhook_free free
#define jhook_malloc malloc
#define jhook_calloc calloc
#define jhook_realloc realloc
#define jhook_strdup strdup
#define jhook_strndup strndup
#endif
extern void* __libc_malloc(size_t size);
extern void* __libc_realloc(void *ptr, size_t size);
extern void __libc_free(void *ptr);
extern void jhook_addptr(void *ptr, size_t size, void *addr);
extern void jhook_delptr(void *ptr);
extern int jhook_tailnum(void);
void jhook_free(void *ptr)
{
if (ptr) {
jhook_delptr(ptr);
__libc_free(ptr);
}
}
void *jhook_malloc(size_t size)
{
void *ptr = __libc_malloc(size + jhook_tailnum());
if (!ptr)
return NULL;
jhook_addptr(ptr, size, __builtin_return_address(0));
return ptr;
}
void *jhook_calloc(size_t nmemb, size_t size)
{
size_t tsize = nmemb * size;
void *ptr = __libc_malloc(tsize + jhook_tailnum());
if (!ptr)
return NULL;
memset(ptr, 0, tsize);
jhook_addptr(ptr, tsize, __builtin_return_address(0));
return ptr;
}
void *jhook_realloc(void *ptr, size_t size)
{
jhook_delptr(ptr);
ptr = __libc_realloc(ptr, size + jhook_tailnum());
if (!ptr)
return NULL;
jhook_addptr(ptr, size, __builtin_return_address(0));
return ptr;
}
char *jhook_strdup(const char *s)
{
size_t size = strlen(s) + 1;
char *ptr = (char *)__libc_malloc(size + jhook_tailnum());
if (!ptr)
return NULL;
memcpy(ptr, s, size - 1);
ptr[size - 1] = '\0';
jhook_addptr((void *)ptr, size, __builtin_return_address(0));
return ptr;
}
char *jhook_strndup(const char *s, size_t n)
{
size_t len = strlen(s);
size_t size = (n < len ? n : len) + 1;
char *ptr = (char *)__libc_malloc(size + jhook_tailnum());
if (!ptr)
return NULL;
memcpy(ptr, s, size - 1);
ptr[size - 1] = '\0';
jhook_addptr((void *)ptr, size, __builtin_return_address(0));
return ptr;
}