blob: f4f9e3396f3eeb0b062cd612fc1654c108411879 [file] [log] [blame]
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +03001/* mpicoder.c - Coder for the external representation of MPIs
2 * Copyright (C) 1998, 1999 Free Software Foundation, Inc.
3 *
4 * This file is part of GnuPG.
5 *
6 * GnuPG 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 2 of the License, or
9 * (at your option) any later version.
10 *
11 * GnuPG 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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 */
20
David Howellse1045992012-09-24 17:11:27 +010021#include <linux/bitops.h>
Christoph Hellwiga1164a32015-08-28 09:27:15 +020022#include <linux/count_zeros.h>
Nicolai Stanged7552902016-03-22 13:12:39 +010023#include <linux/byteorder/generic.h>
Nicolai Stange90f864e2016-03-22 13:12:41 +010024#include <linux/string.h>
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030025#include "mpi-internal.h"
26
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030027#define MAX_EXTERN_MPI_BITS 16384
28
David Howellse1045992012-09-24 17:11:27 +010029/**
30 * mpi_read_raw_data - Read a raw byte stream as a positive integer
31 * @xbuffer: The data to read
32 * @nbytes: The amount of data to read
33 */
34MPI mpi_read_raw_data(const void *xbuffer, size_t nbytes)
35{
36 const uint8_t *buffer = xbuffer;
37 int i, j;
38 unsigned nbits, nlimbs;
39 mpi_limb_t a;
40 MPI val = NULL;
41
Chen Gang5402b802013-06-12 14:04:40 -070042 while (nbytes > 0 && buffer[0] == 0) {
David Howellse1045992012-09-24 17:11:27 +010043 buffer++;
44 nbytes--;
45 }
46
47 nbits = nbytes * 8;
48 if (nbits > MAX_EXTERN_MPI_BITS) {
49 pr_info("MPI: mpi too large (%u bits)\n", nbits);
50 return NULL;
51 }
52 if (nbytes > 0)
Nicolai Stangeeef0df62016-05-26 13:05:32 +020053 nbits -= count_leading_zeros(buffer[0]) - (BITS_PER_LONG - 8);
David Howellse1045992012-09-24 17:11:27 +010054
Andy Shevchenko0d2a1b22013-01-30 11:30:06 +020055 nlimbs = DIV_ROUND_UP(nbytes, BYTES_PER_MPI_LIMB);
David Howellse1045992012-09-24 17:11:27 +010056 val = mpi_alloc(nlimbs);
57 if (!val)
58 return NULL;
59 val->nbits = nbits;
60 val->sign = 0;
61 val->nlimbs = nlimbs;
62
63 if (nbytes > 0) {
64 i = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
65 i %= BYTES_PER_MPI_LIMB;
66 for (j = nlimbs; j > 0; j--) {
67 a = 0;
68 for (; i < BYTES_PER_MPI_LIMB; i++) {
69 a <<= 8;
70 a |= *buffer++;
71 }
72 i = 0;
73 val->d[j - 1] = a;
74 }
75 }
76 return val;
77}
78EXPORT_SYMBOL_GPL(mpi_read_raw_data);
79
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030080MPI mpi_read_from_buffer(const void *xbuffer, unsigned *ret_nread)
81{
82 const uint8_t *buffer = xbuffer;
83 int i, j;
Nicolai Stange7af791e2016-05-26 23:19:53 +020084 unsigned nbits, nbytes, nlimbs;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030085 mpi_limb_t a;
Dmitry Kasatkin3cccd152012-01-26 19:13:16 +020086 MPI val = NULL;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030087
88 if (*ret_nread < 2)
Nicolai Stange03cdfaa2016-05-26 23:19:51 +020089 return ERR_PTR(-EINVAL);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030090 nbits = buffer[0] << 8 | buffer[1];
91
92 if (nbits > MAX_EXTERN_MPI_BITS) {
93 pr_info("MPI: mpi too large (%u bits)\n", nbits);
Nicolai Stange03cdfaa2016-05-26 23:19:51 +020094 return ERR_PTR(-EINVAL);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030095 }
96 buffer += 2;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +030097
Andy Shevchenko0d2a1b22013-01-30 11:30:06 +020098 nbytes = DIV_ROUND_UP(nbits, 8);
Nicolai Stange7af791e2016-05-26 23:19:53 +020099 if (nbytes + 2 > *ret_nread) {
Nicolai Stangecdf24b42016-05-26 23:19:54 +0200100 pr_info("MPI: mpi larger than buffer nbytes=%u ret_nread=%u\n",
101 nbytes, *ret_nread);
Nicolai Stange7af791e2016-05-26 23:19:53 +0200102 return ERR_PTR(-EINVAL);
103 }
104
Andy Shevchenko0d2a1b22013-01-30 11:30:06 +0200105 nlimbs = DIV_ROUND_UP(nbytes, BYTES_PER_MPI_LIMB);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300106 val = mpi_alloc(nlimbs);
107 if (!val)
Nicolai Stange03cdfaa2016-05-26 23:19:51 +0200108 return ERR_PTR(-ENOMEM);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300109 i = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
110 i %= BYTES_PER_MPI_LIMB;
111 val->nbits = nbits;
112 j = val->nlimbs = nlimbs;
113 val->sign = 0;
114 for (; j > 0; j--) {
115 a = 0;
116 for (; i < BYTES_PER_MPI_LIMB; i++) {
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300117 a <<= 8;
118 a |= *buffer++;
119 }
120 i = 0;
121 val->d[j - 1] = a;
122 }
123
Nicolai Stange7af791e2016-05-26 23:19:53 +0200124 *ret_nread = nbytes + 2;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300125 return val;
126}
127EXPORT_SYMBOL_GPL(mpi_read_from_buffer);
128
Michal Marek3ee0cb52016-02-17 14:46:59 +0100129static int count_lzeros(MPI a)
130{
131 mpi_limb_t alimb;
132 int i, lzeros = 0;
133
134 for (i = a->nlimbs - 1; i >= 0; i--) {
135 alimb = a->d[i];
136 if (alimb == 0) {
137 lzeros += sizeof(mpi_limb_t);
138 } else {
139 lzeros += count_leading_zeros(alimb) / 8;
140 break;
141 }
142 }
143 return lzeros;
144}
145
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700146/**
147 * mpi_read_buffer() - read MPI to a bufer provided by user (msb first)
148 *
149 * @a: a multi precision integer
150 * @buf: bufer to which the output will be written to. Needs to be at
151 * leaset mpi_get_size(a) long.
152 * @buf_len: size of the buf.
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100153 * @nbytes: receives the actual length of the data written on success and
154 * the data to-be-written on -EOVERFLOW in case buf_len was too
155 * small.
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700156 * @sign: if not NULL, it will be set to the sign of a.
157 *
158 * Return: 0 on success or error code in case of error
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300159 */
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700160int mpi_read_buffer(MPI a, uint8_t *buf, unsigned buf_len, unsigned *nbytes,
161 int *sign)
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300162{
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700163 uint8_t *p;
Nicolai Stange90f864e2016-03-22 13:12:41 +0100164#if BYTES_PER_MPI_LIMB == 4
165 __be32 alimb;
166#elif BYTES_PER_MPI_LIMB == 8
167 __be64 alimb;
168#else
169#error please implement for this limb size.
170#endif
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700171 unsigned int n = mpi_get_size(a);
Michal Marek3ee0cb52016-02-17 14:46:59 +0100172 int i, lzeros;
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700173
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100174 if (!buf || !nbytes)
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700175 return -EINVAL;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300176
177 if (sign)
178 *sign = a->sign;
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700179
Michal Marek3ee0cb52016-02-17 14:46:59 +0100180 lzeros = count_lzeros(a);
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700181
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100182 if (buf_len < n - lzeros) {
183 *nbytes = n - lzeros;
184 return -EOVERFLOW;
185 }
186
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700187 p = buf;
Tadeusz Struk0f74fbf2015-08-24 07:52:14 -0700188 *nbytes = n - lzeros;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300189
Nicolai Stangef00fa242016-03-22 13:12:40 +0100190 for (i = a->nlimbs - 1 - lzeros / BYTES_PER_MPI_LIMB,
191 lzeros %= BYTES_PER_MPI_LIMB;
192 i >= 0; i--) {
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300193#if BYTES_PER_MPI_LIMB == 4
Nicolai Stange90f864e2016-03-22 13:12:41 +0100194 alimb = cpu_to_be32(a->d[i]);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300195#elif BYTES_PER_MPI_LIMB == 8
Nicolai Stange90f864e2016-03-22 13:12:41 +0100196 alimb = cpu_to_be64(a->d[i]);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300197#else
198#error please implement for this limb size.
199#endif
Nicolai Stange462696f2016-03-22 13:12:42 +0100200 memcpy(p, (u8 *)&alimb + lzeros, BYTES_PER_MPI_LIMB - lzeros);
201 p += BYTES_PER_MPI_LIMB - lzeros;
202 lzeros = 0;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300203 }
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700204 return 0;
205}
206EXPORT_SYMBOL_GPL(mpi_read_buffer);
207
208/*
209 * mpi_get_buffer() - Returns an allocated buffer with the MPI (msb first).
210 * Caller must free the return string.
211 * This function does return a 0 byte buffer with nbytes set to zero if the
212 * value of A is zero.
213 *
214 * @a: a multi precision integer.
215 * @nbytes: receives the length of this buffer.
216 * @sign: if not NULL, it will be set to the sign of the a.
217 *
218 * Return: Pointer to MPI buffer or NULL on error
219 */
220void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign)
221{
Tadeusz Struk0f74fbf2015-08-24 07:52:14 -0700222 uint8_t *buf;
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700223 unsigned int n;
224 int ret;
225
226 if (!nbytes)
227 return NULL;
228
229 n = mpi_get_size(a);
230
231 if (!n)
232 n++;
233
234 buf = kmalloc(n, GFP_KERNEL);
235
236 if (!buf)
237 return NULL;
238
239 ret = mpi_read_buffer(a, buf, n, nbytes, sign);
240
241 if (ret) {
242 kfree(buf);
243 return NULL;
244 }
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700245 return buf;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300246}
247EXPORT_SYMBOL_GPL(mpi_get_buffer);
248
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700249/**
250 * mpi_write_to_sgl() - Funnction exports MPI to an sgl (msb first)
251 *
252 * This function works in the same way as the mpi_read_buffer, but it
253 * takes an sgl instead of u8 * buf.
254 *
255 * @a: a multi precision integer
256 * @sgl: scatterlist to write to. Needs to be at least
257 * mpi_get_size(a) long.
258 * @nbytes: in/out param - it has the be set to the maximum number of
259 * bytes that can be written to sgl. This has to be at least
260 * the size of the integer a. On return it receives the actual
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100261 * length of the data written on success or the data that would
262 * be written if buffer was too small.
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700263 * @sign: if not NULL, it will be set to the sign of a.
264 *
265 * Return: 0 on success or error code in case of error
266 */
267int mpi_write_to_sgl(MPI a, struct scatterlist *sgl, unsigned *nbytes,
268 int *sign)
269{
270 u8 *p, *p2;
Nicolai Stanged7552902016-03-22 13:12:39 +0100271#if BYTES_PER_MPI_LIMB == 4
272 __be32 alimb;
273#elif BYTES_PER_MPI_LIMB == 8
274 __be64 alimb;
275#else
276#error please implement for this limb size.
277#endif
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700278 unsigned int n = mpi_get_size(a);
Michal Marek3ee0cb52016-02-17 14:46:59 +0100279 int i, x, y = 0, lzeros, buf_len;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700280
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100281 if (!nbytes)
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700282 return -EINVAL;
283
284 if (sign)
285 *sign = a->sign;
286
Michal Marek3ee0cb52016-02-17 14:46:59 +0100287 lzeros = count_lzeros(a);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700288
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100289 if (*nbytes < n - lzeros) {
290 *nbytes = n - lzeros;
291 return -EOVERFLOW;
292 }
293
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700294 *nbytes = n - lzeros;
295 buf_len = sgl->length;
296 p2 = sg_virt(sgl);
297
Nicolai Stangef2d13622016-03-22 13:12:35 +0100298 for (i = a->nlimbs - 1 - lzeros / BYTES_PER_MPI_LIMB,
299 lzeros %= BYTES_PER_MPI_LIMB;
300 i >= 0; i--) {
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700301#if BYTES_PER_MPI_LIMB == 4
Nicolai Stanged7552902016-03-22 13:12:39 +0100302 alimb = cpu_to_be32(a->d[i]);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700303#elif BYTES_PER_MPI_LIMB == 8
Nicolai Stanged7552902016-03-22 13:12:39 +0100304 alimb = cpu_to_be64(a->d[i]);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700305#else
306#error please implement for this limb size.
307#endif
Nicolai Stange654842e2016-03-22 13:12:36 +0100308 if (lzeros) {
Nicolai Stangef2d13622016-03-22 13:12:35 +0100309 y = lzeros;
Nicolai Stange654842e2016-03-22 13:12:36 +0100310 lzeros = 0;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700311 }
312
Nicolai Stanged7552902016-03-22 13:12:39 +0100313 p = (u8 *)&alimb + y;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700314
315 for (x = 0; x < sizeof(alimb) - y; x++) {
316 if (!buf_len) {
317 sgl = sg_next(sgl);
318 if (!sgl)
319 return -EINVAL;
320 buf_len = sgl->length;
321 p2 = sg_virt(sgl);
322 }
323 *p2++ = *p++;
324 buf_len--;
325 }
326 y = 0;
327 }
328 return 0;
329}
330EXPORT_SYMBOL_GPL(mpi_write_to_sgl);
331
332/*
333 * mpi_read_raw_from_sgl() - Function allocates an MPI and populates it with
334 * data from the sgl
335 *
336 * This function works in the same way as the mpi_read_raw_data, but it
337 * takes an sgl instead of void * buffer. i.e. it allocates
338 * a new MPI and reads the content of the sgl to the MPI.
339 *
340 * @sgl: scatterlist to read from
Nicolai Stangeb6985382016-03-22 13:12:43 +0100341 * @nbytes: number of bytes to read
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700342 *
343 * Return: Pointer to a new MPI or NULL on error
344 */
Nicolai Stangeb6985382016-03-22 13:12:43 +0100345MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int nbytes)
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700346{
347 struct scatterlist *sg;
348 int x, i, j, z, lzeros, ents;
Nicolai Stangeb6985382016-03-22 13:12:43 +0100349 unsigned int nbits, nlimbs;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700350 mpi_limb_t a;
351 MPI val = NULL;
352
353 lzeros = 0;
354 ents = sg_nents(sgl);
355
356 for_each_sg(sgl, sg, ents, i) {
357 const u8 *buff = sg_virt(sg);
358 int len = sg->length;
359
Stephan Mueller63349d02015-10-18 12:45:18 +0200360 while (len && !*buff) {
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700361 lzeros++;
Stephan Mueller63349d02015-10-18 12:45:18 +0200362 len--;
363 buff++;
364 }
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700365
366 if (len && *buff)
367 break;
368
369 ents--;
Nicolai Stangeab1e9122016-03-22 13:12:44 +0100370 nbytes -= lzeros;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700371 lzeros = 0;
372 }
373
374 sgl = sg;
Nicolai Stangeab1e9122016-03-22 13:12:44 +0100375 nbytes -= lzeros;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700376 nbits = nbytes * 8;
377 if (nbits > MAX_EXTERN_MPI_BITS) {
378 pr_info("MPI: mpi too large (%u bits)\n", nbits);
379 return NULL;
380 }
381
382 if (nbytes > 0)
Nicolai Stange64c09b02016-03-22 13:17:27 +0100383 nbits -= count_leading_zeros(*(u8 *)(sg_virt(sgl) + lzeros)) -
384 (BITS_PER_LONG - 8);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700385
386 nlimbs = DIV_ROUND_UP(nbytes, BYTES_PER_MPI_LIMB);
387 val = mpi_alloc(nlimbs);
388 if (!val)
389 return NULL;
390
391 val->nbits = nbits;
392 val->sign = 0;
393 val->nlimbs = nlimbs;
394
395 if (nbytes == 0)
396 return val;
397
398 j = nlimbs - 1;
399 a = 0;
Nicolai Stange85d541a2016-03-22 13:18:07 +0100400 z = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
401 z %= BYTES_PER_MPI_LIMB;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700402
403 for_each_sg(sgl, sg, ents, i) {
404 const u8 *buffer = sg_virt(sg) + lzeros;
405 int len = sg->length - lzeros;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700406
Nicolai Stange85d541a2016-03-22 13:18:07 +0100407 for (x = 0; x < len; x++) {
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700408 a <<= 8;
409 a |= *buffer++;
410 if (((z + x + 1) % BYTES_PER_MPI_LIMB) == 0) {
411 val->d[j--] = a;
412 a = 0;
413 }
414 }
415 z += x;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700416 lzeros = 0;
417 }
418 return val;
419}
420EXPORT_SYMBOL_GPL(mpi_read_raw_from_sgl);