| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 1 | /* |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 2 | * Routines to authenticate access to a daemon (hosts allow/deny). |
| 3 | * |
| 4 | * Copyright (C) 1998 Andrew Tridgell |
| Wayne Davison | c3b553a | 2022-01-15 17:21:01 -0800 | [diff] [blame] | 5 | * Copyright (C) 2004-2022 Wayne Davison |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| Wayne Davison | 8e41b68 | 2007-07-10 13:55:49 +0000 | [diff] [blame] | 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 3 of the License, or |
| 10 | * (at your option) any later version. |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| Wayne Davison | e7c6706 | 2006-04-25 23:51:12 +0000 | [diff] [blame] | 17 | * You should have received a copy of the GNU General Public License along |
| Wayne Davison | 4fd842f | 2007-07-07 05:33:14 +0000 | [diff] [blame] | 18 | * with this program; if not, visit the http://fsf.org website. |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 19 | */ |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 20 | |
| 21 | #include "rsync.h" |
| Wayne Davison | 11eb67e | 2020-06-25 19:59:19 -0700 | [diff] [blame] | 22 | #include "ifuncs.h" |
| Wayne Davison | ec3833c | 2021-02-01 16:31:28 -0800 | [diff] [blame] | 23 | #ifdef HAVE_NETGROUP_H |
| 24 | #include <netgroup.h> |
| 25 | #endif |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 26 | |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 27 | static int allow_forward_dns; |
| 28 | |
| 29 | extern const char undetermined_hostname[]; |
| 30 | |
| 31 | static int match_hostname(const char **host_ptr, const char *addr, const char *tok) |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 32 | { |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 33 | struct hostent *hp; |
| 34 | unsigned int i; |
| 35 | const char *host = *host_ptr; |
| 36 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 37 | if (!host || !*host) |
| 38 | return 0; |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 39 | |
| Wayne Davison | 2f13049 | 2020-07-12 19:15:50 -0700 | [diff] [blame] | 40 | #ifdef HAVE_INNETGR |
| 41 | if (*tok == '@' && tok[1]) |
| 42 | return innetgr(tok + 1, host, NULL, NULL); |
| 43 | #endif |
| 44 | |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 45 | /* First check if the reverse-DNS-determined hostname matches. */ |
| 46 | if (iwildmatch(tok, host)) |
| 47 | return 1; |
| 48 | |
| 49 | if (!allow_forward_dns) |
| 50 | return 0; |
| 51 | |
| 52 | /* Fail quietly if tok is an address or wildcarded entry, not a simple hostname. */ |
| 53 | if (!tok[strspn(tok, ".0123456789")] || tok[strcspn(tok, ":/*?[")]) |
| 54 | return 0; |
| 55 | |
| 56 | /* Now try forward-DNS on the token (config-specified hostname) and see if the IP matches. */ |
| 57 | if (!(hp = gethostbyname(tok))) |
| 58 | return 0; |
| 59 | |
| 60 | for (i = 0; hp->h_addr_list[i] != NULL; i++) { |
| 61 | if (strcmp(addr, inet_ntoa(*(struct in_addr*)(hp->h_addr_list[i]))) == 0) { |
| 62 | /* If reverse lookups are off, we'll use the conf-specified |
| 63 | * hostname in preference to UNDETERMINED. */ |
| Wayne Davison | 11eb67e | 2020-06-25 19:59:19 -0700 | [diff] [blame] | 64 | if (host == undetermined_hostname) |
| 65 | *host_ptr = strdup(tok); |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 66 | return 1; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | return 0; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| Wayne Davison | df694f7 | 2009-01-15 00:14:51 -0800 | [diff] [blame] | 73 | static int match_binary(const char *b1, const char *b2, const char *mask, int addrlen) |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 74 | { |
| 75 | int i; |
| 76 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 77 | for (i = 0; i < addrlen; i++) { |
| 78 | if ((b1[i] ^ b2[i]) & mask[i]) |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 79 | return 0; |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | return 1; |
| 83 | } |
| 84 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 85 | static void make_mask(char *mask, int plen, int addrlen) |
| 86 | { |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 87 | int w, b; |
| 88 | |
| 89 | w = plen >> 3; |
| 90 | b = plen & 0x7; |
| 91 | |
| 92 | if (w) |
| 93 | memset(mask, 0xff, w); |
| David Dykstra | 7bc8218 | 2003-01-20 13:46:28 +0000 | [diff] [blame] | 94 | if (w < addrlen) |
| 95 | mask[w] = 0xff & (0xff<<(8-b)); |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 96 | if (w+1 < addrlen) |
| 97 | memset(mask+w+1, 0, addrlen-w-1); |
| 98 | |
| 99 | return; |
| 100 | } |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 101 | |
| Wayne Davison | df694f7 | 2009-01-15 00:14:51 -0800 | [diff] [blame] | 102 | static int match_address(const char *addr, const char *tok) |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 103 | { |
| 104 | char *p; |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 105 | struct addrinfo hints, *resa, *rest; |
| 106 | int gai; |
| 107 | int ret = 0; |
| 108 | int addrlen = 0; |
| Wayne Davison | 4f5b075 | 2005-02-14 00:53:43 +0000 | [diff] [blame] | 109 | #ifdef HAVE_STRTOL |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 110 | long int bits; |
| 111 | #else |
| 112 | int bits; |
| 113 | #endif |
| 114 | char mask[16]; |
| 115 | char *a = NULL, *t = NULL; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 116 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 117 | if (!addr || !*addr) |
| 118 | return 0; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 119 | |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 120 | p = strchr(tok,'/'); |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 121 | if (p) |
| Wayne Davison | 32f60a6 | 2003-07-07 18:25:01 +0000 | [diff] [blame] | 122 | *p = '\0'; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 123 | |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 124 | /* Fail quietly if tok is a hostname, not an address. */ |
| 125 | if (tok[strspn(tok, ".0123456789")] && strchr(tok, ':') == NULL) { |
| Wayne Davison | be7cf82 | 2004-09-24 16:50:07 +0000 | [diff] [blame] | 126 | if (p) |
| 127 | *p = '/'; |
| 128 | return 0; |
| 129 | } |
| Wayne Davison | 70a6051 | 2003-07-05 07:39:57 +0000 | [diff] [blame] | 130 | |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 131 | memset(&hints, 0, sizeof(hints)); |
| 132 | hints.ai_family = PF_UNSPEC; |
| 133 | hints.ai_socktype = SOCK_STREAM; |
| David Dykstra | 8d2aad4 | 2003-01-09 21:30:24 +0000 | [diff] [blame] | 134 | #ifdef AI_NUMERICHOST |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 135 | hints.ai_flags = AI_NUMERICHOST; |
| David Dykstra | 8d2aad4 | 2003-01-09 21:30:24 +0000 | [diff] [blame] | 136 | #endif |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 137 | |
| Wayne Davison | be7cf82 | 2004-09-24 16:50:07 +0000 | [diff] [blame] | 138 | if (getaddrinfo(addr, NULL, &hints, &resa) != 0) { |
| 139 | if (p) |
| 140 | *p = '/'; |
| 141 | return 0; |
| 142 | } |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 143 | |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 144 | gai = getaddrinfo(tok, NULL, &hints, &rest); |
| 145 | if (p) |
| 146 | *p++ = '/'; |
| Wayne Davison | be7cf82 | 2004-09-24 16:50:07 +0000 | [diff] [blame] | 147 | if (gai != 0) { |
| 148 | rprintf(FLOG, "error matching address %s: %s\n", |
| 149 | tok, gai_strerror(gai)); |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 150 | freeaddrinfo(resa); |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 151 | return 0; |
| 152 | } |
| 153 | |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 154 | if (rest->ai_family != resa->ai_family) { |
| 155 | ret = 0; |
| 156 | goto out; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 159 | switch(resa->ai_family) { |
| 160 | case PF_INET: |
| 161 | a = (char *)&((struct sockaddr_in *)resa->ai_addr)->sin_addr; |
| 162 | t = (char *)&((struct sockaddr_in *)rest->ai_addr)->sin_addr; |
| 163 | addrlen = 4; |
| 164 | |
| 165 | break; |
| 166 | |
| Wayne Davison | 4f5b075 | 2005-02-14 00:53:43 +0000 | [diff] [blame] | 167 | #ifdef INET6 |
| Wayne Davison | e63ff70 | 2020-06-13 18:19:12 -0700 | [diff] [blame] | 168 | case PF_INET6: { |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 169 | struct sockaddr_in6 *sin6a, *sin6t; |
| 170 | |
| 171 | sin6a = (struct sockaddr_in6 *)resa->ai_addr; |
| 172 | sin6t = (struct sockaddr_in6 *)rest->ai_addr; |
| 173 | |
| 174 | a = (char *)&sin6a->sin6_addr; |
| 175 | t = (char *)&sin6t->sin6_addr; |
| 176 | |
| David Dykstra | 7bc8218 | 2003-01-20 13:46:28 +0000 | [diff] [blame] | 177 | addrlen = 16; |
| 178 | |
| Wayne Davison | 4f5b075 | 2005-02-14 00:53:43 +0000 | [diff] [blame] | 179 | #ifdef HAVE_SOCKADDR_IN6_SCOPE_ID |
| Wayne Davison | e63ff70 | 2020-06-13 18:19:12 -0700 | [diff] [blame] | 180 | if (sin6t->sin6_scope_id && sin6a->sin6_scope_id != sin6t->sin6_scope_id) { |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 181 | ret = 0; |
| 182 | goto out; |
| 183 | } |
| 184 | #endif |
| 185 | |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 186 | break; |
| Wayne Davison | e63ff70 | 2020-06-13 18:19:12 -0700 | [diff] [blame] | 187 | } |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 188 | #endif |
| 189 | default: |
| Wayne Davison | e63ff70 | 2020-06-13 18:19:12 -0700 | [diff] [blame] | 190 | rprintf(FLOG, "unknown family %u\n", rest->ai_family); |
| 191 | ret = 0; |
| 192 | goto out; |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | bits = -1; |
| 196 | if (p) { |
| 197 | if (inet_pton(resa->ai_addr->sa_family, p, mask) <= 0) { |
| Wayne Davison | 4f5b075 | 2005-02-14 00:53:43 +0000 | [diff] [blame] | 198 | #ifdef HAVE_STRTOL |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 199 | char *ep = NULL; |
| 200 | #else |
| 201 | unsigned char *pp; |
| 202 | #endif |
| 203 | |
| Wayne Davison | 4f5b075 | 2005-02-14 00:53:43 +0000 | [diff] [blame] | 204 | #ifdef HAVE_STRTOL |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 205 | bits = strtol(p, &ep, 10); |
| 206 | if (!*p || *ep) { |
| Wayne Davison | be7cf82 | 2004-09-24 16:50:07 +0000 | [diff] [blame] | 207 | rprintf(FLOG, "malformed mask in %s\n", tok); |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 208 | ret = 0; |
| 209 | goto out; |
| 210 | } |
| 211 | #else |
| 212 | for (pp = (unsigned char *)p; *pp; pp++) { |
| 213 | if (!isascii(*pp) || !isdigit(*pp)) { |
| Wayne Davison | be7cf82 | 2004-09-24 16:50:07 +0000 | [diff] [blame] | 214 | rprintf(FLOG, "malformed mask in %s\n", tok); |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 215 | ret = 0; |
| 216 | goto out; |
| 217 | } |
| 218 | } |
| 219 | bits = atoi(p); |
| 220 | #endif |
| 221 | if (bits == 0) { |
| 222 | ret = 1; |
| 223 | goto out; |
| 224 | } |
| 225 | if (bits < 0 || bits > (addrlen << 3)) { |
| Wayne Davison | be7cf82 | 2004-09-24 16:50:07 +0000 | [diff] [blame] | 226 | rprintf(FLOG, "malformed mask in %s\n", tok); |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 227 | ret = 0; |
| 228 | goto out; |
| 229 | } |
| 230 | } |
| 231 | } else { |
| 232 | bits = 128; |
| 233 | } |
| 234 | |
| 235 | if (bits >= 0) |
| 236 | make_mask(mask, bits, addrlen); |
| 237 | |
| 238 | ret = match_binary(a, t, mask, addrlen); |
| 239 | |
| Wayne Davison | 2997e9f | 2005-11-10 16:42:46 +0000 | [diff] [blame] | 240 | out: |
| David Dykstra | bc2b496 | 2003-01-09 21:14:10 +0000 | [diff] [blame] | 241 | freeaddrinfo(resa); |
| 242 | freeaddrinfo(rest); |
| 243 | return ret; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 246 | static int access_match(const char *list, const char *addr, const char **host_ptr) |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 247 | { |
| 248 | char *tok; |
| 249 | char *list2 = strdup(list); |
| 250 | |
| Andrew Tridgell | 5a96ee0 | 1998-05-14 04:31:03 +0000 | [diff] [blame] | 251 | strlower(list2); |
| Andrew Tridgell | 5a96ee0 | 1998-05-14 04:31:03 +0000 | [diff] [blame] | 252 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 253 | for (tok = strtok(list2, " ,\t"); tok; tok = strtok(NULL, " ,\t")) { |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 254 | if (match_hostname(host_ptr, addr, tok) || match_address(addr, tok)) { |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 255 | free(list2); |
| 256 | return 1; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | free(list2); |
| 261 | return 0; |
| 262 | } |
| 263 | |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 264 | int allow_access(const char *addr, const char **host_ptr, int i) |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 265 | { |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 266 | const char *allow_list = lp_hosts_allow(i); |
| 267 | const char *deny_list = lp_hosts_deny(i); |
| 268 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 269 | if (allow_list && !*allow_list) |
| 270 | allow_list = NULL; |
| 271 | if (deny_list && !*deny_list) |
| 272 | deny_list = NULL; |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 273 | |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 274 | allow_forward_dns = lp_forward_lookup(i); |
| 275 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 276 | /* If we match an allow-list item, we always allow access. */ |
| 277 | if (allow_list) { |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 278 | if (access_match(allow_list, addr, host_ptr)) |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 279 | return 1; |
| 280 | /* For an allow-list w/o a deny-list, disallow non-matches. */ |
| 281 | if (!deny_list) |
| 282 | return 0; |
| 283 | } |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 284 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 285 | /* If we match a deny-list item (and got past any allow-list |
| 286 | * items), we always disallow access. */ |
| Wayne Davison | bf4170a | 2011-01-03 18:59:08 -0800 | [diff] [blame] | 287 | if (deny_list && access_match(deny_list, addr, host_ptr)) |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 288 | return 0; |
| 289 | |
| Wayne Davison | 3614282 | 2005-01-15 20:06:48 +0000 | [diff] [blame] | 290 | /* Allow all other access. */ |
| Andrew Tridgell | 56c473b | 1998-05-13 08:03:47 +0000 | [diff] [blame] | 291 | return 1; |
| 292 | } |