blob: 350abaf4bee73ea484a38197ad790d551814f0e1 [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;
84 unsigned nbits, nbytes, nlimbs, nread = 0;
85 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;
97 nread = 2;
98
Andy Shevchenko0d2a1b22013-01-30 11:30:06 +020099 nbytes = DIV_ROUND_UP(nbits, 8);
100 nlimbs = DIV_ROUND_UP(nbytes, BYTES_PER_MPI_LIMB);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300101 val = mpi_alloc(nlimbs);
102 if (!val)
Nicolai Stange03cdfaa2016-05-26 23:19:51 +0200103 return ERR_PTR(-ENOMEM);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300104 i = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
105 i %= BYTES_PER_MPI_LIMB;
106 val->nbits = nbits;
107 j = val->nlimbs = nlimbs;
108 val->sign = 0;
109 for (; j > 0; j--) {
110 a = 0;
111 for (; i < BYTES_PER_MPI_LIMB; i++) {
112 if (++nread > *ret_nread) {
113 printk
114 ("MPI: mpi larger than buffer nread=%d ret_nread=%d\n",
115 nread, *ret_nread);
116 goto leave;
117 }
118 a <<= 8;
119 a |= *buffer++;
120 }
121 i = 0;
122 val->d[j - 1] = a;
123 }
124
125leave:
126 *ret_nread = nread;
127 return val;
128}
129EXPORT_SYMBOL_GPL(mpi_read_from_buffer);
130
Michal Marek3ee0cb52016-02-17 14:46:59 +0100131static int count_lzeros(MPI a)
132{
133 mpi_limb_t alimb;
134 int i, lzeros = 0;
135
136 for (i = a->nlimbs - 1; i >= 0; i--) {
137 alimb = a->d[i];
138 if (alimb == 0) {
139 lzeros += sizeof(mpi_limb_t);
140 } else {
141 lzeros += count_leading_zeros(alimb) / 8;
142 break;
143 }
144 }
145 return lzeros;
146}
147
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700148/**
149 * mpi_read_buffer() - read MPI to a bufer provided by user (msb first)
150 *
151 * @a: a multi precision integer
152 * @buf: bufer to which the output will be written to. Needs to be at
153 * leaset mpi_get_size(a) long.
154 * @buf_len: size of the buf.
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100155 * @nbytes: receives the actual length of the data written on success and
156 * the data to-be-written on -EOVERFLOW in case buf_len was too
157 * small.
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700158 * @sign: if not NULL, it will be set to the sign of a.
159 *
160 * Return: 0 on success or error code in case of error
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300161 */
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700162int mpi_read_buffer(MPI a, uint8_t *buf, unsigned buf_len, unsigned *nbytes,
163 int *sign)
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300164{
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700165 uint8_t *p;
Nicolai Stange90f864e2016-03-22 13:12:41 +0100166#if BYTES_PER_MPI_LIMB == 4
167 __be32 alimb;
168#elif BYTES_PER_MPI_LIMB == 8
169 __be64 alimb;
170#else
171#error please implement for this limb size.
172#endif
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700173 unsigned int n = mpi_get_size(a);
Michal Marek3ee0cb52016-02-17 14:46:59 +0100174 int i, lzeros;
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700175
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100176 if (!buf || !nbytes)
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700177 return -EINVAL;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300178
179 if (sign)
180 *sign = a->sign;
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700181
Michal Marek3ee0cb52016-02-17 14:46:59 +0100182 lzeros = count_lzeros(a);
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700183
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100184 if (buf_len < n - lzeros) {
185 *nbytes = n - lzeros;
186 return -EOVERFLOW;
187 }
188
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700189 p = buf;
Tadeusz Struk0f74fbf2015-08-24 07:52:14 -0700190 *nbytes = n - lzeros;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300191
Nicolai Stangef00fa242016-03-22 13:12:40 +0100192 for (i = a->nlimbs - 1 - lzeros / BYTES_PER_MPI_LIMB,
193 lzeros %= BYTES_PER_MPI_LIMB;
194 i >= 0; i--) {
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300195#if BYTES_PER_MPI_LIMB == 4
Nicolai Stange90f864e2016-03-22 13:12:41 +0100196 alimb = cpu_to_be32(a->d[i]);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300197#elif BYTES_PER_MPI_LIMB == 8
Nicolai Stange90f864e2016-03-22 13:12:41 +0100198 alimb = cpu_to_be64(a->d[i]);
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300199#else
200#error please implement for this limb size.
201#endif
Nicolai Stange462696f2016-03-22 13:12:42 +0100202 memcpy(p, (u8 *)&alimb + lzeros, BYTES_PER_MPI_LIMB - lzeros);
203 p += BYTES_PER_MPI_LIMB - lzeros;
204 lzeros = 0;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300205 }
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700206 return 0;
207}
208EXPORT_SYMBOL_GPL(mpi_read_buffer);
209
210/*
211 * mpi_get_buffer() - Returns an allocated buffer with the MPI (msb first).
212 * Caller must free the return string.
213 * This function does return a 0 byte buffer with nbytes set to zero if the
214 * value of A is zero.
215 *
216 * @a: a multi precision integer.
217 * @nbytes: receives the length of this buffer.
218 * @sign: if not NULL, it will be set to the sign of the a.
219 *
220 * Return: Pointer to MPI buffer or NULL on error
221 */
222void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign)
223{
Tadeusz Struk0f74fbf2015-08-24 07:52:14 -0700224 uint8_t *buf;
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700225 unsigned int n;
226 int ret;
227
228 if (!nbytes)
229 return NULL;
230
231 n = mpi_get_size(a);
232
233 if (!n)
234 n++;
235
236 buf = kmalloc(n, GFP_KERNEL);
237
238 if (!buf)
239 return NULL;
240
241 ret = mpi_read_buffer(a, buf, n, nbytes, sign);
242
243 if (ret) {
244 kfree(buf);
245 return NULL;
246 }
Tadeusz Strukd37e2962015-06-15 13:18:36 -0700247 return buf;
Dmitry Kasatkincdec9cb2011-08-31 14:05:16 +0300248}
249EXPORT_SYMBOL_GPL(mpi_get_buffer);
250
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700251/**
252 * mpi_write_to_sgl() - Funnction exports MPI to an sgl (msb first)
253 *
254 * This function works in the same way as the mpi_read_buffer, but it
255 * takes an sgl instead of u8 * buf.
256 *
257 * @a: a multi precision integer
258 * @sgl: scatterlist to write to. Needs to be at least
259 * mpi_get_size(a) long.
260 * @nbytes: in/out param - it has the be set to the maximum number of
261 * bytes that can be written to sgl. This has to be at least
262 * the size of the integer a. On return it receives the actual
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100263 * length of the data written on success or the data that would
264 * be written if buffer was too small.
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700265 * @sign: if not NULL, it will be set to the sign of a.
266 *
267 * Return: 0 on success or error code in case of error
268 */
269int mpi_write_to_sgl(MPI a, struct scatterlist *sgl, unsigned *nbytes,
270 int *sign)
271{
272 u8 *p, *p2;
Nicolai Stanged7552902016-03-22 13:12:39 +0100273#if BYTES_PER_MPI_LIMB == 4
274 __be32 alimb;
275#elif BYTES_PER_MPI_LIMB == 8
276 __be64 alimb;
277#else
278#error please implement for this limb size.
279#endif
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700280 unsigned int n = mpi_get_size(a);
Michal Marek3ee0cb52016-02-17 14:46:59 +0100281 int i, x, y = 0, lzeros, buf_len;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700282
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100283 if (!nbytes)
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700284 return -EINVAL;
285
286 if (sign)
287 *sign = a->sign;
288
Michal Marek3ee0cb52016-02-17 14:46:59 +0100289 lzeros = count_lzeros(a);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700290
Andrzej Zaborowski9cbe21d2015-11-13 12:01:32 +0100291 if (*nbytes < n - lzeros) {
292 *nbytes = n - lzeros;
293 return -EOVERFLOW;
294 }
295
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700296 *nbytes = n - lzeros;
297 buf_len = sgl->length;
298 p2 = sg_virt(sgl);
299
Nicolai Stangef2d13622016-03-22 13:12:35 +0100300 for (i = a->nlimbs - 1 - lzeros / BYTES_PER_MPI_LIMB,
301 lzeros %= BYTES_PER_MPI_LIMB;
302 i >= 0; i--) {
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700303#if BYTES_PER_MPI_LIMB == 4
Nicolai Stanged7552902016-03-22 13:12:39 +0100304 alimb = cpu_to_be32(a->d[i]);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700305#elif BYTES_PER_MPI_LIMB == 8
Nicolai Stanged7552902016-03-22 13:12:39 +0100306 alimb = cpu_to_be64(a->d[i]);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700307#else
308#error please implement for this limb size.
309#endif
Nicolai Stange654842e2016-03-22 13:12:36 +0100310 if (lzeros) {
Nicolai Stangef2d13622016-03-22 13:12:35 +0100311 y = lzeros;
Nicolai Stange654842e2016-03-22 13:12:36 +0100312 lzeros = 0;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700313 }
314
Nicolai Stanged7552902016-03-22 13:12:39 +0100315 p = (u8 *)&alimb + y;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700316
317 for (x = 0; x < sizeof(alimb) - y; x++) {
318 if (!buf_len) {
319 sgl = sg_next(sgl);
320 if (!sgl)
321 return -EINVAL;
322 buf_len = sgl->length;
323 p2 = sg_virt(sgl);
324 }
325 *p2++ = *p++;
326 buf_len--;
327 }
328 y = 0;
329 }
330 return 0;
331}
332EXPORT_SYMBOL_GPL(mpi_write_to_sgl);
333
334/*
335 * mpi_read_raw_from_sgl() - Function allocates an MPI and populates it with
336 * data from the sgl
337 *
338 * This function works in the same way as the mpi_read_raw_data, but it
339 * takes an sgl instead of void * buffer. i.e. it allocates
340 * a new MPI and reads the content of the sgl to the MPI.
341 *
342 * @sgl: scatterlist to read from
Nicolai Stangeb6985382016-03-22 13:12:43 +0100343 * @nbytes: number of bytes to read
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700344 *
345 * Return: Pointer to a new MPI or NULL on error
346 */
Nicolai Stangeb6985382016-03-22 13:12:43 +0100347MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int nbytes)
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700348{
349 struct scatterlist *sg;
350 int x, i, j, z, lzeros, ents;
Nicolai Stangeb6985382016-03-22 13:12:43 +0100351 unsigned int nbits, nlimbs;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700352 mpi_limb_t a;
353 MPI val = NULL;
354
355 lzeros = 0;
356 ents = sg_nents(sgl);
357
358 for_each_sg(sgl, sg, ents, i) {
359 const u8 *buff = sg_virt(sg);
360 int len = sg->length;
361
Stephan Mueller63349d02015-10-18 12:45:18 +0200362 while (len && !*buff) {
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700363 lzeros++;
Stephan Mueller63349d02015-10-18 12:45:18 +0200364 len--;
365 buff++;
366 }
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700367
368 if (len && *buff)
369 break;
370
371 ents--;
Nicolai Stangeab1e9122016-03-22 13:12:44 +0100372 nbytes -= lzeros;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700373 lzeros = 0;
374 }
375
376 sgl = sg;
Nicolai Stangeab1e9122016-03-22 13:12:44 +0100377 nbytes -= lzeros;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700378 nbits = nbytes * 8;
379 if (nbits > MAX_EXTERN_MPI_BITS) {
380 pr_info("MPI: mpi too large (%u bits)\n", nbits);
381 return NULL;
382 }
383
384 if (nbytes > 0)
Nicolai Stange64c09b02016-03-22 13:17:27 +0100385 nbits -= count_leading_zeros(*(u8 *)(sg_virt(sgl) + lzeros)) -
386 (BITS_PER_LONG - 8);
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700387
388 nlimbs = DIV_ROUND_UP(nbytes, BYTES_PER_MPI_LIMB);
389 val = mpi_alloc(nlimbs);
390 if (!val)
391 return NULL;
392
393 val->nbits = nbits;
394 val->sign = 0;
395 val->nlimbs = nlimbs;
396
397 if (nbytes == 0)
398 return val;
399
400 j = nlimbs - 1;
401 a = 0;
Nicolai Stange85d541a2016-03-22 13:18:07 +0100402 z = BYTES_PER_MPI_LIMB - nbytes % BYTES_PER_MPI_LIMB;
403 z %= BYTES_PER_MPI_LIMB;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700404
405 for_each_sg(sgl, sg, ents, i) {
406 const u8 *buffer = sg_virt(sg) + lzeros;
407 int len = sg->length - lzeros;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700408
Nicolai Stange85d541a2016-03-22 13:18:07 +0100409 for (x = 0; x < len; x++) {
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700410 a <<= 8;
411 a |= *buffer++;
412 if (((z + x + 1) % BYTES_PER_MPI_LIMB) == 0) {
413 val->d[j--] = a;
414 a = 0;
415 }
416 }
417 z += x;
Tadeusz Struk2d4d1ee2015-10-08 09:26:50 -0700418 lzeros = 0;
419 }
420 return val;
421}
422EXPORT_SYMBOL_GPL(mpi_read_raw_from_sgl);