{
}
-void SHA1Checksum::process(void *data, size_t len)
+void SHA1Checksum::process(const void *data, size_t len)
{
sha1_process_bytes(data, len, &ctx);
}
SHA1Checksum();
~SHA1Checksum();
- void process(void *data, size_t len);
+ void process(const void *data, size_t len);
const uint8_t *checksum();
size_t checksum_size() const { return 20; }
};
real.write(data, len);
}
+/* Provide checksumming of a data stream. */
+ChecksumOutputStream::ChecksumOutputStream(OutputStream &o)
+ : real(o)
+{
+}
+
+void ChecksumOutputStream::write_internal(const void *data, size_t len)
+{
+ real.write(data, len);
+ csum.process(data, len);
+}
+
+const uint8_t *ChecksumOutputStream::finish_and_checksum()
+{
+ return csum.checksum();
+}
+
/* Utility functions, for encoding data types to strings. */
string encode_u16(uint16_t val)
{
}
SegmentWriter::SegmentWriter(OutputStream *output, struct uuid u)
- : out(output),
+ : raw_out(output),
id(u),
object_stream(NULL)
{
+ /* All output data will be checksummed except the very last few bytes,
+ * which are the checksum itself. */
+ out = new ChecksumOutputStream(*raw_out);
+
/* Write out the segment header first. */
static const char signature[] = "LBSSEG0\n";
out->write(signature, strlen(signature));
out->write_s64(index_offset);
out->write_u32(objects.size());
+ /* Finally, append a checksum to the end of the file, so that its integrity
+ * (against accidental, not malicious, corruption) can be verified. */
+ const uint8_t *csum = out->finish_and_checksum();
+ raw_out->write(csum, out->checksum_size());
+
/* The SegmentWriter takes ownership of the OutputStream it is writing to,
* and destroys it automatically when done with the segment. */
delete out;
+ delete raw_out;
}
OutputStream *SegmentWriter::new_object()
#include <sstream>
#include <vector>
+#include "sha1.h"
+
/* In memory datatype to represent key/value pairs of information, such as file
* metadata. Currently implemented as map<string, string>. */
typedef std::map<std::string, std::string> dictionary;
OutputStream ℜ
};
+/* Like WrapperOutputStream, but additionally computes a checksum of data as it
+ * is written. */
+class ChecksumOutputStream : public OutputStream {
+public:
+ explicit ChecksumOutputStream(OutputStream &o);
+ virtual ~ChecksumOutputStream() { }
+
+ /* Once a checksum is computed, no further data should be written to the
+ * stream. */
+ const uint8_t *finish_and_checksum();
+ size_t checksum_size() const { return csum.checksum_size(); }
+
+protected:
+ virtual void write_internal(const void *data, size_t len);
+
+private:
+ OutputStream ℜ
+ SHA1Checksum csum;
+};
+
/* Simple wrappers that encode integers using a StringOutputStream and return
* the encoded result. */
std::string encode_u16(uint16_t val);
private:
typedef std::vector<std::pair<int64_t, int64_t> > object_table;
- OutputStream *out;
+ ChecksumOutputStream *out; // Output stream with checksumming enabled
+ OutputStream *raw_out; // Raw output stream, without checksumming
struct uuid id;
int64_t object_start_offset;