]> andersk Git - gssapi-openssh.git/blame - openssh/compat.c
add backwards compatibility with old GSI-enabled SSH daemons that didn't handle
[gssapi-openssh.git] / openssh / compat.c
CommitLineData
3c0ef626 1/*
1e608e42 2 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
3c0ef626 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.
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
25#include "includes.h"
510132b6 26RCSID("$OpenBSD: compat.c,v 1.63 2002/04/10 08:21:47 markus Exp $");
3c0ef626 27
1e608e42 28#include "buffer.h"
3c0ef626 29#include "packet.h"
30#include "xmalloc.h"
31#include "compat.h"
32#include "log.h"
1e608e42 33#include "match.h"
3c0ef626 34
35int compat13 = 0;
36int compat20 = 0;
37int datafellows = 0;
38
39void
40enable_compat20(void)
41{
42 verbose("Enabling compatibility mode for protocol 2.0");
43 compat20 = 1;
44}
45void
46enable_compat13(void)
47{
48 verbose("Enabling compatibility mode for protocol 1.3");
49 compat13 = 1;
50}
51/* datafellows bug compatibility */
52void
53compat_datafellows(const char *version)
54{
1e608e42 55 int i;
3c0ef626 56 static struct {
57 char *pat;
58 int bugs;
59 } check[] = {
1e608e42 60 { "OpenSSH-2.0*,"
61 "OpenSSH-2.1*,"
62 "OpenSSH_2.1*,"
63 "OpenSSH_2.2*", SSH_OLD_SESSIONID|SSH_BUG_BANNER|
510132b6 64 SSH_OLD_DHGEX|SSH_BUG_NOREKEY|
65 SSH_BUG_EXTEOF},
1e608e42 66 { "OpenSSH_2.3.0*", SSH_BUG_BANNER|SSH_BUG_BIGENDIANAES|
510132b6 67 SSH_OLD_DHGEX|SSH_BUG_NOREKEY|
68 SSH_BUG_EXTEOF},
1e608e42 69 { "OpenSSH_2.3.*", SSH_BUG_BIGENDIANAES|SSH_OLD_DHGEX|
510132b6 70 SSH_BUG_NOREKEY|SSH_BUG_EXTEOF},
1e608e42 71 { "OpenSSH_2.5.0p1*,"
72 "OpenSSH_2.5.1p1*",
3c0ef626 73 SSH_BUG_BIGENDIANAES|SSH_OLD_DHGEX|
510132b6 74 SSH_BUG_NOREKEY|SSH_BUG_EXTEOF|
75 SSH_OLD_GSSAPI},
1e608e42 76 { "OpenSSH_2.5.0*,"
77 "OpenSSH_2.5.1*,"
510132b6 78 "OpenSSH_2.5.2*", SSH_OLD_DHGEX|SSH_BUG_NOREKEY|
79 SSH_BUG_EXTEOF},
80 { "OpenSSH_2.5.3*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF},
1e608e42 81 { "OpenSSH_2.9p*", SSH_OLD_GSSAPI },
510132b6 82 { "OpenSSH_2.*,"
83 "OpenSSH_3.0*,"
2e9d2d36 84 "OpenSSH_3.1*", SSH_BUG_EXTEOF|SSH_BUG_GSS_EMPTYUSER},
510132b6 85 { "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF},
1e608e42 86 { "OpenSSH*", 0 },
87 { "*MindTerm*", 0 },
88 { "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
3c0ef626 89 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
90 SSH_BUG_RSASIGMD5|SSH_BUG_HBSERVICE },
1e608e42 91 { "2.1 *", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
3c0ef626 92 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
93 SSH_BUG_RSASIGMD5|SSH_BUG_HBSERVICE },
1e608e42 94 { "2.0.13*,"
95 "2.0.14*,"
96 "2.0.15*,"
97 "2.0.16*,"
98 "2.0.17*,"
99 "2.0.18*,"
100 "2.0.19*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
3c0ef626 101 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
102 SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
103 SSH_BUG_PKOK|SSH_BUG_RSASIGMD5|
104 SSH_BUG_HBSERVICE|SSH_BUG_OPENFAILURE|
105 SSH_BUG_DUMMYCHAN },
1e608e42 106 { "2.0.11*,"
107 "2.0.12*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
3c0ef626 108 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
109 SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
110 SSH_BUG_PKAUTH|SSH_BUG_PKOK|
111 SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
112 SSH_BUG_DUMMYCHAN },
1e608e42 113 { "2.0.*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
3c0ef626 114 SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
115 SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
116 SSH_BUG_PKAUTH|SSH_BUG_PKOK|
117 SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
118 SSH_BUG_DERIVEKEY|SSH_BUG_DUMMYCHAN },
1e608e42 119 { "2.2.0*,"
120 "2.3.0*", SSH_BUG_HMAC|SSH_BUG_DEBUG|
3c0ef626 121 SSH_BUG_RSASIGMD5 },
1e608e42 122 { "2.3.*", SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5 },
123 { "2.4", SSH_OLD_SESSIONID }, /* Van Dyke */
124 { "2.*", SSH_BUG_DEBUG },
125 { "3.0.*", SSH_BUG_DEBUG },
126 { "3.0 SecureCRT*", SSH_OLD_SESSIONID },
127 { "1.7 SecureFX*", SSH_OLD_SESSIONID },
128 { "1.2.18*,"
129 "1.2.19*,"
130 "1.2.20*,"
131 "1.2.21*,"
510132b6 132 "1.2.22*", SSH_BUG_IGNOREMSG|SSH_BUG_K5USER },
133 { "1.3.2*", /* F-Secure */
134 SSH_BUG_IGNOREMSG|SSH_BUG_K5USER },
135 { "1.2.1*,"
136 "1.2.2*,"
137 "1.2.3*", SSH_BUG_K5USER },
1e608e42 138 { "*SSH Compatible Server*", /* Netscreen */
3c0ef626 139 SSH_BUG_PASSWORDPAD },
1e608e42 140 { "*OSU_0*,"
141 "OSU_1.0*,"
142 "OSU_1.1*,"
143 "OSU_1.2*,"
144 "OSU_1.3*,"
145 "OSU_1.4*,"
146 "OSU_1.5alpha1*,"
147 "OSU_1.5alpha2*,"
148 "OSU_1.5alpha3*", SSH_BUG_PASSWORDPAD },
149 { "*SSH_Version_Mapper*",
3c0ef626 150 SSH_BUG_SCANNER },
151 { NULL, 0 }
152 };
1e608e42 153
3c0ef626 154 /* process table, return first match */
155 for (i = 0; check[i].pat; i++) {
1e608e42 156 if (match_pattern_list(version, check[i].pat,
157 strlen(check[i].pat), 0) == 1) {
3c0ef626 158 debug("match: %s pat %s", version, check[i].pat);
159 datafellows = check[i].bugs;
160 return;
161 }
162 }
163 debug("no match: %s", version);
164}
165
166#define SEP ","
167int
168proto_spec(const char *spec)
169{
170 char *s, *p, *q;
171 int ret = SSH_PROTO_UNKNOWN;
172
173 if (spec == NULL)
174 return ret;
175 q = s = xstrdup(spec);
176 for ((p = strsep(&q, SEP)); p && *p != '\0'; (p = strsep(&q, SEP))) {
1e608e42 177 switch (atoi(p)) {
3c0ef626 178 case 1:
179 if (ret == SSH_PROTO_UNKNOWN)
180 ret |= SSH_PROTO_1_PREFERRED;
181 ret |= SSH_PROTO_1;
182 break;
183 case 2:
184 ret |= SSH_PROTO_2;
185 break;
186 default:
187 log("ignoring bad proto spec: '%s'.", p);
188 break;
189 }
190 }
191 xfree(s);
192 return ret;
193}
194
195char *
196compat_cipher_proposal(char *cipher_prop)
197{
1e608e42 198 Buffer b;
3c0ef626 199 char *orig_prop, *fix_ciphers;
200 char *cp, *tmp;
3c0ef626 201
202 if (!(datafellows & SSH_BUG_BIGENDIANAES))
203 return(cipher_prop);
204
1e608e42 205 buffer_init(&b);
3c0ef626 206 tmp = orig_prop = xstrdup(cipher_prop);
1e608e42 207 while ((cp = strsep(&tmp, ",")) != NULL) {
208 if (strncmp(cp, "aes", 3) != 0) {
209 if (buffer_len(&b) > 0)
210 buffer_append(&b, ",", 1);
211 buffer_append(&b, cp, strlen(cp));
3c0ef626 212 }
213 }
1e608e42 214 buffer_append(&b, "\0", 1);
215 fix_ciphers = xstrdup(buffer_ptr(&b));
216 buffer_free(&b);
3c0ef626 217 xfree(orig_prop);
218 debug2("Original cipher proposal: %s", cipher_prop);
219 debug2("Compat cipher proposal: %s", fix_ciphers);
220 if (!*fix_ciphers)
221 fatal("No available ciphers found.");
222
223 return(fix_ciphers);
224}
This page took 0.099472 seconds and 5 git commands to generate.