blob: d980afbf920033c1741537e0a93f0fbb274be1dc [file] [log] [blame]
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
Chaoyi Bian3e1eb162012-04-03 16:59:32 -070019 * Chaoyi Bian <bcy@pku.edu.cn>
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080020 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
22
23#ifndef SYNC_DIGEST_H
24#define SYNC_DIGEST_H
25
26#include <boost/exception/all.hpp>
27#include <openssl/evp.h>
28#include <boost/cstdint.hpp>
29
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080030namespace Sync {
31
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080032/**
33 * @ingroup sync
34 * @brief A simple wrapper for libcrypto hash functions
35 */
36class Digest
37{
38public:
39 /**
40 * @brief Default constructor. Will initialize internal libssl structures
41 */
42 Digest ();
43
44 /**
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080045 * @brief Check if digest is empty
46 */
47 bool
48 empty () const;
49
50 /**
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080051 * @brief Reset digest to the initial state
52 */
53 void
54 reset ();
55
56 /**
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080057 * @brief Destructor
58 */
59 ~Digest ();
60
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080061 /**
62 * @brief Obtain a short version of the hash (just first sizeof(size_t) bytes
63 *
Alexander Afanasyev1fbdcdd2012-03-05 23:14:33 -080064 * Side effect: finalize() will be called on `this'
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080065 */
66 std::size_t
Alexander Afanasyeva5858032012-03-09 15:55:10 -080067 getHash () const;
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080068
69 /**
Alexander Afanasyev1fbdcdd2012-03-05 23:14:33 -080070 * @brief Finalize digest. All subsequent calls to "operator <<" will fire an exception
71 */
72 void
73 finalize ();
74
75 /**
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080076 * @brief Compare two full digests
77 *
78 * Side effect: Finalize will be called on `this' and `digest'
79 */
80 bool
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080081 operator == (const Digest &digest) const;
82
83 bool
84 operator != (const Digest &digest) const
85 { return ! (*this == digest); }
86
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -080087
Alexander Afanasyevdf718f52012-03-02 00:23:04 -080088 /**
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080089 * @brief Add existing digest to digest calculation
Alexander Afanasyevdf718f52012-03-02 00:23:04 -080090 * @param src digest to combine with
91 *
92 * The result of this combination is hash (hash (...))
93 */
94 Digest &
95 operator << (const Digest &src);
96
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -080097 /**
98 * @brief Add string to digest calculation
99 * @param str string to put into digest
100 */
101 inline Digest &
102 operator << (const std::string &str);
Alexander Afanasyevdf718f52012-03-02 00:23:04 -0800103
Alexander Afanasyev58c77b02012-03-05 21:52:25 -0800104 /**
105 * @brief Add uint32_t value to digest calculation
106 * @param value uint32_t value to put into digest
107 */
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800108 inline Digest &
109 operator << (uint32_t value);
110
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700111 /**
112 * @brief Checks if the stored hash is zero-root hash
113 *
114 * Zero-root hash is a valid hash that optimally represents an empty state
115 */
116 bool
Alexander Afanasyev763855a2012-03-13 14:17:37 -0700117 isZero () const;
Alexander Afanasyevdd0eba72012-03-13 13:57:10 -0700118
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800119private:
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800120 Digest &
Chaoyi Bianb1190282012-06-13 17:15:07 -0700121 operator = (Digest &digest) { (void)digest; return *this; }
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800122
123 /**
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800124 * @brief Add size bytes of buffer to the hash
125 */
126 void
127 update (const uint8_t *buffer, size_t size);
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -0800128
129 friend std::ostream &
130 operator << (std::ostream &os, const Digest &digest);
131
132 friend std::istream &
133 operator >> (std::istream &is, Digest &digest);
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800134
135private:
136 EVP_MD_CTX *m_context;
137 uint8_t *m_buffer;
138 uint32_t m_hashLength;
139};
140
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800141namespace Error {
Alexander Afanasyev87c9b5d2012-03-07 17:23:21 -0800142struct DigestCalculationError : virtual boost::exception, virtual std::exception { };
Alexander Afanasyevc1030192012-03-08 22:21:28 -0800143}
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800144
Alexander Afanasyevd94542d2012-03-05 08:41:46 -0800145typedef boost::shared_ptr<Digest> DigestPtr;
146typedef boost::shared_ptr<const Digest> DigestConstPtr;
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800147
148Digest &
149Digest::operator << (const std::string &str)
150{
151 update (reinterpret_cast<const uint8_t*> (str.c_str ()), str.size ());
152 return *this;
153}
154
155inline Digest &
156Digest::operator << (uint32_t value)
157{
158 update (reinterpret_cast<const uint8_t*> (&value), sizeof (uint32_t));
159 return *this;
160}
161
Alexander Afanasyevb080dbf2012-03-05 10:25:22 -0800162std::ostream &
163operator << (std::ostream &os, const Digest &digest);
164
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -0800165std::istream &
166operator >> (std::istream &is, Digest &digest);
167
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800168// template<class INT>
169// Digest &
170// Digest::operator << (INT value)
171// {
172// update (&value, sizeof (INT));
173// return *this;
174// }
175
Alexander Afanasyevf3c03a92012-05-09 12:00:37 -0700176struct DigestPtrHash : public std::unary_function<Digest, std::size_t>
177{
178 std::size_t
179 operator() (DigestConstPtr digest) const
180 {
181 // std::cout << "digest->getHash: " << digest->getHash () << " (" << *digest << ")" << std::endl;
182 return digest->getHash ();
183 }
184};
185
186struct DigestPtrEqual : public std::unary_function<Digest, std::size_t>
187{
188 bool
189 operator() (DigestConstPtr digest1, DigestConstPtr digest2) const
190 {
191 // std::cout << boost::cref(*digest1) << " == " << boost::cref(*digest2) << " : " << (*digest1 == *digest2) << std::endl;
192 return *digest1 == *digest2;
193 }
194};
195
Alexander Afanasyeve00ffbe2012-03-05 00:01:36 -0800196
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800197} // Sync
Alexander Afanasyev8f25cbb2012-03-01 23:53:40 -0800198
199#endif // SYNC_DIGEST_H