summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2013-02-13 22:30:47 (UTC)
committer Michael Krelin <hacker@klever.net>2013-02-13 22:30:47 (UTC)
commitd6d845ab3cdbc76943d68329aa0aaa3ddf2af21a (patch) (unidiff)
treea115a131493aa73cdc4fe00f2e002a2f32f67d4e
parent41f437eeadaae0dce4a3dad3da6dde2bd3c3de99 (diff)
downloadiii-d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a.zip
iii-d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a.tar.gz
iii-d6d845ab3cdbc76943d68329aa0aaa3ddf2af21a.tar.bz2
moved tcp checksum calculation to header
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--src/eyetil.cc18
-rw-r--r--src/eyetil.h11
2 files changed, 16 insertions, 13 deletions
diff --git a/src/eyetil.cc b/src/eyetil.cc
index 11e2fb7..cd22eea 100644
--- a/src/eyetil.cc
+++ b/src/eyetil.cc
@@ -38,136 +38,128 @@ binary_t& binary_t::from_data(const void *d,size_t s) {
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 size_t rc = snprintf(t,sizeof(t),"%02x",*i); 57 size_t 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() { 73void md5_digester::init() {
74 if(!MD5_Init(&ctx)) throw std::runtime_error("failed to MD5_Init()"); 74 if(!MD5_Init(&ctx)) throw std::runtime_error("failed to MD5_Init()");
75} 75}
76void md5_digester::update(const void *d,size_t l) { 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()"); 77 if(!MD5_Update(&ctx,d,l)) throw std::runtime_error("failed to MD5_Update()");
78} 78}
79binary_t md5_digester::final() { 79binary_t md5_digester::final() {
80 binary_t rv(MD5_DIGEST_LENGTH); 80 binary_t rv(MD5_DIGEST_LENGTH);
81 if(!MD5_Final((unsigned char*)&(rv.front()), &ctx)) 81 if(!MD5_Final((unsigned char*)&(rv.front()), &ctx))
82 throw std::runtime_error("failed to MD5_Final()"); 82 throw std::runtime_error("failed to MD5_Final()");
83 return rv; 83 return rv;
84} 84}
85 85
86uint16_t block512_t::tcpcksum(block512_t& data) {
87 uint32_t sum = std::accumulate(data.data,data.data+words,0);
88 while(uint32_t hw = sum>>16) sum = (sum&0xffff)+hw;
89 return 0xffff&~sum;
90}
86 91
87static void make_path_for_template(const std::string& p,mode_t m) { 92static void make_path_for_template(const std::string& p,mode_t m) {
88 struct stat st; 93 struct stat st;
89 std::string pp; 94 std::string pp;
90 for(std::string::size_type sl=p.find('/',1); 95 for(std::string::size_type sl=p.find('/',1);
91 sl!=std::string::npos; 96 sl!=std::string::npos;
92 sl=p.find('/',sl+1)) { 97 sl=p.find('/',sl+1)) {
93 if(stat( (pp=p.substr(0,sl)).c_str() ,&st) 98 if(stat( (pp=p.substr(0,sl)).c_str() ,&st)
94 || !S_ISDIR(st.st_mode)) { 99 || !S_ISDIR(st.st_mode)) {
95 if(mkdir(pp.c_str(),m)) 100 if(mkdir(pp.c_str(),m))
96 throw std::runtime_error("failed to mkdir()"); 101 throw std::runtime_error("failed to mkdir()");
97 } 102 }
98 } 103 }
99} 104}
100 105
101tmpdir_t::tmpdir_t(const std::string& dt) : dir(dt) { 106tmpdir_t::tmpdir_t(const std::string& dt) : dir(dt) {
102 make_path_for_template(dt,0777); 107 make_path_for_template(dt,0777);
103 if(!mkdtemp((char*)dir.data())) 108 if(!mkdtemp((char*)dir.data()))
104 throw std::runtime_error("failed to mkdtmp()"); 109 throw std::runtime_error("failed to mkdtmp()");
105} 110}
106tmpdir_t::~tmpdir_t() { 111tmpdir_t::~tmpdir_t() {
107 assert(!dir.empty()); 112 assert(!dir.empty());
108 if(rmdir(dir.c_str())) { 113 if(rmdir(dir.c_str())) {
109 syslog(LOG_WARNING,"Failed to remove '%s' directory",dir.c_str()); 114 syslog(LOG_WARNING,"Failed to remove '%s' directory",dir.c_str());
110 } 115 }
111} 116}
112 117
113std::string tmpdir_t::get_file(const std::string& f) { 118std::string tmpdir_t::get_file(const std::string& f) {
114 std::string::size_type ls = f.rfind('/'); 119 std::string::size_type ls = f.rfind('/');
115 return dir+'/'+( 120 return dir+'/'+(
116 (ls==std::string::npos) 121 (ls==std::string::npos)
117 ? f 122 ? f
118 : f.substr(ls+1) 123 : f.substr(ls+1)
119 ); 124 );
120} 125}
121 126
122tarchive_t::tarchive_t(void *p,size_t s) : a(archive_read_new()), e(0) { 127tarchive_t::tarchive_t(void *p,size_t s) : a(archive_read_new()), e(0) {
123 if(!a) throw std::runtime_error("failed to archive_read_new()"); 128 if(!a) throw std::runtime_error("failed to archive_read_new()");
124 if(archive_read_support_format_tar(a)) { 129 if(archive_read_support_format_tar(a)) {
125 archive_read_finish(a); 130 archive_read_finish(a);
126 throw std::runtime_error("failed to archive_read_support_format_tar()"); 131 throw std::runtime_error("failed to archive_read_support_format_tar()");
127 } 132 }
128 if(archive_read_open_memory(a,p,s)) { 133 if(archive_read_open_memory(a,p,s)) {
129 archive_read_finish(a); 134 archive_read_finish(a);
130 throw std::runtime_error("failed to archive_read_open_memory()"); 135 throw std::runtime_error("failed to archive_read_open_memory()");
131 } 136 }
132} 137}
133tarchive_t::~tarchive_t() { 138tarchive_t::~tarchive_t() {
134 assert(a); 139 assert(a);
135 archive_read_finish(a); 140 archive_read_finish(a);
136} 141}
137 142
138bool tarchive_t::read_next_header() { 143bool tarchive_t::read_next_header() {
139 assert(a); 144 assert(a);
140 return archive_read_next_header(a,&e)==ARCHIVE_OK; 145 return archive_read_next_header(a,&e)==ARCHIVE_OK;
141} 146}
142 147
143std::string tarchive_t::entry_pathname() { 148std::string tarchive_t::entry_pathname() {
144 assert(a); assert(e); 149 assert(a); assert(e);
145 return archive_entry_pathname(e); 150 return archive_entry_pathname(e);
146} 151}
147 152
148bool tarchive_t::read_data_into_fd(int fd) { 153bool tarchive_t::read_data_into_fd(int fd) {
149 assert(a); 154 assert(a);
150 return archive_read_data_into_fd(a,fd)==ARCHIVE_OK; 155 return archive_read_data_into_fd(a,fd)==ARCHIVE_OK;
151} 156}
152 157
153#pragma pack(1)
154struct block512_t {
155 enum { words = 512 / sizeof(uint16_t) };
156 uint16_t data[words];
157
158 static uint16_t tcpcksum(block512_t& data) {
159 uint32_t sum = std::accumulate(data.data,data.data+words,0);
160 while(uint32_t hw = sum>>16) sum = (sum&0xffff)+hw;
161 return 0xffff&~sum;
162 }
163
164};
165#pragma pack()
166 158
167binary_t integrity_digest(const void *ptr,size_t size,const std::string& ukey) { 159binary_t integrity_digest(const void *ptr,size_t size,const std::string& ukey) {
168 md5_digester rv; 160 md5_digester rv;
169 std::transform( (block512_t*)ptr, ((block512_t*)ptr)+size/sizeof(block512_t), 161 std::transform( (block512_t*)ptr, ((block512_t*)ptr)+size/sizeof(block512_t),
170 rv.updater<uint16_t>(), block512_t::tcpcksum ); 162 rv.updater<uint16_t>(), block512_t::tcpcksum );
171 rv.update( binary_t(ukey) ); 163 rv.update( binary_t(ukey) );
172 return rv.final(); 164 return rv.final();
173} 165}
diff --git a/src/eyetil.h b/src/eyetil.h
index 03b9ba8..7517ba6 100644
--- a/src/eyetil.h
+++ b/src/eyetil.h
@@ -18,77 +18,88 @@ class binary_t : public std::vector<unsigned char> {
18 binary_t(size_type n) : std::vector<unsigned char>(n) { } 18 binary_t(size_type n) : std::vector<unsigned char>(n) { }
19 binary_t(const std::string& h) { from_hex(h); } 19 binary_t(const std::string& h) { from_hex(h); }
20 binary_t(const void *d,size_t s) { from_data(d,s); } 20 binary_t(const void *d,size_t s) { from_data(d,s); }
21 21
22 binary_t& from_hex(const std::string& h); 22 binary_t& from_hex(const std::string& h);
23 binary_t& from_data(const void *d,size_t s); 23 binary_t& from_data(const void *d,size_t s);
24 binary_t& make_nonce(); 24 binary_t& make_nonce();
25 25
26 std::string hex() const; 26 std::string hex() const;
27 binary_t md5() const; 27 binary_t md5() const;
28}; 28};
29 29
30struct md5_digester { 30struct md5_digester {
31 MD5_CTX ctx; 31 MD5_CTX ctx;
32 md5_digester() { init(); } 32 md5_digester() { init(); }
33 33
34 void init(); 34 void init();
35 void update(const void *d,size_t l); 35 void update(const void *d,size_t l);
36 binary_t final(); 36 binary_t final();
37 37
38 template<typename T> 38 template<typename T>
39 void update(const T& x) { update(&x,sizeof(x)); } 39 void update(const T& x) { update(&x,sizeof(x)); }
40 40
41 template<typename T> 41 template<typename T>
42 struct update_iterator : public std::iterator<std::output_iterator_tag,T,void,T*,T&> { 42 struct update_iterator : public std::iterator<std::output_iterator_tag,T,void,T*,T&> {
43 md5_digester *d; 43 md5_digester *d;
44 update_iterator(md5_digester *d_) : d(d_) { } 44 update_iterator(md5_digester *d_) : d(d_) { }
45 update_iterator(const update_iterator& x) : d(x.d) { } 45 update_iterator(const update_iterator& x) : d(x.d) { }
46 46
47 update_iterator& operator*() { return *this; } 47 update_iterator& operator*() { return *this; }
48 update_iterator& operator++() { return *this; } 48 update_iterator& operator++() { return *this; }
49 update_iterator& operator++(int) { return *this; } 49 update_iterator& operator++(int) { return *this; }
50 50
51 update_iterator& operator=(const T& x) { 51 update_iterator& operator=(const T& x) {
52 d->update(x); return *this; 52 d->update(x); return *this;
53 } 53 }
54 }; 54 };
55 55
56 template<typename T> 56 template<typename T>
57 update_iterator<T> updater() { 57 update_iterator<T> updater() {
58 return update_iterator<T>(this); 58 return update_iterator<T>(this);
59 } 59 }
60 60
61}; 61};
62template<> inline void md5_digester::update<binary_t>(const binary_t& x) { 62template<> inline void md5_digester::update<binary_t>(const binary_t& x) {
63 update((const unsigned char*)&(x.front()),x.size()); 63 update((const unsigned char*)&(x.front()),x.size());
64} 64}
65 65
66#pragma pack(1)
67struct block512_t {
68 enum { words = 512 / sizeof(uint16_t) };
69 uint16_t data[words];
70
71 inline uint8_t *dptr(size_t o) { return ((uint8_t*)this)+o; }
72
73 static uint16_t tcpcksum(block512_t& data);
74};
75#pragma pack()
76
66class tmpdir_t { 77class tmpdir_t {
67 public: 78 public:
68 std::string dir; 79 std::string dir;
69 80
70 tmpdir_t(const std::string& dt); 81 tmpdir_t(const std::string& dt);
71 ~tmpdir_t(); 82 ~tmpdir_t();
72 83
73 std::string get_file(const std::string& f); 84 std::string get_file(const std::string& f);
74}; 85};
75 86
76class tarchive_t { 87class tarchive_t {
77 public: 88 public:
78 struct archive *a; 89 struct archive *a;
79 struct archive_entry *e; 90 struct archive_entry *e;
80 91
81 tarchive_t(void *p,size_t s); 92 tarchive_t(void *p,size_t s);
82 ~tarchive_t(); 93 ~tarchive_t();
83 94
84 bool read_next_header(); 95 bool read_next_header();
85 96
86 std::string entry_pathname(); 97 std::string entry_pathname();
87 98
88 bool read_data_into_fd(int fd); 99 bool read_data_into_fd(int fd);
89}; 100};
90 101
91binary_t integrity_digest(const void *ptr,size_t size, 102binary_t integrity_digest(const void *ptr,size_t size,
92 const std::string& ukey); 103 const std::string& ukey);
93 104
94#endif /* __EYETIL_H */ 105#endif /* __EYETIL_H */