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

Annotation of src/usr.bin/ssh/servconf.c, Revision 1.318

1.226     dtucker     1:
1.318   ! djm         2: /* $OpenBSD: servconf.c,v 1.317 2017/10/25 00:19:47 djm Exp $ */
1.1       deraadt     3: /*
1.26      deraadt     4:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      5:  *                    All rights reserved
1.34      markus      6:  *
1.51      deraadt     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".
1.26      deraadt    12:  */
1.1       deraadt    13:
1.152     stevesk    14: #include <sys/types.h>
                     15: #include <sys/socket.h>
1.179     djm        16: #include <sys/queue.h>
1.315     djm        17: #include <sys/sysctl.h>
1.154     stevesk    18:
1.213     djm        19: #include <netinet/in.h>
                     20: #include <netinet/ip.h>
1.315     djm        21: #include <net/route.h>
1.213     djm        22:
1.235     dtucker    23: #include <ctype.h>
1.154     stevesk    24: #include <netdb.h>
1.165     dtucker    25: #include <pwd.h>
1.162     stevesk    26: #include <stdio.h>
1.161     stevesk    27: #include <stdlib.h>
1.160     stevesk    28: #include <string.h>
1.164     deraadt    29: #include <signal.h>
1.155     stevesk    30: #include <unistd.h>
1.259     deraadt    31: #include <limits.h>
1.164     deraadt    32: #include <stdarg.h>
1.182     dtucker    33: #include <errno.h>
1.236     dtucker    34: #include <util.h>
1.1       deraadt    35:
1.164     deraadt    36: #include "xmalloc.h"
1.1       deraadt    37: #include "ssh.h"
1.62      markus     38: #include "log.h"
1.164     deraadt    39: #include "buffer.h"
1.251     millert    40: #include "misc.h"
1.1       deraadt    41: #include "servconf.h"
1.33      markus     42: #include "compat.h"
1.60      markus     43: #include "pathnames.h"
1.62      markus     44: #include "cipher.h"
1.164     deraadt    45: #include "key.h"
1.66      markus     46: #include "kex.h"
                     47: #include "mac.h"
1.153     dtucker    48: #include "match.h"
1.156     dtucker    49: #include "channels.h"
1.165     dtucker    50: #include "groupaccess.h"
1.226     dtucker    51: #include "canohost.h"
                     52: #include "packet.h"
1.232     djm        53: #include "hostfile.h"
                     54: #include "auth.h"
1.252     djm        55: #include "myproposal.h"
1.256     djm        56: #include "digest.h"
1.1       deraadt    57:
1.315     djm        58: static void add_listen_addr(ServerOptions *, const char *,
                     59:     const char *, int);
                     60: static void add_one_listen_addr(ServerOptions *, const char *,
                     61:     const char *, int);
1.29      markus     62:
1.102     provos     63: /* Use of privilege separation or not */
                     64: extern int use_privsep;
1.153     dtucker    65: extern Buffer cfg;
1.62      markus     66:
1.1       deraadt    67: /* Initializes the server options to their default values. */
                     68:
1.34      markus     69: void
1.25      markus     70: initialize_server_options(ServerOptions *options)
1.1       deraadt    71: {
1.25      markus     72:        memset(options, 0, sizeof(*options));
1.29      markus     73:        options->num_ports = 0;
                     74:        options->ports_from_cmdline = 0;
1.266     dtucker    75:        options->queued_listen_addrs = NULL;
                     76:        options->num_queued_listens = 0;
1.29      markus     77:        options->listen_addrs = NULL;
1.315     djm        78:        options->num_listen_addrs = 0;
1.138     djm        79:        options->address_family = -1;
1.316     djm        80:        options->routing_domain = NULL;
1.54      markus     81:        options->num_host_key_files = 0;
1.203     djm        82:        options->num_host_cert_files = 0;
1.240     markus     83:        options->host_key_agent = NULL;
1.36      markus     84:        options->pid_file = NULL;
1.25      markus     85:        options->login_grace_time = -1;
1.279     chris      86:        options->permit_root_login = PERMIT_NOT_SET;
1.25      markus     87:        options->ignore_rhosts = -1;
                     88:        options->ignore_user_known_hosts = -1;
                     89:        options->print_motd = -1;
1.72      stevesk    90:        options->print_lastlog = -1;
1.25      markus     91:        options->x11_forwarding = -1;
                     92:        options->x11_display_offset = -1;
1.99      stevesk    93:        options->x11_use_localhost = -1;
1.244     djm        94:        options->permit_tty = -1;
1.250     djm        95:        options->permit_user_rc = -1;
1.42      markus     96:        options->xauth_location = NULL;
1.25      markus     97:        options->strict_modes = -1;
1.129     markus     98:        options->tcp_keep_alive = -1;
1.101     markus     99:        options->log_facility = SYSLOG_FACILITY_NOT_SET;
                    100:        options->log_level = SYSLOG_LEVEL_NOT_SET;
1.75      markus    101:        options->hostbased_authentication = -1;
                    102:        options->hostbased_uses_name_from_packet_only = -1;
1.258     djm       103:        options->hostbased_key_types = NULL;
1.276     markus    104:        options->hostkeyalgorithms = NULL;
1.54      markus    105:        options->pubkey_authentication = -1;
1.258     djm       106:        options->pubkey_key_types = NULL;
1.25      markus    107:        options->kerberos_authentication = -1;
                    108:        options->kerberos_or_local_passwd = -1;
                    109:        options->kerberos_ticket_cleanup = -1;
1.130     jakob     110:        options->kerberos_get_afs_token = -1;
1.125     markus    111:        options->gss_authentication=-1;
                    112:        options->gss_cleanup_creds = -1;
1.271     djm       113:        options->gss_strict_acceptor = -1;
1.25      markus    114:        options->password_authentication = -1;
1.52      markus    115:        options->kbd_interactive_authentication = -1;
1.80      markus    116:        options->challenge_response_authentication = -1;
1.25      markus    117:        options->permit_empty_passwd = -1;
1.113     markus    118:        options->permit_user_env = -1;
1.111     markus    119:        options->compression = -1;
1.235     dtucker   120:        options->rekey_limit = -1;
                    121:        options->rekey_interval = -1;
1.53      markus    122:        options->allow_tcp_forwarding = -1;
1.251     millert   123:        options->allow_streamlocal_forwarding = -1;
1.178     pyr       124:        options->allow_agent_forwarding = -1;
1.25      markus    125:        options->num_allow_users = 0;
                    126:        options->num_deny_users = 0;
                    127:        options->num_allow_groups = 0;
                    128:        options->num_deny_groups = 0;
1.33      markus    129:        options->ciphers = NULL;
1.66      markus    130:        options->macs = NULL;
1.211     djm       131:        options->kex_algorithms = NULL;
1.251     millert   132:        options->fwd_opts.gateway_ports = -1;
                    133:        options->fwd_opts.streamlocal_bind_mask = (mode_t)-1;
                    134:        options->fwd_opts.streamlocal_bind_unlink = -1;
1.43      jakob     135:        options->num_subsystems = 0;
1.50      markus    136:        options->max_startups_begin = -1;
                    137:        options->max_startups_rate = -1;
1.46      markus    138:        options->max_startups = -1;
1.133     dtucker   139:        options->max_authtries = -1;
1.180     djm       140:        options->max_sessions = -1;
1.57      markus    141:        options->banner = NULL;
1.122     markus    142:        options->use_dns = -1;
1.77      beck      143:        options->client_alive_interval = -1;
                    144:        options->client_alive_count_max = -1;
1.219     djm       145:        options->num_authkeys_files = 0;
1.131     djm       146:        options->num_accept_env = 0;
1.145     reyk      147:        options->permit_tun = -1;
1.310     djm       148:        options->permitted_opens = NULL;
1.158     dtucker   149:        options->adm_forced_command = NULL;
1.176     djm       150:        options->chroot_directory = NULL;
1.231     djm       151:        options->authorized_keys_command = NULL;
                    152:        options->authorized_keys_command_user = NULL;
1.204     djm       153:        options->revoked_keys_file = NULL;
                    154:        options->trusted_user_ca_keys = NULL;
1.208     djm       155:        options->authorized_principals_file = NULL;
1.270     djm       156:        options->authorized_principals_command = NULL;
                    157:        options->authorized_principals_command_user = NULL;
1.213     djm       158:        options->ip_qos_interactive = -1;
                    159:        options->ip_qos_bulk = -1;
1.225     djm       160:        options->version_addendum = NULL;
1.256     djm       161:        options->fingerprint_hash = -1;
1.301     djm       162:        options->disable_forwarding = -1;
1.309     djm       163:        options->expose_userauth_info = -1;
1.1       deraadt   164: }
                    165:
1.257     djm       166: /* Returns 1 if a string option is unset or set to "none" or 0 otherwise. */
                    167: static int
                    168: option_clear_or_none(const char *o)
                    169: {
                    170:        return o == NULL || strcasecmp(o, "none") == 0;
                    171: }
                    172:
1.282     djm       173: static void
                    174: assemble_algorithms(ServerOptions *o)
                    175: {
                    176:        if (kex_assemble_names(KEX_SERVER_ENCRYPT, &o->ciphers) != 0 ||
                    177:            kex_assemble_names(KEX_SERVER_MAC, &o->macs) != 0 ||
                    178:            kex_assemble_names(KEX_SERVER_KEX, &o->kex_algorithms) != 0 ||
                    179:            kex_assemble_names(KEX_DEFAULT_PK_ALG,
                    180:            &o->hostkeyalgorithms) != 0 ||
                    181:            kex_assemble_names(KEX_DEFAULT_PK_ALG,
                    182:            &o->hostbased_key_types) != 0 ||
                    183:            kex_assemble_names(KEX_DEFAULT_PK_ALG, &o->pubkey_key_types) != 0)
                    184:                fatal("kex_assemble_names failed");
                    185: }
                    186:
1.314     djm       187: static void
                    188: array_append(const char *file, const int line, const char *directive,
                    189:     char ***array, u_int *lp, const char *s)
                    190: {
                    191:
                    192:        if (*lp >= INT_MAX)
                    193:                fatal("%s line %d: Too many %s entries", file, line, directive);
                    194:
                    195:        *array = xrecallocarray(*array, *lp, *lp + 1, sizeof(**array));
                    196:        (*array)[*lp] = xstrdup(s);
                    197:        (*lp)++;
                    198: }
                    199:
                    200: void
                    201: servconf_add_hostkey(const char *file, const int line,
                    202:     ServerOptions *options, const char *path)
                    203: {
                    204:        char *apath = derelativise_path(path);
                    205:
                    206:        array_append(file, line, "HostKey",
                    207:            &options->host_key_files, &options->num_host_key_files, apath);
                    208:        free(apath);
                    209: }
                    210:
                    211: void
                    212: servconf_add_hostcert(const char *file, const int line,
                    213:     ServerOptions *options, const char *path)
                    214: {
                    215:        char *apath = derelativise_path(path);
                    216:
                    217:        array_append(file, line, "HostCertificate",
                    218:            &options->host_cert_files, &options->num_host_cert_files, apath);
                    219:        free(apath);
                    220: }
                    221:
1.34      markus    222: void
1.25      markus    223: fill_default_server_options(ServerOptions *options)
1.1       deraadt   224: {
1.314     djm       225:        u_int i;
1.257     djm       226:
1.54      markus    227:        if (options->num_host_key_files == 0) {
1.293     naddy     228:                /* fill default hostkeys */
1.314     djm       229:                servconf_add_hostkey("[default]", 0, options,
                    230:                    _PATH_HOST_RSA_KEY_FILE);
                    231:                servconf_add_hostkey("[default]", 0, options,
                    232:                    _PATH_HOST_DSA_KEY_FILE);
                    233:                servconf_add_hostkey("[default]", 0, options,
                    234:                    _PATH_HOST_ECDSA_KEY_FILE);
                    235:                servconf_add_hostkey("[default]", 0, options,
                    236:                    _PATH_HOST_ED25519_KEY_FILE);
1.54      markus    237:        }
1.203     djm       238:        /* No certificates by default */
1.29      markus    239:        if (options->num_ports == 0)
                    240:                options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
1.266     dtucker   241:        if (options->address_family == -1)
                    242:                options->address_family = AF_UNSPEC;
1.29      markus    243:        if (options->listen_addrs == NULL)
1.315     djm       244:                add_listen_addr(options, NULL, NULL, 0);
1.36      markus    245:        if (options->pid_file == NULL)
1.257     djm       246:                options->pid_file = xstrdup(_PATH_SSH_DAEMON_PID_FILE);
1.25      markus    247:        if (options->login_grace_time == -1)
1.115     stevesk   248:                options->login_grace_time = 120;
1.67      markus    249:        if (options->permit_root_login == PERMIT_NOT_SET)
1.279     chris     250:                options->permit_root_login = PERMIT_NO_PASSWD;
1.25      markus    251:        if (options->ignore_rhosts == -1)
1.30      markus    252:                options->ignore_rhosts = 1;
1.25      markus    253:        if (options->ignore_user_known_hosts == -1)
                    254:                options->ignore_user_known_hosts = 0;
                    255:        if (options->print_motd == -1)
                    256:                options->print_motd = 1;
1.72      stevesk   257:        if (options->print_lastlog == -1)
                    258:                options->print_lastlog = 1;
1.25      markus    259:        if (options->x11_forwarding == -1)
1.30      markus    260:                options->x11_forwarding = 0;
1.25      markus    261:        if (options->x11_display_offset == -1)
1.30      markus    262:                options->x11_display_offset = 10;
1.99      stevesk   263:        if (options->x11_use_localhost == -1)
                    264:                options->x11_use_localhost = 1;
1.42      markus    265:        if (options->xauth_location == NULL)
1.257     djm       266:                options->xauth_location = xstrdup(_PATH_XAUTH);
1.244     djm       267:        if (options->permit_tty == -1)
                    268:                options->permit_tty = 1;
1.250     djm       269:        if (options->permit_user_rc == -1)
                    270:                options->permit_user_rc = 1;
1.25      markus    271:        if (options->strict_modes == -1)
                    272:                options->strict_modes = 1;
1.129     markus    273:        if (options->tcp_keep_alive == -1)
                    274:                options->tcp_keep_alive = 1;
1.101     markus    275:        if (options->log_facility == SYSLOG_FACILITY_NOT_SET)
1.25      markus    276:                options->log_facility = SYSLOG_FACILITY_AUTH;
1.101     markus    277:        if (options->log_level == SYSLOG_LEVEL_NOT_SET)
1.58      markus    278:                options->log_level = SYSLOG_LEVEL_INFO;
1.75      markus    279:        if (options->hostbased_authentication == -1)
                    280:                options->hostbased_authentication = 0;
                    281:        if (options->hostbased_uses_name_from_packet_only == -1)
                    282:                options->hostbased_uses_name_from_packet_only = 0;
1.54      markus    283:        if (options->pubkey_authentication == -1)
                    284:                options->pubkey_authentication = 1;
1.25      markus    285:        if (options->kerberos_authentication == -1)
1.107     markus    286:                options->kerberos_authentication = 0;
1.25      markus    287:        if (options->kerberos_or_local_passwd == -1)
                    288:                options->kerberos_or_local_passwd = 1;
                    289:        if (options->kerberos_ticket_cleanup == -1)
                    290:                options->kerberos_ticket_cleanup = 1;
1.130     jakob     291:        if (options->kerberos_get_afs_token == -1)
                    292:                options->kerberos_get_afs_token = 0;
1.125     markus    293:        if (options->gss_authentication == -1)
                    294:                options->gss_authentication = 0;
                    295:        if (options->gss_cleanup_creds == -1)
                    296:                options->gss_cleanup_creds = 1;
1.271     djm       297:        if (options->gss_strict_acceptor == -1)
1.302     djm       298:                options->gss_strict_acceptor = 1;
1.25      markus    299:        if (options->password_authentication == -1)
                    300:                options->password_authentication = 1;
1.52      markus    301:        if (options->kbd_interactive_authentication == -1)
                    302:                options->kbd_interactive_authentication = 0;
1.80      markus    303:        if (options->challenge_response_authentication == -1)
                    304:                options->challenge_response_authentication = 1;
1.25      markus    305:        if (options->permit_empty_passwd == -1)
1.30      markus    306:                options->permit_empty_passwd = 0;
1.113     markus    307:        if (options->permit_user_env == -1)
                    308:                options->permit_user_env = 0;
1.111     markus    309:        if (options->compression == -1)
1.143     markus    310:                options->compression = COMP_DELAYED;
1.235     dtucker   311:        if (options->rekey_limit == -1)
                    312:                options->rekey_limit = 0;
                    313:        if (options->rekey_interval == -1)
                    314:                options->rekey_interval = 0;
1.53      markus    315:        if (options->allow_tcp_forwarding == -1)
1.233     djm       316:                options->allow_tcp_forwarding = FORWARD_ALLOW;
1.251     millert   317:        if (options->allow_streamlocal_forwarding == -1)
                    318:                options->allow_streamlocal_forwarding = FORWARD_ALLOW;
1.178     pyr       319:        if (options->allow_agent_forwarding == -1)
                    320:                options->allow_agent_forwarding = 1;
1.251     millert   321:        if (options->fwd_opts.gateway_ports == -1)
                    322:                options->fwd_opts.gateway_ports = 0;
1.46      markus    323:        if (options->max_startups == -1)
1.234     dtucker   324:                options->max_startups = 100;
1.50      markus    325:        if (options->max_startups_rate == -1)
1.234     dtucker   326:                options->max_startups_rate = 30;                /* 30% */
1.50      markus    327:        if (options->max_startups_begin == -1)
1.234     dtucker   328:                options->max_startups_begin = 10;
1.133     dtucker   329:        if (options->max_authtries == -1)
                    330:                options->max_authtries = DEFAULT_AUTH_FAIL_MAX;
1.180     djm       331:        if (options->max_sessions == -1)
                    332:                options->max_sessions = DEFAULT_SESSIONS_MAX;
1.122     markus    333:        if (options->use_dns == -1)
1.260     deraadt   334:                options->use_dns = 0;
1.77      beck      335:        if (options->client_alive_interval == -1)
1.95      deraadt   336:                options->client_alive_interval = 0;
1.77      beck      337:        if (options->client_alive_count_max == -1)
                    338:                options->client_alive_count_max = 3;
1.219     djm       339:        if (options->num_authkeys_files == 0) {
1.314     djm       340:                array_append("[default]", 0, "AuthorizedKeysFiles",
                    341:                    &options->authorized_keys_files,
                    342:                    &options->num_authkeys_files,
                    343:                    _PATH_SSH_USER_PERMITTED_KEYS);
                    344:                array_append("[default]", 0, "AuthorizedKeysFiles",
                    345:                    &options->authorized_keys_files,
                    346:                    &options->num_authkeys_files,
                    347:                    _PATH_SSH_USER_PERMITTED_KEYS2);
1.219     djm       348:        }
1.145     reyk      349:        if (options->permit_tun == -1)
1.146     reyk      350:                options->permit_tun = SSH_TUNMODE_NO;
1.213     djm       351:        if (options->ip_qos_interactive == -1)
                    352:                options->ip_qos_interactive = IPTOS_LOWDELAY;
                    353:        if (options->ip_qos_bulk == -1)
                    354:                options->ip_qos_bulk = IPTOS_THROUGHPUT;
1.225     djm       355:        if (options->version_addendum == NULL)
                    356:                options->version_addendum = xstrdup("");
1.251     millert   357:        if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1)
                    358:                options->fwd_opts.streamlocal_bind_mask = 0177;
                    359:        if (options->fwd_opts.streamlocal_bind_unlink == -1)
                    360:                options->fwd_opts.streamlocal_bind_unlink = 0;
