]> AND Private Git Repository - Cipher_code.git/blob - IDA/ida_gf65.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
update openssl
[Cipher_code.git] / IDA / ida_gf65.cpp
1
2
3 #include <iostream>
4 #include <fstream>
5 #include <chrono>
6 #include <sstream>
7 #include <ctime>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <algorithm>    // std::random_shuffle
12 #include <vector>       // std::vector
13 #include <unistd.h>
14 #include <thread>
15
16
17 extern "C" {
18   #include "jerasure.h"
19 }
20
21 typedef unsigned long mylong;
22 #define LLUI (long long unsigned int)
23
24
25 using namespace std;
26
27 string cloud[5]={"dropboxida1","googleida1","onedriveida2","onedriveida1","pcloudida1"};
28
29
30 void display(mylong *mat, int r, int c) {
31  for(int i=0;i<r;i++) {
32     for(int j=0;j<c;j++) {
33       printf("%016llu ",LLUI mat[i*c+j]);
34     }
35     printf("\n");
36   }
37  printf("\n");
38 }
39
40 mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2, int c2, int w)
41 {
42   mylong *product;
43   int i, j, k;
44
45   product = (mylong *) malloc(sizeof(mylong)*r1*c2);
46   for (i = 0; i < r1*c2; i++) product[i] = 0;
47
48   for (i = 0; i < r1; i++) {
49     for (j = 0; j < c2; j++) {
50       for (k = 0; k < r2; k++) {
51         product[i*c2+j] ^= gf->multiply.w64(gf,m1[i*c1+k], m2[k*c2+j]);
52       }
53     }
54   }
55   return product;
56 }
57
58
59
60 int invert_matrix(gf_t *gf, mylong *mat, mylong *inv, int rows)
61 {
62   int cols, i, j, k, x, rs2;
63   int row_start;
64   mylong tmp, inverse;
65  
66   cols = rows;
67
68   k = 0;
69   for (i = 0; i < rows; i++) {
70     for (j = 0; j < cols; j++) {
71       inv[k] = (i == j) ? 1 : 0;
72       k++;
73     }
74   }
75 //  display(inv, rows, rows);
76 //  printf("\n");
77   
78   /* First -- convert into upper triangular  */
79   for (i = 0; i < cols; i++) {
80     row_start = cols*i;
81
82     /* Swap rows if we ave a zero i,i element.  If we can't swap, then the
83        matrix was not invertible  */
84
85     if (mat[row_start+i] == 0) {
86       for (j = i+1; j < rows && mat[cols*j+i] == 0; j++) ;
87       if (j == rows) return -1;
88       rs2 = j*cols;
89       for (k = 0; k < cols; k++) {
90         tmp = mat[row_start+k];
91         mat[row_start+k] = mat[rs2+k];
92         mat[rs2+k] = tmp;
93         tmp = inv[row_start+k];
94         inv[row_start+k] = inv[rs2+k];
95         inv[rs2+k] = tmp;
96       }
97     }
98  
99     /* Multiply the row by 1/element i,i  */
100     tmp = mat[row_start+i];
101     if (tmp != 1) {
102       inverse = gf->divide.w64(gf,1, tmp);
103       for (j = 0; j < cols; j++) {
104         mat[row_start+j] = gf->multiply.w64(gf,mat[row_start+j], inverse);
105         inv[row_start+j] = gf->multiply.w64(gf,inv[row_start+j], inverse);
106       }
107     }
108
109     /* Now for each j>i, add A_ji*Ai to Aj  */
110     k = row_start+i;
111     for (j = i+1; j != cols; j++) {
112       k += cols;
113       if (mat[k] != 0) {
114         if (mat[k] == 1) {
115           rs2 = cols*j;
116           for (x = 0; x < cols; x++) {
117             mat[rs2+x] ^= mat[row_start+x];
118             inv[rs2+x] ^= inv[row_start+x];
119           }
120         } else {
121           tmp = mat[k];
122           rs2 = cols*j;
123           for (x = 0; x < cols; x++) {
124             mat[rs2+x] ^= gf->multiply.w64(gf,tmp, mat[row_start+x]);
125             inv[rs2+x] ^= gf->multiply.w64(gf,tmp, inv[row_start+x]);
126           }
127         }
128       }
129     }
130   }
131
132   /* Now the matrix is upper triangular.  Start at the top and multiply down  */
133
134   for (i = rows-1; i >= 0; i--) {
135     row_start = i*cols;
136     for (j = 0; j < i; j++) {
137       rs2 = j*cols;
138       if (mat[rs2+i] != 0) {
139         tmp = mat[rs2+i];
140         mat[rs2+i] = 0;
141         for (k = 0; k < cols; k++) {
142           inv[rs2+k] ^= gf->multiply.w64(gf,tmp, inv[row_start+k]);
143         }
144       }
145     }
146   }
147
148 /*  printf("mat\n");
149   display(mat, rows, rows);
150   printf("\n");
151    printf("inv\n");
152   display(inv, rows, rows);
153   printf("\n");
154 */
155   return 0;
156 }
157
158
159
160
161 int invertible_matrix(gf_t *gf, int *mat, int rows, int w)
162 {
163   int cols, i, j, k, x, rs2;
164   int row_start;
165   mylong tmp, inverse;
166  
167   cols = rows;
168
169   /* First -- convert into upper triangular  */
170   for (i = 0; i < cols; i++) {
171     row_start = cols*i;
172
173     /* Swap rows if we ave a zero i,i element.  If we can't swap, then the 
174        matrix was not invertible  */
175
176     if (mat[row_start+i] == 0) { 
177       for (j = i+1; j < rows && mat[cols*j+i] == 0; j++) ;
178       if (j == rows) return 0;
179       rs2 = j*cols;
180       for (k = 0; k < cols; k++) {
181         tmp = mat[row_start+k];
182         mat[row_start+k] = mat[rs2+k];
183         mat[rs2+k] = tmp;
184       }
185     }
186  
187     /* Multiply the row by 1/element i,i  */
188     tmp = mat[row_start+i];
189     if (tmp != 1) {
190       inverse =  gf->divide.w64(gf,1, tmp);
191       for (j = 0; j < cols; j++) { 
192         mat[row_start+j] =  gf->multiply.w64(gf,mat[row_start+j], inverse);
193       }
194     }
195
196     /* Now for each j>i, add A_ji*Ai to Aj  */
197     k = row_start+i;
198     for (j = i+1; j != cols; j++) {
199       k += cols;
200       if (mat[k] != 0) {
201         if (mat[k] == 1) {
202           rs2 = cols*j;
203           for (x = 0; x < cols; x++) {
204             mat[rs2+x] ^= mat[row_start+x];
205           }
206         } else {
207           tmp = mat[k];
208           rs2 = cols*j;
209           for (x = 0; x < cols; x++) {
210             mat[rs2+x] ^=  gf->multiply.w64(gf,tmp,mat[row_start+x]);
211           }
212         }
213       }
214     }
215   }
216   return 1;
217 }
218
219
220
221
222
223 mylong*  readFullFile(int n, int t, mylong& sizeFile, mylong & padded_size) {
224
225 //  ifstream stream("lena.png", ios::in | ios::binary | ios::ate);
226 //  ifstream stream("lena_small.png", ios::in | ios::binary | ios::ate);
227   ifstream stream("/home/couturie/Downloads/CARCARIASS.zip", ios::in | ios::binary | ios::ate);
228
229   sizeFile=stream.tellg();
230   std::cout << sizeFile << std::endl;
231   stream.seekg(0, ios::beg);
232
233
234
235   
236   
237
238   vector<uint8_t> contents((istreambuf_iterator<char>(stream)), istreambuf_iterator<char>());
239  
240     
241
242
243   
244
245   
246   //make padding, we need to pad to be divisible by 8*t, we
247   if((sizeFile+8)%(8*t)!=0) {
248     cout<<(int)(sizeFile/(8*t))<<endl;
249     
250     int remainder=(8*t)*(1+(int)((sizeFile+8)/(8*t)))-sizeFile-8;
251     cout << "remainder " << remainder << endl;
252     uint8_t vec[remainder];
253     for(int i=0;i<remainder;i++)
254       vec[i]=0;
255     //add remainder elements at the end
256     contents.insert(contents.end(),vec,vec+remainder);
257     //add 8 elements at the beginning for the size
258     contents.insert(contents.begin(),vec,vec+8);
259   }
260   
261
262   
263   cout << "res contents " << contents.size() << endl;  
264
265 //  for(int i=0;i<contents.size();i++)
266 //    cout << (int)contents[i] << " ";
267   cout << endl;
268
269   uint8_t *p_contents=&contents[0];
270 //  mylong *p_contents2=reinterpret_cast<mylong*>(p_contents);
271
272   padded_size=contents.size()/8;
273   
274   mylong *p_contents2=new mylong[padded_size];
275   memcpy(p_contents2,p_contents,sizeof(mylong)*padded_size);
276          //mylong *p_contents2=(mylong*)p_contents;
277
278   p_contents2[0]=sizeFile;
279
280   
281
282   
283 /*  for(int i=0;i<padded_size;i++)
284     cout << p_contents2[i] << " ";
285   cout << endl;
286 */
287   /* long res=0;
288   for(int i=8-1;i>=0;i--) {
289     res<<=8;
290     res+=p_contents[i];
291   }
292
293   cout << "convert val " << (long)res << endl;
294
295   res=0;
296   for(int i=16-1;i>=8;i--) {
297     res<<=8;
298     res+=p_contents[i];
299   }
300
301   cout << "convert val " << (long)res << endl;
302   */
303
304   return p_contents2;
305 }
306
307 void sendChunk(string name,int cloud_id) {
308   stringstream ss;
309   ss <<"rclone copy "<<name<<" "<<cloud[cloud_id]<<":";
310   string str = ss.str();
311   cout<<str<<endl;
312   system(str.c_str());
313   ss.str("");
314   ss<<"rm -f "<<name;
315   str = ss.str();
316   cout<<str<<endl;
317   system(str.c_str());
318 }
319
320
321 void retrieveChunk(string name,int cloud_id) {
322   stringstream ss;
323   ss <<"rclone copy "<<cloud[cloud_id]<<":"<<name<<" .";
324   string str = ss.str();
325   cout<<str<<endl;
326   system(str.c_str());
327 }
328
329
330 void saveFile(uint8_t *data, const char *fileName,long size_file) {
331   cout<<"size file "<<size_file<<endl;
332   FILE* pFile = fopen (fileName, "wb");
333   fwrite (data , sizeof(uint8_t), size_file, pFile);
334
335   fclose (pFile);
336 }
337
338
339 void readFile(uint8_t *data, const char *fileName,long size_file) {
340   cout<<"size file "<<size_file<<endl;
341   FILE* pFile = fopen (fileName, "rb");
342
343   fseek(pFile, 0L, SEEK_END);
344   int sz = ftell(pFile);
345   rewind(pFile);
346   if(sz!=size_file) {
347     cout << "error : size of this chunk is not correct !! " << endl;
348     exit(0);
349   }
350   fread (data , sizeof(uint8_t), size_file, pFile);  
351
352   fclose (pFile);
353 }
354
355
356 void saveFile8(mylong *data, const char *fileName,long size_file) {
357
358   cout<<"size file 8 "<<size_file<<endl;
359       display(data,1,1);    
360     FILE* pFile = fopen (fileName, "wb");
361
362
363
364     fwrite (data , sizeof(mylong), size_file, pFile);
365     fclose (pFile);
366
367
368     
369 }
370
371
372 int main(int argc, char **argv)
373 {
374   unsigned int  w;
375   int invert;
376   mylong *matS;
377   mylong *matG;
378   mylong *matC;
379   mylong *inverse;
380   mylong *identity;
381
382
383 //  int size=5000000;
384   int t=3;
385   int n=5;
386
387
388   w=64;
389   gf_t gf;
390   gf_init_easy(&gf, w);  
391
392   mylong padded_size;
393   mylong sizeFile;
394   matS=readFullFile(n,t,sizeFile,padded_size);
395
396   cout<<padded_size*8<<endl;
397   
398 /* for(int i=0;i<padded_size;i++)
399     cout << matS[i] << " ";
400   cout << endl;
401 */
402   
403   int len=padded_size/t;
404 //  int len=size/t;
405   cout<<" len "<<len<<" "<<padded_size<<endl;
406
407   // matS = malloc(sizeof(mylong)*t*len);
408   matG = malloc(sizeof(mylong)*t*n);
409
410
411
412
413   srand48(time(0));
414   std::srand ( unsigned ( std::time(0) ) );
415   
416 /*
417   for(int i=0;i<t;i++) { 
418     for(int j=0;j<len;j++) {
419       matS[i*len+j]=lrand48()<<32|lrand48();
420     }
421   }
422   */
423
424   for(int i=0;i<n;i++) { 
425     for(int j=0;j<t;j++) {
426       matG[i*t+j]=lrand48()<<32|lrand48();
427     }
428   }
429
430
431
432   printf("Matrix S:\n");
433 //  display(matS, len, t);
434   display(matS, t, t);
435
436   printf("Matrix G:\n");
437   display(matG, n, t);
438
439
440   auto start = std::chrono::system_clock::now();
441   matC=matrix_multiply(&gf, matG, matS, n, t, t, len, w);
442   auto end = std::chrono::system_clock::now();
443   std::chrono::duration<double> elapsed_seconds = end-start;
444   std::cout << "elapsed time: " << elapsed_seconds.count() << "s\n";
445
446 //  display(matC,t,t);
447
448   thread th[n];
449   //Save trunks
450   for(int i=0;i<n;i++) {
451     stringstream ss;
452     ss <<"file_"<<i<<".dat";
453     string str = ss.str();
454     saveFile((uint8_t*)&matC[i*len], str.c_str(),len*sizeof(mylong));
455 //    sendChunk( str,i);
456     th[i] = thread(sendChunk,str, i);
457   }
458
459   for(int i=0;i<n;i++) {
460     th[i].join();
461   }
462   
463 /*  cout<<"sleep begin"<<endl;
464   sleep(2);
465   cout<<"sleep end"<<endl;
466 */
467
468   
469   mylong *matCs = malloc(sizeof(mylong)*t*len);
470   mylong *matGs = malloc(sizeof(mylong)*t*t);
471
472
473   std::vector<int> myvector;
474   
475   // set some values:
476   for (int i=0; i<n; ++i) myvector.push_back(i); // 1 2 3 4 5 6 7 8 9
477
478   // using built-in random generator:
479   random_shuffle ( myvector.begin(), myvector.end() );
480
481
482
483   std::cout << "random chunk" << std::endl;  
484   int ind=0;
485
486   
487   
488   for(int ii=0;ii<t;ii++) {
489
490     auto i=myvector[ii];
491     std::cout << myvector[i] << " ";
492
493
494     stringstream ss;
495     ss <<"file_"<<i<<".dat";
496     string str = ss.str();
497
498 //    retrieveChunk(str,i);
499     th[ii] = thread(retrieveChunk,str, i);
500   }
501
502   
503   ind=0;
504
505   for(int ii=0;ii<t;ii++) {
506
507     auto i=myvector[ii];
508     std::cout << myvector[i] << " ";
509
510
511     stringstream ss;
512     ss <<"file_"<<i<<".dat";
513     string str = ss.str();
514     th[ii].join();    
515     readFile((uint8_t*)&matCs[ind*len], str.c_str(),len*sizeof(mylong));
516
517 //    display(&matCs[ind*len],1,1);
518 //    display(&matC[i*len],1,1);
519     
520     /*for(int j=0;j<len;j++) {
521       matCs[ind*len+j]=matC[i*len+j];
522       }*/
523     
524
525     
526     for(int j=0;j<t;j++) {
527       matGs[ind*t+j]=matG[i*t+j];
528     }
529     ind++;
530   }
531   std::cout << std::endl;
532
533   
534   printf("Matrix Gs:\n");
535   display(matGs, t, t);
536
537 //  printf("Matrix Cs:\n");
538 //  display(matCs, t, len);
539   
540   mylong* matGs_copy = malloc(sizeof(mylong)* t*t);
541
542   //WARNING invert changes the matrix
543 //  invert = invertible_matrix(&gf,matGs, t, w);
544 //  printf("\nInvertible Gs: %s\n", (invert == 1) ? "Yes" : "No");
545
546   memcpy(matGs_copy, matGs, sizeof(mylong)*t*t);
547   mylong *matInvGs = malloc(sizeof(mylong)*t*t);
548   invert_matrix(&gf, matGs_copy, matInvGs, t);
549
550   /*
551   WARNING   this changes matGs
552   identity=matrix_multiply(&gf, matInvGs, matGs, t, t, t, t, w);
553   printf("Identity:\n");
554   display(identity, t, t);
555   */
556
557   
558   //printf("Matrix Gs:\n");
559   //display(matGs, t, t);
560   
561   mylong *matS2 = malloc(sizeof(mylong)*t*len);
562
563
564   start = std::chrono::system_clock::now();
565   matS2=matrix_multiply(&gf, matInvGs, matCs, t, t, t, len, w);
566   end = std::chrono::system_clock::now();
567   elapsed_seconds = end-start;
568   std::cout << "elapsed time: " << elapsed_seconds.count() << "s\n";
569
570
571   printf("Matrix S2:\n");
572 //  display(matS2, len, t);
573   display(matS2, t, t);
574   
575   int equal=1;
576   for(int i=0;i<padded_size && equal;i++) {
577       equal=matS[i]==matS2[i];
578 //      if(!equal)
579 //      printf("ARGH\n");
580   }
581   if(equal)
582     printf("EQUAL !!!\n");
583
584
585   mylong new_size=matS2[0];
586   cout << "size of data " << new_size << endl;
587
588   
589   //first elements that contains the size is removed
590   uint8_t *reconstucted_data=reinterpret_cast<uint8_t*>(&matS2[1]);
591   saveFile(reconstucted_data, "file.dat",new_size);
592   return 0;
593 }
594
595