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

Private GIT Repository
NEW
[Cipher_code.git] / IDA_new / jerasure / Examples / jerasure_08.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 <string.h>
49 #include <stdlib.h>
50 #include <stdint.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_08 k w seed - Example schedule cache usage with RAID-6\n");
59   fprintf(stderr, "       \n");
60   fprintf(stderr, "       m=2.  k+m must be <= 2^w.  It sets up a RAID-6 generator matrix and encodes\n");
61   fprintf(stderr, "       k sets of w*%ld bytes. It creates a schedule cache for decoding.\n", sizeof(long));
62   fprintf(stderr, "       It demonstrates using the schedule cache for both encoding and decoding.\n");
63   fprintf(stderr, "       Then it demonstrates using jerasure_do_parity() to re-encode the first.\n");
64   fprintf(stderr, "       coding device\n");
65   fprintf(stderr, "       \n");
66   fprintf(stderr, "This demonstrates: jerasure_generate_schedule_cache()\n");
67   fprintf(stderr, "                   jerasure_smart_bitmatrix_to_schedule()\n");
68   fprintf(stderr, "                   jerasure_schedule_encode()\n");
69   fprintf(stderr, "                   jerasure_schedule_decode_cache()\n");
70   fprintf(stderr, "                   jerasure_free_schedule()\n");
71   fprintf(stderr, "                   jerasure_free_schedule_cache()\n");
72   fprintf(stderr, "                   jerasure_get_stats()\n");
73   fprintf(stderr, "                   jerasure_do_parity()\n");
74   if (s != NULL) fprintf(stderr, "%s\n", s);
75   exit(1);
76 }
77
78 static void print_array(char **ptrs, int ndevices, int size, int packetsize, char *label)
79 {
80   int i, j, x;
81   unsigned char *up;
82
83   printf("<center><table border=3 cellpadding=3><tr><td></td>\n");
84
85   for (i = 0; i < ndevices; i++) printf("<td align=center>%s%x</td>\n", label, i);
86   printf("</tr>\n");
87   printf("<td align=right><pre>");
88   for (j = 0; j < size/packetsize; j++) printf("Packet %d\n", j);
89   printf("</pre></td>\n");
90   for (i = 0; i < ndevices; i++) {
91     printf("<td><pre>");
92     up = (unsigned char *) ptrs[i];
93     for (j = 0; j < size/packetsize; j++) {
94       for (x = 0; x < packetsize; x++) {
95         if (x > 0 && x%4 == 0) printf(" ");
96         printf("%02x", up[j*packetsize+x]);
97       }
98       printf("\n");
99     }
100     printf("</td>\n");
101   }
102   printf("</tr></table></center>\n");
103 }
104
105 int main(int argc, char **argv)
106 {
107   int k, w, i, j, m;
108   int *matrix, *bitmatrix;
109   char **data, **coding;
110   int **smart, ***cache;
111   int *erasures, *erased;
112   double stats[3];
113   uint32_t seed;
114   
115   if (argc != 4) usage("Wrong number of arguments");
116   if (sscanf(argv[1], "%d", &k) == 0 || k <= 0) usage("Bad k");
117   if (sscanf(argv[2], "%d", &w) == 0 || w <= 0 || w > 32) usage("Bad m");
118   if (sscanf(argv[3], "%d", &seed) == 0) usage("Bad seed");
119   m = 2;
120   if (w < 30 && (k+m) > (1 << w)) usage("k + m is too big");
121
122   MOA_Seed(seed);
123
124   matrix = talloc(int, m*k);
125   for (j = 0; j < k; j++) matrix[j] = 1;
126   i = 1;
127   for (j = 0; j < k; j++) {
128     matrix[k+j] = i;
129     i = galois_single_multiply(i, 2, w);
130   }
131   bitmatrix = jerasure_matrix_to_bitmatrix(k, m, w, matrix);
132
133   smart = jerasure_smart_bitmatrix_to_schedule(k, m, w, bitmatrix);
134   cache = jerasure_generate_schedule_cache(k, m, w, bitmatrix, 1);
135
136   data = talloc(char *, k);
137   for (i = 0; i < k; i++) {
138     data[i] = talloc(char, sizeof(long)*w);
139     MOA_Fill_Random_Region(data[i], sizeof(long)*w);
140   }
141
142   coding = talloc(char *, m);
143   for (i = 0; i < m; i++) {
144     coding[i] = talloc(char, sizeof(long)*w);
145   }
146
147   jerasure_schedule_encode(k, m, w, smart, data, coding, w*sizeof(long), sizeof(long));
148   jerasure_get_stats(stats);
149
150   printf("<HTML><TITLE>jerasure_08");
151   for (i = 1; i < argc; i++) printf(" %s", argv[i]);
152   printf("</TITLE>\n");
153   printf("<h3>jerasure_08");
154   for (i = 1; i < argc; i++) printf(" %s", argv[i]);
155   printf("</h3>\n");
156   printf("<hr>\n");
157
158   printf("Encoding Complete: - %.0lf XOR'd bytes.  Here is the state of the system:\n<p>\n", stats[0]);
159   printf("<p>\n");
160   print_array(data, k, sizeof(long)*w, sizeof(long), "D");
161   printf("<p>\n");
162   print_array(coding, m, sizeof(long)*w, sizeof(long), "C");
163   printf("<hr>\n");
164
165   erasures = talloc(int, (m+1));
166   erasures[0] = k;
167   erasures[1] = k+1;
168   erasures[2] = -1;
169   for (j = 0; j < m; j++) bzero(coding[j], sizeof(long)*w);
170
171   jerasure_schedule_decode_cache(k, m, w, cache, erasures, data, coding, w*sizeof(long), sizeof(long));
172   jerasure_get_stats(stats);
173   printf("Encoding Using the Schedule Cache: - %.0lf XOR'd bytes\n\n", stats[0]);
174   printf("<p>\n");
175   print_array(data, k, sizeof(long)*w, sizeof(long), "D");
176   printf("<p>\n");
177   print_array(coding, m, sizeof(long)*w, sizeof(long), "C");
178   printf("<hr>\n");
179
180   erased = talloc(int, (k+m));
181   for (i = 0; i < m+k; i++) erased[i] = 0;
182   for (i = 0; i < m; ) {
183     erasures[i] = MOA_Random_W(w, 1)%(k+m);
184     if (erased[erasures[i]] == 0) {
185       erased[erasures[i]] = 1;
186       bzero((erasures[i] < k) ? data[erasures[i]] : coding[erasures[i]-k], sizeof(long)*w);
187       i++;
188     }
189   }
190   erasures[i] = -1;
191
192   printf("Erased %d random devices:\n\n", m);
193   printf("<p>\n");
194   print_array(data, k, sizeof(long)*w, sizeof(long), "D");
195   printf("<p>\n");
196   print_array(coding, m, sizeof(long)*w, sizeof(long), "C");
197   printf("<hr>\n");
198   
199   jerasure_schedule_decode_cache(k, m, w, cache, erasures, data, coding, w*sizeof(long), sizeof(long));
200   jerasure_get_stats(stats);
201
202   printf("State of the system after decoding: %.0lf XOR'd bytes\n\n", stats[0]);
203   printf("<p>\n");
204   print_array(data, k, sizeof(long)*w, sizeof(long), "D");
205   printf("<p>\n");
206   print_array(coding, m, sizeof(long)*w, sizeof(long), "C");
207   printf("<hr>\n");
208   
209   bzero(coding[0], sizeof(long)*w);
210   printf("Erased the first coding device:\n\n");
211   printf("<p>\n");
212   print_array(data, k, sizeof(long)*w, sizeof(long), "D");
213   printf("<p>\n");
214   print_array(coding, m, sizeof(long)*w, sizeof(long), "C");
215   printf("<hr>\n");
216   
217   jerasure_do_parity(k, data, coding[0], sizeof(long)*w);
218   printf("State of the system after using\n");
219   printf("<b>jerasure_do_parity()</b> to re-encode it:\n\n");
220   printf("<p>\n");
221   print_array(data, k, sizeof(long)*w, sizeof(long), "D");
222   printf("<p>\n");
223   print_array(coding, m, sizeof(long)*w, sizeof(long), "C");
224   printf("<hr>\n");
225   
226   jerasure_free_schedule(smart);
227   jerasure_free_schedule_cache(k, m, cache);
228   
229   printf("Smart schedule and cache freed.\n\n");
230
231   return 0;
232 }