[BACK]Return to key.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/key.c, Revision 1.47

1.1       markus      1: /*
1.11      deraadt     2:  * read_bignum():
                      3:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      4:  *
                      5:  * As far as I am concerned, the code I have written for this software
                      6:  * can be used freely for any purpose.  Any derived versions of this
                      7:  * software must be clearly marked as such, and if the derived work is
                      8:  * incompatible with the protocol description in the RFC file, it must be
                      9:  * called by a name other than "ssh" or "Secure Shell".
                     10:  *
                     11:  *
1.28      markus     12:  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
1.1       markus     13:  *
                     14:  * Redistribution and use in source and binary forms, with or without
                     15:  * modification, are permitted provided that the following conditions
                     16:  * are met:
                     17:  * 1. Redistributions of source code must retain the above copyright
                     18:  *    notice, this list of conditions and the following disclaimer.
                     19:  * 2. Redistributions in binary form must reproduce the above copyright
                     20:  *    notice, this list of conditions and the following disclaimer in the
                     21:  *    documentation and/or other materials provided with the distribution.
                     22:  *
                     23:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     24:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     25:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     26:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     27:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     28:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     29:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     30:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     31:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     32:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     33:  */
1.15      markus     34: #include "includes.h"
1.47    ! deraadt    35: RCSID("$OpenBSD: key.c,v 1.46 2002/06/30 21:59:45 deraadt Exp $");
1.1       markus     36:
1.2       markus     37: #include <openssl/evp.h>
1.15      markus     38:
1.1       markus     39: #include "xmalloc.h"
                     40: #include "key.h"
1.12      markus     41: #include "rsa.h"
                     42: #include "ssh-dss.h"
                     43: #include "ssh-rsa.h"
1.3       markus     44: #include "uuencode.h"
1.12      markus     45: #include "buffer.h"
                     46: #include "bufaux.h"
1.15      markus     47: #include "log.h"
1.1       markus     48:
                     49: Key *
                     50: key_new(int type)
                     51: {
                     52:        Key *k;
                     53:        RSA *rsa;
                     54:        DSA *dsa;
                     55:        k = xmalloc(sizeof(*k));
                     56:        k->type = type;
1.29      markus     57:        k->flags = 0;
1.3       markus     58:        k->dsa = NULL;
                     59:        k->rsa = NULL;
1.1       markus     60:        switch (k->type) {
1.12      markus     61:        case KEY_RSA1:
1.1       markus     62:        case KEY_RSA:
1.38      markus     63:                if ((rsa = RSA_new()) == NULL)
                     64:                        fatal("key_new: RSA_new failed");
                     65:                if ((rsa->n = BN_new()) == NULL)
                     66:                        fatal("key_new: BN_new failed");
                     67:                if ((rsa->e = BN_new()) == NULL)
                     68:                        fatal("key_new: BN_new failed");
1.1       markus     69:                k->rsa = rsa;
                     70:                break;
                     71:        case KEY_DSA:
1.38      markus     72:                if ((dsa = DSA_new()) == NULL)
                     73:                        fatal("key_new: DSA_new failed");
                     74:                if ((dsa->p = BN_new()) == NULL)
                     75:                        fatal("key_new: BN_new failed");
                     76:                if ((dsa->q = BN_new()) == NULL)
                     77:                        fatal("key_new: BN_new failed");
                     78:                if ((dsa->g = BN_new()) == NULL)
                     79:                        fatal("key_new: BN_new failed");
                     80:                if ((dsa->pub_key = BN_new()) == NULL)
                     81:                        fatal("key_new: BN_new failed");
1.1       markus     82:                k->dsa = dsa;
                     83:                break;
1.12      markus     84:        case KEY_UNSPEC:
1.1       markus     85:                break;
                     86:        default:
                     87:                fatal("key_new: bad key type %d", k->type);
                     88:                break;
                     89:        }
                     90:        return k;
                     91: }
1.45      deraadt    92:
1.12      markus     93: Key *
                     94: key_new_private(int type)
                     95: {
                     96:        Key *k = key_new(type);
                     97:        switch (k->type) {
                     98:        case KEY_RSA1:
                     99:        case KEY_RSA:
1.38      markus    100:                if ((k->rsa->d = BN_new()) == NULL)
                    101:                        fatal("key_new_private: BN_new failed");
                    102:                if ((k->rsa->iqmp = BN_new()) == NULL)
                    103:                        fatal("key_new_private: BN_new failed");
                    104:                if ((k->rsa->q = BN_new()) == NULL)
                    105:                        fatal("key_new_private: BN_new failed");
                    106:                if ((k->rsa->p = BN_new()) == NULL)
                    107:                        fatal("key_new_private: BN_new failed");
                    108:                if ((k->rsa->dmq1 = BN_new()) == NULL)
                    109:                        fatal("key_new_private: BN_new failed");
                    110:                if ((k->rsa->dmp1 = BN_new()) == NULL)
                    111:                        fatal("key_new_private: BN_new failed");
1.12      markus    112:                break;
                    113:        case KEY_DSA:
1.38      markus    114:                if ((k->dsa->priv_key = BN_new()) == NULL)
                    115:                        fatal("key_new_private: BN_new failed");
1.12      markus    116:                break;
                    117:        case KEY_UNSPEC:
                    118:                break;
                    119:        default:
                    120:                break;
                    121:        }
                    122:        return k;
                    123: }
