-
Notifications
You must be signed in to change notification settings - Fork 82
/
Fileinfo.cc
321 lines (281 loc) · 8.24 KB
/
Fileinfo.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*
copyright 2006-2017 Paul Dreik (earlier Paul Sundvall)
Distributed under GPL v 2.0 or later, at your option.
See LICENSE for further details.
*/
#include "config.h"
// std
#include <cassert>
#include <cerrno> //for errno
#include <cstring> //for strerror
#include <fstream> //for file reading
#include <iostream> //for cout etc
// os
#include <sys/stat.h> //for file info
#include <unistd.h> //for unlink etc.
// project
#include "Checksum.hh" //checksum calculation
#include "Fileinfo.hh"
#include "UndoableUnlink.hh"
int
Fileinfo::fillwithbytes(enum readtobuffermode filltype,
enum readtobuffermode lasttype)
{
// Decide if we are going to read from file or not.
// If file is short, first bytes might be ALL bytes!
if (lasttype != readtobuffermode::NOT_DEFINED) {
if (this->size() <= static_cast<filesizetype>(m_somebytes.size())) {
// pointless to read - all bytes in the file are in the field
// m_somebytes, or checksum is calculated!
return 0;
}
}
// set memory to zero
m_somebytes.fill('\0');
std::fstream f1;
f1.open(m_filename.c_str(), std::ios_base::in);
if (!f1.is_open()) {
std::cerr << "fillwithbytes.cc: Could not open file \"" << m_filename
<< "\"" << std::endl;
return -1;
}
auto checksumtype = Checksum::checksumtypes::NOTSET;
// read some bytes
switch (filltype) {
case readtobuffermode::READ_FIRST_BYTES:
// read at start of file
f1.read(m_somebytes.data(), SomeByteSize);
break;
case readtobuffermode::READ_LAST_BYTES:
// read at end of file
f1.seekg(-SomeByteSize, std::ios_base::end);
f1.read(m_somebytes.data(), SomeByteSize);
break;
case readtobuffermode::CREATE_MD5_CHECKSUM:
checksumtype = Checksum::checksumtypes::MD5;
break;
case readtobuffermode::CREATE_SHA1_CHECKSUM:
checksumtype = Checksum::checksumtypes::SHA1;
break;
case readtobuffermode::CREATE_SHA256_CHECKSUM:
checksumtype = Checksum::checksumtypes::SHA256;
break;
case readtobuffermode::CREATE_SHA512_CHECKSUM:
checksumtype = Checksum::checksumtypes::SHA512;
break;
default:
std::cerr << "does not know how to do that filltype:"
<< static_cast<long>(filltype) << std::endl;
}
if (checksumtype != Checksum::checksumtypes::NOTSET) {
Checksum chk(checksumtype);
char buffer[4096];
while (f1) {
f1.read(buffer, sizeof(buffer));
// gcount is never negative, the cast is safe.
chk.update(static_cast<std::size_t>(f1.gcount()), buffer);
}
// store the result of the checksum calculation in somebytes
int digestlength = chk.getDigestLength();
if (digestlength <= 0 ||
digestlength >= static_cast<int>(m_somebytes.size())) {
std::cerr << "wrong answer from getDigestLength! FIXME" << std::endl;
}
if (chk.printToBuffer(m_somebytes.data(), m_somebytes.size())) {
std::cerr << "failed writing digest to buffer!!" << std::endl;
}
}
return 0;
}
bool
Fileinfo::readfileinfo()
{
struct stat info;
m_info.is_file = false;
m_info.is_directory = false;
int res;
do {
res = stat(m_filename.c_str(), &info);
} while (res < 0 && errno == EINTR);
if (res < 0) {
m_info.stat_size = 0;
m_info.stat_ino = 0;
m_info.stat_dev = 0;
std::cerr << "readfileinfo.cc:Something went wrong when reading file "
"info from \""
<< m_filename << "\" :" << std::strerror(errno) << std::endl;
return false;
}
// only keep the relevant information
m_info.stat_size = info.st_size;
m_info.stat_ino = info.st_ino;
m_info.stat_dev = info.st_dev;
m_info.is_file = S_ISREG(info.st_mode);
m_info.is_directory = S_ISDIR(info.st_mode);
return true;
}
const char*
Fileinfo::getduptypestring(const Fileinfo& A)
{
switch (A.getduptype()) {
case duptype::DUPTYPE_UNKNOWN:
return "DUPTYPE_UNKNOWN";
case duptype::DUPTYPE_FIRST_OCCURRENCE:
return "DUPTYPE_FIRST_OCCURRENCE";
case duptype::DUPTYPE_WITHIN_SAME_TREE:
return "DUPTYPE_WITHIN_SAME_TREE";
case duptype::DUPTYPE_OUTSIDE_TREE:
return "DUPTYPE_OUTSIDE_TREE";
default:
assert("we should not get here!" == nullptr);
}
return "error-error";
}
// constructor
Fileinfo::Fileinfostat::Fileinfostat()
{
stat_size = 99999;
stat_ino = 99999;
stat_dev = 99999;
is_file = false;
is_directory = false;
}
int
Fileinfo::deletefile()
{
const int ret = unlink(name().c_str());
if (ret) {
std::cerr << "Failed deleting file " << name() << '\n';
}
return ret;
}
namespace {
int
simplifyPath(std::string& path)
{
// replace a/./b with a/b
do {
const auto pos = path.find("/./");
if (pos == std::string::npos) {
break;
}
path.replace(pos, 3, "/");
} while (true);
// replace repeated slashes
do {
const auto pos = path.find("//");
if (pos == std::string::npos) {
break;
}
path.replace(pos, 2, "/");
} while (true);
// getting rid of /../ is difficult to get correct because of symlinks.
// do not do it.
return 0;
}
// prepares target, so that location can point to target in
// the best way possible
int
makeAbsolute(std::string& target)
{
// if target is not absolute, let us make it absolute
if (target.length() > 0 && target.at(0) == '/') {
// absolute. do nothing.
} else {
// not absolute. make it absolute.
// yes, this is possible to do with dynamically allocated memory,
// but it is not portable then (and more work).
// hmm, would it be possible to cache this and gain some speedup?
const size_t buflength = 256;
char buf[buflength];
if (buf != getcwd(buf, buflength)) {
std::cerr << "failed to get current working directory" << std::endl;
return -1;
}
target = std::string(buf) + std::string("/") + target;
}
return 0;
}
/**
* helper for transactional operation on a file. It will move the file to a
* temporary, then invoke f with the filename as argument, then delete the
* temporary. In case of failure at any point, it will do it's best to restore
* the temporary back to the filename.
* @param filename
* @param f
* @return zero on success.
*/
template<typename Func>
int
transactional_operation(const std::string& filename, const Func& f)
{
// move the file to a temporary.
UndoableUnlink restorer(filename);
// did the move to a temporary go ok?
if (!restorer.file_is_moved()) {
return 1;
}
// yes, apply whatever the caller wanted.
const int ret = f(filename);
if (0 != ret) {
// operation failed! rollback time (made by restorer at scope exit)
return ret;
}
// operation succeeded, go ahead and unlink the temporary.
if (0 != restorer.unlink()) {
return 1;
}
return 0;
}
} // namespace
// makes a symlink that points to A
int
Fileinfo::makesymlink(const Fileinfo& A)
{
const int retval =
transactional_operation(name(), [&](const std::string& filename) {
// The tricky thing is that the path must be correct, as seen from
// the directory where *this is. Making the path absolute solves this
// problem. Doing string manipulations to find how to make the path
// relative is prone to error because directories can be symlinks.
std::string target = A.name();
makeAbsolute(target);
// clean up the path, so it does not contain sequences "/./" or "//"
simplifyPath(target);
return symlink(target.c_str(), filename.c_str());
});
if (retval) {
std::cerr << "Failed to make symlink " << name() << " to " << A.name()
<< '\n';
}
return retval;
}
// makes a hard link that points to A
int
Fileinfo::makehardlink(const Fileinfo& A)
{
return transactional_operation(name(), [&](const std::string& filename) {
// make a hardlink.
const int retval = link(A.name().c_str(), filename.c_str());
if (retval) {
std::cerr << "Failed to make hardlink " << filename << " to " << A.name()
<< '\n';
}
return retval;
});
}
int
Fileinfo::static_deletefile(Fileinfo& A, const Fileinfo& /*B*/)
{
return A.deletefile();
}
int
Fileinfo::static_makesymlink(Fileinfo& A, const Fileinfo& B)
{
return A.makesymlink(B);
}
int
Fileinfo::static_makehardlink(Fileinfo& A, const Fileinfo& B)
{
return A.makehardlink(B);
}