summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--src/eyetil.cc14
-rw-r--r--src/eyetil.h37
2 files changed, 51 insertions, 0 deletions
diff --git a/src/eyetil.cc b/src/eyetil.cc
index 7669cb6..57ae607 100644
--- a/src/eyetil.cc
+++ b/src/eyetil.cc
@@ -1,163 +1,177 @@
1#include <stdlib.h> 1#include <stdlib.h>
2#include <sys/stat.h> 2#include <sys/stat.h>
3#include <syslog.h> 3#include <syslog.h>
4#include <iostream> 4#include <iostream>
5#include <cassert> 5#include <cassert>
6#include <stdexcept> 6#include <stdexcept>
7#include <algorithm> 7#include <algorithm>
8#include <numeric> 8#include <numeric>
9#include <openssl/md5.h> 9#include <openssl/md5.h>
10#include "eyetil.h" 10#include "eyetil.h"
11 11
12#include "config.h" 12#include "config.h"
13#ifdef HAVE_LIBUUID 13#ifdef HAVE_LIBUUID
14# include <uuid/uuid.h> 14# include <uuid/uuid.h>
15#endif 15#endif
16 16
17binary_t& binary_t::from_hex(const std::string& h) { 17binary_t& binary_t::from_hex(const std::string& h) {
18 std::string::size_type hs = h.length(); 18 std::string::size_type hs = h.length();
19 if(hs&1) 19 if(hs&1)
20 throw std::runtime_error("odd number of characters in hexadecimal number"); 20 throw std::runtime_error("odd number of characters in hexadecimal number");
21 int rvs = hs>>1; 21 int rvs = hs>>1;
22 resize(rvs); 22 resize(rvs);
23 const unsigned char *hp = (const unsigned char*)h.data(); 23 const unsigned char *hp = (const unsigned char*)h.data();
24 iterator oi=begin(); 24 iterator oi=begin();
25 char t[3] = { 0,0,0 }; 25 char t[3] = { 0,0,0 };
26 for(int i=0;i<rvs;++i) { 26 for(int i=0;i<rvs;++i) {
27 t[0]=*(hp++); t[1]=*(hp++); 27 t[0]=*(hp++); t[1]=*(hp++);
28 *(oi++) = strtol(t,0,16); 28 *(oi++) = strtol(t,0,16);
29 } 29 }
30 return *this; 30 return *this;
31} 31}
32 32
33binary_t& binary_t::from_data(const void *d,size_t s) { 33binary_t& binary_t::from_data(const void *d,size_t s) {
34 resize(s); 34 resize(s);
35 std::copy((const unsigned char*)d,(const unsigned char *)d+s, 35 std::copy((const unsigned char*)d,(const unsigned char *)d+s,
36 begin() ); 36 begin() );
37 return *this; 37 return *this;
38} 38}
39 39
40binary_t& binary_t::make_nonce() { 40binary_t& binary_t::make_nonce() {
41#ifdef HAVE_LIBUUID 41#ifdef HAVE_LIBUUID
42 uuid_t uuid; 42 uuid_t uuid;
43 uuid_generate(uuid); 43 uuid_generate(uuid);
44 from_data((unsigned char*)uuid,sizeof(uuid)); 44 from_data((unsigned char*)uuid,sizeof(uuid));
45#else 45#else
46 resize(16); 46 resize(16);
47 std::generate_n(begin(),16,rand); 47 std::generate_n(begin(),16,rand);
48#endif /* HAVE_LIBUUID */ 48#endif /* HAVE_LIBUUID */
49 return *this; 49 return *this;
50} 50}
51 51
52std::string binary_t::hex() const { 52std::string binary_t::hex() const {
53 std::string rv; 53 std::string rv;
54 rv.reserve((size()<<1)+1); 54 rv.reserve((size()<<1)+1);
55 char t[3] = {0,0,0}; 55 char t[3] = {0,0,0};
56 for(const_iterator i=begin(),ie=end();i!=ie;++i) { 56 for(const_iterator i=begin(),ie=end();i!=ie;++i) {
57 int rc = snprintf(t,sizeof(t),"%02x",*i); 57 int rc = snprintf(t,sizeof(t),"%02x",*i);
58 assert(rc<sizeof(t)); 58 assert(rc<sizeof(t));
59 rv += t; 59 rv += t;
60 } 60 }
61 return rv; 61 return rv;
62} 62}
63 63
64binary_t binary_t::md5() const { 64binary_t binary_t::md5() const {
65 binary_t rv(MD5_DIGEST_LENGTH); 65 binary_t rv(MD5_DIGEST_LENGTH);
66 if(!MD5( 66 if(!MD5(
67 (const unsigned char*)&(front()),size(), 67 (const unsigned char*)&(front()),size(),
68 (unsigned char*)&(rv.front()) )) 68 (unsigned char*)&(rv.front()) ))
69 throw std::runtime_error("failed to md5()"); 69 throw std::runtime_error("failed to md5()");
70 return rv; 70 return rv;
71} 71}
72 72
73void md5_digester::init() {
74 if(!MD5_Init(&ctx)) throw std::runtime_error("failed to MD5_Init()");
75}
76void md5_digester::update(const void *d,size_t l) {
77 if(!MD5_Update(&ctx,d,l)) throw std::runtime_error("failed to MD5_Update()");
78}
79binary_t md5_digester::final() {
80 binary_t rv(MD5_DIGEST_LENGTH);
81 if(!MD5_Final((unsigned char*)&(rv.front()), &ctx))
82 throw std::runtime_error("failed to MD5_Final()");
83 return rv;
84}
85
86
73static void make_path_for_template(const std::string& p,mode_t m) { 87static void make_path_for_template(const std::string& p,mode_t m) {
74 struct stat st; 88 struct stat st;
75 std::string pp; 89 std::string pp;
76 for(std::string::size_type sl=p.find('/',1); 90 for(std::string::size_type sl=p.find('/',1);
77 sl!=std::string::npos; 91 sl!=std::string::npos;
78 sl=p.find('/',sl+1)) { 92 sl=p.find('/',sl+1)) {
79 if(stat( (pp=p.substr(0,sl)).c_str() ,&st) 93 if(stat( (pp=p.substr(0,sl)).c_str() ,&st)
80 || !S_ISDIR(st.st_mode)) { 94 || !S_ISDIR(st.st_mode)) {
81 if(mkdir(pp.c_str(),m)) 95 if(mkdir(pp.c_str(),m))
82 throw std::runtime_error("failed to mkdir()"); 96 throw std::runtime_error("failed to mkdir()");
83 } 97 }
84 } 98 }
85} 99}
86 100
87tmpdir_t::tmpdir_t(const std::string& dt) : dir(dt) { 101tmpdir_t::tmpdir_t(const std::string& dt) : dir(dt) {
88 make_path_for_template(dt,0777); 102 make_path_for_template(dt,0777);
89 if(!mkdtemp((char*)dir.data())) 103 if(!mkdtemp((char*)dir.data()))
90 throw std::runtime_error("failed to mkdtmp()"); 104 throw std::runtime_error("failed to mkdtmp()");
91} 105}
92tmpdir_t::~tmpdir_t() { 106tmpdir_t::~tmpdir_t() {
93 assert(!dir.empty()); 107 assert(!dir.empty());
94 if(rmdir(dir.c_str())) { 108 if(rmdir(dir.c_str())) {
95 syslog(LOG_WARNING,"Failed to remove '%s' directory",dir.c_str()); 109 syslog(LOG_WARNING,"Failed to remove '%s' directory",dir.c_str());
96 } 110 }
97} 111}
98 112
99std::string tmpdir_t::get_file(const std::string& f) { 113std::string tmpdir_t::get_file(const std::string& f) {
100 std::string::size_type ls = f.rfind('/'); 114 std::string::size_type ls = f.rfind('/');
101 return dir+'/'+( 115 return dir+'/'+(
102 (ls==std::string::npos) 116 (ls==std::string::npos)
103 ? f 117 ? f
104 : f.substr(ls+1) 118 : f.substr(ls+1)
105 ); 119 );
106} 120}
107 121
108tarchive_t::tarchive_t(void *p,size_t s) : a(archive_read_new()), e(0) { 122tarchive_t::tarchive_t(void *p,size_t s) : a(archive_read_new()), e(0) {
109 if(!a) throw std::runtime_error("failed to archive_read_new()"); 123 if(!a) throw std::runtime_error("failed to archive_read_new()");
110 if(archive_read_support_format_tar(a)) { 124 if(archive_read_support_format_tar(a)) {
111 archive_read_finish(a); 125 archive_read_finish(a);
112 throw std::runtime_error("failed to archive_read_support_format_tar()"); 126 throw std::runtime_error("failed to archive_read_support_format_tar()");
113 } 127 }
114 if(archive_read_open_memory(a,p,s)) { 128 if(archive_read_open_memory(a,p,s)) {
115 archive_read_finish(a); 129 archive_read_finish(a);
116 throw std::runtime_error("failed to archive_read_open_memory()"); 130 throw std::runtime_error("failed to archive_read_open_memory()");
117 } 131 }
118} 132}
119tarchive_t::~tarchive_t() { 133tarchive_t::~tarchive_t() {
120 assert(a); 134 assert(a);
121 archive_read_finish(a); 135 archive_read_finish(a);
122} 136}
123 137
124bool tarchive_t::read_next_header() { 138bool tarchive_t::read_next_header() {
125 assert(a); 139 assert(a);
126 return archive_read_next_header(a,&e)==ARCHIVE_OK; 140 return archive_read_next_header(a,&e)==ARCHIVE_OK;
127} 141}
128 142
129std::string tarchive_t::entry_pathname() { 143std::string tarchive_t::entry_pathname() {
130 assert(a); assert(e); 144 assert(a); assert(e);
131 return archive_entry_pathname(e); 145 return archive_entry_pathname(e);
132} 146}
133 147
134bool tarchive_t::read_data_into_fd(int fd) { 148bool tarchive_t::read_data_into_fd(int fd) {
135 assert(a); 149 assert(a);
136 return archive_read_data_into_fd(a,fd)==ARCHIVE_OK; 150 return archive_read_data_into_fd(a,fd)==ARCHIVE_OK;
137} 151}
138 152
139#pragma pack(1) 153#pragma pack(1)
140struct block512_t { 154struct block512_t {
141 enum { words = 512 / sizeof(uint16_t) }; 155 enum { words = 512 / sizeof(uint16_t) };
142 uint16_t data[words]; 156 uint16_t data[words];
143 157
144 static uint16_t tcpcksum(block512_t& data) { 158 static uint16_t tcpcksum(block512_t& data) {
145 uint32_t sum = std::accumulate(data.data,data.data+words,0); 159 uint32_t sum = std::accumulate(data.data,data.data+words,0);
146 while(uint32_t hw = sum>>16) sum = (sum&0xffff)+hw; 160 while(uint32_t hw = sum>>16) sum = (sum&0xffff)+hw;
147 return ~sum; 161 return ~sum;
148 } 162 }
149 163
150}; 164};
151#pragma pack() 165#pragma pack()
152 166
153binary_t integrity_digest(const void *ptr,size_t size,const std::string& ukey) { 167binary_t integrity_digest(const void *ptr,size_t size,const std::string& ukey) {
154 binary_t key; key.from_hex(ukey); 168 binary_t key; key.from_hex(ukey);
155 std::vector<uint16_t> blksums; blksums.reserve(size/sizeof(block512_t)); 169 std::vector<uint16_t> blksums; blksums.reserve(size/sizeof(block512_t));
156 block512_t *db = (block512_t*)ptr, 170 block512_t *db = (block512_t*)ptr,
157 *de = db + size/sizeof(block512_t); 171 *de = db + size/sizeof(block512_t);
158 std::transform( db, de, std::back_inserter(blksums), block512_t::tcpcksum ); 172 std::transform( db, de, std::back_inserter(blksums), block512_t::tcpcksum );
159 binary_t subject; 173 binary_t subject;
160 subject.from_data((void*)&(blksums.front()),blksums.size()*sizeof(uint16_t)); 174 subject.from_data((void*)&(blksums.front()),blksums.size()*sizeof(uint16_t));
161 std::copy( key.begin(), key.end(), std::back_inserter(subject) ); 175 std::copy( key.begin(), key.end(), std::back_inserter(subject) );
162 return subject.md5(); 176 return subject.md5();
163} 177}
diff --git a/src/eyetil.h b/src/eyetil.h
index d946e71..eff2c43 100644
--- a/src/eyetil.h
+++ b/src/eyetil.h
@@ -1,52 +1,89 @@
1#ifndef __EYETIL_H 1#ifndef __EYETIL_H
2#define __EYETIL_H 2#define __EYETIL_H
3 3
4#include <vector> 4#include <vector>
5#include <string> 5#include <string>
6#include <archive.h> 6#include <archive.h>
7#include <archive_entry.h> 7#include <archive_entry.h>
8#include "openssl/md5.h"
8 9
9class binary_t : public std::vector<unsigned char> { 10class binary_t : public std::vector<unsigned char> {
10 public: 11 public:
11 binary_t() { } 12 binary_t() { }
12 binary_t(size_type n) : std::vector<unsigned char>(n) { } 13 binary_t(size_type n) : std::vector<unsigned char>(n) { }
13 binary_t(const std::string& h) { from_hex(h); } 14 binary_t(const std::string& h) { from_hex(h); }
14 binary_t(const void *d,size_t s) { from_data(d,s); } 15 binary_t(const void *d,size_t s) { from_data(d,s); }
15 16
16 binary_t& from_hex(const std::string& h); 17 binary_t& from_hex(const std::string& h);
17 binary_t& from_data(const void *d,size_t s); 18 binary_t& from_data(const void *d,size_t s);
18 binary_t& make_nonce(); 19 binary_t& make_nonce();
19 20
20 std::string hex() const; 21 std::string hex() const;
21 binary_t md5() const; 22 binary_t md5() const;
22}; 23};
23 24
25struct md5_digester {
26 MD5_CTX ctx;
27 md5_digester() { init(); }
28
29 void init();
30 void update(const void *d,size_t l);
31 binary_t final();
32
33 template<typename T>
34 void update(const T& x) { update(&x,sizeof(x)); }
35
36 template<typename T>
37 struct update_iterator : public std::iterator<std::output_iterator_tag,T,void,T*,T&> {
38 md5_digester *d;
39 update_iterator(md5_digester *d_) : d(d_) { }
40 update_iterator(const update_iterator& x) : d(x.d) { }
41
42 update_iterator& operator*() { return *this; }
43 update_iterator& operator++() { return *this; }
44 update_iterator& operator++(int) { return *this; }
45
46 update_iterator& operator=(const T& x) {
47 d->update(x); return *this;
48 }
49 };
50
51 template<typename T>
52 update_iterator<T> updater() {
53 return update_iterator<T>(this);
54 }
55
56};
57template<> inline void md5_digester::update<binary_t>(const binary_t& x) {
58 update((const unsigned char*)&(x.front()),x.size());
59}
60
24class tmpdir_t { 61class tmpdir_t {
25 public: 62 public:
26 std::string dir; 63 std::string dir;
27 64
28 tmpdir_t(const std::string& dt); 65 tmpdir_t(const std::string& dt);
29 ~tmpdir_t(); 66 ~tmpdir_t();
30 67
31 std::string get_file(const std::string& f); 68 std::string get_file(const std::string& f);
32}; 69};
33 70
34class tarchive_t { 71class tarchive_t {
35 public: 72 public:
36 struct archive *a; 73 struct archive *a;
37 struct archive_entry *e; 74 struct archive_entry *e;
38 75
39 tarchive_t(void *p,size_t s); 76 tarchive_t(void *p,size_t s);
40 ~tarchive_t(); 77 ~tarchive_t();
41 78
42 bool read_next_header(); 79 bool read_next_header();
43 80
44 std::string entry_pathname(); 81 std::string entry_pathname();
45 82
46 bool read_data_into_fd(int fd); 83 bool read_data_into_fd(int fd);
47}; 84};
48 85
49binary_t integrity_digest(const void *ptr,size_t size, 86binary_t integrity_digest(const void *ptr,size_t size,
50 const std::string& ukey); 87 const std::string& ukey);
51 88
52#endif /* __EYETIL_H */ 89#endif /* __EYETIL_H */