blob: f02e10fa6238174c25662be782d1c6ccd1fea768 [file] [log] [blame]
Thomas Gleixnerd6910052019-05-22 09:51:29 +02001// SPDX-License-Identifier: GPL-2.0-or-later
H. Peter Anvin98ec3022008-02-06 01:39:48 -08002/* -*- linux-c -*- ------------------------------------------------------- *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
H. Peter Anvin98ec3022008-02-06 01:39:48 -08004 * Copyright 2002-2007 H. Peter Anvin - All Rights Reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * ----------------------------------------------------------------------- */
7
8/*
9 * mktables.c
10 *
11 * Make RAID-6 tables. This is a host user space program to be run at
12 * compile time.
13 */
14
15#include <stdio.h>
16#include <string.h>
17#include <inttypes.h>
18#include <stdlib.h>
19#include <time.h>
20
21static uint8_t gfmul(uint8_t a, uint8_t b)
22{
Oliver Pinter54212cf2008-02-06 01:39:47 -080023 uint8_t v = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Oliver Pinter54212cf2008-02-06 01:39:47 -080025 while (b) {
26 if (b & 1)
27 v ^= a;
28 a = (a << 1) ^ (a & 0x80 ? 0x1d : 0);
29 b >>= 1;
30 }
31
32 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033}
34
35static uint8_t gfpow(uint8_t a, int b)
36{
Oliver Pinter54212cf2008-02-06 01:39:47 -080037 uint8_t v = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Oliver Pinter54212cf2008-02-06 01:39:47 -080039 b %= 255;
40 if (b < 0)
41 b += 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Oliver Pinter54212cf2008-02-06 01:39:47 -080043 while (b) {
44 if (b & 1)
45 v = gfmul(v, a);
46 a = gfmul(a, a);
47 b >>= 1;
48 }
49
50 return v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
53int main(int argc, char *argv[])
54{
Oliver Pinter54212cf2008-02-06 01:39:47 -080055 int i, j, k;
56 uint8_t v;
57 uint8_t exptbl[256], invtbl[256];
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Paul Gortmakerdaaa5f72011-05-27 15:50:58 -040059 printf("#include <linux/export.h>\n");
Zhengyuan Liu5e5ac012019-12-20 10:21:27 +080060 printf("#include <linux/raid/pq.h>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Oliver Pinter54212cf2008-02-06 01:39:47 -080062 /* Compute multiplication table */
63 printf("\nconst u8 __attribute__((aligned(256)))\n"
64 "raid6_gfmul[256][256] =\n"
65 "{\n");
66 for (i = 0; i < 256; i++) {
67 printf("\t{\n");
68 for (j = 0; j < 256; j += 8) {
69 printf("\t\t");
70 for (k = 0; k < 8; k++)
H. Peter Anvin98ec3022008-02-06 01:39:48 -080071 printf("0x%02x,%c", gfmul(i, j + k),
72 (k == 7) ? '\n' : ' ');
Oliver Pinter54212cf2008-02-06 01:39:47 -080073 }
74 printf("\t},\n");
75 }
76 printf("};\n");
Dan Williamsf701d582009-03-31 15:09:39 +110077 printf("#ifdef __KERNEL__\n");
78 printf("EXPORT_SYMBOL(raid6_gfmul);\n");
79 printf("#endif\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Jim Kukunas048a8b82012-05-22 13:54:18 +100081 /* Compute vector multiplication table */
82 printf("\nconst u8 __attribute__((aligned(256)))\n"
83 "raid6_vgfmul[256][32] =\n"
84 "{\n");
85 for (i = 0; i < 256; i++) {
86 printf("\t{\n");
87 for (j = 0; j < 16; j += 8) {
88 printf("\t\t");
89 for (k = 0; k < 8; k++)
90 printf("0x%02x,%c", gfmul(i, j + k),
91 (k == 7) ? '\n' : ' ');
92 }
93 for (j = 0; j < 16; j += 8) {
94 printf("\t\t");
95 for (k = 0; k < 8; k++)
96 printf("0x%02x,%c", gfmul(i, (j + k) << 4),
97 (k == 7) ? '\n' : ' ');
98 }
99 printf("\t},\n");
100 }
101 printf("};\n");
102 printf("#ifdef __KERNEL__\n");
103 printf("EXPORT_SYMBOL(raid6_vgfmul);\n");
104 printf("#endif\n");
105
Oliver Pinter54212cf2008-02-06 01:39:47 -0800106 /* Compute power-of-2 table (exponent) */
107 v = 1;
108 printf("\nconst u8 __attribute__((aligned(256)))\n"
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800109 "raid6_gfexp[256] =\n" "{\n");
Oliver Pinter54212cf2008-02-06 01:39:47 -0800110 for (i = 0; i < 256; i += 8) {
111 printf("\t");
112 for (j = 0; j < 8; j++) {
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800113 exptbl[i + j] = v;
114 printf("0x%02x,%c", v, (j == 7) ? '\n' : ' ');
Oliver Pinter54212cf2008-02-06 01:39:47 -0800115 v = gfmul(v, 2);
116 if (v == 1)
117 v = 0; /* For entry 255, not a real entry */
118 }
Oliver Pinter54212cf2008-02-06 01:39:47 -0800119 }
120 printf("};\n");
Dan Williamsf701d582009-03-31 15:09:39 +1100121 printf("#ifdef __KERNEL__\n");
122 printf("EXPORT_SYMBOL(raid6_gfexp);\n");
123 printf("#endif\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Anup Patelb5dceda2017-05-15 10:34:52 +0530125 /* Compute log-of-2 table */
126 printf("\nconst u8 __attribute__((aligned(256)))\n"
127 "raid6_gflog[256] =\n" "{\n");
128 for (i = 0; i < 256; i += 8) {
129 printf("\t");
130 for (j = 0; j < 8; j++) {
131 v = 255;
132 for (k = 0; k < 256; k++)
133 if (exptbl[k] == (i + j)) {
134 v = k;
135 break;
136 }
137 printf("0x%02x,%c", v, (j == 7) ? '\n' : ' ');
138 }
139 }
140 printf("};\n");
141 printf("#ifdef __KERNEL__\n");
142 printf("EXPORT_SYMBOL(raid6_gflog);\n");
143 printf("#endif\n");
144
Oliver Pinter54212cf2008-02-06 01:39:47 -0800145 /* Compute inverse table x^-1 == x^254 */
146 printf("\nconst u8 __attribute__((aligned(256)))\n"
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800147 "raid6_gfinv[256] =\n" "{\n");
Oliver Pinter54212cf2008-02-06 01:39:47 -0800148 for (i = 0; i < 256; i += 8) {
149 printf("\t");
150 for (j = 0; j < 8; j++) {
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800151 invtbl[i + j] = v = gfpow(i + j, 254);
152 printf("0x%02x,%c", v, (j == 7) ? '\n' : ' ');
Oliver Pinter54212cf2008-02-06 01:39:47 -0800153 }
Oliver Pinter54212cf2008-02-06 01:39:47 -0800154 }
155 printf("};\n");
Dan Williamsf701d582009-03-31 15:09:39 +1100156 printf("#ifdef __KERNEL__\n");
157 printf("EXPORT_SYMBOL(raid6_gfinv);\n");
158 printf("#endif\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Oliver Pinter54212cf2008-02-06 01:39:47 -0800160 /* Compute inv(2^x + 1) (exponent-xor-inverse) table */
161 printf("\nconst u8 __attribute__((aligned(256)))\n"
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800162 "raid6_gfexi[256] =\n" "{\n");
Oliver Pinter54212cf2008-02-06 01:39:47 -0800163 for (i = 0; i < 256; i += 8) {
164 printf("\t");
165 for (j = 0; j < 8; j++)
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800166 printf("0x%02x,%c", invtbl[exptbl[i + j] ^ 1],
167 (j == 7) ? '\n' : ' ');
Oliver Pinter54212cf2008-02-06 01:39:47 -0800168 }
H. Peter Anvin98ec3022008-02-06 01:39:48 -0800169 printf("};\n");
Dan Williamsf701d582009-03-31 15:09:39 +1100170 printf("#ifdef __KERNEL__\n");
171 printf("EXPORT_SYMBOL(raid6_gfexi);\n");
172 printf("#endif\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Oliver Pinter54212cf2008-02-06 01:39:47 -0800174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}