[BACK]Return to auth.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/auth.c, Revision 1.148

1.148   ! djm         1: /* $OpenBSD: auth.c,v 1.147 2020/08/27 01:07:09 djm Exp $ */
1.1       markus      2: /*
1.19      deraadt     3:  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
1.9       deraadt     4:  *
                      5:  * Redistribution and use in source and binary forms, with or without
                      6:  * modification, are permitted provided that the following conditions
                      7:  * are met:
                      8:  * 1. Redistributions of source code must retain the above copyright
                      9:  *    notice, this list of conditions and the following disclaimer.
                     10:  * 2. Redistributions in binary form must reproduce the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer in the
                     12:  *    documentation and/or other materials provided with the distribution.
                     13:  *
                     14:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     15:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     16:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     17:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     18:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     19:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     20:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     21:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     22:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     23:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1.1       markus     24:  */
                     25:
1.62      stevesk    26: #include <sys/types.h>
                     27: #include <sys/stat.h>
1.114     djm        28: #include <sys/socket.h>
1.125     markus     29: #include <sys/wait.h>
1.22      markus     30:
1.140     djm        31: #include <stdlib.h>
1.70      stevesk    32: #include <errno.h>
1.79      dtucker    33: #include <fcntl.h>
1.77      djm        34: #include <login_cap.h>
1.61      stevesk    35: #include <paths.h>
1.68      stevesk    36: #include <pwd.h>
1.69      stevesk    37: #include <stdarg.h>
1.74      stevesk    38: #include <stdio.h>
1.72      stevesk    39: #include <string.h>
1.80      djm        40: #include <unistd.h>
1.109     deraadt    41: #include <limits.h>
1.114     djm        42: #include <netdb.h>
1.135     djm        43: #include <time.h>
1.1       markus     44:
                     45: #include "xmalloc.h"
1.13      markus     46: #include "match.h"
1.14      markus     47: #include "groupaccess.h"
                     48: #include "log.h"
1.131     markus     49: #include "sshbuf.h"
1.106     millert    50: #include "misc.h"
1.1       markus     51: #include "servconf.h"
1.131     markus     52: #include "sshkey.h"
1.75      deraadt    53: #include "hostfile.h"
1.2       markus     54: #include "auth.h"
1.13      markus     55: #include "auth-options.h"
1.14      markus     56: #include "canohost.h"
1.24      markus     57: #include "uidswap.h"
1.42      markus     58: #include "packet.h"
1.75      deraadt    59: #ifdef GSSAPI
                     60: #include "ssh-gss.h"
                     61: #endif
1.85      djm        62: #include "authfile.h"
1.67      dtucker    63: #include "monitor_wrap.h"
1.107     djm        64: #include "ssherr.h"
1.103     djm        65: #include "compat.h"
1.126     djm        66: #include "channels.h"
1.136     djm        67:
1.1       markus     68: /* import */
                     69: extern ServerOptions options;
1.146     djm        70: extern struct include_list includes;
1.67      dtucker    71: extern int use_privsep;
1.126     djm        72: extern struct sshauthopt *auth_opts;
1.1       markus     73:
1.42      markus     74: /* Debugging messages */
1.131     markus     75: static struct sshbuf *auth_debug;
1.42      markus     76:
1.1       markus     77: /*
1.12      markus     78:  * Check if the user is allowed to log in via ssh. If user is listed
                     79:  * in DenyUsers or one of user's groups is listed in DenyGroups, false
                     80:  * will be returned. If AllowUsers isn't empty and user isn't listed
                     81:  * there, or if AllowGroups isn't empty and one of user's groups isn't
                     82:  * listed there, false will be returned.
1.1       markus     83:  * If the user's shell is not executable, false will be returned.
1.4       markus     84:  * Otherwise true is returned.
1.1       markus     85:  */
1.5       markus     86: int
1.138     djm        87: allowed_user(struct ssh *ssh, struct passwd * pw)
1.1       markus     88: {
                     89:        struct stat st;
1.35      markus     90:        const char *hostname = NULL, *ipaddr = NULL;
1.117     djm        91:        int r;
1.60      djm        92:        u_int i;
1.1       markus     93:
                     94:        /* Shouldn't be called if pw is NULL, but better safe than sorry... */
1.12      markus     95:        if (!pw || !pw->pw_name)
1.1       markus     96:                return 0;
                     97:
1.7       deraadt    98:        /*
1.84      djm        99:         * Deny if shell does not exist or is not executable unless we
                    100:         * are chrooting.
1.7       deraadt   101:         */
1.84      djm       102:        if (options.chroot_directory == NULL ||
                    103:            strcasecmp(options.chroot_directory, "none") == 0) {
                    104:                char *shell = xstrdup((pw->pw_shell[0] == '\0') ?
                    105:                    _PATH_BSHELL : pw->pw_shell); /* empty = /bin/sh */
                    106:
1.139     deraadt   107:                if (stat(shell, &st) == -1) {
1.84      djm       108:                        logit("User %.100s not allowed because shell %.100s "
                    109:                            "does not exist", pw->pw_name, shell);
1.102     djm       110:                        free(shell);
1.84      djm       111:                        return 0;
                    112:                }
                    113:                if (S_ISREG(st.st_mode) == 0 ||
                    114:                    (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
                    115:                        logit("User %.100s not allowed because shell %.100s "
                    116:                            "is not executable", pw->pw_name, shell);
1.102     djm       117:                        free(shell);
1.84      djm       118:                        return 0;
                    119:                }
1.102     djm       120:                free(shell);
1.34      stevesk   121:        }
1.1       markus    122:
1.58      dtucker   123:        if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
                    124:            options.num_deny_groups > 0 || options.num_allow_groups > 0) {
1.114     djm       125:                hostname = auth_get_canonical_hostname(ssh, options.use_dns);
                    126:                ipaddr = ssh_remote_ipaddr(ssh);
1.35      markus    127:        }
                    128:
1.1       markus    129:        /* Return false if user is listed in DenyUsers */
                    130:        if (options.num_deny_users > 0) {
1.119     dtucker   131:                for (i = 0; i < options.num_deny_users; i++) {
1.117     djm       132:                        r = match_user(pw->pw_name, hostname, ipaddr,
                    133:                            options.deny_users[i]);
                    134:                        if (r < 0) {
                    135:                                fatal("Invalid DenyUsers pattern \"%.100s\"",
                    136:                                    options.deny_users[i]);
1.118     djm       137:                        } else if (r != 0) {
1.57      dtucker   138:                                logit("User %.100s from %.100s not allowed "
                    139:                                    "because listed in DenyUsers",
                    140:                                    pw->pw_name, hostname);
1.1       markus    141:                                return 0;
1.34      stevesk   142:                        }
1.119     dtucker   143:                }
1.1       markus    144:        }
                    145:        /* Return false if AllowUsers isn't empty and user isn't listed there */
                    146:        if (options.num_allow_users > 0) {
1.117     djm       147:                for (i = 0; i < options.num_allow_users; i++) {
                    148:                        r = match_user(pw->pw_name, hostname, ipaddr,
                    149:                            options.allow_users[i]);
                    150:                        if (r < 0) {
                    151:                                fatal("Invalid AllowUsers pattern \"%.100s\"",
                    152:                                    options.allow_users[i]);
                    153:                        } else if (r == 1)
1.1       markus    154:                                break;
1.117     djm       155:                }
1.1       markus    156:                /* i < options.num_allow_users iff we break for loop */
1.34      stevesk   157:                if (i >= options.num_allow_users) {
1.57      dtucker   158:                        logit("User %.100s from %.100s not allowed because "
                    159:                            "not listed in AllowUsers", pw->pw_name, hostname);
1.1       markus    160:                        return 0;
1.34      stevesk   161:                }
1.1       markus    162:        }
                    163:        if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
1.12      markus    164:                /* Get the user's group access list (primary and supplementary) */
1.34      stevesk   165:                if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
1.57      dtucker   166:                        logit("User %.100s from %.100s not allowed because "
                    167:                            "not in any group", pw->pw_name, hostname);
1.1       markus    168:                        return 0;
1.34      stevesk   169:                }
1.1       markus    170:
1.12      markus    171:                /* Return false if one of user's groups is listed in DenyGroups */
                    172:                if (options.num_deny_groups > 0)
                    173:                        if (ga_match(options.deny_groups,
                    174:                            options.num_deny_groups)) {
                    175:                                ga_free();
1.57      dtucker   176:                                logit("User %.100s from %.100s not allowed "
                    177:                                    "because a group is listed in DenyGroups",
                    178:                                    pw->pw_name, hostname);
1.1       markus    179:                                return 0;
1.12      markus    180:                        }
1.1       markus    181:                /*
1.12      markus    182:                 * Return false if AllowGroups isn't empty and one of user's groups
1.1       markus    183:                 * isn't listed there
                    184:                 */