1.45      deraadt   124:
1.1       markus    125: void
                    126: key_free(Key *k)
                    127: {
                    128:        switch (k->type) {
1.12      markus    129:        case KEY_RSA1:
1.1       markus    130:        case KEY_RSA:
                    131:                if (k->rsa != NULL)
                    132:                        RSA_free(k->rsa);
                    133:                k->rsa = NULL;
                    134:                break;
                    135:        case KEY_DSA:
                    136:                if (k->dsa != NULL)
                    137:                        DSA_free(k->dsa);
                    138:                k->dsa = NULL;
                    139:                break;
1.12      markus    140:        case KEY_UNSPEC:
                    141:                break;
1.1       markus    142:        default:
                    143:                fatal("key_free: bad key type %d", k->type);
                    144:                break;
                    145:        }
                    146:        xfree(k);
                    147: }
                    148: int
                    149: key_equal(Key *a, Key *b)
                    150: {
                    151:        if (a == NULL || b == NULL || a->type != b->type)
                    152:                return 0;
                    153:        switch (a->type) {
1.12      markus    154:        case KEY_RSA1:
1.1       markus    155:        case KEY_RSA:
                    156:                return a->rsa != NULL && b->rsa != NULL &&
                    157:                    BN_cmp(a->rsa->e, b->rsa->e) == 0 &&
                    158:                    BN_cmp(a->rsa->n, b->rsa->n) == 0;
                    159:                break;
                    160:        case KEY_DSA:
                    161:                return a->dsa != NULL && b->dsa != NULL &&
                    162:                    BN_cmp(a->dsa->p, b->dsa->p) == 0 &&
                    163:                    BN_cmp(a->dsa->q, b->dsa->q) == 0 &&
                    164:                    BN_cmp(a->dsa->g, b->dsa->g) == 0 &&
                    165:                    BN_cmp(a->dsa->pub_key, b->dsa->pub_key) == 0;
                    166:                break;
                    167:        default:
1.3       markus    168:                fatal("key_equal: bad key type %d", a->type);
1.1       markus    169:                break;
                    170:        }
                    171:        return 0;
                    172: }
                    173:
1.46      deraadt   174: static u_char *
1.39      markus    175: key_fingerprint_raw(Key *k, enum fp_type dgst_type, u_int *dgst_raw_length)
1.1       markus    176: {
1.41      markus    177:        const EVP_MD *md = NULL;
1.21      markus    178:        EVP_MD_CTX ctx;
1.13      markus    179:        u_char *blob = NULL;
1.19      jakob     180:        u_char *retval = NULL;
1.40      markus    181:        u_int len = 0;
1.3       markus    182:        int nlen, elen;
1.1       markus    183:
1.19      jakob     184:        *dgst_raw_length = 0;
                    185:
1.21      markus    186:        switch (dgst_type) {
                    187:        case SSH_FP_MD5:
                    188:                md = EVP_md5();
                    189:                break;
                    190:        case SSH_FP_SHA1:
                    191:                md = EVP_sha1();
                    192:                break;
                    193:        default:
                    194:                fatal("key_fingerprint_raw: bad digest type %d",
                    195:                    dgst_type);
                    196:        }
1.1       markus    197:        switch (k->type) {
1.12      markus    198:        case KEY_RSA1:
1.1       markus    199:                nlen = BN_num_bytes(k->rsa->n);
                    200:                elen = BN_num_bytes(k->rsa->e);
                    201:                len = nlen + elen;
1.3       markus    202:                blob = xmalloc(len);
                    203:                BN_bn2bin(k->rsa->n, blob);
                    204:                BN_bn2bin(k->rsa->e, blob + nlen);
1.1       markus    205:                break;
                    206:        case KEY_DSA:
1.12      markus    207:        case KEY_RSA:
                    208:                key_to_blob(k, &blob, &len);
                    209:                break;
                    210:        case KEY_UNSPEC:
                    211:                return retval;
1.1       markus    212:                break;
                    213:        default:
1.19      jakob     214:                fatal("key_fingerprint_raw: bad key type %d", k->type);
1.1       markus    215:                break;
                    216:        }
1.3       markus    217:        if (blob != NULL) {
1.19      jakob     218:                retval = xmalloc(EVP_MAX_MD_SIZE);
1.8       markus    219:                EVP_DigestInit(&ctx, md);
                    220:                EVP_DigestUpdate(&ctx, blob, len);
1.39      markus    221:                EVP_DigestFinal(&ctx, retval, dgst_raw_length);
1.3       markus    222:                memset(blob, 0, len);
                    223:                xfree(blob);
1.19      jakob     224:        } else {
                    225:                fatal("key_fingerprint_raw: blob is null");
1.1       markus    226:        }
1.19      jakob     227:        return retval;
                    228: }
                    229:
