1999-05-14 16:32:07 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License
|
|
|
|
// at http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
|
|
// the License for the specific language governing rights and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is Kipp E.B. Hickman.
|
|
|
|
|
|
|
|
#ifndef __leaky_h_
|
|
|
|
#define __leaky_h_
|
|
|
|
|
|
|
|
#include "config.h"
|
1999-09-26 06:31:18 +00:00
|
|
|
#include <stdio.h>
|
1999-09-30 01:51:20 +00:00
|
|
|
#include <string.h>
|
1999-05-14 16:32:07 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include "dict.h"
|
|
|
|
#include "strset.h"
|
|
|
|
|
1999-09-25 07:09:15 +00:00
|
|
|
typedef unsigned int u_int;
|
|
|
|
|
1999-09-26 06:31:18 +00:00
|
|
|
struct Symbol;
|
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
struct TreeNode {
|
|
|
|
TreeNode(Symbol* aSymbol) {
|
1999-09-26 06:31:18 +00:00
|
|
|
symbol = aSymbol;
|
1999-09-30 01:51:20 +00:00
|
|
|
nextSibling = NULL;
|
|
|
|
descendants = NULL;
|
1999-09-30 21:22:16 +00:00
|
|
|
nextRoot = NULL;
|
1999-10-04 20:25:53 +00:00
|
|
|
bytesLeaked = 0;
|
|
|
|
descendantBytesLeaked = 0;
|
1999-09-26 06:31:18 +00:00
|
|
|
}
|
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
TreeNode* GetDirectDescendant(Symbol* aSymbol);
|
|
|
|
|
|
|
|
bool HasDescendants() const {
|
|
|
|
return NULL != descendants;
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeNode* AddDescendant(Symbol* aSymbol);
|
1999-09-26 06:31:18 +00:00
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
TreeNode* descendants;
|
|
|
|
TreeNode* nextSibling;
|
1999-09-30 21:22:16 +00:00
|
|
|
TreeNode* nextRoot;
|
1999-09-26 06:31:18 +00:00
|
|
|
Symbol* symbol;
|
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
u_long bytesLeaked;
|
|
|
|
u_long descendantBytesLeaked;
|
|
|
|
|
|
|
|
void* operator new(size_t size);
|
|
|
|
void operator delete(void* ptr);
|
|
|
|
|
|
|
|
static TreeNode* freeList;
|
1999-09-26 06:31:18 +00:00
|
|
|
};
|
|
|
|
|
1999-05-14 16:32:07 +00:00
|
|
|
struct Symbol {
|
1999-09-26 06:31:18 +00:00
|
|
|
char* name;
|
1999-05-14 16:32:07 +00:00
|
|
|
u_long address;
|
1999-09-30 01:51:20 +00:00
|
|
|
TreeNode* root;
|
1999-09-26 06:31:18 +00:00
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
void Init(const char* aName, u_long aAddress) {
|
|
|
|
name = aName ? strdup(aName) : "";
|
|
|
|
address = aAddress;
|
|
|
|
root = NULL;
|
1999-09-26 06:31:18 +00:00
|
|
|
}
|
1999-05-14 16:32:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct LoadMapEntry {
|
|
|
|
char* name; // name of .so
|
|
|
|
u_long address; // base address where it was mapped in
|
|
|
|
LoadMapEntry* next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct leaky {
|
|
|
|
leaky();
|
|
|
|
~leaky();
|
|
|
|
|
|
|
|
void initialize(int argc, char** argv);
|
|
|
|
void open();
|
|
|
|
|
|
|
|
char* applicationName;
|
|
|
|
char* logFile;
|
|
|
|
char* progFile;
|
|
|
|
|
1999-10-04 16:32:03 +00:00
|
|
|
int dumpLeaks;
|
1999-09-26 06:31:18 +00:00
|
|
|
int dumpGraph;
|
1999-09-30 01:51:20 +00:00
|
|
|
int dumpHTML;
|
1999-05-14 16:32:07 +00:00
|
|
|
int quiet;
|
1999-10-04 16:32:03 +00:00
|
|
|
int dumpEntireLog;
|
1999-05-14 16:32:07 +00:00
|
|
|
int showAddress;
|
1999-10-04 16:32:03 +00:00
|
|
|
bool dumpRefcnts;
|
1999-05-14 16:32:07 +00:00
|
|
|
u_int stackDepth;
|
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
int mappedLogFile;
|
|
|
|
malloc_log_entry* firstLogEntry;
|
|
|
|
malloc_log_entry* lastLogEntry;
|
1999-05-14 16:32:07 +00:00
|
|
|
u_int buckets;
|
|
|
|
MallocDict* dict;
|
1999-10-04 16:32:03 +00:00
|
|
|
MallocDict* refcntDict;
|
1999-05-14 16:32:07 +00:00
|
|
|
|
|
|
|
u_long mallocs;
|
|
|
|
u_long reallocs;
|
|
|
|
u_long frees;
|
|
|
|
u_long totalMalloced;
|
|
|
|
u_long errors;
|
|
|
|
u_long totalLeaked;
|
|
|
|
|
|
|
|
int sfd;
|
|
|
|
Symbol* externalSymbols;
|
|
|
|
u_int usefulSymbols;
|
|
|
|
u_int numExternalSymbols;
|
|
|
|
StrSet exclusions;
|
|
|
|
u_long lowestSymbolAddr;
|
|
|
|
u_long highestSymbolAddr;
|
|
|
|
|
|
|
|
LoadMapEntry* loadMap;
|
|
|
|
|
1999-09-30 21:22:16 +00:00
|
|
|
TreeNode* rootList;
|
|
|
|
|
|
|
|
StrSet roots;
|
1999-10-04 16:32:03 +00:00
|
|
|
StrSet includes;
|
1999-09-30 21:22:16 +00:00
|
|
|
|
1999-05-14 16:32:07 +00:00
|
|
|
void usageError();
|
|
|
|
|
|
|
|
void LoadMap();
|
|
|
|
|
|
|
|
void analyze();
|
|
|
|
|
|
|
|
void dumpLog();
|
|
|
|
void dumpEntryToLog(malloc_log_entry* lep);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
void dumpToTree();
|
|
|
|
void dumpEntryToTree(FILE* fp, malloc_log_entry* lep);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void insertAddress(u_long address, malloc_log_entry* lep);
|
|
|
|
void removeAddress(u_long address, malloc_log_entry* lep);
|
|
|
|
|
1999-09-30 01:51:20 +00:00
|
|
|
void displayStackTrace(FILE* out, malloc_log_entry* lep);
|
1999-05-14 16:32:07 +00:00
|
|
|
|
|
|
|
void ReadSymbols(const char* fileName, u_long aBaseAddress);
|
|
|
|
void ReadSharedLibrarySymbols();
|
|
|
|
void setupSymbols(const char* fileName);
|
1999-09-26 06:31:18 +00:00
|
|
|
Symbol* findSymbol(u_long address);
|
1999-10-04 16:32:03 +00:00
|
|
|
bool excluded(malloc_log_entry* lep);
|
|
|
|
bool included(malloc_log_entry* lep);
|
1999-09-26 06:31:18 +00:00
|
|
|
|
|
|
|
void buildLeakGraph();
|
|
|
|
Symbol* findLeakGraphRoot(Symbol* aStart, Symbol* aEnd);
|
|
|
|
void dumpLeakGraph();
|
1999-09-30 01:51:20 +00:00
|
|
|
void dumpLeakTree(TreeNode* aNode, int aIndent);
|
1999-09-26 06:31:18 +00:00
|
|
|
|
1999-10-04 16:32:03 +00:00
|
|
|
bool ShowThisEntry(malloc_log_entry* lep);
|
|
|
|
|
|
|
|
bool IsRefcnt(malloc_log_entry* lep) const {
|
|
|
|
return (lep->type == malloc_log_addref) ||
|
|
|
|
(lep->type == malloc_log_release);
|
|
|
|
}
|
|
|
|
|
1999-09-26 06:31:18 +00:00
|
|
|
static void indentBy(int aCount) {
|
|
|
|
while (--aCount >= 0) fputs(" ", stdout);
|
|
|
|
}
|
1999-05-14 16:32:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __leaky_h_ */
|