-
Notifications
You must be signed in to change notification settings - Fork 4
/
SAPInstall.pas
480 lines (391 loc) · 10.6 KB
/
SAPInstall.pas
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
{****************************************************************************************
SAPMM v1.01 /17.06.2013/
SapMM installation unit
Include this unit as the first unit of your project to activate SapMM
****************************************************************************************}
unit SAPInstall;
interface
{$INCLUDE SAPOptions.inc}
uses
Windows, SAPDefs;
implementation
uses
SAPThreadMM,
SAPSmallBlocks,
SAPNormalBlocks,
SAPSystem,
SAPReportMemoryLeaks,
SAPUtils
//, SAPDebugUtils
;
var
OldMM: TMemoryManagerEx;
SAPIsActive: Boolean = False;
procedure InterlockedIncrement(var Value: LongWord);
asm
lock inc [Value]
end;
function SAPGetMem(Size: {$IF CompilerVersion >= 23} NativeInt {$ELSE} Integer {$IFEND}): Pointer;
var
mm: PSAPThreadMM;
begin
// Next asm block is an inline for: tmm := GetThreadMM;
asm
mov eax,TLSOffset
mov ecx,fs:[$00000018]
mov eax,[ecx+eax]
mov mm, eax
end;
if mm = nil then
begin
mm := CreateThreadMM;
end;
Result := ThreadGetMem(mm, Size);
(*
//!!!
stats[stats_count].op := 'G';
stats[stats_count].size := size;
stats[stats_count].adr := Result;
Inc(stats_count);
*)
end;
function SAPAllocMem(Size: {$IF CompilerVersion >= 23} NativeInt {$ELSE} Cardinal {$IFEND}): Pointer;
var
mm: PSAPThreadMM;
begin
// Next asm block is an inline for: tmm := GetThreadMM;
asm
mov eax,TLSOffset
mov ecx,fs:[$00000018]
mov eax,[ecx+eax]
mov mm, eax
end;
if mm = nil then
begin
mm := CreateThreadMM;
end;
Result := ThreadGetMem(mm, Size);
if (Result <> nil) then FillChar(Result^, size, 0);
end;
// Get MM for allocated block
function GetBlockMM(p: Pointer): Pointer; inline;
var
s: PSAPSmallAllocatedBlock;
h: PSAPSmallBlocksHeader;
b: PSAPAllocatedBlock;
begin
s := Pointer(LongWord(p) - SizeOf(TSAPSmallAllocatedBlock));
if s.magic <> cMagic then
begin
Result := nil;
end
else if sap_small_block in s.tags then
begin
h := Pointer(LongWord(s) - s.ofs);
{$IFDEF SAP_CHECKMAGIC}
if h.header_magic <> cSmallBlockHeaderMagic then
begin
Result := nil;
Exit;
end;
{$ENDIF SAP_CHECKMAGIC}
Result := h.block_mm;
end
else begin
b := Pointer(LongWord(p) - SizeOf(TSAPAllocatedBlock));
{$IFDEF SAP_CHECKMAGIC}
if b.block_magic <> cNormalBlockMagic then
begin
Result := nil;
Exit;
end;
{$ENDIF SAP_CHECKMAGIC}
Result := b.block_mm;
end;
end;
function SAPFreeMem(p: Pointer): Integer;
var
mm: PSAPThreadMM; // ÌÌ for allocated memory block
tmm: PSAPThreadMM; // MM for current thread
begin
Result := 0;
if p = nil then
Exit;
mm := GetBlockMM(p);
if mm = nil then // block was allocated by previous MM (not by SapMM)
begin
Result := OldMM.FreeMem(P);
Inc(sap_no_free_oldMM);
Exit;
end;
// Next asm block is an inline for: tmm := GetThreadMM;
asm
mov eax,TLSOffset
mov ecx,fs:[$00000018]
mov eax,[ecx+eax]
mov tmm, eax
end;
if mm = tmm then // block was allocated in this thread, free immediately
begin
Result := ThreadFreeMem(mm, p);
Exit;
end;
// Interthread memory block is not freed in current thread, it must be freed in the thread of MM, which allocated it
// Instead of freeing the block it is put into allocating thread MM's special list for delayed release
{$IFDEF SAP_STAT}
if tmm <> nil then
InterlockedIncrement(tmm.no_inter_free);
{$ENDIF SAP_STAT}
LockForFreeFromOtherThread(mm);
PSAPBlocksFreedInOtherThreads(p).next := mm.blocks_to_free;
mm.blocks_to_free := p;
UnlockForFreeFromOtherThread(mm);
Result := 0;
end;
//------------------------------------------------
// Realloc
function InterThreadRealloc(tmm, mm: PSAPThreadMM; p: Pointer; size: LongWord): Pointer;
forward;
function SAPReallocMem(p: Pointer; size: {$IF CompilerVersion >= 23} NativeInt {$ELSE} Integer {$IFEND}): Pointer;
var
mm: PSAPThreadMM; // ÌÌ for the allocated memory block
tmm: PSAPThreadMM; // MM for current thread
begin
if size <= 0 then // deallocate mem
begin
Result := nil;
SAPFreeMem(P);
Exit;
end;
if p = nil then // allocate mem
begin
Result := SAPGetMem(size);
Exit;
end;
// Actual reallocate
mm := GetBlockMM(p);
if mm = nil then // Block was allocated by previous MM (not by SapMM)
begin
Result := OldMM.ReallocMem(p, size);
Exit;
end;
// Next asm block is an inline for: tmm := GetThreadMM;
asm
mov eax,TLSOffset
mov ecx,fs:[$00000018]
mov eax,[ecx+eax]
mov tmm, eax
end;
// Create thread's MM if needed.
if tmm = nil then
begin
tmm := CreateThreadMM;
end
else if mm = tmm then
begin
// Realloc inside one thread MM
ThreadReallocMem(mm, p, size);
Result := p;
Exit;
end;
// Interthread realloc
{$IFDEF SAP_STAT}
InterlockedIncrement(tmm.no_inter_realloc);
{$ENDIF SAP_STAT}
Result := InterThreadRealloc(tmm, mm, p, size);
end;
// tmm - ÌÌ for the thread
// mm - ÌÌ, which allocated memory block
function InterThreadRealloc(tmm, mm: PSAPThreadMM; p: Pointer; size: LongWord): Pointer;
var
new_p: Pointer;
block_size: LongWord;
move_size: LongWord;
begin
{$IFDEF SAP_STAT}
Inc(tmm.no_realloc);
{$ENDIF SAP_STAT}
block_size := GetAllocatedSize(p);
new_p := ThreadGetMem(tmm, size);
if new_p <> nil then
begin
if size > block_size then
move_size := block_size
else
move_size := size;
{$IFDEF SAP_STAT}
Inc(tmm.no_realloc_copy_bytes, move_size);
{$ENDIF SAP_STAT}
// System.Move(p^, new_p^, move_size);
SAPMoveMemory(new_p, p, move_size);
end;
// Interthread memory block is not freed in current thread, it must be freed in the thread of MM, which allocated it
// Instead of freeing the block it is put into allocating thread MM's special list for delayed release
LockForFreeFromOtherThread(mm);
PSAPBlocksFreedInOtherThreads(p).next := mm.blocks_to_free;
mm.blocks_to_free := p;
UnlockForFreeFromOtherThread(mm);
Result := new_p;
end;
function SAPRegisterExpectedMemoryLeak(P: Pointer): Boolean;
begin
Result := True;
end;
function SAPUnregisterExpectedMemoryLeak(P: Pointer): Boolean;
begin
Result := True;
end;
const
SAPManager: TMemoryManagerEx = (
GetMem: SAPGetMem;
FreeMem: SAPFreeMem;
ReallocMem: SAPReallocMem;
AllocMem: SAPAllocMem;
RegisterExpectedMemoryLeak: SAPRegisterExpectedMemoryLeak;
UnregisterExpectedMemoryLeak: SAPUnregisterExpectedMemoryLeak);
// hook for thread termination
var
PreviousEndHook: TSystemThreadEndProc = nil;
PreviousExitProcessProc: procedure = nil;
procedure ReleaseThreadMM(ExitCode: Integer);
var
mm: PSAPThreadMM;
begin
// Call previous "hook"
if Assigned(PreviousEndHook) then
PreviousEndHook(ExitCode);
// If process is terminated, no need to do anything,
// all allocated memory will be released by Windows
if not SAPIsActive then
Exit;
try
mm := GetThreadMM;
if mm = nil then
Exit;
if mm.magic <> cMagicMM then
Exit;
except
Exit;
end;
// Free thread ÌÌ
ThreadReleaseMM(mm);
end;
procedure SetThreadEndProc;
begin
PreviousEndHook := SystemThreadEndProc;
System.SystemThreadEndProc := @ReleaseThreadMM;
end;
procedure SAPMMInstall;
begin
GetMemoryManager(OldMM);
SetThreadEndProc;
SetMemoryManager(SAPManager);
SAPIsActive := True;
end;
//--------------------------------------
var
{$IFDEF SAP_MEMORYLEAKS}
LogFileName: string;
{$ENDIF SAP_MEMORYLEAKS}
LogFile: TextFile;
procedure FileOutput(s: string);
begin
writeln(LogFile, s);
end;
(*
procedure ShowOpStats;
var
i: Integer;
s: string;
begin
for i := 0 to stats_count - 1 do
begin
if stats[i].op = 'G' then
s := 'get(' + IntToStr(stats[i].Size) + '): ' // + IntToHex(LongWord(stats[i].adr), 8)
// else if stats[i].op = 'S' then
// s := 'small(' + IntToStr(stats[i].Size) + '): ' + IntToHex(LongWord(stats[i].adr), 8)
else if stats[i].op = 'X' then
s := 'sap_free: ' + IntToHex(LongWord(stats[i].adr), 8)
else if stats[i].op = '1' then
s := 'realloc: ' + IntToHex(LongWord(stats[i].adr), 8)
else if stats[i].op = '2' then
s := 'realloc(' + IntToStr(stats[i].Size) + ') '
+ ' -> '
+ IntToHex(LongWord(stats[i].adr), 8)
else if stats[i].op = '0' then
s := 'get0(' + IntToStr(stats[i].Size) + '): ' + IntToHex(LongWord(stats[i].adr), 8)
// else
// s := '?' + stats[i].op + '??(' + IntToStr(stats[i].Size) + '): ' + IntToHex(LongWord(stats[i].adr), 8)
;
FileOutput(IntToStr(i) + '. ' + s);
end;
end;
*)
{$IFDEF SAP_MEMORYLEAKS}
procedure SaveMemoryLeaksReport(x: PSAPThreadMM);
begin
LogFileName := 'leaks.log';
AssignFile(LogFile, LogFileName);
if FileExists(LogFileName) then
Erase(LogFile);
ReWrite(LogFile);
// SAPDebugUtils.output := FileOutput;
PrepareMemoryLeaksReport(x, FileOutput);
// CheckOSBlocks(x, true);
// ShowOpStats;
CloseFile(LogFile);
end;
{$ENDIF}
procedure ReportMemoryLeaks;
function CheckWorkMMs: Boolean;
var
x: PSAPThreadMM;
begin
x := work_mm;
while x <> nil do
begin
Result := x.no_free < x.no_get;
if Result then
begin
{$IFDEF SAP_MEMORYLEAKS}
SaveMemoryLeaksReport(x);
{$ENDIF SAP_MEMORYLEAKS}
Exit;
end;
x := x.next;
end;
Result := false;
end;
var
leaks: Boolean;
begin
if not ReportMemoryLeaksOnShutdown then
Exit;
ReportMemoryLeaksOnShutdown := False;
// Waiting for the threads to terminate
Sleep(250);
// SapMM is stopped, from now on memory is allocated via old ÌÌ
SetMemoryManager(OldMM);
memory_leaks_add := [sap_used_in_leaks_reporting];
CheckAndReleaseZombiMM;
LockMMsList;
leaks := zombi_mm <> nil;
if leaks then
begin
{$IFDEF SAP_MEMORYLEAKS}
SaveMemoryLeaksReport(zombi_mm);
{$ENDIF SAP_MEMORYLEAKS}
end
else begin
leaks := CheckWorkMMs;
end;
UnlockMMsList;
if leaks then
Windows.MessageBox(0,'Memory leak detected: not freed blocks found', 'Memory leaks', 0);
end;
initialization
SAPMMInstall;
finalization
SAPIsActive := False;
ReportMemoryLeaks;
end.