1.46      deraadt   230: static char *
                    231: key_fingerprint_hex(u_char *dgst_raw, u_int dgst_raw_len)
1.19      jakob     232: {
                    233:        char *retval;
                    234:        int i;
                    235:
1.24      deraadt   236:        retval = xmalloc(dgst_raw_len * 3 + 1);
1.19      jakob     237:        retval[0] = '\0';
1.36      deraadt   238:        for (i = 0; i < dgst_raw_len; i++) {
1.19      jakob     239:                char hex[4];
                    240:                snprintf(hex, sizeof(hex), "%02x:", dgst_raw[i]);
                    241:                strlcat(retval, hex, dgst_raw_len * 3);
                    242:        }
                    243:        retval[(dgst_raw_len * 3) - 1] = '\0';
                    244:        return retval;
                    245: }
                    246:
1.46      deraadt   247: static char *
                    248: key_fingerprint_bubblebabble(u_char *dgst_raw, u_int dgst_raw_len)
1.19      jakob     249: {
                    250:        char vowels[] = { 'a', 'e', 'i', 'o', 'u', 'y' };
                    251:        char consonants[] = { 'b', 'c', 'd', 'f', 'g', 'h', 'k', 'l', 'm',
                    252:            'n', 'p', 'r', 's', 't', 'v', 'z', 'x' };
1.20      jakob     253:        u_int i, j = 0, rounds, seed = 1;
1.19      jakob     254:        char *retval;
                    255:
                    256:        rounds = (dgst_raw_len / 2) + 1;
                    257:        retval = xmalloc(sizeof(char) * (rounds*6));
1.20      jakob     258:        retval[j++] = 'x';
                    259:        for (i = 0; i < rounds; i++) {
1.19      jakob     260:                u_int idx0, idx1, idx2, idx3, idx4;
1.20      jakob     261:                if ((i + 1 < rounds) || (dgst_raw_len % 2 != 0)) {
                    262:                        idx0 = (((((u_int)(dgst_raw[2 * i])) >> 6) & 3) +
1.19      jakob     263:                            seed) % 6;
1.20      jakob     264:                        idx1 = (((u_int)(dgst_raw[2 * i])) >> 2) & 15;
                    265:                        idx2 = ((((u_int)(dgst_raw[2 * i])) & 3) +
1.19      jakob     266:                            (seed / 6)) % 6;
1.20      jakob     267:                        retval[j++] = vowels[idx0];
                    268:                        retval[j++] = consonants[idx1];
                    269:                        retval[j++] = vowels[idx2];
                    270:                        if ((i + 1) < rounds) {
                    271:                                idx3 = (((u_int)(dgst_raw[(2 * i) + 1])) >> 4) & 15;
                    272:                                idx4 = (((u_int)(dgst_raw[(2 * i) + 1]))) & 15;
                    273:                                retval[j++] = consonants[idx3];
                    274:                                retval[j++] = '-';
                    275:                                retval[j++] = consonants[idx4];
1.19      jakob     276:                                seed = ((seed * 5) +
1.20      jakob     277:                                    ((((u_int)(dgst_raw[2 * i])) * 7) +
                    278:                                    ((u_int)(dgst_raw[(2 * i) + 1])))) % 36;
1.19      jakob     279:                        }
                    280:                } else {
                    281:                        idx0 = seed % 6;
                    282:                        idx1 = 16;
                    283:                        idx2 = seed / 6;
1.20      jakob     284:                        retval[j++] = vowels[idx0];
                    285:                        retval[j++] = consonants[idx1];
                    286:                        retval[j++] = vowels[idx2];
1.19      jakob     287:                }
                    288:        }
1.20      jakob     289:        retval[j++] = 'x';
                    290:        retval[j++] = '\0';
1.19      jakob     291:        return retval;
                    292: }
                    293:
