1 // -*- mode: cpp; mode: fold -*-
3 // $Id: hashes.cc,v 1.1 2001/03/06 07:15:29 jgg Exp $
4 /* ######################################################################
6 Hashes - Simple wrapper around the hash functions
8 This is just used to make building the methods simpler, this is the
9 only interface required..
11 ##################################################################### */
13 // Include Files /*{{{*/
16 #include <apt-pkg/hashes.h>
17 #include <apt-pkg/fileutl.h>
18 #include <apt-pkg/configuration.h>
19 #include <apt-pkg/md5.h>
20 #include <apt-pkg/sha1.h>
21 #include <apt-pkg/sha2.h>
31 const char * HashString::_SupportedHashes
[] =
33 "SHA512", "SHA256", "SHA1", "MD5Sum", "Checksum-FileSize", NULL
36 HashString::HashString()
40 HashString::HashString(std::string Type
, std::string Hash
) : Type(Type
), Hash(Hash
)
44 HashString::HashString(std::string StringedHash
) /*{{{*/
46 if (StringedHash
.find(":") == std::string::npos
)
48 // legacy: md5sum without "MD5Sum:" prefix
49 if (StringedHash
.size() == 32)
54 if(_config
->FindB("Debug::Hashes",false) == true)
55 std::clog
<< "HashString(string): invalid StringedHash " << StringedHash
<< std::endl
;
58 std::string::size_type pos
= StringedHash
.find(":");
59 Type
= StringedHash
.substr(0,pos
);
60 Hash
= StringedHash
.substr(pos
+1, StringedHash
.size() - pos
);
62 if(_config
->FindB("Debug::Hashes",false) == true)
63 std::clog
<< "HashString(string): " << Type
<< " : " << Hash
<< std::endl
;
66 bool HashString::VerifyFile(std::string filename
) const /*{{{*/
68 std::string fileHash
= GetHashForFile(filename
);
70 if(_config
->FindB("Debug::Hashes",false) == true)
71 std::clog
<< "HashString::VerifyFile: got: " << fileHash
<< " expected: " << toStr() << std::endl
;
73 return (fileHash
== Hash
);
76 bool HashString::FromFile(std::string filename
) /*{{{*/
78 // pick the strongest hash
80 Type
= _SupportedHashes
[0];
82 Hash
= GetHashForFile(filename
);
86 std::string
HashString::GetHashForFile(std::string filename
) const /*{{{*/
90 FileFd
Fd(filename
, FileFd::ReadOnly
);
91 if(strcasecmp(Type
.c_str(), "MD5Sum") == 0)
95 fileHash
= (std::string
)MD5
.Result();
97 else if (strcasecmp(Type
.c_str(), "SHA1") == 0)
101 fileHash
= (std::string
)SHA1
.Result();
103 else if (strcasecmp(Type
.c_str(), "SHA256") == 0)
105 SHA256Summation SHA256
;
107 fileHash
= (std::string
)SHA256
.Result();
109 else if (strcasecmp(Type
.c_str(), "SHA512") == 0)
111 SHA512Summation SHA512
;
113 fileHash
= (std::string
)SHA512
.Result();
115 else if (strcasecmp(Type
.c_str(), "Checksum-FileSize") == 0)
116 strprintf(fileHash
, "%llu", Fd
.FileSize());
122 const char** HashString::SupportedHashes() /*{{{*/
124 return _SupportedHashes
;
127 APT_PURE
bool HashString::empty() const /*{{{*/
129 return (Type
.empty() || Hash
.empty());
132 std::string
HashString::toStr() const /*{{{*/
134 return Type
+ ":" + Hash
;
137 APT_PURE
bool HashString::operator==(HashString
const &other
) const /*{{{*/
139 return (strcasecmp(Type
.c_str(), other
.Type
.c_str()) == 0 && Hash
== other
.Hash
);
141 APT_PURE
bool HashString::operator!=(HashString
const &other
) const
143 return !(*this == other
);
147 bool HashStringList::usable() const /*{{{*/
151 std::string
const forcedType
= _config
->Find("Acquire::ForceHash", "");
152 if (forcedType
.empty() == true)
154 // FileSize alone isn't usable
155 for (std::vector
<HashString
>::const_iterator hs
= list
.begin(); hs
!= list
.end(); ++hs
)
156 if (hs
->HashType() != "Checksum-FileSize")
160 return find(forcedType
) != NULL
;
163 HashString
const * HashStringList::find(char const * const type
) const /*{{{*/
165 if (type
== NULL
|| type
[0] == '\0')
167 std::string
const forcedType
= _config
->Find("Acquire::ForceHash", "");
168 if (forcedType
.empty() == false)
169 return find(forcedType
.c_str());
170 for (char const * const * t
= HashString::SupportedHashes(); *t
!= NULL
; ++t
)
171 for (std::vector
<HashString
>::const_iterator hs
= list
.begin(); hs
!= list
.end(); ++hs
)
172 if (strcasecmp(hs
->HashType().c_str(), *t
) == 0)
176 for (std::vector
<HashString
>::const_iterator hs
= list
.begin(); hs
!= list
.end(); ++hs
)
177 if (strcasecmp(hs
->HashType().c_str(), type
) == 0)
182 unsigned long long HashStringList::FileSize() const /*{{{*/
184 HashString
const * const hsf
= find("Checksum-FileSize");
187 std::string
const hv
= hsf
->HashValue();
188 return strtoull(hv
.c_str(), NULL
, 10);
191 bool HashStringList::FileSize(unsigned long long const Size
) /*{{{*/
194 strprintf(size
, "%llu", Size
);
195 return push_back(HashString("Checksum-FileSize", size
));
198 bool HashStringList::supported(char const * const type
) /*{{{*/
200 for (char const * const * t
= HashString::SupportedHashes(); *t
!= NULL
; ++t
)
201 if (strcasecmp(*t
, type
) == 0)
206 bool HashStringList::push_back(const HashString
&hashString
) /*{{{*/
208 if (hashString
.HashType().empty() == true ||
209 hashString
.HashValue().empty() == true ||
210 supported(hashString
.HashType().c_str()) == false)
213 // ensure that each type is added only once
214 HashString
const * const hs
= find(hashString
.HashType().c_str());
216 return *hs
== hashString
;
218 list
.push_back(hashString
);
222 bool HashStringList::VerifyFile(std::string filename
) const /*{{{*/
224 if (usable() == false)
227 Hashes
hashes(*this);
228 FileFd
file(filename
, FileFd::ReadOnly
);
229 HashString
const * const hsf
= find("Checksum-FileSize");
232 std::string fileSize
;
233 strprintf(fileSize
, "%llu", file
.FileSize());
234 if (hsf
->HashValue() != fileSize
)
238 HashStringList
const hsl
= hashes
.GetHashStringList();
242 bool HashStringList::operator==(HashStringList
const &other
) const /*{{{*/
244 std::string
const forcedType
= _config
->Find("Acquire::ForceHash", "");
245 if (forcedType
.empty() == false)
247 HashString
const * const hs
= find(forcedType
);
248 HashString
const * const ohs
= other
.find(forcedType
);
249 if (hs
== NULL
|| ohs
== NULL
)
254 for (const_iterator hs
= begin(); hs
!= end(); ++hs
)
256 HashString
const * const ohs
= other
.find(hs
->HashType());
267 bool HashStringList::operator!=(HashStringList
const &other
) const
269 return !(*this == other
);
273 // PrivateHashes /*{{{*/
274 class PrivateHashes
{
276 unsigned long long FileSize
;
277 unsigned int CalcHashes
;
279 explicit PrivateHashes(unsigned int const CalcHashes
) : FileSize(0), CalcHashes(CalcHashes
) {}
280 explicit PrivateHashes(HashStringList
const &Hashes
) : FileSize(0) {
281 unsigned int calcHashes
= Hashes
.usable() ? 0 : ~0;
282 if (Hashes
.find("MD5Sum") != NULL
)
283 calcHashes
|= Hashes::MD5SUM
;
284 if (Hashes
.find("SHA1") != NULL
)
285 calcHashes
|= Hashes::SHA1SUM
;
286 if (Hashes
.find("SHA256") != NULL
)
287 calcHashes
|= Hashes::SHA256SUM
;
288 if (Hashes
.find("SHA512") != NULL
)
289 calcHashes
|= Hashes::SHA512SUM
;
290 CalcHashes
= calcHashes
;
294 // Hashes::Add* - Add the contents of data or FD /*{{{*/
295 bool Hashes::Add(const unsigned char * const Data
, unsigned long long const Size
)
298 APT_IGNORE_DEPRECATED_PUSH
299 if ((d
->CalcHashes
& MD5SUM
) == MD5SUM
)
300 Res
&= MD5
.Add(Data
, Size
);
301 if ((d
->CalcHashes
& SHA1SUM
) == SHA1SUM
)
302 Res
&= SHA1
.Add(Data
, Size
);
303 if ((d
->CalcHashes
& SHA256SUM
) == SHA256SUM
)
304 Res
&= SHA256
.Add(Data
, Size
);
305 if ((d
->CalcHashes
& SHA512SUM
) == SHA512SUM
)
306 Res
&= SHA512
.Add(Data
, Size
);
307 APT_IGNORE_DEPRECATED_POP
311 bool Hashes::Add(const unsigned char * const Data
, unsigned long long const Size
, unsigned int const Hashes
)
313 d
->CalcHashes
= Hashes
;
314 return Add(Data
, Size
);
316 bool Hashes::AddFD(int const Fd
,unsigned long long Size
)
318 unsigned char Buf
[64*64];
319 bool const ToEOF
= (Size
== UntilEOF
);
320 while (Size
!= 0 || ToEOF
)
322 unsigned long long n
= sizeof(Buf
);
323 if (!ToEOF
) n
= std::min(Size
, n
);
324 ssize_t
const Res
= read(Fd
,Buf
,n
);
325 if (Res
< 0 || (!ToEOF
&& Res
!= (ssize_t
) n
)) // error, or short read
327 if (ToEOF
&& Res
== 0) // EOF
330 if (Add(Buf
, Res
) == false)
335 bool Hashes::AddFD(int const Fd
,unsigned long long Size
, unsigned int const Hashes
)
337 d
->CalcHashes
= Hashes
;
338 return AddFD(Fd
, Size
);
340 bool Hashes::AddFD(FileFd
&Fd
,unsigned long long Size
)
342 unsigned char Buf
[64*64];
343 bool const ToEOF
= (Size
== 0);
344 while (Size
!= 0 || ToEOF
)
346 unsigned long long n
= sizeof(Buf
);
347 if (!ToEOF
) n
= std::min(Size
, n
);
348 unsigned long long a
= 0;
349 if (Fd
.Read(Buf
, n
, &a
) == false) // error
353 if (a
!= n
) // short read
356 else if (a
== 0) // EOF
359 if (Add(Buf
, a
) == false)
364 bool Hashes::AddFD(FileFd
&Fd
,unsigned long long Size
, unsigned int const Hashes
)
366 d
->CalcHashes
= Hashes
;
367 return AddFD(Fd
, Size
);
370 HashStringList
Hashes::GetHashStringList()
372 HashStringList hashes
;
373 APT_IGNORE_DEPRECATED_PUSH
374 if ((d
->CalcHashes
& MD5SUM
) == MD5SUM
)
375 hashes
.push_back(HashString("MD5Sum", MD5
.Result().Value()));
376 if ((d
->CalcHashes
& SHA1SUM
) == SHA1SUM
)
377 hashes
.push_back(HashString("SHA1", SHA1
.Result().Value()));
378 if ((d
->CalcHashes
& SHA256SUM
) == SHA256SUM
)
379 hashes
.push_back(HashString("SHA256", SHA256
.Result().Value()));
380 if ((d
->CalcHashes
& SHA512SUM
) == SHA512SUM
)
381 hashes
.push_back(HashString("SHA512", SHA512
.Result().Value()));
382 APT_IGNORE_DEPRECATED_POP
383 hashes
.FileSize(d
->FileSize
);
386 APT_IGNORE_DEPRECATED_PUSH
387 Hashes::Hashes() : d(new PrivateHashes(~0)) { }
388 Hashes::Hashes(unsigned int const Hashes
) : d(new PrivateHashes(Hashes
)) {}
389 Hashes::Hashes(HashStringList
const &Hashes
) : d(new PrivateHashes(Hashes
)) {}
390 Hashes::~Hashes() { delete d
; }
391 APT_IGNORE_DEPRECATED_POP