]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - crypto/openssh/compat.c
MFH (r237568, r255422, r255460, r255766, r255767, r255774, r255829,
[FreeBSD/stable/9.git] / crypto / openssh / compat.c
1 /* $OpenBSD: compat.c,v 1.82 2013/12/30 23:52:27 djm Exp $ */
2 /* $FreeBSD$ */
3 /*
4  * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "includes.h"
28 __RCSID("$FreeBSD$");
29
30 #include <sys/types.h>
31
32 #include <stdlib.h>
33 #include <string.h>
34 #include <stdarg.h>
35
36 #include "xmalloc.h"
37 #include "buffer.h"
38 #include "packet.h"
39 #include "compat.h"
40 #include "log.h"
41 #include "match.h"
42
43 int compat13 = 0;
44 int compat20 = 0;
45 int datafellows = 0;
46
47 void
48 enable_compat20(void)
49 {
50         if (compat20)
51                 return;
52         debug("Enabling compatibility mode for protocol 2.0");
53         compat20 = 1;
54 }
55 void
56 enable_compat13(void)
57 {
58         debug("Enabling compatibility mode for protocol 1.3");
59         compat13 = 1;
60 }
61 /* datafellows bug compatibility */
62 void
63 compat_datafellows(const char *version)
64 {
65         int i;
66         static struct {
67                 char    *pat;
68                 int     bugs;
69         } check[] = {
70                 { "OpenSSH-2.0*,"
71                   "OpenSSH-2.1*,"
72                   "OpenSSH_2.1*,"
73                   "OpenSSH_2.2*",       SSH_OLD_SESSIONID|SSH_BUG_BANNER|
74                                         SSH_OLD_DHGEX|SSH_BUG_NOREKEY|
75                                         SSH_BUG_EXTEOF|SSH_OLD_FORWARD_ADDR},
76                 { "OpenSSH_2.3.0*",     SSH_BUG_BANNER|SSH_BUG_BIGENDIANAES|
77                                         SSH_OLD_DHGEX|SSH_BUG_NOREKEY|
78                                         SSH_BUG_EXTEOF|SSH_OLD_FORWARD_ADDR},
79                 { "OpenSSH_2.3.*",      SSH_BUG_BIGENDIANAES|SSH_OLD_DHGEX|
80                                         SSH_BUG_NOREKEY|SSH_BUG_EXTEOF|
81                                         SSH_OLD_FORWARD_ADDR},
82                 { "OpenSSH_2.5.0p1*,"
83                   "OpenSSH_2.5.1p1*",
84                                         SSH_BUG_BIGENDIANAES|SSH_OLD_DHGEX|
85                                         SSH_BUG_NOREKEY|SSH_BUG_EXTEOF|
86                                         SSH_OLD_FORWARD_ADDR},
87                 { "OpenSSH_2.5.0*,"
88                   "OpenSSH_2.5.1*,"
89                   "OpenSSH_2.5.2*",     SSH_OLD_DHGEX|SSH_BUG_NOREKEY|
90                                         SSH_BUG_EXTEOF|SSH_OLD_FORWARD_ADDR},
91                 { "OpenSSH_2.5.3*",     SSH_BUG_NOREKEY|SSH_BUG_EXTEOF|
92                                         SSH_OLD_FORWARD_ADDR},
93                 { "OpenSSH_2.*,"
94                   "OpenSSH_3.0*,"
95                   "OpenSSH_3.1*",       SSH_BUG_EXTEOF|SSH_OLD_FORWARD_ADDR},
96                 { "OpenSSH_3.*",        SSH_OLD_FORWARD_ADDR },
97                 { "Sun_SSH_1.0*",       SSH_BUG_NOREKEY|SSH_BUG_EXTEOF},
98                 { "OpenSSH_4*",         0 },
99                 { "OpenSSH_5*",         SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT},
100                 { "OpenSSH*",           SSH_NEW_OPENSSH },
101                 { "*MindTerm*",         0 },
102                 { "2.1.0*",             SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
103                                         SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
104                                         SSH_BUG_RSASIGMD5|SSH_BUG_HBSERVICE|
105                                         SSH_BUG_FIRSTKEX },
106                 { "2.1 *",              SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
107                                         SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
108                                         SSH_BUG_RSASIGMD5|SSH_BUG_HBSERVICE|
109                                         SSH_BUG_FIRSTKEX },
110                 { "2.0.13*,"
111                   "2.0.14*,"
112                   "2.0.15*,"
113                   "2.0.16*,"
114                   "2.0.17*,"
115                   "2.0.18*,"
116                   "2.0.19*",            SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
117                                         SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
118                                         SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
119                                         SSH_BUG_PKOK|SSH_BUG_RSASIGMD5|
120                                         SSH_BUG_HBSERVICE|SSH_BUG_OPENFAILURE|
121                                         SSH_BUG_DUMMYCHAN|SSH_BUG_FIRSTKEX },
122                 { "2.0.11*,"
123                   "2.0.12*",            SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
124                                         SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
125                                         SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
126                                         SSH_BUG_PKAUTH|SSH_BUG_PKOK|
127                                         SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
128                                         SSH_BUG_DUMMYCHAN|SSH_BUG_FIRSTKEX },
129                 { "2.0.*",              SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
130                                         SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
131                                         SSH_BUG_PKSERVICE|SSH_BUG_X11FWD|
132                                         SSH_BUG_PKAUTH|SSH_BUG_PKOK|
133                                         SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
134                                         SSH_BUG_DERIVEKEY|SSH_BUG_DUMMYCHAN|
135                                         SSH_BUG_FIRSTKEX },
136                 { "2.2.0*,"
137                   "2.3.0*",             SSH_BUG_HMAC|SSH_BUG_DEBUG|
138                                         SSH_BUG_RSASIGMD5|SSH_BUG_FIRSTKEX },
139                 { "2.3.*",              SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5|
140                                         SSH_BUG_FIRSTKEX },
141                 { "2.4",                SSH_OLD_SESSIONID },    /* Van Dyke */
142                 { "2.*",                SSH_BUG_DEBUG|SSH_BUG_FIRSTKEX|
143                                         SSH_BUG_RFWD_ADDR },
144                 { "3.0.*",              SSH_BUG_DEBUG },
145                 { "3.0 SecureCRT*",     SSH_OLD_SESSIONID },
146                 { "1.7 SecureFX*",      SSH_OLD_SESSIONID },
147                 { "1.2.18*,"
148                   "1.2.19*,"
149                   "1.2.20*,"
150                   "1.2.21*,"
151                   "1.2.22*",            SSH_BUG_IGNOREMSG },
152                 { "1.3.2*",             /* F-Secure */
153                                         SSH_BUG_IGNOREMSG },
154                 { "*SSH Compatible Server*",                    /* Netscreen */
155                                         SSH_BUG_PASSWORDPAD },
156                 { "*OSU_0*,"
157                   "OSU_1.0*,"
158                   "OSU_1.1*,"
159                   "OSU_1.2*,"
160                   "OSU_1.3*,"
161                   "OSU_1.4*,"
162                   "OSU_1.5alpha1*,"
163                   "OSU_1.5alpha2*,"
164                   "OSU_1.5alpha3*",     SSH_BUG_PASSWORDPAD },
165                 { "*SSH_Version_Mapper*",
166                                         SSH_BUG_SCANNER },
167                 { "Probe-*",
168                                         SSH_BUG_PROBE },
169                 { NULL,                 0 }
170         };
171
172         /* process table, return first match */
173         for (i = 0; check[i].pat; i++) {
174                 if (match_pattern_list(version, check[i].pat,
175                     strlen(check[i].pat), 0) == 1) {
176                         datafellows = check[i].bugs;
177                         debug("match: %s pat %s compat 0x%08x",
178                             version, check[i].pat, datafellows);
179                         /*
180                          * Check to see if the remote side is OpenSSH and not
181                          * HPN.  It is utterly strange to check it from the
182                          * version string and expose the option that way.
183                          */
184                         if (strstr(version,"OpenSSH") != NULL &&
185                             strstr(version,"hpn") == NULL) {
186                                 datafellows |= SSH_BUG_LARGEWINDOW;
187                                 debug("Remote is not HPN-aware");
188                         }
189                         return;
190                 }
191         }
192         debug("no match: %s", version);
193 }
194
195 #define SEP     ","
196 int
197 proto_spec(const char *spec)
198 {
199         char *s, *p, *q;
200         int ret = SSH_PROTO_UNKNOWN;
201
202         if (spec == NULL)
203                 return ret;
204         q = s = xstrdup(spec);
205         for ((p = strsep(&q, SEP)); p && *p != '\0'; (p = strsep(&q, SEP))) {
206                 switch (atoi(p)) {
207                 case 1:
208                         if (ret == SSH_PROTO_UNKNOWN)
209                                 ret |= SSH_PROTO_1_PREFERRED;
210                         ret |= SSH_PROTO_1;
211                         break;
212                 case 2:
213                         ret |= SSH_PROTO_2;
214                         break;
215                 default:
216                         logit("ignoring bad proto spec: '%s'.", p);
217                         break;
218                 }
219         }
220         free(s);
221         return ret;
222 }
223
224 /*
225  * Filters a proposal string, excluding any algorithm matching the 'filter'
226  * pattern list.
227  */
228 static char *
229 filter_proposal(char *proposal, const char *filter)
230 {
231         Buffer b;
232         char *orig_prop, *fix_prop;
233         char *cp, *tmp;
234
235         buffer_init(&b);
236         tmp = orig_prop = xstrdup(proposal);
237         while ((cp = strsep(&tmp, ",")) != NULL) {
238                 if (match_pattern_list(cp, filter, strlen(cp), 0) != 1) {
239                         if (buffer_len(&b) > 0)
240                                 buffer_append(&b, ",", 1);
241                         buffer_append(&b, cp, strlen(cp));
242                 } else
243                         debug2("Compat: skipping algorithm \"%s\"", cp);
244         }
245         buffer_append(&b, "\0", 1);
246         fix_prop = xstrdup(buffer_ptr(&b));
247         buffer_free(&b);
248         free(orig_prop);
249
250         return fix_prop;
251 }
252
253 char *
254 compat_cipher_proposal(char *cipher_prop)
255 {
256         if (!(datafellows & SSH_BUG_BIGENDIANAES))
257                 return cipher_prop;
258         debug2("%s: original cipher proposal: %s", __func__, cipher_prop);
259         cipher_prop = filter_proposal(cipher_prop, "aes*");
260         debug2("%s: compat cipher proposal: %s", __func__, cipher_prop);
261         if (*cipher_prop == '\0')
262                 fatal("No supported ciphers found");
263         return cipher_prop;
264 }
265
266
267 char *
268 compat_pkalg_proposal(char *pkalg_prop)
269 {
270         if (!(datafellows & SSH_BUG_RSASIGMD5))
271                 return pkalg_prop;
272         debug2("%s: original public key proposal: %s", __func__, pkalg_prop);
273         pkalg_prop = filter_proposal(pkalg_prop, "ssh-rsa");
274         debug2("%s: compat public key proposal: %s", __func__, pkalg_prop);
275         if (*pkalg_prop == '\0')
276                 fatal("No supported PK algorithms found");
277         return pkalg_prop;
278 }
279