1.46      deraadt   294: char *
1.22      markus    295: key_fingerprint(Key *k, enum fp_type dgst_type, enum fp_rep dgst_rep)
1.19      jakob     296: {
1.23      markus    297:        char *retval = NULL;
1.19      jakob     298:        u_char *dgst_raw;
1.39      markus    299:        u_int dgst_raw_len;
1.36      deraadt   300:
1.19      jakob     301:        dgst_raw = key_fingerprint_raw(k, dgst_type, &dgst_raw_len);
                    302:        if (!dgst_raw)
1.22      markus    303:                fatal("key_fingerprint: null from key_fingerprint_raw()");
1.35      deraadt   304:        switch (dgst_rep) {
1.19      jakob     305:        case SSH_FP_HEX:
                    306:                retval = key_fingerprint_hex(dgst_raw, dgst_raw_len);
                    307:                break;
                    308:        case SSH_FP_BUBBLEBABBLE:
                    309:                retval = key_fingerprint_bubblebabble(dgst_raw, dgst_raw_len);
                    310:                break;
                    311:        default:
                    312:                fatal("key_fingerprint_ex: bad digest representation %d",
                    313:                    dgst_rep);
                    314:                break;
                    315:        }
                    316:        memset(dgst_raw, 0, dgst_raw_len);
                    317:        xfree(dgst_raw);
1.1       markus    318:        return retval;
                    319: }
                    320:
                    321: /*
                    322:  * Reads a multiple-precision integer in decimal from the buffer, and advances
                    323:  * the pointer.  The integer must already be initialized.  This function is
                    324:  * permitted to modify the buffer.  This leaves *cpp to point just beyond the
                    325:  * last processed (and maybe modified) character.  Note that this may modify
                    326:  * the buffer containing the number.
                    327:  */
1.27      itojun    328: static int
1.1       markus    329: read_bignum(char **cpp, BIGNUM * value)
                    330: {
                    331:        char *cp = *cpp;
                    332:        int old;
                    333:
                    334:        /* Skip any leading whitespace. */
                    335:        for (; *cp == ' ' || *cp == '\t'; cp++)
                    336:                ;
                    337:
                    338:        /* Check that it begins with a decimal digit. */
                    339:        if (*cp < '0' || *cp > '9')
                    340:                return 0;
                    341:
                    342:        /* Save starting position. */
                    343:        *cpp = cp;
                    344:
                    345:        /* Move forward until all decimal digits skipped. */
                    346:        for (; *cp >= '0' && *cp <= '9'; cp++)
                    347:                ;
                    348:
                    349:        /* Save the old terminating character, and replace it by \0. */
                    350:        old = *cp;
                    351:        *cp = 0;
                    352:
                    353:        /* Parse the number. */
                    354:        if (BN_dec2bn(&value, *cpp) == 0)
                    355:                return 0;
                    356:
                    357:        /* Restore old terminating character. */
                    358:        *cp = old;
                    359:
                    360:        /* Move beyond the number and return success. */
                    361:        *cpp = cp;
                    362:        return 1;
                    363: }
1.45      deraadt   364:
1.27      itojun    365: static int
1.1       markus    366: write_bignum(FILE *f, BIGNUM *num)
                    367: {
                    368:        char *buf = BN_bn2dec(num);
                    369:        if (buf == NULL) {
                    370:                error("write_bignum: BN_bn2dec() failed");
                    371:                return 0;
                    372:        }
                    373:        fprintf(f, " %s", buf);
1.33      markus    374:        OPENSSL_free(buf);
1.1       markus    375:        return 1;
                    376: }
