[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.302

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