aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/tls/gnutls_mpi.c
blob: 918e6480f6f25c29549221b15a35fade3e4be09a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*
 * Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation
 *
 * Author: Nikos Mavrogiannopoulos
 *
 * This file is part of GNUTLS.
 *
 * The GNUTLS library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 * USA
 *
 */

/* Here lie everything that has to do with large numbers, libgcrypt and
 * other stuff that didn't fit anywhere else.
 */

#include <gnutls_int.h>
#include <libtasn1.h>
#include <gnutls_errors.h>
#include <gnutls_num.h>

/* Functions that refer to the libgcrypt library.
 */

void
MHD_gtls_mpi_release (mpi_t * x)
{
  if (*x == NULL)
    return;
  gcry_mpi_release (*x);
  *x = NULL;
}

/* returns zero on success
 */
int
MHD_gtls_mpi_scan (mpi_t * ret_mpi, const opaque * buffer, size_t * nbytes)
{
  int ret;

  ret = gcry_mpi_scan (ret_mpi, GCRYMPI_FMT_USG, buffer, *nbytes, nbytes);
  if (ret)
    return GNUTLS_E_MPI_SCAN_FAILED;

  return 0;
}

/* returns zero on success. Fails if the number is zero.
 */
int
MHD_gtls_mpi_scan_nz (mpi_t * ret_mpi, const opaque * buffer, size_t * nbytes)
{
  int ret;

  ret = gcry_mpi_scan (ret_mpi, GCRYMPI_FMT_USG, buffer, *nbytes, nbytes);
  if (ret)
    return GNUTLS_E_MPI_SCAN_FAILED;

  /* MPIs with 0 bits are illegal
   */
  if (MHD__gnutls_mpi_get_nbits (*ret_mpi) == 0)
    {
      MHD_gtls_mpi_release (ret_mpi);
      return GNUTLS_E_MPI_SCAN_FAILED;
    }

  return 0;
}

int
MHD_gtls_mpi_scan_pgp (mpi_t * ret_mpi, const opaque * buffer,
                       size_t * nbytes)
{
  int ret;
  ret = gcry_mpi_scan (ret_mpi, GCRYMPI_FMT_PGP, buffer, *nbytes, nbytes);
  if (ret)
    return GNUTLS_E_MPI_SCAN_FAILED;

  /* MPIs with 0 bits are illegal
   */
  if (MHD__gnutls_mpi_get_nbits (*ret_mpi) == 0)
    {
      MHD_gtls_mpi_release (ret_mpi);
      return GNUTLS_E_MPI_SCAN_FAILED;
    }

  return 0;
}

int
MHD_gtls_mpi_print (void *buffer, size_t * nbytes, const mpi_t a)
{
  int ret;

  if (nbytes == NULL || a == NULL)
    return GNUTLS_E_INVALID_REQUEST;

  ret = gcry_mpi_print (GCRYMPI_FMT_USG, buffer, *nbytes, nbytes, a);
  if (!ret)
    return 0;

  return GNUTLS_E_MPI_PRINT_FAILED;
}

/* Always has the first bit zero */
int
MHD_gtls_mpi_print_lz (void *buffer, size_t * nbytes, const mpi_t a)
{
  int ret;

  if (nbytes == NULL || a == NULL)
    return GNUTLS_E_INVALID_REQUEST;

  ret = gcry_mpi_print (GCRYMPI_FMT_STD, buffer, *nbytes, nbytes, a);
  if (!ret)
    return 0;

  return GNUTLS_E_MPI_PRINT_FAILED;
}

/* Always has the first bit zero */
int
MHD_gtls_mpi_dprint_lz (MHD_gnutls_datum_t * dest, const mpi_t a)
{
  int ret;
  opaque *buf = NULL;
  size_t bytes = 0;

  if (dest == NULL || a == NULL)
    return GNUTLS_E_INVALID_REQUEST;

  gcry_mpi_print (GCRYMPI_FMT_STD, NULL, 0, &bytes, a);

  if (bytes != 0)
    buf = MHD_gnutls_malloc (bytes);
  if (buf == NULL)
    return GNUTLS_E_MEMORY_ERROR;

  ret = gcry_mpi_print (GCRYMPI_FMT_STD, buf, bytes, &bytes, a);
  if (!ret)
    {
      dest->data = buf;
      dest->size = bytes;
      return 0;
    }

  MHD_gnutls_free (buf);
  return GNUTLS_E_MPI_PRINT_FAILED;
}