1.12      markus    377:
1.32      markus    378: /* returns 1 ok, -1 error */
1.12      markus    379: int
1.3       markus    380: key_read(Key *ret, char **cpp)
1.1       markus    381: {
1.3       markus    382:        Key *k;
1.12      markus    383:        int success = -1;
                    384:        char *cp, *space;
                    385:        int len, n, type;
                    386:        u_int bits;
1.13      markus    387:        u_char *blob;
1.3       markus    388:
                    389:        cp = *cpp;
                    390:
1.35      deraadt   391:        switch (ret->type) {
1.12      markus    392:        case KEY_RSA1:
1.3       markus    393:                /* Get number of bits. */
                    394:                if (*cp < '0' || *cp > '9')
1.12      markus    395:                        return -1;      /* Bad bit count... */
1.3       markus    396:                for (bits = 0; *cp >= '0' && *cp <= '9'; cp++)
                    397:                        bits = 10 * bits + *cp - '0';
1.1       markus    398:                if (bits == 0)
1.12      markus    399:                        return -1;
1.3       markus    400:                *cpp = cp;
1.1       markus    401:                /* Get public exponent, public modulus. */
                    402:                if (!read_bignum(cpp, ret->rsa->e))
1.12      markus    403:                        return -1;
1.1       markus    404:                if (!read_bignum(cpp, ret->rsa->n))
1.12      markus    405:                        return -1;
                    406:                success = 1;
1.1       markus    407:                break;
1.12      markus    408:        case KEY_UNSPEC:
                    409:        case KEY_RSA:
1.1       markus    410:        case KEY_DSA:
1.12      markus    411:                space = strchr(cp, ' ');
                    412:                if (space == NULL) {
                    413:                        debug3("key_read: no space");
                    414:                        return -1;
                    415:                }
                    416:                *space = '\0';
                    417:                type = key_type_from_name(cp);
                    418:                *space = ' ';
                    419:                if (type == KEY_UNSPEC) {
                    420:                        debug3("key_read: no key found");
                    421:                        return -1;
                    422:                }
                    423:                cp = space+1;
                    424:                if (*cp == '\0') {
                    425:                        debug3("key_read: short string");
                    426:                        return -1;
                    427:                }
                    428:                if (ret->type == KEY_UNSPEC) {
                    429:                        ret->type = type;
                    430:                } else if (ret->type != type) {
                    431:                        /* is a key, but different type */
                    432:                        debug3("key_read: type mismatch");
1.32      markus    433:                        return -1;
1.12      markus    434:                }
1.3       markus    435:                len = 2*strlen(cp);
                    436:                blob = xmalloc(len);
                    437:                n = uudecode(cp, blob, len);
1.6       markus    438:                if (n < 0) {
1.7       markus    439:                        error("key_read: uudecode %s failed", cp);
1.34      markus    440:                        xfree(blob);
1.12      markus    441:                        return -1;
1.6       markus    442:                }
1.12      markus    443:                k = key_from_blob(blob, n);
1.34      markus    444:                xfree(blob);
1.7       markus    445:                if (k == NULL) {
1.12      markus    446:                        error("key_read: key_from_blob %s failed", cp);
                    447:                        return -1;
1.7       markus    448:                }
1.12      markus    449:                if (k->type != type) {
                    450:                        error("key_read: type mismatch: encoding error");
                    451:                        key_free(k);
                    452:                        return -1;
                    453:                }
                    454: /*XXXX*/
                    455:                if (ret->type == KEY_RSA) {
                    456:                        if (ret->rsa != NULL)
                    457:                                RSA_free(ret->rsa);
                    458:                        ret->rsa = k->rsa;
                    459:                        k->rsa = NULL;
                    460:                        success = 1;
                    461: #ifdef DEBUG_PK
                    462:                        RSA_print_fp(stderr, ret->rsa, 8);
                    463: #endif
                    464:                } else {
                    465:                        if (ret->dsa != NULL)
                    466:                                DSA_free(ret->dsa);
                    467:                        ret->dsa = k->dsa;
                    468:                        k->dsa = NULL;
                    469:                        success = 1;
                    470: #ifdef DEBUG_PK
                    471:                        DSA_print_fp(stderr, ret->dsa, 8);
                    472: #endif
                    473:                }
                    474: /*XXXX*/
1.34      markus    475:                key_free(k);
1.12      markus    476:                if (success != 1)
                    477:                        break;
1.7       markus    478:                /* advance cp: skip whitespace and data */
                    479:                while (*cp == ' ' || *cp == '\t')
                    480:                        cp++;
                    481:                while (*cp != '\0' && *cp != ' ' && *cp != '\t')
                    482:                        cp++;
                    483:                *cpp = cp;
1.1       markus    484:                break;
                    485:        default:
1.3       markus    486:                fatal("key_read: bad key type: %d", ret->type);
1.1       markus    487:                break;
                    488:        }
1.12      markus    489:        return success;
1.1       markus    490: }
1.45      deraadt   491:
1.1       markus    492: int
                    493: key_write(Key *key, FILE *f)
                    494: {
1.40      markus    495:        int n, success = 0;
                    496:        u_int len, bits = 0;
                    497:        u_char *blob, *uu;
1.1       markus    498:
1.12      markus    499:        if (key->type == KEY_RSA1 && key->rsa != NULL) {
1.1       markus    500:                /* size of modulus 'n' */
                    501:                bits = BN_num_bits(key->rsa->n);
                    502:                fprintf(f, "%u", bits);
                    503:                if (write_bignum(f, key->rsa->e) &&
                    504:                    write_bignum(f, key->rsa->n)) {
                    505:                        success = 1;
                    506:                } else {
                    507:                        error("key_write: failed for RSA key");
                    508:                }
1.12      markus    509:        } else if ((key->type == KEY_DSA && key->dsa != NULL) ||
                    510:            (key->type == KEY_RSA && key->rsa != NULL)) {
                    511:                key_to_blob(key, &blob, &len);
1.3       markus    512:                uu = xmalloc(2*len);
1.5       markus    513:                n = uuencode(blob, len, uu, 2*len);
                    514:                if (n > 0) {
1.12      markus    515:                        fprintf(f, "%s %s", key_ssh_name(key), uu);
1.5       markus    516:                        success = 1;
                    517:                }
1.3       markus    518:                xfree(blob);
                    519:                xfree(uu);
1.1       markus    520:        }
                    521:        return success;
                    522: }