1.12      markus    185:                if (options.num_allow_groups > 0)
                    186:                        if (!ga_match(options.allow_groups,
                    187:                            options.num_allow_groups)) {
                    188:                                ga_free();
1.57      dtucker   189:                                logit("User %.100s from %.100s not allowed "
                    190:                                    "because none of user's groups are listed "
                    191:                                    "in AllowGroups", pw->pw_name, hostname);
1.1       markus    192:                                return 0;
1.12      markus    193:                        }
                    194:                ga_free();
1.1       markus    195:        }
                    196:        /* We found no reason not to let this user try to log on... */
                    197:        return 1;
1.13      markus    198: }
                    199:
1.122     djm       200: /*
                    201:  * Formats any key left in authctxt->auth_method_key for inclusion in
                    202:  * auth_log()'s message. Also includes authxtct->auth_method_info if present.
                    203:  */
                    204: static char *
                    205: format_method_key(Authctxt *authctxt)
1.103     djm       206: {
1.122     djm       207:        const struct sshkey *key = authctxt->auth_method_key;
                    208:        const char *methinfo = authctxt->auth_method_info;
1.133     djm       209:        char *fp, *cafp, *ret = NULL;
1.122     djm       210:
                    211:        if (key == NULL)
                    212:                return NULL;
                    213:
1.131     markus    214:        if (sshkey_is_cert(key)) {
1.133     djm       215:                fp = sshkey_fingerprint(key,
1.122     djm       216:                    options.fingerprint_hash, SSH_FP_DEFAULT);
1.133     djm       217:                cafp = sshkey_fingerprint(key->cert->signature_key,
                    218:                    options.fingerprint_hash, SSH_FP_DEFAULT);
                    219:                xasprintf(&ret, "%s %s ID %s (serial %llu) CA %s %s%s%s",
                    220:                    sshkey_type(key), fp == NULL ? "(null)" : fp,
                    221:                    key->cert->key_id,
1.122     djm       222:                    (unsigned long long)key->cert->serial,
                    223:                    sshkey_type(key->cert->signature_key),
1.133     djm       224:                    cafp == NULL ? "(null)" : cafp,
1.122     djm       225:                    methinfo == NULL ? "" : ", ",
                    226:                    methinfo == NULL ? "" : methinfo);
                    227:                free(fp);
1.133     djm       228:                free(cafp);
1.122     djm       229:        } else {
                    230:                fp = sshkey_fingerprint(key, options.fingerprint_hash,
                    231:                    SSH_FP_DEFAULT);
                    232:                xasprintf(&ret, "%s %s%s%s", sshkey_type(key),
                    233:                    fp == NULL ? "(null)" : fp,
                    234:                    methinfo == NULL ? "" : ", ",
                    235:                    methinfo == NULL ? "" : methinfo);
                    236:                free(fp);
                    237:        }
                    238:        return ret;
1.103     djm       239: }
                    240:
                    241: void