1.256     djm       361:        if (options->fingerprint_hash == -1)
                    362:                options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
1.301     djm       363:        if (options->disable_forwarding == -1)
                    364:                options->disable_forwarding = 0;
1.309     djm       365:        if (options->expose_userauth_info == -1)
                    366:                options->expose_userauth_info = 0;
1.277     djm       367:
1.282     djm       368:        assemble_algorithms(options);
1.277     djm       369:
1.285     djm       370:        /* Turn privilege separation and sandboxing on by default */
1.102     provos    371:        if (use_privsep == -1)
1.285     djm       372:                use_privsep = PRIVSEP_ON;
1.257     djm       373:
                    374: #define CLEAR_ON_NONE(v) \
                    375:        do { \
                    376:                if (option_clear_or_none(v)) { \
                    377:                        free(v); \
                    378:                        v = NULL; \
                    379:                } \
                    380:        } while(0)
                    381:        CLEAR_ON_NONE(options->pid_file);
                    382:        CLEAR_ON_NONE(options->xauth_location);
                    383:        CLEAR_ON_NONE(options->banner);
                    384:        CLEAR_ON_NONE(options->trusted_user_ca_keys);
                    385:        CLEAR_ON_NONE(options->revoked_keys_file);
1.267     djm       386:        CLEAR_ON_NONE(options->authorized_principals_file);
1.283     djm       387:        CLEAR_ON_NONE(options->adm_forced_command);
                    388:        CLEAR_ON_NONE(options->chroot_directory);
1.316     djm       389:        CLEAR_ON_NONE(options->routing_domain);
1.257     djm       390:        for (i = 0; i < options->num_host_key_files; i++)
                    391:                CLEAR_ON_NONE(options->host_key_files[i]);
                    392:        for (i = 0; i < options->num_host_cert_files; i++)
                    393:                CLEAR_ON_NONE(options->host_cert_files[i]);
                    394: #undef CLEAR_ON_NONE
1.291     djm       395:
                    396:        /* Similar handling for AuthenticationMethods=any */
                    397:        if (options->num_auth_methods == 1 &&
                    398:            strcmp(options->auth_methods[0], "any") == 0) {
                    399:                free(options->auth_methods[0]);
                    400:                options->auth_methods[0] = NULL;
                    401:                options->num_auth_methods = 0;
                    402:        }
                    403:
1.1       deraadt   404: }
                    405:
                    406: /* Keyword tokens. */
1.25      markus    407: typedef enum {
                    408:        sBadOption,             /* == unknown option */
1.293     naddy     409:        sPort, sHostKeyFile, sLoginGraceTime,
                    410:        sPermitRootLogin, sLogFacility, sLogLevel,
1.25      markus    411:        sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
1.130     jakob     412:        sKerberosGetAFSToken,
1.123     markus    413:        sKerberosTgtPassing, sChallengeResponseAuthentication,
1.138     djm       414:        sPasswordAuthentication, sKbdInteractiveAuthentication,
                    415:        sListenAddress, sAddressFamily,
1.72      stevesk   416:        sPrintMotd, sPrintLastLog, sIgnoreRhosts,
1.99      stevesk   417:        sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost,
1.244     djm       418:        sPermitTTY, sStrictModes, sEmptyPasswd, sTCPKeepAlive,
1.294     djm       419:        sPermitUserEnvironment, sAllowTcpForwarding, sCompression,
1.235     dtucker   420:        sRekeyLimit, sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
1.293     naddy     421:        sIgnoreUserKnownHosts, sCiphers, sMacs, sPidFile,
1.258     djm       422:        sGatewayPorts, sPubkeyAuthentication, sPubkeyAcceptedKeyTypes,
                    423:        sXAuthLocation, sSubsystem, sMaxStartups, sMaxAuthTries, sMaxSessions,
1.122     markus    424:        sBanner, sUseDNS, sHostbasedAuthentication,
1.258     djm       425:        sHostbasedUsesNameFromPacketOnly, sHostbasedAcceptedKeyTypes,
1.276     markus    426:        sHostKeyAlgorithms,
1.258     djm       427:        sClientAliveInterval, sClientAliveCountMax, sAuthorizedKeysFile,
1.271     djm       428:        sGssAuthentication, sGssCleanupCreds, sGssStrictAcceptor,
                    429:        sAcceptEnv, sPermitTunnel,
1.176     djm       430:        sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
1.200     dtucker   431:        sUsePrivilegeSeparation, sAllowAgentForwarding,
1.249     djm       432:        sHostCertificate,
1.208     djm       433:        sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
1.270     djm       434:        sAuthorizedPrincipalsCommand, sAuthorizedPrincipalsCommandUser,
1.225     djm       435:        sKexAlgorithms, sIPQoS, sVersionAddendum,
1.231     djm       436:        sAuthorizedKeysCommand, sAuthorizedKeysCommandUser,
1.250     djm       437:        sAuthenticationMethods, sHostKeyAgent, sPermitUserRC,
1.251     millert   438:        sStreamLocalBindMask, sStreamLocalBindUnlink,
1.301     djm       439:        sAllowStreamLocalForwarding, sFingerprintHash, sDisableForwarding,
1.316     djm       440:        sExposeAuthInfo, sRDomain,
1.295     djm       441:        sDeprecated, sIgnore, sUnsupported
1.1       deraadt   442: } ServerOpCodes;
                    443:
1.153     dtucker   444: #define SSHCFG_GLOBAL  0x01    /* allowed in main section of sshd_config */
                    445: #define SSHCFG_MATCH   0x02    /* allowed inside a Match section */
                    446: #define SSHCFG_ALL     (SSHCFG_GLOBAL|SSHCFG_MATCH)
                    447:
