dropbar: Update to version 2013.60.1.
[tomato.git] / release / src / router / dropbear / dss.c
blob75dc0d08168105c32c5520df5cede1a1a1b33b8d
1 /*
2 * Dropbear - a SSH2 server
3 *
4 * Copyright (c) 2002,2003 Matt Johnston
5 * All rights reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE. */
25 #include "includes.h"
26 #include "dbutil.h"
27 #include "bignum.h"
28 #include "dss.h"
29 #include "buffer.h"
30 #include "ssh.h"
31 #include "random.h"
33 /* Handle DSS (Digital Signature Standard), aka DSA (D.S. Algorithm),
34 * operations, such as key reading, signing, verification. Key generation
35 * is in gendss.c, since it isn't required in the server itself.
37 * See FIPS186 or the Handbook of Applied Cryptography for details of the
38 * algorithm */
40 #ifdef DROPBEAR_DSS
42 /* Load a dss key from a buffer, initialising the values.
43 * The key will have the same format as buf_put_dss_key.
44 * These should be freed with dss_key_free.
45 * Returns DROPBEAR_SUCCESS or DROPBEAR_FAILURE */
46 int buf_get_dss_pub_key(buffer* buf, dropbear_dss_key *key) {
48 TRACE(("enter buf_get_dss_pub_key"))
49 dropbear_assert(key != NULL);
50 key->p = m_malloc(sizeof(mp_int));
51 key->q = m_malloc(sizeof(mp_int));
52 key->g = m_malloc(sizeof(mp_int));
53 key->y = m_malloc(sizeof(mp_int));
54 m_mp_init_multi(key->p, key->q, key->g, key->y, NULL);
55 key->x = NULL;
57 buf_incrpos(buf, 4+SSH_SIGNKEY_DSS_LEN); /* int + "ssh-dss" */
58 if (buf_getmpint(buf, key->p) == DROPBEAR_FAILURE
59 || buf_getmpint(buf, key->q) == DROPBEAR_FAILURE
60 || buf_getmpint(buf, key->g) == DROPBEAR_FAILURE
61 || buf_getmpint(buf, key->y) == DROPBEAR_FAILURE) {
62 TRACE(("leave buf_get_dss_pub_key: failed reading mpints"))
63 return DROPBEAR_FAILURE;
66 if (mp_count_bits(key->p) < MIN_DSS_KEYLEN) {
67 dropbear_log(LOG_WARNING, "DSS key too short");
68 TRACE(("leave buf_get_dss_pub_key: short key"))
69 return DROPBEAR_FAILURE;
72 TRACE(("leave buf_get_dss_pub_key: success"))
73 return DROPBEAR_SUCCESS;
76 /* Same as buf_get_dss_pub_key, but reads a private "x" key at the end.
77 * Loads a private dss key from a buffer
78 * Returns DROPBEAR_SUCCESS or DROPBEAR_FAILURE */
79 int buf_get_dss_priv_key(buffer* buf, dropbear_dss_key *key) {
81 int ret = DROPBEAR_FAILURE;
83 dropbear_assert(key != NULL);
85 ret = buf_get_dss_pub_key(buf, key);
86 if (ret == DROPBEAR_FAILURE) {
87 return DROPBEAR_FAILURE;
90 key->x = m_malloc(sizeof(mp_int));
91 m_mp_init(key->x);
92 ret = buf_getmpint(buf, key->x);
93 if (ret == DROPBEAR_FAILURE) {
94 m_free(key->x);
97 return ret;
101 /* Clear and free the memory used by a public or private key */
102 void dss_key_free(dropbear_dss_key *key) {
104 TRACE2(("enter dsa_key_free"))
105 if (key == NULL) {
106 TRACE2(("enter dsa_key_free: key == NULL"))
107 return;
109 if (key->p) {
110 mp_clear(key->p);
111 m_free(key->p);
113 if (key->q) {
114 mp_clear(key->q);
115 m_free(key->q);
117 if (key->g) {
118 mp_clear(key->g);
119 m_free(key->g);
121 if (key->y) {
122 mp_clear(key->y);
123 m_free(key->y);
125 if (key->x) {
126 mp_clear(key->x);
127 m_free(key->x);
129 m_free(key);
130 TRACE2(("leave dsa_key_free"))
133 /* put the dss public key into the buffer in the required format:
135 * string "ssh-dss"
136 * mpint p
137 * mpint q
138 * mpint g
139 * mpint y
141 void buf_put_dss_pub_key(buffer* buf, dropbear_dss_key *key) {
143 dropbear_assert(key != NULL);
144 buf_putstring(buf, SSH_SIGNKEY_DSS, SSH_SIGNKEY_DSS_LEN);
145 buf_putmpint(buf, key->p);
146 buf_putmpint(buf, key->q);
147 buf_putmpint(buf, key->g);
148 buf_putmpint(buf, key->y);
152 /* Same as buf_put_dss_pub_key, but with the private "x" key appended */
153 void buf_put_dss_priv_key(buffer* buf, dropbear_dss_key *key) {
155 dropbear_assert(key != NULL);
156 buf_put_dss_pub_key(buf, key);
157 buf_putmpint(buf, key->x);
161 #ifdef DROPBEAR_SIGNKEY_VERIFY
162 /* Verify a DSS signature (in buf) made on data by the key given.
163 * returns DROPBEAR_SUCCESS or DROPBEAR_FAILURE */
164 int buf_dss_verify(buffer* buf, dropbear_dss_key *key, const unsigned char* data,
165 unsigned int len) {
167 unsigned char msghash[SHA1_HASH_SIZE];
168 hash_state hs;
169 int ret = DROPBEAR_FAILURE;
170 DEF_MP_INT(val1);
171 DEF_MP_INT(val2);
172 DEF_MP_INT(val3);
173 DEF_MP_INT(val4);
174 char * string = NULL;
175 int stringlen;
177 TRACE(("enter buf_dss_verify"))
178 dropbear_assert(key != NULL);
180 m_mp_init_multi(&val1, &val2, &val3, &val4, NULL);
182 /* get blob, check length */
183 string = buf_getstring(buf, &stringlen);
184 if (stringlen != 2*SHA1_HASH_SIZE) {
185 goto out;
188 /* hash the data */
189 sha1_init(&hs);
190 sha1_process(&hs, data, len);
191 sha1_done(&hs, msghash);
193 /* create the signature - s' and r' are the received signatures in buf */
194 /* w = (s')-1 mod q */
195 /* let val1 = s' */
196 bytes_to_mp(&val1, &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
198 if (mp_cmp(&val1, key->q) != MP_LT) {
199 TRACE(("verify failed, s' >= q"))
200 goto out;
202 /* let val2 = w = (s')^-1 mod q*/
203 if (mp_invmod(&val1, key->q, &val2) != MP_OKAY) {
204 goto out;
207 /* u1 = ((SHA(M')w) mod q */
208 /* let val1 = SHA(M') = msghash */
209 bytes_to_mp(&val1, msghash, SHA1_HASH_SIZE);
211 /* let val3 = u1 = ((SHA(M')w) mod q */
212 if (mp_mulmod(&val1, &val2, key->q, &val3) != MP_OKAY) {
213 goto out;
216 /* u2 = ((r')w) mod q */
217 /* let val1 = r' */
218 bytes_to_mp(&val1, &string[0], SHA1_HASH_SIZE);
219 if (mp_cmp(&val1, key->q) != MP_LT) {
220 TRACE(("verify failed, r' >= q"))
221 goto out;
223 /* let val4 = u2 = ((r')w) mod q */
224 if (mp_mulmod(&val1, &val2, key->q, &val4) != MP_OKAY) {
225 goto out;
228 /* v = (((g)^u1 (y)^u2) mod p) mod q */
229 /* val2 = g^u1 mod p */
230 if (mp_exptmod(key->g, &val3, key->p, &val2) != MP_OKAY) {
231 goto out;
233 /* val3 = y^u2 mod p */
234 if (mp_exptmod(key->y, &val4, key->p, &val3) != MP_OKAY) {
235 goto out;
237 /* val4 = ((g)^u1 (y)^u2) mod p */
238 if (mp_mulmod(&val2, &val3, key->p, &val4) != MP_OKAY) {
239 goto out;
241 /* val2 = v = (((g)^u1 (y)^u2) mod p) mod q */
242 if (mp_mod(&val4, key->q, &val2) != MP_OKAY) {
243 goto out;
246 /* check whether signatures verify */
247 if (mp_cmp(&val2, &val1) == MP_EQ) {
248 /* good sig */
249 ret = DROPBEAR_SUCCESS;
252 out:
253 mp_clear_multi(&val1, &val2, &val3, &val4, NULL);
254 m_free(string);
256 return ret;
259 #endif /* DROPBEAR_SIGNKEY_VERIFY */
261 /* Sign the data presented with key, writing the signature contents
262 * to the buffer */
263 void buf_put_dss_sign(buffer* buf, dropbear_dss_key *key, const unsigned char* data,
264 unsigned int len) {
266 unsigned char msghash[SHA1_HASH_SIZE];
267 unsigned int writelen;
268 unsigned int i;
269 DEF_MP_INT(dss_k);
270 DEF_MP_INT(dss_m);
271 DEF_MP_INT(dss_temp1);
272 DEF_MP_INT(dss_temp2);
273 DEF_MP_INT(dss_r);
274 DEF_MP_INT(dss_s);
275 hash_state hs;
277 TRACE(("enter buf_put_dss_sign"))
278 dropbear_assert(key != NULL);
280 /* hash the data */
281 sha1_init(&hs);
282 sha1_process(&hs, data, len);
283 sha1_done(&hs, msghash);
285 m_mp_init_multi(&dss_k, &dss_temp1, &dss_temp2, &dss_r, &dss_s,
286 &dss_m, NULL);
287 /* the random number generator's input has included the private key which
288 * avoids DSS's problem of private key exposure due to low entropy */
289 gen_random_mpint(key->q, &dss_k);
291 /* now generate the actual signature */
292 bytes_to_mp(&dss_m, msghash, SHA1_HASH_SIZE);
294 /* g^k mod p */
295 if (mp_exptmod(key->g, &dss_k, key->p, &dss_temp1) != MP_OKAY) {
296 dropbear_exit("DSS error");
298 /* r = (g^k mod p) mod q */
299 if (mp_mod(&dss_temp1, key->q, &dss_r) != MP_OKAY) {
300 dropbear_exit("DSS error");
303 /* x*r mod q */
304 if (mp_mulmod(&dss_r, key->x, key->q, &dss_temp1) != MP_OKAY) {
305 dropbear_exit("DSS error");
307 /* (SHA1(M) + xr) mod q) */
308 if (mp_addmod(&dss_m, &dss_temp1, key->q, &dss_temp2) != MP_OKAY) {
309 dropbear_exit("DSS error");
312 /* (k^-1) mod q */
313 if (mp_invmod(&dss_k, key->q, &dss_temp1) != MP_OKAY) {
314 dropbear_exit("DSS error");
317 /* s = (k^-1(SHA1(M) + xr)) mod q */
318 if (mp_mulmod(&dss_temp1, &dss_temp2, key->q, &dss_s) != MP_OKAY) {
319 dropbear_exit("DSS error");
322 buf_putstring(buf, SSH_SIGNKEY_DSS, SSH_SIGNKEY_DSS_LEN);
323 buf_putint(buf, 2*SHA1_HASH_SIZE);
325 writelen = mp_unsigned_bin_size(&dss_r);
326 dropbear_assert(writelen <= SHA1_HASH_SIZE);
327 /* need to pad to 160 bits with leading zeros */
328 for (i = 0; i < SHA1_HASH_SIZE - writelen; i++) {
329 buf_putbyte(buf, 0);
331 if (mp_to_unsigned_bin(&dss_r, buf_getwriteptr(buf, writelen))
332 != MP_OKAY) {
333 dropbear_exit("DSS error");
335 mp_clear(&dss_r);
336 buf_incrwritepos(buf, writelen);
338 writelen = mp_unsigned_bin_size(&dss_s);
339 dropbear_assert(writelen <= SHA1_HASH_SIZE);
340 /* need to pad to 160 bits with leading zeros */
341 for (i = 0; i < SHA1_HASH_SIZE - writelen; i++) {
342 buf_putbyte(buf, 0);
344 if (mp_to_unsigned_bin(&dss_s, buf_getwriteptr(buf, writelen))
345 != MP_OKAY) {
346 dropbear_exit("DSS error");
348 mp_clear(&dss_s);
349 buf_incrwritepos(buf, writelen);
351 mp_clear_multi(&dss_k, &dss_temp1, &dss_temp2, &dss_r, &dss_s,
352 &dss_m, NULL);
354 /* create the signature to return */
356 TRACE(("leave buf_put_dss_sign"))
359 #endif /* DROPBEAR_DSS */