1.45      deraadt   523:
1.4       markus    524: char *
                    525: key_type(Key *k)
                    526: {
                    527:        switch (k->type) {
1.12      markus    528:        case KEY_RSA1:
                    529:                return "RSA1";
                    530:                break;
1.4       markus    531:        case KEY_RSA:
                    532:                return "RSA";
                    533:                break;
                    534:        case KEY_DSA:
                    535:                return "DSA";
                    536:                break;
                    537:        }
                    538:        return "unknown";
1.10      markus    539: }
1.45      deraadt   540:
1.12      markus    541: char *
                    542: key_ssh_name(Key *k)
                    543: {
                    544:        switch (k->type) {
                    545:        case KEY_RSA:
                    546:                return "ssh-rsa";
                    547:                break;
                    548:        case KEY_DSA:
                    549:                return "ssh-dss";
                    550:                break;
                    551:        }
                    552:        return "ssh-unknown";
                    553: }
1.45      deraadt   554:
1.12      markus    555: u_int
1.35      deraadt   556: key_size(Key *k)
                    557: {
1.10      markus    558:        switch (k->type) {
1.12      markus    559:        case KEY_RSA1:
1.10      markus    560:        case KEY_RSA:
                    561:                return BN_num_bits(k->rsa->n);
                    562:                break;
                    563:        case KEY_DSA:
                    564:                return BN_num_bits(k->dsa->p);
                    565:                break;
                    566:        }
                    567:        return 0;
1.12      markus    568: }
                    569:
1.27      itojun    570: static RSA *
1.13      markus    571: rsa_generate_private_key(u_int bits)
1.12      markus    572: {
1.17      stevesk   573:        RSA *private;
                    574:        private = RSA_generate_key(bits, 35, NULL, NULL);
                    575:        if (private == NULL)
                    576:                fatal("rsa_generate_private_key: key generation failed.");
                    577:        return private;
1.12      markus    578: }
                    579:
1.27      itojun    580: static DSA*
1.13      markus    581: dsa_generate_private_key(u_int bits)
1.12      markus    582: {
                    583:        DSA *private = DSA_generate_parameters(bits, NULL, 0, NULL, NULL, NULL, NULL);
                    584:        if (private == NULL)
                    585:                fatal("dsa_generate_private_key: DSA_generate_parameters failed");
                    586:        if (!DSA_generate_key(private))
1.17      stevesk   587:                fatal("dsa_generate_private_key: DSA_generate_key failed.");
                    588:        if (private == NULL)
                    589:                fatal("dsa_generate_private_key: NULL.");
1.12      markus    590:        return private;
                    591: }
                    592:
                    593: Key *
1.13      markus    594: key_generate(int type, u_int bits)
1.12      markus    595: {
                    596:        Key *k = key_new(KEY_UNSPEC);
                    597:        switch (type) {
1.17      stevesk   598:        case KEY_DSA:
1.12      markus    599:                k->dsa = dsa_generate_private_key(bits);
                    600:                break;
                    601:        case KEY_RSA:
                    602:        case KEY_RSA1:
                    603:                k->rsa = rsa_generate_private_key(bits);
                    604:                break;
                    605:        default:
1.17      stevesk   606:                fatal("key_generate: unknown type %d", type);
1.12      markus    607:        }
1.17      stevesk   608:        k->type = type;
1.12      markus    609:        return k;
                    610: }
                    611:
                    612: Key *
                    613: key_from_private(Key *k)
                    614: {
                    615:        Key *n = NULL;
                    616:        switch (k->type) {
1.17      stevesk   617:        case KEY_DSA:
1.12      markus    618:                n = key_new(k->type);
                    619:                BN_copy(n->dsa->p, k->dsa->p);
                    620:                BN_copy(n->dsa->q, k->dsa->q);
                    621:                BN_copy(n->dsa->g, k->dsa->g);
                    622:                BN_copy(n->dsa->pub_key, k->dsa->pub_key);
                    623:                break;
                    624:        case KEY_RSA:
                    625:        case KEY_RSA1:
                    626:                n = key_new(k->type);
                    627:                BN_copy(n->rsa->n, k->rsa->n);
                    628:                BN_copy(n->rsa->e, k->rsa->e);
                    629:                break;
                    630:        default:
1.17      stevesk   631:                fatal("key_from_private: unknown type %d", k->type);
1.12      markus    632:                break;
                    633:        }
                    634:        return n;
                    635: }
                    636:
                    637: int
                    638: key_type_from_name(char *name)
                    639: {
1.35      deraadt   640:        if (strcmp(name, "rsa1") == 0) {
1.12      markus    641:                return KEY_RSA1;
1.35      deraadt   642:        } else if (strcmp(name, "rsa") == 0) {
1.12      markus    643:                return KEY_RSA;
1.35      deraadt   644:        } else if (strcmp(name, "dsa") == 0) {
1.12      markus    645:                return KEY_DSA;
1.35      deraadt   646:        } else if (strcmp(name, "ssh-rsa") == 0) {
1.12      markus    647:                return KEY_RSA;
1.35      deraadt   648:        } else if (strcmp(name, "ssh-dss") == 0) {
1.12      markus    649:                return KEY_DSA;
                    650:        }
1.18      markus    651:        debug2("key_type_from_name: unknown key type '%s'", name);
1.12      markus    652:        return KEY_UNSPEC;
1.25      markus    653: }
                    654:
                    655: int
                    656: key_names_valid2(const char *names)
                    657: {
                    658:        char *s, *cp, *p;
                    659:
                    660:        if (names == NULL || strcmp(names, "") == 0)
                    661:                return 0;
                    662:        s = cp = xstrdup(names);
                    663:        for ((p = strsep(&cp, ",")); p && *p != '\0';
1.36      deraadt   664:            (p = strsep(&cp, ","))) {
1.25      markus    665:                switch (key_type_from_name(p)) {
                    666:                case KEY_RSA1:
                    667:                case KEY_UNSPEC:
                    668:                        xfree(s);
                    669:                        return 0;
                    670:                }
                    671:        }
                    672:        debug3("key names ok: [%s]", names);
                    673:        xfree(s);
                    674:        return 1;
1.12      markus    675: }
                    676:
                    677: Key *
