1999-10-27 07:42:43 +04:00
|
|
|
/*
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* cipher.c
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Created: Wed Apr 19 17:41:39 1995 ylo
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
1999-11-24 16:26:21 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "includes.h"
|
2000-07-11 11:31:38 +04:00
|
|
|
RCSID("$OpenBSD: cipher.c,v 1.29 2000/07/10 16:30:25 ho Exp $");
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "ssh.h"
|
|
|
|
#include "cipher.h"
|
2000-04-12 14:17:38 +04:00
|
|
|
#include "xmalloc.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include <openssl/md5.h>
|
|
|
|
|
|
|
|
/*
|
2000-04-12 14:17:38 +04:00
|
|
|
* This is used by SSH1:
|
|
|
|
*
|
|
|
|
* What kind of triple DES are these 2 routines?
|
1999-10-27 07:42:43 +04:00
|
|
|
*
|
|
|
|
* Why is there a redundant initialization vector?
|
|
|
|
*
|
|
|
|
* If only iv3 was used, then, this would till effect have been
|
|
|
|
* outer-cbc. However, there is also a private iv1 == iv2 which
|
|
|
|
* perhaps makes differential analysis easier. On the other hand, the
|
|
|
|
* private iv1 probably makes the CRC-32 attack ineffective. This is a
|
|
|
|
* result of that there is no longer any known iv1 to use when
|
|
|
|
* choosing the X block.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SSH_3CBC_ENCRYPT(des_key_schedule ks1,
|
1999-11-24 16:26:21 +03:00
|
|
|
des_key_schedule ks2, des_cblock * iv2,
|
|
|
|
des_key_schedule ks3, des_cblock * iv3,
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
unsigned char *dest, unsigned char *src,
|
1999-10-27 07:42:43 +04:00
|
|
|
unsigned int len)
|
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cblock iv1;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
memcpy(&iv1, iv2, 8);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cbc_encrypt(src, dest, len, ks1, &iv1, DES_ENCRYPT);
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
memcpy(&iv1, dest + len - 8, 8);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cbc_encrypt(dest, dest, len, ks2, iv2, DES_DECRYPT);
|
|
|
|
memcpy(iv2, &iv1, 8); /* Note how iv1 == iv2 on entry and exit. */
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cbc_encrypt(dest, dest, len, ks3, iv3, DES_ENCRYPT);
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
memcpy(iv3, dest + len - 8, 8);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SSH_3CBC_DECRYPT(des_key_schedule ks1,
|
1999-11-24 16:26:21 +03:00
|
|
|
des_key_schedule ks2, des_cblock * iv2,
|
|
|
|
des_key_schedule ks3, des_cblock * iv3,
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
unsigned char *dest, unsigned char *src,
|
1999-10-27 07:42:43 +04:00
|
|
|
unsigned int len)
|
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cblock iv1;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
memcpy(&iv1, iv2, 8);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cbc_encrypt(src, dest, len, ks3, iv3, DES_DECRYPT);
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
memcpy(iv3, src + len - 8, 8);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cbc_encrypt(dest, dest, len, ks2, iv2, DES_ENCRYPT);
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
memcpy(iv2, dest + len - 8, 8);
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
des_cbc_encrypt(dest, dest, len, ks1, &iv1, DES_DECRYPT);
|
|
|
|
/* memcpy(&iv1, iv2, 8); */
|
|
|
|
/* Note how iv1 == iv2 on entry and exit. */
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-04-12 14:17:38 +04:00
|
|
|
* SSH1 uses a variation on Blowfish, all bytes must be swapped before
|
1999-10-27 07:42:43 +04:00
|
|
|
* and after encryption/decryption. Thus the swap_bytes stuff (yuk).
|
|
|
|
*/
|
1999-11-24 16:26:21 +03:00
|
|
|
static void
|
1999-10-27 07:42:43 +04:00
|
|
|
swap_bytes(const unsigned char *src, unsigned char *dst_, int n)
|
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
/* dst must be properly aligned. */
|
|
|
|
u_int32_t *dst = (u_int32_t *) dst_;
|
|
|
|
union {
|
|
|
|
u_int32_t i;
|
|
|
|
char c[4];
|
|
|
|
} t;
|
|
|
|
|
|
|
|
/* Process 8 bytes every lap. */
|
|
|
|
for (n = n / 8; n > 0; n--) {
|
|
|
|
t.c[3] = *src++;
|
|
|
|
t.c[2] = *src++;
|
|
|
|
t.c[1] = *src++;
|
|
|
|
t.c[0] = *src++;
|
|
|
|
*dst++ = t.i;
|
|
|
|
|
|
|
|
t.c[3] = *src++;
|
|
|
|
t.c[2] = *src++;
|
|
|
|
t.c[1] = *src++;
|
|
|
|
t.c[0] = *src++;
|
|
|
|
*dst++ = t.i;
|
|
|
|
}
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Names of all encryption algorithms.
|
|
|
|
* These must match the numbers defined in cipher.h.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
static char *cipher_names[] =
|
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
"none",
|
|
|
|
"idea",
|
|
|
|
"des",
|
|
|
|
"3des",
|
|
|
|
"tss",
|
|
|
|
"rc4",
|
2000-04-01 05:09:21 +04:00
|
|
|
"blowfish",
|
|
|
|
"reserved",
|
|
|
|
"blowfish-cbc",
|
|
|
|
"3des-cbc",
|
|
|
|
"arcfour",
|
|
|
|
"cast128-cbc"
|
1999-10-27 07:42:43 +04:00
|
|
|
};
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Returns a bit mask indicating which ciphers are supported by this
|
|
|
|
* implementation. The bit mask has the corresponding bit set of each
|
|
|
|
* supported cipher.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
unsigned int
|
2000-04-06 06:32:37 +04:00
|
|
|
cipher_mask1()
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
unsigned int mask = 0;
|
|
|
|
mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */
|
|
|
|
mask |= 1 << SSH_CIPHER_BLOWFISH;
|
2000-04-06 06:32:37 +04:00
|
|
|
return mask;
|
|
|
|
}
|
2000-04-16 05:18:38 +04:00
|
|
|
unsigned int
|
2000-04-06 06:32:37 +04:00
|
|
|
cipher_mask2()
|
|
|
|
{
|
|
|
|
unsigned int mask = 0;
|
2000-04-01 05:09:21 +04:00
|
|
|
mask |= 1 << SSH_CIPHER_BLOWFISH_CBC;
|
|
|
|
mask |= 1 << SSH_CIPHER_3DES_CBC;
|
|
|
|
mask |= 1 << SSH_CIPHER_ARCFOUR;
|
|
|
|
mask |= 1 << SSH_CIPHER_CAST128_CBC;
|
1999-11-24 16:26:21 +03:00
|
|
|
return mask;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
2000-04-16 05:18:38 +04:00
|
|
|
unsigned int
|
2000-04-06 06:32:37 +04:00
|
|
|
cipher_mask()
|
|
|
|
{
|
|
|
|
return cipher_mask1() | cipher_mask2();
|
|
|
|
}
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
/* Returns the name of the cipher. */
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
const char *
|
|
|
|
cipher_name(int cipher)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
if (cipher < 0 || cipher >= sizeof(cipher_names) / sizeof(cipher_names[0]) ||
|
|
|
|
cipher_names[cipher] == NULL)
|
2000-04-12 14:17:38 +04:00
|
|
|
fatal("cipher_name: bad cipher name: %d", cipher);
|
1999-11-24 16:26:21 +03:00
|
|
|
return cipher_names[cipher];
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2000-04-12 14:17:38 +04:00
|
|
|
/* Returns 1 if the name of the ciphers are valid. */
|
|
|
|
|
|
|
|
#define CIPHER_SEP ","
|
|
|
|
int
|
|
|
|
ciphers_valid(const char *names)
|
|
|
|
{
|
2000-07-11 11:31:38 +04:00
|
|
|
char *ciphers, *cp;
|
2000-04-12 14:17:38 +04:00
|
|
|
char *p;
|
|
|
|
int i;
|
|
|
|
|
2000-05-30 07:44:51 +04:00
|
|
|
if (names == NULL || strcmp(names, "") == 0)
|
2000-04-12 14:17:38 +04:00
|
|
|
return 0;
|
2000-07-11 11:31:38 +04:00
|
|
|
ciphers = cp = xstrdup(names);
|
|
|
|
for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
|
|
|
|
(p = strsep(&cp, CIPHER_SEP))) {
|
2000-04-12 14:17:38 +04:00
|
|
|
i = cipher_number(p);
|
|
|
|
if (i == -1 || !(cipher_mask2() & (1 << i))) {
|
|
|
|
xfree(ciphers);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xfree(ciphers);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Parses the name of the cipher. Returns the number of the corresponding
|
|
|
|
* cipher, or -1 on error.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
cipher_number(const char *name)
|
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
int i;
|
2000-05-30 07:44:51 +04:00
|
|
|
if (name == NULL)
|
|
|
|
return -1;
|
1999-11-24 16:26:21 +03:00
|
|
|
for (i = 0; i < sizeof(cipher_names) / sizeof(cipher_names[0]); i++)
|
|
|
|
if (strcmp(cipher_names[i], name) == 0 &&
|
|
|
|
(cipher_mask() & (1 << i)))
|
|
|
|
return i;
|
|
|
|
return -1;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Selects the cipher, and keys if by computing the MD5 checksum of the
|
|
|
|
* passphrase and using the resulting 16 bytes as the key.
|
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
2000-04-06 06:32:37 +04:00
|
|
|
cipher_set_key_string(CipherContext *context, int cipher, const char *passphrase)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
MD5_CTX md;
|
|
|
|
unsigned char digest[16];
|
|
|
|
|
|
|
|
MD5_Init(&md);
|
|
|
|
MD5_Update(&md, (const unsigned char *) passphrase, strlen(passphrase));
|
|
|
|
MD5_Final(digest, &md);
|
|
|
|
|
2000-04-06 06:32:37 +04:00
|
|
|
cipher_set_key(context, cipher, digest, 16);
|
1999-11-24 16:26:21 +03:00
|
|
|
|
|
|
|
memset(digest, 0, sizeof(digest));
|
|
|
|
memset(&md, 0, sizeof(md));
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Selects the cipher to use and sets the key. */
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
2000-04-06 06:32:37 +04:00
|
|
|
cipher_set_key(CipherContext *context, int cipher, const unsigned char *key,
|
|
|
|
int keylen)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
unsigned char padded[32];
|
|
|
|
|
|
|
|
/* Set cipher type. */
|
|
|
|
context->type = cipher;
|
|
|
|
|
|
|
|
/* Get 32 bytes of key data. Pad if necessary. (So that code
|
|
|
|
below does not need to worry about key size). */
|
|
|
|
memset(padded, 0, sizeof(padded));
|
|
|
|
memcpy(padded, key, keylen < sizeof(padded) ? keylen : sizeof(padded));
|
|
|
|
|
|
|
|
/* Initialize the initialization vector. */
|
|
|
|
switch (cipher) {
|
|
|
|
case SSH_CIPHER_NONE:
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Has to stay for authfile saving of private key with no
|
|
|
|
* passphrase
|
|
|
|
*/
|
1999-11-24 16:26:21 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES:
|
1999-11-25 03:54:57 +03:00
|
|
|
/*
|
|
|
|
* Note: the least significant bit of each byte of key is
|
|
|
|
* parity, and must be ignored by the implementation. 16
|
|
|
|
* bytes of key are used (first and last keys are the same).
|
|
|
|
*/
|
1999-11-24 16:26:21 +03:00
|
|
|
if (keylen < 16)
|
|
|
|
error("Key length %d is insufficient for 3DES.", keylen);
|
|
|
|
des_set_key((void *) padded, context->u.des3.key1);
|
|
|
|
des_set_key((void *) (padded + 8), context->u.des3.key2);
|
|
|
|
if (keylen <= 16)
|
|
|
|
des_set_key((void *) padded, context->u.des3.key3);
|
|
|
|
else
|
|
|
|
des_set_key((void *) (padded + 16), context->u.des3.key3);
|
|
|
|
memset(context->u.des3.iv2, 0, sizeof(context->u.des3.iv2));
|
|
|
|
memset(context->u.des3.iv3, 0, sizeof(context->u.des3.iv3));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_BLOWFISH:
|
2000-04-01 05:09:21 +04:00
|
|
|
if (keylen < 16)
|
|
|
|
error("Key length %d is insufficient for blowfish.", keylen);
|
1999-11-24 16:26:21 +03:00
|
|
|
BF_set_key(&context->u.bf.key, keylen, padded);
|
|
|
|
memset(context->u.bf.iv, 0, 8);
|
|
|
|
break;
|
|
|
|
|
2000-04-01 05:09:21 +04:00
|
|
|
case SSH_CIPHER_3DES_CBC:
|
|
|
|
case SSH_CIPHER_BLOWFISH_CBC:
|
|
|
|
case SSH_CIPHER_ARCFOUR:
|
|
|
|
case SSH_CIPHER_CAST128_CBC:
|
|
|
|
fatal("cipher_set_key: illegal cipher: %s", cipher_name(cipher));
|
|
|
|
break;
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
default:
|
|
|
|
fatal("cipher_set_key: unknown cipher: %s", cipher_name(cipher));
|
|
|
|
}
|
|
|
|
memset(padded, 0, sizeof(padded));
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
2000-04-01 05:09:21 +04:00
|
|
|
cipher_set_key_iv(CipherContext * context, int cipher,
|
2000-04-16 05:18:38 +04:00
|
|
|
const unsigned char *key, int keylen,
|
2000-04-01 05:09:21 +04:00
|
|
|
const unsigned char *iv, int ivlen)
|
|
|
|
{
|
|
|
|
/* Set cipher type. */
|
|
|
|
context->type = cipher;
|
|
|
|
|
|
|
|
/* Initialize the initialization vector. */
|
|
|
|
switch (cipher) {
|
|
|
|
case SSH_CIPHER_NONE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES:
|
|
|
|
case SSH_CIPHER_BLOWFISH:
|
|
|
|
fatal("cipher_set_key_iv: illegal cipher: %s", cipher_name(cipher));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES_CBC:
|
|
|
|
if (keylen < 24)
|
|
|
|
error("Key length %d is insufficient for 3des-cbc.", keylen);
|
|
|
|
des_set_key((void *) key, context->u.des3.key1);
|
|
|
|
des_set_key((void *) (key+8), context->u.des3.key2);
|
|
|
|
des_set_key((void *) (key+16), context->u.des3.key3);
|
|
|
|
if (ivlen < 8)
|
|
|
|
error("IV length %d is insufficient for 3des-cbc.", ivlen);
|
|
|
|
memcpy(context->u.des3.iv3, (char *)iv, 8);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_BLOWFISH_CBC:
|
|
|
|
if (keylen < 16)
|
|
|
|
error("Key length %d is insufficient for blowfish.", keylen);
|
|
|
|
if (ivlen < 8)
|
|
|
|
error("IV length %d is insufficient for blowfish.", ivlen);
|
|
|
|
BF_set_key(&context->u.bf.key, keylen, (unsigned char *)key);
|
|
|
|
memcpy(context->u.bf.iv, (char *)iv, 8);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_ARCFOUR:
|
|
|
|
if (keylen < 16)
|
|
|
|
error("Key length %d is insufficient for arcfour.", keylen);
|
|
|
|
RC4_set_key(&context->u.rc4, keylen, (unsigned char *)key);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_CAST128_CBC:
|
|
|
|
if (keylen < 16)
|
|
|
|
error("Key length %d is insufficient for cast128.", keylen);
|
|
|
|
if (ivlen < 8)
|
|
|
|
error("IV length %d is insufficient for cast128.", ivlen);
|
|
|
|
CAST_set_key(&context->u.cast.key, keylen, (unsigned char *) key);
|
|
|
|
memcpy(context->u.cast.iv, (char *)iv, 8);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fatal("cipher_set_key: unknown cipher: %s", cipher_name(cipher));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/* Encrypts data using the cipher. */
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
cipher_encrypt(CipherContext *context, unsigned char *dest,
|
|
|
|
const unsigned char *src, unsigned int len)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
if ((len & 7) != 0)
|
|
|
|
fatal("cipher_encrypt: bad plaintext length %d", len);
|
|
|
|
|
|
|
|
switch (context->type) {
|
|
|
|
case SSH_CIPHER_NONE:
|
|
|
|
memcpy(dest, src, len);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES:
|
|
|
|
SSH_3CBC_ENCRYPT(context->u.des3.key1,
|
|
|
|
context->u.des3.key2, &context->u.des3.iv2,
|
|
|
|
context->u.des3.key3, &context->u.des3.iv3,
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
dest, (unsigned char *) src, len);
|
1999-11-24 16:26:21 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_BLOWFISH:
|
|
|
|
swap_bytes(src, dest, len);
|
|
|
|
BF_cbc_encrypt(dest, dest, len,
|
2000-04-16 05:18:38 +04:00
|
|
|
&context->u.bf.key, context->u.bf.iv,
|
1999-11-24 16:26:21 +03:00
|
|
|
BF_ENCRYPT);
|
|
|
|
swap_bytes(dest, dest, len);
|
|
|
|
break;
|
|
|
|
|
2000-04-01 05:09:21 +04:00
|
|
|
case SSH_CIPHER_BLOWFISH_CBC:
|
|
|
|
BF_cbc_encrypt((void *)src, dest, len,
|
2000-04-16 05:18:38 +04:00
|
|
|
&context->u.bf.key, context->u.bf.iv,
|
2000-04-01 05:09:21 +04:00
|
|
|
BF_ENCRYPT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES_CBC:
|
|
|
|
des_ede3_cbc_encrypt(src, dest, len,
|
|
|
|
context->u.des3.key1, context->u.des3.key2,
|
|
|
|
context->u.des3.key3, &context->u.des3.iv3, DES_ENCRYPT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_ARCFOUR:
|
|
|
|
RC4(&context->u.rc4, len, (unsigned char *)src, dest);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_CAST128_CBC:
|
|
|
|
CAST_cbc_encrypt(src, dest, len,
|
|
|
|
&context->u.cast.key, context->u.cast.iv, CAST_ENCRYPT);
|
|
|
|
break;
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
default:
|
|
|
|
fatal("cipher_encrypt: unknown cipher: %s", cipher_name(context->type));
|
|
|
|
}
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
1999-11-24 16:26:21 +03:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/* Decrypts data using the cipher. */
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
cipher_decrypt(CipherContext *context, unsigned char *dest,
|
|
|
|
const unsigned char *src, unsigned int len)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
if ((len & 7) != 0)
|
|
|
|
fatal("cipher_decrypt: bad ciphertext length %d", len);
|
|
|
|
|
|
|
|
switch (context->type) {
|
|
|
|
case SSH_CIPHER_NONE:
|
|
|
|
memcpy(dest, src, len);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES:
|
|
|
|
SSH_3CBC_DECRYPT(context->u.des3.key1,
|
|
|
|
context->u.des3.key2, &context->u.des3.iv2,
|
|
|
|
context->u.des3.key3, &context->u.des3.iv3,
|
- OpenBSD CVS updates to v1.2.3
[ssh.h atomicio.c]
- int atomicio -> ssize_t (for alpha). ok deraadt@
[auth-rsa.c]
- delay MD5 computation until client sends response, free() early, cleanup.
[cipher.c]
- void* -> unsigned char*, ok niels@
[hostfile.c]
- remove unused variable 'len'. fix comments.
- remove unused variable
[log-client.c log-server.c]
- rename a cpp symbol, to avoid param.h collision
[packet.c]
- missing xfree()
- getsockname() requires initialized tolen; andy@guildsoftware.com
- use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
from Holger.Trapp@Informatik.TU-Chemnitz.DE
[pty.c pty.h]
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
[readconf.c]
- turn off x11-fwd for the client, too.
[rsa.c]
- PKCS#1 padding
[scp.c]
- allow '.' in usernames; from jedgar@fxp.org
[servconf.c]
- typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
- sync with sshd_config
[ssh-keygen.c]
- enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
[ssh.1]
- Change invalid 'CHAT' loglevel to 'VERBOSE'
[ssh.c]
- suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
- turn off x11-fwd for the client, too.
[sshconnect.c]
- missing xfree()
- retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
- read error vs. "Connection closed by remote host"
[sshd.8]
- ie. -> i.e.,
- do not link to a commercial page..
- sync with sshd_config
[sshd.c]
- no need for poll.h; from bright@wintelcom.net
- log with level log() not fatal() if peer behaves badly.
- don't panic if client behaves strange. ok deraadt@
- make no-port-forwarding for RSA keys deny both -L and -R style fwding
- delay close() of pty until the pty has been chowned back to root
- oops, fix comment, too.
- missing xfree()
- move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
(http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
- register cleanup for pty earlier. move code for pty-owner handling to
pty.c ok provos@, dugsong@
- create x11 cookie file
- fix pr 1113, fclose() -> pclose(), todo: remote popen()
- version 1.2.3
- Cleaned up
2000-03-09 13:27:49 +03:00
|
|
|
dest, (unsigned char *) src, len);
|
1999-11-24 16:26:21 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_BLOWFISH:
|
|
|
|
swap_bytes(src, dest, len);
|
|
|
|
BF_cbc_encrypt((void *) dest, dest, len,
|
|
|
|
&context->u.bf.key, context->u.bf.iv,
|
|
|
|
BF_DECRYPT);
|
|
|
|
swap_bytes(dest, dest, len);
|
|
|
|
break;
|
|
|
|
|
2000-04-01 05:09:21 +04:00
|
|
|
case SSH_CIPHER_BLOWFISH_CBC:
|
|
|
|
BF_cbc_encrypt((void *) src, dest, len,
|
|
|
|
&context->u.bf.key, context->u.bf.iv,
|
|
|
|
BF_DECRYPT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_3DES_CBC:
|
|
|
|
des_ede3_cbc_encrypt(src, dest, len,
|
|
|
|
context->u.des3.key1, context->u.des3.key2,
|
|
|
|
context->u.des3.key3, &context->u.des3.iv3, DES_DECRYPT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_ARCFOUR:
|
|
|
|
RC4(&context->u.rc4, len, (unsigned char *)src, dest);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SSH_CIPHER_CAST128_CBC:
|
|
|
|
CAST_cbc_encrypt(src, dest, len,
|
|
|
|
&context->u.cast.key, context->u.cast.iv, CAST_DECRYPT);
|
|
|
|
break;
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
default:
|
|
|
|
fatal("cipher_decrypt: unknown cipher: %s", cipher_name(context->type));
|
|
|
|
}
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|