2009-09-16 Robert Millan <rmh.grub@aybabtu.com>
[grub2/phcoder/solaris.git] / disk / raid6_recover.c
blob7bbf8eaefa072c72ec3bfeb4b847605815537880
1 /* raid6_recover.c - module to recover from faulty RAID6 arrays. */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2006,2007,2008 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/dl.h>
21 #include <grub/disk.h>
22 #include <grub/mm.h>
23 #include <grub/err.h>
24 #include <grub/misc.h>
25 #include <grub/raid.h>
27 static grub_uint8_t raid6_table1[256][256];
28 static grub_uint8_t raid6_table2[256][256];
30 static void
31 grub_raid_block_mul (grub_uint8_t mul, char *buf, int size)
33 int i;
34 grub_uint8_t *p;
36 p = (grub_uint8_t *) buf;
37 for (i = 0; i < size; i++, p++)
38 *p = raid6_table1[mul][*p];
41 static void
42 grub_raid6_init_table (void)
44 int i, j;
46 for (i = 0; i < 256; i++)
47 raid6_table1[i][1] = raid6_table1[1][i] = i;
49 for (i = 2; i < 256; i++)
50 for (j = i; j < 256; j++)
52 int n;
53 grub_uint8_t c;
55 n = i >> 1;
57 c = raid6_table1[n][j];
58 c = (c << 1) ^ ((c & 0x80) ? 0x1d : 0);
59 if (i & 1)
60 c ^= j;
62 raid6_table1[j][i] = raid6_table1[i][j] = c;
65 raid6_table2[0][0] = 1;
66 for (i = 1; i < 256; i++)
67 raid6_table2[i][i] = raid6_table1[raid6_table2[i - 1][i - 1]][2];
69 for (i = 0; i < 254; i++)
70 for (j = 0; j < 254; j++)
72 grub_uint8_t c, n;
73 int k;
75 if (i == j)
76 continue;
78 k = i - j;
79 if (k < 0)
80 k += 255;
82 c = n = raid6_table2[k][k] ^ 1;
83 for (k = 0; k < 253; k++)
84 c = raid6_table1[c][n];
86 raid6_table2[i][j] = raid6_table1[raid6_table2[255 - j][255 - j]][c];
90 static grub_err_t
91 grub_raid6_recover (struct grub_raid_array *array, int disknr, int p,
92 char *buf, grub_disk_addr_t sector, int size)
94 int i, q, pos;
95 int bad1 = -1, bad2 = -1;
96 char *pbuf = 0, *qbuf = 0;
98 size <<= GRUB_DISK_SECTOR_BITS;
99 pbuf = grub_zalloc (size);
100 if (!pbuf)
101 goto quit;
103 qbuf = grub_zalloc (size);
104 if (!qbuf)
105 goto quit;
107 q = p + 1;
108 if (q == (int) array->total_devs)
109 q = 0;
111 pos = q + 1;
112 if (pos == (int) array->total_devs)
113 pos = 0;
115 for (i = 0; i < (int) array->total_devs - 2; i++)
117 if (pos == disknr)
118 bad1 = i;
119 else
121 if ((array->device[pos]) &&
122 (! grub_disk_read (array->device[pos], sector, 0, size, buf)))
124 grub_raid_block_xor (pbuf, buf, size);
125 grub_raid_block_mul (raid6_table2[i][i], buf, size);
126 grub_raid_block_xor (qbuf, buf, size);
128 else
130 /* Too many bad devices */
131 if (bad2 >= 0)
132 goto quit;
134 bad2 = i;
135 grub_errno = GRUB_ERR_NONE;
139 pos++;
140 if (pos == (int) array->total_devs)
141 pos = 0;
144 /* Invalid disknr or p */
145 if (bad1 < 0)
146 goto quit;
148 if (bad2 < 0)
150 /* One bad device */
151 if ((array->device[p]) &&
152 (! grub_disk_read (array->device[p], sector, 0, size, buf)))
154 grub_raid_block_xor (buf, pbuf, size);
155 goto quit;
158 if (! array->device[q])
160 grub_error (GRUB_ERR_READ_ERROR, "Not enough disk to restore");
161 goto quit;
164 grub_errno = GRUB_ERR_NONE;
165 if (grub_disk_read (array->device[q], sector, 0, size, buf))
166 goto quit;
168 grub_raid_block_xor (buf, qbuf, size);
169 grub_raid_block_mul (raid6_table2[255 - bad1][255 - bad1], buf,
170 size);
172 else
174 /* Two bad devices */
175 grub_uint8_t c;
177 if ((! array->device[p]) || (! array->device[q]))
179 grub_error (GRUB_ERR_READ_ERROR, "Not enough disk to restore");
180 goto quit;
183 if (grub_disk_read (array->device[p], sector, 0, size, buf))
184 goto quit;
186 grub_raid_block_xor (pbuf, buf, size);
188 if (grub_disk_read (array->device[q], sector, 0, size, buf))
189 goto quit;
191 grub_raid_block_xor (qbuf, buf, size);
193 c = raid6_table2[bad2][bad1];
194 grub_raid_block_mul (c, qbuf, size);
196 c = raid6_table1[raid6_table2[bad2][bad2]][c];
197 grub_raid_block_mul (c, pbuf, size);
199 grub_raid_block_xor (pbuf, qbuf, size);
200 grub_memcpy (buf, pbuf, size);
203 quit:
204 grub_free (pbuf);
205 grub_free (qbuf);
207 return grub_errno;
210 GRUB_MOD_INIT(raid6rec)
212 grub_raid6_init_table ();
213 grub_raid6_recover_func = grub_raid6_recover;
216 GRUB_MOD_FINI(raid6rec)
218 grub_raid6_recover_func = 0;