]> andersk Git - openssh.git/blame - compat.c
- jakob@cvs.openbsd.org 2001/12/18 10:06:24
[openssh.git] / compat.c
CommitLineData
aa3378df 1/*
a96070d4 2 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
aa3378df 3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
aa3378df 12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
8efc0c15 25#include "includes.h"
6a92533a 26RCSID("$OpenBSD: compat.c,v 1.55 2001/12/05 16:54:51 markus Exp $");
8efc0c15 27
42f11eb2 28#include "packet.h"
29#include "xmalloc.h"
30#include "compat.h"
31#include "log.h"
6a92533a 32#include "match.h"
42f11eb2 33
5260325f 34int compat13 = 0;
7e7327a1 35int compat20 = 0;
36int datafellows = 0;
5260325f 37
6ae2364d 38void
7e7327a1 39enable_compat20(void)
40{
8ce64345 41 verbose("Enabling compatibility mode for protocol 2.0");
42 compat20 = 1;
7e7327a1 43}
6ae2364d 44void
5260325f 45enable_compat13(void)
46{
47 verbose("Enabling compatibility mode for protocol 1.3");
48 compat13 = 1;
8efc0c15 49}
7e7327a1 50/* datafellows bug compatibility */
51void
52compat_datafellows(const char *version)
53{
6a92533a 54 int i;
94ec8c6b 55 static struct {
56 char *pat;
d0c832f3 57 int bugs;
58 } check[] = {
6a92533a 59 { "OpenSSH-2.0*,"
60 "OpenSSH-2.1*,"
61 "OpenSSH_2.1*,"
62 "OpenSSH_2.2*", SSH_OLD_SESSIONID|SSH_BUG_BANNER|
255cfda1 63 SSH_OLD_DHGEX|SSH_BUG_NOREKEY },
6a92533a 64 { "OpenSSH_2.3.0*", SSH_BUG_BANNER|SSH_BUG_BIGENDIANAES|
255cfda1 65 SSH_OLD_DHGEX|SSH_BUG_NOREKEY},
6a92533a 66 { "OpenSSH_2.3.*", SSH_BUG_BIGENDIANAES|SSH_OLD_DHGEX|
255cfda1 67 SSH_BUG_NOREKEY},
6a92533a 68 { "OpenSSH_2.5.0p1*,"
69 "OpenSSH_2.5.1p1*",
255cfda1 70 SSH_BUG_BIGENDIANAES|SSH_OLD_DHGEX|
71 SSH_BUG_NOREKEY },
6a92533a 72 { "OpenSSH_2.5.0*,"
73 "OpenSSH_2.5.1*,"
74 "OpenSSH_2.5.2*", SSH_OLD_DHGEX|SSH_BUG_NOREKEY },
75 { "OpenSSH_2.5.3*",
255cfda1 76 SSH_BUG_NOREKEY },
6a92533a 77 { "OpenSSH*", 0 },
78 { "*MindTerm*", 0 },
79 { "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
a4da628b 80 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
8002af61 81 SSH_BUG_RSASIGMD5|SSH_BUG_HBSERVICE },
6a92533a 82 { "2.1 *", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
a4da628b 83 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
8002af61 84 SSH_BUG_RSASIGMD5|SSH_BUG_HBSERVICE },
6a92533a 85 { "2.0.13*,"
86 "2.0.14*,"
87 "2.0.15*,"
88 "2.0.16*,"
89 "2.0.17*,"
90 "2.0.18*,"
91 "2.0.19*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
f72fc97f 92 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
fee56204 93 SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
8dddf799 94 SSH_BUG_PKOK|SSH_BUG_RSASIGMD5|
bcdb96c2 95 SSH_BUG_HBSERVICE|SSH_BUG_OPENFAILURE|
96 SSH_BUG_DUMMYCHAN },
6a92533a 97 { "2.0.11*,"
98 "2.0.12*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
f72fc97f 99 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
100 SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
a4da628b 101 SSH_BUG_PKAUTH|SSH_BUG_PKOK|
bcdb96c2 102 SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
103 SSH_BUG_DUMMYCHAN },
6a92533a 104 { "2.0.*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
eef7adcb 105 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
106 SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
107 SSH_BUG_PKAUTH|SSH_BUG_PKOK|
108 SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
bcdb96c2 109 SSH_BUG_DERIVEKEY|SSH_BUG_DUMMYCHAN },
6a92533a 110 { "2.2.0*,"
111 "2.3.0*", SSH_BUG_HMAC|SSH_BUG_DEBUG|
b6761a3e 112 SSH_BUG_RSASIGMD5 },
6a92533a 113 { "2.3.*", SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5 },
114 { "2.4", SSH_OLD_SESSIONID }, /* Van Dyke */
115 { "2.*", SSH_BUG_DEBUG },
116 { "3.0.*", SSH_BUG_DEBUG },
117 { "3.0 SecureCRT*", SSH_OLD_SESSIONID },
118 { "1.7 SecureFX*", SSH_OLD_SESSIONID },
119 { "1.2.18*,"
120 "1.2.19*,"
121 "1.2.20*,"
122 "1.2.21*,"
123 "1.2.22*", SSH_BUG_IGNOREMSG },
124 { "1.3.2*", SSH_BUG_IGNOREMSG }, /* f-secure */
125 { "*SSH Compatible Server*", /* Netscreen */
99c415db 126 SSH_BUG_PASSWORDPAD },
6a92533a 127 { "*OSU_0*,"
128 "OSU_1.0*,"
129 "OSU_1.1*,"
130 "OSU_1.2*,"
131 "OSU_1.3*,"
132 "OSU_1.4*,"
133 "OSU_1.5alpha1*,"
134 "OSU_1.5alpha2*,"
135 "OSU_1.5alpha3*", SSH_BUG_PASSWORDPAD },
136 { "*SSH_Version_Mapper*",
3a1c54d4 137 SSH_BUG_SCANNER },
33de75a3 138 { NULL, 0 }
7e7327a1 139 };
6a92533a 140
14a9a859 141 /* process table, return first match */
94ec8c6b 142 for (i = 0; check[i].pat; i++) {
6a92533a 143 if (match_pattern_list(version, check[i].pat,
144 strlen(check[i].pat), 0) == 1) {
13af0aa2 145 debug("match: %s pat %s", version, check[i].pat);
d0c832f3 146 datafellows = check[i].bugs;
7e7327a1 147 return;
148 }
149 }
94ec8c6b 150 debug("no match: %s", version);
7e7327a1 151}
a8be9f80 152
153#define SEP ","
154int
155proto_spec(const char *spec)
156{
089fbbd2 157 char *s, *p, *q;
a8be9f80 158 int ret = SSH_PROTO_UNKNOWN;
159
71276795 160 if (spec == NULL)
161 return ret;
089fbbd2 162 q = s = xstrdup(spec);
163 for ((p = strsep(&q, SEP)); p && *p != '\0'; (p = strsep(&q, SEP))) {
6aacefa7 164 switch (atoi(p)) {
a8be9f80 165 case 1:
166 if (ret == SSH_PROTO_UNKNOWN)
167 ret |= SSH_PROTO_1_PREFERRED;
168 ret |= SSH_PROTO_1;
169 break;
170 case 2:
171 ret |= SSH_PROTO_2;
172 break;
173 default:
174 log("ignoring bad proto spec: '%s'.", p);
175 break;
176 }
177 }
178 xfree(s);
179 return ret;
180}
80cd07ae 181
182char *
183compat_cipher_proposal(char *cipher_prop)
184{
185 char *orig_prop, *fix_ciphers;
186 char *cp, *tmp;
187 size_t len;
188
189 if (!(datafellows & SSH_BUG_BIGENDIANAES))
190 return(cipher_prop);
191
192 len = strlen(cipher_prop) + 1;
193 fix_ciphers = xmalloc(len);
194 *fix_ciphers = '\0';
195 tmp = orig_prop = xstrdup(cipher_prop);
6aacefa7 196 while ((cp = strsep(&tmp, ",")) != NULL) {
80cd07ae 197 if (strncmp(cp, "aes", 3) && strncmp(cp, "rijndael", 8)) {
198 if (*fix_ciphers)
199 strlcat(fix_ciphers, ",", len);
200 strlcat(fix_ciphers, cp, len);
201 }
202 }
203 xfree(orig_prop);
204 debug2("Original cipher proposal: %s", cipher_prop);
205 debug2("Compat cipher proposal: %s", fix_ciphers);
206 if (!*fix_ciphers)
207 fatal("No available ciphers found.");
208
209 return(fix_ciphers);
210}
This page took 0.157037 seconds and 5 git commands to generate.