1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 14:39:24 -05:00

Merged SSH1 robustness changes from 0.55 release branch on to trunk.

[originally from svn r4379]
This commit is contained in:
Simon Tatham 2004-08-01 12:07:11 +00:00
parent 29605a0719
commit 4217269931
8 changed files with 528 additions and 200 deletions

View File

@ -686,14 +686,26 @@ int main(int argc, char **argv)
if (!load_encrypted) { if (!load_encrypted) {
void *vblob; void *vblob;
char *blob; char *blob;
int n, bloblen; int n, l, bloblen;
ret = rsakey_pubblob(&infilename, &vblob, &bloblen, &error); ret = rsakey_pubblob(&infilename, &vblob, &bloblen, &error);
blob = (char *)vblob; blob = (char *)vblob;
n = 4; /* skip modulus bits */ n = 4; /* skip modulus bits */
n += ssh1_read_bignum(blob + n, &ssh1key->exponent);
n += ssh1_read_bignum(blob + n, &ssh1key->modulus); l = ssh1_read_bignum(blob + n, bloblen - n,
&ssh1key->exponent);
if (l < 0) {
error = "SSH1 public key blob was too short";
} else {
n += l;
l = ssh1_read_bignum(blob + n, bloblen - n,
&ssh1key->modulus);
if (l < 0) {
error = "SSH1 public key blob was too short";
} else
n += l;
}
ssh1key->comment = NULL; ssh1key->comment = NULL;
ssh1key->private_exponent = NULL; ssh1key->private_exponent = NULL;
} else { } else {

220
pageant.c
View File

@ -119,8 +119,8 @@ static gsi_fn_t getsecurityinfo;
*/ */
static void *make_keylist1(int *length); static void *make_keylist1(int *length);
static void *make_keylist2(int *length); static void *make_keylist2(int *length);
static void *get_keylist1(void); static void *get_keylist1(int *length);
static void *get_keylist2(void); static void *get_keylist2(int *length);
/* /*
* We need this to link with the RSA code, because rsaencrypt() * We need this to link with the RSA code, because rsaencrypt()
@ -414,7 +414,7 @@ static void add_keyfile(Filename filename)
{ {
void *blob; void *blob;
unsigned char *keylist, *p; unsigned char *keylist, *p;
int i, nkeys, bloblen; int i, nkeys, bloblen, keylistlen;
if (type == SSH_KEYTYPE_SSH1) { if (type == SSH_KEYTYPE_SSH1) {
if (!rsakey_pubblob(&filename, &blob, &bloblen, NULL)) { if (!rsakey_pubblob(&filename, &blob, &bloblen, NULL)) {
@ -422,7 +422,7 @@ static void add_keyfile(Filename filename)
MB_OK | MB_ICONERROR); MB_OK | MB_ICONERROR);
return; return;
} }
keylist = get_keylist1(); keylist = get_keylist1(&keylistlen);
} else { } else {
unsigned char *blob2; unsigned char *blob2;
blob = ssh2_userkey_loadpub(&filename, NULL, &bloblen, NULL); blob = ssh2_userkey_loadpub(&filename, NULL, &bloblen, NULL);
@ -438,11 +438,17 @@ static void add_keyfile(Filename filename)
sfree(blob); sfree(blob);
blob = blob2; blob = blob2;
keylist = get_keylist2(); keylist = get_keylist2(&keylistlen);
} }
if (keylist) { if (keylist) {
if (keylistlen < 4) {
MessageBox(NULL, "Received broken key list?!", APPNAME,
MB_OK | MB_ICONERROR);
return;
}
nkeys = GET_32BIT(keylist); nkeys = GET_32BIT(keylist);
p = keylist + 4; p = keylist + 4;
keylistlen -= 4;
for (i = 0; i < nkeys; i++) { for (i = 0; i < nkeys; i++) {
if (!memcmp(blob, p, bloblen)) { if (!memcmp(blob, p, bloblen)) {
@ -452,12 +458,48 @@ static void add_keyfile(Filename filename)
return; return;
} }
/* Now skip over public blob */ /* Now skip over public blob */
if (type == SSH_KEYTYPE_SSH1) if (type == SSH_KEYTYPE_SSH1) {
p += rsa_public_blob_len(p); int n = rsa_public_blob_len(p, keylistlen);
else if (n < 0) {
p += 4 + GET_32BIT(p); MessageBox(NULL, "Received broken key list?!", APPNAME,
MB_OK | MB_ICONERROR);
return;
}
p += n;
keylistlen -= n;
} else {
int n;
if (keylistlen < 4) {
MessageBox(NULL, "Received broken key list?!", APPNAME,
MB_OK | MB_ICONERROR);
return;
}
n = 4 + GET_32BIT(p);
if (keylistlen < n) {
MessageBox(NULL, "Received broken key list?!", APPNAME,
MB_OK | MB_ICONERROR);
return;
}
p += n;
keylistlen -= n;
}
/* Now skip over comment field */ /* Now skip over comment field */
p += 4 + GET_32BIT(p); {
int n;
if (keylistlen < 4) {
MessageBox(NULL, "Received broken key list?!", APPNAME,
MB_OK | MB_ICONERROR);
return;
}
n = 4 + GET_32BIT(p);
if (keylistlen < n) {
MessageBox(NULL, "Received broken key list?!", APPNAME,
MB_OK | MB_ICONERROR);
return;
}
p += n;
keylistlen -= n;
}
} }
sfree(keylist); sfree(keylist);
@ -608,8 +650,8 @@ static void add_keyfile(Filename filename)
keybloblen); keybloblen);
PUT_32BIT(request + reqlen, clen); PUT_32BIT(request + reqlen, clen);
memcpy(request + reqlen + 4, skey->comment, clen); memcpy(request + reqlen + 4, skey->comment, clen);
PUT_32BIT(request, reqlen - 4);
reqlen += clen + 4; reqlen += clen + 4;
PUT_32BIT(request, reqlen - 4);
ret = agent_query(request, reqlen, &vresponse, &resplen, ret = agent_query(request, reqlen, &vresponse, &resplen,
NULL, NULL); NULL, NULL);
@ -731,7 +773,7 @@ static void *make_keylist2(int *length)
* calling make_keylist1 (if that's us) or sending a message to the * calling make_keylist1 (if that's us) or sending a message to the
* primary Pageant (if it's not). * primary Pageant (if it's not).
*/ */
static void *get_keylist1(void) static void *get_keylist1(int *length)
{ {
void *ret; void *ret;
@ -751,8 +793,11 @@ static void *get_keylist1(void)
ret = snewn(resplen-5, unsigned char); ret = snewn(resplen-5, unsigned char);
memcpy(ret, response+5, resplen-5); memcpy(ret, response+5, resplen-5);
sfree(response); sfree(response);
if (length)
*length = resplen-5;
} else { } else {
ret = make_keylist1(NULL); ret = make_keylist1(length);
} }
return ret; return ret;
} }
@ -762,7 +807,7 @@ static void *get_keylist1(void)
* calling make_keylist2 (if that's us) or sending a message to the * calling make_keylist2 (if that's us) or sending a message to the
* primary Pageant (if it's not). * primary Pageant (if it's not).
*/ */
static void *get_keylist2(void) static void *get_keylist2(int *length)
{ {
void *ret; void *ret;
@ -783,8 +828,11 @@ static void *get_keylist2(void)
ret = snewn(resplen-5, unsigned char); ret = snewn(resplen-5, unsigned char);
memcpy(ret, response+5, resplen-5); memcpy(ret, response+5, resplen-5);
sfree(response); sfree(response);
if (length)
*length = resplen-5;
} else { } else {
ret = make_keylist2(NULL); ret = make_keylist2(length);
} }
return ret; return ret;
} }
@ -796,11 +844,19 @@ static void answer_msg(void *msg)
{ {
unsigned char *p = msg; unsigned char *p = msg;
unsigned char *ret = msg; unsigned char *ret = msg;
unsigned char *msgend;
int type; int type;
/*
* Get the message length.
*/
msgend = p + 4 + GET_32BIT(p);
/* /*
* Get the message type. * Get the message type.
*/ */
if (msgend < p+5)
goto failure;
type = p[4]; type = p[4];
p += 5; p += 5;
@ -857,12 +913,28 @@ static void answer_msg(void *msg)
int i, len; int i, len;
p += 4; p += 4;
p += ssh1_read_bignum(p, &reqkey.exponent); i = ssh1_read_bignum(p, msgend - p, &reqkey.exponent);
p += ssh1_read_bignum(p, &reqkey.modulus); if (i < 0)
p += ssh1_read_bignum(p, &challenge); goto failure;
p += i;
i = ssh1_read_bignum(p, msgend - p, &reqkey.modulus);
if (i < 0)
goto failure;
p += i;
i = ssh1_read_bignum(p, msgend - p, &challenge);
if (i < 0)
goto failure;
p += i;
if (msgend < p+16) {
freebn(reqkey.exponent);
freebn(reqkey.modulus);
freebn(challenge);
goto failure;
}
memcpy(response_source + 32, p, 16); memcpy(response_source + 32, p, 16);
p += 16; p += 16;
if (GET_32BIT(p) != 1 || if (msgend < p+4 ||
GET_32BIT(p) != 1 ||
(key = find234(rsakeys, &reqkey, NULL)) == NULL) { (key = find234(rsakeys, &reqkey, NULL)) == NULL) {
freebn(reqkey.exponent); freebn(reqkey.exponent);
freebn(reqkey.modulus); freebn(reqkey.modulus);
@ -904,12 +976,20 @@ static void answer_msg(void *msg)
unsigned char *data, *signature; unsigned char *data, *signature;
int datalen, siglen, len; int datalen, siglen, len;
if (msgend < p+4)
goto failure;
b.len = GET_32BIT(p); b.len = GET_32BIT(p);
p += 4; p += 4;
if (msgend < p+b.len)
goto failure;
b.blob = p; b.blob = p;
p += b.len; p += b.len;
if (msgend < p+4)
goto failure;
datalen = GET_32BIT(p); datalen = GET_32BIT(p);
p += 4; p += 4;
if (msgend < p+datalen)
goto failure;
data = p; data = p;
key = find234(ssh2keys, &b, cmpkeys_ssh2_asymm); key = find234(ssh2keys, &b, cmpkeys_ssh2_asymm);
if (!key) if (!key)
@ -931,15 +1011,64 @@ static void answer_msg(void *msg)
{ {
struct RSAKey *key; struct RSAKey *key;
char *comment; char *comment;
int commentlen; int n, commentlen;
key = snew(struct RSAKey); key = snew(struct RSAKey);
memset(key, 0, sizeof(struct RSAKey)); memset(key, 0, sizeof(struct RSAKey));
p += makekey(p, key, NULL, 1);
p += makeprivate(p, key); n = makekey(p, msgend - p, key, NULL, 1);
p += ssh1_read_bignum(p, &key->iqmp); /* p^-1 mod q */ if (n < 0) {
p += ssh1_read_bignum(p, &key->p); /* p */ freersakey(key);
p += ssh1_read_bignum(p, &key->q); /* q */ sfree(key);
goto failure;
}
p += n;
n = makeprivate(p, msgend - p, key);
if (n < 0) {
freersakey(key);
sfree(key);
goto failure;
}
p += n;
n = ssh1_read_bignum(p, msgend - p, &key->iqmp); /* p^-1 mod q */
if (n < 0) {
freersakey(key);
sfree(key);
goto failure;
}
p += n;
n = ssh1_read_bignum(p, msgend - p, &key->p); /* p */
if (n < 0) {
freersakey(key);
sfree(key);
goto failure;
}
p += n;
n = ssh1_read_bignum(p, msgend - p, &key->q); /* q */
if (n < 0) {
freersakey(key);
sfree(key);
goto failure;
}
p += n;
if (msgend < p+4) {
freersakey(key);
sfree(key);
goto failure;
}
commentlen = GET_32BIT(p); commentlen = GET_32BIT(p);
if (msgend < p+commentlen) {
freersakey(key);
sfree(key);
goto failure;
}
comment = snewn(commentlen+1, char); comment = snewn(commentlen+1, char);
if (comment) { if (comment) {
memcpy(comment, p + 4, commentlen); memcpy(comment, p + 4, commentlen);
@ -968,12 +1097,17 @@ static void answer_msg(void *msg)
int alglen, commlen; int alglen, commlen;
int bloblen; int bloblen;
key = snew(struct ssh2_userkey);
if (msgend < p+4)
goto failure;
alglen = GET_32BIT(p); alglen = GET_32BIT(p);
p += 4; p += 4;
if (msgend < p+alglen)
goto failure;
alg = p; alg = p;
p += alglen; p += alglen;
key = snew(struct ssh2_userkey);
/* Add further algorithm names here. */ /* Add further algorithm names here. */
if (alglen == 7 && !memcmp(alg, "ssh-rsa", 7)) if (alglen == 7 && !memcmp(alg, "ssh-rsa", 7))
key->alg = &ssh_rsa; key->alg = &ssh_rsa;
@ -984,18 +1118,32 @@ static void answer_msg(void *msg)
goto failure; goto failure;
} }
bloblen = bloblen = msgend - p;
GET_32BIT((unsigned char *) msg) - (p -
(unsigned char *) msg -
4);
key->data = key->alg->openssh_createkey(&p, &bloblen); key->data = key->alg->openssh_createkey(&p, &bloblen);
if (!key->data) { if (!key->data) {
sfree(key); sfree(key);
goto failure; goto failure;
} }
/*
* p has been advanced by openssh_createkey, but
* certainly not _beyond_ the end of the buffer.
*/
assert(p <= msgend);
if (msgend < p+4) {
key->alg->freekey(key->data);
sfree(key);
goto failure;
}
commlen = GET_32BIT(p); commlen = GET_32BIT(p);
p += 4; p += 4;
if (msgend < p+commlen) {
key->alg->freekey(key->data);
sfree(key);
goto failure;
}
comment = snewn(commlen + 1, char); comment = snewn(commlen + 1, char);
if (comment) { if (comment) {
memcpy(comment, p, commlen); memcpy(comment, p, commlen);
@ -1023,8 +1171,12 @@ static void answer_msg(void *msg)
*/ */
{ {
struct RSAKey reqkey, *key; struct RSAKey reqkey, *key;
int n;
n = makekey(p, msgend - p, &reqkey, NULL, 0);
if (n < 0)
goto failure;
p += makekey(p, &reqkey, NULL, 0);
key = find234(rsakeys, &reqkey, NULL); key = find234(rsakeys, &reqkey, NULL);
freebn(reqkey.exponent); freebn(reqkey.exponent);
freebn(reqkey.modulus); freebn(reqkey.modulus);
@ -1049,10 +1201,16 @@ static void answer_msg(void *msg)
struct ssh2_userkey *key; struct ssh2_userkey *key;
struct blob b; struct blob b;
if (msgend < p+4)
goto failure;
b.len = GET_32BIT(p); b.len = GET_32BIT(p);
p += 4; p += 4;
if (msgend < p+b.len)
goto failure;
b.blob = p; b.blob = p;
p += b.len; p += b.len;
key = find234(ssh2keys, &b, cmpkeys_ssh2_asymm); key = find234(ssh2keys, &b, cmpkeys_ssh2_asymm);
if (!key) if (!key)
goto failure; goto failure;

378
ssh.c
View File

@ -865,6 +865,7 @@ static int ssh1_rdpkt(Ssh ssh, unsigned char **data, int *datalen)
} }
ssh->pktin.body = ssh->pktin.data + st->pad + 1; ssh->pktin.body = ssh->pktin.data + st->pad + 1;
ssh->pktin.savedpos = 0;
if (ssh->v1_compressing) { if (ssh->v1_compressing) {
unsigned char *decompblk; unsigned char *decompblk;
@ -1069,6 +1070,7 @@ static int ssh2_rdpkt(Ssh ssh, unsigned char **data, int *datalen)
} }
ssh->pktin.savedpos = 6; ssh->pktin.savedpos = 6;
ssh->pktin.body = ssh->pktin.data;
ssh->pktin.type = ssh->pktin.data[5]; ssh->pktin.type = ssh->pktin.data[5];
if (ssh->logctx) if (ssh->logctx)
@ -1639,14 +1641,14 @@ static void sha_mpint(SHA_State * s, Bignum b)
} }
/* /*
* SSH2 packet decode functions. * Packet decode functions for both SSH1 and SSH2.
*/ */
static unsigned long ssh2_pkt_getuint32(Ssh ssh) static unsigned long ssh_pkt_getuint32(Ssh ssh)
{ {
unsigned long value; unsigned long value;
if (ssh->pktin.length - ssh->pktin.savedpos < 4) if (ssh->pktin.length - ssh->pktin.savedpos < 4)
return 0; /* arrgh, no way to decline (FIXME?) */ return 0; /* arrgh, no way to decline (FIXME?) */
value = GET_32BIT(ssh->pktin.data + ssh->pktin.savedpos); value = GET_32BIT(ssh->pktin.body + ssh->pktin.savedpos);
ssh->pktin.savedpos += 4; ssh->pktin.savedpos += 4;
return value; return value;
} }
@ -1655,34 +1657,72 @@ static int ssh2_pkt_getbool(Ssh ssh)
unsigned long value; unsigned long value;
if (ssh->pktin.length - ssh->pktin.savedpos < 1) if (ssh->pktin.length - ssh->pktin.savedpos < 1)
return 0; /* arrgh, no way to decline (FIXME?) */ return 0; /* arrgh, no way to decline (FIXME?) */
value = ssh->pktin.data[ssh->pktin.savedpos] != 0; value = ssh->pktin.body[ssh->pktin.savedpos] != 0;
ssh->pktin.savedpos++; ssh->pktin.savedpos++;
return value; return value;
} }
static void ssh2_pkt_getstring(Ssh ssh, char **p, int *length) static void ssh_pkt_getstring(Ssh ssh, char **p, int *length)
{ {
int len; int len;
*p = NULL; *p = NULL;
*length = 0; *length = 0;
if (ssh->pktin.length - ssh->pktin.savedpos < 4) if (ssh->pktin.length - ssh->pktin.savedpos < 4)
return; return;
len = GET_32BIT(ssh->pktin.data + ssh->pktin.savedpos); len = GET_32BIT(ssh->pktin.body + ssh->pktin.savedpos);
if (len < 0) if (len < 0)
return; return;
*length = len; *length = len;
ssh->pktin.savedpos += 4; ssh->pktin.savedpos += 4;
if (ssh->pktin.length - ssh->pktin.savedpos < *length) if (ssh->pktin.length - ssh->pktin.savedpos < *length)
return; return;
*p = (char *)(ssh->pktin.data + ssh->pktin.savedpos); *p = (char *)(ssh->pktin.body + ssh->pktin.savedpos);
ssh->pktin.savedpos += *length; ssh->pktin.savedpos += *length;
} }
static void *ssh_pkt_getdata(Ssh ssh, int length)
{
if (ssh->pktin.length - ssh->pktin.savedpos < length)
return NULL;
ssh->pktin.savedpos += length;
return ssh->pktin.body + (ssh->pktin.savedpos - length);
}
static int ssh1_pkt_getrsakey(Ssh ssh, struct RSAKey *key,
unsigned char **keystr)
{
int j;
j = makekey(ssh->pktin.body + ssh->pktin.savedpos,
ssh->pktin.length - ssh->pktin.savedpos,
key, keystr, 0);
if (j < 0)
return FALSE;
ssh->pktin.savedpos += j;
assert(ssh->pktin.savedpos < ssh->pktin.length);
return TRUE;
}
static Bignum ssh1_pkt_getmp(Ssh ssh)
{
int j;
Bignum b;
j = ssh1_read_bignum(ssh->pktin.body + ssh->pktin.savedpos,
ssh->pktin.length - ssh->pktin.savedpos, &b);
if (j < 0)
return NULL;
ssh->pktin.savedpos += j;
return b;
}
static Bignum ssh2_pkt_getmp(Ssh ssh) static Bignum ssh2_pkt_getmp(Ssh ssh)
{ {
char *p; char *p;
int length; int length;
Bignum b; Bignum b;
ssh2_pkt_getstring(ssh, &p, &length); ssh_pkt_getstring(ssh, &p, &length);
if (!p) if (!p)
return NULL; return NULL;
if (p[0] & 0x80) { if (p[0] & 0x80) {
@ -2343,8 +2383,8 @@ static void ssh_agentf_callback(void *cv, void *reply, int replylen)
*/ */
static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt) static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
{ {
int i, j; int i, j, ret;
unsigned char cookie[8]; unsigned char cookie[8], *ptr;
struct RSAKey servkey, hostkey; struct RSAKey servkey, hostkey;
struct MD5Context md5c; struct MD5Context md5c;
struct do_ssh1_login_state { struct do_ssh1_login_state {
@ -2386,10 +2426,18 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
logevent("Received public keys"); logevent("Received public keys");
memcpy(cookie, ssh->pktin.body, 8); ptr = ssh_pkt_getdata(ssh, 8);
if (!ptr) {
bombout(("SSH1 public key packet stopped before random cookie"));
crStop(0);
}
memcpy(cookie, ptr, 8);
i = makekey(ssh->pktin.body + 8, &servkey, &s->keystr1, 0); if (!ssh1_pkt_getrsakey(ssh, &servkey, &s->keystr1) ||
j = makekey(ssh->pktin.body + 8 + i, &hostkey, &s->keystr2, 0); !ssh1_pkt_getrsakey(ssh, &hostkey, &s->keystr2)) {
bombout(("SSH1 public key packet stopped before public keys"));
crStop(0);
}
/* /*
* Log the host key fingerprint. * Log the host key fingerprint.
@ -2404,9 +2452,9 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
logevent(logmsg); logevent(logmsg);
} }
ssh->v1_remote_protoflags = GET_32BIT(ssh->pktin.body + 8 + i + j); ssh->v1_remote_protoflags = ssh_pkt_getuint32(ssh);
s->supported_ciphers_mask = GET_32BIT(ssh->pktin.body + 12 + i + j); s->supported_ciphers_mask = ssh_pkt_getuint32(ssh);
s->supported_auths_mask = GET_32BIT(ssh->pktin.body + 16 + i + j); s->supported_auths_mask = ssh_pkt_getuint32(ssh);
ssh->v1_local_protoflags = ssh->v1_local_protoflags =
ssh->v1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED; ssh->v1_remote_protoflags & SSH1_PROTOFLAGS_SUPPORTED;
@ -2415,12 +2463,21 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
MD5Init(&md5c); MD5Init(&md5c);
MD5Update(&md5c, s->keystr2, hostkey.bytes); MD5Update(&md5c, s->keystr2, hostkey.bytes);
MD5Update(&md5c, s->keystr1, servkey.bytes); MD5Update(&md5c, s->keystr1, servkey.bytes);
MD5Update(&md5c, ssh->pktin.body, 8); MD5Update(&md5c, cookie, 8);
MD5Final(s->session_id, &md5c); MD5Final(s->session_id, &md5c);
for (i = 0; i < 32; i++) for (i = 0; i < 32; i++)
ssh->session_key[i] = random_byte(); ssh->session_key[i] = random_byte();
/*
* Verify that the `bits' and `bytes' parameters match.
*/
if (hostkey.bits > hostkey.bytes * 8 ||
servkey.bits > servkey.bytes * 8) {
bombout(("SSH1 public keys were badly formatted"));
crStop(0);
}
s->len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes); s->len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
s->rsabuf = snewn(s->len, unsigned char); s->rsabuf = snewn(s->len, unsigned char);
@ -2454,11 +2511,17 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
} }
if (hostkey.bytes > servkey.bytes) { if (hostkey.bytes > servkey.bytes) {
rsaencrypt(s->rsabuf, 32, &servkey); ret = rsaencrypt(s->rsabuf, 32, &servkey);
rsaencrypt(s->rsabuf, servkey.bytes, &hostkey); if (ret)
ret = rsaencrypt(s->rsabuf, servkey.bytes, &hostkey);
} else { } else {
rsaencrypt(s->rsabuf, 32, &hostkey); ret = rsaencrypt(s->rsabuf, 32, &hostkey);
rsaencrypt(s->rsabuf, hostkey.bytes, &servkey); if (ret)
ret = rsaencrypt(s->rsabuf, hostkey.bytes, &servkey);
}
if (!ret) {
bombout(("SSH1 public key encryptions failed due to bad formatting"));
crStop(0);
} }
logevent("Encrypted session key"); logevent("Encrypted session key");
@ -2677,12 +2740,37 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
s->tried_publickey = 1; s->tried_publickey = 1;
} }
s->p += 4; s->p += 4;
s->p += ssh1_read_bignum(s->p, &s->key.exponent); {
s->p += ssh1_read_bignum(s->p, &s->key.modulus); int n, ok = FALSE;
s->commentlen = GET_32BIT(s->p); do { /* do while (0) to make breaking easy */
s->p += 4; n = ssh1_read_bignum
s->commentp = (char *)s->p; (s->p, s->responselen-(s->p-s->response),
s->p += s->commentlen; &s->key.exponent);
if (n < 0)
break;
s->p += n;
n = ssh1_read_bignum
(s->p, s->responselen-(s->p-s->response),
&s->key.modulus);
if (n < 0)
break;
s->p += n;
if (s->responselen - (s->p-s->response) < 4)
break;
s->commentlen = GET_32BIT(s->p);
s->p += 4;
if (s->responselen - (s->p-s->response) <
s->commentlen)
break;
s->commentp = (char *)s->p;
s->p += s->commentlen;
ok = TRUE;
} while (0);
if (!ok) {
logevent("Pageant key list packet was truncated");
break;
}
}
send_packet(ssh, SSH1_CMSG_AUTH_RSA, send_packet(ssh, SSH1_CMSG_AUTH_RSA,
PKT_BIGNUM, s->key.modulus, PKT_END); PKT_BIGNUM, s->key.modulus, PKT_END);
crWaitUntil(ispkt); crWaitUntil(ispkt);
@ -2691,7 +2779,11 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
continue; continue;
} }
logevent("Received RSA challenge"); logevent("Received RSA challenge");
ssh1_read_bignum(ssh->pktin.body, &s->challenge); if ((s->challenge = ssh1_pkt_getmp(ssh)) == NULL) {
bombout(("Server's RSA challenge was badly formatted"));
crStop(0);
}
{ {
char *agentreq, *q, *ret; char *agentreq, *q, *ret;
void *vret; void *vret;
@ -2790,11 +2882,18 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
s->tis_auth_refused = 1; s->tis_auth_refused = 1;
continue; continue;
} else { } else {
int challengelen = GET_32BIT(ssh->pktin.body); char *challenge;
int challengelen;
ssh_pkt_getstring(ssh, &challenge, &challengelen);
if (!challenge) {
bombout(("TIS challenge packet was badly formed"));
crStop(0);
}
logevent("Received TIS challenge"); logevent("Received TIS challenge");
if (challengelen > sizeof(s->prompt) - 1) if (challengelen > sizeof(s->prompt) - 1)
challengelen = sizeof(s->prompt) - 1;/* prevent overrun */ challengelen = sizeof(s->prompt) - 1;/* prevent overrun */
memcpy(s->prompt, ssh->pktin.body + 4, challengelen); memcpy(s->prompt, challenge, challengelen);
/* Prompt heuristic comes from OpenSSH */ /* Prompt heuristic comes from OpenSSH */
strncpy(s->prompt + challengelen, strncpy(s->prompt + challengelen,
memchr(s->prompt, '\n', challengelen) ? memchr(s->prompt, '\n', challengelen) ?
@ -2816,11 +2915,18 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
s->ccard_auth_refused = 1; s->ccard_auth_refused = 1;
continue; continue;
} else { } else {
int challengelen = GET_32BIT(ssh->pktin.body); char *challenge;
int challengelen;
ssh_pkt_getstring(ssh, &challenge, &challengelen);
if (!challenge) {
bombout(("CryptoCard challenge packet was badly formed"));
crStop(0);
}
logevent("Received CryptoCard challenge"); logevent("Received CryptoCard challenge");
if (challengelen > sizeof(s->prompt) - 1) if (challengelen > sizeof(s->prompt) - 1)
challengelen = sizeof(s->prompt) - 1;/* prevent overrun */ challengelen = sizeof(s->prompt) - 1;/* prevent overrun */
memcpy(s->prompt, ssh->pktin.body + 4, challengelen); memcpy(s->prompt, challenge, challengelen);
strncpy(s->prompt + challengelen, strncpy(s->prompt + challengelen,
memchr(s->prompt, '\n', challengelen) ? memchr(s->prompt, '\n', challengelen) ?
"" : "\r\nResponse: ", "" : "\r\nResponse: ",
@ -2945,7 +3051,10 @@ static int do_ssh1_login(Ssh ssh, unsigned char *in, int inlen, int ispkt)
unsigned char buffer[32]; unsigned char buffer[32];
Bignum challenge, response; Bignum challenge, response;
ssh1_read_bignum(ssh->pktin.body, &challenge); if ((challenge = ssh1_pkt_getmp(ssh)) == NULL) {
bombout(("Server's RSA challenge was badly formatted"));
crStop(0);
}
response = rsadecrypt(challenge, &s->key); response = rsadecrypt(challenge, &s->key);
freebn(s->key.private_exponent);/* burn the evidence */ freebn(s->key.private_exponent);/* burn the evidence */
@ -3489,11 +3598,19 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
if (ispkt) { if (ispkt) {
if (ssh->pktin.type == SSH1_SMSG_STDOUT_DATA || if (ssh->pktin.type == SSH1_SMSG_STDOUT_DATA ||
ssh->pktin.type == SSH1_SMSG_STDERR_DATA) { ssh->pktin.type == SSH1_SMSG_STDERR_DATA) {
long len = GET_32BIT(ssh->pktin.body); char *string;
int bufsize = int stringlen, bufsize;
ssh_pkt_getstring(ssh, &string, &stringlen);
if (string == NULL) {
bombout(("Incoming terminal data packet was badly formed"));
crStopV;
}
bufsize =
from_backend(ssh->frontend, from_backend(ssh->frontend,
ssh->pktin.type == SSH1_SMSG_STDERR_DATA, ssh->pktin.type == SSH1_SMSG_STDERR_DATA,
(char *)(ssh->pktin.body) + 4, len); string, stringlen);
if (!ssh->v1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) { if (!ssh->v1_stdout_throttling && bufsize > SSH1_BUFFER_LIMIT) {
ssh->v1_stdout_throttling = 1; ssh->v1_stdout_throttling = 1;
ssh1_throttle(ssh, +1); ssh1_throttle(ssh, +1);
@ -3506,12 +3623,13 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
/* Remote side is trying to open a channel to talk to our /* Remote side is trying to open a channel to talk to our
* X-Server. Give them back a local channel number. */ * X-Server. Give them back a local channel number. */
struct ssh_channel *c; struct ssh_channel *c;
int remoteid = ssh_pkt_getuint32(ssh);
logevent("Received X11 connect request"); logevent("Received X11 connect request");
/* Refuse if X11 forwarding is disabled. */ /* Refuse if X11 forwarding is disabled. */
if (!ssh->X11_fwd_enabled) { if (!ssh->X11_fwd_enabled) {
send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE, send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
PKT_INT, GET_32BIT(ssh->pktin.body), PKT_END); PKT_INT, remoteid, PKT_END);
logevent("Rejected X11 connect request"); logevent("Rejected X11 connect request");
} else { } else {
c = snew(struct ssh_channel); c = snew(struct ssh_channel);
@ -3519,15 +3637,14 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c, if (x11_init(&c->u.x11.s, ssh->cfg.x11_display, c,
ssh->x11auth, NULL, -1, &ssh->cfg) != NULL) { ssh->x11auth, NULL, -1, &ssh->cfg) != NULL) {
logevent("opening X11 forward connection failed"); logevent("Opening X11 forward connection failed");
sfree(c); sfree(c);
send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE, send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
PKT_INT, GET_32BIT(ssh->pktin.body), PKT_INT, remoteid, PKT_END);
PKT_END);
} else { } else {
logevent logevent
("opening X11 forward connection succeeded"); ("Opening X11 forward connection succeeded");
c->remoteid = GET_32BIT(ssh->pktin.body); c->remoteid = remoteid;
c->localid = alloc_channel_id(ssh); c->localid = alloc_channel_id(ssh);
c->closes = 0; c->closes = 0;
c->v.v1.throttling = 0; c->v.v1.throttling = 0;
@ -3543,15 +3660,16 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
/* Remote side is trying to open a channel to talk to our /* Remote side is trying to open a channel to talk to our
* agent. Give them back a local channel number. */ * agent. Give them back a local channel number. */
struct ssh_channel *c; struct ssh_channel *c;
int remoteid = ssh_pkt_getuint32(ssh);
/* Refuse if agent forwarding is disabled. */ /* Refuse if agent forwarding is disabled. */
if (!ssh->agentfwd_enabled) { if (!ssh->agentfwd_enabled) {
send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE, send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
PKT_INT, GET_32BIT(ssh->pktin.body), PKT_END); PKT_INT, remoteid, PKT_END);
} else { } else {
c = snew(struct ssh_channel); c = snew(struct ssh_channel);
c->ssh = ssh; c->ssh = ssh;
c->remoteid = GET_32BIT(ssh->pktin.body); c->remoteid = remoteid;
c->localid = alloc_channel_id(ssh); c->localid = alloc_channel_id(ssh);
c->closes = 0; c->closes = 0;
c->v.v1.throttling = 0; c->v.v1.throttling = 0;
@ -3567,47 +3685,44 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
* forwarded port. Give them back a local channel number. */ * forwarded port. Give them back a local channel number. */
struct ssh_channel *c; struct ssh_channel *c;
struct ssh_rportfwd pf; struct ssh_rportfwd pf;
int remoteid;
int hostsize, port; int hostsize, port;
char host[256], buf[1024]; char *host, buf[1024];
char *p, *h;
const char *e; const char *e;
c = snew(struct ssh_channel); c = snew(struct ssh_channel);
c->ssh = ssh; c->ssh = ssh;
hostsize = GET_32BIT(ssh->pktin.body+4); remoteid = ssh_pkt_getuint32(ssh);
for (h = host, p = (char *)(ssh->pktin.body+8); ssh_pkt_getstring(ssh, &host, &hostsize);
hostsize != 0; hostsize--) { port = ssh_pkt_getuint32(ssh);
if (h+1 < host+sizeof(host))
*h++ = *p;
p++;
}
*h = 0;
port = GET_32BIT(p);
strcpy(pf.dhost, host); if (hostsize >= lenof(pf.dhost))
hostsize = lenof(pf.dhost)-1;
memcpy(pf.dhost, host, hostsize);
pf.dhost[hostsize] = '\0';
pf.dport = port; pf.dport = port;
if (find234(ssh->rportfwds, &pf, NULL) == NULL) { if (find234(ssh->rportfwds, &pf, NULL) == NULL) {
sprintf(buf, "Rejected remote port open request for %s:%d", sprintf(buf, "Rejected remote port open request for %s:%d",
host, port); pf.dhost, port);
logevent(buf); logevent(buf);
send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE, send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
PKT_INT, GET_32BIT(ssh->pktin.body), PKT_END); PKT_INT, remoteid, PKT_END);
} else { } else {
sprintf(buf, "Received remote port open request for %s:%d", sprintf(buf, "Received remote port open request for %s:%d",
host, port); pf.dhost, port);
logevent(buf); logevent(buf);
e = pfd_newconnect(&c->u.pfd.s, host, port, c, &ssh->cfg); e = pfd_newconnect(&c->u.pfd.s, pf.dhost, port,
c, &ssh->cfg);
if (e != NULL) { if (e != NULL) {
char buf[256]; char buf[256];
sprintf(buf, "Port open failed: %s", e); sprintf(buf, "Port open failed: %s", e);
logevent(buf); logevent(buf);
sfree(c); sfree(c);
send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE, send_packet(ssh, SSH1_MSG_CHANNEL_OPEN_FAILURE,
PKT_INT, GET_32BIT(ssh->pktin.body), PKT_INT, remoteid, PKT_END);
PKT_END);
} else { } else {
c->remoteid = GET_32BIT(ssh->pktin.body); c->remoteid = remoteid;
c->localid = alloc_channel_id(ssh); c->localid = alloc_channel_id(ssh);
c->closes = 0; c->closes = 0;
c->v.v1.throttling = 0; c->v.v1.throttling = 0;
@ -3621,8 +3736,8 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
} }
} else if (ssh->pktin.type == SSH1_MSG_CHANNEL_OPEN_CONFIRMATION) { } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_OPEN_CONFIRMATION) {
unsigned int remoteid = GET_32BIT(ssh->pktin.body); unsigned int remoteid = ssh_pkt_getuint32(ssh);
unsigned int localid = GET_32BIT(ssh->pktin.body+4); unsigned int localid = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &remoteid, ssh_channelfind); c = find234(ssh->channels, &remoteid, ssh_channelfind);
@ -3645,7 +3760,7 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
} }
} else if (ssh->pktin.type == SSH1_MSG_CHANNEL_OPEN_FAILURE) { } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_OPEN_FAILURE) {
unsigned int remoteid = GET_32BIT(ssh->pktin.body); unsigned int remoteid = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &remoteid, ssh_channelfind); c = find234(ssh->channels, &remoteid, ssh_channelfind);
@ -3659,7 +3774,7 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
} else if (ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE || } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE ||
ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION) { ssh->pktin.type == SSH1_MSG_CHANNEL_CLOSE_CONFIRMATION) {
/* Remote side closes a channel. */ /* Remote side closes a channel. */
unsigned i = GET_32BIT(ssh->pktin.body); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (c && ((int)c->remoteid) != -1) { if (c && ((int)c->remoteid) != -1) {
@ -3700,19 +3815,22 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
} }
} else if (ssh->pktin.type == SSH1_MSG_CHANNEL_DATA) { } else if (ssh->pktin.type == SSH1_MSG_CHANNEL_DATA) {
/* Data sent down one of our channels. */ /* Data sent down one of our channels. */
int i = GET_32BIT(ssh->pktin.body); int i = ssh_pkt_getuint32(ssh);
int len = GET_32BIT(ssh->pktin.body + 4); char *p;
unsigned char *p = ssh->pktin.body + 8; int len;
struct ssh_channel *c; struct ssh_channel *c;
ssh_pkt_getstring(ssh, &p, &len);
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (c) { if (c) {
int bufsize = 0; int bufsize = 0;
switch (c->type) { switch (c->type) {
case CHAN_X11: case CHAN_X11:
bufsize = x11_send(c->u.x11.s, (char *)p, len); bufsize = x11_send(c->u.x11.s, p, len);
break; break;
case CHAN_SOCKDATA: case CHAN_SOCKDATA:
bufsize = pfd_send(c->u.pfd.s, (char *)p, len); bufsize = pfd_send(c->u.pfd.s, p, len);
break; break;
case CHAN_AGENT: case CHAN_AGENT:
/* Data for an agent message. Buffer it. */ /* Data for an agent message. Buffer it. */
@ -3769,7 +3887,7 @@ static void ssh1_protocol(Ssh ssh, unsigned char *in, int inlen, int ispkt)
* if no pty is available or in other odd cases. Ignore */ * if no pty is available or in other odd cases. Ignore */
} else if (ssh->pktin.type == SSH1_SMSG_EXIT_STATUS) { } else if (ssh->pktin.type == SSH1_SMSG_EXIT_STATUS) {
char buf[100]; char buf[100];
ssh->exitcode = GET_32BIT(ssh->pktin.body); ssh->exitcode = ssh_pkt_getuint32(ssh);
sprintf(buf, "Server sent command exit status %d", sprintf(buf, "Server sent command exit status %d",
ssh->exitcode); ssh->exitcode);
logevent(buf); logevent(buf);
@ -4069,7 +4187,7 @@ static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
s->cscomp_tobe = NULL; s->cscomp_tobe = NULL;
s->sccomp_tobe = NULL; s->sccomp_tobe = NULL;
ssh->pktin.savedpos += 16; /* skip garbage cookie */ ssh->pktin.savedpos += 16; /* skip garbage cookie */
ssh2_pkt_getstring(ssh, &str, &len); /* key exchange algorithms */ ssh_pkt_getstring(ssh, &str, &len); /* key exchange algorithms */
for (i = 0; i < lenof(kex_algs); i++) { for (i = 0; i < lenof(kex_algs); i++) {
if (kex_algs[i] == &ssh_diffiehellman_gex && if (kex_algs[i] == &ssh_diffiehellman_gex &&
(ssh->remote_bugs & BUG_SSH2_DH_GEX)) (ssh->remote_bugs & BUG_SSH2_DH_GEX))
@ -4079,14 +4197,14 @@ static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
break; break;
} }
} }
ssh2_pkt_getstring(ssh, &str, &len); /* host key algorithms */ ssh_pkt_getstring(ssh, &str, &len); /* host key algorithms */
for (i = 0; i < lenof(hostkey_algs); i++) { for (i = 0; i < lenof(hostkey_algs); i++) {
if (in_commasep_string(hostkey_algs[i]->name, str, len)) { if (in_commasep_string(hostkey_algs[i]->name, str, len)) {
ssh->hostkey = hostkey_algs[i]; ssh->hostkey = hostkey_algs[i];
break; break;
} }
} }
ssh2_pkt_getstring(ssh, &str, &len); /* client->server cipher */ ssh_pkt_getstring(ssh, &str, &len); /* client->server cipher */
s->warn = 0; s->warn = 0;
for (i = 0; i < s->n_preferred_ciphers; i++) { for (i = 0; i < s->n_preferred_ciphers; i++) {
const struct ssh2_ciphers *c = s->preferred_ciphers[i]; const struct ssh2_ciphers *c = s->preferred_ciphers[i];
@ -4112,7 +4230,7 @@ static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
crStop(0); crStop(0);
} }
ssh2_pkt_getstring(ssh, &str, &len); /* server->client cipher */ ssh_pkt_getstring(ssh, &str, &len); /* server->client cipher */
s->warn = 0; s->warn = 0;
for (i = 0; i < s->n_preferred_ciphers; i++) { for (i = 0; i < s->n_preferred_ciphers; i++) {
const struct ssh2_ciphers *c = s->preferred_ciphers[i]; const struct ssh2_ciphers *c = s->preferred_ciphers[i];
@ -4138,21 +4256,21 @@ static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
crStop(0); crStop(0);
} }
ssh2_pkt_getstring(ssh, &str, &len); /* client->server mac */ ssh_pkt_getstring(ssh, &str, &len); /* client->server mac */
for (i = 0; i < s->nmacs; i++) { for (i = 0; i < s->nmacs; i++) {
if (in_commasep_string(s->maclist[i]->name, str, len)) { if (in_commasep_string(s->maclist[i]->name, str, len)) {
s->csmac_tobe = s->maclist[i]; s->csmac_tobe = s->maclist[i];
break; break;
} }
} }
ssh2_pkt_getstring(ssh, &str, &len); /* server->client mac */ ssh_pkt_getstring(ssh, &str, &len); /* server->client mac */
for (i = 0; i < s->nmacs; i++) { for (i = 0; i < s->nmacs; i++) {
if (in_commasep_string(s->maclist[i]->name, str, len)) { if (in_commasep_string(s->maclist[i]->name, str, len)) {
s->scmac_tobe = s->maclist[i]; s->scmac_tobe = s->maclist[i];
break; break;
} }
} }
ssh2_pkt_getstring(ssh, &str, &len); /* client->server compression */ ssh_pkt_getstring(ssh, &str, &len); /* client->server compression */
for (i = 0; i < lenof(compressions) + 1; i++) { for (i = 0; i < lenof(compressions) + 1; i++) {
const struct ssh_compress *c = const struct ssh_compress *c =
i == 0 ? s->preferred_comp : compressions[i - 1]; i == 0 ? s->preferred_comp : compressions[i - 1];
@ -4161,7 +4279,7 @@ static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
break; break;
} }
} }
ssh2_pkt_getstring(ssh, &str, &len); /* server->client compression */ ssh_pkt_getstring(ssh, &str, &len); /* server->client compression */
for (i = 0; i < lenof(compressions) + 1; i++) { for (i = 0; i < lenof(compressions) + 1; i++) {
const struct ssh_compress *c = const struct ssh_compress *c =
i == 0 ? s->preferred_comp : compressions[i - 1]; i == 0 ? s->preferred_comp : compressions[i - 1];
@ -4236,9 +4354,9 @@ static int do_ssh2_transport(Ssh ssh, unsigned char *in, int inlen, int ispkt)
bombout(("expected key exchange reply packet from server")); bombout(("expected key exchange reply packet from server"));
crStop(0); crStop(0);
} }
ssh2_pkt_getstring(ssh, &s->hostkeydata, &s->hostkeylen); ssh_pkt_getstring(ssh, &s->hostkeydata, &s->hostkeylen);
s->f = ssh2_pkt_getmp(ssh); s->f = ssh2_pkt_getmp(ssh);
ssh2_pkt_getstring(ssh, &s->sigdata, &s->siglen); ssh_pkt_getstring(ssh, &s->sigdata, &s->siglen);
s->K = dh_find_K(ssh->kex_ctx, s->f); s->K = dh_find_K(ssh->kex_ctx, s->f);
@ -4659,7 +4777,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
* output of (say) plink.) * output of (say) plink.)
*/ */
if (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE)) { if (flags & (FLAG_VERBOSE | FLAG_INTERACTIVE)) {
ssh2_pkt_getstring(ssh, &banner, &size); ssh_pkt_getstring(ssh, &banner, &size);
if (banner) if (banner)
c_write_untrusted(ssh, banner, size); c_write_untrusted(ssh, banner, size);
} }
@ -4698,7 +4816,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
if (ssh->pktin.type == SSH2_MSG_USERAUTH_FAILURE) { if (ssh->pktin.type == SSH2_MSG_USERAUTH_FAILURE) {
char *methods; char *methods;
int methlen; int methlen;
ssh2_pkt_getstring(ssh, &methods, &methlen); ssh_pkt_getstring(ssh, &methods, &methlen);
s->kbd_inter_running = FALSE; s->kbd_inter_running = FALSE;
if (!ssh2_pkt_getbool(ssh)) { if (!ssh2_pkt_getbool(ssh)) {
/* /*
@ -5047,9 +5165,9 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
char *name, *inst, *lang; char *name, *inst, *lang;
int name_len, inst_len, lang_len; int name_len, inst_len, lang_len;
ssh2_pkt_getstring(ssh, &name, &name_len); ssh_pkt_getstring(ssh, &name, &name_len);
ssh2_pkt_getstring(ssh, &inst, &inst_len); ssh_pkt_getstring(ssh, &inst, &inst_len);
ssh2_pkt_getstring(ssh, &lang, &lang_len); ssh_pkt_getstring(ssh, &lang, &lang_len);
if (name_len > 0) { if (name_len > 0) {
c_write_untrusted(ssh, name, name_len); c_write_untrusted(ssh, name, name_len);
c_write_str(ssh, "\r\n"); c_write_str(ssh, "\r\n");
@ -5058,7 +5176,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
c_write_untrusted(ssh, inst, inst_len); c_write_untrusted(ssh, inst, inst_len);
c_write_str(ssh, "\r\n"); c_write_str(ssh, "\r\n");
} }
s->num_prompts = ssh2_pkt_getuint32(ssh); s->num_prompts = ssh_pkt_getuint32(ssh);
} }
/* /*
@ -5069,7 +5187,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
char *prompt; char *prompt;
int prompt_len; int prompt_len;
ssh2_pkt_getstring(ssh, &prompt, &prompt_len); ssh_pkt_getstring(ssh, &prompt, &prompt_len);
if (prompt_len > 0) { if (prompt_len > 0) {
strncpy(s->pwprompt, prompt, sizeof(s->pwprompt)); strncpy(s->pwprompt, prompt, sizeof(s->pwprompt));
s->pwprompt[prompt_len < sizeof(s->pwprompt) ? s->pwprompt[prompt_len < sizeof(s->pwprompt) ?
@ -5338,15 +5456,15 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
crStopV; crStopV;
/* FIXME: error data comes back in FAILURE packet */ /* FIXME: error data comes back in FAILURE packet */
} }
if (ssh2_pkt_getuint32(ssh) != ssh->mainchan->localid) { if (ssh_pkt_getuint32(ssh) != ssh->mainchan->localid) {
bombout(("Server's channel confirmation cited wrong channel")); bombout(("Server's channel confirmation cited wrong channel"));
crStopV; crStopV;
} }
ssh->mainchan->remoteid = ssh2_pkt_getuint32(ssh); ssh->mainchan->remoteid = ssh_pkt_getuint32(ssh);
ssh->mainchan->type = CHAN_MAINSESSION; ssh->mainchan->type = CHAN_MAINSESSION;
ssh->mainchan->closes = 0; ssh->mainchan->closes = 0;
ssh->mainchan->v.v2.remwindow = ssh2_pkt_getuint32(ssh); ssh->mainchan->v.v2.remwindow = ssh_pkt_getuint32(ssh);
ssh->mainchan->v.v2.remmaxpkt = ssh2_pkt_getuint32(ssh); ssh->mainchan->v.v2.remmaxpkt = ssh_pkt_getuint32(ssh);
bufchain_init(&ssh->mainchan->v.v2.outbuffer); bufchain_init(&ssh->mainchan->v.v2.outbuffer);
add234(ssh->channels, ssh->mainchan); add234(ssh->channels, ssh->mainchan);
logevent("Opened channel for session"); logevent("Opened channel for session");
@ -5373,12 +5491,12 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
do { do {
crWaitUntilV(ispkt); crWaitUntilV(ispkt);
if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) { if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue; /* nonexistent channel */ continue; /* nonexistent channel */
c->v.v2.remwindow += ssh2_pkt_getuint32(ssh); c->v.v2.remwindow += ssh_pkt_getuint32(ssh);
} }
} while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST); } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
@ -5529,12 +5647,12 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
do { do {
crWaitUntilV(ispkt); crWaitUntilV(ispkt);
if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) { if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue;/* nonexistent channel */ continue;/* nonexistent channel */
c->v.v2.remwindow += ssh2_pkt_getuint32(ssh); c->v.v2.remwindow += ssh_pkt_getuint32(ssh);
} }
} while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST); } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
@ -5569,12 +5687,12 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
do { do {
crWaitUntilV(ispkt); crWaitUntilV(ispkt);
if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) { if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue; /* nonexistent channel */ continue; /* nonexistent channel */
c->v.v2.remwindow += ssh2_pkt_getuint32(ssh); c->v.v2.remwindow += ssh_pkt_getuint32(ssh);
} }
} while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST); } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
@ -5621,12 +5739,12 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
do { do {
crWaitUntilV(ispkt); crWaitUntilV(ispkt);
if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) { if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue; /* nonexistent channel */ continue; /* nonexistent channel */
c->v.v2.remwindow += ssh2_pkt_getuint32(ssh); c->v.v2.remwindow += ssh_pkt_getuint32(ssh);
} }
} while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST); } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
@ -5681,12 +5799,12 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
do { do {
crWaitUntilV(ispkt); crWaitUntilV(ispkt);
if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) { if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue; /* nonexistent channel */ continue; /* nonexistent channel */
c->v.v2.remwindow += ssh2_pkt_getuint32(ssh); c->v.v2.remwindow += ssh_pkt_getuint32(ssh);
} }
} while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST); } while (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST);
if (ssh->pktin.type != SSH2_MSG_CHANNEL_SUCCESS) { if (ssh->pktin.type != SSH2_MSG_CHANNEL_SUCCESS) {
@ -5734,15 +5852,15 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
ssh->pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA) { ssh->pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA) {
char *data; char *data;
int length; int length;
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue; /* nonexistent channel */ continue; /* nonexistent channel */
if (ssh->pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA && if (ssh->pktin.type == SSH2_MSG_CHANNEL_EXTENDED_DATA &&
ssh2_pkt_getuint32(ssh) != SSH2_EXTENDED_DATA_STDERR) ssh_pkt_getuint32(ssh) != SSH2_EXTENDED_DATA_STDERR)
continue; /* extended but not stderr */ continue; /* extended but not stderr */
ssh2_pkt_getstring(ssh, &data, &length); ssh_pkt_getstring(ssh, &data, &length);
if (data) { if (data) {
int bufsize = 0; int bufsize = 0;
c->v.v2.locwindow -= length; c->v.v2.locwindow -= length;
@ -5809,7 +5927,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
ssh2_set_window(c, OUR_V2_WINSIZE - bufsize); ssh2_set_window(c, OUR_V2_WINSIZE - bufsize);
} }
} else if (ssh->pktin.type == SSH2_MSG_CHANNEL_EOF) { } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_EOF) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
@ -5830,7 +5948,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
sshfwd_close(c); sshfwd_close(c);
} }
} else if (ssh->pktin.type == SSH2_MSG_CHANNEL_CLOSE) { } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_CLOSE) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
@ -5894,25 +6012,25 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
} }
continue; /* remote sends close; ignore (FIXME) */ continue; /* remote sends close; ignore (FIXME) */
} else if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) { } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_WINDOW_ADJUST) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c || c->closes) if (!c || c->closes)
continue; /* nonexistent or closing channel */ continue; /* nonexistent or closing channel */
c->v.v2.remwindow += ssh2_pkt_getuint32(ssh); c->v.v2.remwindow += ssh_pkt_getuint32(ssh);
s->try_send = TRUE; s->try_send = TRUE;
} else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) { } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN_CONFIRMATION) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
continue; /* nonexistent channel */ continue; /* nonexistent channel */
if (c->type != CHAN_SOCKDATA_DORMANT) if (c->type != CHAN_SOCKDATA_DORMANT)
continue; /* dunno why they're confirming this */ continue; /* dunno why they're confirming this */
c->remoteid = ssh2_pkt_getuint32(ssh); c->remoteid = ssh_pkt_getuint32(ssh);
c->type = CHAN_SOCKDATA; c->type = CHAN_SOCKDATA;
c->v.v2.remwindow = ssh2_pkt_getuint32(ssh); c->v.v2.remwindow = ssh_pkt_getuint32(ssh);
c->v.v2.remmaxpkt = ssh2_pkt_getuint32(ssh); c->v.v2.remmaxpkt = ssh_pkt_getuint32(ssh);
if (c->u.pfd.s) if (c->u.pfd.s)
pfd_confirm(c->u.pfd.s); pfd_confirm(c->u.pfd.s);
if (c->closes) { if (c->closes) {
@ -5927,7 +6045,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
ssh2_pkt_send(ssh); ssh2_pkt_send(ssh);
} }
} else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN_FAILURE) { } else if (ssh->pktin.type == SSH2_MSG_CHANNEL_OPEN_FAILURE) {
unsigned i = ssh2_pkt_getuint32(ssh); unsigned i = ssh_pkt_getuint32(ssh);
struct ssh_channel *c; struct ssh_channel *c;
c = find234(ssh->channels, &i, ssh_channelfind); c = find234(ssh->channels, &i, ssh_channelfind);
if (!c) if (!c)
@ -5947,8 +6065,8 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
int typelen, want_reply; int typelen, want_reply;
struct ssh_channel *c; struct ssh_channel *c;
localid = ssh2_pkt_getuint32(ssh); localid = ssh_pkt_getuint32(ssh);
ssh2_pkt_getstring(ssh, &type, &typelen); ssh_pkt_getstring(ssh, &type, &typelen);
want_reply = ssh2_pkt_getbool(ssh); want_reply = ssh2_pkt_getbool(ssh);
/* /*
@ -5980,7 +6098,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
c == ssh->mainchan) { c == ssh->mainchan) {
/* We recognise "exit-status" on the primary channel. */ /* We recognise "exit-status" on the primary channel. */
char buf[100]; char buf[100];
ssh->exitcode = ssh2_pkt_getuint32(ssh); ssh->exitcode = ssh_pkt_getuint32(ssh);
sprintf(buf, "Server sent command exit status %d", sprintf(buf, "Server sent command exit status %d",
ssh->exitcode); ssh->exitcode);
logevent(buf); logevent(buf);
@ -6006,7 +6124,7 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
char *type; char *type;
int typelen, want_reply; int typelen, want_reply;
ssh2_pkt_getstring(ssh, &type, &typelen); ssh_pkt_getstring(ssh, &type, &typelen);
want_reply = ssh2_pkt_getbool(ssh); want_reply = ssh2_pkt_getbool(ssh);
/* /*
@ -6028,22 +6146,22 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
char *error = NULL; char *error = NULL;
struct ssh_channel *c; struct ssh_channel *c;
unsigned remid, winsize, pktsize; unsigned remid, winsize, pktsize;
ssh2_pkt_getstring(ssh, &type, &typelen); ssh_pkt_getstring(ssh, &type, &typelen);
c = snew(struct ssh_channel); c = snew(struct ssh_channel);
c->ssh = ssh; c->ssh = ssh;
remid = ssh2_pkt_getuint32(ssh); remid = ssh_pkt_getuint32(ssh);
winsize = ssh2_pkt_getuint32(ssh); winsize = ssh_pkt_getuint32(ssh);
pktsize = ssh2_pkt_getuint32(ssh); pktsize = ssh_pkt_getuint32(ssh);
if (typelen == 3 && !memcmp(type, "x11", 3)) { if (typelen == 3 && !memcmp(type, "x11", 3)) {
char *addrstr; char *addrstr;
ssh2_pkt_getstring(ssh, &peeraddr, &peeraddrlen); ssh_pkt_getstring(ssh, &peeraddr, &peeraddrlen);
addrstr = snewn(peeraddrlen+1, char); addrstr = snewn(peeraddrlen+1, char);
memcpy(addrstr, peeraddr, peeraddrlen); memcpy(addrstr, peeraddr, peeraddrlen);
peeraddr[peeraddrlen] = '\0'; peeraddr[peeraddrlen] = '\0';
peerport = ssh2_pkt_getuint32(ssh); peerport = ssh_pkt_getuint32(ssh);
if (!ssh->X11_fwd_enabled) if (!ssh->X11_fwd_enabled)
error = "X11 forwarding is not enabled"; error = "X11 forwarding is not enabled";
@ -6061,10 +6179,10 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, int ispkt)
struct ssh_rportfwd pf, *realpf; struct ssh_rportfwd pf, *realpf;
char *dummy; char *dummy;
int dummylen; int dummylen;
ssh2_pkt_getstring(ssh, &dummy, &dummylen);/* skip address */ ssh_pkt_getstring(ssh, &dummy, &dummylen);/* skip address */
pf.sport = ssh2_pkt_getuint32(ssh); pf.sport = ssh_pkt_getuint32(ssh);
ssh2_pkt_getstring(ssh, &peeraddr, &peeraddrlen); ssh_pkt_getstring(ssh, &peeraddr, &peeraddrlen);
peerport = ssh2_pkt_getuint32(ssh); peerport = ssh_pkt_getuint32(ssh);
realpf = find234(ssh->rportfwds, &pf, NULL); realpf = find234(ssh->rportfwds, &pf, NULL);
if (realpf == NULL) { if (realpf == NULL) {
error = "Remote port is not recognised"; error = "Remote port is not recognised";

10
ssh.h
View File

@ -55,10 +55,10 @@ struct dss_key {
Bignum p, q, g, y, x; Bignum p, q, g, y, x;
}; };
int makekey(unsigned char *data, struct RSAKey *result, int makekey(unsigned char *data, int len, struct RSAKey *result,
unsigned char **keystr, int order); unsigned char **keystr, int order);
int makeprivate(unsigned char *data, struct RSAKey *result); int makeprivate(unsigned char *data, int len, struct RSAKey *result);
void rsaencrypt(unsigned char *data, int length, struct RSAKey *key); int rsaencrypt(unsigned char *data, int length, struct RSAKey *key);
Bignum rsadecrypt(Bignum input, struct RSAKey *key); Bignum rsadecrypt(Bignum input, struct RSAKey *key);
void rsasign(unsigned char *data, int length, struct RSAKey *key); void rsasign(unsigned char *data, int length, struct RSAKey *key);
void rsasanitise(struct RSAKey *key); void rsasanitise(struct RSAKey *key);
@ -67,7 +67,7 @@ void rsastr_fmt(char *str, struct RSAKey *key);
void rsa_fingerprint(char *str, int len, struct RSAKey *key); void rsa_fingerprint(char *str, int len, struct RSAKey *key);
int rsa_verify(struct RSAKey *key); int rsa_verify(struct RSAKey *key);
unsigned char *rsa_public_blob(struct RSAKey *key, int *len); unsigned char *rsa_public_blob(struct RSAKey *key, int *len);
int rsa_public_blob_len(void *data); int rsa_public_blob_len(void *data, int maxlen);
void freersakey(struct RSAKey *key); void freersakey(struct RSAKey *key);
typedef unsigned int word32; typedef unsigned int word32;
@ -301,7 +301,7 @@ Bignum modmul(Bignum a, Bignum b, Bignum mod);
void decbn(Bignum n); void decbn(Bignum n);
extern Bignum Zero, One; extern Bignum Zero, One;
Bignum bignum_from_bytes(const unsigned char *data, int nbytes); Bignum bignum_from_bytes(const unsigned char *data, int nbytes);
int ssh1_read_bignum(const unsigned char *data, Bignum * result); int ssh1_read_bignum(const unsigned char *data, int len, Bignum * result);
int bignum_bitcount(Bignum bn); int bignum_bitcount(Bignum bn);
int ssh1_bignum_length(Bignum bn); int ssh1_bignum_length(Bignum bn);
int ssh2_bignum_length(Bignum bn); int ssh2_bignum_length(Bignum bn);

10
sshbn.c
View File

@ -540,19 +540,25 @@ Bignum bignum_from_bytes(const unsigned char *data, int nbytes)
/* /*
* Read an ssh1-format bignum from a data buffer. Return the number * Read an ssh1-format bignum from a data buffer. Return the number
* of bytes consumed. * of bytes consumed, or -1 if there wasn't enough data.
*/ */
int ssh1_read_bignum(const unsigned char *data, Bignum * result) int ssh1_read_bignum(const unsigned char *data, int len, Bignum * result)
{ {
const unsigned char *p = data; const unsigned char *p = data;
int i; int i;
int w, b; int w, b;
if (len < 2)
return -1;
w = 0; w = 0;
for (i = 0; i < 2; i++) for (i = 0; i < 2; i++)
w = (w << 8) + *p++; w = (w << 8) + *p++;
b = (w + 7) / 8; /* bits -> bytes */ b = (w + 7) / 8; /* bits -> bytes */
if (len < b+2)
return -1;
if (!result) /* just return length */ if (!result) /* just return length */
return b + 2; return b + 2;

View File

@ -123,7 +123,7 @@ Bignum dh_create_e(void *handle, int nbits)
ssh1_write_bignum(buf, ctx->qmask); ssh1_write_bignum(buf, ctx->qmask);
for (i = 2; i < nbytes; i++) for (i = 2; i < nbytes; i++)
buf[i] &= random_byte(); buf[i] &= random_byte();
ssh1_read_bignum(buf, &ctx->x); ssh1_read_bignum(buf, nbytes, &ctx->x); /* can't fail */
} else { } else {
int b, nb; int b, nb;
ctx->x = bn_power_2(nbits); ctx->x = bn_power_2(nbits);

View File

@ -79,8 +79,8 @@ static int loadrsakey_main(FILE * fp, struct RSAKey *key, int pub_only,
i += 4; i += 4;
/* Now the serious stuff. An ordinary SSH 1 public key. */ /* Now the serious stuff. An ordinary SSH 1 public key. */
i += makekey(buf + i, key, NULL, 1); i += makekey(buf + i, len, key, NULL, 1);
if (len - i < 0) if (i < 0)
goto end; /* overran */ goto end; /* overran */
if (pub_only) { if (pub_only) {
@ -138,18 +138,18 @@ static int loadrsakey_main(FILE * fp, struct RSAKey *key, int pub_only,
* decryption exponent, and then the three auxiliary values * decryption exponent, and then the three auxiliary values
* (iqmp, q, p). * (iqmp, q, p).
*/ */
i += makeprivate(buf + i, key); j = makeprivate(buf + i, len - i, key);
if (len - i < 0) if (j < 0) goto end;
goto end; i += j;
i += ssh1_read_bignum(buf + i, &key->iqmp); j = ssh1_read_bignum(buf + i, len - i, &key->iqmp);
if (len - i < 0) if (j < 0) goto end;
goto end; i += j;
i += ssh1_read_bignum(buf + i, &key->q); j = ssh1_read_bignum(buf + i, len - i, &key->q);
if (len - i < 0) if (j < 0) goto end;
goto end; i += j;
i += ssh1_read_bignum(buf + i, &key->p); j = ssh1_read_bignum(buf + i, len - i, &key->p);
if (len - i < 0) if (j < 0) goto end;
goto end; i += j;
if (!rsa_verify(key)) { if (!rsa_verify(key)) {
*error = "rsa_verify failed"; *error = "rsa_verify failed";

View File

@ -22,11 +22,14 @@
(cp)[2] = (unsigned char)((value) >> 8); \ (cp)[2] = (unsigned char)((value) >> 8); \
(cp)[3] = (unsigned char)(value); } (cp)[3] = (unsigned char)(value); }
int makekey(unsigned char *data, struct RSAKey *result, int makekey(unsigned char *data, int len, struct RSAKey *result,
unsigned char **keystr, int order) unsigned char **keystr, int order)
{ {
unsigned char *p = data; unsigned char *p = data;
int i; int i, n;
if (len < 4)
return -1;
if (result) { if (result) {
result->bits = 0; result->bits = 0;
@ -35,36 +38,53 @@ int makekey(unsigned char *data, struct RSAKey *result,
} else } else
p += 4; p += 4;
len -= 4;
/* /*
* order=0 means exponent then modulus (the keys sent by the * order=0 means exponent then modulus (the keys sent by the
* server). order=1 means modulus then exponent (the keys * server). order=1 means modulus then exponent (the keys
* stored in a keyfile). * stored in a keyfile).
*/ */
if (order == 0) if (order == 0) {
p += ssh1_read_bignum(p, result ? &result->exponent : NULL); n = ssh1_read_bignum(p, len, result ? &result->exponent : NULL);
if (n < 0) return -1;
p += n;
len -= n;
}
n = ssh1_read_bignum(p, len, result ? &result->modulus : NULL);
if (n < 0) return -1;
if (result) if (result)
result->bytes = (((p[0] << 8) + p[1]) + 7) / 8; result->bytes = n - 2;
if (keystr) if (keystr)
*keystr = p + 2; *keystr = p + 2;
p += ssh1_read_bignum(p, result ? &result->modulus : NULL); p += n;
if (order == 1) len -= n;
p += ssh1_read_bignum(p, result ? &result->exponent : NULL);
if (order == 1) {
n = ssh1_read_bignum(p, len, result ? &result->exponent : NULL);
if (n < 0) return -1;
p += n;
len -= n;
}
return p - data; return p - data;
} }
int makeprivate(unsigned char *data, struct RSAKey *result) int makeprivate(unsigned char *data, int len, struct RSAKey *result)
{ {
return ssh1_read_bignum(data, &result->private_exponent); return ssh1_read_bignum(data, len, &result->private_exponent);
} }
void rsaencrypt(unsigned char *data, int length, struct RSAKey *key) int rsaencrypt(unsigned char *data, int length, struct RSAKey *key)
{ {
Bignum b1, b2; Bignum b1, b2;
int i; int i;
unsigned char *p; unsigned char *p;
if (key->bytes < length + 4)
return 0; /* RSA key too short! */
memmove(data + key->bytes - length, data, length); memmove(data + key->bytes - length, data, length);
data[0] = 0; data[0] = 0;
data[1] = 2; data[1] = 2;
@ -87,6 +107,8 @@ void rsaencrypt(unsigned char *data, int length, struct RSAKey *key)
freebn(b1); freebn(b1);
freebn(b2); freebn(b2);
return 1;
} }
static void sha512_mpint(SHA512_State * s, Bignum b) static void sha512_mpint(SHA512_State * s, Bignum b)
@ -378,13 +400,25 @@ unsigned char *rsa_public_blob(struct RSAKey *key, int *len)
} }
/* Given a public blob, determine its length. */ /* Given a public blob, determine its length. */
int rsa_public_blob_len(void *data) int rsa_public_blob_len(void *data, int maxlen)
{ {
unsigned char *p = (unsigned char *)data; unsigned char *p = (unsigned char *)data;
int n;
if (maxlen < 4)
return -1;
p += 4; /* length word */ p += 4; /* length word */
p += ssh1_read_bignum(p, NULL); /* exponent */ maxlen -= 4;
p += ssh1_read_bignum(p, NULL); /* modulus */
n = ssh1_read_bignum(p, maxlen, NULL); /* exponent */
if (n < 0)
return -1;
p += n;
n = ssh1_read_bignum(p, maxlen, NULL); /* modulus */
if (n < 0)
return -1;
p += n;
return p - (unsigned char *)data; return p - (unsigned char *)data;
} }