1.138     djm       242: auth_log(struct ssh *ssh, int authenticated, int partial,
1.103     djm       243:     const char *method, const char *submethod)
1.13      markus    244: {
1.138     djm       245:        Authctxt *authctxt = (Authctxt *)ssh->authctxt;
1.133     djm       246:        int level = SYSLOG_LEVEL_VERBOSE;
1.122     djm       247:        const char *authmsg;
                    248:        char *extra = NULL;
1.67      dtucker   249:
                    250:        if (use_privsep && !mm_is_monitor() && !authctxt->postponed)
                    251:                return;
1.13      markus    252:
                    253:        /* Raise logging level */
                    254:        if (authenticated == 1 ||
                    255:            !authctxt->valid ||
1.54      dtucker   256:            authctxt->failures >= options.max_authtries / 2 ||
1.13      markus    257:            strcmp(method, "password") == 0)
1.133     djm       258:                level = SYSLOG_LEVEL_INFO;
1.13      markus    259:
                    260:        if (authctxt->postponed)
                    261:                authmsg = "Postponed";
1.98      djm       262:        else if (partial)
                    263:                authmsg = "Partial";
1.13      markus    264:        else
                    265:                authmsg = authenticated ? "Accepted" : "Failed";
                    266:
1.122     djm       267:        if ((extra = format_method_key(authctxt)) == NULL) {
                    268:                if (authctxt->auth_method_info != NULL)
                    269:                        extra = xstrdup(authctxt->auth_method_info);
                    270:        }
                    271:
1.133     djm       272:        do_log2(level, "%s %s%s%s for %s%.100s from %.200s port %d ssh2%s%s",
1.13      markus    273:            authmsg,
                    274:            method,
1.98      djm       275:            submethod != NULL ? "/" : "", submethod == NULL ? "" : submethod,
1.56      markus    276:            authctxt->valid ? "" : "invalid user ",
1.29      markus    277:            authctxt->user,
1.114     djm       278:            ssh_remote_ipaddr(ssh),
                    279:            ssh_remote_port(ssh),
1.122     djm       280:            extra != NULL ? ": " : "",
                    281:            extra != NULL ? extra : "");
                    282:
                    283:        free(extra);
1.105     djm       284: }
                    285:
                    286: void
1.138     djm       287: auth_maxtries_exceeded(struct ssh *ssh)
1.105     djm       288: {
1.138     djm       289:        Authctxt *authctxt = (Authctxt *)ssh->authctxt;
1.114     djm       290:
1.110     djm       291:        error("maximum authentication attempts exceeded for "
1.116     markus    292:            "%s%.100s from %.200s port %d ssh2",
1.105     djm       293:            authctxt->valid ? "" : "invalid user ",
                    294:            authctxt->user,
1.114     djm       295:            ssh_remote_ipaddr(ssh),
1.116     markus    296:            ssh_remote_port(ssh));
1.138     djm       297:        ssh_packet_disconnect(ssh, "Too many authentication failures");
1.105     djm       298:        /* NOTREACHED */
1.13      markus    299: }
                    300:
                    301: /*
1.17      markus    302:  * Check whether root logins are disallowed.
1.13      markus    303:  */
                    304: int
1.126     djm       305: auth_root_allowed(struct ssh *ssh, const char *method)
1.13      markus    306: {
1.17      markus    307:        switch (options.permit_root_login) {
                    308:        case PERMIT_YES:
1.13      markus    309:                return 1;
1.17      markus    310:        case PERMIT_NO_PASSWD:
1.112     deraadt   311:                if (strcmp(method, "publickey") == 0 ||
                    312:                    strcmp(method, "hostbased") == 0 ||
1.113     djm       313:                    strcmp(method, "gssapi-with-mic") == 0)
1.17      markus    314:                        return 1;
                    315:                break;
                    316:        case PERMIT_FORCED_ONLY:
1.126     djm       317:                if (auth_opts->force_command != NULL) {
1.47      itojun    318:                        logit("Root login accepted for forced command.");
1.17      markus    319:                        return 1;
                    320:                }
                    321:                break;
1.13      markus    322:        }
1.114     djm       323:        logit("ROOT LOGIN REFUSED FROM %.200s port %d",
                    324:            ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1.22      markus    325:        return 0;
                    326: }
                    327:
                    328:
                    329: /*
                    330:  * Given a template and a passwd structure, build a filename
                    331:  * by substituting % tokenised options. Currently, %% becomes '%',
                    332:  * %h becomes the home directory and %u the username.
                    333:  *
                    334:  * This returns a buffer allocated by xmalloc.
                    335:  */
1.93      djm       336: char *
1.59      djm       337: expand_authorized_keys(const char *filename, struct passwd *pw)
1.22      markus    338: {
1.129     djm       339:        char *file, uidstr[32], ret[PATH_MAX];
1.65      djm       340:        int i;
1.22      markus    341:
1.129     djm       342:        snprintf(uidstr, sizeof(uidstr), "%llu",
                    343:            (unsigned long long)pw->pw_uid);
1.59      djm       344:        file = percent_expand(filename, "h", pw->pw_dir,
1.129     djm       345:            "u", pw->pw_name, "U", uidstr, (char *)NULL);
1.22      markus    346:
                    347:        /*
                    348:         * Ensure that filename starts anchored. If not, be backward
                    349:         * compatible and prepend the '%h/'
                    350:         */
1.134     djm       351:        if (path_absolute(file))
1.59      djm       352:                return (file);
                    353:
1.65      djm       354:        i = snprintf(ret, sizeof(ret), "%s/%s", pw->pw_dir, file);
                    355:        if (i < 0 || (size_t)i >= sizeof(ret))
1.59      djm       356:                fatal("expand_authorized_keys: path too long");
1.102     djm       357:        free(file);
1.65      djm       358:        return (xstrdup(ret));
1.22      markus    359: }
1.24      markus    360:
1.87      djm       361: char *
                    362: authorized_principals_file(struct passwd *pw)
                    363: {
1.111     djm       364:        if (options.authorized_principals_file == NULL)
1.87      djm       365:                return NULL;
                    366:        return expand_authorized_keys(options.authorized_principals_file, pw);
                    367: }
                    368:
1.24      markus    369: /* return ok if key exists in sysfile or userfile */
                    370: HostStatus
1.121     markus    371: check_key_in_hostfiles(struct passwd *pw, struct sshkey *key, const char *host,
1.24      markus    372:     const char *sysfile, const char *userfile)
                    373: {
                    374:        char *user_hostfile;
                    375:        struct stat st;
1.30      stevesk   376:        HostStatus host_status;
1.91      djm       377:        struct hostkeys *hostkeys;
                    378:        const struct hostkey_entry *found;
1.24      markus    379:
1.91      djm       380:        hostkeys = init_hostkeys();
                    381:        load_hostkeys(hostkeys, host, sysfile);
                    382:        if (userfile != NULL) {
1.24      markus    383:                user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
                    384:                if (options.strict_modes &&
                    385:                    (stat(user_hostfile, &st) == 0) &&
                    386:                    ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
1.31      deraadt   387:                    (st.st_mode & 022) != 0)) {
1.47      itojun    388:                        logit("Authentication refused for %.100s: "
1.24      markus    389:                            "bad owner or modes for %.200s",
                    390:                            pw->pw_name, user_hostfile);
1.88      djm       391:                        auth_debug_add("Ignored %.200s: bad ownership or modes",
                    392:                            user_hostfile);
1.24      markus    393:                } else {
                    394:                        temporarily_use_uid(pw);
1.91      djm       395:                        load_hostkeys(hostkeys, host, user_hostfile);
1.24      markus    396:                        restore_uid();
                    397:                }
1.102     djm       398:                free(user_hostfile);
1.24      markus    399:        }
1.91      djm       400:        host_status = check_key_in_hostkeys(hostkeys, key, &found);
                    401:        if (host_status == HOST_REVOKED)
                    402:                error("WARNING: revoked key for %s attempted authentication",
1.142     djm       403:                    host);
1.91      djm       404:        else if (host_status == HOST_OK)
                    405:                debug("%s: key for %s found at %s:%ld", __func__,
                    406:                    found->host, found->file, found->line);
                    407:        else
                    408:                debug("%s: key for host %s not found", __func__, host);
                    409:
                    410:        free_hostkeys(hostkeys);
1.24      markus    411:
                    412:        return host_status;
                    413: }
                    414:
