1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/*
* ProFTPD - mod_sftp keystores
* Copyright (c) 2008-2010 TJ Saunders
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*
* As a special exemption, TJ Saunders and other respective copyright holders
* give permission to link this program with OpenSSL, and distribute the
* resulting executable, without including the source code for OpenSSL in the
* source distribution.
*
* $Id: keystore.c,v 1.6 2011/05/23 21:03:12 castaglia Exp $
*/
#include "mod_sftp.h"
#include "keystore.h"
#include "rfc4716.h"
extern int ServerUseReverseDNS;
struct sftp_keystore_store {
struct sftp_keystore_store *prev, *next;
const char *store_type;
sftp_keystore_t *(*store_open)(pool *, int, const char *, const char *);
unsigned int store_ktypes;
};
static pool *keystore_pool = NULL;
static struct sftp_keystore_store *keystore_stores = NULL;
static unsigned int keystore_nstores = 0;
static const char *trace_channel = "ssh2";
/* Keystore API internals */
static struct sftp_keystore_store *keystore_get_store(const char *store_type,
unsigned int ktypes) {
struct sftp_keystore_store *store;
for (store = keystore_stores; store; store = store->next) {
pr_signals_handle();
if ((store->store_ktypes & ktypes) &&
strcmp(store->store_type, store_type) == 0) {
return store;
}
}
errno = ENOENT;
return NULL;
}
/* Main keystore API */
int sftp_keystore_register_store(const char *store_type,
sftp_keystore_t *(*store_open)(pool *, int, const char *, const char *),
unsigned int store_ktypes) {
struct sftp_keystore_store *store;
if (store_type == NULL ||
store_open == NULL) {
errno = EINVAL;
return -1;
}
if (keystore_pool == NULL) {
keystore_pool = make_sub_pool(permanent_pool);
pr_pool_tag(keystore_pool, "SFTP Keystore Pool");
}
store = keystore_get_store(store_type, store_ktypes);
if (store) {
errno = EEXIST;
return -1;
}
store = pcalloc(keystore_pool, sizeof(struct sftp_keystore_store));
store->store_type = pstrdup(keystore_pool, store_type);
store->store_open = store_open;
store->store_ktypes = store_ktypes;
store->next = keystore_stores;
keystore_stores = store;
keystore_nstores++;
return 0;
}
int sftp_keystore_unregister_store(const char *store_type,
unsigned int store_ktypes) {
struct sftp_keystore_store *store;
if (store_type == NULL) {
errno = EINVAL;
return -1;
}
store = keystore_get_store(store_type, store_ktypes);
if (store == NULL) {
errno = ENOENT;
return -1;
}
if (store->prev) {
store->prev->next = store->next;
} else {
keystore_stores = store->next;
}
if (store->next)
store->next->prev = store->prev;
store->prev = store->next = NULL;
keystore_nstores--;
return 0;
}
int sftp_keystore_init(void) {
/* Always support RFC4716 keys, via files, by default. */
sftp_rfc4716_init();
return 0;
}
int sftp_keystore_free(void) {
sftp_rfc4716_free();
return 0;
}
int sftp_keystore_supports_store(const char *store_type,
unsigned int store_ktype) {
struct sftp_keystore_store *store;
store = keystore_get_store(store_type, store_ktype);
if (store) {
return 0;
}
errno = ENOENT;
return -1;
}
int sftp_keystore_verify_host_key(pool *p, const char *user,
const char *host_fqdn, const char *host_user, char *key_data,
uint32_t key_len) {
register unsigned int i;
int res = -1;
config_rec *c;
c = find_config(main_server->conf, CONF_PARAM, "SFTPAuthorizedHostKeys",
FALSE);
if (c == NULL) {
(void) pr_log_writefile(sftp_logfd, MOD_SFTP_VERSION,
"no SFTPAuthorizedHostKeys configured");
errno = EPERM;
return -1;
}
if (ServerUseReverseDNS) {
if (strcasecmp(host_fqdn, pr_netaddr_get_dnsstr(session.c->remote_addr)) != 0) {
(void) pr_log_writefile(sftp_logfd, MOD_SFTP_VERSION,
"client-sent FQDN '%s' DOES NOT match client DNS name '%s'", host_fqdn,
pr_netaddr_get_dnsstr(session.c->remote_addr));
errno = EACCES;
return -1;
} else {
pr_trace_msg(trace_channel, 9, "client-sent FQDN '%s' matches client "
"DNS name '%s'", host_fqdn,
pr_netaddr_get_dnsstr(session.c->remote_addr));
}
} else {
pr_trace_msg(trace_channel, 1, "unable to double-check client-sent "
"FQDN '%s' against DNS: UseReverseDNS is off", host_fqdn);
}
for (i = 0; i < c->argc; i++) {
struct sftp_keystore_store *sks;
char *store_type, *ptr;
res = -1;
pr_signals_handle();
store_type = c->argv[i];
pr_trace_msg(trace_channel, 2,
"using SFTPAuthorizedHostKeys '%s' for public key authentication for "
"user '%s', host %s", store_type, user, host_fqdn);
ptr = strchr(store_type, ':');
*ptr = '\0';
sks = keystore_get_store(store_type, SFTP_SSH2_HOST_KEY_STORE);
if (sks) {
sftp_keystore_t *store;
store = (sks->store_open)(p, SFTP_SSH2_HOST_KEY_STORE, ptr + 1, user);
if (store) {
if (store->verify_host_key != NULL) {
res = (store->verify_host_key)(store, p, user, host_fqdn, host_user,
key_data, key_len);
(store->store_close)(store);
*ptr = ':';
if (res == 0) {
break;
} else {
pr_trace_msg(trace_channel, 3,
"error verifying host key for host '%s', user '%s' ('%s'): %s",
host_fqdn, user, host_user, strerror(errno));
continue;
}
} else {
*ptr = ':';
pr_trace_msg(trace_channel, 7,
"error using SFTPAuthorizedHostKeys '%s': %s", store_type,
strerror(ENOSYS));
continue;
}
} else {
*ptr = ':';
pr_trace_msg(trace_channel, 7,
"error opening SFTPAuthorizedHostKeys '%s': %s", store_type,
strerror(errno));
}
}
*ptr = ':';
}
if (res == 0) {
pr_trace_msg(trace_channel, 8,
"verified host public key for user '%s', host '%s'", user, host_fqdn);
return res;
}
errno = EACCES;
return -1;
}
int sftp_keystore_verify_user_key(pool *p, const char *user, char *key_data,
uint32_t key_len) {
register unsigned int i;
int res = -1;
config_rec *c;
c = find_config(main_server->conf, CONF_PARAM, "SFTPAuthorizedUserKeys",
FALSE);
if (c == NULL) {
(void) pr_log_writefile(sftp_logfd, MOD_SFTP_VERSION,
"no SFTPAuthorizedUserKeys configured");
errno = EPERM;
return -1;
}
for (i = 0; i < c->argc; i++) {
struct sftp_keystore_store *sks;
char *store_type, *path, *ptr, *session_user;
pr_signals_handle();
res = -1;
store_type = c->argv[i];
ptr = strchr(store_type, ':');
*ptr = '\0';
path = ptr + 1;
/* Check for any variables in the configured path.
*
* Note that path_subst_uservar() relies on the session.user variable
* being set, hence why we cache/restore its value.
*/
session_user = session.user;
session.user = (char *) user;
path = path_subst_uservar(p, &path);
session.user = session_user;
pr_trace_msg(trace_channel, 2,
"using SFTPAuthorizedUserKeys '%s' for public key authentication for "
"user '%s'", path, user);
sks = keystore_get_store(store_type, SFTP_SSH2_USER_KEY_STORE);
if (sks) {
sftp_keystore_t *store;
store = (sks->store_open)(p, SFTP_SSH2_USER_KEY_STORE, path, user);
if (store) {
if (store->verify_user_key != NULL) {
res = (store->verify_user_key)(store, p, user, key_data, key_len);
(store->store_close)(store);
*ptr = ':';
if (res == 0) {
break;
} else {
pr_trace_msg(trace_channel, 3,
"error verifying user key for user '%s': %s", user,
strerror(errno));
continue;
}
} else {
*ptr = ':';
pr_trace_msg(trace_channel, 7,
"error using SFTPAuthorizedUserKeys '%s': %s", store_type,
strerror(ENOSYS));
continue;
}
} else {
*ptr = ':';
pr_trace_msg(trace_channel, 7,
"error opening SFTPAuthorizedUserKeys '%s': %s", store_type,
strerror(errno));
}
}
*ptr = ':';
}
if (res == 0) {
pr_trace_msg(trace_channel, 8,
"verified public key for user '%s'", user);
return res;
}
errno = EACCES;
return -1;
}
|