]> AND Private Git Repository - Cipher_code.git/blob - IDA_new/jerasure/Examples/jerasure_06.c
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
[Cipher_code.git] / IDA_new / jerasure / Examples / jerasure_06.c
1 /* *
2  * Copyright (c) 2014, James S. Plank and Kevin Greenan
3  * All rights reserved.
4  *
5  * Jerasure - A C/C++ Library for a Variety of Reed-Solomon and RAID-6 Erasure
6  * Coding Techniques
7  *
8  * Revision 2.0: Galois Field backend now links to GF-Complete
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  *  - Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  *
17  *  - Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in
19  *    the documentation and/or other materials provided with the
20  *    distribution.
21  *
22  *  - Neither the name of the University of Tennessee nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
31  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
32  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
33  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
34  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
36  * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39
40 /* Jerasure's authors:
41
42    Revision 2.x - 2014: James S. Plank and Kevin M. Greenan.
43    Revision 1.2 - 2008: James S. Plank, Scott Simmerman and Catherine D. Schuman.
44    Revision 1.0 - 2007: James S. Plank.
45  */
46
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <stdint.h>
50 #include <string.h>
51 #include <gf_rand.h>
52 #include "jerasure.h"
53
54 #define talloc(type, num) (type *) malloc(sizeof(type)*(num))
55
56 static void usage(char *s)
57 {
58   fprintf(stderr, "usage: jerasure_06 k m w packetsize seed\n");
59   fprintf(stderr, "Does a simple Cauchy Reed-Solomon coding example in GF(2^w).\n");
60   fprintf(stderr, "       \n");
61   fprintf(stderr, "       k+m must be < 2^w.  Packetsize must be a multiple of sizeof(long)\n");
62   fprintf(stderr, "       It sets up a Cauchy generator matrix and encodes k devices of w*packetsize bytes.\n");
63   fprintf(stderr, "       After that, it decodes device 0 by using jerasure_make_decoding_bitmatrix()\n");
64   fprintf(stderr, "       and jerasure_bitmatrix_dotprod().\n");
65   fprintf(stderr, "       \n");
66   fprintf(stderr, "This demonstrates: jerasure_bitmatrix_encode()\n");
67   fprintf(stderr, "                   jerasure_bitmatrix_decode()\n");
68   fprintf(stderr, "                   jerasure_print_bitmatrix()\n");
69   fprintf(stderr, "                   jerasure_make_decoding_bitmatrix()\n");
70   fprintf(stderr, "                   jerasure_bitmatrix_dotprod()\n");
71   if (s != NULL) fprintf(stderr, "\n%s\n\n", s);
72   exit(1);
73 }
74
75 static void print_array(char **ptrs, int ndevices, int size, int packetsize, char *label)
76 {
77   int i, j, x;
78   unsigned char *up;
79
80   printf("<center><table border=3 cellpadding=3><tr><td></td>\n");
81
82   for (i = 0; i < ndevices; i++) printf("<td align=center>%s%x</td>\n", label, i);
83   printf("</tr>\n");
84   printf("<td align=right><pre>");
85   for (j = 0; j < size/packetsize; j++) printf("Packet %d\n", j);
86   printf("</pre></td>\n");
87   for (i = 0; i < ndevices; i++) {
88     printf("<td><pre>");
89     up = (unsigned char *) ptrs[i];
90     for (j = 0; j < size/packetsize; j++) {
91       for (x = 0; x < packetsize; x++) {
92         if (x > 0 && x%4 == 0) printf(" ");
93         printf("%02x", up[j*packetsize+x]);
94       }
95       printf("\n");
96     }
97     printf("</td>\n");
98   }
99   printf("</tr></table></center>\n");
100 }
101
102 int main(int argc, char **argv)
103 {
104   int k, w, i, j, m, psize, x;
105   int *matrix, *bitmatrix;
106   char **data, **coding;
107   int *erasures, *erased;
108   int *decoding_matrix, *dm_ids;
109   uint32_t seed;
110   
111   if (argc != 6) usage(NULL);
112   if (sscanf(argv[1], "%d", &k) == 0 || k <= 0) usage("Bad k");
113   if (sscanf(argv[2], "%d", &m) == 0 || m <= 0) usage("Bad m");
114   if (sscanf(argv[3], "%d", &w) == 0 || w <= 0 || w > 32) usage("Bad w");
115   if (w < 30 && (k+m) > (1 << w)) usage("k + m is too big");
116   if (sscanf(argv[4], "%d", &psize) == 0 || psize <= 0) usage("Bad packetsize");
117   if(psize%sizeof(long) != 0) usage("Packetsize must be multiple of sizeof(long)");
118   if (sscanf(argv[5], "%d", &seed) == 0) usage("Bad seed");
119
120   MOA_Seed(seed);
121   matrix = talloc(int, m*k);
122   for (i = 0; i < m; i++) {
123     for (j = 0; j < k; j++) {
124       matrix[i*k+j] = galois_single_divide(1, i ^ (m + j), w);
125     }
126   }
127   bitmatrix = jerasure_matrix_to_bitmatrix(k, m, w, matrix);
128
129   printf("<HTML><TITLE>jerasure_06");
130   for (i = 1; i < argc; i++) printf(" %s", argv[i]);
131   printf("</TITLE>\n");
132   printf("<h3>jerasure_06");
133   for (i = 1; i < argc; i++) printf(" %s", argv[i]);
134   printf("</h3>\n");
135
136   printf("<hr>\n");
137   printf("Last (m * w) rows of the Generator Matrix: (G^T):\n<pre>\n");
138   jerasure_print_bitmatrix(bitmatrix, w*m, w*k, w);
139   printf("</pre><hr>\n");
140
141   data = talloc(char *, k);
142   for (i = 0; i < k; i++) {
143     data[i] = talloc(char, psize*w);
144     MOA_Fill_Random_Region(data[i], psize*w);
145   }
146
147   coding = talloc(char *, m);
148   for (i = 0; i < m; i++) {
149     coding[i] = talloc(char, psize*w);
150   }
151
152   jerasure_bitmatrix_encode(k, m, w, bitmatrix, data, coding, w*psize, psize);
153   
154   printf("Encoding Complete - Here is the state of the system\n\n");
155   printf("<p>\n");
156   print_array(data, k, psize*w, psize, "D");
157   printf("<p>\n");
158   print_array(coding, m, psize*w, psize, "C");
159   printf("<hr>\n");
160
161   erasures = talloc(int, (m+1));
162   erased = talloc(int, (k+m));
163   for (i = 0; i < m+k; i++) erased[i] = 0;
164   for (i = 0; i < m; ) {
165     erasures[i] = MOA_Random_W(w, 1)%(k+m);
166     if (erased[erasures[i]] == 0) {
167       erased[erasures[i]] = 1;
168       bzero((erasures[i] < k) ? data[erasures[i]] : coding[erasures[i]-k], psize*w);
169       i++;
170     }
171   }
172   erasures[i] = -1;
173
174   printf("Erased %d random devices:", m);
175   for (i = 0; erasures[i] != -1; i++) {
176     printf(" %c%x", ((erasures[i] < k) ? 'D' : 'C'), (erasures[i] < k ? erasures[i] : erasures[i]-k));
177   }
178   printf(". Here is the state of the system:\n");
179
180   printf("<p>\n");
181   print_array(data, k, psize*w, psize, "D");
182   printf("<p>\n");
183   print_array(coding, m, psize*w, psize, "C");
184   printf("<hr>\n");
185
186   i = jerasure_bitmatrix_decode(k, m, w, bitmatrix, 0, erasures, data, coding, 
187                   w*psize, psize);
188
189   printf("Here is the state of the system after decoding:\n\n");
190   printf("<p>\n");
191   print_array(data, k, psize*w, psize, "D");
192   printf("<p>\n");
193   print_array(coding, m, psize*w, psize, "C");
194   printf("<hr>\n");
195
196   decoding_matrix = talloc(int, k*k*w*w);
197   dm_ids = talloc(int, k);
198
199   x = (m < k) ? m : k;
200
201   for (i = 0; i < x; i++) erased[i] = 1;
202   for (; i < k+m; i++) erased[i] = 0;
203
204   jerasure_make_decoding_bitmatrix(k, m, w, bitmatrix, erased, decoding_matrix, dm_ids);
205
206   printf("Suppose we erase the first %d devices.  Here is the decoding matrix:\n<pre>\n", x);
207   jerasure_print_bitmatrix(decoding_matrix, k*w, k*w, w);
208   printf("</pre>\n");
209   printf("And dm_ids:\n<pre>\n");
210   jerasure_print_matrix(dm_ids, 1, k, w);
211   printf("</pre><hr>\n");
212
213   for (i = 0; i < x; i++) bzero(data[i], w*psize);
214
215   printf("Here is the state of the system after the erasures:\n\n");
216   printf("<p>\n");
217   print_array(data, k, psize*w, psize, "D");
218   printf("<p>\n");
219   print_array(coding, m, psize*w, psize, "C");
220   printf("<hr>\n");
221
222   for (i = 0; i < x; i++) {
223     jerasure_bitmatrix_dotprod(k, w, decoding_matrix+i*(k*w*w), dm_ids, i, data, coding, w*psize, psize);
224   }
225
226   printf("Here is the state of the system after calling <b>jerasure_bitmatrix_dotprod()</b> %d time%s with the decoding matrix:\n\n", x, (x == 1) ? "" : "s");
227   printf("<p>\n");
228   print_array(data, k, psize*w, psize, "D");
229   printf("<p>\n");
230   print_array(coding, m, psize*w, psize, "C");
231   printf("<hr>\n");
232   return 0;
233 }