1.87      djm       415: static FILE *
                    416: auth_openfile(const char *file, struct passwd *pw, int strict_modes,
                    417:     int log_missing, char *file_type)
1.79      dtucker   418: {
                    419:        char line[1024];
                    420:        struct stat st;
                    421:        int fd;
                    422:        FILE *f;
                    423:
1.81      dtucker   424:        if ((fd = open(file, O_RDONLY|O_NONBLOCK)) == -1) {
1.87      djm       425:                if (log_missing || errno != ENOENT)
                    426:                        debug("Could not open %s '%s': %s", file_type, file,
1.81      dtucker   427:                           strerror(errno));
1.79      dtucker   428:                return NULL;
1.81      dtucker   429:        }
1.79      dtucker   430:
1.139     deraadt   431:        if (fstat(fd, &st) == -1) {
1.79      dtucker   432:                close(fd);
                    433:                return NULL;
                    434:        }
                    435:        if (!S_ISREG(st.st_mode)) {
1.87      djm       436:                logit("User %s %s %s is not a regular file",
                    437:                    pw->pw_name, file_type, file);
1.79      dtucker   438:                close(fd);
                    439:                return NULL;
                    440:        }
                    441:        unset_nonblock(fd);
                    442:        if ((f = fdopen(fd, "r")) == NULL) {
                    443:                close(fd);
                    444:                return NULL;
                    445:        }
1.90      djm       446:        if (strict_modes &&
1.123     djm       447:            safe_path_fd(fileno(f), file, pw, line, sizeof(line)) != 0) {
1.79      dtucker   448:                fclose(f);
                    449:                logit("Authentication refused: %s", line);
1.88      djm       450:                auth_debug_add("Ignored %s: %s", file_type, line);
1.79      dtucker   451:                return NULL;
                    452:        }
                    453:
                    454:        return f;
1.87      djm       455: }
                    456:
                    457:
                    458: FILE *
                    459: auth_openkeyfile(const char *file, struct passwd *pw, int strict_modes)
                    460: {
                    461:        return auth_openfile(file, pw, strict_modes, 1, "authorized keys");
                    462: }
                    463:
                    464: FILE *
                    465: auth_openprincipals(const char *file, struct passwd *pw, int strict_modes)
                    466: {
                    467:        return auth_openfile(file, pw, strict_modes, 0,
                    468:            "authorized principals");
1.37      provos    469: }
                    470:
                    471: struct passwd *
1.138     djm       472: getpwnamallow(struct ssh *ssh, const char *user)
1.37      provos    473: {
1.38      provos    474:        extern login_cap_t *lc;
                    475:        auth_session_t *as;
1.37      provos    476:        struct passwd *pw;
1.137     djm       477:        struct connection_info *ci;
1.148   ! djm       478:        u_int i;
1.71      dtucker   479:
1.137     djm       480:        ci = get_connection_info(ssh, 1, options.use_dns);
1.96      dtucker   481:        ci->user = user;
1.146     djm       482:        parse_server_match_config(&options, &includes, ci);
1.120     djm       483:        log_change_level(options.log_level);
1.148   ! djm       484:        log_verbose_reset();
        !           485:        for (i = 0; i < options.num_log_verbose; i++)
        !           486:                log_verbose_add(options.log_verbose[i]);
1.124     djm       487:        process_permitopen(ssh, &options);
1.37      provos    488:
                    489:        pw = getpwnam(user);
1.45      stevesk   490:        if (pw == NULL) {
1.114     djm       491:                logit("Invalid user %.100s from %.100s port %d",
                    492:                    user, ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1.45      stevesk   493:                return (NULL);
                    494:        }
1.138     djm       495:        if (!allowed_user(ssh, pw))
1.38      provos    496:                return (NULL);
                    497:        if ((lc = login_getclass(pw->pw_class)) == NULL) {
                    498:                debug("unable to get login class: %s", user);
                    499:                return (NULL);
                    500:        }
                    501:        if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
1.43      millert   502:            auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
1.38      provos    503:                debug("Approval failure for %s", user);
1.37      provos    504:                pw = NULL;
1.38      provos    505:        }
                    506:        if (as != NULL)
                    507:                auth_close(as);
1.41      markus    508:        if (pw != NULL)
                    509:                return (pwcopy(pw));
                    510:        return (NULL);
1.85      djm       511: }
                    512:
                    513: /* Returns 1 if key is revoked by revoked_keys_file, 0 otherwise */
                    514: int
