]> git.sesse.net Git - freerainbowtables/blob - Common/rt api/RTI2Reader.cpp
UINT4 -> uint32
[freerainbowtables] / Common / rt api / RTI2Reader.cpp
1 /*
2  * freerainbowtables is a project for generating, distributing, and using
3  * perfect rainbow tables
4  *
5  * Copyright 2010 Martin Westergaard Jørgensen <martinwj2005@gmail.com>
6  * Copyright 2010 James Nobis <frt@quelrod.net>
7  *
8  * This file is part of freerainbowtables.
9  *
10  * freerainbowtables is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * freerainbowtables is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with freerainbowtables.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24 #include "RTI2Reader.h"
25
26 #include <math.h>
27
28 RTI2Header *RTI2Reader::m_pHeader = NULL;
29 RTI2Reader::RTI2Reader(string Filename)
30 {
31         //m_pIndexPos = NULL, m_pChainPos = NULL;;
32         m_pIndex = NULL;
33         m_pFile = fopen(Filename.c_str(), "rb");
34         if(m_pFile == NULL)
35         {
36                 printf("Unable to open file %s", Filename.c_str());
37                 exit(1);
38         }
39         FILE *pFileIndex = fopen(Filename.append(".index").c_str(), "rb");
40         if(pFileIndex == NULL)
41         {
42                 printf("Unable to open file %s", Filename.append(".index").c_str());
43                 exit(1);
44         }
45         m_chainPosition = 0;
46
47         long len = GetFileLen(pFileIndex);
48         fseek(pFileIndex, 0, SEEK_SET);
49
50         m_pIndex = new unsigned char[len];
51         if(fread(m_pIndex, 1, len, pFileIndex) != (unsigned long)len)
52         {
53                 printf("Error while reading index file");
54                 exit(1);
55         }
56         fclose(pFileIndex);
57         m_pHeader = new RTI2Header();   
58         memcpy(m_pHeader, m_pIndex, sizeof(RTI2Header));
59         m_pHeader->m_cppos = (unsigned int*)(m_pIndex + 8);
60         m_pHeader->prefixstart = *(uint64*)(m_pIndex + 8 + (m_pHeader->rti_cplength * 4));
61         m_chainsizebytes = (uint32)ceil((float)(m_pHeader->rti_startptlength + m_pHeader->rti_endptlength + m_pHeader->rti_cplength) / 8); // Get the size of each chain in bytes
62         m_indexrowsizebytes = (uint32)ceil((float)m_pHeader->rti_index_numchainslength / 8);
63         // Check the filesize
64         fseek(m_pFile, 0, SEEK_END);
65         len = ftell(m_pFile);
66         fseek(m_pFile, 0, SEEK_SET);
67         if(len % m_chainsizebytes > 0)
68         {
69                 printf("Invalid filesize %ld\n", len);
70                 return;
71         }
72         
73
74 }
75
76 RTI2Reader::~RTI2Reader(void)
77 {
78         if(m_pIndex != NULL) delete m_pIndex;
79         if(m_pFile != NULL) fclose(m_pFile);
80
81 }
82
83 unsigned int RTI2Reader::GetChainsLeft()
84 {
85         long len = GetFileLen(m_pFile);
86         return len / m_chainsizebytes - m_chainPosition;
87 }
88
89 int RTI2Reader::ReadChains(unsigned int &numChains, RainbowChainCP *pData)
90 {
91         if(strncmp(m_pHeader->header, "RTI2", 4) != 0)
92         {
93                 numChains = 0;
94                 return -1;
95         }
96         unsigned char *pNumChains = m_pIndex + (m_pHeader->rti_cplength * 4) + 16; // Pointer into the index containing info about how many numbers are in the first chain prefix
97         unsigned int i = 0;
98         unsigned int indexRow = 0; // Current offset into the index
99         unsigned int curRowPosition = 0;
100         
101         while(true) // Fast forward to current position
102         {
103                 // ALERT: Possible problem here if m_indexrowsizebytes > 1 as pNumChains is a unsigned char.
104                 unsigned int NumChainsInRow = (unsigned int)*(pNumChains + indexRow * m_indexrowsizebytes);
105                 if(m_indexrowsizebytes > 1)
106                 {
107                         //XXX Have to find a solution to this problem
108                         printf( "FATAL: m_indexrowsizebytes > 1: %d\n", m_indexrowsizebytes ); 
109                         exit(2);
110                 }
111                 if(i + NumChainsInRow > m_chainPosition)
112                 {
113                         curRowPosition = m_chainPosition - i;
114                         break; // The current position is somewhere within this prefix
115                 }
116                 indexRow++;             
117                 i += NumChainsInRow;
118         }
119         
120         uint64 chainrow = 0; // Buffer to store a single read chain
121         unsigned int chainsProcessed = 0; // Number of chains processed
122
123         // XXX: same problem with unsigned char here.
124         unsigned int NumChainsInRow = *(pNumChains + indexRow);
125         while(chainsProcessed < numChains && fread(&chainrow, 1, m_chainsizebytes, m_pFile) == m_chainsizebytes)
126         {
127                 if(curRowPosition >= NumChainsInRow)
128                 { // Skip to next index row position
129                         indexRow++;
130                         curRowPosition = 0;
131                         NumChainsInRow = *(pNumChains + indexRow);
132                 }
133                 while(NumChainsInRow == 0) // We skip forward until we hit a index with > 0 chains
134                 {
135                         indexRow++;
136                         NumChainsInRow = *(pNumChains + indexRow);
137                         curRowPosition = 0;
138                 }
139                 // Load the starting point from the data
140                 pData[chainsProcessed].nIndexS = chainrow << ( 64 - m_pHeader->rti_startptlength );
141                 pData[chainsProcessed].nIndexS = pData[chainsProcessed].nIndexS >> ( 64 - m_pHeader->rti_startptlength );
142
143                 // Load the ending point prefix 
144                 pData[chainsProcessed].nIndexE = ( m_pHeader->prefixstart + indexRow ) << m_pHeader->rti_endptlength;
145                 // Append the ending point suffix
146 #if defined(_WIN32) && !defined(__GNUC__)
147                 pData[chainsProcessed].nIndexE |= (chainrow & (0xFFFFFFFFFFFFFFFFI64 >> m_pHeader->rti_cplength)) >> m_pHeader->rti_startptlength;
148 #else
149                 pData[chainsProcessed].nIndexE |= (chainrow & (0xFFFFFFFFFFFFFFFFllu >> m_pHeader->rti_cplength)) >> m_pHeader->rti_startptlength;
150 #endif
151                 //pData[chainsProcessed].nCheckPoint = (chainrow >> m_pHeader->rti_startptlength + m_pHeader->rti_endptlength);
152                 curRowPosition++;
153                 chainsProcessed++;
154         }
155         numChains = chainsProcessed;
156         m_chainPosition += numChains;
157         return 0;
158 }