1.1       deraadt   448: /* Textual representation of the tokens. */
1.25      markus    449: static struct {
                    450:        const char *name;
                    451:        ServerOpCodes opcode;
1.153     dtucker   452:        u_int flags;
1.25      markus    453: } keywords[] = {
1.153     dtucker   454:        { "port", sPort, SSHCFG_GLOBAL },
                    455:        { "hostkey", sHostKeyFile, SSHCFG_GLOBAL },
                    456:        { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL },          /* alias */
1.240     markus    457:        { "hostkeyagent", sHostKeyAgent, SSHCFG_GLOBAL },
1.153     dtucker   458:        { "pidfile", sPidFile, SSHCFG_GLOBAL },
1.293     naddy     459:        { "serverkeybits", sDeprecated, SSHCFG_GLOBAL },
1.153     dtucker   460:        { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL },
1.293     naddy     461:        { "keyregenerationinterval", sDeprecated, SSHCFG_GLOBAL },
1.175     dtucker   462:        { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
1.153     dtucker   463:        { "syslogfacility", sLogFacility, SSHCFG_GLOBAL },
1.308     djm       464:        { "loglevel", sLogLevel, SSHCFG_ALL },
1.153     dtucker   465:        { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL },
1.293     naddy     466:        { "rhostsrsaauthentication", sDeprecated, SSHCFG_ALL },
1.168     dtucker   467:        { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
1.209     djm       468:        { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL },
1.258     djm       469:        { "hostbasedacceptedkeytypes", sHostbasedAcceptedKeyTypes, SSHCFG_ALL },
1.276     markus    470:        { "hostkeyalgorithms", sHostKeyAlgorithms, SSHCFG_GLOBAL },
1.293     naddy     471:        { "rsaauthentication", sDeprecated, SSHCFG_ALL },
1.168     dtucker   472:        { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
1.258     djm       473:        { "pubkeyacceptedkeytypes", sPubkeyAcceptedKeyTypes, SSHCFG_ALL },
1.153     dtucker   474:        { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */
1.123     markus    475: #ifdef KRB5
1.168     dtucker   476:        { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
1.153     dtucker   477:        { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL },
                    478:        { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL },
                    479:        { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL },
1.121     jakob     480: #else
1.168     dtucker   481:        { "kerberosauthentication", sUnsupported, SSHCFG_ALL },
1.153     dtucker   482:        { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
                    483:        { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
                    484:        { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
1.126     markus    485: #endif
1.153     dtucker   486:        { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
                    487:        { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
1.125     markus    488: #ifdef GSSAPI
1.168     dtucker   489:        { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
1.153     dtucker   490:        { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL },
1.271     djm       491:        { "gssapistrictacceptorcheck", sGssStrictAcceptor, SSHCFG_GLOBAL },
1.125     markus    492: #else
1.168     dtucker   493:        { "gssapiauthentication", sUnsupported, SSHCFG_ALL },
1.153     dtucker   494:        { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
1.271     djm       495:        { "gssapistrictacceptorcheck", sUnsupported, SSHCFG_GLOBAL },
1.125     markus    496: #endif
1.168     dtucker   497:        { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
                    498:        { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
1.170     dtucker   499:        { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL },
1.153     dtucker   500:        { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */
                    501:        { "checkmail", sDeprecated, SSHCFG_GLOBAL },
                    502:        { "listenaddress", sListenAddress, SSHCFG_GLOBAL },
                    503:        { "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
                    504:        { "printmotd", sPrintMotd, SSHCFG_GLOBAL },
                    505:        { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
                    506:        { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
                    507:        { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
1.157     dtucker   508:        { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
                    509:        { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
                    510:        { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
1.153     dtucker   511:        { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
                    512:        { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
1.188     djm       513:        { "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
1.153     dtucker   514:        { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
1.294     djm       515:        { "uselogin", sDeprecated, SSHCFG_GLOBAL },
1.153     dtucker   516:        { "compression", sCompression, SSHCFG_GLOBAL },
1.235     dtucker   517:        { "rekeylimit", sRekeyLimit, SSHCFG_ALL },
1.153     dtucker   518:        { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
                    519:        { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL },  /* obsolete alias */
                    520:        { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
1.178     pyr       521:        { "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
1.227     markus    522:        { "allowusers", sAllowUsers, SSHCFG_ALL },
                    523:        { "denyusers", sDenyUsers, SSHCFG_ALL },
                    524:        { "allowgroups", sAllowGroups, SSHCFG_ALL },
                    525:        { "denygroups", sDenyGroups, SSHCFG_ALL },
1.153     dtucker   526:        { "ciphers", sCiphers, SSHCFG_GLOBAL },
                    527:        { "macs", sMacs, SSHCFG_GLOBAL },
1.295     djm       528:        { "protocol", sIgnore, SSHCFG_GLOBAL },
1.153     dtucker   529:        { "gatewayports", sGatewayPorts, SSHCFG_ALL },
                    530:        { "subsystem", sSubsystem, SSHCFG_GLOBAL },
                    531:        { "maxstartups", sMaxStartups, SSHCFG_GLOBAL },
1.184     dtucker   532:        { "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
1.180     djm       533:        { "maxsessions", sMaxSessions, SSHCFG_ALL },
1.168     dtucker   534:        { "banner", sBanner, SSHCFG_ALL },
1.153     dtucker   535:        { "usedns", sUseDNS, SSHCFG_GLOBAL },
                    536:        { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL },
                    537:        { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL },
1.300     markus    538:        { "clientaliveinterval", sClientAliveInterval, SSHCFG_ALL },
                    539:        { "clientalivecountmax", sClientAliveCountMax, SSHCFG_ALL },
1.209     djm       540:        { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
1.219     djm       541:        { "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
1.306     djm       542:        { "useprivilegeseparation", sDeprecated, SSHCFG_GLOBAL},
1.227     markus    543:        { "acceptenv", sAcceptEnv, SSHCFG_ALL },
1.209     djm       544:        { "permittunnel", sPermitTunnel, SSHCFG_ALL },
1.244     djm       545:        { "permittty", sPermitTTY, SSHCFG_ALL },
1.250     djm       546:        { "permituserrc", sPermitUserRC, SSHCFG_ALL },
1.153     dtucker   547:        { "match", sMatch, SSHCFG_ALL },
1.156     dtucker   548:        { "permitopen", sPermitOpen, SSHCFG_ALL },
1.158     dtucker   549:        { "forcecommand", sForceCommand, SSHCFG_ALL },
1.176     djm       550:        { "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
1.203     djm       551:        { "hostcertificate", sHostCertificate, SSHCFG_GLOBAL },
1.204     djm       552:        { "revokedkeys", sRevokedKeys, SSHCFG_ALL },
                    553:        { "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL },
1.209     djm       554:        { "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL },
1.211     djm       555:        { "kexalgorithms", sKexAlgorithms, SSHCFG_GLOBAL },
1.213     djm       556:        { "ipqos", sIPQoS, SSHCFG_ALL },
1.231     djm       557:        { "authorizedkeyscommand", sAuthorizedKeysCommand, SSHCFG_ALL },
                    558:        { "authorizedkeyscommanduser", sAuthorizedKeysCommandUser, SSHCFG_ALL },
1.270     djm       559:        { "authorizedprincipalscommand", sAuthorizedPrincipalsCommand, SSHCFG_ALL },
                    560:        { "authorizedprincipalscommanduser", sAuthorizedPrincipalsCommandUser, SSHCFG_ALL },
1.225     djm       561:        { "versionaddendum", sVersionAddendum, SSHCFG_GLOBAL },
1.232     djm       562:        { "authenticationmethods", sAuthenticationMethods, SSHCFG_ALL },
1.251     millert   563:        { "streamlocalbindmask", sStreamLocalBindMask, SSHCFG_ALL },
                    564:        { "streamlocalbindunlink", sStreamLocalBindUnlink, SSHCFG_ALL },
                    565:        { "allowstreamlocalforwarding", sAllowStreamLocalForwarding, SSHCFG_ALL },
1.256     djm       566:        { "fingerprinthash", sFingerprintHash, SSHCFG_GLOBAL },
1.301     djm       567:        { "disableforwarding", sDisableForwarding, SSHCFG_ALL },
1.309     djm       568:        { "exposeauthinfo", sExposeAuthInfo, SSHCFG_ALL },
1.316     djm       569:        { "rdomain", sRDomain, SSHCFG_ALL },
1.153     dtucker   570:        { NULL, sBadOption, 0 }
1.1       deraadt   571: };
                    572:
1.182     dtucker   573: static struct {
                    574:        int val;
                    575:        char *text;
                    576: } tunmode_desc[] = {
                    577:        { SSH_TUNMODE_NO, "no" },
                    578:        { SSH_TUNMODE_POINTOPOINT, "point-to-point" },
                    579:        { SSH_TUNMODE_ETHERNET, "ethernet" },
                    580:        { SSH_TUNMODE_YES, "yes" },
                    581:        { -1, NULL }
                    582: };
                    583:
1.27      markus    584: /*
1.73      stevesk   585:  * Returns the number of the token pointed to by cp or sBadOption.
1.27      markus    586:  */
1.1       deraadt   587:
1.34      markus    588: static ServerOpCodes
1.25      markus    589: parse_token(const char *cp, const char *filename,
1.153     dtucker   590:            int linenum, u_int *flags)
1.1       deraadt   591: {
1.55      markus    592:        u_int i;
1.1       deraadt   593:
1.25      markus    594:        for (i = 0; keywords[i].name; i++)
1.153     dtucker   595:                if (strcasecmp(cp, keywords[i].name) == 0) {
                    596:                        *flags = keywords[i].flags;
1.25      markus    597:                        return keywords[i].opcode;
1.153     dtucker   598:                }
1.25      markus    599:
1.78      stevesk   600:        error("%s: line %d: Bad configuration option: %s",
                    601:            filename, linenum, cp);
1.25      markus    602:        return sBadOption;
1.1       deraadt   603: }
                    604:
1.202     djm       605: char *
                    606: derelativise_path(const char *path)
                    607: {
1.259     deraadt   608:        char *expanded, *ret, cwd[PATH_MAX];
1.202     djm       609:
1.257     djm       610:        if (strcasecmp(path, "none") == 0)
                    611:                return xstrdup("none");
1.202     djm       612:        expanded = tilde_expand_filename(path, getuid());
                    613:        if (*expanded == '/')
                    614:                return expanded;
1.207     djm       615:        if (getcwd(cwd, sizeof(cwd)) == NULL)
1.202     djm       616:                fatal("%s: getcwd: %s", __func__, strerror(errno));
                    617:        xasprintf(&ret, "%s/%s", cwd, expanded);
1.239     djm       618:        free(expanded);
1.202     djm       619:        return ret;
                    620: }
                    621:
1.84      itojun    622: static void
1.315     djm       623: add_listen_addr(ServerOptions *options, const char *addr,
                    624:     const char *rdomain, int port)
1.74      stevesk   625: {
1.142     djm       626:        u_int i;
1.74      stevesk   627:
1.315     djm       628:        if (port > 0)
                    629:                add_one_listen_addr(options, addr, rdomain, port);
                    630:        else {
                    631:                for (i = 0; i < options->num_ports; i++) {
                    632:                        add_one_listen_addr(options, addr, rdomain,
                    633:                            options->ports[i]);
                    634:                }
                    635:        }
1.74      stevesk   636: }
                    637:
1.84      itojun    638: static void
1.315     djm       639: add_one_listen_addr(ServerOptions *options, const char *addr,
                    640:     const char *rdomain, int port)
1.29      markus    641: {
                    642:        struct addrinfo hints, *ai, *aitop;
                    643:        char strport[NI_MAXSERV];
                    644:        int gaierr;
1.315     djm       645:        u_int i;
                    646:
                    647:        /* Find listen_addrs entry for this rdomain */
                    648:        for (i = 0; i < options->num_listen_addrs; i++) {
                    649:                if (rdomain == NULL && options->listen_addrs[i].rdomain == NULL)
                    650:                        break;
                    651:                if (rdomain == NULL || options->listen_addrs[i].rdomain == NULL)
                    652:                        continue;
                    653:                if (strcmp(rdomain, options->listen_addrs[i].rdomain) == 0)
                    654:                        break;
                    655:        }
                    656:        if (i >= options->num_listen_addrs) {
                    657:                /* No entry for this rdomain; allocate one */
                    658:                if (i >= INT_MAX)
                    659:                        fatal("%s: too many listen addresses", __func__);
                    660:                options->listen_addrs = xrecallocarray(options->listen_addrs,
                    661:                    options->num_listen_addrs, options->num_listen_addrs + 1,
                    662:                    sizeof(*options->listen_addrs));
                    663:                i = options->num_listen_addrs++;
                    664:                if (rdomain != NULL)
                    665:                        options->listen_addrs[i].rdomain = xstrdup(rdomain);
                    666:        }
                    667:        /* options->listen_addrs[i] points to the addresses for this rdomain */
1.29      markus    668:
1.74      stevesk   669:        memset(&hints, 0, sizeof(hints));
1.138     djm       670:        hints.ai_family = options->address_family;
1.74      stevesk   671:        hints.ai_socktype = SOCK_STREAM;
                    672:        hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0;
1.194     djm       673:        snprintf(strport, sizeof strport, "%d", port);
1.74      stevesk   674:        if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0)
                    675:                fatal("bad addr or host: %s (%s)",
                    676:                    addr ? addr : "<NULL>",
1.173     dtucker   677:                    ssh_gai_strerror(gaierr));
1.74      stevesk   678:        for (ai = aitop; ai->ai_next; ai = ai->ai_next)
                    679:                ;
1.315     djm       680:        ai->ai_next = options->listen_addrs[i].addrs;
                    681:        options->listen_addrs[i].addrs = aitop;
                    682: }
                    683:
                    684: /* Returns nonzero if the routing domain name is valid */
                    685: static int
                    686: valid_rdomain(const char *name)
                    687: {
                    688:        const char *errstr;
                    689:        long long num;
                    690:        struct rt_tableinfo info;
                    691:        int mib[6];
                    692:        size_t miblen = sizeof(mib);
                    693:
                    694:        if (name == NULL)
                    695:                return 1;
                    696:
                    697:        num = strtonum(name, 0, 255, &errstr);
                    698:        if (errstr != NULL)
                    699:                return 0;
                    700:
                    701:        /* Check whether the table actually exists */
                    702:        memset(mib, 0, sizeof(mib));
                    703:        mib[0] = CTL_NET;
                    704:        mib[1] = PF_ROUTE;
                    705:        mib[4] = NET_RT_TABLE;
                    706:        mib[5] = (int)num;
                    707:        if (sysctl(mib, 6, &info, &miblen, NULL, 0) == -1)
                    708:                return 0;
                    709:
                    710:        return 1;
1.29      markus    711: }
                    712:
1.266     dtucker   713: /*
                    714:  * Queue a ListenAddress to be processed once we have all of the Ports
                    715:  * and AddressFamily options.
                    716:  */
                    717: static void
1.315     djm       718: queue_listen_addr(ServerOptions *options, const char *addr,
                    719:     const char *rdomain, int port)
1.266     dtucker   720: {
1.315     djm       721:        struct queued_listenaddr *qla;
                    722:
                    723:        options->queued_listen_addrs = xrecallocarray(
                    724:            options->queued_listen_addrs,
                    725:            options->num_queued_listens, options->num_queued_listens + 1,
                    726:            sizeof(*options->queued_listen_addrs));
                    727:        qla = &options->queued_listen_addrs[options->num_queued_listens++];
                    728:        qla->addr = xstrdup(addr);
                    729:        qla->port = port;
                    730:        qla->rdomain = rdomain == NULL ? NULL : xstrdup(rdomain);
1.266     dtucker   731: }
                    732:
                    733: /*
                    734:  * Process queued (text) ListenAddress entries.
                    735:  */
                    736: static void
                    737: process_queued_listen_addrs(ServerOptions *options)
                    738: {
                    739:        u_int i;
1.315     djm       740:        struct queued_listenaddr *qla;
1.266     dtucker   741:
                    742:        if (options->num_ports == 0)
                    743:                options->ports[options->num_ports++] = SSH_DEFAULT_PORT;
                    744:        if (options->address_family == -1)
                    745:                options->address_family = AF_UNSPEC;
                    746:
                    747:        for (i = 0; i < options->num_queued_listens; i++) {
1.315     djm       748:                qla = &options->queued_listen_addrs[i];
                    749:                add_listen_addr(options, qla->addr, qla->rdomain, qla->port);
                    750:                free(qla->addr);
                    751:                free(qla->rdomain);
1.266     dtucker   752:        }
                    753:        free(options->queued_listen_addrs);
                    754:        options->queued_listen_addrs = NULL;
                    755:        options->num_queued_listens = 0;
                    756: }
                    757:
1.310     djm       758: /*
                    759:  * Inform channels layer of permitopen options from configuration.
                    760:  */
                    761: void
                    762: process_permitopen(struct ssh *ssh, ServerOptions *options)
                    763: {
                    764:        u_int i;
                    765:        int port;
                    766:        char *host, *arg, *oarg;
                    767:
                    768:        channel_clear_adm_permitted_opens(ssh);
                    769:        if (options->num_permitted_opens == 0)
                    770:                return; /* permit any */
                    771:
                    772:        /* handle keywords: "any" / "none" */
                    773:        if (options->num_permitted_opens == 1 &&
                    774:            strcmp(options->permitted_opens[0], "any") == 0)
                    775:                return;
                    776:        if (options->num_permitted_opens == 1 &&
                    777:            strcmp(options->permitted_opens[0], "none") == 0) {
                    778:                channel_disable_adm_local_opens(ssh);
                    779:                return;
                    780:        }
                    781:        /* Otherwise treat it as a list of permitted host:port */
                    782:        for (i = 0; i < options->num_permitted_opens; i++) {
                    783:                oarg = arg = xstrdup(options->permitted_opens[i]);
                    784:                host = hpdelim(&arg);
                    785:                if (host == NULL)
                    786:                        fatal("%s: missing host in PermitOpen", __func__);
                    787:                host = cleanhostname(host);
                    788:                if (arg == NULL || ((port = permitopen_port(arg)) < 0))
                    789:                        fatal("%s: bad port number in PermitOpen", __func__);
                    790:                /* Send it to channels layer */
                    791:                channel_add_adm_permitted_opens(ssh, host, port);
                    792:                free(oarg);
                    793:        }
                    794: }
                    795:
1.226     dtucker   796: struct connection_info *
                    797: get_connection_info(int populate, int use_dns)
                    798: {
1.286     djm       799:        struct ssh *ssh = active_state; /* XXX */
1.226     dtucker   800:        static struct connection_info ci;
                    801:
                    802:        if (!populate)
                    803:                return &ci;
1.286     djm       804:        ci.host = auth_get_canonical_hostname(ssh, use_dns);
                    805:        ci.address = ssh_remote_ipaddr(ssh);
                    806:        ci.laddress = ssh_local_ipaddr(ssh);
                    807:        ci.lport = ssh_local_port(ssh);
1.317     djm       808:        ci.rdomain = ssh_packet_rdomain_in(ssh);
1.226     dtucker   809:        return &ci;
                    810: }
                    811:
1.153     dtucker   812: /*
                    813:  * The strategy for the Match blocks is that the config file is parsed twice.
                    814:  *
                    815:  * The first time is at startup.  activep is initialized to 1 and the
                    816:  * directives in the global context are processed and acted on.  Hitting a
                    817:  * Match directive unsets activep and the directives inside the block are
                    818:  * checked for syntax only.
                    819:  *
                    820:  * The second time is after a connection has been established but before
                    821:  * authentication.  activep is initialized to 2 and global config directives
                    822:  * are ignored since they have already been processed.  If the criteria in a
                    823:  * Match block is met, activep is set and the subsequent directives
                    824:  * processed and actioned until EOF or another Match block unsets it.  Any
                    825:  * options set are copied into the main server config.
                    826:  *
                    827:  * Potential additions/improvements:
1.295     djm       828:  *  - Add Match support for pre-kex directives, eg. Ciphers.
1.153     dtucker   829:  *
                    830:  *  - Add a Tag directive (idea from David Leonard) ala pf, eg:
                    831:  *     Match Address 192.168.0.*
                    832:  *             Tag trusted
                    833:  *     Match Group wheel
                    834:  *             Tag trusted
                    835:  *     Match Tag trusted
                    836:  *             AllowTcpForwarding yes
                    837:  *             GatewayPorts clientspecified
                    838:  *             [...]
                    839:  *
                    840:  *  - Add a PermittedChannelRequests directive
                    841:  *     Match Group shell
                    842:  *             PermittedChannelRequests session,forwarded-tcpip
                    843:  */
                    844:
                    845: static int
1.165     dtucker   846: match_cfg_line_group(const char *grps, int line, const char *user)
                    847: {
                    848:        int result = 0;
                    849:        struct passwd *pw;
                    850:
                    851:        if (user == NULL)
                    852:                goto out;
                    853:
                    854:        if ((pw = getpwnam(user)) == NULL) {
                    855:                debug("Can't match group at line %d because user %.100s does "
                    856:                    "not exist", line, user);
                    857:        } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
                    858:                debug("Can't Match group because user %.100s not in any group "
                    859:                    "at line %d", user, line);
1.186     djm       860:        } else if (ga_match_pattern_list(grps) != 1) {
                    861:                debug("user %.100s does not match group list %.100s at line %d",
                    862:                    user, grps, line);
1.165     dtucker   863:        } else {
1.186     djm       864:                debug("user %.100s matched group list %.100s at line %d", user,
                    865:                    grps, line);
1.165     dtucker   866:                result = 1;
                    867:        }
                    868: out:
                    869:        ga_free();
                    870:        return result;
                    871: }
                    872:
1.226     dtucker   873: /*
1.230     dtucker   874:  * All of the attributes on a single Match line are ANDed together, so we need
1.242     dtucker   875:  * to check every attribute and set the result to zero if any attribute does
1.230     dtucker   876:  * not match.
1.226     dtucker   877:  */
1.165     dtucker   878: static int
1.226     dtucker   879: match_cfg_line(char **condition, int line, struct connection_info *ci)
1.153     dtucker   880: {
1.243     dtucker   881:        int result = 1, attributes = 0, port;
1.153     dtucker   882:        char *arg, *attrib, *cp = *condition;
                    883:
1.226     dtucker   884:        if (ci == NULL)
1.153     dtucker   885:                debug3("checking syntax for 'Match %s'", cp);
                    886:        else
1.226     dtucker   887:                debug3("checking match for '%s' user %s host %s addr %s "
                    888:                    "laddr %s lport %d", cp, ci->user ? ci->user : "(null)",
                    889:                    ci->host ? ci->host : "(null)",
                    890:                    ci->address ? ci->address : "(null)",
                    891:                    ci->laddress ? ci->laddress : "(null)", ci->lport);
1.153     dtucker   892:
                    893:        while ((attrib = strdelim(&cp)) && *attrib != '\0') {
1.243     dtucker   894:                attributes++;
                    895:                if (strcasecmp(attrib, "all") == 0) {
                    896:                        if (attributes != 1 ||
                    897:                            ((arg = strdelim(&cp)) != NULL && *arg != '\0')) {
                    898:                                error("'all' cannot be combined with other "
                    899:                                    "Match attributes");
                    900:                                return -1;
                    901:                        }
                    902:                        *condition = cp;
                    903:                        return 1;
                    904:                }
1.153     dtucker   905:                if ((arg = strdelim(&cp)) == NULL || *arg == '\0') {
                    906:                        error("Missing Match criteria for %s", attrib);
                    907:                        return -1;
                    908:                }
                    909:                if (strcasecmp(attrib, "user") == 0) {
1.226     dtucker   910:                        if (ci == NULL || ci->user == NULL) {
1.153     dtucker   911:                                result = 0;
                    912:                                continue;
                    913:                        }
1.269     djm       914:                        if (match_pattern_list(ci->user, arg, 0) != 1)
1.153     dtucker   915:                                result = 0;
                    916:                        else
                    917:                                debug("user %.100s matched 'User %.100s' at "
1.226     dtucker   918:                                    "line %d", ci->user, arg, line);
1.165     dtucker   919:                } else if (strcasecmp(attrib, "group") == 0) {
1.226     dtucker   920:                        if (ci == NULL || ci->user == NULL) {
                    921:                                result = 0;
                    922:                                continue;
                    923:                        }
                    924:                        switch (match_cfg_line_group(arg, line, ci->user)) {
1.165     dtucker   925:                        case -1:
                    926:                                return -1;
                    927:                        case 0:
                    928:                                result = 0;
                    929:                        }
1.153     dtucker   930:                } else if (strcasecmp(attrib, "host") == 0) {
1.226     dtucker   931:                        if (ci == NULL || ci->host == NULL) {
1.153     dtucker   932:                                result = 0;
                    933:                                continue;
                    934:                        }
1.269     djm       935:                        if (match_hostname(ci->host, arg) != 1)
1.153     dtucker   936:                                result = 0;
                    937:                        else
                    938:                                debug("connection from %.100s matched 'Host "
1.226     dtucker   939:                                    "%.100s' at line %d", ci->host, arg, line);
1.153     dtucker   940:                } else if (strcasecmp(attrib, "address") == 0) {
1.226     dtucker   941:                        if (ci == NULL || ci->address == NULL) {
                    942:                                result = 0;
                    943:                                continue;
                    944:                        }
                    945:                        switch (addr_match_list(ci->address, arg)) {
1.181     djm       946:                        case 1:
                    947:                                debug("connection from %.100s matched 'Address "
1.226     dtucker   948:                                    "%.100s' at line %d", ci->address, arg, line);
1.181     djm       949:                                break;
                    950:                        case 0:
1.183     djm       951:                        case -1:
1.153     dtucker   952:                                result = 0;
1.181     djm       953:                                break;
1.183     djm       954:                        case -2:
1.181     djm       955:                                return -1;
1.153     dtucker   956:                        }
1.226     dtucker   957:                } else if (strcasecmp(attrib, "localaddress") == 0){
                    958:                        if (ci == NULL || ci->laddress == NULL) {
                    959:                                result = 0;
                    960:                                continue;
                    961:                        }
                    962:                        switch (addr_match_list(ci->laddress, arg)) {
                    963:                        case 1:
                    964:                                debug("connection from %.100s matched "
                    965:                                    "'LocalAddress %.100s' at line %d",
                    966:                                    ci->laddress, arg, line);
                    967:                                break;
                    968:                        case 0:
                    969:                        case -1:
                    970:                                result = 0;
                    971:                                break;
                    972:                        case -2:
                    973:                                return -1;
                    974:                        }
                    975:                } else if (strcasecmp(attrib, "localport") == 0) {
                    976:                        if ((port = a2port(arg)) == -1) {
                    977:                                error("Invalid LocalPort '%s' on Match line",
                    978:                                    arg);
                    979:                                return -1;
                    980:                        }
                    981:                        if (ci == NULL || ci->lport == 0) {
                    982:                                result = 0;
                    983:                                continue;
                    984:                        }
                    985:                        /* TODO support port lists */
                    986:                        if (port == ci->lport)
                    987:                                debug("connection from %.100s matched "
                    988:                                    "'LocalPort %d' at line %d",
                    989:                                    ci->laddress, port, line);
                    990:                        else
                    991:                                result = 0;
1.317     djm       992:                } else if (strcasecmp(attrib, "rdomain") == 0) {
                    993:                        if (ci == NULL || ci->rdomain == NULL) {
                    994:                                result = 0;
                    995:                                continue;
                    996:                        }
                    997:                        if (match_pattern_list(ci->rdomain, arg, 0) != 1)
                    998:                                result = 0;
                    999:                        else
                   1000:                                debug("user %.100s matched 'RDomain %.100s' at "
                   1001:                                    "line %d", ci->rdomain, arg, line);
1.153     dtucker  1002:                } else {
                   1003:                        error("Unsupported Match attribute %s", attrib);
                   1004:                        return -1;
                   1005:                }
1.243     dtucker  1006:        }
                   1007:        if (attributes == 0) {
                   1008:                error("One or more attributes required for Match");
                   1009:                return -1;
1.153     dtucker  1010:        }
1.226     dtucker  1011:        if (ci != NULL)
1.153     dtucker  1012:                debug3("match %sfound", result ? "" : "not ");
                   1013:        *condition = cp;
                   1014:        return result;
                   1015: }
                   1016:
1.158     dtucker  1017: #define WHITESPACE " \t\r\n"
                   1018:
1.220     djm      1019: /* Multistate option parsing */
                   1020: struct multistate {
                   1021:        char *key;
                   1022:        int value;
                   1023: };
                   1024: static const struct multistate multistate_addressfamily[] = {
                   1025:        { "inet",                       AF_INET },
                   1026:        { "inet6",                      AF_INET6 },
                   1027:        { "any",                        AF_UNSPEC },
                   1028:        { NULL, -1 }
                   1029: };
                   1030: static const struct multistate multistate_permitrootlogin[] = {
                   1031:        { "without-password",           PERMIT_NO_PASSWD },
1.280     deraadt  1032:        { "prohibit-password",          PERMIT_NO_PASSWD },
1.220     djm      1033:        { "forced-commands-only",       PERMIT_FORCED_ONLY },
                   1034:        { "yes",                        PERMIT_YES },
                   1035:        { "no",                         PERMIT_NO },
                   1036:        { NULL, -1 }
                   1037: };
                   1038: static const struct multistate multistate_compression[] = {
1.297     djm      1039:        { "yes",                        COMP_DELAYED },
1.220     djm      1040:        { "delayed",                    COMP_DELAYED },
                   1041:        { "no",                         COMP_NONE },
                   1042:        { NULL, -1 }
                   1043: };
                   1044: static const struct multistate multistate_gatewayports[] = {
                   1045:        { "clientspecified",            2 },
                   1046:        { "yes",                        1 },
                   1047:        { "no",                         0 },
1.222     djm      1048:        { NULL, -1 }
                   1049: };
1.233     djm      1050: static const struct multistate multistate_tcpfwd[] = {
                   1051:        { "yes",                        FORWARD_ALLOW },
                   1052:        { "all",                        FORWARD_ALLOW },
                   1053:        { "no",                         FORWARD_DENY },
                   1054:        { "remote",                     FORWARD_REMOTE },
                   1055:        { "local",                      FORWARD_LOCAL },
                   1056:        { NULL, -1 }
                   1057: };
1.220     djm      1058:
1.94      markus   1059: int
                   1060: process_server_config_line(ServerOptions *options, char *line,
1.226     dtucker  1061:     const char *filename, int linenum, int *activep,
                   1062:     struct connection_info *connectinfo)
1.1       deraadt  1063: {
1.310     djm      1064:        char *cp, **charptr, *arg, *arg2, *p;
1.237     dtucker  1065:        int cmdline = 0, *intptr, value, value2, n, port;
1.174     dtucker  1066:        SyslogFacility *log_facility_ptr;
                   1067:        LogLevel *log_level_ptr;
1.25      markus   1068:        ServerOpCodes opcode;
1.153     dtucker  1069:        u_int i, flags = 0;
1.151     djm      1070:        size_t len;
1.237     dtucker  1071:        long long val64;
1.220     djm      1072:        const struct multistate *multistate_ptr;
1.303     djm      1073:
                   1074:        /* Strip trailing whitespace. Allow \f (form feed) at EOL only */
                   1075:        if ((len = strlen(line)) == 0)
                   1076:                return 0;
                   1077:        for (len--; len > 0; len--) {
                   1078:                if (strchr(WHITESPACE "\f", line[len]) == NULL)
                   1079:                        break;
                   1080:                line[len] = '\0';
                   1081:        }
1.25      markus   1082:
1.94      markus   1083:        cp = line;
1.148     dtucker  1084:        if ((arg = strdelim(&cp)) == NULL)
1.147     djm      1085:                return 0;
1.94      markus   1086:        /* Ignore leading whitespace */
                   1087:        if (*arg == '\0')
                   1088:                arg = strdelim(&cp);
                   1089:        if (!arg || !*arg || *arg == '#')
                   1090:                return 0;
                   1091:        intptr = NULL;
                   1092:        charptr = NULL;
1.153     dtucker  1093:        opcode = parse_token(arg, filename, linenum, &flags);
                   1094:
                   1095:        if (activep == NULL) { /* We are processing a command line directive */
                   1096:                cmdline = 1;
                   1097:                activep = &cmdline;
                   1098:        }
                   1099:        if (*activep && opcode != sMatch)
                   1100:                debug3("%s:%d setting %s %s", filename, linenum, arg, cp);
                   1101:        if (*activep == 0 && !(flags & SSHCFG_MATCH)) {
1.226     dtucker  1102:                if (connectinfo == NULL) {
1.153     dtucker  1103:                        fatal("%s line %d: Directive '%s' is not allowed "
                   1104:                            "within a Match block", filename, linenum, arg);
                   1105:                } else { /* this is a directive we have already processed */
                   1106:                        while (arg)
                   1107:                                arg = strdelim(&cp);
                   1108:                        return 0;
                   1109:                }
                   1110:        }
                   1111:
1.94      markus   1112:        switch (opcode) {
                   1113:        case sBadOption:
                   1114:                return -1;
                   1115:        case sPort:
                   1116:                /* ignore ports from configfile if cmdline specifies ports */
                   1117:                if (options->ports_from_cmdline)
                   1118:                        return 0;
                   1119:                if (options->num_ports >= MAX_PORTS)
                   1120:                        fatal("%s line %d: too many ports.",
                   1121:                            filename, linenum);
1.48      provos   1122:                arg = strdelim(&cp);
1.94      markus   1123:                if (!arg || *arg == '\0')
                   1124:                        fatal("%s line %d: missing port number.",
                   1125:                            filename, linenum);
                   1126:                options->ports[options->num_ports++] = a2port(arg);
1.194     djm      1127:                if (options->ports[options->num_ports-1] <= 0)
1.94      markus   1128:                        fatal("%s line %d: Badly formatted port number.",
                   1129:                            filename, linenum);
                   1130:                break;
1.29      markus   1131:
1.94      markus   1132:        case sLoginGraceTime:
                   1133:                intptr = &options->login_grace_time;
1.180     djm      1134:  parse_time:
1.94      markus   1135:                arg = strdelim(&cp);
                   1136:                if (!arg || *arg == '\0')
                   1137:                        fatal("%s line %d: missing time value.",
                   1138:                            filename, linenum);
                   1139:                if ((value = convtime(arg)) == -1)
                   1140:                        fatal("%s line %d: invalid time value.",
                   1141:                            filename, linenum);
1.268     djm      1142:                if (*activep && *intptr == -1)
1.94      markus   1143:                        *intptr = value;
                   1144:                break;
                   1145:
                   1146:        case sListenAddress:
                   1147:                arg = strdelim(&cp);
1.139     djm      1148:                if (arg == NULL || *arg == '\0')
                   1149:                        fatal("%s line %d: missing address",
1.94      markus   1150:                            filename, linenum);
1.144     dtucker  1151:                /* check for bare IPv6 address: no "[]" and 2 or more ":" */
                   1152:                if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL
                   1153:                    && strchr(p+1, ':') != NULL) {
1.315     djm      1154:                        port = 0;
                   1155:                        p = arg;
                   1156:                } else {
                   1157:                        p = hpdelim(&arg);
                   1158:                        if (p == NULL)
                   1159:                                fatal("%s line %d: bad address:port usage",
                   1160:                                    filename, linenum);
                   1161:                        p = cleanhostname(p);
                   1162:                        if (arg == NULL)
                   1163:                                port = 0;
                   1164:                        else if ((port = a2port(arg)) <= 0)
                   1165:                                fatal("%s line %d: bad port number",
                   1166:                                    filename, linenum);
                   1167:                }
                   1168:                /* Optional routing table */
                   1169:                arg2 = NULL;
                   1170:                if ((arg = strdelim(&cp)) != NULL) {
                   1171:                        if (strcmp(arg, "rdomain") != 0 ||
                   1172:                            (arg2 = strdelim(&cp)) == NULL)
                   1173:                                fatal("%s line %d: bad ListenAddress syntax",
                   1174:                                    filename, linenum);
                   1175:                        if (!valid_rdomain(arg2))
                   1176:                                fatal("%s line %d: bad routing domain",
                   1177:                                    filename, linenum);
1.144     dtucker  1178:                }
1.139     djm      1179:
1.315     djm      1180:                queue_listen_addr(options, p, arg2, port);
1.25      markus   1181:
1.138     djm      1182:                break;
                   1183:
                   1184:        case sAddressFamily:
1.220     djm      1185:                intptr = &options->address_family;
                   1186:                multistate_ptr = multistate_addressfamily;
                   1187:  parse_multistate:
1.138     djm      1188:                arg = strdelim(&cp);
1.141     markus   1189:                if (!arg || *arg == '\0')
1.220     djm      1190:                        fatal("%s line %d: missing argument.",
1.141     markus   1191:                            filename, linenum);
1.220     djm      1192:                value = -1;
                   1193:                for (i = 0; multistate_ptr[i].key != NULL; i++) {
                   1194:                        if (strcasecmp(arg, multistate_ptr[i].key) == 0) {
                   1195:                                value = multistate_ptr[i].value;
                   1196:                                break;
                   1197:                        }
                   1198:                }
                   1199:                if (value == -1)
                   1200:                        fatal("%s line %d: unsupported option \"%s\".",
1.138     djm      1201:                            filename, linenum, arg);
1.220     djm      1202:                if (*activep && *intptr == -1)
1.138     djm      1203:                        *intptr = value;
1.94      markus   1204:                break;
                   1205:
                   1206:        case sHostKeyFile:
                   1207:                arg = strdelim(&cp);
                   1208:                if (!arg || *arg == '\0')
                   1209:                        fatal("%s line %d: missing file name.",
                   1210:                            filename, linenum);
1.314     djm      1211:                if (*activep)
                   1212:                        servconf_add_hostkey(filename, linenum, options, arg);
1.94      markus   1213:                break;
1.76      stevesk  1214:
1.240     markus   1215:        case sHostKeyAgent:
                   1216:                charptr = &options->host_key_agent;
                   1217:                arg = strdelim(&cp);
                   1218:                if (!arg || *arg == '\0')
                   1219:                        fatal("%s line %d: missing socket name.",
                   1220:                            filename, linenum);
                   1221:                if (*activep && *charptr == NULL)
                   1222:                        *charptr = !strcmp(arg, SSH_AUTHSOCKET_ENV_NAME) ?
                   1223:                            xstrdup(arg) : derelativise_path(arg);
                   1224:                break;
                   1225:
1.203     djm      1226:        case sHostCertificate:
1.314     djm      1227:                arg = strdelim(&cp);
                   1228:                if (!arg || *arg == '\0')
                   1229:                        fatal("%s line %d: missing file name.",
                   1230:                            filename, linenum);
                   1231:                if (*activep)
                   1232:                        servconf_add_hostcert(filename, linenum, options, arg);
                   1233:                break;
1.203     djm      1234:
1.94      markus   1235:        case sPidFile:
                   1236:                charptr = &options->pid_file;
1.314     djm      1237:  parse_filename:
                   1238:                arg = strdelim(&cp);
                   1239:                if (!arg || *arg == '\0')
                   1240:                        fatal("%s line %d: missing file name.",
                   1241:                            filename, linenum);
                   1242:                if (*activep && *charptr == NULL) {
                   1243:                        *charptr = derelativise_path(arg);
                   1244:                        /* increase optional counter */
                   1245:                        if (intptr != NULL)
                   1246:                                *intptr = *intptr + 1;
                   1247:                }
                   1248:                break;
1.25      markus   1249:
1.94      markus   1250:        case sPermitRootLogin:
                   1251:                intptr = &options->permit_root_login;
1.220     djm      1252:                multistate_ptr = multistate_permitrootlogin;
                   1253:                goto parse_multistate;
1.36      markus   1254:
1.94      markus   1255:        case sIgnoreRhosts:
                   1256:                intptr = &options->ignore_rhosts;
1.180     djm      1257:  parse_flag:
1.94      markus   1258:                arg = strdelim(&cp);
                   1259:                if (!arg || *arg == '\0')
                   1260:                        fatal("%s line %d: missing yes/no argument.",
                   1261:                            filename, linenum);
                   1262:                value = 0;      /* silence compiler */
                   1263:                if (strcmp(arg, "yes") == 0)
                   1264:                        value = 1;
                   1265:                else if (strcmp(arg, "no") == 0)
                   1266:                        value = 0;
                   1267:                else
                   1268:                        fatal("%s line %d: Bad yes/no argument: %s",
                   1269:                                filename, linenum, arg);
1.153     dtucker  1270:                if (*activep && *intptr == -1)
1.94      markus   1271:                        *intptr = value;
                   1272:                break;
                   1273:
                   1274:        case sIgnoreUserKnownHosts:
                   1275:                intptr = &options->ignore_user_known_hosts;
                   1276:                goto parse_flag;
                   1277:
                   1278:        case sHostbasedAuthentication:
                   1279:                intptr = &options->hostbased_authentication;
                   1280:                goto parse_flag;
                   1281:
                   1282:        case sHostbasedUsesNameFromPacketOnly:
                   1283:                intptr = &options->hostbased_uses_name_from_packet_only;
                   1284:                goto parse_flag;
                   1285:
1.258     djm      1286:        case sHostbasedAcceptedKeyTypes:
                   1287:                charptr = &options->hostbased_key_types;
                   1288:  parse_keytypes:
                   1289:                arg = strdelim(&cp);
                   1290:                if (!arg || *arg == '\0')
                   1291:                        fatal("%s line %d: Missing argument.",
                   1292:                            filename, linenum);
1.304     djm      1293:                if (*arg != '-' &&
                   1294:                    !sshkey_names_valid2(*arg == '+' ? arg + 1 : arg, 1))
1.258     djm      1295:                        fatal("%s line %d: Bad key types '%s'.",
                   1296:                            filename, linenum, arg ? arg : "<NONE>");
                   1297:                if (*activep && *charptr == NULL)
                   1298:                        *charptr = xstrdup(arg);
                   1299:                break;
                   1300:
1.276     markus   1301:        case sHostKeyAlgorithms:
                   1302:                charptr = &options->hostkeyalgorithms;
                   1303:                goto parse_keytypes;
                   1304:
1.94      markus   1305:        case sPubkeyAuthentication:
                   1306:                intptr = &options->pubkey_authentication;
                   1307:                goto parse_flag;
1.119     jakob    1308:
1.258     djm      1309:        case sPubkeyAcceptedKeyTypes:
                   1310:                charptr = &options->pubkey_key_types;
                   1311:                goto parse_keytypes;
                   1312:
1.94      markus   1313:        case sKerberosAuthentication:
                   1314:                intptr = &options->kerberos_authentication;
                   1315:                goto parse_flag;
                   1316:
                   1317:        case sKerberosOrLocalPasswd:
                   1318:                intptr = &options->kerberos_or_local_passwd;
                   1319:                goto parse_flag;
                   1320:
                   1321:        case sKerberosTicketCleanup:
                   1322:                intptr = &options->kerberos_ticket_cleanup;
1.130     jakob    1323:                goto parse_flag;
                   1324:
                   1325:        case sKerberosGetAFSToken:
                   1326:                intptr = &options->kerberos_get_afs_token;
1.125     markus   1327:                goto parse_flag;
                   1328:
                   1329:        case sGssAuthentication:
                   1330:                intptr = &options->gss_authentication;
                   1331:                goto parse_flag;
                   1332:
                   1333:        case sGssCleanupCreds:
                   1334:                intptr = &options->gss_cleanup_creds;
1.271     djm      1335:                goto parse_flag;
                   1336:
                   1337:        case sGssStrictAcceptor:
                   1338:                intptr = &options->gss_strict_acceptor;
1.94      markus   1339:                goto parse_flag;
                   1340:
                   1341:        case sPasswordAuthentication:
                   1342:                intptr = &options->password_authentication;
                   1343:                goto parse_flag;
                   1344:
                   1345:        case sKbdInteractiveAuthentication:
                   1346:                intptr = &options->kbd_interactive_authentication;
                   1347:                goto parse_flag;
                   1348:
                   1349:        case sChallengeResponseAuthentication:
                   1350:                intptr = &options->challenge_response_authentication;
                   1351:                goto parse_flag;
                   1352:
                   1353:        case sPrintMotd:
                   1354:                intptr = &options->print_motd;
                   1355:                goto parse_flag;
                   1356:
                   1357:        case sPrintLastLog:
                   1358:                intptr = &options->print_lastlog;
                   1359:                goto parse_flag;
                   1360:
                   1361:        case sX11Forwarding:
                   1362:                intptr = &options->x11_forwarding;
                   1363:                goto parse_flag;
                   1364:
                   1365:        case sX11DisplayOffset:
                   1366:                intptr = &options->x11_display_offset;
1.293     naddy    1367:  parse_int:
                   1368:                arg = strdelim(&cp);
                   1369:                if (!arg || *arg == '\0')
                   1370:                        fatal("%s line %d: missing integer value.",
                   1371:                            filename, linenum);
                   1372:                value = atoi(arg);
                   1373:                if (*activep && *intptr == -1)
                   1374:                        *intptr = value;
                   1375:                break;
1.99      stevesk  1376:
                   1377:        case sX11UseLocalhost:
                   1378:                intptr = &options->x11_use_localhost;
                   1379:                goto parse_flag;
1.94      markus   1380:
                   1381:        case sXAuthLocation:
                   1382:                charptr = &options->xauth_location;
                   1383:                goto parse_filename;
                   1384:
1.244     djm      1385:        case sPermitTTY:
                   1386:                intptr = &options->permit_tty;
                   1387:                goto parse_flag;
                   1388:
1.250     djm      1389:        case sPermitUserRC:
                   1390:                intptr = &options->permit_user_rc;
                   1391:                goto parse_flag;
                   1392:
1.94      markus   1393:        case sStrictModes:
                   1394:                intptr = &options->strict_modes;
                   1395:                goto parse_flag;
                   1396:
1.129     markus   1397:        case sTCPKeepAlive:
                   1398:                intptr = &options->tcp_keep_alive;
1.94      markus   1399:                goto parse_flag;
                   1400:
                   1401:        case sEmptyPasswd:
                   1402:                intptr = &options->permit_empty_passwd;
1.113     markus   1403:                goto parse_flag;
                   1404:
                   1405:        case sPermitUserEnvironment:
                   1406:                intptr = &options->permit_user_env;
1.94      markus   1407:                goto parse_flag;
                   1408:
1.111     markus   1409:        case sCompression:
                   1410:                intptr = &options->compression;
1.220     djm      1411:                multistate_ptr = multistate_compression;
                   1412:                goto parse_multistate;
1.94      markus   1413:
1.235     dtucker  1414:        case sRekeyLimit:
                   1415:                arg = strdelim(&cp);
                   1416:                if (!arg || *arg == '\0')
                   1417:                        fatal("%.200s line %d: Missing argument.", filename,
                   1418:                            linenum);
                   1419:                if (strcmp(arg, "default") == 0) {
                   1420:                        val64 = 0;
                   1421:                } else {
1.236     dtucker  1422:                        if (scan_scaled(arg, &val64) == -1)
                   1423:                                fatal("%.200s line %d: Bad number '%s': %s",
                   1424:                                    filename, linenum, arg, strerror(errno));
1.235     dtucker  1425:                        if (val64 != 0 && val64 < 16)
                   1426:                                fatal("%.200s line %d: RekeyLimit too small",
                   1427:                                    filename, linenum);
                   1428:                }
                   1429:                if (*activep && options->rekey_limit == -1)
1.284     dtucker  1430:                        options->rekey_limit = val64;
1.235     dtucker  1431:                if (cp != NULL) { /* optional rekey interval present */
                   1432:                        if (strcmp(cp, "none") == 0) {
                   1433:                                (void)strdelim(&cp);    /* discard */
                   1434:                                break;
                   1435:                        }
                   1436:                        intptr = &options->rekey_interval;
                   1437:                        goto parse_time;
                   1438:                }
                   1439:                break;
                   1440:
1.94      markus   1441:        case sGatewayPorts:
1.251     millert  1442:                intptr = &options->fwd_opts.gateway_ports;
1.220     djm      1443:                multistate_ptr = multistate_gatewayports;
                   1444:                goto parse_multistate;
1.25      markus   1445:
1.122     markus   1446:        case sUseDNS:
                   1447:                intptr = &options->use_dns;
1.94      markus   1448:                goto parse_flag;
1.53      markus   1449:
1.94      markus   1450:        case sLogFacility:
1.174     dtucker  1451:                log_facility_ptr = &options->log_facility;
1.94      markus   1452:                arg = strdelim(&cp);
                   1453:                value = log_facility_number(arg);
1.101     markus   1454:                if (value == SYSLOG_FACILITY_NOT_SET)
1.94      markus   1455:                        fatal("%.200s line %d: unsupported log facility '%s'",
                   1456:                            filename, linenum, arg ? arg : "<NONE>");
1.174     dtucker  1457:                if (*log_facility_ptr == -1)
                   1458:                        *log_facility_ptr = (SyslogFacility) value;
1.94      markus   1459:                break;
1.25      markus   1460:
1.94      markus   1461:        case sLogLevel:
1.174     dtucker  1462:                log_level_ptr = &options->log_level;
1.94      markus   1463:                arg = strdelim(&cp);
                   1464:                value = log_level_number(arg);
1.101     markus   1465:                if (value == SYSLOG_LEVEL_NOT_SET)
1.94      markus   1466:                        fatal("%.200s line %d: unsupported log level '%s'",
                   1467:                            filename, linenum, arg ? arg : "<NONE>");
1.308     djm      1468:                if (*activep && *log_level_ptr == -1)
1.174     dtucker  1469:                        *log_level_ptr = (LogLevel) value;
1.94      markus   1470:                break;
                   1471:
                   1472:        case sAllowTcpForwarding:
                   1473:                intptr = &options->allow_tcp_forwarding;
1.233     djm      1474:                multistate_ptr = multistate_tcpfwd;
                   1475:                goto parse_multistate;
1.102     provos   1476:
1.251     millert  1477:        case sAllowStreamLocalForwarding:
                   1478:                intptr = &options->allow_streamlocal_forwarding;
                   1479:                multistate_ptr = multistate_tcpfwd;
                   1480:                goto parse_multistate;
                   1481:
1.178     pyr      1482:        case sAllowAgentForwarding:
                   1483:                intptr = &options->allow_agent_forwarding;
                   1484:                goto parse_flag;
                   1485:
1.301     djm      1486:        case sDisableForwarding:
                   1487:                intptr = &options->disable_forwarding;
                   1488:                goto parse_flag;
                   1489:
1.94      markus   1490:        case sAllowUsers:
                   1491:                while ((arg = strdelim(&cp)) && *arg != '\0') {
1.299     djm      1492:                        if (match_user(NULL, NULL, NULL, arg) == -1)
                   1493:                                fatal("%s line %d: invalid AllowUsers pattern: "
                   1494:                                    "\"%.100s\"", filename, linenum, arg);
1.227     markus   1495:                        if (!*activep)
                   1496:                                continue;
1.314     djm      1497:                        array_append(filename, linenum, "AllowUsers",
                   1498:                            &options->allow_users, &options->num_allow_users,
                   1499:                            arg);
1.94      markus   1500:                }
                   1501:                break;
1.25      markus   1502:
1.94      markus   1503:        case sDenyUsers:
                   1504:                while ((arg = strdelim(&cp)) && *arg != '\0') {
1.299     djm      1505:                        if (match_user(NULL, NULL, NULL, arg) == -1)
                   1506:                                fatal("%s line %d: invalid DenyUsers pattern: "
                   1507:                                    "\"%.100s\"", filename, linenum, arg);
1.227     markus   1508:                        if (!*activep)
                   1509:                                continue;
1.314     djm      1510:                        array_append(filename, linenum, "DenyUsers",
                   1511:                            &options->deny_users, &options->num_deny_users,
                   1512:                            arg);
1.94      markus   1513:                }
                   1514:                break;
1.25      markus   1515:
1.94      markus   1516:        case sAllowGroups:
                   1517:                while ((arg = strdelim(&cp)) && *arg != '\0') {
1.227     markus   1518:                        if (!*activep)
                   1519:                                continue;
1.314     djm      1520:                        array_append(filename, linenum, "AllowGroups",
                   1521:                            &options->allow_groups, &options->num_allow_groups,
                   1522:                            arg);
1.94      markus   1523:                }
                   1524:                break;
1.33      markus   1525:
1.94      markus   1526:        case sDenyGroups:
                   1527:                while ((arg = strdelim(&cp)) && *arg != '\0') {
1.227     markus   1528:                        if (!*activep)
                   1529:                                continue;
1.314     djm      1530:                        array_append(filename, linenum, "DenyGroups",
                   1531:                            &options->deny_groups, &options->num_deny_groups,
                   1532:                            arg);
1.94      markus   1533:                }
                   1534:                break;
1.66      markus   1535:
1.94      markus   1536:        case sCiphers:
                   1537:                arg = strdelim(&cp);
                   1538:                if (!arg || *arg == '\0')
                   1539:                        fatal("%s line %d: Missing argument.", filename, linenum);
1.304     djm      1540:                if (*arg != '-' && !ciphers_valid(*arg == '+' ? arg + 1 : arg))
1.94      markus   1541:                        fatal("%s line %d: Bad SSH2 cipher spec '%s'.",
                   1542:                            filename, linenum, arg ? arg : "<NONE>");
                   1543:                if (options->ciphers == NULL)
                   1544:                        options->ciphers = xstrdup(arg);
                   1545:                break;
1.33      markus   1546:
1.94      markus   1547:        case sMacs:
                   1548:                arg = strdelim(&cp);
                   1549:                if (!arg || *arg == '\0')
                   1550:                        fatal("%s line %d: Missing argument.", filename, linenum);
1.304     djm      1551:                if (*arg != '-' && !mac_valid(*arg == '+' ? arg + 1 : arg))
1.94      markus   1552:                        fatal("%s line %d: Bad SSH2 mac spec '%s'.",
                   1553:                            filename, linenum, arg ? arg : "<NONE>");
                   1554:                if (options->macs == NULL)
                   1555:                        options->macs = xstrdup(arg);
1.211     djm      1556:                break;
                   1557:
                   1558:        case sKexAlgorithms:
                   1559:                arg = strdelim(&cp);
                   1560:                if (!arg || *arg == '\0')
                   1561:                        fatal("%s line %d: Missing argument.",
                   1562:                            filename, linenum);
1.304     djm      1563:                if (*arg != '-' &&
                   1564:                    !kex_names_valid(*arg == '+' ? arg + 1 : arg))
1.211     djm      1565:                        fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.",
                   1566:                            filename, linenum, arg ? arg : "<NONE>");
                   1567:                if (options->kex_algorithms == NULL)
                   1568:                        options->kex_algorithms = xstrdup(arg);
1.94      markus   1569:                break;
1.43      jakob    1570:
1.94      markus   1571:        case sSubsystem:
                   1572:                if (options->num_subsystems >= MAX_SUBSYSTEMS) {
                   1573:                        fatal("%s line %d: too many subsystems defined.",
1.95      deraadt  1574:                            filename, linenum);
1.94      markus   1575:                }
                   1576:                arg = strdelim(&cp);
                   1577:                if (!arg || *arg == '\0')
                   1578:                        fatal("%s line %d: Missing subsystem name.",
1.95      deraadt  1579:                            filename, linenum);
1.153     dtucker  1580:                if (!*activep) {
                   1581:                        arg = strdelim(&cp);
                   1582:                        break;
                   1583:                }
1.94      markus   1584:                for (i = 0; i < options->num_subsystems; i++)
                   1585:                        if (strcmp(arg, options->subsystem_name[i]) == 0)
                   1586:                                fatal("%s line %d: Subsystem '%s' already defined.",
1.95      deraadt  1587:                                    filename, linenum, arg);
1.94      markus   1588:                options->subsystem_name[options->num_subsystems] = xstrdup(arg);
                   1589:                arg = strdelim(&cp);
                   1590:                if (!arg || *arg == '\0')
                   1591:                        fatal("%s line %d: Missing subsystem command.",
1.95      deraadt  1592:                            filename, linenum);
1.94      markus   1593:                options->subsystem_command[options->num_subsystems] = xstrdup(arg);
1.151     djm      1594:
                   1595:                /* Collect arguments (separate to executable) */
                   1596:                p = xstrdup(arg);
                   1597:                len = strlen(p) + 1;
                   1598:                while ((arg = strdelim(&cp)) != NULL && *arg != '\0') {
                   1599:                        len += 1 + strlen(arg);
1.264     deraadt  1600:                        p = xreallocarray(p, 1, len);
1.151     djm      1601:                        strlcat(p, " ", len);
                   1602:                        strlcat(p, arg, len);
                   1603:                }
                   1604:                options->subsystem_args[options->num_subsystems] = p;
1.94      markus   1605:                options->num_subsystems++;
                   1606:                break;
1.46      markus   1607:
1.94      markus   1608:        case sMaxStartups:
                   1609:                arg = strdelim(&cp);
                   1610:                if (!arg || *arg == '\0')
                   1611:                        fatal("%s line %d: Missing MaxStartups spec.",
1.95      deraadt  1612:                            filename, linenum);
1.94      markus   1613:                if ((n = sscanf(arg, "%d:%d:%d",
                   1614:                    &options->max_startups_begin,
                   1615:                    &options->max_startups_rate,
                   1616:                    &options->max_startups)) == 3) {
                   1617:                        if (options->max_startups_begin >
                   1618:                            options->max_startups ||
                   1619:                            options->max_startups_rate > 100 ||
                   1620:                            options->max_startups_rate < 1)
1.50      markus   1621:                                fatal("%s line %d: Illegal MaxStartups spec.",
1.87      stevesk  1622:                                    filename, linenum);
1.94      markus   1623:                } else if (n != 1)
                   1624:                        fatal("%s line %d: Illegal MaxStartups spec.",
                   1625:                            filename, linenum);
                   1626:                else
                   1627:                        options->max_startups = options->max_startups_begin;
                   1628:                break;
1.133     dtucker  1629:
                   1630:        case sMaxAuthTries:
                   1631:                intptr = &options->max_authtries;
                   1632:                goto parse_int;
1.94      markus   1633:
1.180     djm      1634:        case sMaxSessions:
                   1635:                intptr = &options->max_sessions;
                   1636:                goto parse_int;
                   1637:
1.94      markus   1638:        case sBanner:
                   1639:                charptr = &options->banner;
                   1640:                goto parse_filename;
1.176     djm      1641:
1.94      markus   1642:        /*
                   1643:         * These options can contain %X options expanded at
                   1644:         * connect time, so that you can specify paths like:
                   1645:         *
                   1646:         * AuthorizedKeysFile   /etc/ssh_keys/%u
                   1647:         */
                   1648:        case sAuthorizedKeysFile:
1.219     djm      1649:                if (*activep && options->num_authkeys_files == 0) {
                   1650:                        while ((arg = strdelim(&cp)) && *arg != '\0') {
1.314     djm      1651:                                arg = tilde_expand_filename(arg, getuid());
                   1652:                                array_append(filename, linenum,
                   1653:                                    "AuthorizedKeysFile",
                   1654:                                    &options->authorized_keys_files,
                   1655:                                    &options->num_authkeys_files, arg);
                   1656:                                free(arg);
1.219     djm      1657:                        }
                   1658:                }
                   1659:                return 0;
                   1660:
1.208     djm      1661:        case sAuthorizedPrincipalsFile:
                   1662:                charptr = &options->authorized_principals_file;
1.205     djm      1663:                arg = strdelim(&cp);
                   1664:                if (!arg || *arg == '\0')
                   1665:                        fatal("%s line %d: missing file name.",
                   1666:                            filename, linenum);
                   1667:                if (*activep && *charptr == NULL) {
1.206     markus   1668:                        *charptr = tilde_expand_filename(arg, getuid());
1.205     djm      1669:                        /* increase optional counter */
                   1670:                        if (intptr != NULL)
                   1671:                                *intptr = *intptr + 1;
                   1672:                }
                   1673:                break;
1.94      markus   1674:
                   1675:        case sClientAliveInterval:
                   1676:                intptr = &options->client_alive_interval;
                   1677:                goto parse_time;
                   1678:
                   1679:        case sClientAliveCountMax:
                   1680:                intptr = &options->client_alive_count_max;
                   1681:                goto parse_int;
1.131     djm      1682:
                   1683:        case sAcceptEnv:
                   1684:                while ((arg = strdelim(&cp)) && *arg != '\0') {
                   1685:                        if (strchr(arg, '=') != NULL)
                   1686:                                fatal("%s line %d: Invalid environment name.",
                   1687:                                    filename, linenum);
1.153     dtucker  1688:                        if (!*activep)
1.227     markus   1689:                                continue;
1.314     djm      1690:                        array_append(filename, linenum, "AcceptEnv",
                   1691:                            &options->accept_env, &options->num_accept_env,
                   1692:                            arg);
1.131     djm      1693:                }
                   1694:                break;
1.145     reyk     1695:
                   1696:        case sPermitTunnel:
                   1697:                intptr = &options->permit_tun;
1.146     reyk     1698:                arg = strdelim(&cp);
                   1699:                if (!arg || *arg == '\0')
                   1700:                        fatal("%s line %d: Missing yes/point-to-point/"
                   1701:                            "ethernet/no argument.", filename, linenum);
1.182     dtucker  1702:                value = -1;
                   1703:                for (i = 0; tunmode_desc[i].val != -1; i++)
                   1704:                        if (strcmp(tunmode_desc[i].text, arg) == 0) {
                   1705:                                value = tunmode_desc[i].val;
                   1706:                                break;
                   1707:                        }
                   1708:                if (value == -1)
1.146     reyk     1709:                        fatal("%s line %d: Bad yes/point-to-point/ethernet/"
                   1710:                            "no argument: %s", filename, linenum, arg);
1.268     djm      1711:                if (*activep && *intptr == -1)
1.146     reyk     1712:                        *intptr = value;
                   1713:                break;
1.94      markus   1714:
1.153     dtucker  1715:        case sMatch:
                   1716:                if (cmdline)
                   1717:                        fatal("Match directive not supported as a command-line "
                   1718:                           "option");
1.226     dtucker  1719:                value = match_cfg_line(&cp, linenum, connectinfo);
1.153     dtucker  1720:                if (value < 0)
                   1721:                        fatal("%s line %d: Bad Match condition", filename,
                   1722:                            linenum);
                   1723:                *activep = value;
1.156     dtucker  1724:                break;
                   1725:
                   1726:        case sPermitOpen:
                   1727:                arg = strdelim(&cp);
                   1728:                if (!arg || *arg == '\0')
                   1729:                        fatal("%s line %d: missing PermitOpen specification",
                   1730:                            filename, linenum);
1.313     djm      1731:                value = options->num_permitted_opens;   /* modified later */
1.310     djm      1732:                if (strcmp(arg, "any") == 0 || strcmp(arg, "none") == 0) {
1.313     djm      1733:                        if (*activep && value == 0) {
1.224     dtucker  1734:                                options->num_permitted_opens = 1;
1.310     djm      1735:                                options->permitted_opens = xcalloc(1,
                   1736:                                    sizeof(*options->permitted_opens));
                   1737:                                options->permitted_opens[0] = xstrdup(arg);
1.311     dtucker  1738:                        }
1.156     dtucker  1739:                        break;
                   1740:                }
1.159     dtucker  1741:                for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) {
1.310     djm      1742:                        arg2 = xstrdup(arg);
1.159     dtucker  1743:                        p = hpdelim(&arg);
                   1744:                        if (p == NULL)
                   1745:                                fatal("%s line %d: missing host in PermitOpen",
                   1746:                                    filename, linenum);
                   1747:                        p = cleanhostname(p);
1.223     dtucker  1748:                        if (arg == NULL || ((port = permitopen_port(arg)) < 0))
1.159     dtucker  1749:                                fatal("%s line %d: bad port number in "
                   1750:                                    "PermitOpen", filename, linenum);
1.313     djm      1751:                        if (*activep && value == 0) {
1.314     djm      1752:                                array_append(filename, linenum,
                   1753:                                    "PermitOpen",
                   1754:                                    &options->permitted_opens,
                   1755:                                    &options->num_permitted_opens, arg2);
                   1756:                        }
                   1757:                        free(arg2);
1.159     dtucker  1758:                }
1.153     dtucker  1759:                break;
                   1760:
1.158     dtucker  1761:        case sForceCommand:
1.262     dtucker  1762:                if (cp == NULL || *cp == '\0')
1.158     dtucker  1763:                        fatal("%.200s line %d: Missing argument.", filename,
                   1764:                            linenum);
                   1765:                len = strspn(cp, WHITESPACE);
                   1766:                if (*activep && options->adm_forced_command == NULL)
                   1767:                        options->adm_forced_command = xstrdup(cp + len);
                   1768:                return 0;
                   1769:
1.176     djm      1770:        case sChrootDirectory:
                   1771:                charptr = &options->chroot_directory;
1.177     djm      1772:
                   1773:                arg = strdelim(&cp);
                   1774:                if (!arg || *arg == '\0')
                   1775:                        fatal("%s line %d: missing file name.",
                   1776:                            filename, linenum);
                   1777:                if (*activep && *charptr == NULL)
                   1778:                        *charptr = xstrdup(arg);
                   1779:                break;
1.176     djm      1780:
1.204     djm      1781:        case sTrustedUserCAKeys:
                   1782:                charptr = &options->trusted_user_ca_keys;
                   1783:                goto parse_filename;
                   1784:
                   1785:        case sRevokedKeys:
                   1786:                charptr = &options->revoked_keys_file;
                   1787:                goto parse_filename;
                   1788:
1.213     djm      1789:        case sIPQoS:
                   1790:                arg = strdelim(&cp);
                   1791:                if ((value = parse_ipqos(arg)) == -1)
                   1792:                        fatal("%s line %d: Bad IPQoS value: %s",
                   1793:                            filename, linenum, arg);
                   1794:                arg = strdelim(&cp);
                   1795:                if (arg == NULL)
                   1796:                        value2 = value;
                   1797:                else if ((value2 = parse_ipqos(arg)) == -1)
                   1798:                        fatal("%s line %d: Bad IPQoS value: %s",
                   1799:                            filename, linenum, arg);
                   1800:                if (*activep) {
                   1801:                        options->ip_qos_interactive = value;
                   1802:                        options->ip_qos_bulk = value2;
                   1803:                }
                   1804:                break;
                   1805:
1.225     djm      1806:        case sVersionAddendum:
1.262     dtucker  1807:                if (cp == NULL || *cp == '\0')
1.225     djm      1808:                        fatal("%.200s line %d: Missing argument.", filename,
                   1809:                            linenum);
                   1810:                len = strspn(cp, WHITESPACE);
                   1811:                if (*activep && options->version_addendum == NULL) {
                   1812:                        if (strcasecmp(cp + len, "none") == 0)
                   1813:                                options->version_addendum = xstrdup("");
                   1814:                        else if (strchr(cp + len, '\r') != NULL)
                   1815:                                fatal("%.200s line %d: Invalid argument",
                   1816:                                    filename, linenum);
                   1817:                        else
                   1818:                                options->version_addendum = xstrdup(cp + len);
                   1819:                }
                   1820:                return 0;
                   1821:
1.231     djm      1822:        case sAuthorizedKeysCommand:
1.255     jsg      1823:                if (cp == NULL)
                   1824:                        fatal("%.200s line %d: Missing argument.", filename,
                   1825:                            linenum);
1.231     djm      1826:                len = strspn(cp, WHITESPACE);
                   1827:                if (*activep && options->authorized_keys_command == NULL) {
                   1828:                        if (cp[len] != '/' && strcasecmp(cp + len, "none") != 0)
                   1829:                                fatal("%.200s line %d: AuthorizedKeysCommand "
                   1830:                                    "must be an absolute path",
                   1831:                                    filename, linenum);
                   1832:                        options->authorized_keys_command = xstrdup(cp + len);
                   1833:                }
                   1834:                return 0;
                   1835:
                   1836:        case sAuthorizedKeysCommandUser:
                   1837:                charptr = &options->authorized_keys_command_user;
                   1838:
                   1839:                arg = strdelim(&cp);
1.255     jsg      1840:                if (!arg || *arg == '\0')
                   1841:                        fatal("%s line %d: missing AuthorizedKeysCommandUser "
                   1842:                            "argument.", filename, linenum);
1.231     djm      1843:                if (*activep && *charptr == NULL)
                   1844:                        *charptr = xstrdup(arg);
                   1845:                break;
                   1846:
1.270     djm      1847:        case sAuthorizedPrincipalsCommand:
                   1848:                if (cp == NULL)
                   1849:                        fatal("%.200s line %d: Missing argument.", filename,
                   1850:                            linenum);
                   1851:                len = strspn(cp, WHITESPACE);
                   1852:                if (*activep &&
                   1853:                    options->authorized_principals_command == NULL) {
                   1854:                        if (cp[len] != '/' && strcasecmp(cp + len, "none") != 0)
                   1855:                                fatal("%.200s line %d: "
                   1856:                                    "AuthorizedPrincipalsCommand must be "
                   1857:                                    "an absolute path", filename, linenum);
                   1858:                        options->authorized_principals_command =
                   1859:                            xstrdup(cp + len);
                   1860:                }
                   1861:                return 0;
                   1862:
                   1863:        case sAuthorizedPrincipalsCommandUser:
                   1864:                charptr = &options->authorized_principals_command_user;
                   1865:
                   1866:                arg = strdelim(&cp);
                   1867:                if (!arg || *arg == '\0')
                   1868:                        fatal("%s line %d: missing "
                   1869:                            "AuthorizedPrincipalsCommandUser argument.",
                   1870:                            filename, linenum);
                   1871:                if (*activep && *charptr == NULL)
                   1872:                        *charptr = xstrdup(arg);
                   1873:                break;
                   1874:
1.232     djm      1875:        case sAuthenticationMethods:
1.268     djm      1876:                if (options->num_auth_methods == 0) {
1.291     djm      1877:                        value = 0; /* seen "any" pseudo-method */
1.292     djm      1878:                        value2 = 0; /* sucessfully parsed any method */
1.232     djm      1879:                        while ((arg = strdelim(&cp)) && *arg != '\0') {
1.291     djm      1880:                                if (strcmp(arg, "any") == 0) {
                   1881:                                        if (options->num_auth_methods > 0) {
                   1882:                                                fatal("%s line %d: \"any\" "
                   1883:                                                    "must appear alone in "
                   1884:                                                    "AuthenticationMethods",
                   1885:                                                    filename, linenum);
                   1886:                                        }
                   1887:                                        value = 1;
                   1888:                                } else if (value) {
                   1889:                                        fatal("%s line %d: \"any\" must appear "
                   1890:                                            "alone in AuthenticationMethods",
                   1891:                                            filename, linenum);
                   1892:                                } else if (auth2_methods_valid(arg, 0) != 0) {
1.232     djm      1893:                                        fatal("%s line %d: invalid "
                   1894:                                            "authentication method list.",
                   1895:                                            filename, linenum);
1.291     djm      1896:                                }
1.292     djm      1897:                                value2 = 1;
1.268     djm      1898:                                if (!*activep)
                   1899:                                        continue;
1.314     djm      1900:                                array_append(filename, linenum,
                   1901:                                    "AuthenticationMethods",
                   1902:                                    &options->auth_methods,
                   1903:                                    &options->num_auth_methods, arg);
1.232     djm      1904:                        }
1.292     djm      1905:                        if (value2 == 0) {
1.291     djm      1906:                                fatal("%s line %d: no AuthenticationMethods "
                   1907:                                    "specified", filename, linenum);
                   1908:                        }
1.232     djm      1909:                }
                   1910:                return 0;
                   1911:
1.251     millert  1912:        case sStreamLocalBindMask:
                   1913:                arg = strdelim(&cp);
                   1914:                if (!arg || *arg == '\0')
1.268     djm      1915:                        fatal("%s line %d: missing StreamLocalBindMask "
                   1916:                            "argument.", filename, linenum);
1.251     millert  1917:                /* Parse mode in octal format */
                   1918:                value = strtol(arg, &p, 8);
                   1919:                if (arg == p || value < 0 || value > 0777)
                   1920:                        fatal("%s line %d: Bad mask.", filename, linenum);
1.268     djm      1921:                if (*activep)
                   1922:                        options->fwd_opts.streamlocal_bind_mask = (mode_t)value;
1.251     millert  1923:                break;
                   1924:
                   1925:        case sStreamLocalBindUnlink:
                   1926:                intptr = &options->fwd_opts.streamlocal_bind_unlink;
                   1927:                goto parse_flag;
                   1928:
1.256     djm      1929:        case sFingerprintHash:
                   1930:                arg = strdelim(&cp);
                   1931:                if (!arg || *arg == '\0')
                   1932:                        fatal("%.200s line %d: Missing argument.",
                   1933:                            filename, linenum);
                   1934:                if ((value = ssh_digest_alg_by_name(arg)) == -1)
                   1935:                        fatal("%.200s line %d: Invalid hash algorithm \"%s\".",
                   1936:                            filename, linenum, arg);
                   1937:                if (*activep)
                   1938:                        options->fingerprint_hash = value;
                   1939:                break;
                   1940:
1.309     djm      1941:        case sExposeAuthInfo:
                   1942:                intptr = &options->expose_userauth_info;
                   1943:                goto parse_flag;
                   1944:
1.316     djm      1945:        case sRDomain:
                   1946:                charptr = &options->routing_domain;
                   1947:                arg = strdelim(&cp);
                   1948:                if (!arg || *arg == '\0')
                   1949:                        fatal("%.200s line %d: Missing argument.",
                   1950:                            filename, linenum);
                   1951:                if (strcasecmp(arg, "none") != 0 && strcmp(arg, "%D") != 0 &&
                   1952:                    !valid_rdomain(arg))
                   1953:                        fatal("%s line %d: bad routing domain",
                   1954:                            filename, linenum);
                   1955:                if (*activep && *charptr == NULL)
                   1956:                        *charptr = xstrdup(arg);
                   1957:
1.94      markus   1958:        case sDeprecated:
1.295     djm      1959:        case sIgnore:
1.121     jakob    1960:        case sUnsupported:
1.295     djm      1961:                do_log2(opcode == sIgnore ?
                   1962:                    SYSLOG_LEVEL_DEBUG2 : SYSLOG_LEVEL_INFO,
                   1963:                    "%s line %d: %s option %s", filename, linenum,
                   1964:                    opcode == sUnsupported ? "Unsupported" : "Deprecated", arg);
1.94      markus   1965:                while (arg)
                   1966:                    arg = strdelim(&cp);
                   1967:                break;
                   1968:
                   1969:        default:
                   1970:                fatal("%s line %d: Missing handler for opcode %s (%d)",
                   1971:                    filename, linenum, arg, opcode);
                   1972:        }
                   1973:        if ((arg = strdelim(&cp)) != NULL && *arg != '\0')
                   1974:                fatal("%s line %d: garbage at end of line; \"%.200s\".",
                   1975:                    filename, linenum, arg);
                   1976:        return 0;
                   1977: }
                   1978:
                   1979: /* Reads the server configuration file. */
1.25      markus   1980:
1.94      markus   1981: void
1.134     djm      1982: load_server_config(const char *filename, Buffer *conf)
1.94      markus   1983: {
1.229     dtucker  1984:        char line[4096], *cp;
1.94      markus   1985:        FILE *f;
1.229     dtucker  1986:        int lineno = 0;
1.81      stevesk  1987:
1.134     djm      1988:        debug2("%s: filename %s", __func__, filename);
                   1989:        if ((f = fopen(filename, "r")) == NULL) {
1.94      markus   1990:                perror(filename);
                   1991:                exit(1);
                   1992:        }
1.134     djm      1993:        buffer_clear(conf);
                   1994:        while (fgets(line, sizeof(line), f)) {
1.229     dtucker  1995:                lineno++;
                   1996:                if (strlen(line) == sizeof(line) - 1)
                   1997:                        fatal("%s line %d too long", filename, lineno);
1.134     djm      1998:                /*
                   1999:                 * Trim out comments and strip whitespace
1.135     deraadt  2000:                 * NB - preserve newlines, they are needed to reproduce
1.134     djm      2001:                 * line numbers later for error messages
                   2002:                 */
                   2003:                if ((cp = strchr(line, '#')) != NULL)
                   2004:                        memcpy(cp, "\n", 2);
                   2005:                cp = line + strspn(line, " \t\r");
                   2006:
                   2007:                buffer_append(conf, cp, strlen(cp));
                   2008:        }
                   2009:        buffer_append(conf, "\0", 1);
                   2010:        fclose(f);
                   2011:        debug2("%s: done config len = %d", __func__, buffer_len(conf));
                   2012: }
                   2013:
                   2014: void
1.226     dtucker  2015: parse_server_match_config(ServerOptions *options,
                   2016:    struct connection_info *connectinfo)
1.153     dtucker  2017: {
                   2018:        ServerOptions mo;
                   2019:
                   2020:        initialize_server_options(&mo);
1.226     dtucker  2021:        parse_server_config(&mo, "reprocess config", &cfg, connectinfo);
1.168     dtucker  2022:        copy_set_server_options(options, &mo, 0);
1.153     dtucker  2023: }
                   2024:
1.226     dtucker  2025: int parse_server_match_testspec(struct connection_info *ci, char *spec)
                   2026: {
                   2027:        char *p;
                   2028:
                   2029:        while ((p = strsep(&spec, ",")) && *p != '\0') {
                   2030:                if (strncmp(p, "addr=", 5) == 0) {
                   2031:                        ci->address = xstrdup(p + 5);
                   2032:                } else if (strncmp(p, "host=", 5) == 0) {
                   2033:                        ci->host = xstrdup(p + 5);
                   2034:                } else if (strncmp(p, "user=", 5) == 0) {
                   2035:                        ci->user = xstrdup(p + 5);
                   2036:                } else if (strncmp(p, "laddr=", 6) == 0) {
                   2037:                        ci->laddress = xstrdup(p + 6);
1.317     djm      2038:                } else if (strncmp(p, "rdomain=", 8) == 0) {
                   2039:                        ci->rdomain = xstrdup(p + 8);
1.226     dtucker  2040:                } else if (strncmp(p, "lport=", 6) == 0) {
                   2041:                        ci->lport = a2port(p + 6);
                   2042:                        if (ci->lport == -1) {
                   2043:                                fprintf(stderr, "Invalid port '%s' in test mode"
                   2044:                                   " specification %s\n", p+6, p);
                   2045:                                return -1;
                   2046:                        }
                   2047:                } else {
                   2048:                        fprintf(stderr, "Invalid test mode specification %s\n",
                   2049:                           p);
                   2050:                        return -1;
                   2051:                }
                   2052:        }
                   2053:        return 0;
                   2054: }
                   2055:
                   2056: /*
                   2057:  * returns 1 for a complete spec, 0 for partial spec and -1 for an
                   2058:  * empty spec.
                   2059:  */
                   2060: int server_match_spec_complete(struct connection_info *ci)
                   2061: {
                   2062:        if (ci->user && ci->host && ci->address)
                   2063:                return 1;       /* complete */
                   2064:        if (!ci->user && !ci->host && !ci->address)
                   2065:                return -1;      /* empty */
                   2066:        return 0;       /* partial */
                   2067: }
                   2068:
1.168     dtucker  2069: /*
                   2070:  * Copy any supported values that are set.
                   2071:  *
1.195     jj       2072:  * If the preauth flag is set, we do not bother copying the string or
1.168     dtucker  2073:  * array values that are not used pre-authentication, because any that we
                   2074:  * do use must be explictly sent in mm_getpwnamallow().
                   2075:  */
1.153     dtucker  2076: void
1.168     dtucker  2077: copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
1.153     dtucker  2078: {
1.247     djm      2079: #define M_CP_INTOPT(n) do {\
                   2080:        if (src->n != -1) \
                   2081:                dst->n = src->n; \
                   2082: } while (0)
                   2083:
1.168     dtucker  2084:        M_CP_INTOPT(password_authentication);
                   2085:        M_CP_INTOPT(gss_authentication);
                   2086:        M_CP_INTOPT(pubkey_authentication);
                   2087:        M_CP_INTOPT(kerberos_authentication);
                   2088:        M_CP_INTOPT(hostbased_authentication);
1.209     djm      2089:        M_CP_INTOPT(hostbased_uses_name_from_packet_only);
1.168     dtucker  2090:        M_CP_INTOPT(kbd_interactive_authentication);
1.175     dtucker  2091:        M_CP_INTOPT(permit_root_login);
1.188     djm      2092:        M_CP_INTOPT(permit_empty_passwd);
1.168     dtucker  2093:
                   2094:        M_CP_INTOPT(allow_tcp_forwarding);
1.251     millert  2095:        M_CP_INTOPT(allow_streamlocal_forwarding);
1.178     pyr      2096:        M_CP_INTOPT(allow_agent_forwarding);
1.301     djm      2097:        M_CP_INTOPT(disable_forwarding);
1.309     djm      2098:        M_CP_INTOPT(expose_userauth_info);
1.209     djm      2099:        M_CP_INTOPT(permit_tun);
1.251     millert  2100:        M_CP_INTOPT(fwd_opts.gateway_ports);
1.289     djm      2101:        M_CP_INTOPT(fwd_opts.streamlocal_bind_unlink);
1.168     dtucker  2102:        M_CP_INTOPT(x11_display_offset);
                   2103:        M_CP_INTOPT(x11_forwarding);
                   2104:        M_CP_INTOPT(x11_use_localhost);
1.244     djm      2105:        M_CP_INTOPT(permit_tty);
1.250     djm      2106:        M_CP_INTOPT(permit_user_rc);
1.180     djm      2107:        M_CP_INTOPT(max_sessions);
1.184     dtucker  2108:        M_CP_INTOPT(max_authtries);
1.300     markus   2109:        M_CP_INTOPT(client_alive_count_max);
                   2110:        M_CP_INTOPT(client_alive_interval);
1.213     djm      2111:        M_CP_INTOPT(ip_qos_interactive);
                   2112:        M_CP_INTOPT(ip_qos_bulk);
1.235     dtucker  2113:        M_CP_INTOPT(rekey_limit);
                   2114:        M_CP_INTOPT(rekey_interval);
1.308     djm      2115:        M_CP_INTOPT(log_level);
1.289     djm      2116:
                   2117:        /*
                   2118:         * The bind_mask is a mode_t that may be unsigned, so we can't use
                   2119:         * M_CP_INTOPT - it does a signed comparison that causes compiler
                   2120:         * warnings.
                   2121:         */
1.290     dtucker  2122:        if (src->fwd_opts.streamlocal_bind_mask != (mode_t)-1) {
1.289     djm      2123:                dst->fwd_opts.streamlocal_bind_mask =
                   2124:                    src->fwd_opts.streamlocal_bind_mask;
                   2125:        }
1.247     djm      2126:
                   2127:        /* M_CP_STROPT and M_CP_STRARRAYOPT should not appear before here */
                   2128: #define M_CP_STROPT(n) do {\
                   2129:        if (src->n != NULL && dst->n != src->n) { \
                   2130:                free(dst->n); \
                   2131:                dst->n = src->n; \
                   2132:        } \
                   2133: } while(0)
1.314     djm      2134: #define M_CP_STRARRAYOPT(s, num_s) do {\
                   2135:        u_int i; \
                   2136:        if (src->num_s != 0) { \
                   2137:                for (i = 0; i < dst->num_s; i++) \
                   2138:                        free(dst->s[i]); \
                   2139:                free(dst->s); \
                   2140:                dst->s = xcalloc(src->num_s, sizeof(*dst->s)); \
                   2141:                for (i = 0; i < src->num_s; i++) \
                   2142:                        dst->s[i] = xstrdup(src->s[i]); \
                   2143:                dst->num_s = src->num_s; \
1.312     djm      2144:        } \
                   2145: } while(0)
1.168     dtucker  2146:
1.218     djm      2147:        /* See comment in servconf.h */
                   2148:        COPY_MATCH_STRING_OPTS();
1.282     djm      2149:
                   2150:        /* Arguments that accept '+...' need to be expanded */
                   2151:        assemble_algorithms(dst);
1.216     djm      2152:
1.217     dtucker  2153:        /*
                   2154:         * The only things that should be below this point are string options
                   2155:         * which are only used after authentication.
                   2156:         */
1.168     dtucker  2157:        if (preauth)
                   2158:                return;
1.219     djm      2159:
1.283     djm      2160:        /* These options may be "none" to clear a global setting */
1.168     dtucker  2161:        M_CP_STROPT(adm_forced_command);
1.283     djm      2162:        if (option_clear_or_none(dst->adm_forced_command)) {
                   2163:                free(dst->adm_forced_command);
                   2164:                dst->adm_forced_command = NULL;
                   2165:        }
1.176     djm      2166:        M_CP_STROPT(chroot_directory);
1.283     djm      2167:        if (option_clear_or_none(dst->chroot_directory)) {
                   2168:                free(dst->chroot_directory);
                   2169:                dst->chroot_directory = NULL;
                   2170:        }
1.153     dtucker  2171: }
1.168     dtucker  2172:
                   2173: #undef M_CP_INTOPT
                   2174: #undef M_CP_STROPT
1.219     djm      2175: #undef M_CP_STRARRAYOPT
1.153     dtucker  2176:
                   2177: void
                   2178: parse_server_config(ServerOptions *options, const char *filename, Buffer *conf,
1.226     dtucker  2179:     struct connection_info *connectinfo)
1.134     djm      2180: {
1.153     dtucker  2181:        int active, linenum, bad_options = 0;
1.136     dtucker  2182:        char *cp, *obuf, *cbuf;
1.134     djm      2183:
                   2184:        debug2("%s: config %s len %d", __func__, filename, buffer_len(conf));
                   2185:
1.287     djm      2186:        if ((obuf = cbuf = sshbuf_dup_string(conf)) == NULL)
                   2187:                fatal("%s: sshbuf_dup_string failed", __func__);
1.226     dtucker  2188:        active = connectinfo ? 0 : 1;
1.137     dtucker  2189:        linenum = 1;
1.140     deraadt  2190:        while ((cp = strsep(&cbuf, "\n")) != NULL) {
1.134     djm      2191:                if (process_server_config_line(options, cp, filename,
1.226     dtucker  2192:                    linenum++, &active, connectinfo) != 0)
1.94      markus   2193:                        bad_options++;
1.1       deraadt  2194:        }
1.239     djm      2195:        free(obuf);
1.78      stevesk  2196:        if (bad_options > 0)
                   2197:                fatal("%s: terminating, %d bad configuration options",
                   2198:                    filename, bad_options);
1.266     dtucker  2199:        process_queued_listen_addrs(options);
1.182     dtucker  2200: }
                   2201:
                   2202: static const char *
1.221     djm      2203: fmt_multistate_int(int val, const struct multistate *m)
                   2204: {
                   2205:        u_int i;
                   2206:
                   2207:        for (i = 0; m[i].key != NULL; i++) {
                   2208:                if (m[i].value == val)
                   2209:                        return m[i].key;
                   2210:        }
                   2211:        return "UNKNOWN";
                   2212: }
                   2213:
                   2214: static const char *
1.182     dtucker  2215: fmt_intarg(ServerOpCodes code, int val)
                   2216: {
1.221     djm      2217:        if (val == -1)
                   2218:                return "unset";
                   2219:        switch (code) {
                   2220:        case sAddressFamily:
                   2221:                return fmt_multistate_int(val, multistate_addressfamily);
                   2222:        case sPermitRootLogin:
                   2223:                return fmt_multistate_int(val, multistate_permitrootlogin);
                   2224:        case sGatewayPorts:
                   2225:                return fmt_multistate_int(val, multistate_gatewayports);
                   2226:        case sCompression:
                   2227:                return fmt_multistate_int(val, multistate_compression);
1.233     djm      2228:        case sAllowTcpForwarding:
                   2229:                return fmt_multistate_int(val, multistate_tcpfwd);
1.251     millert  2230:        case sAllowStreamLocalForwarding:
                   2231:                return fmt_multistate_int(val, multistate_tcpfwd);
1.256     djm      2232:        case sFingerprintHash:
                   2233:                return ssh_digest_alg_name(val);
1.221     djm      2234:        default:
                   2235:                switch (val) {
                   2236:                case 0:
                   2237:                        return "no";
                   2238:                case 1:
                   2239:                        return "yes";
                   2240:                default:
                   2241:                        return "UNKNOWN";
                   2242:                }
1.182     dtucker  2243:        }
                   2244: }
                   2245:
                   2246: static const char *
                   2247: lookup_opcode_name(ServerOpCodes code)
                   2248: {
                   2249:        u_int i;
                   2250:
                   2251:        for (i = 0; keywords[i].name != NULL; i++)
                   2252:                if (keywords[i].opcode == code)
                   2253:                        return(keywords[i].name);
                   2254:        return "UNKNOWN";
                   2255: }
                   2256:
                   2257: static void
                   2258: dump_cfg_int(ServerOpCodes code, int val)
                   2259: {
                   2260:        printf("%s %d\n", lookup_opcode_name(code), val);
                   2261: }
                   2262:
                   2263: static void
1.263     dtucker  2264: dump_cfg_oct(ServerOpCodes code, int val)
                   2265: {
                   2266:        printf("%s 0%o\n", lookup_opcode_name(code), val);
                   2267: }
                   2268:
                   2269: static void
1.182     dtucker  2270: dump_cfg_fmtint(ServerOpCodes code, int val)
                   2271: {
                   2272:        printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val));
                   2273: }
                   2274:
                   2275: static void
                   2276: dump_cfg_string(ServerOpCodes code, const char *val)
                   2277: {
1.257     djm      2278:        printf("%s %s\n", lookup_opcode_name(code),
                   2279:            val == NULL ? "none" : val);
1.182     dtucker  2280: }
                   2281:
                   2282: static void
                   2283: dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals)
                   2284: {
                   2285:        u_int i;
                   2286:
                   2287:        for (i = 0; i < count; i++)
1.219     djm      2288:                printf("%s %s\n", lookup_opcode_name(code), vals[i]);
                   2289: }
                   2290:
                   2291: static void
                   2292: dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
                   2293: {
                   2294:        u_int i;
                   2295:
1.291     djm      2296:        if (count <= 0 && code != sAuthenticationMethods)
1.261     dtucker  2297:                return;
1.219     djm      2298:        printf("%s", lookup_opcode_name(code));
                   2299:        for (i = 0; i < count; i++)
                   2300:                printf(" %s",  vals[i]);
1.291     djm      2301:        if (code == sAuthenticationMethods && count == 0)
                   2302:                printf(" any");
1.219     djm      2303:        printf("\n");
1.182     dtucker  2304: }
                   2305:
1.315     djm      2306: static char *
                   2307: format_listen_addrs(struct listenaddr *la)
1.182     dtucker  2308: {
1.315     djm      2309:        int r;
1.182     dtucker  2310:        struct addrinfo *ai;
1.315     djm      2311:        char addr[NI_MAXHOST], port[NI_MAXSERV];
1.263     dtucker  2312:        char *laddr1 = xstrdup(""), *laddr2 = NULL;
1.182     dtucker  2313:
1.263     dtucker  2314:        /*
                   2315:         * ListenAddress must be after Port.  add_one_listen_addr pushes
                   2316:         * addresses onto a stack, so to maintain ordering we need to
                   2317:         * print these in reverse order.
                   2318:         */
1.315     djm      2319:        for (ai = la->addrs; ai; ai = ai->ai_next) {
                   2320:                if ((r = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr,
1.182     dtucker  2321:                    sizeof(addr), port, sizeof(port),
                   2322:                    NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1.315     djm      2323:                        error("getnameinfo: %.100s", ssh_gai_strerror(r));
                   2324:                        continue;
                   2325:                }
                   2326:                laddr2 = laddr1;
                   2327:                if (ai->ai_family == AF_INET6) {
                   2328:                        xasprintf(&laddr1, "listenaddress [%s]:%s%s%s\n%s",
                   2329:                            addr, port,
                   2330:                            la->rdomain == NULL ? "" : " rdomain ",
                   2331:                            la->rdomain == NULL ? "" : la->rdomain,
                   2332:                            laddr2);
1.182     dtucker  2333:                } else {
1.315     djm      2334:                        xasprintf(&laddr1, "listenaddress %s:%s%s%s\n%s",
                   2335:                            addr, port,
                   2336:                            la->rdomain == NULL ? "" : " rdomain ",
                   2337:                            la->rdomain == NULL ? "" : la->rdomain,
                   2338:                            laddr2);
1.182     dtucker  2339:                }
1.315     djm      2340:                free(laddr2);
                   2341:        }
                   2342:        return laddr1;
                   2343: }
                   2344:
                   2345: void
                   2346: dump_config(ServerOptions *o)
                   2347: {
                   2348:        char *s;
                   2349:        u_int i;
                   2350:
                   2351:        /* these are usually at the top of the config */
                   2352:        for (i = 0; i < o->num_ports; i++)
                   2353:                printf("port %d\n", o->ports[i]);
                   2354:        dump_cfg_fmtint(sAddressFamily, o->address_family);
                   2355:
                   2356:        for (i = 0; i < o->num_listen_addrs; i++) {
                   2357:                s = format_listen_addrs(&o->listen_addrs[i]);
                   2358:                printf("%s", s);
                   2359:                free(s);
1.182     dtucker  2360:        }
                   2361:
                   2362:        /* integer arguments */
                   2363:        dump_cfg_int(sLoginGraceTime, o->login_grace_time);
                   2364:        dump_cfg_int(sX11DisplayOffset, o->x11_display_offset);
                   2365:        dump_cfg_int(sMaxAuthTries, o->max_authtries);
1.189     djm      2366:        dump_cfg_int(sMaxSessions, o->max_sessions);
1.182     dtucker  2367:        dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
                   2368:        dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
1.263     dtucker  2369:        dump_cfg_oct(sStreamLocalBindMask, o->fwd_opts.streamlocal_bind_mask);
1.182     dtucker  2370:
                   2371:        /* formatted integer arguments */
                   2372:        dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
                   2373:        dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts);
                   2374:        dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts);
                   2375:        dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication);
                   2376:        dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly,
                   2377:            o->hostbased_uses_name_from_packet_only);
                   2378:        dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
1.187     djm      2379: #ifdef KRB5
1.182     dtucker  2380:        dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
                   2381:        dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
                   2382:        dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
                   2383:        dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
1.187     djm      2384: #endif
                   2385: #ifdef GSSAPI
1.182     dtucker  2386:        dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
                   2387:        dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
1.187     djm      2388: #endif
1.182     dtucker  2389:        dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
                   2390:        dump_cfg_fmtint(sKbdInteractiveAuthentication,
                   2391:            o->kbd_interactive_authentication);
                   2392:        dump_cfg_fmtint(sChallengeResponseAuthentication,
                   2393:            o->challenge_response_authentication);
                   2394:        dump_cfg_fmtint(sPrintMotd, o->print_motd);
                   2395:        dump_cfg_fmtint(sPrintLastLog, o->print_lastlog);
                   2396:        dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding);
                   2397:        dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1.244     djm      2398:        dump_cfg_fmtint(sPermitTTY, o->permit_tty);
1.250     djm      2399:        dump_cfg_fmtint(sPermitUserRC, o->permit_user_rc);
1.182     dtucker  2400:        dump_cfg_fmtint(sStrictModes, o->strict_modes);
                   2401:        dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
                   2402:        dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
                   2403:        dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
                   2404:        dump_cfg_fmtint(sCompression, o->compression);
1.251     millert  2405:        dump_cfg_fmtint(sGatewayPorts, o->fwd_opts.gateway_ports);
1.182     dtucker  2406:        dump_cfg_fmtint(sUseDNS, o->use_dns);
                   2407:        dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
1.261     dtucker  2408:        dump_cfg_fmtint(sAllowAgentForwarding, o->allow_agent_forwarding);
1.301     djm      2409:        dump_cfg_fmtint(sDisableForwarding, o->disable_forwarding);
1.251     millert  2410:        dump_cfg_fmtint(sAllowStreamLocalForwarding, o->allow_streamlocal_forwarding);
1.288     djm      2411:        dump_cfg_fmtint(sStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
1.256     djm      2412:        dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash);
1.309     djm      2413:        dump_cfg_fmtint(sExposeAuthInfo, o->expose_userauth_info);
1.182     dtucker  2414:
                   2415:        /* string arguments */
                   2416:        dump_cfg_string(sPidFile, o->pid_file);
                   2417:        dump_cfg_string(sXAuthLocation, o->xauth_location);
1.252     djm      2418:        dump_cfg_string(sCiphers, o->ciphers ? o->ciphers : KEX_SERVER_ENCRYPT);
                   2419:        dump_cfg_string(sMacs, o->macs ? o->macs : KEX_SERVER_MAC);
1.182     dtucker  2420:        dump_cfg_string(sBanner, o->banner);
                   2421:        dump_cfg_string(sForceCommand, o->adm_forced_command);
1.201     dtucker  2422:        dump_cfg_string(sChrootDirectory, o->chroot_directory);
1.204     djm      2423:        dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys);
                   2424:        dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
1.208     djm      2425:        dump_cfg_string(sAuthorizedPrincipalsFile,
                   2426:            o->authorized_principals_file);
1.261     dtucker  2427:        dump_cfg_string(sVersionAddendum, *o->version_addendum == '\0'
                   2428:            ? "none" : o->version_addendum);
1.231     djm      2429:        dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);
                   2430:        dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);
1.270     djm      2431:        dump_cfg_string(sAuthorizedPrincipalsCommand, o->authorized_principals_command);
                   2432:        dump_cfg_string(sAuthorizedPrincipalsCommandUser, o->authorized_principals_command_user);
1.240     markus   2433:        dump_cfg_string(sHostKeyAgent, o->host_key_agent);
1.252     djm      2434:        dump_cfg_string(sKexAlgorithms,
1.253     djm      2435:            o->kex_algorithms ? o->kex_algorithms : KEX_SERVER_KEX);
1.258     djm      2436:        dump_cfg_string(sHostbasedAcceptedKeyTypes, o->hostbased_key_types ?
                   2437:            o->hostbased_key_types : KEX_DEFAULT_PK_ALG);
1.276     markus   2438:        dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms ?
                   2439:            o->hostkeyalgorithms : KEX_DEFAULT_PK_ALG);
1.258     djm      2440:        dump_cfg_string(sPubkeyAcceptedKeyTypes, o->pubkey_key_types ?
                   2441:            o->pubkey_key_types : KEX_DEFAULT_PK_ALG);
1.316     djm      2442:        dump_cfg_string(sRDomain, o->routing_domain);
1.182     dtucker  2443:
                   2444:        /* string arguments requiring a lookup */
                   2445:        dump_cfg_string(sLogLevel, log_level_name(o->log_level));
                   2446:        dump_cfg_string(sLogFacility, log_facility_name(o->log_facility));
                   2447:
                   2448:        /* string array arguments */
1.219     djm      2449:        dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files,
                   2450:            o->authorized_keys_files);
1.182     dtucker  2451:        dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
                   2452:             o->host_key_files);
1.261     dtucker  2453:        dump_cfg_strarray(sHostCertificate, o->num_host_cert_files,
1.203     djm      2454:             o->host_cert_files);
1.182     dtucker  2455:        dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
                   2456:        dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);
                   2457:        dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups);
                   2458:        dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups);
                   2459:        dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env);
1.232     djm      2460:        dump_cfg_strarray_oneline(sAuthenticationMethods,
                   2461:            o->num_auth_methods, o->auth_methods);
1.182     dtucker  2462:
                   2463:        /* other arguments */
                   2464:        for (i = 0; i < o->num_subsystems; i++)
                   2465:                printf("subsystem %s %s\n", o->subsystem_name[i],
                   2466:                    o->subsystem_args[i]);
                   2467:
                   2468:        printf("maxstartups %d:%d:%d\n", o->max_startups_begin,
                   2469:            o->max_startups_rate, o->max_startups);
                   2470:
1.318   ! djm      2471:        s = NULL;
        !          2472:        for (i = 0; tunmode_desc[i].val != -1; i++) {
1.182     dtucker  2473:                if (tunmode_desc[i].val == o->permit_tun) {
                   2474:                        s = tunmode_desc[i].text;
                   2475:                        break;
                   2476:                }
1.318   ! djm      2477:        }
1.182     dtucker  2478:        dump_cfg_string(sPermitTunnel, s);
1.213     djm      2479:
1.214     stevesk  2480:        printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
                   2481:        printf("%s\n", iptos2str(o->ip_qos_bulk));
1.235     dtucker  2482:
1.284     dtucker  2483:        printf("rekeylimit %llu %d\n", (unsigned long long)o->rekey_limit,
1.241     djm      2484:            o->rekey_interval);
1.182     dtucker  2485:
1.310     djm      2486:        printf("permitopen");
                   2487:        if (o->num_permitted_opens == 0)
                   2488:                printf(" any");
                   2489:        else {
                   2490:                for (i = 0; i < o->num_permitted_opens; i++)
                   2491:                        printf(" %s", o->permitted_opens[i]);
                   2492:        }
                   2493:        printf("\n");
1.1       deraadt  2494: }