1.121     markus    515: auth_key_is_revoked(struct sshkey *key)
1.85      djm       516: {
1.107     djm       517:        char *fp = NULL;
                    518:        int r;
1.85      djm       519:
                    520:        if (options.revoked_keys_file == NULL)
                    521:                return 0;
1.108     djm       522:        if ((fp = sshkey_fingerprint(key, options.fingerprint_hash,
                    523:            SSH_FP_DEFAULT)) == NULL) {
1.107     djm       524:                r = SSH_ERR_ALLOC_FAIL;
                    525:                error("%s: fingerprint key: %s", __func__, ssh_err(r));
                    526:                goto out;
                    527:        }
                    528:
                    529:        r = sshkey_check_revoked(key, options.revoked_keys_file);
                    530:        switch (r) {
1.100     djm       531:        case 0:
1.107     djm       532:                break; /* not revoked */
                    533:        case SSH_ERR_KEY_REVOKED:
                    534:                error("Authentication key %s %s revoked by file %s",
                    535:                    sshkey_type(key), fp, options.revoked_keys_file);
                    536:                goto out;
1.100     djm       537:        default:
1.107     djm       538:                error("Error checking authentication key %s %s in "
                    539:                    "revoked keys file %s: %s", sshkey_type(key), fp,
                    540:                    options.revoked_keys_file, ssh_err(r));
                    541:                goto out;
1.100     djm       542:        }
1.107     djm       543:
                    544:        /* Success */
                    545:        r = 0;
                    546:
                    547:  out:
                    548:        free(fp);
                    549:        return r == 0 ? 0 : 1;
1.42      markus    550: }
                    551:
                    552: void
                    553: auth_debug_add(const char *fmt,...)
                    554: {
                    555:        char buf[1024];
                    556:        va_list args;
1.131     markus    557:        int r;
1.42      markus    558:
1.131     markus    559:        if (auth_debug == NULL)
1.42      markus    560:                return;
                    561:
                    562:        va_start(args, fmt);
                    563:        vsnprintf(buf, sizeof(buf), fmt, args);
                    564:        va_end(args);
1.131     markus    565:        if ((r = sshbuf_put_cstring(auth_debug, buf)) != 0)
                    566:                fatal("%s: sshbuf_put_cstring: %s", __func__, ssh_err(r));
1.42      markus    567: }
                    568:
                    569: void
1.138     djm       570: auth_debug_send(struct ssh *ssh)
1.42      markus    571: {
                    572:        char *msg;
1.131     markus    573:        int r;
1.42      markus    574:
1.131     markus    575:        if (auth_debug == NULL)
1.42      markus    576:                return;
1.131     markus    577:        while (sshbuf_len(auth_debug) != 0) {
                    578:                if ((r = sshbuf_get_cstring(auth_debug, &msg, NULL)) != 0)
                    579:                        fatal("%s: sshbuf_get_cstring: %s",
                    580:                            __func__, ssh_err(r));
                    581:                ssh_packet_send_debug(ssh, "%s", msg);
1.102     djm       582:                free(msg);
1.42      markus    583:        }
                    584: }
                    585:
                    586: void
                    587: auth_debug_reset(void)
                    588: {
1.131     markus    589:        if (auth_debug != NULL)
                    590:                sshbuf_reset(auth_debug);
                    591:        else if ((auth_debug = sshbuf_new()) == NULL)
                    592:                fatal("%s: sshbuf_new failed", __func__);
1.49      markus    593: }
                    594:
                    595: struct passwd *
                    596: fakepw(void)
                    597: {
                    598:        static struct passwd fake;
                    599:
                    600:        memset(&fake, 0, sizeof(fake));
                    601:        fake.pw_name = "NOUSER";
                    602:        fake.pw_passwd =
1.51      djm       603:            "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
1.49      markus    604:        fake.pw_gecos = "NOUSER";
1.53      deraadt   605:        fake.pw_uid = (uid_t)-1;
                    606:        fake.pw_gid = (gid_t)-1;
1.49      markus    607:        fake.pw_class = "";
                    608:        fake.pw_dir = "/nonexist";
                    609:        fake.pw_shell = "/nonexist";
                    610:
                    611:        return (&fake);
1.114     djm       612: }
                    613:
                    614: /*
                    615:  * Returns the remote DNS hostname as a string. The returned string must not
                    616:  * be freed. NB. this will usually trigger a DNS query the first time it is
                    617:  * called.
                    618:  * This function does additional checks on the hostname to mitigate some
                    619:  * attacks on legacy rhosts-style authentication.
                    620:  * XXX is RhostsRSAAuthentication vulnerable to these?
                    621:  * XXX Can we remove these checks? (or if not, remove RhostsRSAAuthentication?)
                    622:  */
                    623:
                    624: static char *
                    625: remote_hostname(struct ssh *ssh)
                    626: {
                    627:        struct sockaddr_storage from;
                    628:        socklen_t fromlen;
                    629:        struct addrinfo hints, *ai, *aitop;
                    630:        char name[NI_MAXHOST], ntop2[NI_MAXHOST];
                    631:        const char *ntop = ssh_remote_ipaddr(ssh);
                    632:
                    633:        /* Get IP address of client. */
                    634:        fromlen = sizeof(from);
                    635:        memset(&from, 0, sizeof(from));
                    636:        if (getpeername(ssh_packet_get_connection_in(ssh),
1.139     deraadt   637:            (struct sockaddr *)&from, &fromlen) == -1) {
1.114     djm       638:                debug("getpeername failed: %.100s", strerror(errno));
1.144     tobhe     639:                return xstrdup(ntop);
1.114     djm       640:        }
                    641:
                    642:        debug3("Trying to reverse map address %.100s.", ntop);
                    643:        /* Map the IP address to a host name. */
                    644:        if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
                    645:            NULL, 0, NI_NAMEREQD) != 0) {
                    646:                /* Host name not found.  Use ip address. */
1.144     tobhe     647:                return xstrdup(ntop);
1.114     djm       648:        }
                    649:
                    650:        /*
                    651:         * if reverse lookup result looks like a numeric hostname,
                    652:         * someone is trying to trick us by PTR record like following:
                    653:         *      1.1.1.10.in-addr.arpa.  IN PTR  2.3.4.5
                    654:         */
                    655:        memset(&hints, 0, sizeof(hints));
                    656:        hints.ai_socktype = SOCK_DGRAM; /*dummy*/
                    657:        hints.ai_flags = AI_NUMERICHOST;
                    658:        if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
                    659:                logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
                    660:                    name, ntop);
                    661:                freeaddrinfo(ai);