1.30      stevesk   678: key_from_blob(u_char *blob, int blen)
1.12      markus    679: {
                    680:        Buffer b;
                    681:        char *ktype;
                    682:        int rlen, type;
                    683:        Key *key = NULL;
                    684:
                    685: #ifdef DEBUG_PK
                    686:        dump_base64(stderr, blob, blen);
                    687: #endif
                    688:        buffer_init(&b);
                    689:        buffer_append(&b, blob, blen);
                    690:        ktype = buffer_get_string(&b, NULL);
                    691:        type = key_type_from_name(ktype);
                    692:
1.35      deraadt   693:        switch (type) {
1.12      markus    694:        case KEY_RSA:
                    695:                key = key_new(type);
1.14      markus    696:                buffer_get_bignum2(&b, key->rsa->e);
1.12      markus    697:                buffer_get_bignum2(&b, key->rsa->n);
                    698: #ifdef DEBUG_PK
                    699:                RSA_print_fp(stderr, key->rsa, 8);
                    700: #endif
                    701:                break;
                    702:        case KEY_DSA:
                    703:                key = key_new(type);
                    704:                buffer_get_bignum2(&b, key->dsa->p);
                    705:                buffer_get_bignum2(&b, key->dsa->q);
                    706:                buffer_get_bignum2(&b, key->dsa->g);
                    707:                buffer_get_bignum2(&b, key->dsa->pub_key);
                    708: #ifdef DEBUG_PK
                    709:                DSA_print_fp(stderr, key->dsa, 8);
                    710: #endif
                    711:                break;
                    712:        case KEY_UNSPEC:
                    713:                key = key_new(type);
                    714:                break;
                    715:        default:
                    716:                error("key_from_blob: cannot handle type %s", ktype);
                    717:                break;
                    718:        }
                    719:        rlen = buffer_len(&b);
                    720:        if (key != NULL && rlen != 0)
                    721:                error("key_from_blob: remaining bytes in key blob %d", rlen);
                    722:        xfree(ktype);
                    723:        buffer_free(&b);
                    724:        return key;
                    725: }
                    726:
                    727: int
