-
Notifications
You must be signed in to change notification settings - Fork 23
/
fileUpload.cpp
313 lines (295 loc) · 11.2 KB
/
fileUpload.cpp
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
#include <cstring>
#include <vector>
#include <cstdlib>
#include <ctime>
#include <algorithm>
#include <chrono>
#include <memory>
#include <thread>
#include <stdexcept>
#include "structs.h"
#include "connection.h"
#include "nodeUtils.h"
#include "logger.h"
#include "K12AndKeyUtil.h"
#include "keyUtils.h"
#include "walletUtils.h"
#include "qubicLogParser.h"
#include <fstream>
#include <fcntl.h>
constexpr int fullFragmentSize = 1024 - FileFragmentTransactionPrefix::minInputSize();
struct fullFragment{
RequestResponseHeader header;
FileFragmentTransactionPrefix fragmentHeader;
uint8_t content[fullFragmentSize];
};
static std::string getExtension(std::string fn)
{
return fn.substr(fn.find_last_of(".") + 1);
}
bool uploadHeader(QCPtr& qc, const char* seed, size_t fileSize, int numberOfFragments, std::string extension, uint8_t* txHash, const uint32_t scheduledTickOffset)
{
struct {
RequestResponseHeader header;
FileHeaderTransaction fh;
} payload;
FileHeaderTransaction& file_header = payload.fh;
uint32_t currentTick = getTickNumberFromNode(qc);
uint32_t txTick = currentTick + scheduledTickOffset;
getPublicKeyFromSeed(seed, file_header.sourcePublicKey);
memset(file_header.destinationPublicKey, 0, 32);
file_header.amount = FileHeaderTransaction::minAmount();
file_header.tick = txTick;
file_header.fileSize = fileSize;
file_header.numberOfFragments = numberOfFragments;
memset(file_header.fileFormat, 0, 8);
memcpy(file_header.fileFormat, extension.data(), extension.size());
file_header.inputType = FileHeaderTransaction::transactionType();
file_header.inputSize = FileHeaderTransaction::minInputSize();
payload.header.setSize(sizeof(payload));
payload.header.zeroDejavu();
payload.header.setType(BROADCAST_TRANSACTION);
signData(seed, (uint8_t*)&payload.fh, sizeof(payload.fh) - SIGNATURE_SIZE, payload.fh.signature);
qc->sendData((uint8_t *) &payload, payload.header.size());
KangarooTwelve((uint8_t*)&payload.fh, sizeof(payload.fh), txHash, 32);
LOG("Waiting for tx to be included at tick %d\n", txTick);
currentTick = getTickNumberFromNode(qc);
while (currentTick < txTick + 1)
{
LOG("Current tick %u\n", currentTick);
Q_SLEEP(3000);
currentTick = getTickNumberFromNode(qc);
}
LOG("Verifying transaction\n");
char txHashQubic[64] = {0};
getIdentityFromPublicKey(txHash, txHashQubic, true);
int ret = _GetTxInfo(qc, txHashQubic);
while (ret == 2)
{
ret = _GetTxInfo(qc, txHashQubic);
Q_SLEEP(1000);
}
if (ret == 0){
LOG("Transaction %s is included\n", txHashQubic);
return true;
} else {
LOG("Transaction %s is NOT included.\n", txHashQubic);
memset(txHash, 0, 32);
return false;
}
}
bool uploadFragment(QCPtr& qc, const char* seed, const uint64_t fragmentId,
const uint8_t* fragmentData, const size_t fragmentSize,
const uint8_t* prevFragmentTxHash,
uint8_t* outTxHash,
const uint32_t scheduledTickOffset)
{
#pragma pack(push, 1) // this is important
struct {
RequestResponseHeader header;
FileFragmentTransactionPrefix fftp;
uint8_t fragmentPostfix[fullFragmentSize + SIGNATURE_SIZE];
} payload; // be aware: not always submit full payload
#pragma pack(pop)
auto& fftp = payload.fftp;
uint32_t currentTick = getTickNumberFromNode(qc);
uint32_t txTick = currentTick + scheduledTickOffset;
getPublicKeyFromSeed(seed, fftp.sourcePublicKey);
memset(fftp.destinationPublicKey, 0, 32);
fftp.amount = FileFragmentTransactionPrefix::minAmount();
fftp.tick = txTick;
fftp.fragmentIndex = fragmentId;
memcpy(fftp.prevFileFragmentTransactionDigest, prevFragmentTxHash, 32);
memcpy(payload.fragmentPostfix, fragmentData, fragmentSize);
fftp.inputType = FileFragmentTransactionPrefix::transactionType();
fftp.inputSize = FileFragmentTransactionPrefix::minInputSize() + fragmentSize;
uint8_t* ptr_signature = payload.fragmentPostfix + fragmentSize;
size_t payloadSize = sizeof(RequestResponseHeader) + sizeof(FileFragmentTransactionPrefix) + fragmentSize + SIGNATURE_SIZE; // not send full in trailer
payload.header.setSize(payloadSize);
payload.header.zeroDejavu();
payload.header.setType(BROADCAST_TRANSACTION);
signData(seed, (uint8_t*)&payload.fftp, sizeof(FileFragmentTransactionPrefix) + fragmentSize, ptr_signature);
qc->sendData((uint8_t *) &payload, payload.header.size());
KangarooTwelve((uint8_t*)&payload.fftp, sizeof(FileFragmentTransactionPrefix) + fragmentSize + SIGNATURE_SIZE, outTxHash, 32);
LOG("Waiting for tx to be included at tick %d\n", txTick);
currentTick = getTickNumberFromNode(qc);
while (currentTick < txTick + 1)
{
LOG("Current tick %u\n", currentTick);
Q_SLEEP(3000);
currentTick = getTickNumberFromNode(qc);
}
LOG("Verifying transaction\n");
char txHashQubic[64] = {0};
getIdentityFromPublicKey(outTxHash, txHashQubic, true);
int ret = _GetTxInfo(qc, txHashQubic);
while (ret == 2)
{
ret = _GetTxInfo(qc, txHashQubic);
Q_SLEEP(1000);
}
if (ret == 0){
LOG("Transaction %s is included\n", txHashQubic);
return true;
} else {
LOG("Transaction %s is NOT included.\n", txHashQubic);
memset(outTxHash, 0, 32);
return false;
}
}
void uploadFile(const char* nodeIp, const int nodePort, const char* filePath, const char* seed, const uint32_t scheduledTickOffset)
{
size_t fileSize = 0;
std::string extension;
std::ifstream in(filePath, std::ifstream::ate | std::ifstream::binary);
fileSize = in.tellg();
extension = getExtension(filePath);
if (fileSize == 0)
{
LOG("File size is 0. Exit.\n");
return;
}
if (extension.empty())
{
LOG("Invalid extension. Exit\n");
return;
}
std::vector<fullFragment> file_fragments;
int numberOfFragments = (fileSize + fullFragmentSize - 1) / fullFragmentSize;
auto qc = make_qc(nodeIp, nodePort);
std::vector<uint8_t> fragmentData;
fragmentData.resize(fileSize);
FILE* f = fopen(filePath, "rb");
fread(fragmentData.data(), 1, fileSize, f);
fclose(f);
TxHash32Struct fileHeaderTxDigest;
LOG("Uploading file header...\n");
while (!uploadHeader(qc, seed, fileSize, numberOfFragments, extension, fileHeaderTxDigest.ptr, scheduledTickOffset))
{
LOG("Failed to upload file header, retry in 3 seconds\n");
Q_SLEEP(3000);
}
std::vector<TxHash32Struct> fragmentTxDigests;
fragmentTxDigests.resize(numberOfFragments);
std::vector<int> segmentStart, segmentSize;
segmentStart.resize(numberOfFragments);
segmentSize.resize(numberOfFragments);
size_t tmp = fileSize;
segmentStart[0] = 0;
segmentSize[0] = std::min(int(fullFragmentSize), int(tmp));
tmp -= segmentSize[0];
for (int i = 1; i < numberOfFragments; i++)
{
segmentStart[i] = segmentStart[i-1] + segmentSize[i-1];
segmentSize[i] = std::min(int(fullFragmentSize), int(tmp));
tmp -= segmentSize[i];
}
LOG("Uploading fragments...\n");
{
int i = 0;
while (!uploadFragment(qc, seed, i, fragmentData.data() + segmentStart[i], segmentSize[i], fileHeaderTxDigest.ptr, fragmentTxDigests[i].ptr, scheduledTickOffset))
{
LOG("Failed to upload fragment %d, retry in 3 seconds\n", i);
Q_SLEEP(3000);
}
}
for (int i = 1; i < numberOfFragments; i++)
{
LOG("Uploading fragment #%d\n", i);
while (!uploadFragment(qc, seed, i, fragmentData.data() + segmentStart[i], segmentSize[i], fragmentTxDigests[i-1].ptr, fragmentTxDigests[i].ptr, scheduledTickOffset))
{
LOG("Failed to upload fragment %d, retry in 3 seconds\n", i);
Q_SLEEP(3000);
}
}
LOG("Successfully uploaded file. List of all hashes:\n");
char qubicHash[64] = {0};
getIdentityFromPublicKey(fileHeaderTxDigest.ptr, qubicHash, true);
LOG("File header: %s\n", qubicHash);
for (int i = 0; i < numberOfFragments; i++)
{
getIdentityFromPublicKey(fragmentTxDigests[i].ptr, qubicHash, true);
if (i != numberOfFragments - 1){
LOG("Fragment #%d: %s\n", i, qubicHash);
} else {
LOG("Trailer: %s\n", qubicHash);
}
}
}
void downloadFile(const char* nodeIp, const int nodePort, const char* trailer, const char* outFilePath)
{
std::vector<uint8_t> fileData;
uint8_t buffer[1024];
auto qc = make_qc(nodeIp, nodePort);
int dataSize = 0;
int ret = _GetInputDataFromTxHash(qc, trailer, buffer, dataSize);
while (ret == 2)
{
ret = _GetInputDataFromTxHash(qc, trailer, buffer, dataSize);
Q_SLEEP(1000);
}
if (ret == 1){
LOG("Cannot find trailer %s is included\n", trailer);
return;
}
int contentSize = dataSize - 40;
fileData.resize(contentSize);
memcpy(fileData.data(), buffer + 40, contentSize);
uint64_t nFragment = ((uint64_t*)buffer)[0] + 1;
LOG("Number of fragment: %d\n", nFragment);
LOG("Downloaded fragment #%lld\n", nFragment - 1);
char nextTxHash[64] = {0};
getIdentityFromPublicKey(buffer + 8, nextTxHash, true);
for (int i = 0; i < nFragment - 1; i++)
{
ret = _GetInputDataFromTxHash(qc, nextTxHash, buffer, dataSize);
while (ret == 2)
{
ret = _GetInputDataFromTxHash(qc, nextTxHash, buffer, dataSize);
Q_SLEEP(1000);
}
if (dataSize)
{
if (dataSize < 40)
{
LOG("Malformed data size, please check this tx hash %s\n", nextTxHash);
}
uint64_t fragmentId = ((uint64_t*)(buffer))[0];
LOG("Downloaded fragment #%lld\n", fragmentId);
getIdentityFromPublicKey(buffer + 8, nextTxHash, true);
std::vector<uint8_t> tmp;
contentSize = dataSize - 40;
tmp.resize(fileData.size() + contentSize);
memcpy(tmp.data(), buffer + 40, contentSize);
memcpy(tmp.data() + contentSize, fileData.data(), fileData.size());
std::swap(fileData, tmp);
}
}
ret = _GetInputDataFromTxHash(qc, nextTxHash, buffer, dataSize);
while (ret == 2)
{
ret = _GetInputDataFromTxHash(qc, nextTxHash, buffer, dataSize);
Q_SLEEP(1000);
}
LOG("Downloaded header\n");
uint64_t fileSize = ((uint64_t*)buffer)[0];
uint64_t numberOfFragments = ((uint64_t*)(buffer+8))[0];
char fileFormat[8] = {0};
memcpy(fileFormat, buffer + 16, 8);
if (fileSize != fileData.size())
{
LOG("mismatched file size. Header tell %d | have %d\n", fileSize, fileData.size());
return;
}
if (numberOfFragments != nFragment)
{
LOG("mismatched number of fragment. Header tell %d | have %d\n", numberOfFragments, nFragment);
return;
}
LOG("File extension: %s\n", fileFormat);
std::string outPath = std::string(outFilePath) + "." + std::string(fileFormat);
FILE* f = fopen(outPath.c_str(), "wb");
fwrite(fileData.data(), 1, fileData.size(), f);
fclose(f);
LOG("Data have been written to %s\n", outPath.c_str());
}