1.144     tobhe     662:                return xstrdup(ntop);
1.114     djm       663:        }
                    664:
                    665:        /* Names are stored in lowercase. */
                    666:        lowercase(name);
                    667:
                    668:        /*
                    669:         * Map it back to an IP address and check that the given
                    670:         * address actually is an address of this host.  This is
                    671:         * necessary because anyone with access to a name server can
                    672:         * define arbitrary names for an IP address. Mapping from
                    673:         * name to IP address can be trusted better (but can still be
                    674:         * fooled if the intruder has access to the name server of
                    675:         * the domain).
                    676:         */
                    677:        memset(&hints, 0, sizeof(hints));
                    678:        hints.ai_family = from.ss_family;
                    679:        hints.ai_socktype = SOCK_STREAM;
                    680:        if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
                    681:                logit("reverse mapping checking getaddrinfo for %.700s "
1.115     dtucker   682:                    "[%s] failed.", name, ntop);
1.144     tobhe     683:                return xstrdup(ntop);
1.114     djm       684:        }
                    685:        /* Look for the address from the list of addresses. */
                    686:        for (ai = aitop; ai; ai = ai->ai_next) {
                    687:                if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
                    688:                    sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
                    689:                    (strcmp(ntop, ntop2) == 0))
                    690:                                break;
                    691:        }
                    692:        freeaddrinfo(aitop);
                    693:        /* If we reached the end of the list, the address was not there. */
                    694:        if (ai == NULL) {
                    695:                /* Address not found for the host name. */
                    696:                logit("Address %.100s maps to %.600s, but this does not "
1.115     dtucker   697:                    "map back to the address.", ntop, name);
1.144     tobhe     698:                return xstrdup(ntop);
1.114     djm       699:        }
1.144     tobhe     700:        return xstrdup(name);
1.114     djm       701: }
                    702:
                    703: /*
                    704:  * Return the canonical name of the host in the other side of the current
                    705:  * connection.  The host name is cached, so it is efficient to call this
                    706:  * several times.
                    707:  */
                    708:
                    709: const char *
                    710: auth_get_canonical_hostname(struct ssh *ssh, int use_dns)
                    711: {
                    712:        static char *dnsname;
                    713:
                    714:        if (!use_dns)
                    715:                return ssh_remote_ipaddr(ssh);
                    716:        else if (dnsname != NULL)
                    717:                return dnsname;
                    718:        else {
                    719:                dnsname = remote_hostname(ssh);
                    720:                return dnsname;
                    721:        }
1.125     markus    722: }
                    723:
                    724: /*
1.132     martijn   725:  * Runs command in a subprocess with a minimal environment.
1.125     markus    726:  * Returns pid on success, 0 on failure.
                    727:  * The child stdout and stderr maybe captured, left attached or sent to
                    728:  * /dev/null depending on the contents of flags.
                    729:  * "tag" is prepended to log messages.
                    730:  * NB. "command" is only used for logging; the actual command executed is
                    731:  * av[0].
                    732:  */
                    733: pid_t
                    734: subprocess(const char *tag, struct passwd *pw, const char *command,
                    735:     int ac, char **av, FILE **child, u_int flags)
                    736: {
                    737:        FILE *f = NULL;
                    738:        struct stat st;
                    739:        int fd, devnull, p[2], i;
                    740:        pid_t pid;
                    741:        char *cp, errmsg[512];
                    742:        u_int envsize;
                    743:        char **child_env;
                    744:
                    745:        if (child != NULL)
                    746:                *child = NULL;
                    747:
                    748:        debug3("%s: %s command \"%s\" running as %s (flags 0x%x)", __func__,
                    749:            tag, command, pw->pw_name, flags);
                    750:
                    751:        /* Check consistency */
                    752:        if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0 &&
                    753:            (flags & SSH_SUBPROCESS_STDOUT_CAPTURE) != 0) {
                    754:                error("%s: inconsistent flags", __func__);
                    755:                return 0;
                    756:        }
                    757:        if (((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) == 0) != (child == NULL)) {
                    758:                error("%s: inconsistent flags/output", __func__);
                    759:                return 0;
                    760:        }
                    761:
                    762:        /*
                    763:         * If executing an explicit binary, then verify the it exists
                    764:         * and appears safe-ish to execute
                    765:         */
1.134     djm       766:        if (!path_absolute(av[0])) {
1.125     markus    767:                error("%s path is not absolute", tag);
                    768:                return 0;
                    769:        }
                    770:        temporarily_use_uid(pw);
1.139     deraadt   771:        if (stat(av[0], &st) == -1) {
1.125     markus    772:                error("Could not stat %s \"%s\": %s", tag,
                    773:                    av[0], strerror(errno));
                    774:                restore_uid();
                    775:                return 0;
                    776:        }
                    777:        if (safe_path(av[0], &st, NULL, 0, errmsg, sizeof(errmsg)) != 0) {
                    778:                error("Unsafe %s \"%s\": %s", tag, av[0], errmsg);
                    779:                restore_uid();
                    780:                return 0;
                    781:        }
                    782:        /* Prepare to keep the child's stdout if requested */
1.139     deraadt   783:        if (pipe(p) == -1) {
1.125     markus    784:                error("%s: pipe: %s", tag, strerror(errno));
                    785:                restore_uid();
                    786:                return 0;
                    787:        }
                    788:        restore_uid();
                    789:
                    790:        switch ((pid = fork())) {
                    791:        case -1: /* error */
                    792:                error("%s: fork: %s", tag, strerror(errno));
                    793:                close(p[0]);
                    794:                close(p[1]);
                    795:                return 0;
                    796:        case 0: /* child */
                    797:                /* Prepare a minimal environment for the child. */
                    798:                envsize = 5;
                    799:                child_env = xcalloc(sizeof(*child_env), envsize);
                    800:                child_set_env(&child_env, &envsize, "PATH", _PATH_STDPATH);
                    801:                child_set_env(&child_env, &envsize, "USER", pw->pw_name);
                    802:                child_set_env(&child_env, &envsize, "LOGNAME", pw->pw_name);
                    803:                child_set_env(&child_env, &envsize, "HOME", pw->pw_dir);
                    804:                if ((cp = getenv("LANG")) != NULL)
                    805:                        child_set_env(&child_env, &envsize, "LANG", cp);
                    806:
                    807:                for (i = 0; i < NSIG; i++)
1.145     dtucker   808:                        ssh_signal(i, SIG_DFL);
1.125     markus    809:
                    810:                if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
                    811:                        error("%s: open %s: %s", tag, _PATH_DEVNULL,
                    812:                            strerror(errno));
                    813:                        _exit(1);
                    814:                }
                    815:                if (dup2(devnull, STDIN_FILENO) == -1) {
                    816:                        error("%s: dup2: %s", tag, strerror(errno));
                    817:                        _exit(1);
                    818:                }
                    819:
                    820:                /* Set up stdout as requested; leave stderr in place for now. */
                    821:                fd = -1;
                    822:                if ((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) != 0)
                    823:                        fd = p[1];
                    824:                else if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0)
                    825:                        fd = devnull;
                    826:                if (fd != -1 && dup2(fd, STDOUT_FILENO) == -1) {
                    827:                        error("%s: dup2: %s", tag, strerror(errno));
                    828:                        _exit(1);
                    829:                }
                    830:                closefrom(STDERR_FILENO + 1);
                    831:
                    832:                /* Don't use permanently_set_uid() here to avoid fatal() */