1.13      markus    728: key_to_blob(Key *key, u_char **blobp, u_int *lenp)
1.12      markus    729: {
                    730:        Buffer b;
                    731:        int len;
1.13      markus    732:        u_char *buf;
1.12      markus    733:
                    734:        if (key == NULL) {
                    735:                error("key_to_blob: key == NULL");
                    736:                return 0;
                    737:        }
                    738:        buffer_init(&b);
1.35      deraadt   739:        switch (key->type) {
1.12      markus    740:        case KEY_DSA:
                    741:                buffer_put_cstring(&b, key_ssh_name(key));
                    742:                buffer_put_bignum2(&b, key->dsa->p);
                    743:                buffer_put_bignum2(&b, key->dsa->q);
                    744:                buffer_put_bignum2(&b, key->dsa->g);
                    745:                buffer_put_bignum2(&b, key->dsa->pub_key);
                    746:                break;
                    747:        case KEY_RSA:
                    748:                buffer_put_cstring(&b, key_ssh_name(key));
1.14      markus    749:                buffer_put_bignum2(&b, key->rsa->e);
1.12      markus    750:                buffer_put_bignum2(&b, key->rsa->n);
                    751:                break;
                    752:        default:
1.31      markus    753:                error("key_to_blob: unsupported key type %d", key->type);
                    754:                buffer_free(&b);
                    755:                return 0;
1.12      markus    756:        }
                    757:        len = buffer_len(&b);
                    758:        buf = xmalloc(len);
                    759:        memcpy(buf, buffer_ptr(&b), len);
                    760:        memset(buffer_ptr(&b), 0, len);
                    761:        buffer_free(&b);
                    762:        if (lenp != NULL)
                    763:                *lenp = len;
                    764:        if (blobp != NULL)
                    765:                *blobp = buf;
1.47    ! deraadt   766:        else
        !           767:                xfree(buf);
1.12      markus    768:        return len;
                    769: }
                    770:
                    771: int
                    772: key_sign(
                    773:     Key *key,
1.40      markus    774:     u_char **sigp, u_int *lenp,
                    775:     u_char *data, u_int datalen)
1.12      markus    776: {
1.35      deraadt   777:        switch (key->type) {
1.12      markus    778:        case KEY_DSA:
                    779:                return ssh_dss_sign(key, sigp, lenp, data, datalen);
                    780:                break;
                    781:        case KEY_RSA:
                    782:                return ssh_rsa_sign(key, sigp, lenp, data, datalen);
                    783:                break;
                    784:        default:
                    785:                error("key_sign: illegal key type %d", key->type);
                    786:                return -1;
                    787:                break;
                    788:        }
                    789: }
                    790:
1.44      markus    791: /*
                    792:  * key_verify returns 1 for a correct signature, 0 for an incorrect signature
                    793:  * and -1 on error.
                    794:  */
1.12      markus    795: int
                    796: key_verify(
                    797:     Key *key,
1.40      markus    798:     u_char *signature, u_int signaturelen,
                    799:     u_char *data, u_int datalen)
1.12      markus    800: {
1.26      markus    801:        if (signaturelen == 0)
                    802:                return -1;
                    803:
1.35      deraadt   804:        switch (key->type) {
1.12      markus    805:        case KEY_DSA:
                    806:                return ssh_dss_verify(key, signature, signaturelen, data, datalen);
                    807:                break;
                    808:        case KEY_RSA:
                    809:                return ssh_rsa_verify(key, signature, signaturelen, data, datalen);
                    810:                break;
                    811:        default:
                    812:                error("key_verify: illegal key type %d", key->type);
                    813:                return -1;
                    814:                break;
                    815:        }
1.42      markus    816: }
                    817:
                    818: /* Converts a private to a public key */
                    819: Key *
                    820: key_demote(Key *k)
                    821: {
                    822:        Key *pk;
1.43      markus    823:
1.42      markus    824:        pk = xmalloc(sizeof(*pk));
                    825:        pk->type = k->type;
                    826:        pk->flags = k->flags;
                    827:        pk->dsa = NULL;
                    828:        pk->rsa = NULL;
                    829:
                    830:        switch (k->type) {
                    831:        case KEY_RSA1:
                    832:        case KEY_RSA:
                    833:                if ((pk->rsa = RSA_new()) == NULL)
                    834:                        fatal("key_demote: RSA_new failed");
                    835:                if ((pk->rsa->e = BN_dup(k->rsa->e)) == NULL)
                    836:                        fatal("key_demote: BN_dup failed");
                    837:                if ((pk->rsa->n = BN_dup(k->rsa->n)) == NULL)
                    838:                        fatal("key_demote: BN_dup failed");
                    839:                break;
                    840:        case KEY_DSA:
                    841:                if ((pk->dsa = DSA_new()) == NULL)
                    842:                        fatal("key_demote: DSA_new failed");
                    843:                if ((pk->dsa->p = BN_dup(k->dsa->p)) == NULL)
                    844:                        fatal("key_demote: BN_dup failed");
                    845:                if ((pk->dsa->q = BN_dup(k->dsa->q)) == NULL)
                    846:                        fatal("key_demote: BN_dup failed");
                    847:                if ((pk->dsa->g = BN_dup(k->dsa->g)) == NULL)
                    848:                        fatal("key_demote: BN_dup failed");
                    849:                if ((pk->dsa->pub_key = BN_dup(k->dsa->pub_key)) == NULL)
                    850:                        fatal("key_demote: BN_dup failed");
                    851:                break;
                    852:        default:
                    853:                fatal("key_free: bad key type %d", k->type);
                    854:                break;
                    855:        }
                    856:
                    857:        return (pk);
1.4       markus    858: }