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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have included with MySQL.
Without limiting anything contained in the foregoing, this file,
which is part of C Driver for MySQL (Connector/C), is also subject to the
Universal FOSS Exception, version 1.0, a copy of which can be found at
http://oss.oracle.com/licenses/universal-foss-exception.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file mysys/my_malloc.cc
*/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include "memory_debugging.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_psi_config.h"
#include "my_sys.h"
#include "my_thread_local.h"
#include "mysql/psi/mysql_memory.h"
#include "mysql/psi/psi_base.h"
#include "mysql/psi/psi_memory.h"
#include "mysys_err.h"
struct PSI_thread;
#ifdef HAVE_PSI_MEMORY_INTERFACE
#define USE_MALLOC_WRAPPER
#endif
static void *my_raw_malloc(size_t size, myf my_flags);
static void my_raw_free(void *ptr);
extern void my_free(void *ptr);
#ifdef USE_MALLOC_WRAPPER
struct my_memory_header {
PSI_memory_key m_key;
uint m_magic;
size_t m_size;
PSI_thread *m_owner;
};
typedef struct my_memory_header my_memory_header;
#define HEADER_SIZE 32
#define MAGIC 1234
#define USER_TO_HEADER(P) ((my_memory_header *)(((char *)P) - HEADER_SIZE))
#define HEADER_TO_USER(P) (((char *)P) + HEADER_SIZE)
void *my_malloc(PSI_memory_key key, size_t size, myf flags) {
my_memory_header *mh;
size_t raw_size;
static_assert(sizeof(my_memory_header) <= HEADER_SIZE,
"We must reserve enough memory to hold the header.");
raw_size = HEADER_SIZE + size;
mh = (my_memory_header *)my_raw_malloc(raw_size, flags);
if (likely(mh != NULL)) {
void *user_ptr;
mh->m_magic = MAGIC;
mh->m_size = size;
mh->m_key = PSI_MEMORY_CALL(memory_alloc)(key, size, &mh->m_owner);
user_ptr = HEADER_TO_USER(mh);
MEM_MALLOCLIKE_BLOCK(user_ptr, size, 0, (flags & MY_ZEROFILL));
return user_ptr;
}
return NULL;
}
void *my_realloc(PSI_memory_key key, void *ptr, size_t size, myf flags) {
my_memory_header *old_mh;
size_t old_size;
size_t min_size;
void *new_ptr;
if (ptr == NULL) return my_malloc(key, size, flags);
old_mh = USER_TO_HEADER(ptr);
DBUG_ASSERT((old_mh->m_key == key) ||
(old_mh->m_key == PSI_NOT_INSTRUMENTED));
DBUG_ASSERT(old_mh->m_magic == MAGIC);
old_size = old_mh->m_size;
if (old_size == size) return ptr;
new_ptr = my_malloc(key, size, flags);
if (likely(new_ptr != NULL)) {
#ifndef DBUG_OFF
my_memory_header *new_mh = USER_TO_HEADER(new_ptr);
#endif
DBUG_ASSERT((new_mh->m_key == key) ||
(new_mh->m_key == PSI_NOT_INSTRUMENTED));
DBUG_ASSERT(new_mh->m_magic == MAGIC);
DBUG_ASSERT(new_mh->m_size == size);
min_size = (old_size < size) ? old_size : size;
memcpy(new_ptr, ptr, min_size);
my_free(ptr);
return new_ptr;
}
return NULL;
}
void my_claim(const void *ptr) {
my_memory_header *mh;
if (ptr == NULL) return;
mh = USER_TO_HEADER(const_cast<void *>(ptr));
DBUG_ASSERT(mh->m_magic == MAGIC);
mh->m_key =
PSI_MEMORY_CALL(memory_claim)(mh->m_key, mh->m_size, &mh->m_owner);
}
void my_free(void *ptr) {
my_memory_header *mh;
if (ptr == NULL) return;
mh = USER_TO_HEADER(ptr);
DBUG_ASSERT(mh->m_magic == MAGIC);
PSI_MEMORY_CALL(memory_free)(mh->m_key, mh->m_size, mh->m_owner);
/* Catch double free */
mh->m_magic = 0xDEAD;
MEM_FREELIKE_BLOCK(ptr, 0);
my_raw_free(mh);
}
#else
void *my_malloc(PSI_memory_key key MY_ATTRIBUTE((unused)), size_t size,
myf my_flags) {
return my_raw_malloc(size, my_flags);
}
static void *my_raw_realloc(void *oldpoint, size_t size, myf my_flags);
void *my_realloc(PSI_memory_key key MY_ATTRIBUTE((unused)), void *ptr,
size_t size, myf flags) {
return my_raw_realloc(ptr, size, flags);
}
void my_claim(const void *ptr MY_ATTRIBUTE((unused))) { /* Empty */
}
void my_free(void *ptr) { my_raw_free(ptr); }
#endif
/**
Allocate a sized block of memory.
@param size The size of the memory block in bytes.
@param my_flags Failure action modifiers (bitmasks).
@return A pointer to the allocated memory block, or NULL on failure.
*/
static void *my_raw_malloc(size_t size, myf my_flags) {
void *point;
/* Safety */
if (!size) size = 1;
#if defined(MY_MSCRT_DEBUG)
if (my_flags & MY_ZEROFILL)
point = _calloc_dbg(size, 1, _CLIENT_BLOCK, __FILE__, __LINE__);
else
point = _malloc_dbg(size, _CLIENT_BLOCK, __FILE__, __LINE__);
#else
if (my_flags & MY_ZEROFILL)
point = calloc(size, 1);
else
point = malloc(size);
#endif
DBUG_EXECUTE_IF("simulate_out_of_memory", {
free(point);
point = NULL;
});
DBUG_EXECUTE_IF("simulate_persistent_out_of_memory", {
free(point);
point = NULL;
});
if (point == NULL) {
set_my_errno(errno);
if (my_flags & MY_FAE) error_handler_hook = fatal_error_handler_hook;
if (my_flags & (MY_FAE + MY_WME))
my_error(EE_OUTOFMEMORY, MYF(ME_ERRORLOG + ME_FATALERROR), size);
DBUG_EXECUTE_IF("simulate_out_of_memory",
DBUG_SET("-d,simulate_out_of_memory"););
if (my_flags & MY_FAE) exit(1);
}
return (point);
}
#ifndef USE_MALLOC_WRAPPER
/**
@brief wrapper around realloc()
@param oldpoint pointer to currently allocated area
@param size new size requested, must be >0
@param my_flags flags
@note if size==0 realloc() may return NULL; my_realloc() treats this as an
error which is not the intention of realloc()
*/
static void *my_raw_realloc(void *oldpoint, size_t size, myf my_flags) {
void *point;
DBUG_ENTER("my_realloc");
DBUG_PRINT("my", ("ptr: %p size: %lu my_flags: %d", oldpoint, (ulong)size,
my_flags));
DBUG_ASSERT(size > 0);
/* These flags are mutually exclusive. */
DBUG_ASSERT(
!((my_flags & MY_FREE_ON_ERROR) && (my_flags & MY_HOLD_ON_ERROR)));
DBUG_EXECUTE_IF("simulate_out_of_memory", point = NULL; goto end;);
if (!oldpoint && (my_flags & MY_ALLOW_ZERO_PTR))
DBUG_RETURN(my_raw_malloc(size, my_flags));
#if defined(MY_MSCRT_DEBUG)
point = _realloc_dbg(oldpoint, size, _CLIENT_BLOCK, __FILE__, __LINE__);
#else
point = realloc(oldpoint, size);
#endif
#ifndef DBUG_OFF
end:
#endif
if (point == NULL) {
if (my_flags & MY_HOLD_ON_ERROR) DBUG_RETURN(oldpoint);
if (my_flags & MY_FREE_ON_ERROR) my_free(oldpoint);
set_my_errno(errno);
if (my_flags & (MY_FAE + MY_WME))
my_error(EE_OUTOFMEMORY, MYF(ME_FATALERROR), size);
DBUG_EXECUTE_IF("simulate_out_of_memory",
DBUG_SET("-d,simulate_out_of_memory"););
}
DBUG_PRINT("exit", ("ptr: %p", point));
DBUG_RETURN(point);
}
#endif
/**
Free memory allocated with my_raw_malloc.
@remark Relies on free being able to handle a NULL argument.
@param ptr Pointer to the memory allocated by my_raw_malloc.
*/
static void my_raw_free(void *ptr) {
#if defined(MY_MSCRT_DEBUG)
_free_dbg(ptr, _CLIENT_BLOCK);
#else
free(ptr);
#endif
}
void *my_memdup(PSI_memory_key key, const void *from, size_t length,
myf my_flags) {
void *ptr;
if ((ptr = my_malloc(key, length, my_flags)) != 0) memcpy(ptr, from, length);
return ptr;
}
char *my_strdup(PSI_memory_key key, const char *from, myf my_flags) {
char *ptr;
size_t length = strlen(from) + 1;
if ((ptr = (char *)my_malloc(key, length, my_flags)))
memcpy(ptr, from, length);
return ptr;
}
char *my_strndup(PSI_memory_key key, const char *from, size_t length,
myf my_flags) {
char *ptr;
if ((ptr = (char *)my_malloc(key, length + 1, my_flags))) {
memcpy(ptr, from, length);
ptr[length] = 0;
}
return ptr;
}
|