2008-09-08 Robert Millan <rmh@aybabtu.com>
[grub2/phcoder/solaris.git] / disk / raid6_recover.c
blob3cb08abfe8f5229e5b5538e1022afd69b3eb2fdb
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 err[2], nerr;
96 char *pbuf = 0, *qbuf = 0;
98 size <<= GRUB_DISK_SECTOR_BITS;
99 pbuf = grub_malloc (size);
100 if (!pbuf)
101 goto quit;
103 qbuf = grub_malloc (size);
104 if (!qbuf)
105 goto quit;
107 q = p + 1;
108 if (q == (int) array->total_devs)
109 q = 0;
111 grub_memset (pbuf, 0, size);
112 grub_memset (qbuf, 0, size);
114 pos = q + 1;
115 if (pos == (int) array->total_devs)
116 pos = 0;
118 nerr = 1;
119 for (i = 0; i < (int) array->total_devs - 2; i++)
121 if (pos == disknr)
122 err[0] = i;
123 else
125 if ((array->device[pos]) &&
126 (! grub_disk_read (array->device[pos], sector, 0, size, buf)))
128 grub_raid_block_xor (pbuf, buf, size);
129 grub_raid_block_mul (raid6_table2[i][i], buf, size);
130 grub_raid_block_xor (qbuf, buf, size);
132 else
134 if (nerr >= 2)
135 goto quit;
137 err[nerr++] = i;
138 grub_errno = GRUB_ERR_NONE;
142 pos++;
143 if (pos == (int) array->total_devs)
144 pos = 0;
147 if (nerr == 1)
149 if ((array->device[p]) &&
150 (! grub_disk_read (array->device[p], sector, 0, size, buf)))
152 grub_raid_block_xor (buf, pbuf, size);
153 goto quit;
156 if (! array->device[q])
158 grub_error (GRUB_ERR_READ_ERROR, "Not enough disk to restore");
159 goto quit;
162 grub_errno = GRUB_ERR_NONE;
163 if (grub_disk_read (array->device[q], sector, 0, size, buf))
164 goto quit;
166 grub_raid_block_xor (buf, qbuf, size);
167 grub_raid_block_mul (raid6_table2[255 - err[0]][255 - err[0]], buf,
168 size);
170 else
172 grub_uint8_t c;
174 if ((! array->device[p]) || (! array->device[q]))
176 grub_error (GRUB_ERR_READ_ERROR, "Not enough disk to restore");
177 goto quit;
180 if (grub_disk_read (array->device[p], sector, 0, size, buf))
181 goto quit;
183 grub_raid_block_xor (pbuf, buf, size);
185 if (grub_disk_read (array->device[q], sector, 0, size, buf))
186 goto quit;
188 grub_raid_block_xor (qbuf, buf, size);
190 c = raid6_table2[err[1]][err[0]];
191 grub_raid_block_mul (c, qbuf, size);
193 c = raid6_table1[raid6_table2[err[1]][err[1]]][c];
194 grub_raid_block_mul (c, pbuf, size);
196 grub_raid_block_xor (pbuf, qbuf, size);
197 grub_memcpy (buf, pbuf, size);
200 quit:
201 grub_free (pbuf);
202 grub_free (qbuf);
204 return grub_errno;
207 GRUB_MOD_INIT(raid6rec)
209 grub_raid6_init_table ();
210 grub_raid6_recover_func = grub_raid6_recover;
213 GRUB_MOD_FINI(raid6rec)
215 grub_raid6_recover_func = 0;