1.139     deraadt   833:                if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) == -1) {
1.125     markus    834:                        error("%s: setresgid %u: %s", tag, (u_int)pw->pw_gid,
                    835:                            strerror(errno));
                    836:                        _exit(1);
                    837:                }
1.139     deraadt   838:                if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) == -1) {
1.125     markus    839:                        error("%s: setresuid %u: %s", tag, (u_int)pw->pw_uid,
                    840:                            strerror(errno));
                    841:                        _exit(1);
                    842:                }
                    843:                /* stdin is pointed to /dev/null at this point */
                    844:                if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0 &&
                    845:                    dup2(STDIN_FILENO, STDERR_FILENO) == -1) {
                    846:                        error("%s: dup2: %s", tag, strerror(errno));
                    847:                        _exit(1);
                    848:                }
                    849:
                    850:                execve(av[0], av, child_env);
                    851:                error("%s exec \"%s\": %s", tag, command, strerror(errno));
                    852:                _exit(127);
                    853:        default: /* parent */
                    854:                break;
                    855:        }
                    856:
                    857:        close(p[1]);
                    858:        if ((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) == 0)
                    859:                close(p[0]);
                    860:        else if ((f = fdopen(p[0], "r")) == NULL) {
                    861:                error("%s: fdopen: %s", tag, strerror(errno));
                    862:                close(p[0]);
                    863:                /* Don't leave zombie child */
                    864:                kill(pid, SIGTERM);
                    865:                while (waitpid(pid, NULL, 0) == -1 && errno == EINTR)
                    866:                        ;
                    867:                return 0;
                    868:        }
                    869:        /* Success */
                    870:        debug3("%s: %s pid %ld", __func__, tag, (long)pid);
                    871:        if (child != NULL)
                    872:                *child = f;
                    873:        return pid;