int
MHD_gtls_mpi_dprint (MHD_gnutls_datum_t * dest, const mpi_t a)
{
  int ret;
  opaque *buf = NULL;
  size_t bytes = 0;

  if (dest == NULL || a == NULL)
    return GNUTLS_E_INVALID_REQUEST;

  gcry_mpi_print (GCRYMPI_FMT_USG, NULL, 0, &bytes, a);

  if (bytes != 0)
    buf = MHD_gnutls_malloc (bytes);
  if (buf == NULL)
    return GNUTLS_E_MEMORY_ERROR;

  ret = gcry_mpi_print (GCRYMPI_FMT_USG, buf, bytes, &bytes, a);
  if (!ret)
    {
      dest->data = buf;
      dest->size = bytes;
      return 0;
    }

  MHD_gnutls_free (buf);
  return GNUTLS_E_MPI_PRINT_FAILED;
}


/* this function reads an integer
 * from asn1 structs. Combines the read and mpi_scan
 * steps.
 */
int
MHD__gnutls_x509_read_int (ASN1_TYPE node, const char *value, mpi_t * ret_mpi)
{
  int result;
  size_t s_len;
  opaque *tmpstr = NULL;
  int tmpstr_size;

  tmpstr_size = 0;
  result = MHD__asn1_read_value (node, value, NULL, &tmpstr_size);
  if (result != ASN1_MEM_ERROR)
    {
      MHD_gnutls_assert ();
      return MHD_gtls_asn2err (result);
    }

  tmpstr = MHD_gnutls_alloca (tmpstr_size);
  if (tmpstr == NULL)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_MEMORY_ERROR;
    }

  result = MHD__asn1_read_value (node, value, tmpstr, &tmpstr_size);
  if (result != ASN1_SUCCESS)
    {
      MHD_gnutls_assert ();
      MHD_gnutls_afree (tmpstr);
      return MHD_gtls_asn2err (result);
    }

  s_len = tmpstr_size;
  if (MHD_gtls_mpi_scan (ret_mpi, tmpstr, &s_len) != 0)
    {
      MHD_gnutls_assert ();
      MHD_gnutls_afree (tmpstr);
      return GNUTLS_E_MPI_SCAN_FAILED;
    }

  MHD_gnutls_afree (tmpstr);

  return 0;
}

/* Writes the specified integer into the specified node.
 */
int
MHD__gnutls_x509_write_int (ASN1_TYPE node, const char *value, mpi_t mpi,
                            int lz)
{
  opaque *tmpstr;
  size_t s_len;
  int result;

  s_len = 0;
  if (lz)
    result = MHD_gtls_mpi_print_lz (NULL, &s_len, mpi);
  else
    result = MHD_gtls_mpi_print (NULL, &s_len, mpi);

  tmpstr = MHD_gnutls_alloca (s_len);
  if (tmpstr == NULL)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_MEMORY_ERROR;
    }

  if (lz)
    result = MHD_gtls_mpi_print_lz (tmpstr, &s_len, mpi);
  else
    result = MHD_gtls_mpi_print (tmpstr, &s_len, mpi);

  if (result != 0)
    {
      MHD_gnutls_assert ();
      MHD_gnutls_afree (tmpstr);
      return GNUTLS_E_MPI_PRINT_FAILED;
    }

  result = MHD__asn1_write_value (node, value, tmpstr, s_len);

  MHD_gnutls_afree (tmpstr);

  if (result != ASN1_SUCCESS)
    {
      MHD_gnutls_assert ();
      return MHD_gtls_asn2err (result);
    }

  return 0;
}