]> git.sesse.net Git - freerainbowtables/blob - Common/rt api/MemoryPool.cpp
UINT4 -> uint32
[freerainbowtables] / Common / rt api / MemoryPool.cpp
1 /*
2  * freerainbowtables is a project for generating, distributing, and using
3  * perfect rainbow tables
4  *
5  * Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>
6  * Copyright Martin Westergaard Jørgensen <martinwj2005@gmail.com>
7  * Copyright 2009, 2010 Daniël Niggebrugge <niggebrugge@fox-it.com>
8  * Copyright 2009, 2010 James Nobis <frt@quelrod.net>
9  * Copyright 2010 uroskn
10  *
11  * This file is part of freerainbowtables.
12  *
13  * freerainbowtables is free software: you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation, either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * freerainbowtables is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with freerainbowtables.  If not, see <http://www.gnu.org/licenses/>.
25  */
26
27 #include "MemoryPool.h"
28 #include "Public.h"
29
30 CMemoryPool::CMemoryPool()
31 {
32         m_pMem = NULL;
33         m_nMemSize = 0;
34
35         unsigned int nAvailPhys = GetAvailPhysMemorySize();
36         if (nAvailPhys < 16 * 1024 * 1024)
37         {
38                 nAvailPhys = 512 * 1024 * 1024; // There is atleast 256 mb available (Some Linux distros returns a really low GetAvailPhysMemorySize()
39         }
40         if (nAvailPhys < 16 * 1024 * 1024)
41                 m_nMemMax = nAvailPhys / 2;                                     // Leave some memory for CChainWalkSet
42         else
43                 m_nMemMax = nAvailPhys - 8 * 1024 * 1024;       // Leave some memory for CChainWalkSet  
44 }
45
46 CMemoryPool::~CMemoryPool()
47 {
48         if (m_pMem != NULL)
49         {
50                 delete [] m_pMem;
51                 m_pMem = NULL;
52                 m_nMemSize = 0;
53         }
54 }
55
56 unsigned char* CMemoryPool::Allocate(unsigned int nFileLen, unsigned int& nAllocatedSize)
57 {
58         if (nFileLen <= m_nMemSize)
59         {
60                 nAllocatedSize = nFileLen;
61                 return m_pMem;
62         }
63
64         unsigned int nTargetSize;
65         if (nFileLen < m_nMemMax)
66                 nTargetSize = nFileLen;
67         else
68                 nTargetSize = m_nMemMax;
69
70         // Free existing memory
71         if (m_pMem != NULL)
72         {
73                 delete [] m_pMem;
74                 m_pMem = NULL;
75                 m_nMemSize = 0;
76         }
77
78         // Allocate new memory
79         //printf("allocating %u bytes memory\n", nTargetSize);
80         m_pMem = new (nothrow) unsigned char[nTargetSize];
81         while (m_pMem == NULL && nTargetSize >= 512 * 1024 * 1024 )
82         {
83                 nTargetSize -= 16 * 1024 * 1024;
84                 m_pMem = new (nothrow) unsigned char[nTargetSize];
85         }
86
87         if (m_pMem != NULL)
88         {
89                 m_nMemSize = nTargetSize;
90                 nAllocatedSize = nTargetSize;
91                 return m_pMem;
92         }
93         else
94         {
95                 m_nMemSize = 0;
96                 nAllocatedSize = 0;
97                 return NULL;
98         }
99 }