Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Simple pattern matching, with '*' and '?' as wildcards. |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 6 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 7 | * As far as I am concerned, the code I have written for this software |
| 8 | * can be used freely for any purpose. Any derived versions of this |
| 9 | * software must be clearly marked as such, and if the derived work is |
| 10 | * incompatible with the protocol description in the RFC file, it must be |
| 11 | * called by a name other than "ssh" or "Secure Shell". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 12 | */ |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 13 | /* |
| 14 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
| 15 | * |
| 16 | * Redistribution and use in source and binary forms, with or without |
| 17 | * modification, are permitted provided that the following conditions |
| 18 | * are met: |
| 19 | * 1. Redistributions of source code must retain the above copyright |
| 20 | * notice, this list of conditions and the following disclaimer. |
| 21 | * 2. Redistributions in binary form must reproduce the above copyright |
| 22 | * notice, this list of conditions and the following disclaimer in the |
| 23 | * documentation and/or other materials provided with the distribution. |
| 24 | * |
| 25 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 26 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 27 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 28 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 29 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 30 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 31 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 32 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 33 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 34 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 35 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 36 | |
| 37 | #include "includes.h" |
Ben Lindstrom | 3fb5d00 | 2002-03-05 01:42:42 +0000 | [diff] [blame] | 38 | RCSID("$OpenBSD: match.c,v 1.19 2002/03/01 13:12:10 markus Exp $"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 39 | |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 40 | #include "match.h" |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 41 | #include "xmalloc.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 42 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 43 | /* |
| 44 | * Returns true if the given string matches the pattern (which may contain ? |
| 45 | * and * as wildcards), and zero if it does not match. |
| 46 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 47 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 48 | int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 49 | match_pattern(const char *s, const char *pattern) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 50 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 51 | for (;;) { |
| 52 | /* If at end of pattern, accept if also at end of string. */ |
| 53 | if (!*pattern) |
| 54 | return !*s; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 55 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 56 | if (*pattern == '*') { |
| 57 | /* Skip the asterisk. */ |
| 58 | pattern++; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 59 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 60 | /* If at end of pattern, accept immediately. */ |
| 61 | if (!*pattern) |
| 62 | return 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 63 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 64 | /* If next character in pattern is known, optimize. */ |
| 65 | if (*pattern != '?' && *pattern != '*') { |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 66 | /* |
| 67 | * Look instances of the next character in |
| 68 | * pattern, and try to match starting from |
| 69 | * those. |
| 70 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 71 | for (; *s; s++) |
| 72 | if (*s == *pattern && |
| 73 | match_pattern(s + 1, pattern + 1)) |
| 74 | return 1; |
| 75 | /* Failed. */ |
| 76 | return 0; |
| 77 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 78 | /* |
| 79 | * Move ahead one character at a time and try to |
| 80 | * match at each position. |
| 81 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 82 | for (; *s; s++) |
| 83 | if (match_pattern(s, pattern)) |
| 84 | return 1; |
| 85 | /* Failed. */ |
| 86 | return 0; |
| 87 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 88 | /* |
| 89 | * There must be at least one more character in the string. |
| 90 | * If we are at the end, fail. |
| 91 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 92 | if (!*s) |
| 93 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 94 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 95 | /* Check if the next character of the string is acceptable. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 96 | if (*pattern != '?' && *pattern != *s) |
| 97 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 98 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 99 | /* Move to the next character, both in string and in pattern. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 100 | s++; |
| 101 | pattern++; |
| 102 | } |
| 103 | /* NOTREACHED */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 104 | } |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 105 | |
| 106 | /* |
Ben Lindstrom | 9eab262 | 2001-12-06 18:06:05 +0000 | [diff] [blame] | 107 | * Tries to match the string against the |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 108 | * comma-separated sequence of subpatterns (each possibly preceded by ! to |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 109 | * indicate negation). Returns -1 if negation matches, 1 if there is |
| 110 | * a positive match, 0 if there is no match at all. |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 111 | */ |
| 112 | |
| 113 | int |
Ben Lindstrom | 9eab262 | 2001-12-06 18:06:05 +0000 | [diff] [blame] | 114 | match_pattern_list(const char *string, const char *pattern, u_int len, |
| 115 | int dolower) |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 116 | { |
| 117 | char sub[1024]; |
| 118 | int negated; |
| 119 | int got_positive; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 120 | u_int i, subi; |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 121 | |
| 122 | got_positive = 0; |
| 123 | for (i = 0; i < len;) { |
| 124 | /* Check if the subpattern is negated. */ |
| 125 | if (pattern[i] == '!') { |
| 126 | negated = 1; |
| 127 | i++; |
| 128 | } else |
| 129 | negated = 0; |
| 130 | |
| 131 | /* |
| 132 | * Extract the subpattern up to a comma or end. Convert the |
| 133 | * subpattern to lowercase. |
| 134 | */ |
| 135 | for (subi = 0; |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 136 | i < len && subi < sizeof(sub) - 1 && pattern[i] != ','; |
| 137 | subi++, i++) |
Ben Lindstrom | 9eab262 | 2001-12-06 18:06:05 +0000 | [diff] [blame] | 138 | sub[subi] = dolower && isupper(pattern[i]) ? |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 139 | tolower(pattern[i]) : pattern[i]; |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 140 | /* If subpattern too long, return failure (no match). */ |
| 141 | if (subi >= sizeof(sub) - 1) |
| 142 | return 0; |
| 143 | |
| 144 | /* If the subpattern was terminated by a comma, skip the comma. */ |
| 145 | if (i < len && pattern[i] == ',') |
| 146 | i++; |
| 147 | |
| 148 | /* Null-terminate the subpattern. */ |
| 149 | sub[subi] = '\0'; |
| 150 | |
Ben Lindstrom | 9eab262 | 2001-12-06 18:06:05 +0000 | [diff] [blame] | 151 | /* Try to match the subpattern against the string. */ |
| 152 | if (match_pattern(string, sub)) { |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 153 | if (negated) |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 154 | return -1; /* Negative */ |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 155 | else |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 156 | got_positive = 1; /* Positive */ |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
| 160 | /* |
| 161 | * Return success if got a positive match. If there was a negative |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 162 | * match, we have already returned -1 and never get here. |
Damien Miller | 450a7a1 | 2000-03-26 13:04:51 +1000 | [diff] [blame] | 163 | */ |
| 164 | return got_positive; |
| 165 | } |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 166 | |
Ben Lindstrom | f0c5029 | 2001-06-25 05:17:53 +0000 | [diff] [blame] | 167 | /* |
Ben Lindstrom | 9eab262 | 2001-12-06 18:06:05 +0000 | [diff] [blame] | 168 | * Tries to match the host name (which must be in all lowercase) against the |
| 169 | * comma-separated sequence of subpatterns (each possibly preceded by ! to |
| 170 | * indicate negation). Returns -1 if negation matches, 1 if there is |
| 171 | * a positive match, 0 if there is no match at all. |
| 172 | */ |
| 173 | int |
| 174 | match_hostname(const char *host, const char *pattern, u_int len) |
| 175 | { |
| 176 | return match_pattern_list(host, pattern, len, 1); |
| 177 | } |
| 178 | |
| 179 | /* |
Ben Lindstrom | f0c5029 | 2001-06-25 05:17:53 +0000 | [diff] [blame] | 180 | * returns 0 if we get a negative match for the hostname or the ip |
| 181 | * or if we get no match at all. returns 1 otherwise. |
| 182 | */ |
| 183 | int |
| 184 | match_host_and_ip(const char *host, const char *ipaddr, |
| 185 | const char *patterns) |
| 186 | { |
| 187 | int mhost, mip; |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 188 | |
Ben Lindstrom | f0c5029 | 2001-06-25 05:17:53 +0000 | [diff] [blame] | 189 | /* negative ipaddr match */ |
| 190 | if ((mip = match_hostname(ipaddr, patterns, strlen(patterns))) == -1) |
| 191 | return 0; |
| 192 | /* negative hostname match */ |
| 193 | if ((mhost = match_hostname(host, patterns, strlen(patterns))) == -1) |
| 194 | return 0; |
| 195 | /* no match at all */ |
| 196 | if (mhost == 0 && mip == 0) |
| 197 | return 0; |
| 198 | return 1; |
| 199 | } |
| 200 | |
| 201 | /* |
Ben Lindstrom | 6026002 | 2001-07-04 04:56:44 +0000 | [diff] [blame] | 202 | * match user, user@host_or_ip, user@host_or_ip_list against pattern |
| 203 | */ |
| 204 | int |
Ben Lindstrom | 3fb5d00 | 2002-03-05 01:42:42 +0000 | [diff] [blame] | 205 | match_user(const char *user, const char *host, const char *ipaddr, |
Ben Lindstrom | 6026002 | 2001-07-04 04:56:44 +0000 | [diff] [blame] | 206 | const char *pattern) |
| 207 | { |
| 208 | char *p, *pat; |
| 209 | int ret; |
| 210 | |
| 211 | if ((p = strchr(pattern,'@')) == NULL) |
| 212 | return match_pattern(user, pattern); |
| 213 | |
| 214 | pat = xstrdup(pattern); |
| 215 | p = strchr(pat, '@'); |
| 216 | *p++ = '\0'; |
| 217 | |
| 218 | if ((ret = match_pattern(user, pat)) == 1) |
Ben Lindstrom | 3fb5d00 | 2002-03-05 01:42:42 +0000 | [diff] [blame] | 219 | ret = match_host_and_ip(host, ipaddr, p); |
Ben Lindstrom | 6026002 | 2001-07-04 04:56:44 +0000 | [diff] [blame] | 220 | xfree(pat); |
| 221 | |
| 222 | return ret; |
| 223 | } |
| 224 | |
| 225 | /* |
Ben Lindstrom | f0c5029 | 2001-06-25 05:17:53 +0000 | [diff] [blame] | 226 | * Returns first item from client-list that is also supported by server-list, |
| 227 | * caller must xfree() returned string. |
| 228 | */ |
Damien Miller | afc7a5d | 2002-02-13 13:55:30 +1100 | [diff] [blame] | 229 | #define MAX_PROP 40 |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 230 | #define SEP "," |
| 231 | char * |
| 232 | match_list(const char *client, const char *server, u_int *next) |
| 233 | { |
| 234 | char *sproposals[MAX_PROP]; |
| 235 | char *c, *s, *p, *ret, *cp, *sp; |
| 236 | int i, j, nproposals; |
| 237 | |
| 238 | c = cp = xstrdup(client); |
| 239 | s = sp = xstrdup(server); |
| 240 | |
| 241 | for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0'; |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 242 | (p = strsep(&sp, SEP)), i++) { |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 243 | if (i < MAX_PROP) |
| 244 | sproposals[i] = p; |
| 245 | else |
| 246 | break; |
| 247 | } |
| 248 | nproposals = i; |
| 249 | |
| 250 | for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0'; |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 251 | (p = strsep(&cp, SEP)), i++) { |
Ben Lindstrom | b9be60a | 2001-03-11 01:49:19 +0000 | [diff] [blame] | 252 | for (j = 0; j < nproposals; j++) { |
| 253 | if (strcmp(p, sproposals[j]) == 0) { |
| 254 | ret = xstrdup(p); |
| 255 | if (next != NULL) |
| 256 | *next = (cp == NULL) ? |
| 257 | strlen(c) : cp - c; |
| 258 | xfree(c); |
| 259 | xfree(s); |
| 260 | return ret; |
| 261 | } |
| 262 | } |
| 263 | } |
| 264 | if (next != NULL) |
| 265 | *next = strlen(c); |
| 266 | xfree(c); |
| 267 | xfree(s); |
| 268 | return NULL; |
| 269 | } |