3 /// Generate SHA1 sums of raw Blackberry database records.
4 /// This is mostly useful for data verification during testing.
8 Copyright (C) 2008-2010, Net Direct Inc. (http://www.netdirect.ca/)
10 This program 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.
15 This program 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.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #include <barry/barry.h>
32 using namespace Barry
;
37 const char *Version
= Barry::Version(major
, minor
);
40 << "brecsum - Generate SHA1 sums of raw Blackberry database records.\n"
41 << " Copyright 2008-2010, Net Direct Inc. (http://www.netdirect.ca/)\n"
42 << " Using: " << Version
<< "\n"
44 << " -d db Read database 'db' and sum all its records.\n"
45 << " Can be used multiple times to fetch more than one DB\n"
47 << " -i Include DB Name, Type, and Unique record IDs in the checksums\n"
48 << " -p pin PIN of device to talk with\n"
49 << " If only one device is plugged in, this flag is optional\n"
50 << " -P pass Simplistic method to specify device password\n"
51 << " -v Dump protocol data during operation\n"
55 class ChecksumParser
: public Barry::Parser
61 explicit ChecksumParser(bool IncludeIds
)
62 : m_IncludeIds(IncludeIds
)
65 virtual void StartParser()
70 virtual void ParseRecord(const Barry::DBData
&data
,
71 const Barry::IConverter
*ic
)
74 SHA1_Update(&m_ctx
, data
.GetDBName().c_str(),
75 data
.GetDBName().size());
77 uint8_t recType
= data
.GetRecType();
78 SHA1_Update(&m_ctx
, &recType
, sizeof(recType
));
80 uint32_t uniqueId
= data
.GetUniqueId();
81 SHA1_Update(&m_ctx
, &uniqueId
, sizeof(uniqueId
));
84 int len
= data
.GetData().GetSize() - data
.GetOffset();
86 data
.GetData().GetData() + data
.GetOffset(), len
);
89 virtual void EndParser()
91 unsigned char sha1
[SHA_DIGEST_LENGTH
];
92 SHA1_Final(sha1
, &m_ctx
);
94 for( int i
= 0; i
< SHA_DIGEST_LENGTH
; i
++ ) {
95 cout
<< hex
<< setfill('0') << setw(2)
96 << (unsigned int) sha1
[i
];
102 int main(int argc
, char *argv
[])
106 cout
.sync_with_stdio(true); // leave this on, since libusb uses
107 // stdio for debug messages
116 vector
<string
> dbNames
;
118 // process command line options
120 int cmd
= getopt(argc
, argv
, "d:hip:P:v");
126 case 'd': // show dbname
127 dbNames
.push_back(string(optarg
));
130 case 'i': // Include IDs
134 case 'p': // Blackberry PIN
135 pin
= strtoul(optarg
, NULL
, 16);
138 case 'P': // Device password
142 case 'v': // data dump on
153 // Display usage info if user appears confused
154 if( !dbNames
.size() ) {
159 // Initialize the barry library. Must be called before
161 Barry::Init(data_dump
);
163 // Probe the USB bus for Blackberry devices and display.
165 int activeDevice
= probe
.FindActive(pin
);
166 if( activeDevice
== -1 ) {
167 cerr
<< "No device selected, or PIN not found" << endl
;
171 // Create our controller object
172 Barry::Controller
con(probe
.Get(activeDevice
));
173 Barry::Mode::Desktop
desktop(con
);
175 // Sum all specified databases
176 if( dbNames
.size() ) {
177 vector
<string
>::iterator b
= dbNames
.begin();
178 ChecksumParser
parser(include_ids
);
180 desktop
.Open(password
.c_str());
181 for( ; b
!= dbNames
.end(); b
++ ) {
182 unsigned int id
= desktop
.GetDBID(*b
);
183 desktop
.LoadDatabase(id
, parser
);
188 catch( std::exception
&e
) {
189 std::cerr
<< e
.what() << endl
;