1.126     djm       874: }
                    875:
                    876: /* These functions link key/cert options to the auth framework */
                    877:
                    878: /* Log sshauthopt options locally and (optionally) for remote transmission */
                    879: void
                    880: auth_log_authopts(const char *loc, const struct sshauthopt *opts, int do_remote)
                    881: {
                    882:        int do_env = options.permit_user_env && opts->nenv > 0;
                    883:        int do_permitopen = opts->npermitopen > 0 &&
                    884:            (options.allow_tcp_forwarding & FORWARD_LOCAL) != 0;
1.130     djm       885:        int do_permitlisten = opts->npermitlisten > 0 &&
                    886:            (options.allow_tcp_forwarding & FORWARD_REMOTE) != 0;
1.126     djm       887:        size_t i;
1.127     djm       888:        char msg[1024], buf[64];
1.126     djm       889:
1.127     djm       890:        snprintf(buf, sizeof(buf), "%d", opts->force_tun_device);
1.126     djm       891:        /* Try to keep this alphabetically sorted */
1.147     djm       892:        snprintf(msg, sizeof(msg), "key options:%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
1.126     djm       893:            opts->permit_agent_forwarding_flag ? " agent-forwarding" : "",
                    894:            opts->force_command == NULL ? "" : " command",
                    895:            do_env ?  " environment" : "",
1.127     djm       896:            opts->valid_before == 0 ? "" : "expires",
1.147     djm       897:            opts->no_require_user_presence ? " no-touch-required" : "",
1.126     djm       898:            do_permitopen ?  " permitopen" : "",
1.130     djm       899:            do_permitlisten ?  " permitlisten" : "",
1.126     djm       900:            opts->permit_port_forwarding_flag ? " port-forwarding" : "",
                    901:            opts->cert_principals == NULL ? "" : " principals",
                    902:            opts->permit_pty_flag ? " pty" : "",
1.147     djm       903:            opts->require_verify ? " uv" : "",
1.126     djm       904:            opts->force_tun_device == -1 ? "" : " tun=",
1.127     djm       905:            opts->force_tun_device == -1 ? "" : buf,
1.126     djm       906:            opts->permit_user_rc ? " user-rc" : "",
1.147     djm       907:            opts->permit_x11_forwarding_flag ? " x11-forwarding" : "");
1.126     djm       908:
                    909:        debug("%s: %s", loc, msg);
                    910:        if (do_remote)
                    911:                auth_debug_add("%s: %s", loc, msg);
                    912:
                    913:        if (options.permit_user_env) {
                    914:                for (i = 0; i < opts->nenv; i++) {
                    915:                        debug("%s: environment: %s", loc, opts->env[i]);
                    916:                        if (do_remote) {
                    917:                                auth_debug_add("%s: environment: %s",
                    918:                                    loc, opts->env[i]);
                    919:                        }
                    920:                }
                    921:        }
                    922:
                    923:        /* Go into a little more details for the local logs. */
1.127     djm       924:        if (opts->valid_before != 0) {
                    925:                format_absolute_time(opts->valid_before, buf, sizeof(buf));
                    926:                debug("%s: expires at %s", loc, buf);
                    927:        }
1.126     djm       928:        if (opts->cert_principals != NULL) {
                    929:                debug("%s: authorized principals: \"%s\"",
                    930:                    loc, opts->cert_principals);
                    931:        }
                    932:        if (opts->force_command != NULL)
                    933:                debug("%s: forced command: \"%s\"", loc, opts->force_command);
1.130     djm       934:        if (do_permitopen) {
1.126     djm       935:                for (i = 0; i < opts->npermitopen; i++) {
                    936:                        debug("%s: permitted open: %s",
                    937:                            loc, opts->permitopen[i]);
1.130     djm       938:                }
                    939:        }
                    940:        if (do_permitlisten) {
                    941:                for (i = 0; i < opts->npermitlisten; i++) {
                    942:                        debug("%s: permitted listen: %s",
                    943:                            loc, opts->permitlisten[i]);
1.126     djm       944:                }
                    945:        }
                    946: }
                    947:
                    948: /* Activate a new set of key/cert options; merging with what is there. */
                    949: int
                    950: auth_activate_options(struct ssh *ssh, struct sshauthopt *opts)
                    951: {
                    952:        struct sshauthopt *old = auth_opts;
                    953:        const char *emsg = NULL;
                    954:
                    955:        debug("%s: setting new authentication options", __func__);
                    956:        if ((auth_opts = sshauthopt_merge(old, opts, &emsg)) == NULL) {
                    957:                error("Inconsistent authentication options: %s", emsg);
                    958:                return -1;
                    959:        }
                    960:        return 0;
                    961: }
                    962:
                    963: /* Disable forwarding, etc for the session */
                    964: void
                    965: auth_restrict_session(struct ssh *ssh)
                    966: {
                    967:        struct sshauthopt *restricted;
                    968:
                    969:        debug("%s: restricting session", __func__);
                    970:
                    971:        /* A blank sshauthopt defaults to permitting nothing */
                    972:        restricted = sshauthopt_new();
1.128     djm       973:        restricted->permit_pty_flag = 1;
1.126     djm       974:        restricted->restricted = 1;
                    975:
                    976:        if (auth_activate_options(ssh, restricted) != 0)
                    977:                fatal("%s: failed to restrict session", __func__);
                    978:        sshauthopt_free(restricted);
                    979: }
                    980:
                    981: int
                    982: auth_authorise_keyopts(struct ssh *ssh, struct passwd *pw,
                    983:     struct sshauthopt *opts, int allow_cert_authority, const char *loc)
                    984: {
                    985:        const char *remote_ip = ssh_remote_ipaddr(ssh);
                    986:        const char *remote_host = auth_get_canonical_hostname(ssh,
                    987:            options.use_dns);
1.127     djm       988:        time_t now = time(NULL);
                    989:        char buf[64];
1.126     djm       990:
1.127     djm       991:        /*
                    992:         * Check keys/principals file expiry time.
                    993:         * NB. validity interval in certificate is handled elsewhere.
                    994:         */
                    995:        if (opts->valid_before && now > 0 &&
                    996:            opts->valid_before < (uint64_t)now) {
                    997:                format_absolute_time(opts->valid_before, buf, sizeof(buf));
                    998:                debug("%s: entry expired at %s", loc, buf);
                    999:                auth_debug_add("%s: entry expired at %s", loc, buf);
                   1000:                return -1;
                   1001:        }
1.126     djm      1002:        /* Consistency checks */
                   1003:        if (opts->cert_principals != NULL && !opts->cert_authority) {
                   1004:                debug("%s: principals on non-CA key", loc);
                   1005:                auth_debug_add("%s: principals on non-CA key", loc);
                   1006:                /* deny access */
                   1007:                return -1;
                   1008:        }
                   1009:        /* cert-authority flag isn't valid in authorized_principals files */
                   1010:        if (!allow_cert_authority && opts->cert_authority) {
                   1011:                debug("%s: cert-authority flag invalid here", loc);
                   1012:                auth_debug_add("%s: cert-authority flag invalid here", loc);
                   1013:                /* deny access */
                   1014:                return -1;
                   1015:        }
                   1016:
                   1017:        /* Perform from= checks */
                   1018:        if (opts->required_from_host_keys != NULL) {
                   1019:                switch (match_host_and_ip(remote_host, remote_ip,
                   1020:                    opts->required_from_host_keys )) {
                   1021:                case 1:
                   1022:                        /* Host name matches. */
                   1023:                        break;
                   1024:                case -1:
                   1025:                default:
                   1026:                        debug("%s: invalid from criteria", loc);
                   1027:                        auth_debug_add("%s: invalid from criteria", loc);
                   1028:                        /* FALLTHROUGH */
                   1029:                case 0:
                   1030:                        logit("%s: Authentication tried for %.100s with "
                   1031:                            "correct key but not from a permitted "
                   1032:                            "host (host=%.200s, ip=%.200s, required=%.200s).",
                   1033:                            loc, pw->pw_name, remote_host, remote_ip,
                   1034:                            opts->required_from_host_keys);
                   1035:                        auth_debug_add("%s: Your host '%.200s' is not "
                   1036:                            "permitted to use this key for login.",
                   1037:                            loc, remote_host);
                   1038:                        /* deny access */
                   1039:                        return -1;
                   1040:                }
                   1041:        }
                   1042:        /* Check source-address restriction from certificate */
                   1043:        if (opts->required_from_host_cert != NULL) {
                   1044:                switch (addr_match_cidr_list(remote_ip,
                   1045:                    opts->required_from_host_cert)) {
                   1046:                case 1:
                   1047:                        /* accepted */
                   1048:                        break;
                   1049:                case -1:
                   1050:                default:
                   1051:                        /* invalid */
                   1052:                        error("%s: Certificate source-address invalid",
                   1053:                            loc);
                   1054:                        /* FALLTHROUGH */
                   1055:                case 0:
                   1056:                        logit("%s: Authentication tried for %.100s with valid "
                   1057:                            "certificate but not from a permitted source "
                   1058:                            "address (%.200s).", loc, pw->pw_name, remote_ip);
                   1059:                        auth_debug_add("%s: Your address '%.200s' is not "
                   1060:                            "permitted to use this certificate for login.",
                   1061:                            loc, remote_ip);
                   1062:                        return -1;
                   1063:                }
                   1064:        }
                   1065:        /*
                   1066:         *
                   1067:         * XXX this is spammy. We should report remotely only for keys
                   1068:         *     that are successful in actual auth attempts, and not PK_OK
                   1069:         *     tests.
                   1070:         */
                   1071:        auth_log_authopts(loc, opts, 1);
                   1072:
                   1073:        return 0;
1.1       markus   1074: }