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

Annotation of src/usr.bin/ssh/kexdhs.c, Revision 1.14

1.14    ! markus      1: /* $OpenBSD: kexdhs.c,v 1.13 2013/05/17 00:13:13 djm Exp $ */
1.1       markus      2: /*
                      3:  * Copyright (c) 2001 Markus Friedl.  All rights reserved.
                      4:  *
                      5:  * Redistribution and use in source and binary forms, with or without
                      6:  * modification, are permitted provided that the following conditions
                      7:  * are met:
                      8:  * 1. Redistributions of source code must retain the above copyright
                      9:  *    notice, this list of conditions and the following disclaimer.
                     10:  * 2. Redistributions in binary form must reproduce the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer in the
                     12:  *    documentation and/or other materials provided with the distribution.
                     13:  *
                     14:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     15:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     16:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     17:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     18:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     19:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     20:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     21:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     22:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     23:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     24:  */
                     25:
1.6       stevesk    26:
1.7       deraadt    27: #include <sys/types.h>
1.6       stevesk    28: #include <string.h>
1.7       deraadt    29: #include <signal.h>
1.12      djm        30:
                     31: #include <openssl/dh.h>
1.1       markus     32:
                     33: #include "xmalloc.h"
1.7       deraadt    34: #include "buffer.h"
1.1       markus     35: #include "key.h"
1.7       deraadt    36: #include "cipher.h"
1.1       markus     37: #include "kex.h"
                     38: #include "log.h"
                     39: #include "packet.h"
                     40: #include "dh.h"
                     41: #include "ssh2.h"
1.7       deraadt    42: #ifdef GSSAPI
                     43: #include "ssh-gss.h"
                     44: #endif
1.1       markus     45: #include "monitor_wrap.h"
                     46:
                     47: void
                     48: kexdh_server(Kex *kex)
                     49: {
                     50:        BIGNUM *shared_secret = NULL, *dh_client_pub = NULL;
                     51:        DH *dh;
1.11      djm        52:        Key *server_host_public, *server_host_private;
1.1       markus     53:        u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL;
1.8       markus     54:        u_int sbloblen, klen, hashlen, slen;
                     55:        int kout;
1.1       markus     56:
                     57:        /* generate server DH public key */
1.2       djm        58:        switch (kex->kex_type) {
                     59:        case KEX_DH_GRP1_SHA1:
                     60:                dh = dh_new_group1();
                     61:                break;
                     62:        case KEX_DH_GRP14_SHA1:
                     63:                dh = dh_new_group14();
                     64:                break;
                     65:        default:
                     66:                fatal("%s: Unexpected KEX type %d", __func__, kex->kex_type);
                     67:        }
1.1       markus     68:        dh_gen_key(dh, kex->we_need * 8);
                     69:
                     70:        debug("expecting SSH2_MSG_KEXDH_INIT");
                     71:        packet_read_expect(SSH2_MSG_KEXDH_INIT);
                     72:
1.11      djm        73:        if (kex->load_host_public_key == NULL ||
                     74:            kex->load_host_private_key == NULL)
1.1       markus     75:                fatal("Cannot load hostkey");
1.11      djm        76:        server_host_public = kex->load_host_public_key(kex->hostkey_type);
                     77:        if (server_host_public == NULL)
1.1       markus     78:                fatal("Unsupported hostkey type %d", kex->hostkey_type);
1.11      djm        79:        server_host_private = kex->load_host_private_key(kex->hostkey_type);
1.1       markus     80:
                     81:        /* key, cert */
                     82:        if ((dh_client_pub = BN_new()) == NULL)
                     83:                fatal("dh_client_pub == NULL");
                     84:        packet_get_bignum2(dh_client_pub);
                     85:        packet_check_eom();
                     86:
                     87: #ifdef DEBUG_KEXDH
                     88:        fprintf(stderr, "dh_client_pub= ");
                     89:        BN_print_fp(stderr, dh_client_pub);
                     90:        fprintf(stderr, "\n");
                     91:        debug("bits %d", BN_num_bits(dh_client_pub));
                     92: #endif
                     93:
                     94: #ifdef DEBUG_KEXDH
                     95:        DHparams_print_fp(stderr, dh);
                     96:        fprintf(stderr, "pub= ");
                     97:        BN_print_fp(stderr, dh->pub_key);
                     98:        fprintf(stderr, "\n");
                     99: #endif
                    100:        if (!dh_pub_is_valid(dh, dh_client_pub))
                    101:                packet_disconnect("bad client public DH value");
                    102:
                    103:        klen = DH_size(dh);
                    104:        kbuf = xmalloc(klen);
1.8       markus    105:        if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
                    106:                fatal("DH_compute_key: failed");
1.1       markus    107: #ifdef DEBUG_KEXDH
                    108:        dump_digest("shared secret", kbuf, kout);
                    109: #endif
                    110:        if ((shared_secret = BN_new()) == NULL)
                    111:                fatal("kexdh_server: BN_new failed");
1.9       markus    112:        if (BN_bin2bn(kbuf, kout, shared_secret) == NULL)
                    113:                fatal("kexdh_server: BN_bin2bn failed");
1.1       markus    114:        memset(kbuf, 0, klen);
1.13      djm       115:        free(kbuf);
1.1       markus    116:
1.11      djm       117:        key_to_blob(server_host_public, &server_host_key_blob, &sbloblen);
1.1       markus    118:
                    119:        /* calc H */
1.3       djm       120:        kex_dh_hash(
1.1       markus    121:            kex->client_version_string,
                    122:            kex->server_version_string,
                    123:            buffer_ptr(&kex->peer), buffer_len(&kex->peer),
                    124:            buffer_ptr(&kex->my), buffer_len(&kex->my),
                    125:            server_host_key_blob, sbloblen,
                    126:            dh_client_pub,
                    127:            dh->pub_key,
1.3       djm       128:            shared_secret,
                    129:            &hash, &hashlen
1.1       markus    130:        );
                    131:        BN_clear_free(dh_client_pub);
                    132:
                    133:        /* save session id := H */
                    134:        if (kex->session_id == NULL) {
1.3       djm       135:                kex->session_id_len = hashlen;
1.1       markus    136:                kex->session_id = xmalloc(kex->session_id_len);
                    137:                memcpy(kex->session_id, hash, kex->session_id_len);
                    138:        }
                    139:
                    140:        /* sign H */
1.14    ! markus    141:        kex->sign(server_host_private, server_host_public, &signature, &slen,
        !           142:            hash, hashlen);
1.1       markus    143:
                    144:        /* destroy_sensitive_data(); */
                    145:
                    146:        /* send server hostkey, DH pubkey 'f' and singed H */
                    147:        packet_start(SSH2_MSG_KEXDH_REPLY);
                    148:        packet_put_string(server_host_key_blob, sbloblen);
                    149:        packet_put_bignum2(dh->pub_key);        /* f */
                    150:        packet_put_string(signature, slen);
                    151:        packet_send();
                    152:
1.13      djm       153:        free(signature);
                    154:        free(server_host_key_blob);
1.1       markus    155:        /* have keys, free DH */
                    156:        DH_free(dh);
                    157:
1.3       djm       158:        kex_derive_keys(kex, hash, hashlen, shared_secret);
1.1       markus    159:        BN_clear_free(shared_secret);
                    160:        kex_finish(kex);
                    161: }